You are here

public function DefaultsSectionStorage::isOverridable in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::isOverridable()
  2. 10 core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php \Drupal\layout_builder\Plugin\SectionStorage\DefaultsSectionStorage::isOverridable()

Determines if the defaults allow custom overrides.

Return value

bool TRUE if custom overrides are allowed, FALSE otherwise.

Overrides DefaultsSectionStorageInterface::isOverridable

File

core/modules/layout_builder/src/Plugin/SectionStorage/DefaultsSectionStorage.php, line 306

Class

DefaultsSectionStorage
Defines the 'defaults' section storage type.

Namespace

Drupal\layout_builder\Plugin\SectionStorage

Code

public function isOverridable() {
  return $this
    ->getDisplay()
    ->isOverridable();
}