function field_encrypt_permission in Field Encryption 7
Implements hook_permission().
File
- ./
field_encrypt.module, line 11 - Core functions for the Field Encryption module.
Code
function field_encrypt_permission() {
return array(
'administer text field encryption' => array(
'title' => t('Administer text field encryption'),
'description' => t('Allows certain text fields to be individually encrypted so that their data is better protected.'),
'restrict access' => TRUE,
),
);
}