Projet

Général

Profil

Paste
Télécharger (515 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / date / date_repeat / date_repeat.install @ db9ffd17

1
<?php
2

    
3
/**
4
 * @file
5
 * Install, update and uninstall functions for the Date Repeat module.
6
 */
7

    
8
/**
9
 * Implements hook_install().
10
 */
11
function date_repeat_install() {
12
  // Make sure this module loads after date_api.
13
  db_query("UPDATE {system} SET weight = 1 WHERE name = 'date_repeat'");
14
}
15

    
16
/**
17
 * Implements hook_uninstall().
18
 */
19
function date_repeat_uninstall() {
20
}
21

    
22
/**
23
 * Implements hook_enable().
24
 */
25
function date_repeat_enable() {
26
}
27

    
28
/**
29
 * Implements hook_disable().
30
 */
31
function date_repeat_disable() {
32
}