public function MailchimpCampaignSendForm::getQuestion in Mailchimp 2.x
Same name and namespace in other branches
- 8 modules/mailchimp_campaign/src/Form/MailchimpCampaignSendForm.php \Drupal\mailchimp_campaign\Form\MailchimpCampaignSendForm::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/ MailchimpCampaignSendForm.php, line 47
Class
- MailchimpCampaignSendForm
- Form controller for the MailchimpCampaign send campaign form.
Namespace
Drupal\mailchimp_campaign\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to send %name?', [
'%name' => $this->entity
->label(),
]);
}