You are here

function openlayers_views_uninstall in Openlayers 6.2

Same name and namespace in other branches
  1. 6 modules/openlayers_views/openlayers_views.install \openlayers_views_uninstall()
  2. 7.2 modules/openlayers_views/openlayers_views.install \openlayers_views_uninstall()

Implementation of hook_uninstall().

File

modules/openlayers_views/openlayers_views.install, line 14
This file holds the functions for the installing and enabling of the openlayers_views module.

Code

function openlayers_views_uninstall() {

  // Get module variables
  $results = db_query("SELECT v.name FROM {variable} AS v WHERE v.name LIKE '%s%%'", 'openlayers_views_');

  // Remove variables
  while ($row = db_fetch_array($results)) {
    variable_del($row['name']);
  }
}