-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgeofield.elements.inc
350 lines (308 loc) · 11.3 KB
/
geofield.elements.inc
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
<?php
/**
* @file
* Provides FormAPI element callbacks for geofield_latlon and geofield_proximity.
*/
use Drupal\Core\Template\Attribute;
/**
* Implements hook_element_info().
*/
function geofield_element_info() {
return array(
'geofield_latlon' => array(
'#input' => TRUE,
'#process' => array('geofield_latlon_element_process'),
'#element_validate' => array('geofield_latlon_element_validate'),
'#theme' => array('geofield_latlon'),
'#theme_wrappers' => array('fieldset'),
),
'geofield_bounds' => array(
'#input' => TRUE,
'#process' => array('geofield_bounds_element_process'),
'#element_validate' => array('geofield_bounds_element_validate'),
'#theme' => array('geofield_bounds'),
'#theme_wrappers' => array('fieldset'),
),
'geofield_proximity' => array(
'#input' => FALSE,
'#tree' => TRUE,
'#theme_wrappers' => array('geofield_proximity'),
'#process' => array('geofield_proximity_element_process'),
),
);
}
/**
* Process function for geofield_latlon.
*/
function geofield_latlon_element_process($element, &$form_values) {
$element['#tree'] = TRUE;
$element['#input'] = TRUE;
$element['lat'] = array(
'#type' => 'textfield',
'#title' => t('Latitude'),
'#required' => (!empty($element['#required'])) ? $element['#required'] : FALSE,
'#default_value' => (!empty($element['#default_value']['lat'])) ? $element['#default_value']['lat'] : '',
'#attributes' => array(
'class' => array('geofield-lat'),
),
);
$element['lon'] = array(
'#type' => 'textfield',
'#title' => t('Longitude'),
'#required' => (!empty($element['#required'])) ? $element['#required'] : FALSE,
'#default_value' => (!empty($element['#default_value']['lon'])) ? $element['#default_value']['lon'] : '',
'#attributes' => array(
'class' => array('geofield-lon'),
),
);
unset($element['#value']);
// Set this to false always to prevent notices.
$element['#required'] = FALSE;
if (!empty($element['#geolocation']) && $element['#geolocation'] == TRUE) {
$element['#attached']['js'][] = drupal_get_path('module', 'geofield') . '/js/geolocation.js';
$element['geocode'] = array(
'#type' => 'button',
'#value' => t('Find my location'),
'#name' => 'geofield-html5-geocode-button',
);
$element['#attributes']['class'] = array('auto-geocode');
}
return $element;
}
/**
* Element validation function for geofield_latlon.
*/
function geofield_latlon_element_validate($element, &$form_values) {
$components = array(
'lat' => array(
'title' => 'Latitude',
'range' => 90,
),
'lon' => array(
'title' => 'Longitude',
'range' => 180,
),
);
$allFilled = TRUE;
$anyFilled = FALSE;
foreach ($components as $key => $component) {
if (!empty($element[$key]['#value'])) {
if (!is_numeric($element[$key]['#value'])) {
form_error($element[$key], t('@title: @component_title is not numeric.', array('@title' => $element['#title'], '@component_title' => $component['title'])));
}
elseif (abs($element[$key]['#value']) > $component['range']) {
form_error($element[$key], t('@title: @component_title is out of bounds.', array('@title' => $element['#title'], '@component_title' => $component['title'])));
}
}
if ($element[$key]['#value'] == '') {
$allFilled = FALSE;
}
else {
$anyFilled = TRUE;
}
}
if ($anyFilled && !$allFilled) {
foreach ($components as $key => $component) {
if ($element[$key]['#value'] == '') {
form_error($element[$key], t('@title: @component_title must be filled too.', array('@title' => $element['#title'], '@component_title' => $component['title'])));
}
}
}
}
/**
* Process function for geofield_bounds.
*/
function geofield_bounds_element_process($element, &$form_values) {
$element['#tree'] = TRUE;
$element['top'] = array(
'#type' => 'textfield',
'#title' => t('Top'),
'#required' => (!empty($element['#required'])) ? $element['#required'] : FALSE,
'#default_value' => (!empty($element['#default_value']['top'])) ? $element['#default_value']['top'] : '',
'#attributes' => array(
'class' => array('geofield-top'),
),
);
$element['right'] = array(
'#type' => 'textfield',
'#title' => t('Right'),
'#required' => (!empty($element['#required'])) ? $element['#required'] : FALSE,
'#default_value' => (!empty($element['#default_value']['right'])) ? $element['#default_value']['right'] : '',
'#attributes' => array(
'class' => array('geofield-right'),
),
);
$element['bottom'] = array(
'#type' => 'textfield',
'#title' => t('Bottom'),
'#required' => (!empty($element['#required'])) ? $element['#required'] : FALSE,
'#default_value' => (!empty($element['#default_value']['bottom'])) ? $element['#default_value']['bottom'] : '',
'#attributes' => array(
'class' => array('geofield-bottom'),
),
);
$element['left'] = array(
'#type' => 'textfield',
'#title' => t('Left'),
'#required' => (!empty($element['#required'])) ? $element['#required'] : FALSE,
'#default_value' => (!empty($element['#default_value']['left'])) ? $element['#default_value']['left'] : '',
'#attributes' => array(
'class' => array('geofield-left'),
),
);
unset($element['#value']);
// Set this to false always to prevent notices.
$element['#required'] = FALSE;
return $element;
}
/**
* Element validation function for geofield_latlon.
*/
function geofield_bounds_element_validate($element, &$form_values) {
$components = array(
'top' => array(
'title' => 'Top',
'range' => 90,
),
'right' => array(
'title' => 'Right',
'range' => 180,
),
'bottom' => array(
'title' => 'Bottom',
'range' => 90,
),
'left' => array(
'title' => 'Left',
'range' => 180,
),
);
$allFilled = TRUE;
$anyFilled = FALSE;
foreach ($components as $key => $component) {
if (!empty($element[$key]['#value'])) {
if (!is_numeric($element[$key]['#value'])) {
form_error($element[$key], t('@title: @component_title is not numeric.', array('@title' => $element['#title'], '@component_title' => $component['title'])));
}
elseif (abs($element[$key]['#value']) > $component['range']) {
form_error($element[$key], t('@title: @component_title is out of bounds.', array('@title' => $element['#title'], '@component_title' => $component['title'])));
}
}
if ($element[$key]['#value'] == '') {
$allFilled = FALSE;
}
else {
$anyFilled = TRUE;
}
}
if ($anyFilled && !$allFilled) {
foreach ($components as $key => $component) {
if ($element[$key]['#value'] == '') {
form_error($element[$key], t('@title: @component_title must be filled too.', array('@title' => $element['#title'], '@component_title' => $component['title'])));
}
}
}
}
/**
* Process function for the proximity form element
*/
function geofield_proximity_element_process($element, &$form_state, $form) {
$element['#attributes'] = array('class' => array('clearfix'));
$element['#tree'] = TRUE;
$element['#attached']['css'] = array(drupal_get_path('module', 'geofield') . '/css/proximity-element.css');
//Create the textfield for distance
$element['distance'] = array(
'#type' => 'textfield',
'#title' => t('Distance'),
'#default_value' => !empty($element['#default_value']['distance']) ? $element['#default_value']['distance'] : '',
'#title_display' => 'invisible',
'#element_validate' => array('element_validate_integer_positive'),
);
// If #geofield_range is TRUE, create second option for range.
if (!empty($element['#geofield_range']) && $element['#geofield_range'] == TRUE) {
$element['distance2'] = array(
'#type' => 'textfield',
'#title' => t('Distance End'),
'#default_value' => !empty($element['#default_value']['distance2']) ? $element['#default_value']['distance2'] : '',
'#title_display' => 'invisible',
'#element_validate' => array('element_validate_integer_positive'),
);
}
//Create dropdown for units
$element['unit'] = array(
'#type' => 'select',
'#options' => geofield_radius_options(),
'#title' => t('Unit'),
'#default_value' => !empty($element['#default_value']['unit']) ? $element['#default_value']['unit'] : GEOFIELD_KILOMETERS,
'#title_display' => 'invisible',
);
//Create textfield for geocoded input
$element['origin'] = array(
'#type' => (!empty($element['#origin_element'])) ? $element['#origin_element'] : 'textfield',
'#title' => t('Origin'),
'#prefix' => '<span class="geofield-proximity-origin-from">from</span>',
'#title_display' => 'invisible',
'#required' => !empty($element['#required']) ? $element['#required'] : FALSE,
'#default_value' => !empty($element['#default_value']['origin']) ? $element['#default_value']['origin'] : FALSE,
);
if (!empty($element['#origin_options'])) {
$element['origin'] = array_merge($element['origin'], $element['#origin_options']);
}
if (isset($element['#element_validate'])) {
array_push($element['#element_validate'], 'goefield_proximity_search_validate');
}
else {
$element['#element_validate'] = array('geofield_proximity_search_validate');
}
return $element;
}
/**
* Validate the geofield proximity search form item
*/
function geofield_proximity_search_validate($element, &$form_state) {
//If the origin is set, ensure the distance is set as well
if (!empty($element['origin']['#value']) && trim($element['origin']['#value']) != '' && empty($element['distance']['#value']))
form_set_error(implode('][', $element['#array_parents']) . '][distance', t('@title must be set when @origin is specified.', array('@title' => $element['distance']['#title'], '@origin' => $element['origin']['#title'])));
}
function geofield_theme($existing, $type, $theme, $path) {
return array(
'geofield_latlon' => array(
'arguments' => array('element' => NULL),
'render element' => 'element',
),
'geofield_proximity' => array(
'render element' => 'element',
),
);
}
/**
* Theme wrapper for form item
*/
function theme_geofield_proximity($vars) {
$element = $vars['element'];
$attributes = !empty($element['#wrapper_attributes']) ? $element['#wrapper_attributes'] : array('class' => array());
$attributes['class'][] = 'geofield-proximity-field-wrapper';
$attributes['class'][] = 'clearfix';
$wrapper_attributes = array();
$wrapper_attributes['class'][] = 'clearfix';
if (isset($element['#children']))
$element['#children'] = '<div id="' . $element['#id'] . '" ' . drupal_attributes($wrapper_attributes) . '>' . $element['#children'] . '</div>';
$output = '<div ' . new Attribute($attributes) . '>' . theme('form_element', $element) . '</div>';
return $output;
}
function theme_geofield_latlon($vars) {
return drupal_render($vars['element']['lat']) . drupal_render($vars['element']['lon']) . drupal_render($vars['element']['geocode']);
}
/**
* Returns options for radius of the Earth.
*/
function geofield_radius_options() {
return array(
GEOFIELD_KILOMETERS => t('Kilometers'),
GEOFIELD_METERS => t('Meters'),
GEOFIELD_MILES => t('Miles'),
GEOFIELD_YARDS => t('Yards'),
GEOFIELD_FEET => t('Feet'),
GEOFIELD_NAUTICAL_MILES => t('Nautical Miles'),
);
}