You are here

function multiselect_help in Multiselect 5.2

Same name and namespace in other branches
  1. 8 multiselect.module \multiselect_help()
  2. 5 multiselect.module \multiselect_help()
  3. 6 multiselect.module \multiselect_help()
  4. 7 multiselect.module \multiselect_help()
  5. 2.x multiselect.module \multiselect_help()

Implementation of hook_help

File

./multiselect.module, line 16
Allows users to select multiple items in an easier way than the normal node-reference widget

Code

function multiselect_help($section = '') {
  $output = '';
  switch ($section) {
    case "admin/help#multiselect":
      $output = '<p>' . t("Provides an easy to use control for adding multiple items.") . '</p>';
      break;
  }
  return $output;
}