comparison core/lib/Drupal/Core/Layout/LayoutInterface.php @ 5:12f9dff5fda9 tip

Update to Drupal core 8.7.1
author Chris Cannam
date Thu, 09 May 2019 15:34:47 +0100
parents c75dbcec494b
children
comparison
equal deleted inserted replaced
4:a9cd425dd02b 5:12f9dff5fda9
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