Created
May 28, 2017 12:08
-
-
Save ValeriiVasyliev/af852170c095dc9887f81af270518d00 to your computer and use it in GitHub Desktop.
Drupal 8. Set programmatically theme default
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
\Drupal::service('theme_installer')->install('my_custom_theme'); | |
\Drupal::configFactory() | |
->getEditable('system.theme') | |
->set('default', 'my_custom_theme') | |
->save(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment