You are here

function webform_template_install in Webform Template 7

Same name and namespace in other branches
  1. 7.4 webform_template.install \webform_template_install()

Implements hook_install().

File

./webform_template.install, line 6

Code

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();
}