You are here

public function MailchimpCampaignSendForm::getQuestion in Mailchimp 8

Same name and namespace in other branches
  1. 2.x 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\Form

Code

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