You are here

function sms_sendtophone_permission in SMS Framework 7

Implements hook_permission().

File

modules/sms_sendtophone/sms_sendtophone.module, line 36
Provides various tools for sending bits of information via SMS.

Code

function sms_sendtophone_permission() {
  return array(
    'send to any number' => array(
      'title' => t('send to any number'),
      'description' => t('Allow users to send nodes to any phone number.'),
    ),
  );
}