comparison core/modules/layout_builder/src/OverridesSectionStorageInterface.php @ 14:1fec387a4317

Update Drupal core to 8.5.2 via Composer
author Chris Cannam
date Mon, 23 Apr 2018 09:46:53 +0100
parents
children c2387f117808
comparison
equal deleted inserted replaced
13:5fb285c0d0e3 14:1fec387a4317
1 <?php
2
3 namespace Drupal\layout_builder;
4
5 /**
6 * Defines an interface for an object that stores layout sections for overrides.
7 *
8 * @internal
9 * Layout Builder is currently experimental and should only be leveraged by
10 * experimental modules and development releases of contributed modules.
11 * See https://www.drupal.org/core/experimental for more information.
12 */
13 interface OverridesSectionStorageInterface extends SectionStorageInterface {
14
15 /**
16 * Returns the corresponding defaults section storage for this override.
17 *
18 * @return \Drupal\layout_builder\SectionStorageInterface
19 * The defaults section storage.
20 *
21 * @todo Determine if this method needs a parameter in
22 * https://www.drupal.org/project/drupal/issues/2936507.
23 */
24 public function getDefaultSectionStorage();
25
26 }