You are here

function gathercontent_update_8402 in GatherContent 8.4

Same name and namespace in other branches
  1. 8.5 gathercontent.install \gathercontent_update_8402()

Uninstall gathercontent upload modules.

File

./gathercontent.install, line 133
Install and uninstall script for GatherContent module.

Code

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