You are here

fences.install in Fences 7

Same filename and directory in other branches
  1. 7.2 fences.install

Provides install, update and un-install functions for menu_position.

File

fences.install
View source
<?php

/**
 * @file
 * Provides install, update and un-install functions for menu_position.
 */

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

  // Delete all fences variables.
  variable_del('fences_default_markup');
}

/**
 * Set the initial database schema ID.
 */
function fences_update_7100() {

  // No-op.
}

Functions

Namesort descending Description
fences_uninstall Implements hook_uninstall().
fences_update_7100 Set the initial database schema ID.