You are here

public function UpgradeStatusForm::getTitle in Upgrade Status 8.3

Dynamic page title for the form to make the status target clear.

1 string reference to 'UpgradeStatusForm::getTitle'
upgrade_status.routing.yml in ./upgrade_status.routing.yml
upgrade_status.routing.yml

File

src/Form/UpgradeStatusForm.php, line 1388

Class

UpgradeStatusForm

Namespace

Drupal\upgrade_status\Form

Code

public function getTitle() {
  return $this
    ->t('Drupal @version upgrade status', [
    '@version' => $this->nextMajor,
  ]);
}