comparison core/lib/Drupal/Core/Layout/LayoutInterface.php @ 18:af1871eacc83

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:33:08 +0100
parents 4c8ae668cc8c
children
comparison
equal deleted inserted replaced
17:129ea1e6d783 18:af1871eacc83
1 <?php 1 <?php
2 2
3 namespace Drupal\Core\Layout; 3 namespace Drupal\Core\Layout;
4 4
5 use Drupal\Component\Plugin\ConfigurablePluginInterface;
5 use Drupal\Component\Plugin\DerivativeInspectionInterface; 6 use Drupal\Component\Plugin\DerivativeInspectionInterface;
6 use Drupal\Component\Plugin\PluginInspectionInterface; 7 use Drupal\Component\Plugin\PluginInspectionInterface;
7 use Drupal\Component\Plugin\ConfigurablePluginInterface; 8 use Drupal\Component\Plugin\ConfigurableInterface;
9 use Drupal\Component\Plugin\DependentPluginInterface;
8 10
9 /** 11 /**
10 * Provides an interface for static Layout plugins. 12 * Provides an interface for static Layout plugins.
11 */ 13 */
12 interface LayoutInterface extends PluginInspectionInterface, DerivativeInspectionInterface, ConfigurablePluginInterface { 14 interface LayoutInterface extends PluginInspectionInterface, DerivativeInspectionInterface, ConfigurableInterface, DependentPluginInterface, ConfigurablePluginInterface {
13 15
14 /** 16 /**
15 * Build a render array for layout with regions. 17 * Build a render array for layout with regions.
16 * 18 *
17 * @param array $regions 19 * @param array $regions