function featured_content_help in Featured Content 7
Same name and namespace in other branches
- 6.2 featured_content.module \featured_content_help()
- 6 featured_content.module \featured_content_help()
- 7.2 featured_content.module \featured_content_help()
Implements hook_help().
File
- ./
featured_content.module, line 59 - Featured Content module for created related & featured content blocks.
Code
function featured_content_help($path, $arg) {
switch ($path) {
case 'admin/structure/block/manage/%/%':
if (isset($arg[4]) && $arg[4] != 'featured_content') {
break;
}
case 'admin/help#featured_content':
case 'admin/structure/block':
case 'admin/structure/block/add-featured-content-block':
module_load_include('inc', 'featured_content', 'featured_content.pages');
return featured_content_help_text($path, $arg);
}
}