function poormanscron_help in Poormanscron 5
Same name and namespace in other branches
- 6 poormanscron.module \poormanscron_help()
Implementation of hook_help().
File
- ./
poormanscron.module, line 11 - A module which runs Drupal cron jobs without the cron application.
Code
function poormanscron_help($section) {
switch ($section) {
case 'admin/help#poormanscron':
return '<p>' . t('The Poormanscron module runs cron jobs without the need of the cron application.') . '</p>';
case 'admin/settings/poormanscron':
return '<p>' . t('The settings provided here allow you to administer Poormancron.') . '</p>';
}
}