You are here

public function EventRequestEnrollmentNotification::getCacheContexts in Open Social 10.1.x

Same name and namespace in other branches
  1. 8.9 modules/social_features/social_event/src/Plugin/Block/EventRequestEnrollmentNotification.php \Drupal\social_event\Plugin\Block\EventRequestEnrollmentNotification::getCacheContexts()
  2. 10.3.x modules/social_features/social_event/src/Plugin/Block/EventRequestEnrollmentNotification.php \Drupal\social_event\Plugin\Block\EventRequestEnrollmentNotification::getCacheContexts()
  3. 10.0.x modules/social_features/social_event/src/Plugin/Block/EventRequestEnrollmentNotification.php \Drupal\social_event\Plugin\Block\EventRequestEnrollmentNotification::getCacheContexts()
  4. 10.2.x modules/social_features/social_event/src/Plugin/Block/EventRequestEnrollmentNotification.php \Drupal\social_event\Plugin\Block\EventRequestEnrollmentNotification::getCacheContexts()

Overrides ContextAwarePluginTrait::getCacheContexts

File

modules/social_features/social_event/src/Plugin/Block/EventRequestEnrollmentNotification.php, line 204

Class

EventRequestEnrollmentNotification
Provides a 'Event requests notification' block.

Namespace

Drupal\social_event\Plugin\Block

Code

public function getCacheContexts() {
  $contexts = parent::getCacheContexts();

  // Ensure the context keeps track of the URL so we don't see the message on
  // every event.
  $contexts = Cache::mergeContexts($contexts, [
    'url',
    'user.permissions',
  ]);
  return $contexts;
}