You are here

function varbase_seo_update_8007 in Varbase SEO 8.4

Enable Metatag: Verification module.

File

./varbase_seo.install, line 95
Install, update and uninstall functions for the Varbase SEO module.

Code

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