You are here

function varbase_update_8031 in Varbase: The Ultimate Drupal CMS Starter Kit (Bootstrap Ready) 8.4

Enable Link Attributes widget module.

File

./varbase.install, line 414
Install, update and uninstall functions for the Varbase installation profile.

Code

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