You are here

function hosting_web_server_hosting_feature in Hosting 5

Same name and namespace in other branches
  1. 6.2 web_server/hosting.feature.web_server.inc \hosting_web_server_hosting_feature()
  2. 7.4 web_server/hosting.feature.web_server.inc \hosting_web_server_hosting_feature()
  3. 7.3 web_server/hosting.feature.web_server.inc \hosting_web_server_hosting_feature()

File

web_server/hosting_web_server.module, line 117
Web server node type is defined here.

Code

function hosting_web_server_hosting_feature() {
  $features['web_server'] = array(
    'title' => t('Web servers'),
    'description' => t('Allow for creation of multiple web server nodes, and for distributed management of sites.'),
    'status' => HOSTING_FEATURE_DISABLED,
    'node' => 'web_server',
    'group' => 'experimental',
  );
  return $features;
}