public function TMGMTLocalTaskItem::isPending in Translation Management Tool 7
Returns TRUE if the local task is pending.
Return value
bool TRUE if the local task item is untranslated.
File
- translators/
tmgmt_local/ entity/ tmgmt_local.entity.task_item.inc, line 127
Class
- TMGMTLocalTaskItem
- Entity class for the local task item entity.
Code
public function isPending() {
return $this->status == TMGMT_LOCAL_TASK_ITEM_STATUS_PENDING;
}