You are here

date_repeat.install in Date 7.3

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.
  db_query("UPDATE {system} SET weight = 1 WHERE name = 'date_repeat'");
}

Functions

Namesort descending Description
date_repeat_install Implements hook_install().