openlayers/openlayers.install, line 14
- Versions
- 6
openlayers_uninstall()
Implementation of hook_uninstall().
Code
<?php
function openlayers_uninstall() {
// @@TODO: This may be a bad idea, as it will destroy all openlayers modules variables. ??
// Get module variables
$results = db_query("SELECT v.name FROM {variable} AS v WHERE v.name LIKE '%s%%'", 'openlayers_');
// Remove variables
while ($row = db_fetch_array($results)) {
variable_del($row['name']);
}
}
?> 