function apachesolr_exclude_node_uninstall in Apache Solr Exclude Node 6
Same name and namespace in other branches
- 7 apachesolr_exclude_node.install \apachesolr_exclude_node_uninstall()
Implementation of hook_uninstall().
File
- ./
apachesolr_exclude_node.install, line 54 - Install file for the Apache Solr Exclude Node module.
Code
function apachesolr_exclude_node_uninstall() {
drupal_uninstall_schema('apachesolr_exclude_node');
// Deleting variables
db_query("DELETE FROM {variable} WHERE name LIKE 'apachesolr_exclude_node_%'");
}