You are here

WebformEntityDeleteAction.php in Webform 6.x

Same filename and directory in other branches
  1. 8.5 src/Plugin/Action/WebformEntityDeleteAction.php

File

src/Plugin/Action/WebformEntityDeleteAction.php
View source
<?php

namespace Drupal\webform\Plugin\Action;

use Drupal\Core\Action\Plugin\Action\DeleteAction;

/**
 * Redirects to a webform deletion form.
 *
 * @Action(
 *   id = "webform_delete_action",
 *   label = @Translation("Delete webform"),
 *   type = "webform",
 *   confirm_form_route_name = "entity.webform.multiple_delete_confirm"
 * )
 */
class WebformEntityDeleteAction extends DeleteAction {

}

Classes

Namesort descending Description
WebformEntityDeleteAction Redirects to a webform deletion form.