Come posso cambiare il tema attivo di Drupal 8 a livello di codice?
In Drupal 6, abbiamo usato il seguente codice.
global $custom_theme;
$custom_theme = 'garland';
In Drupal 7, abbiamo usato hook_custom_theme()
.
In Drupal 8, qual è il modo corretto per farlo?