function hosting_nginx_hosting_feature in Hosting 7.4
Same name and namespace in other branches
- 6.2 web_server/nginx/hosting.feature.nginx.inc \hosting_nginx_hosting_feature()
- 7.3 web_server/nginx/hosting.feature.nginx.inc \hosting_nginx_hosting_feature()
Implements hook_hosting_feature().
File
- web_server/
nginx/ hosting.feature.nginx.inc, line 10 - Register the NGINX Hosting feature.
Code
function hosting_nginx_hosting_feature() {
$features['nginx'] = array(
'title' => t('Nginx web servers'),
'description' => t('Provide support for the NGINX web server.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_nginx',
'group' => 'optional',
);
return $features;
}