hosting.feature.nginx_https.inc in Aegir HTTPS 7.3
Register the NGINX HTTPS Hosting feature.
File
submodules/nginx_https/hosting.feature.nginx_https.incView source
<?php
/**
* @file Register the NGINX HTTPS Hosting feature.
*/
/**
* Implements hook_hosting_feature().
*/
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;
}
Functions
Name | Description |
---|---|
hosting_nginx_https_hosting_feature | Implements hook_hosting_feature(). |