You are here

protected function EntityRenderHandler::storageIsAlreadyWarmedUp in Acquia Lift Connector 8.4

Check if the storage is already warmed up.

Parameters

string $uuid: The UUID.

Return value

bool TRUE if the storage is already warmed up; FALSE otherwise.

1 call to EntityRenderHandler::storageIsAlreadyWarmedUp()
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 536

Class

EntityRenderHandler
Class EntityRenderHandler.

Namespace

Drupal\acquia_lift_publisher\EventSubscriber\Cdf

Code

protected function storageIsAlreadyWarmedUp($uuid) {
  return isset($this->storage[$uuid]);
}