You are here

function sms_track_permission in SMS Framework 7

Implements hook_permission().

File

modules/sms_track/sms_track.module, line 62
Message tracking feature module for Drupal SMS Framework.

Code

function sms_track_permission() {
  return array(
    'view own sms messages' => array(
      'title' => t('View user\'s own sms messages.'),
      'description' => t('View sms messages that were sent or received by currently logged in user.'),
    ),
    'view all sms messages' => array(
      'title' => t('View all sms messages.'),
      'description' => t('View sms messages that were sent or received by any user.'),
    ),
  );
}