public function MailchimpListsUpdateMergevarsForm::getQuestion in Mailchimp 8
Same name and namespace in other branches
- 2.x modules/mailchimp_lists/src/Form/MailchimpListsUpdateMergevarsForm.php \Drupal\mailchimp_lists\Form\MailchimpListsUpdateMergevarsForm::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_lists/ src/ Form/ MailchimpListsUpdateMergevarsForm.php, line 71
Class
- MailchimpListsUpdateMergevarsForm
- Batch update Mailchimp lists mergevars.
Namespace
Drupal\mailchimp_lists\FormCode
public function getQuestion() {
return $this
->t('Update mergevars on all entities?');
}