-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathphpcon2016.rb
74 lines (67 loc) · 1.17 KB
/
phpcon2016.rb
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
@location = {}
# 1F Large exhibition hall
@location[:track_1] = [
:"AP101",
:"AP102",
:"AP103",
:"AP104",
:"AP105",
:"AP106",
]
@location[:sponsor] = [
:"AP107",
:"AP108",
:"AP109",
:"AP110",
]
@location[:satellite] = [
:"AP111",
:"AP112",
]
# 2F Small exhibition hall
@location[:track_2] = [
:"AP201",
:"AP202",
:"AP203",
:"AP204",
:"AP205",
:"AP206",
:"AP207",
]
# 3F Special conference room
@location[:track_3] = [
:"AP301",
:"AP302",
]
# 4F Convention hall
@location[:lobby] = [
:"AP407",
]
@location[:track_4] = [
:"AP405",
:"AP406",
:"AP407",
]
@location[:track_5] = [
:"AP401",
:"AP402",
:"AP403",
]
@location[:noc] = [
:"AP408",
]
# 6F
@location[:track_6] = [
:"AP601",
]
@location[:track_7] = [
:"AP602",
]
@location[:track_8] = [
:"AP604",
]
@location[:waiting] = [
:"AP605",
]
@location[:all] = @location[:track_1] + @location[:track_2] + @location[:track_3] + @location[:track_4] + @location[:track_5] + @location[:track_6] + @location[:track_7] + @location[:track_8] + @location[:sponsor] + @location[:satellite] + @location[:lobby] + @location[:noc] + @location[:waiting]
@location[:all] = @location[:all].sort