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