function paypal_payment_ec_menu in PayPal for Payment 7
Implements hook_menu().
File
- paypal_payment_ec/
paypal_payment_ec.module, line 11 - Contains hook implementations and global functions.
Code
function paypal_payment_ec_menu() {
$items['paypal_payment_ec/return'] = array(
'title' => 'PayPal Express Checkout return url',
'page callback' => 'paypal_payment_ec_return',
'access callback' => 'paypal_payment_ec_return_access',
'type' => MENU_CALLBACK,
);
return $items;
}