ImageStyleStorageInterface
interface ImageStyleStorageInterface (View source)
Interface for storage controller for "image style" configuration entities.
Methods
Stores a replacement ID for an image style being deleted.
Retrieves the replacement ID of a deleted image style.
Clears a replacement ID from the storage.
Details
setReplacementId(string $name, string $replacement)
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.
string|null
getReplacementId(string $name)
Retrieves the replacement ID of a deleted image style.
The method is retrieving the value stored by ::setReplacementId().
clearReplacementId(string $name)
Clears a replacement ID from the storage.
The method clears the value previously stored with ::setReplacementId().