public function TMGMTJob::isFinished in Translation Management Tool 7
Returns whether the state of this jon is 'finished'.
Return value
boolean TRUE if the state is 'finished', FALSE otherwise.
File
- entity/
tmgmt.entity.job.inc, line 488
Class
- TMGMTJob
- Entity class for the tmgmt_job entity.
Code
public function isFinished() {
return $this
->isState(TMGMT_JOB_STATE_FINISHED);
}