public function ActivityProfileArgument::getCacheContexts in Open Social 8
Same name and namespace in other branches
- 8.9 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.2 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.3 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.4 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.5 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.6 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.7 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 8.8 modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 10.3.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 10.0.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 10.1.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
- 10.2.x modules/custom/activity_viewer/src/Plugin/views/argument/ActivityProfileArgument.php \Drupal\activity_viewer\Plugin\views\argument\ActivityProfileArgument::getCacheContexts()
The cache contexts associated with this object.
These identify a specific variation/representation of the object.
Cache contexts are tokens: placeholders that are converted to cache keys by the @cache_contexts_manager service. The replacement value depends on the request context (the current URL, language, and so on). They're converted before storing an object in cache.
Return value
string[] An array of cache context tokens, used to generate a cache ID.
Overrides ArgumentPluginBase::getCacheContexts
See also
\Drupal\Core\Cache\Context\CacheContextsManager::convertTokensToKeys()
File
- modules/
custom/ activity_viewer/ src/ Plugin/ views/ argument/ ActivityProfileArgument.php, line 49
Class
- ActivityProfileArgument
- Default implementation of the base argument plugin.
Namespace
Drupal\activity_viewer\Plugin\views\argumentCode
public function getCacheContexts() {
$cache_contexts = parent::getCacheContexts();
// Since the Stream is different per url.
if (!in_array('url', $cache_contexts)) {
$cache_contexts[] = 'url';
}
return $cache_contexts;
}