function auto_block_scheduler_help in Auto Block Scheduler 7
Same name and namespace in other branches
- 8.2 auto_block_scheduler.module \auto_block_scheduler_help()
- 8 auto_block_scheduler.module \auto_block_scheduler_help()
Implements hook_help().
File
- ./
auto_block_scheduler.module, line 14 - Scheduler publishes and unpublishes block on dates specified by the user.
Code
function auto_block_scheduler_help($path, $arg) {
$help = '';
switch ($path) {
case 'admin/help#auto_block_scheduler':
$help = check_markup(file_get_contents(dirname(__FILE__) . "/README.txt"));
break;
}
return $help;
}