You are here

components.post_update.php in Components! 8.2

Same filename and directory in other branches
  1. 3.x components.post_update.php

Post update functions for Components.

File

components.post_update.php
View source
<?php

/**
 * @file
 * Post update functions for Components.
 */

/**
 * Clear caches to allow alter hooks used by components.info service.
 */
function components_post_update_components_info_alter() {

  // Empty post-update hook. @see https://www.drupal.org/node/2960601
}

/**
 * Clear caches to allow caching of data by components.info service.
 */
function components_post_update_components_info_cache() {

  // Empty post-update hook. @see https://www.drupal.org/node/2960601
}

Functions

Namesort descending Description
components_post_update_components_info_alter Clear caches to allow alter hooks used by components.info service.
components_post_update_components_info_cache Clear caches to allow caching of data by components.info service.