You are here

pantheon_advanced_page_cache.install in Pantheon Advanced Page Cache 8

Same filename and directory in other branches
  1. 7 pantheon_advanced_page_cache.install

Update functions for the Pantheon Advanced Page Cache module.

File

pantheon_advanced_page_cache.install
View source
<?php

/**
 * @file
 * Update functions for the Pantheon Advanced Page Cache module.
 */

/**
 * Set override_list_tags to TRUE for backwards compatibility. We recommend manually changing to FALSE for more consistent clearing. See README
 */
function pantheon_advanced_page_cache_update_8001() {
  \Drupal::configFactory()
    ->getEditable('pantheon_advanced_page_cache.settings')
    ->set('override_list_tags', TRUE)
    ->save();
}

Functions

Namesort descending Description
pantheon_advanced_page_cache_update_8001 Set override_list_tags to TRUE for backwards compatibility. We recommend manually changing to FALSE for more consistent clearing. See README