function RequiredContextDelete::getCancelUrl

Same name and namespace in other branches
  1. 8.x-3.x src/Form/RequiredContextDelete.php \Drupal\ctools\Form\RequiredContextDelete::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/RequiredContextDelete.php, line 154

Class

RequiredContextDelete
Base class for adding a required contexts step to your wizard.

Namespace

Drupal\ctools\Form

Code

public function getCancelUrl() {
  $cached_values = $this->tempstore
    ->get($this->tempstore_id)
    ->get($this->machine_name);
  [
    $route_name,
    $route_parameters,
  ] = $this->getParentRouteInfo($cached_values);
  return new Url($route_name, $route_parameters);
}