You are here

function location_addanother_uninstall in Location 5.3

Same name and namespace in other branches
  1. 6.3 contrib/location_addanother/location_addanother.install \location_addanother_uninstall()
  2. 7.5 contrib/location_addanother/location_addanother.install \location_addanother_uninstall()
  3. 7.3 contrib/location_addanother/location_addanother.install \location_addanother_uninstall()
  4. 7.4 contrib/location_addanother/location_addanother.install \location_addanother_uninstall()

Implementation of hook_uninstall().

File

contrib/location_addanother/location_addanother.install, line 21
Installation routines for location_addanother.

Code

function location_addanother_uninstall() {
  $result = db_query("SELECT name FROM {variable} WHERE name LIKE 'location_addanother_%'");
  while ($row = db_fetch_object($result)) {
    variable_del($row->name);
  }
}