function uc_payment_pack_menu in Ubercart 7.3
Same name and namespace in other branches
- 5 payment/uc_payment_pack/uc_payment_pack.module \uc_payment_pack_menu()
- 6.2 payment/uc_payment_pack/uc_payment_pack.module \uc_payment_pack_menu()
Implements hook_menu().
File
- payment/
uc_payment_pack/ uc_payment_pack.module, line 11 - Provides the Check/Money Order, COD, and "Other" payment methods.
Code
function uc_payment_pack_menu() {
$items['admin/store/orders/%uc_order/receive_check'] = array(
'title' => 'Receive check',
'description' => 'Record details of a check that has been received.',
'page callback' => 'drupal_get_form',
'page arguments' => array(
'uc_payment_pack_receive_check_form',
3,
),
'access arguments' => array(
'view all orders',
),
'file' => 'uc_payment_pack.admin.inc',
);
return $items;
}