Tag.php
Same filename in other branches
Namespace
Drupal\views\Plugin\views\cacheFile
-
core/
modules/ views/ src/ Plugin/ views/ cache/ Tag.php
View source
<?php
namespace Drupal\views\Plugin\views\cache;
use Drupal\Core\Cache\CacheBackendInterface;
use Drupal\Core\StringTranslation\TranslatableMarkup;
use Drupal\views\Attribute\ViewsCache;
/**
* Simple caching of query results for Views displays.
*
* @ingroup views_cache_plugins
*/
class Tag extends CachePluginBase {
/**
* {@inheritdoc}
*/
public function summaryTitle() {
return $this->t('Tag');
}
/**
* {@inheritdoc}
*/
protected function cacheExpire($type) {
return FALSE;
}
/**
* {@inheritdoc}
*/
protected function getDefaultCacheMaxAge() {
return CacheBackendInterface::CACHE_PERMANENT;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
Tag | Simple caching of query results for Views displays. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.