hosting.feature.web_cluster.inc in Hosting 7.4
Same filename and directory in other branches
Expose the web cluster feature to hostmaster.
File
web_cluster/hosting.feature.web_cluster.incView source
<?php
/**
* @file
* Expose the web cluster feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
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;
}
Functions
Name | Description |
---|---|
hosting_web_cluster_hosting_feature | Implements hook_hosting_feature(). |