You are here

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

Enable Rabbit Hole taxonomy module.

File

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

Code

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