You are here

function og_ui_uninstall in Organic groups 7.2

Same name and namespace in other branches
  1. 7 og_ui/og_ui.install \og_ui_uninstall()

Implements hook_uninstall().

File

og_ui/og_ui.install, line 12
Install, update, and uninstall functions for the Organic groups UI module.

Code

function og_ui_uninstall() {
  $vars = array(
    'og_ui_admin_people_view',
    'og_ui_deny_subscribe_without_approval',
  );
  foreach ($vars as $var) {
    variable_del($var);
  }
}