You are here

stickynav.install in Sticky Navigation 6

Same filename and directory in other branches
  1. 7 stickynav.install

Contains install and update functions for advanced_help.

File

stickynav.install
View 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

Namesort descending Description
stickynav_uninstall Implements hook_uninstall().