You are here

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

Enable Better Exposed Filters module.

File

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

Code

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