You are here

function hosting_server_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 server/hosting.feature.server.inc \hosting_server_hosting_feature()
  2. 7.3 server/hosting.feature.server.inc \hosting_server_hosting_feature()

Implementation of 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;
}