hosting.feature.quota.inc in Hosting 6.2
Same filename and directory in other branches
Expose the quota feature to hostmaster.
File
quota/hosting.feature.quota.incView 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
Name | Description |
---|---|
hosting_quota_hosting_feature | Implementation of hook_hosting_feature(). |