You are here

function CaseTrackerProjectType::isLocked in Case Tracker 7.2

File

./casetracker_project_type.inc, line 20
CaseTrackerProject type editing UI.

Class

CaseTrackerProjectType
The class used for project type entities

Code

function isLocked() {
  return isset($this->status) && empty($this->is_new) && ($this->status & ENTITY_IN_CODE || $this->status & ENTITY_FIXED);
}