-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
41 lines (31 loc) · 877 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<link rel="stylesheet" type="text/css" href="themes/magazine.css" />
<script src="http://www.google.com/jsapi"></script>
<script type="text/javascript" charset="utf-8">
/* google.load('jquery', '1.3.2'); */
</script>
<?php
// created by: abe yang 9/17/06
// testing page for gcal class
require('gcal.class.php');
require('themes/magazine.class.php');
// echo 'Time: ' . date('G:i', time()); // tells you local time (where the server is located)
/* $dir = getcwd(); */
$shows = 'everything';
$shows = 'normal';
//$tags = 'kairos-kairos2-kairos4';
$startdate = '';
/* $startdate = '2012-08-28'; */
/* $startdate = '2012-09-17'; */
$numdays = 5;
$mag = new Magazine(array(
'debug' => 1,
'debugspeed' => 1,
'shows' => $shows,
'tags' => $tags,
'startdate' => $startdate,
'numdays' => $numdays
));
?>
<div class="slickpanel">
<?php echo $mag->display(); ?>
</div>