You are here

crazyegg.install in Crazy Egg Integration 7

Contains install and update functions for Crazy Egg.

File

crazyegg.install
View source
<?php

/**
 * @file
 * Contains install and update functions for Crazy Egg.
 */

/**
 * Implements hook_uninstall().
 */
function crazyegg_uninstall() {
  $variables = array(
    'crazyegg_account_id',
    'crazyegg_enabled',
    'crazyegg_js_scope',
    'crazyegg_roles_excluded',
    'crazyegg_paths',
  );

  // Delete all CrazyEgg variables.
  foreach ($variables as $var) {
    variable_del($var);
  }
}

Functions

Namesort descending Description
crazyegg_uninstall Implements hook_uninstall().