You are here

function uc_authorizenet_menu in Ubercart 7.3

Same name and namespace in other branches
  1. 5 payment/uc_authorizenet/uc_authorizenet.module \uc_authorizenet_menu()
  2. 6.2 payment/uc_authorizenet/uc_authorizenet.module \uc_authorizenet_menu()

Implements hook_menu().

File

payment/uc_authorizenet/uc_authorizenet.module, line 14
Processes payments using Authorize.net. Supports AIM and ARB.

Code

function uc_authorizenet_menu() {
  $items = array();
  $items['authnet/silent-post'] = array(
    'page callback' => 'uc_authorizenet_silent_post',
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
    'file' => 'uc_authorizenet.pages.inc',
  );
  return $items;
}