You are here

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

Enable Autocomplete Deluxe module.

File

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

Code

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