You are here

function hosting_quota_theme in Hosting 6.2

Same name and namespace in other branches
  1. 7.4 quota/hosting_quota.module \hosting_quota_theme()
  2. 7.3 quota/hosting_quota.module \hosting_quota_theme()

Implements hook_theme().

File

quota/hosting_quota.module, line 348
Implement quota's for the resource used by client.

Code

function hosting_quota_theme($existing, $resource, $theme, $path) {
  return array(
    'hosting_quota_client' => array(
      'arguments' => array(
        'node' => NULL,
      ),
    ),
    'hosting_quota_admin_list' => array(
      'arguments' => array(
        'client_quotas' => array(),
        'resources' => array(),
        'items_per_page' => 25,
      ),
    ),
  );
}