function acquia_lift_profiles_uninstall in Acquia Lift Connector 7
Same name and namespace in other branches
- 7.2 acquia_lift_profiles/acquia_lift_profiles.install \acquia_lift_profiles_uninstall()
Implements hook_uninstall().
File
- acquia_lift_profiles/
acquia_lift_profiles.install, line 67 - Acquia Lift Profiles - Installation file.
Code
function acquia_lift_profiles_uninstall() {
variable_del('acquia_lift_profiles_account_name');
variable_del('acquia_lift_profiles_site_name');
variable_del('acquia_lift_profiles_api_url');
variable_del('acquia_lift_profiles_access_key');
variable_del('acquia_lift_profiles_secret_key');
variable_del('acquia_lift_profiles_capture_identity');
variable_del('acquia_lift_profiles_js_path');
variable_del('acquia_lift_profiles_field_mappings');
variable_del('acquia_lift_profiles_tracked_actions');
variable_del('acquia_lift_profiles_udf_mappings');
variable_del('acquia_lift_profiles_identity_param');
variable_del('acquia_lift_profiles_identity_type_param');
variable_del('acquia_lift_profiles_default_identity_type');
// Delete the menu link
$item = _acquia_lift_profiles_get_menu_link();
if (!empty($item)) {
menu_link_delete($item['mlid']);
}
}