You are here

function sms_blast_menu in SMS Framework 7

Same name and namespace in other branches
  1. 5 modules/sms_blast/sms_blast.module \sms_blast_menu()
  2. 6.2 modules/sms_blast/sms_blast.module \sms_blast_menu()
  3. 6 modules/sms_blast/sms_blast.module \sms_blast_menu()

Implements hook_menu().

File

modules/sms_blast/sms_blast.module, line 23
Allows bulk text messages to be sent to registered users.

Code

function sms_blast_menu() {
  $items['sms_blast'] = array(
    'title' => 'SMS Blast',
    'page callback' => 'drupal_get_form',
    'page arguments' => array(
      'sms_blast_form',
    ),
    'access arguments' => array(
      'Send SMS Blast',
    ),
    'type' => MENU_NORMAL_ITEM,
  );
  return $items;
}