You are here

function varbase_seo_update_8005 in Varbase SEO 8.4

Enable Metatag: Open Graph module.

File

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

Code

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