diff options
author | MaZderMind | 2014-11-07 00:11:21 +0100 |
---|---|---|
committer | MaZderMind | 2014-11-07 00:17:40 +0100 |
commit | 5704413298c15cb05e0a55dbaff0274da01ef39a (patch) | |
tree | 9ac56ca3b268319cb41505ff833bf91735d606d8 /lib | |
parent | db0a85ea97096af4529b0ea3b903d182144c1310 (diff) |
program snimation & styling
Diffstat (limited to 'lib')
-rw-r--r-- | lib/config.php | 6 | ||||
-rw-r--r-- | lib/program.php | 5 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lib/config.php b/lib/config.php index 2b6b78e..88181b9 100644 --- a/lib/config.php +++ b/lib/config.php @@ -5,8 +5,10 @@ date_default_timezone_set('Europe/Berlin'); // $GLOBALS['CONFIG']['baseurl'] = 'http://foo.com/bar/'; $GLOBALS['CONFIG']['SCHEDULE'] = 'http://fahrplan.mrmcd.net/schedule.xml'; -$GLOBALS['CONFIG']['SCHEDULE_CACHE_TTL'] = 5*60; +$GLOBALS['CONFIG']['SCHEDULE_CACHE_TTL'] = 5; $GLOBALS['CONFIG']['SCHEDULE_SCALE'] = 0.2; // float, px per second +$GLOBALS['CONFIG']['SCHEDULE_OFFSET'] = strtotime('2014-11-06T17:00:00+01:00') - strtotime('2014-09-05T17:00:00+02:00'); + $GLOBALS['CONFIG']['ROOMS'] = array( 'saal1' => 'Saal 1', @@ -27,5 +29,3 @@ $GLOBALS['CONFIG']['FORMATS'] = array( 'audio' => 'Audio', 'slides' => 'Slide-Images', ); - -?> diff --git a/lib/program.php b/lib/program.php index 900d1d9..9da309b 100644 --- a/lib/program.php +++ b/lib/program.php @@ -6,7 +6,6 @@ function program() if(function_exists('apc_fetch') && $program = apc_fetch($cacheidx)) return $program; - echo 'fresh'; $program = array(); $schedule = simplexml_load_file($GLOBALS['CONFIG']['SCHEDULE']); @@ -95,6 +94,10 @@ function program() $program[$name][] = array( 'special' => 'daychange', 'title' => 'Daychange from Day '.$dayidx.' to '.($dayidx+1), + + 'start' => $dayend, + 'end' => strtotime((string)$schedule->day[$dayidx+1]['start']), + 'duration' => 60*60, ); } } |