You are here

public function ViewUI::mergeCacheMaxAge in Drupal 9

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

Merges the maximum age (in seconds) with the existing maximum age.

The max age will be set to the given value if it is lower than the existing value.

Parameters

int $max_age: The max age to associate.

Return value

$this

Throws

\InvalidArgumentException Thrown if a non-integer value is supplied.

Overrides RefinableCacheableDependencyInterface::mergeCacheMaxAge

File

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

Class

ViewUI
Stores UI related temporary settings.

Namespace

Drupal\views_ui

Code

public function mergeCacheMaxAge($max_age) {
  return $this->storage
    ->mergeCacheMaxAge($max_age);
}