You are here

function sms_muse_menu in SMS Framework 5

Create menu callback for JS

File

modules/sms_muse/sms_muse.module, line 225

Code

function sms_muse_menu() {
  $items[] = array(
    'path' => 'sms/in/auth',
    'type' => MENU_CALLBACK,
    'access' => TRUE,
    'callback' => sms_muse_authenticate,
  );
  return $items;
}