You are here

media_download.post_update.php in Media Download 1.1.x

Same filename and directory in other branches
  1. 1.2.x media_download.post_update.php

Contains post-update functions for media_download.

File

media_download.post_update.php
View source
<?php

/**
 * @file
 * Contains post-update functions for media_download.
 */
use Drupal\Core\Cache\Cache;

/**
 * Invalidates the http_response cache tag.
 */
function media_download_post_update_invalidate_http_response_cache_tag() {
  Cache::invalidateTags([
    'http_response',
  ]);
}

Functions

Namesort descending Description
media_download_post_update_invalidate_http_response_cache_tag Invalidates the http_response cache tag.