You are here

function shortcut_themes_installed in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/shortcut/shortcut.module \shortcut_themes_installed()

Implements hook_themes_installed().

File

core/modules/shortcut/shortcut.module, line 432
Allows users to manage customizable lists of shortcut links.

Code

function shortcut_themes_installed($theme_list) {
  if (in_array('seven', $theme_list)) {

    // Theme settings are not configuration entities and cannot depend on modules
    // so to set a module-specific setting, we need to set it with logic.
    if (\Drupal::moduleHandler()
      ->moduleExists('shortcut')) {
      \Drupal::configFactory()
        ->getEditable('seven.settings')
        ->set('third_party_settings.shortcut.module_link', TRUE)
        ->save(TRUE);
    }
  }
}