function uc_pma_menu in Ubercart Payment Method Adjustments 6
Implementation of hook_menu().
File
- ./
uc_pma.module, line 13 - This module hooks into a few different parts of Ubercart to allow store administrators to associate a fee or discount with payment methods.
Code
function uc_pma_menu() {
$items['cart/checkout/method_items'] = array(
'title' => 'Return payment method subtotal adjustments',
'page callback' => 'uc_pma_method_items',
'access arguments' => array(
'access content',
),
'type' => MENU_CALLBACK,
);
return $items;
}