function shortcut_themes_installed

Same name and namespace in other branches
  1. 8.9.x core/modules/shortcut/shortcut.module \shortcut_themes_installed()
  2. 10 core/modules/shortcut/shortcut.module \shortcut_themes_installed()
  3. 11.x core/modules/shortcut/shortcut.module \shortcut_themes_installed()

Implements hook_themes_installed().

File

core/modules/shortcut/shortcut.module, line 376

Code

function shortcut_themes_installed($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.
    foreach ([
        'seven',
        'claro',
    ] as $theme) {
        if (in_array($theme, $theme_list, TRUE)) {
            \Drupal::configFactory()->getEditable("{$theme}.settings")
                ->set('third_party_settings.shortcut.module_link', TRUE)
                ->save(TRUE);
        }
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.