You are here

date_popup.install in Date 7

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

File

date_popup/date_popup.install
View source
<?php

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

/**
 * Implementation of hook_install().
 */
function date_popup_install() {
}

/**
 * Implementation of hook_uninstall().
 */
function date_popup_uninstall() {
}

/**
 * Implementation of hook_enable().
 */
function date_popup_enable() {
}

/**
 * Implementation of hook_disable().
 */
function date_popup_disable() {
}

Functions

Namesort descending Description
date_popup_disable Implementation of hook_disable().
date_popup_enable Implementation of hook_enable().
date_popup_install Implementation of hook_install().
date_popup_uninstall Implementation of hook_uninstall().