Mercurial > hg > isophonics-drupal-site
view core/modules/layout_builder/src/OverridesSectionStorageInterface.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | af1871eacc83 |
children |
line wrap: on
line source
<?php namespace Drupal\layout_builder; /** * Defines an interface for an object that stores layout sections for overrides. */ interface OverridesSectionStorageInterface extends SectionStorageInterface { /** * Returns the corresponding defaults section storage for this override. * * @return \Drupal\layout_builder\DefaultsSectionStorageInterface * The defaults section storage. * * @todo Determine if this method needs a parameter in * https://www.drupal.org/project/drupal/issues/2907413. */ public function getDefaultSectionStorage(); /** * Indicates if overrides are in use. * * @return bool * TRUE if this overrides section storage is in use, otherwise FALSE. */ public function isOverridden(); }