You are here

function sendinblue_permission in SendinBlue 7.2

Same name and namespace in other branches
  1. 7 sendinblue.module \sendinblue_permission()

Implements hook_permission().

File

./sendinblue.module, line 146
The entry point of Sendinblue module.

Code

function sendinblue_permission() {
  return array(
    'administer sendinblue' => array(
      'title' => t('administer sendinblue'),
      'description' => t('Access the sendinblue configuration options.'),
    ),
    'access sendinblue signup pages' => array(
      'title' => t('Access all SendinBlue Signup Pages.'),
      'description' => t('This does not effect Signup Blocks: only Pages.'),
    ),
  );
}