og_context.install in Organic groups 7
Same filename and directory in other branches
Install, update, and uninstall functions for the Group context module.
File
og_context/og_context.installView source
<?php
/**
* @file
* Install, update, and uninstall functions for the Group context module.
*/
/**
* Implements hook_uninstall().
*/
function og_context_uninstall() {
$vars = array(
'og_context_negotiation_group_context',
'og_context_providers_weight_group_context',
);
foreach ($vars as $var) {
variable_del($var);
}
}
Functions
Name | Description |
---|---|
og_context_uninstall | Implements hook_uninstall(). |