hosting.feature.https.inc in Aegir HTTPS 7.3
Register this module as a Hosting feature.
File
hosting.feature.https.incView source
<?php
/**
* @file
* Register this module as a Hosting feature.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_https_hosting_feature() {
$features['https'] = array(
'title' => t('HTTPS support'),
'description' => t('Provides a service to expose a site encrypted by HTTPS certificates.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_https',
'group' => 'optional',
'role_permissions' => array(
'aegir client' => array(
'manage site HTTPS settings',
),
),
'enable' => 'hosting_https_feature_enable_callback',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_https_hosting_feature | Implements hook_hosting_feature(). |