You are here

function varbase_update_8501 in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.5

Enable [BigPipe] Drupal core module by default.

File

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

Code

function varbase_update_8501() {

  // #varbase 8.5.0 to 8.5.1
  if (!\Drupal::moduleHandler()
    ->moduleExists('big_pipe')) {
    \Drupal::service('module_installer')
      ->install([
      'big_pipe',
    ], FALSE);
  }
}