web-dev-qa-db-fra.com

Changer de thème dans Drupal 8 via drush dans la ligne de commande

Dans drupal 7, je faisais juste drush vset theme pour changer le thème dans la ligne de commande, mais cela ne fonctionne plus dans drupal 8. Comment changer le thème dans la ligne de commande pour drupal 8 en utilisant drush?

5
Patoshi パトシ

vous pouvez effectuer les opérations suivantes:

drush config-set system.theme default bartik

Voici les commandes pour drupal 8 utilisant drush. Son maintenant appelé "config":

Config commands: (config)

 config-edit (cedit)   Open a config file in a text editor. Edits are imported into active configuration after closing editor. 

 config-export (cex)   Export configuration to a directory.                                                                    
 config-get (cget)     Display a config value, or a whole configuration object.                                                
 config-import (cim)   Import config from a config directory.                                                                  
 config-list (cli)     List config names by prefix.                                                                            
 config-pull (cpull)   Export and transfer config from one environment to another.                                             
 config-set (cset)     Set config value directly. Does not perform a config import.
8
Patoshi パトシ