You are here

public function ImageStyleStorageInterface::setReplacementId in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/src/ImageStyleStorageInterface.php \Drupal\image\ImageStyleStorageInterface::setReplacementId()
  2. 10 core/modules/image/src/ImageStyleStorageInterface.php \Drupal\image\ImageStyleStorageInterface::setReplacementId()

Stores a replacement ID for an image style being deleted.

The method stores a replacement style to be used by the configuration dependency system when a image style is deleted. The replacement style is replacing the deleted style in other configuration entities that are depending on the image style being deleted.

Parameters

string $name: The ID of the image style to be deleted.

string $replacement: The ID of the image style used as replacement.

1 method overrides ImageStyleStorageInterface::setReplacementId()
ImageStyleStorage::setReplacementId in core/modules/image/src/ImageStyleStorage.php
Stores a replacement ID for an image style being deleted.

File

core/modules/image/src/ImageStyleStorageInterface.php, line 23

Class

ImageStyleStorageInterface
Interface for storage controller for "image style" configuration entities.

Namespace

Drupal\image

Code

public function setReplacementId($name, $replacement);