You are here

webform_share.install in Webform share 7

Standard installation, update, uninstall scripts.

File

webform_share.install
View source
<?php

/**
 * @file
 * Standard installation, update, uninstall scripts.
 */

/**
 * Implements hook_install().
 */
function webform_share_install() {
  db_update('system')
    ->condition('name', 'webform_share')
    ->condition('type', 'module')
    ->fields(array(
    'weight' => -2,
  ))
    ->execute();
}

/**
 * Implements hook_uninstall().
 */
function webform_share_uninstall() {

  // TODO: Implement!
}

/**
 * Implements hook_install().
 */
function webform_share_update_7000() {
  db_update('system')
    ->condition('name', 'webform_share')
    ->condition('type', 'module')
    ->fields(array(
    'weight' => -2,
  ))
    ->execute();
}