You are here

public function MergeForm::getTitle in Bibliography & Citation 8

Same name and namespace in other branches
  1. 2.0.x modules/bibcite_entity/src/Form/MergeForm.php \Drupal\bibcite_entity\Form\MergeForm::getTitle()

Title callback.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup Page title.

1 string reference to 'MergeForm::getTitle'
bibcite_entity.routing.yml in modules/bibcite_entity/bibcite_entity.routing.yml
modules/bibcite_entity/bibcite_entity.routing.yml

File

modules/bibcite_entity/src/Form/MergeForm.php, line 94

Class

MergeForm
Merge bibliographic entities.

Namespace

Drupal\bibcite_entity\Form

Code

public function getTitle() {
  return $this
    ->t('Merge @label', [
    '@label' => $this->entity
      ->label(),
  ]);
}