You are here

function casetracker_theme in Case Tracker 7

Same name and namespace in other branches
  1. 6 casetracker.module \casetracker_theme()
  2. 7.2 casetracker.module \casetracker_theme()

Implements hook_theme().

File

./casetracker.module, line 992
Enables the handling of projects and their cases.

Code

function casetracker_theme() {
  return array(
    'casetracker_comment_changes' => array(
      'variables' => array(
        'old' => NULL,
        'new' => NULL,
      ),
    ),
    'casetracker_case_form_common' => array(
      'render element' => 'form',
    ),
    'casetracker_case_summary' => array(
      'variables' => array(
        'case' => NULL,
        'project' => NULL,
      ),
    ),
    'casetracker_project_summary' => array(
      'variables' => array(
        'project' => NULL,
      ),
    ),
  );
}