You are here

wsfields.install in Web Service Data 7

Install file for wsfields

@author Mathew Winstone <mwinstone@coldfrontlabs.ca>

File

modules/wsfields/wsfields.install
View source
<?php

/**
 * @file
 * Install file for wsfields
 *
 * @author Mathew Winstone <mwinstone@coldfrontlabs.ca>
 */

/**
 * Implements hook_install().
 */
function wsfields_install() {
  variable_set('wsfields_min_expire', 300);
}

/**
 * Implements hook_uninstall().
 */
function wsfields_uninstall() {
  variable_del('wsfields_debug');
  variable_del('wsfields_min_expire');
}

Functions

Namesort descending Description
wsfields_install Implements hook_install().
wsfields_uninstall Implements hook_uninstall().