You are here

public function ImageWidget::onDependencyRemoval in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/image/src/Plugin/Field/FieldWidget/ImageWidget.php \Drupal\image\Plugin\Field\FieldWidget\ImageWidget::onDependencyRemoval()

Informs the plugin that some configuration it depends on will be deleted.

This method allows plugins to keep their configuration up-to-date when a dependency calculated with ::calculateDependencies() is removed. For example, an entity view display contains a formatter having a setting pointing to an arbitrary config entity. When that config entity is deleted, this method is called by the view display to react to the dependency removal by updating its configuration.

This method must return TRUE if the removal event updated the plugin configuration or FALSE otherwise.

Parameters

array $dependencies: An array of dependencies that will be deleted keyed by dependency type. Dependency types are 'config', 'content', 'module' and 'theme'.

Return value

bool TRUE if the plugin configuration has changed, FALSE if not.

Overrides PluginSettingsBase::onDependencyRemoval

See also

\Drupal\Core\Entity\EntityDisplayBase

File

core/modules/image/src/Plugin/Field/FieldWidget/ImageWidget.php, line 319

Class

ImageWidget
Plugin implementation of the 'image_image' widget.

Namespace

Drupal\image\Plugin\Field\FieldWidget

Code

public function onDependencyRemoval(array $dependencies) {
  $changed = parent::onDependencyRemoval($dependencies);
  $style_id = $this
    ->getSetting('preview_image_style');

  /** @var \Drupal\image\ImageStyleInterface $style */
  if ($style_id && ($style = ImageStyle::load($style_id))) {
    if (!empty($dependencies[$style
      ->getConfigDependencyKey()][$style
      ->getConfigDependencyName()])) {

      /** @var \Drupal\image\ImageStyleStorageInterface $storage */
      $storage = \Drupal::entityTypeManager()
        ->getStorage($style
        ->getEntityTypeId());
      $replacement_id = $storage
        ->getReplacementId($style_id);

      // If a valid replacement has been provided in the storage, replace the
      // preview image style with the replacement.
      if ($replacement_id && ImageStyle::load($replacement_id)) {
        $this
          ->setSetting('preview_image_style', $replacement_id);
      }
      else {
        $this
          ->setSetting('preview_image_style', '');
      }

      // Signal that the formatter plugin settings were updated.
      $changed = TRUE;
    }
  }
  return $changed;
}