ShortcutDeleteForm.php in Drupal 8
File
core/modules/shortcut/src/Form/ShortcutDeleteForm.php
View source
<?php
namespace Drupal\shortcut\Form;
use Drupal\Core\Entity\ContentEntityDeleteForm;
use Drupal\Core\Url;
class ShortcutDeleteForm extends ContentEntityDeleteForm {
public function getFormId() {
return 'shortcut_confirm_delete';
}
public function getCancelUrl() {
return new Url('entity.shortcut_set.customize_form', [
'shortcut_set' => $this->entity
->bundle(),
]);
}
protected function getRedirectUrl() {
return $this
->getCancelUrl();
}
}