You are here

function nexmo_permission in Nexmo SMS Gateway 7

Implements hook_permission().

File

./nexmo.module, line 51
Provides NEXMO implementation methods.

Code

function nexmo_permission() {
  return array(
    'administer nexmosmsgateway' => array(
      'title' => t('Administer Nexmo SMS Gateway'),
      'description' => t('Nexmo SMS Gateway Inbound and Receipt access'),
      'restrict access' => TRUE,
    ),
  );
}