You are here

public function TMGMTJobItem::isActive in Translation Management Tool 7

Checks whether the state of this transaction is 'active'.

Return value

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

1 call to TMGMTJobItem::isActive()
TMGMTJobItem::addTranslatedData in entity/tmgmt.entity.job_item.inc
Adds translated data to a job item.

File

entity/tmgmt.entity.job_item.inc, line 519

Class

TMGMTJobItem
Entity class for the tmgmt_job entity.

Code

public function isActive() {
  return $this
    ->isState(TMGMT_JOB_ITEM_STATE_ACTIVE);
}