public function AttachedRenderingBlock::getCacheMaxAge in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/tests/modules/render_attached_test/src/Plugin/Block/AttachedRenderingBlock.php \Drupal\render_attached_test\Plugin\Block\AttachedRenderingBlock::getCacheMaxAge()
- 10 core/modules/system/tests/modules/render_attached_test/src/Plugin/Block/AttachedRenderingBlock.php \Drupal\render_attached_test\Plugin\Block\AttachedRenderingBlock::getCacheMaxAge()
The maximum age for which this object may be cached.
Return value
int The maximum time in seconds that this object may be cached.
Overrides ContextAwarePluginBase::getCacheMaxAge
File
- core/
modules/ system/ tests/ modules/ render_attached_test/ src/ Plugin/ Block/ AttachedRenderingBlock.php, line 41
Class
- AttachedRenderingBlock
- A block we can use to test caching of #attached headers.
Namespace
Drupal\render_attached_test\Plugin\BlockCode
public function getCacheMaxAge() {
return Cache::PERMANENT;
}