class EntityTestViewGrantsCacheContext

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test/src/Cache/EntityTestViewGrantsCacheContext.php \Drupal\entity_test\Cache\EntityTestViewGrantsCacheContext
  2. 8.9.x core/modules/system/tests/modules/entity_test/src/Cache/EntityTestViewGrantsCacheContext.php \Drupal\entity_test\Cache\EntityTestViewGrantsCacheContext
  3. 11.x core/modules/system/tests/modules/entity_test/src/Cache/EntityTestViewGrantsCacheContext.php \Drupal\entity_test\Cache\EntityTestViewGrantsCacheContext

Defines the entity_test view grants cache context service.

Cache context ID: 'entity_test_view_grants'.

Hierarchy

Expanded class hierarchy of EntityTestViewGrantsCacheContext

See also

\Drupal\node\Cache\NodeAccessViewGrantsCacheContext

1 string reference to 'EntityTestViewGrantsCacheContext'
entity_test.services.yml in core/modules/system/tests/modules/entity_test/entity_test.services.yml
core/modules/system/tests/modules/entity_test/entity_test.services.yml
1 service uses EntityTestViewGrantsCacheContext
cache_context.entity_test_view_grants in core/modules/system/tests/modules/entity_test/entity_test.services.yml
Drupal\entity_test\Cache\EntityTestViewGrantsCacheContext

File

core/modules/system/tests/modules/entity_test/src/Cache/EntityTestViewGrantsCacheContext.php, line 15

Namespace

Drupal\entity_test\Cache
View source
class EntityTestViewGrantsCacheContext implements CacheContextInterface {
  
  /**
   * {@inheritdoc}
   */
  public static function getLabel() {
    return t("Entity test view grants");
  }
  
  /**
   * {@inheritdoc}
   */
  public function getContext() {
    // Return a constant value, so we can fetch render cache both in actual
    // requests and test code itself.
    return '299792458';
  }
  
  /**
   * {@inheritdoc}
   */
  public function getCacheableMetadata() {
    return new CacheableMetadata();
  }

}

Members


Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.