andrewhoule
5/2/2013 - 1:37 PM

SilverStripe: _config Theme Switcher

SilverStripe: _config Theme Switcher

if(isset($_GET['theme'])) {
   $mytheme = $_GET['theme'];
   setcookie("SessionTheme", $mytheme);
} else {
   if (isset($_COOKIE['SessionTheme'])) {
      $mytheme = $_COOKIE['SessionTheme'];
   } else {
      $mytheme = 'themenamehere';
   }
}
SSViewer::set_theme($mytheme);