You are here

function poormanscron_help in Poormanscron 6

Same name and namespace in other branches
  1. 5 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($path, $arg) {
  switch ($path) {
    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>';
  }
}