You are here

function taxonomy_list_help in Taxonomy List 5.2

Same name and namespace in other branches
  1. 5 taxonomy_list.module \taxonomy_list_help()
  2. 6.2 taxonomy_list.module \taxonomy_list_help()
  3. 6 taxonomy_list.module \taxonomy_list_help()
  4. 7 taxonomy_list.module \taxonomy_list_help()

Implementation of hook_help().

File

./taxonomy_list.module, line 11
List all terms in a vocabulary.

Code

function taxonomy_list_help($path, $args = NULL) {
  switch ($path) {
    case 'admin/help#taxonomy_list':
      return '<p>' . t('The Taxonomy List module adds pages that list all terms in a vocabulary (category). In addition, when the Taxonomy Image module is installed, these lists can include an image for each term.') . '</p>';
  }
}