You are here

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

Enable Entityqueue Form Widget module.

File

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

Code

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