nice_mega_dropdowns.install in Nice Menus 7.3
Same filename and directory in other branches
Update functions for Nice Mega Dropdowns.
File
nice_mega_dropdowns/nice_mega_dropdowns.installView 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
Name | Description |
---|---|
nice_mega_dropdowns_install | Implementation of hook_install(). |
nice_mega_dropdowns_uninstall | Implementation of hook_uninstall(). |