aboutsummaryrefslogtreecommitdiff
path: root/model/RoomSelection.php
blob: 9f0b16d4f77539a8d4097c08e3373f25010d5afc (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
<?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()
	{
		$selection = $this->getRoom()->getSelectionNames();
		if($selection[0] == $this->getSelection())
			return rawurlencode($this->getRoom()->getSlug()).'/';

		return rawurlencode($this->getRoom()->getSlug()).'/'.rawurlencode($this->getSelection()).'/';
	}

	public function getTranslatedLink()
	{
		return $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';
	}
}