Skip to content

Instantly share code, notes, and snippets.

@bogomolov-dev
Created August 31, 2015 12:19
Show Gist options
  • Save bogomolov-dev/1d9b2c7ee0a8e877df3f to your computer and use it in GitHub Desktop.
Save bogomolov-dev/1d9b2c7ee0a8e877df3f to your computer and use it in GitHub Desktop.
Cache in Drupal 8 für einzelne Inhaltstypen oder Seiten deaktivieren
<?php
function mymodule_preprocess_html(&$variables) {
if (array_key_exists('node_type', $variables) && $variables['node_type'] === 'category') {
\Drupal::service('page_cache_kill_switch')->trigger();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment