You are here

function hosting_platform_hosting_feature in Hosting 6.2

Same name and namespace in other branches
  1. 5 platform/hosting_platform.module \hosting_platform_hosting_feature()
  2. 7.4 platform/hosting.feature.platform.inc \hosting_platform_hosting_feature()
  3. 7.3 platform/hosting.feature.platform.inc \hosting_platform_hosting_feature()

Implementation of hook_hosting_feature().

File

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

Code

function hosting_platform_hosting_feature() {
  $features['platform'] = array(
    'title' => t('Platform administration'),
    'description' => t('Create and manage platforms.'),
    'status' => HOSTING_FEATURE_REQUIRED,
    'module' => 'hosting_platform',
    'node' => 'platform',
    'group' => 'required',
  );
  return $features;
}