webform_template.install in Webform Template 7
File
webform_template.install
View source
<?php
function webform_template_install() {
$weight = db_select('system')
->condition('name', 'webform')
->fields('system', array(
'weight',
))
->execute()
->fetchField();
db_update('system')
->fields(array(
'weight' => $weight - 1,
))
->condition('name', 'webform_template')
->execute();
}
function webform_template_update_7002(&$sand) {
$weight = db_select('system')
->condition('name', 'webform')
->fields('system', array(
'weight',
))
->execute()
->fetchField();
db_update('system')
->fields(array(
'weight' => $weight - 1,
))
->condition('name', 'webform_template')
->execute();
}