override_node_options.install in Override Node Options 5
Same filename and directory in other branches
Install, update and uninstall functions for the override_node_options module.
File
override_node_options.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the override_node_options module.
*/
/**
* Implements hook_uninstall().
*/
function override_node_options_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'override_node_options_%'");
// TODO we could be leaving permissions in the permission table, but they're tricky to remove
}
Functions
Name | Description |
---|---|
override_node_options_uninstall | Implements hook_uninstall(). |