You are here

function varbase_seo_update_8015 in Varbase SEO 8.4

Enable Schema Article module.

File

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

Code

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