You are here

inline_registration.install in Inline Registration 6

Same filename and directory in other branches
  1. 5 inline_registration.install
  2. 7 inline_registration.install

File

inline_registration.install
View source
<?php

/**
 * @file
 *
 */

/**
 * Implementation of hook_uninstall().
 */
function inline_registration_uninstall() {

  // Delete variables.
  foreach (node_get_types() as $type) {
    variable_del('inline_registration_' . $type->type);
    variable_del('inline_registration_weight_' . $type->type);
  }
}

Functions

Namesort descending Description
inline_registration_uninstall Implementation of hook_uninstall().