You are here

function entity_rules_uninstall in Entity Rules 7

Implements hook_uninstall().

File

./entity_rules.install, line 140
Install functions

Code

function entity_rules_uninstall() {
  $vars = array(
    'entity_rules_settings',
    'entity_rules_types',
    'entity_rules_types',
  );
  foreach ($vars as $var) {
    variable_del($var);
  }
}