function submenutree_help in Submenu Tree 5
Same name and namespace in other branches
- 6 submenutree.module \submenutree_help()
- 7.2 submenutree.module \submenutree_help()
Implementation of hook_help().
File
- ./
submenutree.module, line 27
Code
function submenutree_help($section) {
switch ($section) {
case 'admin/help#submenutree':
return t("For nodes which are displayed as menu items, this module adds a listing of any submenu items below it into the content or into a block. It can also add a listing of sibling menu items.");
}
}