You are here

function hosting_nginx_https_hosting_feature in Aegir HTTPS 7.3

Implements hook_hosting_feature().

File

submodules/nginx_https/hosting.feature.nginx_https.inc, line 9
Register the NGINX HTTPS Hosting feature.

Code

function hosting_nginx_https_hosting_feature() {
  $modules = system_rebuild_module_data();
  $features['nginx_https'] = array(
    'title' => t('Nginx HTTPS support'),
    'description' => $modules['hosting_nginx_https']->info['description'],
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_nginx_https',
    'group' => 'optional',
  );
  return $features;
}