You are here

function varbase_seo_update_8012 in Varbase SEO 8.4

Enable Schema Metatag module.

File

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

Code

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