You are here

function sms_permission in SMS Framework 7

Implements hook_permission().

File

./sms.module, line 142
The core of the SMS Framework. Provides gateway management and API for sending and receiving SMS messages.

Code

function sms_permission() {
  return array(
    'administer smsframework' => array(
      'title' => t('administer smsframework'),
      'description' => t('Administer SMS Framework'),
      'restrict access' => TRUE,
    ),
  );
}