You are here

public function CheckoutFlow::onDependencyRemoval in Commerce Core 8.2

Informs the entity that entities it depends on will be deleted.

This method allows configuration entities to remove dependencies instead of being deleted themselves. Configuration entities can use this method to avoid being unnecessarily deleted during an extension uninstallation. For example, entity displays remove references to widgets and formatters if the plugin that supplies them depends on a module that is being uninstalled.

If this method returns TRUE then the entity needs to be re-saved by the caller for the changes to take effect. Implementations should not save the entity.

Parameters

array $dependencies: An array of dependencies that will be deleted keyed by dependency type. Dependency types are, for example, entity, module and theme.

Return value

bool TRUE if the entity has been changed as a result, FALSE if not.

Overrides ConfigEntityBase::onDependencyRemoval

See also

\Drupal\Core\Config\Entity\ConfigDependencyManager

\Drupal\Core\Config\ConfigEntityBase::preDelete()

\Drupal\Core\Config\ConfigManager::uninstall()

\Drupal\Core\Entity\EntityDisplayBase::onDependencyRemoval()

File

modules/checkout/src/Entity/CheckoutFlow.php, line 159

Class

CheckoutFlow
Defines the checkout flow entity class.

Namespace

Drupal\commerce_checkout\Entity

Code

public function onDependencyRemoval(array $dependencies) {
  $changed = parent::onDependencyRemoval($dependencies);

  // For checkout flows with panes, ensure panes provided by the module being
  // uninstalled are removed from the configuration.
  if (!empty($dependencies['module']) && $this
    ->getPlugin() instanceof CheckoutFlowWithPanesInterface) {
    $uninstalled_modules = $dependencies['module'];
    $panes_to_remove = [];

    /** @var \Drupal\commerce_checkout\CheckoutPaneManager $pane_manager */
    $pane_manager = \Drupal::service('plugin.manager.commerce_checkout_pane');
    foreach ($pane_manager
      ->getDefinitions() as $definition) {
      if (!in_array($definition['provider'], $uninstalled_modules, TRUE)) {
        continue;
      }
      $panes_to_remove[$definition['id']] = $definition['id'];
    }
    if ($panes_to_remove) {
      $this->configuration['panes'] = array_diff_key($this->configuration['panes'], $panes_to_remove);
      $this
        ->getPlugin()
        ->setConfiguration($this->configuration);
      $changed = TRUE;
    }
  }
  return $changed;
}