function inline_registration_uninstall in Inline Registration 5
Same name and namespace in other branches
- 6 inline_registration.install \inline_registration_uninstall()
- 7 inline_registration.install \inline_registration_uninstall()
Implementation of hook_uninstall().
File
- ./
inline_registration.install, line 11
Code
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);
}
}