You are here

function varbase_seo_update_8013 in Varbase SEO 8.4

Enable Schema Web Site module.

File

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

Code

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