function ContactDeleteForm::getCancelUrl

Same name in other branches
  1. 3.x modules/content_entity_example/src/Form/ContactDeleteForm.php \Drupal\content_entity_example\Form\ContactDeleteForm::getCancelUrl()
  2. 8.x-1.x content_entity_example/src/Form/ContactDeleteForm.php \Drupal\content_entity_example\Form\ContactDeleteForm::getCancelUrl()

If the delete command is canceled, return to the contact list.

Overrides ConfirmFormInterface::getCancelUrl

File

modules/content_entity_example/src/Form/ContactDeleteForm.php, line 28

Class

ContactDeleteForm
Provides a form for deleting a content_entity_example entity.

Namespace

Drupal\content_entity_example\Form

Code

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