Projet

Général

Profil

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

root / drupal7 / sites / all / modules / date / date_popup / date_popup.install @ b720ea3e

1
<?php
2

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

    
8
// @codingStandardsIgnoreStart
9
/**
10
 * Implements hook_install().
11
 */
12
function date_popup_install() {
13
}
14

    
15
/**
16
 * Implements hook_uninstall().
17
 */
18
function date_popup_uninstall() {
19

    
20
}
21
// @codingStandardsIgnoreEnd
22

    
23
/**
24
 * Implements hook_enable().
25
 */
26
function date_popup_enable() {
27

    
28
}
29

    
30
/**
31
 * Implements hook_disable().
32
 */
33
function date_popup_disable() {
34

    
35
}