You are here

public function TMGMTJob::isAborted in Translation Management Tool 7

Returns whether the state of this job is 'aborted'.

Return value

boolean TRUE if the state is 'aborted', FALSE otherwise.

File

entity/tmgmt.entity.job.inc, line 458

Class

TMGMTJob
Entity class for the tmgmt_job entity.

Code

public function isAborted() {
  return $this
    ->isState(TMGMT_JOB_STATE_ABORTED);
}