You are here

function hosting_https_hosting_feature in Aegir HTTPS 7.3

Implements hook_hosting_feature().

File

./hosting.feature.https.inc, line 10
Register this module as a Hosting feature.

Code

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;
}