function nice_menus_help in Nice Menus 8
Same name and namespace in other branches
- 5 nice_menus.module \nice_menus_help()
- 6.2 nice_menus.module \nice_menus_help()
- 6 nice_menus.module \nice_menus_help()
- 7.3 nice_menus.module \nice_menus_help()
- 7.2 nice_menus.module \nice_menus_help()
Implements hook_help().
File
- ./
nice_menus.module, line 16 - Module to enable CSS dropdown and flyout menus.
Code
function nice_menus_help($route_name) {
switch ($route_name) {
case 'help.page.nice_menus':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= t('Make drop down/flyout CSS menus for site and admin menus.');
$output .= t('<p>This is a simple module that enables the site to have drop down/flyout CSS menus for site and admin navigation.</p><p>Remember to activate and configure the menu blocks in <a href=":block_layout">Block layout</a></p>', array(
':block_layout' => '/admin/structure/block',
));
return $output;
}
}