public function TMGMTJobItem::isNeedsReview in Translation Management Tool 7
Checks whether the state of this transaction is 'needs review'.
Return value
boolean TRUE if the state is 'needs review', FALSE otherwise.
1 call to TMGMTJobItem::isNeedsReview()
- TMGMTJobItem::acceptTranslation in entity/
tmgmt.entity.job_item.inc - Propagates the returned job item translations to the sources.
File
- entity/
tmgmt.entity.job_item.inc, line 529
Class
- TMGMTJobItem
- Entity class for the tmgmt_job entity.
Code
public function isNeedsReview() {
return $this
->isState(TMGMT_JOB_ITEM_STATE_REVIEW);
}