Projet

Général

Profil

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

root / drupal7 / sites / all / modules / ds / modules / ds_forms / ds_forms.install @ bf6fb0ee

1
<?php
2

    
3
/**
4
 * @file
5
 * Display Suite forms install file.
6
 */
7

    
8
/**
9
 * Implements hook_install().
10
 */
11
function ds_forms_install() {
12
  db_update('system')
13
    ->fields(array('weight' => 20))
14
    ->condition('name', 'ds_forms')
15
    ->execute();
16
}