You are here

public function UnchangingCacheableDependencyTrait::getCacheMaxAge in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Cache/UnchangingCacheableDependencyTrait.php \Drupal\Core\Cache\UnchangingCacheableDependencyTrait::getCacheMaxAge()
3 methods override UnchangingCacheableDependencyTrait::getCacheMaxAge()
FormattedDateDiff::getCacheMaxAge in core/lib/Drupal/Core/Datetime/FormattedDateDiff.php
The maximum age for which this object may be cached.
HelpTopicSection::getCacheMaxAge in core/modules/help_topics/src/Plugin/HelpSection/HelpTopicSection.php
TourHelpSection::getCacheMaxAge in core/modules/tour/src/Plugin/HelpSection/TourHelpSection.php

File

core/lib/Drupal/Core/Cache/UnchangingCacheableDependencyTrait.php, line 29

Class

UnchangingCacheableDependencyTrait
Trait to implement CacheableDependencyInterface for unchanging objects.

Namespace

Drupal\Core\Cache

Code

public function getCacheMaxAge() {
  return Cache::PERMANENT;
}