function hosting_web_server_hosting_feature in Hosting 7.4
Same name and namespace in other branches
- 5 web_server/hosting_web_server.module \hosting_web_server_hosting_feature()
- 6.2 web_server/hosting.feature.web_server.inc \hosting_web_server_hosting_feature()
- 7.3 web_server/hosting.feature.web_server.inc \hosting_web_server_hosting_feature()
Implements hook_hosting_feature().
File
- web_server/
hosting.feature.web_server.inc, line 10 - Expose the web_server feature to hostmaster.
Code
function hosting_web_server_hosting_feature() {
$features['web_server'] = array(
'title' => t('Web servers'),
'description' => t('API to provide support for web servers.'),
'status' => HOSTING_FEATURE_REQUIRED,
'module' => 'hosting_web_server',
'group' => 'required',
);
return $features;
}