You are here

hosting.feature.quota.inc in Hosting 6.2

Expose the quota feature to hostmaster.

File

quota/hosting.feature.quota.inc
View source
<?php

/**
 * @file
 *   Expose the quota feature to hostmaster.
 */

/**
 * Implementation of hook_hosting_feature().
 */
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;
}

Functions

Namesort descending Description
hosting_quota_hosting_feature Implementation of hook_hosting_feature().