function delete_menu_options_help in Delete menu options 7
Same name and namespace in other branches
- 6 delete_menu_options.module \delete_menu_options_help()
Implements hook_help().
File
- ./
delete_menu_options.module, line 11 - Provides extra options when deleting a menu item.
Code
function delete_menu_options_help($path, $arg) {
switch ($path) {
case 'admin/help#delete_menu_options':
// Return a line-break version of README.txt.
return check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
}
}