public function SubscriptionCancelForm::getQuestion in Commerce Recurring Framework 8
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
- src/
Form/ SubscriptionCancelForm.php, line 37
Class
- SubscriptionCancelForm
- Provides a confirmation form for cancelling a subscription.
Namespace
Drupal\commerce_recurring\FormCode
public function getQuestion() {
return $this
->t('Are you sure you want to cancel the %label subscription?', [
'%label' => $this->entity
->label(),
]);
}