public function SystemMessagesBlock::getCacheMaxAge in Drupal 8
Same name and namespace in other branches
- 9 core/modules/system/src/Plugin/Block/SystemMessagesBlock.php \Drupal\system\Plugin\Block\SystemMessagesBlock::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/ src/ Plugin/ Block/ SystemMessagesBlock.php, line 43
Class
- SystemMessagesBlock
- Provides a block to display the messages.
Namespace
Drupal\system\Plugin\BlockCode
public function getCacheMaxAge() {
// The messages are session-specific and hence aren't cacheable, but the
// block itself *is* cacheable because it uses a #lazy_builder callback and
// hence the block has a globally cacheable render array.
return Cache::PERMANENT;
}