You are here

function crop_update_8004 in Crop API 8.2

Uninstall deprecated sub-module from active instance.

File

./crop.install, line 94
Install, update and uninstall functions for the Crop API module.

Code

function crop_update_8004() {
  if (\Drupal::moduleHandler()
    ->moduleExists('crop_media_entity')) {
    \Drupal::service('module_installer')
      ->uninstall([
      'crop_media_entity',
    ]);
  }
}