You are here

admin_select.install in Administration Menu select 7

Install/update/uninstall functions for the Administration Menu select module.

File

admin_select.install
View source
<?php

/**
 * @file
 * Install/update/uninstall functions for the Administration Menu select module.
 */

/**
 * Implements hook_uninstall().
 */
function admin_select_uninstall() {

  // Clean up variables.
  variable_del('admin_select_defaults');
}

/**
 * Empty update function to trigger menu rebuild.
 */
function admin_select_update_7100() {

  // Do nothing.
}

Functions

Namesort descending Description
admin_select_uninstall Implements hook_uninstall().
admin_select_update_7100 Empty update function to trigger menu rebuild.