Added Entity and Entity Reference Revisions which got dropped somewhere along the...
[yaffs-website] / web / modules / contrib / entity / src / Form / DeleteMultipleForm.php
diff --git a/web/modules/contrib/entity/src/Form/DeleteMultipleForm.php b/web/modules/contrib/entity/src/Form/DeleteMultipleForm.php
new file mode 100644 (file)
index 0000000..2a7dbc2
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+
+namespace Drupal\entity\Form;
+
+use Drupal\Core\Entity\Form\DeleteMultipleForm as CoreDeleteMultipleForm;
+
+@trigger_error('\Drupal\entity\Form\DeleteMultipleForm has been deprecated in favor of \Drupal\Core\Entity\Form\DeleteMultipleForm. Use that instead.');
+
+/**
+ * Provides an entities deletion confirmation form.
+ *
+ * @deprecated Use \Drupal\Core\Entity\Form\DeleteMultipleForm instead.
+ */
+class DeleteMultipleForm extends CoreDeleteMultipleForm {}