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