blob: c21ea7ec8a0a0a10a81f8219c88fa554bda5b76d (
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
|
<?php
class RoomSelection
{
public function __construct(Room $room, $selection)
{
$this->room = $room;
$this->selection = $selection;
}
public function getRoom()
{
return $this->room;
}
public function getSelection()
{
return $this->selection;
}
private function getSelectionPath() {
$path = [$this->getRoom()->getConference()->getSlug(), $this->getRoom()->getSlug()];
$selection = $this->getRoom()->getSelectionNames();
if ($selection[0] != $this->getSelection())
$path[] = $this->getSelection();
return joinpath($path);
}
public function getLink()
{
return $this->getSelectionPath() . url_params();
}
public function getTranslatedLink($translation_endpoint)
{
return joinpath([$this->getSelectionPath(), 'i18n', $translation_endpoint]) . url_params();
}
public function getDisplay()
{
switch($this->getSelection())
{
case 'sd':
case 'hd':
return strtoupper($this->getSelection());
case 'music':
return 'Radio';
default:
return ucfirst($this->getSelection());
}
}
public function getTech()
{
return $this->getSelection().'-tech';
}
}
|