File

src/Form/QuicktabDeleteForm.php, line 21

Class

QuicktabDeleteForm
Class QuicktabAddForm

Namespace

Drupal\quicktabs\Form

Code

public function getQuestion() {
    
    /**
     * @var \Drupal\quicktabs\Entity\QuickSet $entity
     */
    $entity = $this->entity;
    return $this->t('Are you sure you want to delete this quicktabs instance with name %name?', array(
        '%name' => $entity->getTitle(),
    ));
}