You are here

cleaner.install in Cleaner 5

Same filename and directory in other branches
  1. 6 cleaner.install
  2. 7 cleaner.install

Allows the admin to set a schedule for clearing caches and other stuff.

File

cleaner.install
View 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

Namesort descending Description
cleaner_enable Implementation of hook_enable().
cleaner_uninstall Implementation of hook_uninstall().