You are here

function power_menu_form_menu_overview_form_alter in Power Menu 7

Same name and namespace in other branches
  1. 6 power_menu.module \power_menu_form_menu_overview_form_alter()
  2. 7.2 power_menu.module \power_menu_form_menu_overview_form_alter()

Implements hook_form_ID_alter().

we are going to alter the form so that a user can set default properties default properties are used incase no properties are found on menu items

_state

Parameters

$form:

File

./power_menu.module, line 59
This module provides some additional menu features. The features are not actually new, but are part of other modules. it's though very cumbersome to creating a new menu item, because one has to go to all the different places to configure these…

Code

function power_menu_form_menu_overview_form_alter(&$form, &$form_state) {
  module_load_include('inc', 'power_menu', 'power_menu.forms');
  _power_menu_form_overview_alter($form, $form_state);
}