You are here

og_context.install in Organic groups 7.2

Same filename and directory in other branches
  1. 7 og_context/og_context.install

Install, update, and uninstall functions for the Group context module.

File

og_context/og_context.install
View 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

Namesort descending Description
og_context_uninstall Implements hook_uninstall().