You are here

function service_links_uninstall in Service links 6.2

Same name and namespace in other branches
  1. 5 service_links.install \service_links_uninstall()
  2. 6 service_links.install \service_links_uninstall()
  3. 7.2 service_links.install \service_links_uninstall()

Implementation of hook_uninstall().

File

./service_links.install, line 11
Service Links install file.

Code

function service_links_uninstall() {
  $result = db_query('SELECT name FROM {variable} v WHERE LOCATE("service_links_",v.name) > 0');
  while ($row = db_fetch_object($result)) {
    variable_del($row->name);
  }
}