You are here

regcode_voucher.install in Registration codes 7

Same filename and directory in other branches
  1. 7.2 regcode_voucher/regcode_voucher.install

Install, uninstall and scheme functions for the regcode_voucher module.

File

regcode_voucher/regcode_voucher.install
View source
<?php

/**
 * @file
 * Install, uninstall and scheme functions for the regcode_voucher module.
 */

/**
 * Implements hook_uninstall().
 */
function regcode_voucher_uninstall() {
  variable_del('regcode_voucher_display');
  variable_del('regcode_voucher_allowed_roles');
  variable_del('regcode_voucher_disallowed_roles');
  variable_del('regcode_voucher_fieldset_title');
  variable_del('regcode_voucher_field_title');
  variable_del('regcode_voucher_field_description');
  variable_del('regcode_voucher_message');
  variable_del('regcode_voucher_introtext');
  variable_del('regcode_fieldset_title');
  variable_del('regcode_field_title');
  variable_del('regcode_field_description');
}

Functions

Namesort descending Description
regcode_voucher_uninstall Implements hook_uninstall().