You are here

function hierarchical_select_help in Hierarchical Select 7.3

Implements hook_help().

File

./hierarchical_select.module, line 19
This module defines the "hierarchical_select" form element, which is a greatly enhanced way for letting the user select items in a hierarchy.

Code

function hierarchical_select_help($path, $arg) {
  switch ($path) {

    // Displaying help text on help page.
    case 'admin/help#hierarchical_select':
      return t("Hierarchical Select has the ability to save the entire lineage\n      of a selection or only the 'deepest' selection. You can configure it to\n      force the user to make a selection as deep as possible in the tree, or\n      allow the user to select an item anywhere in the tree. Levels can be\n      labeled, you can configure limit the number of items that can be selected,\n      configure a title for the dropbox, choose a site-wide animation delay,\n      and so on. You can even create new items and levels through Hierarchical\n      Select!");
  }
}