By nicxvan on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
11.4.x
Introduced in version:
11.4.0
Issue links:
Description:
The constant IMAGE_DERIVATIVE_TOKEN has been deprecated. Use ImageStyleInterface::TOKEN instead.
image_path_flush() and image_style_options() have both been deprecated. See below for replacements.
Before:
image_path_flush();
After:
use Drupal\image\ImageDerivativeUtilities;
\Drupal::service(ImageDerivativeUtilities::class)->pathFlush();
Before:
image_style_options();
After:
use Drupal\image\ImageDerivativeUtilities;
\Drupal::service(ImageDerivativeUtilities::class)->styleOptions();
Impacts:
Module developers