summaryrefslogtreecommitdiff
path: root/sites/all/modules/ds/modules/ds_forms/ds_forms.install
blob: 51b1e36fe22df8d6d28321063a466247bcdf833e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

/**
 * @file
 * Display Suite forms install file.
 */

/**
 * Implements hook_install().
 */
function ds_forms_install() {
  db_update('system')
    ->fields(array('weight' => 20))
    ->condition('name', 'ds_forms')
    ->execute();
}