function hosting_quota_theme in Hosting 7.3
Same name and namespace in other branches
- 6.2 quota/hosting_quota.module \hosting_quota_theme()
- 7.4 quota/hosting_quota.module \hosting_quota_theme()
Implements hook_theme().
File
- quota/
hosting_quota.module, line 411 - Implement quota's for the resource used by client.
Code
function hosting_quota_theme($existing, $resource, $theme, $path) {
return array(
'hosting_quota_client' => array(
'variables' => array(
'node' => NULL,
),
),
'hosting_quota_admin_list' => array(
'variables' => array(
'client_quotas' => array(),
'resources' => array(),
'items_per_page' => 25,
),
),
);
}