class LayoutBuilderHtmlEntityFormController in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/Controller/LayoutBuilderHtmlEntityFormController.php \Drupal\layout_builder\Controller\LayoutBuilderHtmlEntityFormController
- 10 core/modules/layout_builder/src/Controller/LayoutBuilderHtmlEntityFormController.php \Drupal\layout_builder\Controller\LayoutBuilderHtmlEntityFormController
Overrides the entity form controller service for layout builder operations.
Hierarchy
- class \Drupal\layout_builder\Controller\LayoutBuilderHtmlEntityFormController uses DependencySerializationTrait
Expanded class hierarchy of LayoutBuilderHtmlEntityFormController
1 string reference to 'LayoutBuilderHtmlEntityFormController'
- layout_builder.services.yml in core/
modules/ layout_builder/ layout_builder.services.yml - core/modules/layout_builder/layout_builder.services.yml
1 service uses LayoutBuilderHtmlEntityFormController
File
- core/
modules/ layout_builder/ src/ Controller/ LayoutBuilderHtmlEntityFormController.php, line 14
Namespace
Drupal\layout_builder\ControllerView source
class LayoutBuilderHtmlEntityFormController {
use DependencySerializationTrait;
/**
* The entity form controller being decorated.
*
* @var \Drupal\Core\Controller\FormController
*/
protected $entityFormController;
/**
* Constructs a LayoutBuilderHtmlEntityFormController object.
*
* @param \Drupal\Core\Controller\FormController $entity_form_controller
* The entity form controller being decorated.
*/
public function __construct(FormController $entity_form_controller) {
$this->entityFormController = $entity_form_controller;
}
/**
* {@inheritdoc}
*/
public function getContentResult(Request $request, RouteMatchInterface $route_match) {
$form = $this->entityFormController
->getContentResult($request, $route_match);
// If the form render element has a #layout_builder_element_keys property,
// first set the form element as a child of the root render array. Use the
// keys to get the layout builder element from the form render array and
// copy it to a separate child element of the root element to prevent any
// forms within the layout builder element from being nested.
if (isset($form['#layout_builder_element_keys'])) {
$build['form'] =& $form;
$layout_builder_element =& NestedArray::getValue($form, $form['#layout_builder_element_keys']);
$build['layout_builder'] = $layout_builder_element;
// Remove the layout builder element within the form.
$layout_builder_element = [];
return $build;
}
// If no #layout_builder_element_keys property, return form as is.
return $form;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DependencySerializationTrait:: |
protected | property | An array of entity type IDs keyed by the property name of their storages. | |
DependencySerializationTrait:: |
protected | property | An array of service IDs keyed by property name used for serialization. | |
DependencySerializationTrait:: |
public | function | 1 | |
DependencySerializationTrait:: |
public | function | 2 | |
LayoutBuilderHtmlEntityFormController:: |
protected | property | The entity form controller being decorated. | |
LayoutBuilderHtmlEntityFormController:: |
public | function | ||
LayoutBuilderHtmlEntityFormController:: |
public | function | Constructs a LayoutBuilderHtmlEntityFormController object. |