You are here

public function TestAccessBlock::getCacheMaxAge in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php \Drupal\block_test\Plugin\Block\TestAccessBlock::getCacheMaxAge()
  2. 10 core/modules/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php \Drupal\block_test\Plugin\Block\TestAccessBlock::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/block/tests/modules/block_test/src/Plugin/Block/TestAccessBlock.php, line 74

Class

TestAccessBlock
Provides a block to test access.

Namespace

Drupal\block_test\Plugin\Block

Code

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