-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathculture24.venue.php
232 lines (205 loc) · 3.94 KB
/
culture24.venue.php
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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
<?php
/**
* @package Culture24
*
*/
/**
* Class that handles Culture24 venue record
*/
class Culture24Venue extends Culture24Class {
/**
*
* @return string
*/
public function get_venue_id() {
return $this->get_unique_id();
}
/**
*
* @return array
*/
public function get_url($webonly = TRUE) {
$value = $this->get_property('url');
$result = array();
foreach ($value as $k => $v) {
// have seen occasional bit of corrupt data for this value
// if (is_object($v->qualifier)) {
// $result[] = print_r($v->qualifier,1);
// }
// else {
if ($webonly && $v->qualifier = 'Web Site') {
$result[] = str_replace('http://', '', $v->url);
}
else {
$result[] = $v->qualifier . ': ' . $v->description . ': ' . $v->url;
}
// }
}
return $result;
}
/**
*
* @return string
*/
public function get_other_names() {
return $this->get_property('otherNames');
}
/**
*
* @return string
*/
public function get_type() {
return $this->get_property('type');
}
public function get_tags() {
return $this->get_property('contentTag');
}
/**
*
* @return string
*/
public function get_legal_status() {
return $this->get_property('legalStatus');
}
/**
*
* @return string
*/
public function get_email() {
$value = $this->get_property('email');
$result = '';
foreach ($value as $k => $v) {
$result .= $v->description . ': ' . $v->address;
}
return $result;
}
/**
*
* @return string
*/
public function get_telephone() {
$value = $this->get_property('telephone');
$result = '';
foreach ($value as $k => $v) {
$result .= $v->description . ': ' . $v->number;
}
return $result;
}
/**
*
* @return string
*/
public function get_fax() {
$value = $this->get_property('fax');
$result = '';
foreach ($value as $k => $v) {
$result .= $v->description . ': ' . $v->number;
}
return $result;
}
/**
*
* @return string
*/
public function get_latitude() {
return $this->get_property('latitude');
}
/**
*
* @return string
*/
public function get_longitude() {
return $this->get_property('longitude');
}
/**
*
* @return string
*/
public function get_opening_hours() {
return $this->get_property('openingHours');
}
/**
*
* @return string
*/
public function get_discounts() {
return $this->get_property('discounts');
}
/**
*
* @return string
*/
public function get_travel_directions() {
return $this->get_property('travelDirections');
}
/**
*
* @return string
*/
public function get_facilities_information() {
return $this->get_property('facilitiesInformation');
}
/**
*
* @return string
*/
public function get_facility() {
return $this->get_property('facility');
}
/**
*
* @return string
*/
public function get_service() {
return $this->get_property('service');
}
/**
*
* @return string
*/
public function get_key_attraction() {
return $this->get_property('keyArtistOrExhibit');
}
/**
*
* @return string
*/
public function collections() {
return $this->get_property('collections');
}
/**
*
* @return string
*/
public function get_collections_description() {
return $this->get_property('collectionsDescription');
}
/**
*
* @return string
*/
public function get_collections_image() {
return $this->get_property('collectionsDescriptionGraphic');
}
/**
*
* @return string
*/
public function get_institution() {
return $this->get_property('constituentInstitution');
}
/**
*
* @return string
*/
public function get_lea() {
return $this->get_property('lea');
}
/**
*
* @return string
*/
public function get_regional_agency() {
return $this->get_property('regionalAgency');
}
}