function _security_review_help_ssl in Security Review 6
Same name and namespace in other branches
- 7 security_review.help.inc \_security_review_help_ssl()
File
- ./
security_review.help.inc, line 32 - Main help definition.
Code
function _security_review_help_ssl() {
$description = t('The transfer of data between the visitor on your site and you Drupal installation can be secured through encryption.');
$element = array(
'problem' => t("Secure and private communication"),
'type' => 'ssl',
'description' => $description,
'options' => array(
array(
'name' => 'Secure Pages',
'href' => 'http://drupal.org/project/securepages',
),
),
);
return theme('security_review_help_options', $element);
}