You are here

function wsclient_menu in Web service client 7

Implements hook_menu().

File

./wsclient.module, line 11
Web service client - module file.

Code

function wsclient_menu() {
  $items['wsclient/%wsclient_service/notify'] = array(
    'page callback' => 'wsclient_notify',
    'page arguments' => array(
      1,
    ),
    'access callback' => TRUE,
    'type' => MENU_CALLBACK,
    'file' => 'wsclient.inc',
  );
  return $items;
}