hosting.feature.server.inc in Hosting 7.4
Same filename and directory in other branches
Expose the server feature to hostmaster.
File
server/hosting.feature.server.incView source
<?php
/**
* @file
* Expose the server feature to hostmaster.
*/
/**
* Implements hook_hosting_feature().
*/
function hosting_server_hosting_feature() {
$features['server'] = array(
'title' => t('Server administration'),
'description' => t('Manage multiple servers.'),
'status' => HOSTING_FEATURE_REQUIRED,
'module' => 'hosting_server',
'node' => 'server',
'group' => 'required',
);
return $features;
}
Functions
Name | Description |
---|---|
hosting_server_hosting_feature | Implements hook_hosting_feature(). |