You are here

public function ViewUI::addCacheableDependency in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views_ui/src/ViewUI.php \Drupal\views_ui\ViewUI::addCacheableDependency()

Adds a dependency on an object: merges its cacheability metadata.

Parameters

\Drupal\Core\Cache\CacheableDependencyInterface|object $other_object: The dependency. If the object implements CacheableDependencyInterface, then its cacheability metadata will be used. Otherwise, the passed in object must be assumed to be uncacheable, so max-age 0 is set.

Return value

$this

Overrides RefinableCacheableDependencyInterface::addCacheableDependency

See also

\Drupal\Core\Cache\CacheableMetadata::createFromObject()

File

core/modules/views_ui/src/ViewUI.php, line 1302

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function addCacheableDependency($other_object) {
  $this->storage
    ->addCacheableDependency($other_object);
  return $this;
}