You are here

public function DeleteMultiple::getCancelUrl in Feeds 8.3

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 DeleteMultiple::getCancelUrl()
DeleteMultiple::submitForm in src/Form/DeleteMultiple.php
Form submission handler.

File

src/Form/DeleteMultiple.php, line 92

Class

DeleteMultiple
Provides a feed deletion confirmation form.

Namespace

Drupal\feeds\Form

Code

public function getCancelUrl() {
  return new Url('feeds.admin');
}