You are here

function resource_conflict_uninstall in Resource Conflict 7.3

Same name and namespace in other branches
  1. 5.2 resource_conflict.install \resource_conflict_uninstall()
  2. 6.2 resource_conflict.install \resource_conflict_uninstall()
  3. 7.2 resource_conflict.install \resource_conflict_uninstall()

Implements hook_uninstall().

File

./resource_conflict.install, line 11
Install, upgrade and uninstall hooks for the resource conflict module.

Code

function resource_conflict_uninstall() {
  _resource_conflict_variable_delete_like('rc_type_%');
  _resource_conflict_variable_delete_like('rc_date_field_%');
  _resource_conflict_variable_delete_like('rc_reference_fields_%');
  _resource_conflict_variable_delete_like('rc_conflict_buffer_%');
  variable_del('rc_types');
}