You are here

function casetracker_case_page_title in Case Tracker 7.2

Menu title callback for showing individual entities

File

./casetracker_case.inc, line 119
This file concentrates all general functionality related to Cases in Case Tracker, leaving to the other files in /admin the stuff related to CRUD and structural configuration

Code

function casetracker_case_page_title(CaseTrackerCase $case) {
  return $case->title;
}