You are here

function varbase_update_8014 in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.4

Enable DropzoneJS entity browser widget module.

File

./varbase.install, line 261
Install, update and uninstall functions for the Varbase installation profile.

Code

function varbase_update_8014() {
  if (!\Drupal::moduleHandler()
    ->moduleExists('dropzonejs_eb_widget')) {
    \Drupal::service('module_installer')
      ->install([
      'dropzonejs_eb_widget',
    ], FALSE);
  }
}