Projet

Général

Profil

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

root / drupal7 / sites / all / modules / date / date_repeat / date_repeat.install @ 599a39cd

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
}