You are here

function hosting_client_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 5 client/hosting_client.module \hosting_client_hosting_feature()
  2. 7.4 client/hosting.feature.client.inc \hosting_client_hosting_feature()
  3. 7.3 client/hosting.feature.client.inc \hosting_client_hosting_feature()

Implementation of hook_hosting_feature().

File

client/hosting.feature.client.inc, line 10
Expose the client feature to hostmaster.

Code

function hosting_client_hosting_feature() {
  $features['client'] = array(
    'title' => t('Clients'),
    'description' => t('Track and manage ownership of hosted sites, and access to platforms.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_client',
    'node' => 'client',
    'group' => 'required',
  );
  return $features;
}