public function TMGMTJob::isUnprocessed in Translation Management Tool 7
Returns whether the state of this job is 'unprocessed'.
Return value
boolean TRUE if the state is 'unprocessed', FALSE otherwise.
1 call to TMGMTJob::isUnprocessed()
- TMGMTJob::isSubmittable in entity/
tmgmt.entity.job.inc - Checks whether a job is submittable.
File
- entity/
tmgmt.entity.job.inc, line 448
Class
- TMGMTJob
- Entity class for the tmgmt_job entity.
Code
public function isUnprocessed() {
return $this
->isState(TMGMT_JOB_STATE_UNPROCESSED);
}