You are here

function encrypt_permission in Encrypt 7.3

Same name and namespace in other branches
  1. 7 encrypt.module \encrypt_permission()
  2. 7.2 encrypt.module \encrypt_permission()

Implements hook_permission().

File

./encrypt.module, line 96
Main Encrypt Drupal File

Code

function encrypt_permission() {
  return array(
    'administer encrypt' => array(
      'title' => t('Administer encryption settings'),
      'description' => 'Change encryption settings (does not let them view encrypted data).',
    ),
  );
}