public function Library::getSectionListFromId in Layout builder library 8
Derives the section list from the storage ID.
@internal This should only be called during section storage instantiation.
Parameters
string $id: The storage ID, see ::getStorageId().
Return value
\Drupal\layout_builder\SectionListInterface The section list.
Throws
\InvalidArgumentException Thrown if the ID is invalid.
Overrides SectionStorageInterface::getSectionListFromId
Deprecated
in drupal:8.7.0 and is removed from drupal:9.0.0. The section list should be derived from context. See https://www.drupal.org/node/3016262.
File
- src/
Plugin/ SectionStorage/ Library.php, line 108
Class
- Library
- Defines a class for library based layout storage.
Namespace
Drupal\layout_library\Plugin\SectionStorageCode
public function getSectionListFromId($id) {
@trigger_error('\\Drupal\\layout_builder\\SectionStorageInterface::getSectionListFromId() is deprecated in drupal:8.7.0 and will be removed before drupal:9.0.0. The section list should be derived from context. See https://www.drupal.org/node/3016262', E_USER_DEPRECATED);
if ($layout = $this->entityTypeManager
->getStorage('layout')
->load($id)) {
return $layout;
}
throw new \InvalidArgumentException(sprintf('The "%s" ID for the "%s" section storage type is invalid', $id, $this
->getStorageType()));
}