You are here

function location_addanother_uninstall in Location 7.3

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

Implementshook_uninstall().

File

contrib/location_addanother/location_addanother.install, line 27
Install, update and uninstall functions for the location_addanother module.

Code

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