function protected_node_uninstall in Protected Node 6
Same name and namespace in other branches
- 5 protected_node.install \protected_node_uninstall()
- 7 protected_node.install \protected_node_uninstall()
- 1.0.x protected_node.install \protected_node_uninstall()
Implementation of hook_uninstall().
File
- ./
protected_node.install, line 159
Code
function protected_node_uninstall() {
drupal_uninstall_schema('protected_node');
db_query("DELETE FROM {variable} WHERE name LIKE 'protected_node_%%'");
}