You are here

function hosting_server_hosting_feature in Hostmaster (Aegir) 6

Implementation of hook_hosting_feature().

File

modules/hosting/server/hosting_server.module, line 37

Code

function hosting_server_hosting_feature() {
  $features['server'] = array(
    'title' => t('Server administration'),
    'description' => t('Manage multiple servers.'),
    'status' => HOSTING_FEATURE_ENABLED,
    'node' => 'server',
  );
  return $features;
}