shortcut_themes_installed

shortcut_themes_installed($theme_list)

Implements hook_themes_installed().

File

core/modules/shortcut/shortcut.module, line 433
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);
    }
  }
}
doc_Drupal
2016-10-29 09:43:02
Comments
Leave a Comment

Please login to continue.