public function LocalTask::isCompleted in Translation Management Tool 8
Returns whether the status of this task is 'completed'.
Return value
bool TRUE if the status is 'completed', FALSE otherwise.
Overrides LocalTaskInterface::isCompleted
File
- translators/
tmgmt_local/ src/ Entity/ LocalTask.php, line 300
Class
- LocalTask
- Entity class for the local task entity.
Namespace
Drupal\tmgmt_local\EntityCode
public function isCompleted() {
return $this
->isStatus(static::STATUS_COMPLETED);
}