function NormalizerBase::addCacheableDependency

Same name and namespace in other branches
  1. 11.x core/modules/serialization/src/Normalizer/NormalizerBase.php \Drupal\serialization\Normalizer\NormalizerBase::addCacheableDependency()
  2. 10 core/modules/serialization/src/Normalizer/NormalizerBase.php \Drupal\serialization\Normalizer\NormalizerBase::addCacheableDependency()
  3. 8.9.x core/modules/serialization/src/Normalizer/NormalizerBase.php \Drupal\serialization\Normalizer\NormalizerBase::addCacheableDependency()

Adds cacheability if applicable.

Parameters

array $context: Context options for the normalizer.

$data: The data that might have cacheability information.

File

core/modules/serialization/src/Normalizer/NormalizerBase.php, line 96

Class

NormalizerBase
Base class for Normalizers.

Namespace

Drupal\serialization\Normalizer

Code

protected function addCacheableDependency(array $context, $data) {
  if ($data instanceof CacheableDependencyInterface && isset($context[static::SERIALIZATION_CONTEXT_CACHEABILITY])) {
    $context[static::SERIALIZATION_CONTEXT_CACHEABILITY]->addCacheableDependency($data);
  }
}

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