function sms_txtlocal_menu in SMS Framework 6
Implement hook_menu()
Return value
Drupal menu item array
File
- modules/
sms_txtlocal/ sms_txtlocal.module, line 52 - Txtlocal gateway module for Drupal SMS Framework. Outbound+Inbound
Code
function sms_txtlocal_menu() {
$items = array();
$items['sms/txtlocal/receiver'] = array(
'title' => 'Txtlocal SMS message receiver',
'page callback' => 'sms_txtlocal_receive_message',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
$items['sms/txtlocal/receipt'] = array(
'title' => 'Txtlocal SMS receipt receiver',
'page callback' => 'sms_txtlocal_receive_receipt',
'access callback' => TRUE,
'type' => MENU_CALLBACK,
);
return $items;
}