You are here

function sms_user_perm in SMS Framework 6.2

Same name and namespace in other branches
  1. 5 modules/sms_user/sms_user.module \sms_user_perm()
  2. 6 modules/sms_user/sms_user.module \sms_user_perm()

Implementation of hook_perm()

File

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

Code

function sms_user_perm() {
  return array(
    'receive sms',
    'edit own sms number',
  );
}