You are here

function hosting_web_server_hosting_feature in Hosting 7.3

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

Implements hook_hosting_feature().

File

web_server/hosting.feature.web_server.inc, line 10
Expose the web_server feature to hostmaster.

Code

function hosting_web_server_hosting_feature() {
  $features['web_server'] = array(
    'title' => t('Web servers'),
    'description' => t('API to provide support for web servers.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_web_server',
    'group' => 'required',
  );
  return $features;
}