You are here

public function LocalTask::isUnassigned in Translation Management Tool 8

Returns whether the status of this task is 'unassigned'.

Return value

bool TRUE if the status is 'unassigned', FALSE otherwise.

Overrides LocalTaskInterface::isUnassigned

File

translators/tmgmt_local/src/Entity/LocalTask.php, line 286

Class

LocalTask
Entity class for the local task entity.

Namespace

Drupal\tmgmt_local\Entity

Code

public function isUnassigned() {
  return $this
    ->isStatus(static::STATUS_UNASSIGNED);
}