You are here

function cleaner_help in Cleaner 7

Same name and namespace in other branches
  1. 5 cleaner.module \cleaner_help()
  2. 6 cleaner.module \cleaner_help()

Implements hook_help().

File

./cleaner.module, line 29
Allows the admin to set a schedule for clearing caches and other stuff.

Code

function cleaner_help($path, $args) {
  if ($path == 'admin/help#cleaner') {
    $output = '<p>' . t('Cleaner runs when the Cron job tells it to. It will clean the cache tables and other things as configured.') . '</p>';
    return $output;
  }
}