public function LocalTask::label

File

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

Class

LocalTask
Entity class for the local task entity.

Namespace

Drupal\tmgmt_local\Entity

Code

public function label() {
  if (!$this
    ->get('title')->value) {
    return $this
      ->getJob()
      ->label();
  }
  else {
    return $this
      ->get('title')->value;
  }
}