function hosting_server_hosting_feature in Hosting 7.4
Same name and namespace in other branches
- 6.2 server/hosting.feature.server.inc \hosting_server_hosting_feature()
- 7.3 server/hosting.feature.server.inc \hosting_server_hosting_feature()
Implements hook_hosting_feature().
File
- server/hosting.feature.server.inc, line 10 
- Expose the server feature to hostmaster.
Code
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;
}