aboutsummaryrefslogtreecommitdiff
path: root/template/overview.phtml
blob: d2f3c209f57024256407920ca1f942520b3711c9 (plain)
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<? include("$assemblies/banner.phtml") ?>

<div class="container">
	<? $i = 0; foreach($overview->getGroups() as $group => $rooms): ?>
		<? if($group): ?>
			<div class="row group group-<?=h(slugify($group))?>">
				<div class="col-xs-12">
					<h2><span><?=h($group)?></span></h2>
				</div>
			</div>
		<? endif ?>
		<div class="row room-group room-group-n<?=h($i++)?> room-group-<?=h(slugify($group))?>">

			<? $count = count($rooms); $idx = 0 ?>
			<? foreach($rooms as $room): ?>
				<? 
					$is_wide = 0;
					/* when the count is odd and this is the last item - make it full width */
					if (($count % 2 == 1) && ($idx == $count - 1)) {
						$is_wide = 1;
					}
					elseif ($room->requestsWide()) {
						$is_wide = 1;
						$count++;
						/* Increase the index if we are using a whole line, this means when the room is
						 * an even entry. Odd entries on the other hand steal one index from the
						 * "previous" row which they originally belong to. */
						if ($idx % 2 != 1) {
							$idx++;
						}
					}
				?>
			
				<div class="
					room
					room-<?=h($room->getSlug())?>
					clearfix
					<? if ($is_wide): ?>
						wide
						col-xs-12
					<? else: ?>
						narrow
						col-md-6
					<? endif ?>

					<? if($room->hasPreview()): ?>
						has-preview
					<? endif ?>

					<? if($room->hasSchedule()): ?>
						has-schedule
					<? endif ?>
				">

					<a href="<?=h($room->getLink())?>">
						<div class="panel panel-default">
							<div class="panel-heading">
								<div class="panel-title">
									<span class="roomtitle regular"><?=h($room->getDisplay())?></span>
									<span class="roomtitle short"><?=h($room->getDisplayShort())?></span>
								</div>
							</div>

							<div class="panel-body">
								<? if($room->hasPreview()): ?>

									<img
										class="preview"
										src="<?=h($room->getThumb())?>"
										alt="<?=h($room->getDisplay())?>"
										width="213" height="120"
									/>

								<? else: ?>

								<h2><?=h($room->getDisplay())?></h2>

								<? endif ?>

								<? if($room->hasSchedule()): ?>
									<? $upcoming = @$upcomingTalksPerRoom[ $room->getSlug() ] ?: [] ?>
									<div class="program-schedule">
										<div class="talk current-talk" title="<?=h(@$upcoming['current']['title'] ?: 'none') ?>">
                    <strong>Now (since <?=date('G:i', @$upcoming['current']['start']) ?>):</strong><br/>
											<span class="t"><?=h(@$upcoming['current']['title'] ?: 'none') ?></span>
										</div>

										<div class="talk next-talk" title="<?=h(@$upcoming['next']['title'] ?: 'none') ?>">
											<strong>Next Talk (<?=date('G:i', @$upcoming['next']['start']) ?>):</strong><br/>
											<span class="t"><?=h(@$upcoming['next']['title'] ?: 'none') ?></span>
										</div>
									</div>
								<? endif ?>
							</div>
						</div>
					</a>
				</div>
				<? $idx++ ?>
				<? if ($is_wide): ?>
					<div class="clearfix"></div>
				<? endif ?>
			<? endforeach ?>
		</div>
	<? endforeach ?>

	<? if($conference->hasReleases() || $conference->hasRelive()): ?>
		<?
			$class = ($conference->hasReleases() && $conference->hasRelive()) ?
				// both enabled
				'col-sm-6 col-xs-12' :

				// only one of both enabled
				'col-xs-12';
		?>
		<div class="row recordings">

			<div class="col-xs-12">
				<h2><span>Recordings</span></h2>
			</div>

			<? if($conference->hasReleases()): ?>
				<div class="<?=h($class)?>">
					<div class="panel panel-primary">
						<div class="panel-body">
							<a href="<?=h($conference->getReleasesUrl())?>">
								<span class="fa fa-video-camera"></span> Releases
							</a>
						</div>
					</div>
				</div>
			<? endif ?>

			<? if($conference->hasRelive()): ?>
				<div class="<?=h($class)?>">
					<div class="panel panel-primary">
						<div class="panel-body">
							<a href="<?=h($conference->getReliveUrl())?>">
								<span class="fa fa-play-circle"></span> ReLive
							</a>
						</div>
					</div>
				</div>
			<? endif ?>

		</div>
	<? endif ?>
</div>