You are here

function varbase_landing_update_8007 in Varbase Landing Page (Paragraphs) 8.4

Enable Paragraphs Features module.

File

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

Code

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