LayoutTempstoreRepositoryInterface.php

Same filename and directory in other branches
  1. 9 core/modules/layout_builder/src/LayoutTempstoreRepositoryInterface.php
  2. 10 core/modules/layout_builder/src/LayoutTempstoreRepositoryInterface.php
  3. 11.x core/modules/layout_builder/src/LayoutTempstoreRepositoryInterface.php

Namespace

Drupal\layout_builder

File

core/modules/layout_builder/src/LayoutTempstoreRepositoryInterface.php

View source
<?php

namespace Drupal\layout_builder;


/**
 * Provides an interface for loading layouts from tempstore.
 */
interface LayoutTempstoreRepositoryInterface {
    
    /**
     * Gets the tempstore version of a section storage, if it exists.
     *
     * @param \Drupal\layout_builder\SectionStorageInterface $section_storage
     *   The section storage to check for in tempstore.
     *
     * @return \Drupal\layout_builder\SectionStorageInterface
     *   Either the version of this section storage from tempstore, or the passed
     *   section storage if none exists.
     *
     * @throw \UnexpectedValueException
     *   Thrown if a value exists, but is not a section storage.
     */
    public function get(SectionStorageInterface $section_storage);
    
    /**
     * Stores this section storage in tempstore.
     *
     * @param \Drupal\layout_builder\SectionStorageInterface $section_storage
     *   The section storage to set in tempstore.
     */
    public function set(SectionStorageInterface $section_storage);
    
    /**
     * Checks for the existence of a tempstore version of a section storage.
     *
     * @param \Drupal\layout_builder\SectionStorageInterface $section_storage
     *   The section storage to check for in tempstore.
     *
     * @return bool
     *   TRUE if there is a tempstore version of this section storage.
     */
    public function has(SectionStorageInterface $section_storage);
    
    /**
     * Removes the tempstore version of a section storage.
     *
     * @param \Drupal\layout_builder\SectionStorageInterface $section_storage
     *   The section storage to remove from tempstore.
     */
    public function delete(SectionStorageInterface $section_storage);

}

Interfaces

Title Deprecated Summary
LayoutTempstoreRepositoryInterface Provides an interface for loading layouts from tempstore.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.