cleaner.install in Cleaner 5
Same filename and directory in other branches
Allows the admin to set a schedule for clearing caches and other stuff.
File
cleaner.installView source
<?php
/**
* @file
* Allows the admin to set a schedule for clearing caches and other stuff.
*/
/**
* Implementation of hook_enable().
*/
function cleaner_enable() {
drupal_set_message(t('The Cleaner module settings are <a href="!url">here</a>.', array(
'!url' => url('admin/settings/cleaner'),
)));
}
/**
* Implementation of hook_uninstall().
*/
function cleaner_uninstall() {
}
Functions
Name | Description |
---|---|
cleaner_enable | Implementation of hook_enable(). |
cleaner_uninstall | Implementation of hook_uninstall(). |