You are here

function support_pm_theme in Support Ticketing System 7

Same name and namespace in other branches
  1. 6 support_pm/support_pm.module \support_pm_theme()

Implements hook_theme().

File

support_pm/support_pm.module, line 177
Support Project Management. @author Jeremy Andrews <jeremy@tag1consulting.com> @package Support

Code

function support_pm_theme() {
  return array(
    'support_pm_user_week' => array(
      'render element' => 'form',
    ),
    'support_pm_pager' => array(
      'variables' => array(
        'text' => NULL,
        'op' => NULL,
        'parameters' => array(),
        'attributes' => array(),
      ),
    ),
    'support_pm_user_client_hours_details' => array(
      'variables' => array(
        'day' => array(),
        'scale' => 12,
      ),
    ),
    'support_pm_user_hours_summary' => array(
      'variables' => array(
        'totals' => array(),
        'load_callback' => 'support_client_load',
        'max' => NULL,
        'message' => 'Mismatch',
      ),
    ),
    'support_pm_plan_diff' => array(
      'variables' => array(
        'diff' => NULL,
        'plan' => NULL,
      ),
    ),
  );
}