You are here

function hosting_site_hosting_feature in Hosting 6.2

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

Implementation of hook_hosting_feature().

File

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

Code

function hosting_site_hosting_feature() {
  $features['site'] = array(
    'title' => t('Site administration'),
    'description' => t('Create and manage sites.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_site',
    'node' => 'site',
    'group' => 'required',
  );
  return $features;
}