How may I add a theme to the theme-list with PHP?
I like to dynamically add the theme by an event listener.
I can set the active theme by PHP:
$activeTheme = $this->container->get('liip_theme.active_theme');
$activeTheme->setName('blue');
=> The active theme "blue" must be in the themes list ().
How to add any theme name to the "theme list" ?