real_aes.install in Real AES 8
Same filename and directory in other branches
Holds installation hooks for Real AES.
File
real_aes.installView source
<?php
/**
* @file
* Holds installation hooks for Real AES.
*/
/**
* Implements hook_requirements().
*/
function real_aes_requirements($phase) {
$requirements = array();
$requirements['real_aes_library'] = array(
'title' => t('Defuse PHP-Encryption library'),
);
if (class_exists('\\Defuse\\Crypto\\Crypto')) {
$requirements['real_aes_library']['value'] = t('Installed');
$requirements['real_aes_library']['severity'] = REQUIREMENT_OK;
}
else {
$requirements['real_aes_library']['value'] = t('Not Installed');
$requirements['real_aes_library']['severity'] = REQUIREMENT_ERROR;
$requirements['real_aes_library']['description'] = t('Please install the Defuse PHP-encryption library via Composer. See README.txt');
}
return $requirements;
}
Functions
Name | Description |
---|---|
real_aes_requirements | Implements hook_requirements(). |