You are here

function hosting_quota_hosting_feature in Hosting 6.2

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

Implementation of hook_hosting_feature().

File

quota/hosting.feature.quota.inc, line 11
Expose the quota feature to hostmaster.

Code

function hosting_quota_hosting_feature() {
  $features['quota'] = array(
    'title' => t('Quotas'),
    'description' => t('Provides the ability to define and allocate quotas for various resources to clients.'),
    'status' => HOSTING_FEATURE_DISABLED,
    'module' => 'hosting_quota',
    'group' => 'experimental',
  );
  return $features;
}