Same name in other branches
  1. 4.x src/Form/QuickTabsInstanceDeleteForm.php \Drupal\quicktabs\Form\QuickTabsInstanceDeleteForm::getQuestion()

Fichier

src/Form/QuickTabsInstanceDeleteForm.php, line 17

Classe

QuickTabsInstanceDeleteForm
Class QuickTabsInstanceDeleteForm.

Namespace

Drupal\quicktabs\Form

Code

public function getQuestion() {
    $entity = $this->entity;
    return $this->t('Are you sure you want to delete this quicktabs instance with name %name?', [
        '%name' => $entity->getLabel(),
    ]);
}