You are here

public function RequestHashForm::getCancelUrl in Simplenews 8.2

Same name and namespace in other branches
  1. 8 src/Form/RequestHashForm.php \Drupal\simplenews\Form\RequestHashForm::getCancelUrl()
  2. 3.x src/Form/RequestHashForm.php \Drupal\simplenews\Form\RequestHashForm::getCancelUrl()

Returns the route to go to if the user cancels the action.

Return value

\Drupal\Core\Url A URL object.

Overrides ConfirmFormInterface::getCancelUrl

File

src/Form/RequestHashForm.php, line 45

Class

RequestHashForm
Provides an generic base class for a confirmation form.

Namespace

Drupal\simplenews\Form

Code

public function getCancelUrl() {
  return new Url('simplenews.newsletter_subscriptions');
}