You are here

ViewsTestCacheContextFilter.php in Drupal 8

File

core/modules/views/tests/modules/views_test_data/src/Plugin/views/filter/ViewsTestCacheContextFilter.php
View source
<?php

namespace Drupal\views_test_data\Plugin\views\filter;

use Drupal\views\Plugin\views\filter\FilterPluginBase;

/**
 * @ViewsFilter("views_test_test_cache_context")
 */
class ViewsTestCacheContextFilter extends FilterPluginBase {

  /**
   * {@inheritdoc}
   */
  public function query() {
    $this->value = \Drupal::state()
      ->get('views_test_cache_context', 'George');
    parent::query();
  }

  /**
   * {@inheritdoc}
   */
  public function getCacheContexts() {
    $cache_contexts = parent::getCacheContexts();
    $cache_contexts[] = 'views_test_cache_context';
    return $cache_contexts;
  }

}

Classes

Namesort descending Description
ViewsTestCacheContextFilter Plugin annotation @ViewsFilter("views_test_test_cache_context");