You are here

function cleaner_help in Cleaner 6

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

Implementation of hook_help().

File

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

Code

function cleaner_help($path, $args) {
  switch ($path) {
    case '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;
  }
}