Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Drupal\display_builder_page_layout; |
| 6 | |
| 7 | use Drupal\Core\Condition\ConditionPluginCollection; |
| 8 | use Drupal\Core\Config\Entity\ConfigEntityInterface; |
| 9 | use Drupal\Core\Entity\EntityWithPluginCollectionInterface; |
| 10 | use Drupal\display_builder\DisplayBuildableInterface; |
| 11 | |
| 12 | /** |
| 13 | * Provides an interface defining a page layout entity type. |
| 14 | */ |
| 15 | interface PageLayoutInterface extends ConfigEntityInterface, DisplayBuildableInterface, EntityWithPluginCollectionInterface { |
| 16 | |
| 17 | /** |
| 18 | * Get conditions plugins. |
| 19 | * |
| 20 | * @return \Drupal\Core\Condition\ConditionPluginCollection |
| 21 | * A collection of conditions plugins attached to the page layout. |
| 22 | */ |
| 23 | public function getConditions(): ConditionPluginCollection; |
| 24 | |
| 25 | } |