You are here

function encrypt_permission in Encrypt 7

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

Implementation of hook_permission().

File

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

Code

function encrypt_permission() {
  return array(
    'administer encrypt' => array(
      'title' => t('Administer encryption settings'),
    ),
  );
}