-
Notifications
You must be signed in to change notification settings - Fork 0
/
games.php
132 lines (118 loc) · 2.5 KB
/
games.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<?php
$events_body="
<div class='card'>
<div class='card_info'>
<h1>Games Created at Our Events</h1>
</div>
<div class='thumbnails'>
";
$games_list=[];
$games=scandir("games/");
$di=0;
foreach($games as $key => $game)
{
if (strpos($game,".txt")!== false)
{
$txt_file=file_get_contents("games/".$game);
$g=new Game;
$g->id=str_replace(".txt","",$game);
$g->img="include/images/404.png";
if (file_exists('games/images/'.$g->id.'.png'))
$g->img='games/images/'.$g->id.'.png';
if (file_exists('games/images/'.$g->id.'.gif'))
$g->img='games/images/'.$g->id.'.gif';
$rows=explode("---",$txt_file);
foreach($rows as $row)
{
$items=explode("::",$row);
for ($i=0;$i<count($items);$i+=2)
{
if(strpos($items[$i],"title")!==false)
{
$g->title=rtrim($items[$i+1]);
}
elseif(strpos($items[$i],"author")!==false)
{
$g->author=rtrim($items[$i+1]);
}
elseif(strpos($items[$i],"event")!==false)
{
$g->event=rtrim($items[$i+1]);
}
}
}
$txt_file = file_get_contents("events/".$g->event.".txt");
$rows=explode("---",$txt_file);
foreach($rows as $row)
{
$items=explode("::",$row);
for ($i=0;$i<count($items);$i+=2)
{
if(strpos($items[$i],"datestart")!==false)
{
$edate=rtrim($items[$i+1]);
}
}
}
$da=explode('-',rtrim($edate));
$event_date=mktime(0,0,$di,$da[1],$da[2],$da[0]);
$games_list[$event_date]=$g;
$di+=1;
}
}
krsort($games_list);
$game_links="<div class='thumbnails'>";
foreach ($games_list as $g)
{
$game_links.="
<a href=game.php?title=".$g->id.">
<div class='thumbnail'>
<img src=".$g->img.">
<p>".$g->title."<br/>by ".$g->author."</p>
</div>
</a>
";
}
$events_body.=$game_links;
/*foreach ($previous as $event)
{
$events_body.="
<a href=event.php?title=".$event->id.">
<div class='previous_event'>
<p>".$event->title."</p>
<img src=".$event->img.">
</div>
</a>
";
}*/
$events_body.="
</div>
</div>
<div class='bspacer20'>.</div>
</div>
";
class Event
{
public $id = "";
public $img = "";
public $title = "";
public $sdate = "";
public $venue = "";
}
class Game
{
public $id="";
public $img="";
public $title="";
public $author="";
public $event="";
}
?>
<head>
<?php include 'include/head.php';?>
</head>
<body>
<?php include 'include/header.php';?>
<?php echo $events_body;?>
<?php include 'include/footer.php';?>
</body>