function mollie_payment_menu in Mollie Payment 7
Same name and namespace in other branches
- 7.2 mollie_payment.module \mollie_payment_menu()
Implements hook_menu().
File
- ./
mollie_payment.module, line 15 - Provides Mollie integration for the Payment platform.
Code
function mollie_payment_menu() {
$items = array();
$items[MOLLIE_PAYMENT_RETURN_PATH] = array(
'page callback' => 'mollie_payment_return',
'page arguments' => array(
3,
),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items[MOLLIE_PAYMENT_LISTENER_PATH] = array(
'page callback' => 'mollie_payment_listener',
'page arguments' => array(
3,
),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items[MOLLIE_PAYMENT_RECURRING_LISTENER_PATH] = array(
'page callback' => 'mollie_payment_recurring_listener',
'page arguments' => array(
4,
),
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
return $items;
}