thw-theorie-web/barrierefreiheit.inc.php

13 lines
331 B
PHP
Raw Normal View History

<?php
if (isset($_POST['normal'])) {
setcookie("stylesheet", "normal", time()+60*60*24*365);
$GLOBALS['tpl']->addVars('extraStyleSheet', '');
}
if (isset($_POST['barrierefrei'])) {
setcookie("stylesheet", "barrierefrei", time()+60*60*24*365);
}
$GLOBALS['tpl']->addTemplates(Array("content" => "barrierefreiheit"));