You are here

webform_template.install in Webform Template 7

Same filename and directory in other branches
  1. 7.4 webform_template.install

File

webform_template.install
View source
<?php

/**
 * Implements hook_install().
 */
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();
}

/**
 * Make webform template execute before webform.
 */
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();
}

Functions

Namesort descending Description
webform_template_install Implements hook_install().
webform_template_update_7002 Make webform template execute before webform.