You are here

function cleaner_cron in Cleaner 5

Same name and namespace in other branches
  1. 8.2 cleaner.module \cleaner_cron()
  2. 8 cleaner.module \cleaner_cron()
  3. 6 cleaner.module \cleaner_cron()
  4. 7 cleaner.module \cleaner_cron()

Implementation of hook_cron().

1 string reference to 'cleaner_cron'
cleaner_cleaner_settings in ./cleaner.module
Implementation of hook_cleaner_settings().

File

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

Code

function cleaner_cron() {
  $ret = module_invoke_all('cleaner_run');
}