function uc_2checkout_menu in Ubercart 7.3
Same name and namespace in other branches
- 5 payment/uc_2checkout/uc_2checkout.module \uc_2checkout_menu()
- 6.2 payment/uc_2checkout/uc_2checkout.module \uc_2checkout_menu()
Implements hook_menu().
File
- payment/
uc_2checkout/ uc_2checkout.module, line 23 - Integrates 2Checkout.com's redirected payment service.
Code
function uc_2checkout_menu() {
$items = array();
$items['cart/2checkout/complete'] = array(
'title' => 'Order complete',
'page callback' => 'uc_2checkout_complete',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
'file' => 'uc_2checkout.pages.inc',
);
$items['cart/2checkout/notification'] = array(
'page callback' => 'uc_2checkout_process_notification',
'access callback' => TRUE,
'file' => 'uc_2checkout.pages.inc',
);
return $items;
}