blob: 9211c31bf731f3440aec946992193c38e1433b3d (
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
|
<?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;
}
public function getLink()
{
$path = [$this->getRoom()->getConference()->getSlug(), $this->getRoom()->getSlug()];
$selection = $this->getRoom()->getSelectionNames();
if($selection[0] != $this->getSelection())
$path[] = $this->getSelection();
return joinpath($path).url_params();
}
public function getTranslatedLink()
{
return joinpath([$this->getLink(), 'translated']);
}
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';
}
}
|