protected function EntityRenderHandler::getStorageAllItems in Acquia Lift Connector 8.4
Get all items from storage regardless of langcodes and view modes.
Parameters
string $uuid: The UUID.
Return value
mixed The value.
1 call to EntityRenderHandler::getStorageAllItems()
- EntityRenderHandler::getAllRenderUuids in modules/
acquia_lift_publisher/ src/ EventSubscriber/ Cdf/ EntityRenderHandler.php - Get all rendered content UUIDs for a given source entity.
File
- modules/
acquia_lift_publisher/ src/ EventSubscriber/ Cdf/ EntityRenderHandler.php, line 507
Class
- EntityRenderHandler
- Class EntityRenderHandler.
Namespace
Drupal\acquia_lift_publisher\EventSubscriber\CdfCode
protected function getStorageAllItems($uuid) {
return $this->storage[$uuid] ?? [];
}