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