inline_registration.install in Inline Registration 6
Same filename and directory in other branches
File
inline_registration.installView 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
Name![]() |
Description |
---|---|
inline_registration_uninstall | Implementation of hook_uninstall(). |