From 9138d7089ab33571f26d3c1e1145a15cfa2ce4fd Mon Sep 17 00:00:00 2001 From: Justin Toupin <justintoupin@Justins-MacBook-Pro.local> Date: Sat, 22 Apr 2023 19:48:16 -0600 Subject: [PATCH] Add private method for returning the correct insert component form --- src/Controller/ChooseComponentController.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Controller/ChooseComponentController.php b/src/Controller/ChooseComponentController.php index b98299b..4764ffb 100644 --- a/src/Controller/ChooseComponentController.php +++ b/src/Controller/ChooseComponentController.php @@ -116,7 +116,7 @@ class ChooseComponentController extends ControllerBase { protected function componentForm(string $type_name, LayoutParagraphsLayout $layout_paragraphs_layout, array $query_params) { $type = $this->entityTypeManager()->getStorage('paragraphs_type')->load($type_name); $form = $this->formBuilder()->getForm( - '\Drupal\layout_paragraphs\Form\InsertComponentForm', + $this->getInsertComponentFormClass(), $layout_paragraphs_layout, $type, $query_params['parent_uuid'], @@ -324,4 +324,11 @@ class ChooseComponentController extends ControllerBase { return $return_bundles; } + /** + * Returns the insert component form class. + */ + protected function getInsertComponentFormClass() { + return '\Drupal\layout_paragraphs\Form\InsertComponentForm'; + } + } -- GitLab