function ultimate_cron_help in Ultimate Cron 7
Same name and namespace in other branches
- 8.2 ultimate_cron.module \ultimate_cron_help()
- 8 ultimate_cron.module \ultimate_cron_help()
- 6 ultimate_cron.module \ultimate_cron_help()
- 7.2 ultimate_cron.module \ultimate_cron_help()
Implements hook_help().
File
- ./
ultimate_cron.module, line 106 - @todo Add filter on overview page. @todo Add log view (with graph). @todo Make proper markup for overview page. @todo Refactor drush stuff, too many intimate relations with Background Process @todo Refactor Cron % offset stuff. Too mixed up and…
Code
function ultimate_cron_help($path, $arg) {
switch ($path) {
case 'admin/help#ultimate_cron':
// Return a line-break version of the module README
return '<pre>' . file_get_contents(dirname(__FILE__) . '/README.txt') . '</pre>';
case 'admin/build/cron':
return '<p>' . t('Here you can see the crontab settings for each job available') . '</p>';
case 'admin/build/cron/settings':
return '<p>' . t('Here you can change the crontab settings for each job available') . '</p>';
}
}