You are here

function hosting_site_hosting_quota_resource in Hostmaster (Aegir) 6

Implement hook_hosting_quota_resource

File

modules/hosting/site/hosting_site.quota.inc, line 6

Code

function hosting_site_hosting_quota_resource() {
  $resources = array();
  $resources['sites'] = array(
    'title' => t('Sites'),
    'description' => t('The number of sites this client can have provisioned under them at any one time. Set to 0 for unlimited.'),
    'module' => 'hosting_site',
  );
  return $resources;
}