You are here

public function ImageStyle::getReplacementID in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/image/src/Entity/ImageStyle.php \Drupal\image\Entity\ImageStyle::getReplacementID()
  2. 9 core/modules/image/src/Entity/ImageStyle.php \Drupal\image\Entity\ImageStyle::getReplacementID()

File

core/modules/image/src/Entity/ImageStyle.php, line 427

Class

ImageStyle
Defines an image style configuration entity.

Namespace

Drupal\image\Entity

Code

public function getReplacementID() {

  /** @var \Drupal\image\ImageStyleStorageInterface $storage */
  $storage = $this
    ->entityTypeManager()
    ->getStorage($this
    ->getEntityTypeId());
  return $storage
    ->getReplacementId($this
    ->id());
}