Mercurial > hg > isophonics-drupal-site
comparison core/modules/layout_builder/src/DefaultsSectionStorageInterface.php @ 16:c2387f117808
Routine composer update
author | Chris Cannam |
---|---|
date | Tue, 10 Jul 2018 15:07:59 +0100 |
parents | 1fec387a4317 |
children | 129ea1e6d783 |
comparison
equal
deleted
inserted
replaced
15:e200cb7efeb3 | 16:c2387f117808 |
---|---|
1 <?php | 1 <?php |
2 | 2 |
3 namespace Drupal\layout_builder; | 3 namespace Drupal\layout_builder; |
4 | |
5 use Drupal\Core\Config\Entity\ThirdPartySettingsInterface; | |
4 | 6 |
5 /** | 7 /** |
6 * Defines an interface for an object that stores layout sections for defaults. | 8 * Defines an interface for an object that stores layout sections for defaults. |
7 * | 9 * |
8 * @internal | 10 * @internal |
9 * Layout Builder is currently experimental and should only be leveraged by | 11 * Layout Builder is currently experimental and should only be leveraged by |
10 * experimental modules and development releases of contributed modules. | 12 * experimental modules and development releases of contributed modules. |
11 * See https://www.drupal.org/core/experimental for more information. | 13 * See https://www.drupal.org/core/experimental for more information. |
12 */ | 14 */ |
13 interface DefaultsSectionStorageInterface extends SectionStorageInterface { | 15 interface DefaultsSectionStorageInterface extends SectionStorageInterface, ThirdPartySettingsInterface { |
14 | 16 |
15 /** | 17 /** |
16 * Determines if the defaults allow custom overrides. | 18 * Determines if the defaults allow custom overrides. |
17 * | 19 * |
18 * @return bool | 20 * @return bool |