You are here

date_repeat.install in Date 8

Install, update and uninstall functions for the Date Repeat module.

File

date_repeat/date_repeat.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Date Repeat module.
 */

/**
 * Implements hook_install().
 */
function date_repeat_install() {

  // Make sure this module loads after date_api.
  module_set_weight('date_repeat', 1);
}

/**
 * Implements hook_uninstall().
 */
function date_repeat_uninstall() {
}

/**
 * Implements hook_enable().
 */
function date_repeat_enable() {
}

/**
 * Implements hook_disable().
 */
function date_repeat_disable() {
}

Functions

Namesort descending Description
date_repeat_disable Implements hook_disable().
date_repeat_enable Implements hook_enable().
date_repeat_install Implements hook_install().
date_repeat_uninstall Implements hook_uninstall().