function power_menu_menu_alter in Power Menu 7.2
Implements hook_menu_alter().
File
- ./
power_menu.module, line 68
Code
function power_menu_menu_alter(&$items) {
$menus = variable_get('power_menu_fields_menus', array());
foreach ($menus as $key => $value) {
$value = power_menu_create_machine_name($value);
// Hide the field diplay
$items['admin/config/search/power_menu/fields/' . $value . '/fields']['type'] = MENU_CALLBACK;
$items['admin/config/search/power_menu/fields/' . $value . '/display']['type'] = MENU_CALLBACK;
}
}