function LayoutTempstoreRepository::set

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/src/LayoutTempstoreRepository.php \Drupal\layout_builder\LayoutTempstoreRepository::set()
  2. 8.9.x core/modules/layout_builder/src/LayoutTempstoreRepository.php \Drupal\layout_builder\LayoutTempstoreRepository::set()
  3. 11.x core/modules/layout_builder/src/LayoutTempstoreRepository.php \Drupal\layout_builder\LayoutTempstoreRepository::set()

Stores this section storage in tempstore.

Parameters

\Drupal\layout_builder\SectionStorageInterface $section_storage: The section storage to set in tempstore.

Overrides LayoutTempstoreRepositoryInterface::set

File

core/modules/layout_builder/src/LayoutTempstoreRepository.php, line 80

Class

LayoutTempstoreRepository
Provides a mechanism for loading layouts from tempstore.

Namespace

Drupal\layout_builder

Code

public function set(SectionStorageInterface $section_storage) {
  $key = $this->getKey($section_storage);
  $this->getTempstore($section_storage)
    ->set($key, [
    'section_storage' => $section_storage,
  ]);
  // Update the storage in the static cache.
  $this->cache[$key] = $section_storage;
}

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