summaryrefslogtreecommitdiffstatshomepage
path: root/core/modules/layout_builder/src/Entity/LayoutEntityDisplayInterface.php
blob: c172c23db79164bcb08348ad841985f0f25f4f1c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Drupal\layout_builder\Entity;

use Drupal\Core\Entity\Display\EntityDisplayInterface;
use Drupal\layout_builder\LayoutBuilderEnabledInterface;
use Drupal\layout_builder\SectionListInterface;
use Drupal\layout_builder\LayoutBuilderOverridableInterface;

/**
 * Provides an interface for entity displays that have layout.
 */
interface LayoutEntityDisplayInterface extends EntityDisplayInterface, SectionListInterface, LayoutBuilderEnabledInterface, LayoutBuilderOverridableInterface {}