You are here

cf_menu.install in Common Functionality 7

Same filename and directory in other branches
  1. 7.2 modules/cf_menu/cf_menu.install

File

modules/cf_menu/cf_menu.install
View 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

Namesort descending Description
cf_menu_install Implementation of hook_install().
cf_menu_uninstall Implementation of hook_uninstall().