You are here

public function TMGMTLocalTaskItem::isCompleted in Translation Management Tool 7

Returns TRUE if the local task is translated (fully translated).

Return value

bool TRUE if the local task item is translated.

File

translators/tmgmt_local/entity/tmgmt_local.entity.task_item.inc, line 137

Class

TMGMTLocalTaskItem
Entity class for the local task item entity.

Code

public function isCompleted() {
  return $this->status == TMGMT_LOCAL_TASK_ITEM_STATUS_COMPLETED;
}