You are here

rename_admin_paths.install in Rename Admin Paths 7

Same filename and directory in other branches
  1. 8 rename_admin_paths.install
  2. 7.2 rename_admin_paths.install

Install, update and uninstall functions for the Administrative pages module.

File

rename_admin_paths.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Administrative pages module.
 */

/**
 * Implements hook_install().
 */
function rename_admin_paths_uninstall() {

  // Delete all variables defined by path admin
  variable_del('rename_admin_path');
  variable_del('rename_admin_path_value');
  variable_del('rename_user_path');
  variable_del('rename_user_path_value');
}

Functions

Namesort descending Description
rename_admin_paths_uninstall Implements hook_install().