public function MailchimpCampaignDeleteForm::getQuestion in Mailchimp 8
Same name and namespace in other branches
- 2.x modules/mailchimp_campaign/src/Form/MailchimpCampaignDeleteForm.php \Drupal\mailchimp_campaign\Form\MailchimpCampaignDeleteForm::getQuestion()
Returns the question to ask the user.
Return value
\Drupal\Core\StringTranslation\TranslatableMarkup The form question. The page title will be set to this value.
Overrides ConfirmFormInterface::getQuestion
File
- modules/
mailchimp_campaign/ src/ Form/ MailchimpCampaignDeleteForm.php, line 47
Class
- MailchimpCampaignDeleteForm
- Form controller for the MailchimpCampaign entity delete form.
Namespace
Drupal\mailchimp_campaign\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to delete %name?', [
'%name' => $this->entity
->label(),
]);
}