date_repeat.install in Date 7
Install, update and uninstall functions for the Date Repeat module.
File
date_repeat/date_repeat.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the Date Repeat module.
*/
/**
* Implementation of hook_install().
*/
function date_repeat_install() {
// Make sure this module loads after date_api.
db_query("UPDATE {system} SET weight = 1 WHERE name = 'date_repeat'");
}
/**
* Implementation of hook_uninstall().
*/
function date_repeat_uninstall() {
}
/**
* Implementation of hook_enable().
*/
function date_repeat_enable() {
}
/**
* Implementation of hook_disable().
*/
function date_repeat_disable() {
}
Functions
Name | Description |
---|---|
date_repeat_disable | Implementation of hook_disable(). |
date_repeat_enable | Implementation of hook_enable(). |
date_repeat_install | Implementation of hook_install(). |
date_repeat_uninstall | Implementation of hook_uninstall(). |