public function TMGMTJobItem::isAborted in Translation Management Tool 7
Checks whether the state of this transaction is 'aborted'.
Return value
boolean TRUE if the state is 'aborted', FALSE otherwise.
File
- entity/
tmgmt.entity.job_item.inc, line 539
Class
- TMGMTJobItem
- Entity class for the tmgmt_job entity.
Code
public function isAborted() {
return $this
->isState(TMGMT_JOB_ITEM_STATE_ABORTED);
}