You are here

nice_mega_dropdowns.install in Nice Menus 7.2

Same filename and directory in other branches
  1. 7.3 nice_mega_dropdowns/nice_mega_dropdowns.install

Update functions for Nice Mega Dropdowns.

File

nice_mega_dropdowns/nice_mega_dropdowns.install
View source
<?php

/**
 * @file
 *  Update functions for Nice Mega Dropdowns.
 */

/**
 * Implementation of hook_install().
 */
function nice_mega_dropdowns_install() {
  variable_set('nice_mega_dropdowns', array());
}

/**
 * Implementation of hook_uninstall().
 */
function nice_mega_dropdowns_uninstall() {
  variable_del('nice_mega_dropdowns');
}

Functions

Namesort descending Description
nice_mega_dropdowns_install Implementation of hook_install().
nice_mega_dropdowns_uninstall Implementation of hook_uninstall().