You are here

function boolean_help in Boolean Field 7

Implements hook_help().

File

./boolean.module, line 15
Defines boolean field type.

Code

function boolean_help($path, $arg) {
  switch ($path) {
    case 'admin/help#boolean':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Boolean module defines a 3-state boolean field type for the Field module. 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;
  }
}