function cleaner_help in Cleaner 5
Same name and namespace in other branches
- 6 cleaner.module \cleaner_help()
- 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($section) {
switch ($section) {
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;
}
}