You are here

public function SubscriptionDeleteForm::getDescription in Commerce Recurring Framework 8

Returns additional text to display as a description.

Return value

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

Overrides ContentEntityConfirmFormBase::getDescription

File

src/Form/SubscriptionDeleteForm.php, line 12

Class

SubscriptionDeleteForm

Namespace

Drupal\commerce_recurring\Form

Code

public function getDescription() {
  $description = $this
    ->t("This will also delete the subscription's related order items and orders.");
  return $description . '<br>' . parent::getDescription();
}