You are here

function openlayers_behaviors_uninstall in Openlayers 6

Implementation of hook_uninstall().

File

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

Code

function openlayers_behaviors_uninstall() {

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

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