function og_context_uninstall in Organic groups 7
Same name and namespace in other branches
- 7.2 og_context/og_context.install \og_context_uninstall()
Implements hook_uninstall().
File
- og_context/
og_context.install, line 12 - Install, update, and uninstall functions for the Group context module.
Code
function og_context_uninstall() {
$vars = array(
'og_context_negotiation_group_context',
'og_context_providers_weight_group_context',
);
foreach ($vars as $var) {
variable_del($var);
}
}