You are here

function hosting_hosting_feature in Hosting 6.2

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

Implementation of hook_hosting_feature().

File

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

Code

function hosting_hosting_feature() {
  $features['hosting'] = array(
    'title' => t('Hosting system'),
    'description' => t('API to provide support for servers, platforms and sites.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting',
    'group' => 'required',
  );
  return $features;
}