image_path_flush

image_path_flush($path)

Clears cached versions of a specific file in all styles.

Parameters

$path: The Drupal file path to the original image.

File

core/modules/image/image.module, line 225
Exposes global functionality for creating image styles.

Code

function image_path_flush($path) {
  $styles = ImageStyle::loadMultiple();
  foreach ($styles as $style) {
    $style->flush($path);
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.