13e104627e7f133dc5d7b75ca0d77a079077e602
[yaffs-website] / vendor / drupal / console / templates / module / src / Entity / Form / entity-content-delete.php.twig
1 {% extends "base/class.php.twig" %}
2
3 {% block file_path %}
4 \Drupal\{{module}}\Form\{{ entity_class }}DeleteForm.
5 {% endblock %}
6
7 {% block namespace_class %}
8 namespace Drupal\{{module}}\Form;
9 {% endblock %}
10
11 {% block use_class %}
12 use Drupal\Core\Entity\ContentEntityDeleteForm;
13 {% endblock %}
14
15 {% block class_declaration %}
16 /**
17  * Provides a form for deleting {{ label }} entities.
18  *
19  * @ingroup {{module}}
20  */
21 class {{ entity_class }}DeleteForm extends ContentEntityDeleteForm {% endblock %}