You are here

ViewsTestCacheContext.php in Zircon Profile 8

File

core/modules/views/tests/modules/views_test_data/src/Cache/ViewsTestCacheContext.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views_test_data\Cache\ViewsTestCacheContext.
 */
namespace Drupal\views_test_data\Cache;

use Drupal\Core\Cache\CacheableMetadata;
use Drupal\Core\Cache\Context\CacheContextInterface;

/**
 * Test cache context which uses a dynamic context coming from state.
 *
 * Cache context ID: 'views_test_cache_context'.
 */
class ViewsTestCacheContext implements CacheContextInterface {

  /**
   * {@inheritdoc}
   */
  public static function getLabel() {
    return t('Views test cache context');
  }

  /**
   * {@inheritdoc}
   */
  public function getContext() {
    return \Drupal::state()
      ->get('views_test_cache_context', 'George');
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheableMetadata() {
    return new CacheableMetadata();
  }

}

Classes

Namesort descending Description
ViewsTestCacheContext Test cache context which uses a dynamic context coming from state.