Mercurial > hg > cmmr2012-drupal-site
comparison core/modules/layout_builder/src/OverridesSectionStorageInterface.php @ 0:c75dbcec494b
Initial commit from drush-created site
author | Chris Cannam |
---|---|
date | Thu, 05 Jul 2018 14:24:15 +0000 |
parents | |
children | 12f9dff5fda9 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c75dbcec494b |
---|---|
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\DefaultsSectionStorageInterface | |
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 } |