You are here

function varbase_landing_update_8005 in Varbase Landing Page (Paragraphs) 8.4

Enable Varbase Bootstrap Paragraphs module.

File

./varbase_landing.install, line 66
Install, update and uninstall functions for the Varbase landing module.

Code

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