You are here

public function LayoutBuilderEntityViewDisplay::setOverridable in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay::setOverridable()
  2. 9 core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php \Drupal\layout_builder\Entity\LayoutBuilderEntityViewDisplay::setOverridable()

Sets the display to allow or disallow overrides.

Parameters

bool $overridable: TRUE if the display should allow overrides, FALSE otherwise.

Return value

$this

Overrides LayoutEntityDisplayInterface::setOverridable

1 call to LayoutBuilderEntityViewDisplay::setOverridable()
LayoutBuilderEntityViewDisplay::disableLayoutBuilder in core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php
Disables the Layout Builder.

File

core/modules/layout_builder/src/Entity/LayoutBuilderEntityViewDisplay.php, line 61

Class

LayoutBuilderEntityViewDisplay
Provides an entity view display entity that has a layout.

Namespace

Drupal\layout_builder\Entity

Code

public function setOverridable($overridable = TRUE) {
  $this
    ->setThirdPartySetting('layout_builder', 'allow_custom', $overridable);

  // Enable Layout Builder if it's not already enabled and overriding.
  if ($overridable && !$this
    ->isLayoutBuilderEnabled()) {
    $this
      ->enableLayoutBuilder();
  }
  return $this;
}