You are here

function varbase_seo_update_8002 in Varbase SEO 8.4

Enable Metatag: Google Plus module.

File

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

Code

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