function options_help

Same name and namespace in other branches
  1. 9 core/modules/options/options.module \options_help()
  2. 8.9.x core/modules/options/options.module \options_help()
  3. 10 core/modules/options/options.module \options_help()

Implements hook_help().

File

modules/field/modules/options/options.module, line 11

Code

function options_help($path, $arg) {
  switch ($path) {
    case 'admin/help#options':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The Options module defines checkbox, selection, and other input widgets 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;
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.