function hosting_web_cluster_hosting_feature in Hosting 7.3
Same name and namespace in other branches
- 6.2 web_cluster/hosting.feature.web_cluster.inc \hosting_web_cluster_hosting_feature()
- 7.4 web_cluster/hosting.feature.web_cluster.inc \hosting_web_cluster_hosting_feature()
Implements hook_hosting_feature().
File
- web_cluster/
hosting.feature.web_cluster.inc, line 10 - Expose the web cluster feature to hostmaster.
Code
function hosting_web_cluster_hosting_feature() {
$features['web_cluster'] = array(
'title' => t('Web clusters'),
'description' => t('Provides a service to expose a site across multiple web front ends.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_web_cluster',
'group' => 'optional',
);
return $features;
}