You are here

public function MailchimpEventDeleteForm::getDescription in Mailchimp 2.x

Returns additional text to display as a description.

Return value

\Drupal\Core\StringTranslation\TranslatableMarkup The form description.

Overrides ContentEntityConfirmFormBase::getDescription

File

modules/mailchimp_events/src/Form/MailchimpEventDeleteForm.php, line 17

Class

MailchimpEventDeleteForm
Provides a form for deleting Mailchimp event types.

Namespace

Drupal\mailchimp_events\Form

Code

public function getDescription() {
  return $this
    ->t('<p>Deleting an event type will prevent drupal from triggering the same event again,
       but already logged events will still exist in the Mailchimp Activity Feed.</p>
       <p>Be sure to also delete any webform handlers and code that calls on this event entity.</p>');
}