You are here

olark.install in Olark Chat 7

Provides uninstall cleanup of variables defined by this module.

File

olark.install
View source
<?php

/**
 * @file
 * Provides uninstall cleanup of variables defined by this module.
 */

/**
 * Implements hook_uninstall().
 */
function olark_uninstall() {

  // Delete created variables.
  variable_del('olark_code');
  variable_del('olark_ios');
  variable_del('olark_enable_admin');
  variable_del('olark_context');
}

Functions

Namesort descending Description
olark_uninstall Implements hook_uninstall().