function varbase_update_8041 in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.4
Enable Varbase Tour module.
File
- ./
varbase.install, line 521 - Install, update and uninstall functions for the Varbase installation profile.
Code
function varbase_update_8041() {
if (!\Drupal::moduleHandler()
->moduleExists('varbase_tour')) {
\Drupal::service('module_installer')
->install([
'varbase_tour',
], FALSE);
}
}