stickynav.install in Sticky Navigation 6
Same filename and directory in other branches
Contains install and update functions for advanced_help.
File
stickynav.installView source
<?php
/**
* @file
* Contains install and update functions for advanced_help.
*/
/**
* Implements hook_uninstall().
*/
function stickynav_uninstall() {
$result = db_query("\n SELECT name FROM {'variable'}\n WHERE\n name LIKE 'stickynav-enabled-%%' OR\n name LIKE 'stickynav-selector-%%' OR\n name LIKE 'stickynav-roles-%%'\n ");
while ($row = db_fetch_object($result)) {
variable_del($row->name);
}
}
Functions
Name | Description |
---|---|
stickynav_uninstall | Implements hook_uninstall(). |