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