hosting.feature.web_pack.inc in Hosting 7.4
Same filename and directory in other branches
Expose the web pack feature to hostmaster.
File
web_pack/hosting.feature.web_pack.incView source
<?php
/**
* @file
* Expose the web pack feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_web_pack_hosting_feature() {
$features['web_pack'] = array(
'title' => t('Web pack'),
'description' => t('Provides a service to expose a site across multiple web front ends. This adds to the base cluster class the capability of having "light" servers which do not have files copied around.'),
'status' => HOSTING_FEATURE_DISABLED,
'module' => 'hosting_web_pack',
'group' => 'optional',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_web_pack_hosting_feature | Implements hook_hosting_feature(). |