ActionDeleteForm.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\action\FormFile
core/modules/action/src/Form/ActionDeleteForm.phpView source
<?php
namespace Drupal\action\Form;
use Drupal\Core\Entity\EntityDeleteForm;
use Drupal\Core\Url;
/**
* Builds a form to delete an action.
*
* @internal
*/
class ActionDeleteForm extends EntityDeleteForm {
/**
* {@inheritdoc}
*/
public function getCancelUrl() {
return new Url('entity.action.collection');
}
}
Classes
Name | Description |
---|---|
ActionDeleteForm | Builds a form to delete an action. |