function webform_encrypt_permission in Webform Encrypt 7
Implementation of hook_permission().
File
- ./
webform_encrypt.module, line 11 - Main module file for the Webform Encrypt module.
Code
function webform_encrypt_permission() {
return array(
'view encrypted values' => array(
'title' => t('View Encrypted Values in Webform Results'),
'description' => t('Users that do not have this permission will see placeholder text.'),
),
);
}