You are here

function acquia_lift_profiles_uninstall in Acquia Lift Connector 7.2

Same name and namespace in other branches
  1. 7 acquia_lift_profiles/acquia_lift_profiles.install \acquia_lift_profiles_uninstall()

Implements hook_uninstall().

File

acquia_lift_profiles/acquia_lift_profiles.install, line 37
Acquia Lift Profiles - Installation file.

Code

function acquia_lift_profiles_uninstall() {
  $vars = array(
    'acquia_lift_profiles_capture_identity',
    'acquia_lift_profiles_default_identity_type',
    'acquia_lift_profiles_field_mappings',
    'acquia_lift_profiles_identity_param',
    'acquia_lift_profiles_identity_type_param',
    'acquia_lift_profiles_lift_event_values',
    'acquia_lift_profiles_segments',
    'acquia_lift_profiles_udf_mappings',
  );
  foreach ($vars as $var) {
    variable_del($var);
  }
}