You are here

function bigint_help in Big Integer 7

Implements hook_help().

File

./bigint.module, line 11
Defines numeric field types.

Code

function bigint_help($path, $arg) {
  switch ($path) {
    case 'admin/help#bigint':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The BigInt module defines a big integer which is twice the size of the default integer provided by the core drupal integer field. Number fields can be limited to a specific set of input values or to a range of values. See the <a href="@field-help">Field module help page</a> for more information about fields.', array(
        '@field-help' => url('admin/help/field'),
      )) . '</p>';
      return $output;
  }
}