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
1 2 3 4 5 6 7 8 9 | 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); } } } |
Please login to continue.