You are here

function sms_blast_permission in SMS Framework 7

Implements hook_permission().

File

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

Code

function sms_blast_permission() {
  return array(
    'Send SMS Blast' => array(
      'title' => t('Send SMS Blast'),
      'description' => t('This allows the user to send an SMS blast.'),
    ),
  );
}