blob: 4fdb7393fe9e961af5b36481d2ae0d2cb5972400 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
<?php
namespace Drupal\layout_builder;
use Drupal\Core\Config\Entity\ThirdPartySettingsInterface;
/**
* Defines an interface for an object that stores layout sections for defaults.
*/
interface DefaultsSectionStorageInterface extends SectionStorageInterface, ThirdPartySettingsInterface, LayoutBuilderEnabledInterface, LayoutBuilderOverridableInterface {}
|