You are here

function taxonomy_menu_help in Taxonomy menu 7.2

Same name and namespace in other branches
  1. 8.3 taxonomy_menu.module \taxonomy_menu_help()
  2. 8 taxonomy_menu.module \taxonomy_menu_help()
  3. 5 taxonomy_menu.module \taxonomy_menu_help()
  4. 7 taxonomy_menu.module \taxonomy_menu_help()

Implements hook_help().

File

./taxonomy_menu.module, line 22
Generates menu links for all selected taxonomy terms.

Code

function taxonomy_menu_help($path, $arg) {
  switch ($path) {
    case 'admin/help#taxonomy_menu':
      return '<p>' . t('This module allows you to use a taxonomy vocabulary as
        a custom menu. You can then place this menu into specific regions on
        pages. Each taxonomy term in the vocabulary will then be a menu item
        that you can click on. After you click on one of the menu items
        (taxonomy terms), you will then be taken to an aggregation page where
        all items tagged with the taxonomy term will reside. As always, more
        functionality is being planned with further versions.') . '</p>';
  }
}