You are here

function hosting_web_pack_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 web_pack/hosting.feature.web_pack.inc \hosting_web_pack_hosting_feature()
  2. 7.3 web_pack/hosting.feature.web_pack.inc \hosting_web_pack_hosting_feature()

Implementation of hook_hosting_feature().

File

web_pack/hosting.feature.web_pack.inc, line 10
Expose the web pack feature to hostmaster.

Code

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;
}