You are here

geo_filter.install in Graceful Email Obfuscation Filter 6

File

geo_filter.install
View source
<?php

/**
 * Implementation of hook_uninstall().
 */
function geo_filter_uninstall() {
  for ($i = 0; $i < count(filter_formats()); $i++) {

    // this is a best-guess at clearing out these variables
    variable_del("geo_filter_show_not_exists_{$i}");
  }
}

Functions

Namesort descending Description
geo_filter_uninstall Implementation of hook_uninstall().