You are here

protected function SimpleConfigSectionStorage::getConfigName in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/SectionStorage/SimpleConfigSectionStorage.php \Drupal\layout_builder_test\Plugin\SectionStorage\SimpleConfigSectionStorage::getConfigName()

Returns the name to be used to store in the config system.

1 call to SimpleConfigSectionStorage::getConfigName()
SimpleConfigSectionStorage::save in core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/SectionStorage/SimpleConfigSectionStorage.php
Saves the sections.

File

core/modules/layout_builder/tests/modules/layout_builder_test/src/Plugin/SectionStorage/SimpleConfigSectionStorage.php, line 97

Class

SimpleConfigSectionStorage
Provides section storage utilizing simple config.

Namespace

Drupal\layout_builder_test\Plugin\SectionStorage

Code

protected function getConfigName() {
  return 'layout_builder_test.' . $this
    ->getStorageType() . '.' . $this
    ->getStorageId();
}