public function TMGMTLocalTask::isClosed in Translation Management Tool 7
Returns whether the status of this task is 'closed'.
Return value
boolean TRUE if the status is 'closed', FALSE otherwise.
File
- translators/
tmgmt_local/ entity/ tmgmt_local.entity.task.inc, line 306
Class
- TMGMTLocalTask
- Entity class for the local task entity.
Code
public function isClosed() {
return $this
->isStatus(TMGMT_LOCAL_TASK_STATUS_CLOSED);
}