function aes_permission in AES encryption 7
Implements hook_permission().
File
- ./
aes.module, line 53 - Main file of the AES encryption module.
Code
function aes_permission() {
return array(
'administer aes' => array(
'title' => t('Administer AES'),
'description' => t('Administer AES module.'),
),
'view passwords' => array(
'title' => t('View passwords'),
'description' => t('View user password in plain text.'),
'restrict access' => TRUE,
),
);
}