Files
FHC-Core/skin/style.css.php
T
Andreas Österreicher c843443db5 Tempus:
- Undo für Stundenverschiebung
- Sortierung für lehrstunden

Anpassungen an PHP 5.3
Inventar Bugfixes
Eindeutige GID für LVB und Spezialgruppen
2010-04-27 06:39:07 +00:00

52 lines
1.5 KiB
PHP

<?php
header("Cache-Control: no-cache");
header("Cache-Control: post-check=0, pre-check=0",false);
header("Expires Mon, 26 Jul 1997 05:00:00 GMT");
header("Pragma: no-cache");
if (isset($_GET['path']))
$path=$_GET['path'];
else
$path='../';
require ($path.'config/cis.config.inc.php');
//setcookie('stylesheet', DEFAULT_STYLE);
//Name des Stylesheets darf nur buchstaben von A-Z enthalten (ohne umlaute)
if (isset($_COOKIE['stylesheet']) && preg_match('/^[a-zA-Z]+$/', $_COOKIE['stylesheet']))
{
$stylesheet=$_COOKIE['stylesheet'];
if(!CHOOSE_LAYOUT)
$stylesheet=DEFAULT_STYLE;
}
else
{
if (jahresplan_check_mobile())
$stylesheet="mobile";
else
$stylesheet=DEFAULT_STYLE;
}
//setcookie('stylesheet', DEFAULT_STYLE);
header("Content-Type: text/css");
//echo $_COOKIE['stylesheet'];
readfile ($path.'skin/styles/'.$stylesheet.'.css');
#--------------------------------------------------------------------------------------------------
# $const=@get_defined_constants();
# @reset($const);
# print_r($const);
function jahresplan_check_mobile() {
$agents = array(
'Windows CE', 'Pocket', 'Mobile',
'Portable', 'Smartphone', 'SDA',
'PDA', 'Handheld', 'Symbian',
'WAP', 'Palm', 'Avantgo',
'cHTML', 'BlackBerry', 'Opera Mini',
'Nokia'
);
// Prüfen der Browserkennung
for ($i=0; $i<count($agents); $i++) {
if(isset($_SERVER["HTTP_USER_AGENT"]) && strpos($_SERVER["HTTP_USER_AGENT"], $agents[$i]) !== false)
return true;
}
return false;
}
?>