function payment_menu_alter in Payment 7
Implement hook_menu_alter().
File
- ./
payment.module, line 304 - Hook implementations and shared functions.
Code
function payment_menu_alter(&$items) {
// Make "Manage fields" the default local task.
if (isset($items['admin/config/services/payment/payment/fields'])) {
$items['admin/config/services/payment/payment'] = array(
'title' => 'Payments',
'type' => MENU_NORMAL_ITEM,
) + $items['admin/config/services/payment/payment/fields'];
$items['admin/config/services/payment/payment/fields'] = array(
'title' => 'Manage fields',
'type' => MENU_DEFAULT_LOCAL_TASK,
);
}
}