cf_menu.install in Common Functionality 7
Same filename and directory in other branches
File
modules/cf_menu/cf_menu.installView source
<?php
/**
* Implementation of hook_install().
*/
function cf_menu_install() {
variable_set('cf_menu_accessibility_page', TRUE);
}
/**
* Implementation of hook_uninstall().
*/
function cf_menu_uninstall() {
variable_del('cf_menu_accessibility_page');
}
Functions
Name | Description |
---|---|
cf_menu_install | Implementation of hook_install(). |
cf_menu_uninstall | Implementation of hook_uninstall(). |