You are here

public function ContextDeleteForm::getCancelUrl in Context 8.4

Same name and namespace in other branches
  1. 8 modules/context_ui/src/Form/ContextDeleteForm.php \Drupal\context_ui\Form\ContextDeleteForm::getCancelUrl()
  2. 8.0 modules/context_ui/src/Form/ContextDeleteForm.php \Drupal\context_ui\Form\ContextDeleteForm::getCancelUrl()

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

Return value

\Drupal\Core\Url A URL object.

Overrides ConfirmFormInterface::getCancelUrl

1 call to ContextDeleteForm::getCancelUrl()
ContextDeleteForm::submitForm in modules/context_ui/src/Form/ContextDeleteForm.php
This is the default entity object builder function. It is called before any other submit handler to build the new entity object to be used by the following submit handlers. At this point of the form workflow the entity is validated and the form state…

File

modules/context_ui/src/Form/ContextDeleteForm.php, line 54

Class

ContextDeleteForm
Provides a form to delete a context.

Namespace

Drupal\context_ui\Form

Code

public function getCancelUrl() {
  return new Url('entity.context.collection');
}