You are here

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

Enable DropzoneJS module.

File

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

Code

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