You are here

function hosting_apache_https_hosting_feature in Aegir HTTPS 7.3

Implements hook_hosting_feature().

File

submodules/apache_https/hosting.feature.apache_https.inc, line 9
Register the Apache HTTPS Hosting feature.

Code

function hosting_apache_https_hosting_feature() {
  $modules = system_rebuild_module_data();
  $features['apache_https'] = array(
    'title' => t('Apache HTTPS support'),
    'description' => $modules['hosting_apache_https']->info['description'],
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_apache_https',
    'group' => 'optional',
  );
  return $features;
}