function taxonomy_list_help in Taxonomy List 6
Same name and namespace in other branches
- 5.2 taxonomy_list.module \taxonomy_list_help()
- 5 taxonomy_list.module \taxonomy_list_help()
- 6.2 taxonomy_list.module \taxonomy_list_help()
- 7 taxonomy_list.module \taxonomy_list_help()
Implementation of hook_help().
File
- ./
taxonomy_list.module, line 10 - 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>';
}
}