public function UnchangingCacheableDependencyTrait::getCacheMaxAge in Drupal 9
Same name and namespace in other branches
- 8 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\CacheCode
public function getCacheMaxAge() {
return Cache::PERMANENT;
}