You are here

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

Enable Views Bootstrap module.

File

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

Code

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