public ShortcutDeleteForm::getCancelUrl()
Returns the route to go to if the user cancels the action.
Return value
\Drupal\Core\Url A URL object.
Overrides ContentEntityDeleteForm::getCancelUrl
File
- core/modules/shortcut/src/Form/ShortcutDeleteForm.php, line 23
Class
- ShortcutDeleteForm
- Builds the shortcut link deletion form.
Namespace
Drupal\shortcut\Form
Code
1 2 3 4 5 | public function getCancelUrl() { return new Url( 'entity.shortcut_set.customize_form' , array ( 'shortcut_set' => $this ->entity->bundle(), )); } |
Please login to continue.