You are here

function sms_user_permission in SMS Framework 7

Implements hook_permission().

File

modules/sms_user/sms_user.module, line 20
Provides integration between the SMS Framework and Drupal users.

Code

function sms_user_permission() {
  return array(
    'receive sms' => array(
      'title' => t('receive sms'),
      'description' => t('Receive SMS from the site.'),
    ),
    'edit own sms number' => array(
      'title' => t('edit own sms number'),
      'description' => t('Edit own SMS number.'),
    ),
  );
}