@@ -17,12 +17,12 @@ discard block |
||
17 | 17 | * |
18 | 18 | * @return string The html to output for the custom field. |
19 | 19 | */ |
20 | -function geodir_cfi_fieldset($html,$cf){ |
|
20 | +function geodir_cfi_fieldset($html, $cf) { |
|
21 | 21 | |
22 | 22 | $html_var = $cf['htmlvar_name']; |
23 | 23 | |
24 | 24 | // Check if there is a custom field specific filter. |
25 | - if(has_filter("geodir_custom_field_input_fieldset_{$html_var}")){ |
|
25 | + if (has_filter("geodir_custom_field_input_fieldset_{$html_var}")) { |
|
26 | 26 | /** |
27 | 27 | * Filter the fieldset html by individual custom field. |
28 | 28 | * |
@@ -30,18 +30,18 @@ discard block |
||
30 | 30 | * @param array $cf The custom field array. |
31 | 31 | * @since 1.6.6 |
32 | 32 | */ |
33 | - $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}",$html,$cf); |
|
33 | + $html = apply_filters("geodir_custom_field_input_fieldset_{$html_var}", $html, $cf); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | // If no html then we run the standard output. |
37 | - if(empty($html)) { |
|
37 | + if (empty($html)) { |
|
38 | 38 | |
39 | 39 | ob_start(); // Start buffering; |
40 | 40 | ?> |
41 | 41 | <h5 id="geodir_fieldset_<?php echo (int) $cf['id']; ?>" class="geodir-fieldset-row" |
42 | - gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo __( $cf['site_title'], 'geodirectory' ); ?> |
|
43 | - <?php if ( $cf['desc'] != '' ) { |
|
44 | - echo '<small>( ' . __( $cf['desc'], 'geodirectory' ) . ' )</small>'; |
|
42 | + gd-fieldset="<?php echo (int) $cf['id']; ?>"><?php echo __($cf['site_title'], 'geodirectory'); ?> |
|
43 | + <?php if ($cf['desc'] != '') { |
|
44 | + echo '<small>( '.__($cf['desc'], 'geodirectory').' )</small>'; |
|
45 | 45 | } ?></h5> |
46 | 46 | <?php |
47 | 47 | $html = ob_get_clean(); |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | |
50 | 50 | return $html; |
51 | 51 | } |
52 | -add_filter('geodir_custom_field_input_fieldset','geodir_cfi_fieldset',10,2); |
|
52 | +add_filter('geodir_custom_field_input_fieldset', 'geodir_cfi_fieldset', 10, 2); |
|
53 | 53 | |
54 | 54 | |
55 | 55 | |
@@ -62,12 +62,12 @@ discard block |
||
62 | 62 | * |
63 | 63 | * @return string The html to output for the custom field. |
64 | 64 | */ |
65 | -function geodir_cfi_text($html,$cf){ |
|
65 | +function geodir_cfi_text($html, $cf) { |
|
66 | 66 | |
67 | 67 | $html_var = $cf['htmlvar_name']; |
68 | 68 | |
69 | 69 | // Check if there is a custom field specific filter. |
70 | - if(has_filter("geodir_custom_field_input_text_{$html_var}")){ |
|
70 | + if (has_filter("geodir_custom_field_input_text_{$html_var}")) { |
|
71 | 71 | /** |
72 | 72 | * Filter the text html by individual custom field. |
73 | 73 | * |
@@ -75,41 +75,41 @@ discard block |
||
75 | 75 | * @param array $cf The custom field array. |
76 | 76 | * @since 1.6.6 |
77 | 77 | */ |
78 | - $html = apply_filters("geodir_custom_field_input_text_{$html_var}",$html,$cf); |
|
78 | + $html = apply_filters("geodir_custom_field_input_text_{$html_var}", $html, $cf); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | // If no html then we run the standard output. |
82 | - if(empty($html)) { |
|
82 | + if (empty($html)) { |
|
83 | 83 | |
84 | 84 | ob_start(); // Start buffering; |
85 | 85 | |
86 | 86 | $value = geodir_get_cf_value($cf); |
87 | 87 | $type = $cf['type']; |
88 | 88 | //number and float validation $validation_pattern |
89 | - if(isset($cf['data_type']) && $cf['data_type']=='INT'){$type = 'number';} |
|
90 | - elseif(isset($cf['data_type']) && $cf['data_type']=='FLOAT'){$type = 'float';} |
|
89 | + if (isset($cf['data_type']) && $cf['data_type'] == 'INT') {$type = 'number'; } |
|
90 | + elseif (isset($cf['data_type']) && $cf['data_type'] == 'FLOAT') {$type = 'float'; } |
|
91 | 91 | |
92 | 92 | //validation |
93 | - if(isset($cf['validation_pattern']) && $cf['validation_pattern']){ |
|
93 | + if (isset($cf['validation_pattern']) && $cf['validation_pattern']) { |
|
94 | 94 | $validation = 'pattern="'.$cf['validation_pattern'].'"'; |
95 | - }else{$validation='';} |
|
95 | + } else {$validation = ''; } |
|
96 | 96 | |
97 | 97 | // validation message |
98 | - if(isset($cf['validation_msg']) && $cf['validation_msg']){ |
|
98 | + if (isset($cf['validation_msg']) && $cf['validation_msg']) { |
|
99 | 99 | $validation_msg = 'title="'.$cf['validation_msg'].'"'; |
100 | - }else{$validation_msg='';} |
|
100 | + } else {$validation_msg = ''; } |
|
101 | 101 | ?> |
102 | 102 | |
103 | - <div id="<?php echo $cf['name'];?>_row" |
|
104 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
103 | + <div id="<?php echo $cf['name']; ?>_row" |
|
104 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
105 | 105 | <label> |
106 | 106 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
107 | 107 | echo (trim($site_title)) ? $site_title : ' '; ?> |
108 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
108 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
109 | 109 | </label> |
110 | - <input field_type="<?php echo $type;?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
|
111 | - value="<?php echo esc_attr(stripslashes($value));?>" type="<?php echo $type;?>" class="geodir_textfield" <?php echo $validation;echo $validation_msg;?> /> |
|
112 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
110 | + <input field_type="<?php echo $type; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" |
|
111 | + value="<?php echo esc_attr(stripslashes($value)); ?>" type="<?php echo $type; ?>" class="geodir_textfield" <?php echo $validation; echo $validation_msg; ?> /> |
|
112 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
113 | 113 | <?php if ($cf['is_required']) { ?> |
114 | 114 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
115 | 115 | <?php } ?> |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | |
122 | 122 | return $html; |
123 | 123 | } |
124 | -add_filter('geodir_custom_field_input_text','geodir_cfi_text',10,2); |
|
124 | +add_filter('geodir_custom_field_input_text', 'geodir_cfi_text', 10, 2); |
|
125 | 125 | |
126 | 126 | |
127 | 127 | /** |
@@ -133,12 +133,12 @@ discard block |
||
133 | 133 | * |
134 | 134 | * @return string The html to output for the custom field. |
135 | 135 | */ |
136 | -function geodir_cfi_email($html,$cf){ |
|
136 | +function geodir_cfi_email($html, $cf) { |
|
137 | 137 | |
138 | 138 | $html_var = $cf['htmlvar_name']; |
139 | 139 | |
140 | 140 | // Check if there is a custom field specific filter. |
141 | - if(has_filter("geodir_custom_field_input_email_{$html_var}")){ |
|
141 | + if (has_filter("geodir_custom_field_input_email_{$html_var}")) { |
|
142 | 142 | /** |
143 | 143 | * Filter the email html by individual custom field. |
144 | 144 | * |
@@ -146,11 +146,11 @@ discard block |
||
146 | 146 | * @param array $cf The custom field array. |
147 | 147 | * @since 1.6.6 |
148 | 148 | */ |
149 | - $html = apply_filters("geodir_custom_field_input_email_{$html_var}",$html,$cf); |
|
149 | + $html = apply_filters("geodir_custom_field_input_email_{$html_var}", $html, $cf); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | // If no html then we run the standard output. |
153 | - if(empty($html)) { |
|
153 | + if (empty($html)) { |
|
154 | 154 | |
155 | 155 | ob_start(); // Start buffering; |
156 | 156 | $value = geodir_get_cf_value($cf); |
@@ -159,16 +159,16 @@ discard block |
||
159 | 159 | $value = ''; |
160 | 160 | }?> |
161 | 161 | |
162 | - <div id="<?php echo $cf['name'];?>_row" |
|
163 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
162 | + <div id="<?php echo $cf['name']; ?>_row" |
|
163 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
164 | 164 | <label> |
165 | 165 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
166 | 166 | echo (trim($site_title)) ? $site_title : ' '; ?> |
167 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
167 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
168 | 168 | </label> |
169 | - <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
|
170 | - value="<?php echo esc_attr(stripslashes($value));?>" type="email" class="geodir_textfield"/> |
|
171 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
169 | + <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" |
|
170 | + value="<?php echo esc_attr(stripslashes($value)); ?>" type="email" class="geodir_textfield"/> |
|
171 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
172 | 172 | <?php if ($cf['is_required']) { ?> |
173 | 173 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
174 | 174 | <?php } ?> |
@@ -180,7 +180,7 @@ discard block |
||
180 | 180 | |
181 | 181 | return $html; |
182 | 182 | } |
183 | -add_filter('geodir_custom_field_input_email','geodir_cfi_email',10,2); |
|
183 | +add_filter('geodir_custom_field_input_email', 'geodir_cfi_email', 10, 2); |
|
184 | 184 | |
185 | 185 | |
186 | 186 | |
@@ -193,12 +193,12 @@ discard block |
||
193 | 193 | * |
194 | 194 | * @return string The html to output for the custom field. |
195 | 195 | */ |
196 | -function geodir_cfi_phone($html,$cf){ |
|
196 | +function geodir_cfi_phone($html, $cf) { |
|
197 | 197 | |
198 | 198 | $html_var = $cf['htmlvar_name']; |
199 | 199 | |
200 | 200 | // Check if there is a custom field specific filter. |
201 | - if(has_filter("geodir_custom_field_input_phone_{$html_var}")){ |
|
201 | + if (has_filter("geodir_custom_field_input_phone_{$html_var}")) { |
|
202 | 202 | /** |
203 | 203 | * Filter the phone html by individual custom field. |
204 | 204 | * |
@@ -206,11 +206,11 @@ discard block |
||
206 | 206 | * @param array $cf The custom field array. |
207 | 207 | * @since 1.6.6 |
208 | 208 | */ |
209 | - $html = apply_filters("geodir_custom_field_input_phone_{$html_var}",$html,$cf); |
|
209 | + $html = apply_filters("geodir_custom_field_input_phone_{$html_var}", $html, $cf); |
|
210 | 210 | } |
211 | 211 | |
212 | 212 | // If no html then we run the standard output. |
213 | - if(empty($html)) { |
|
213 | + if (empty($html)) { |
|
214 | 214 | |
215 | 215 | ob_start(); // Start buffering; |
216 | 216 | $value = geodir_get_cf_value($cf); |
@@ -219,16 +219,16 @@ discard block |
||
219 | 219 | $value = ''; |
220 | 220 | }?> |
221 | 221 | |
222 | - <div id="<?php echo $cf['name'];?>_row" |
|
223 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
222 | + <div id="<?php echo $cf['name']; ?>_row" |
|
223 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
224 | 224 | <label> |
225 | 225 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
226 | 226 | echo (trim($site_title)) ? $site_title : ' '; ?> |
227 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
227 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
228 | 228 | </label> |
229 | - <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
|
230 | - value="<?php echo esc_attr(stripslashes($value));?>" type="tel" class="geodir_textfield"/> |
|
231 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
229 | + <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" |
|
230 | + value="<?php echo esc_attr(stripslashes($value)); ?>" type="tel" class="geodir_textfield"/> |
|
231 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
232 | 232 | <?php if ($cf['is_required']) { ?> |
233 | 233 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
234 | 234 | <?php } ?> |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | |
241 | 241 | return $html; |
242 | 242 | } |
243 | -add_filter('geodir_custom_field_input_phone','geodir_cfi_phone',10,2); |
|
243 | +add_filter('geodir_custom_field_input_phone', 'geodir_cfi_phone', 10, 2); |
|
244 | 244 | |
245 | 245 | |
246 | 246 | |
@@ -253,12 +253,12 @@ discard block |
||
253 | 253 | * |
254 | 254 | * @return string The html to output for the custom field. |
255 | 255 | */ |
256 | -function geodir_cfi_url($html,$cf){ |
|
256 | +function geodir_cfi_url($html, $cf) { |
|
257 | 257 | |
258 | 258 | $html_var = $cf['htmlvar_name']; |
259 | 259 | |
260 | 260 | // Check if there is a custom field specific filter. |
261 | - if(has_filter("geodir_custom_field_input_url_{$html_var}")){ |
|
261 | + if (has_filter("geodir_custom_field_input_url_{$html_var}")) { |
|
262 | 262 | /** |
263 | 263 | * Filter the url html by individual custom field. |
264 | 264 | * |
@@ -266,11 +266,11 @@ discard block |
||
266 | 266 | * @param array $cf The custom field array. |
267 | 267 | * @since 1.6.6 |
268 | 268 | */ |
269 | - $html = apply_filters("geodir_custom_field_input_url_{$html_var}",$html,$cf); |
|
269 | + $html = apply_filters("geodir_custom_field_input_url_{$html_var}", $html, $cf); |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | // If no html then we run the standard output. |
273 | - if(empty($html)) { |
|
273 | + if (empty($html)) { |
|
274 | 274 | |
275 | 275 | ob_start(); // Start buffering; |
276 | 276 | $value = geodir_get_cf_value($cf); |
@@ -279,19 +279,19 @@ discard block |
||
279 | 279 | $value = ''; |
280 | 280 | }?> |
281 | 281 | |
282 | - <div id="<?php echo $cf['name'];?>_row" |
|
283 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
282 | + <div id="<?php echo $cf['name']; ?>_row" |
|
283 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
284 | 284 | <label> |
285 | 285 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
286 | 286 | echo (trim($site_title)) ? $site_title : ' '; ?> |
287 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
287 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
288 | 288 | </label> |
289 | - <input field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
|
290 | - value="<?php echo esc_attr(stripslashes($value));?>" type="url" class="geodir_textfield" |
|
289 | + <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" |
|
290 | + value="<?php echo esc_attr(stripslashes($value)); ?>" type="url" class="geodir_textfield" |
|
291 | 291 | oninvalid="setCustomValidity('<?php _e('Please enter a valid URL including http://', 'geodirectory'); ?>')" |
292 | 292 | onchange="try{setCustomValidity('')}catch(e){}" |
293 | 293 | /> |
294 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
294 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
295 | 295 | <?php if ($cf['is_required']) { ?> |
296 | 296 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
297 | 297 | <?php } ?> |
@@ -303,7 +303,7 @@ discard block |
||
303 | 303 | |
304 | 304 | return $html; |
305 | 305 | } |
306 | -add_filter('geodir_custom_field_input_url','geodir_cfi_url',10,2); |
|
306 | +add_filter('geodir_custom_field_input_url', 'geodir_cfi_url', 10, 2); |
|
307 | 307 | |
308 | 308 | |
309 | 309 | /** |
@@ -315,12 +315,12 @@ discard block |
||
315 | 315 | * |
316 | 316 | * @return string The html to output for the custom field. |
317 | 317 | */ |
318 | -function geodir_cfi_radio($html,$cf){ |
|
318 | +function geodir_cfi_radio($html, $cf) { |
|
319 | 319 | |
320 | 320 | $html_var = $cf['htmlvar_name']; |
321 | 321 | |
322 | 322 | // Check if there is a custom field specific filter. |
323 | - if(has_filter("geodir_custom_field_input_radio_{$html_var}")){ |
|
323 | + if (has_filter("geodir_custom_field_input_radio_{$html_var}")) { |
|
324 | 324 | /** |
325 | 325 | * Filter the radio html by individual custom field. |
326 | 326 | * |
@@ -328,22 +328,22 @@ discard block |
||
328 | 328 | * @param array $cf The custom field array. |
329 | 329 | * @since 1.6.6 |
330 | 330 | */ |
331 | - $html = apply_filters("geodir_custom_field_input_radio_{$html_var}",$html,$cf); |
|
331 | + $html = apply_filters("geodir_custom_field_input_radio_{$html_var}", $html, $cf); |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | // If no html then we run the standard output. |
335 | - if(empty($html)) { |
|
335 | + if (empty($html)) { |
|
336 | 336 | |
337 | 337 | ob_start(); // Start buffering; |
338 | 338 | $value = geodir_get_cf_value($cf); |
339 | 339 | |
340 | 340 | ?> |
341 | - <div id="<?php echo $cf['name'];?>_row" |
|
342 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
341 | + <div id="<?php echo $cf['name']; ?>_row" |
|
342 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
343 | 343 | <label> |
344 | 344 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
345 | 345 | echo (trim($site_title)) ? $site_title : ' '; ?> |
346 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
346 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
347 | 347 | </label> |
348 | 348 | <?php if ($cf['option_values']) { |
349 | 349 | $option_values = geodir_string_values_to_options($cf['option_values'], true); |
@@ -352,14 +352,14 @@ discard block |
||
352 | 352 | foreach ($option_values as $option_value) { |
353 | 353 | if (empty($option_value['optgroup'])) { |
354 | 354 | ?> |
355 | - <span class="gd-radios"><input name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" <?php checked(stripslashes($value), $option_value['value']);?> value="<?php echo esc_attr($option_value['value']); ?>" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="radio" /><?php echo $option_value['label']; ?></span> |
|
355 | + <span class="gd-radios"><input name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" <?php checked(stripslashes($value), $option_value['value']); ?> value="<?php echo esc_attr($option_value['value']); ?>" class="gd-checkbox" field_type="<?php echo $cf['type']; ?>" type="radio" /><?php echo $option_value['label']; ?></span> |
|
356 | 356 | <?php |
357 | 357 | } |
358 | 358 | } |
359 | 359 | } |
360 | 360 | } |
361 | 361 | ?> |
362 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
362 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
363 | 363 | <?php if ($cf['is_required']) { ?> |
364 | 364 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
365 | 365 | <?php } ?> |
@@ -371,7 +371,7 @@ discard block |
||
371 | 371 | |
372 | 372 | return $html; |
373 | 373 | } |
374 | -add_filter('geodir_custom_field_input_radio','geodir_cfi_radio',10,2); |
|
374 | +add_filter('geodir_custom_field_input_radio', 'geodir_cfi_radio', 10, 2); |
|
375 | 375 | |
376 | 376 | |
377 | 377 | /** |
@@ -383,12 +383,12 @@ discard block |
||
383 | 383 | * |
384 | 384 | * @return string The html to output for the custom field. |
385 | 385 | */ |
386 | -function geodir_cfi_checkbox($html,$cf){ |
|
386 | +function geodir_cfi_checkbox($html, $cf) { |
|
387 | 387 | |
388 | 388 | $html_var = $cf['htmlvar_name']; |
389 | 389 | |
390 | 390 | // Check if there is a custom field specific filter. |
391 | - if(has_filter("geodir_custom_field_input_checkbox_{$html_var}")){ |
|
391 | + if (has_filter("geodir_custom_field_input_checkbox_{$html_var}")) { |
|
392 | 392 | /** |
393 | 393 | * Filter the checkbox html by individual custom field. |
394 | 394 | * |
@@ -396,11 +396,11 @@ discard block |
||
396 | 396 | * @param array $cf The custom field array. |
397 | 397 | * @since 1.6.6 |
398 | 398 | */ |
399 | - $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}",$html,$cf); |
|
399 | + $html = apply_filters("geodir_custom_field_input_checkbox_{$html_var}", $html, $cf); |
|
400 | 400 | } |
401 | 401 | |
402 | 402 | // If no html then we run the standard output. |
403 | - if(empty($html)) { |
|
403 | + if (empty($html)) { |
|
404 | 404 | |
405 | 405 | ob_start(); // Start buffering; |
406 | 406 | $value = geodir_get_cf_value($cf); |
@@ -411,22 +411,22 @@ discard block |
||
411 | 411 | } |
412 | 412 | ?> |
413 | 413 | |
414 | - <div id="<?php echo $cf['name'];?>_row" |
|
415 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
414 | + <div id="<?php echo $cf['name']; ?>_row" |
|
415 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
416 | 416 | <label> |
417 | 417 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
418 | 418 | echo (trim($site_title)) ? $site_title : ' '; ?> |
419 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
419 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
420 | 420 | </label> |
421 | 421 | <?php if ($value != '1') { |
422 | 422 | $value = '0'; |
423 | 423 | }?> |
424 | - <input type="hidden" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" value="<?php echo esc_attr($value);?>"/> |
|
424 | + <input type="hidden" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" value="<?php echo esc_attr($value); ?>"/> |
|
425 | 425 | <input <?php if ($value == '1') { |
426 | 426 | echo 'checked="checked"'; |
427 | - }?> value="1" class="gd-checkbox" field_type="<?php echo $cf['type'];?>" type="checkbox" |
|
428 | - onchange="if(this.checked){jQuery('#<?php echo $cf['name'];?>').val('1');} else{ jQuery('#<?php echo $cf['name'];?>').val('0');}"/> |
|
429 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
427 | + }?> value="1" class="gd-checkbox" field_type="<?php echo $cf['type']; ?>" type="checkbox" |
|
428 | + onchange="if(this.checked){jQuery('#<?php echo $cf['name']; ?>').val('1');} else{ jQuery('#<?php echo $cf['name']; ?>').val('0');}"/> |
|
429 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
430 | 430 | <?php if ($cf['is_required']) { ?> |
431 | 431 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
432 | 432 | <?php } ?> |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | |
439 | 439 | return $html; |
440 | 440 | } |
441 | -add_filter('geodir_custom_field_input_checkbox','geodir_cfi_checkbox',10,2); |
|
441 | +add_filter('geodir_custom_field_input_checkbox', 'geodir_cfi_checkbox', 10, 2); |
|
442 | 442 | |
443 | 443 | |
444 | 444 | /** |
@@ -450,12 +450,12 @@ discard block |
||
450 | 450 | * |
451 | 451 | * @return string The html to output for the custom field. |
452 | 452 | */ |
453 | -function geodir_cfi_textarea($html,$cf){ |
|
453 | +function geodir_cfi_textarea($html, $cf) { |
|
454 | 454 | |
455 | 455 | $html_var = $cf['htmlvar_name']; |
456 | 456 | |
457 | 457 | // Check if there is a custom field specific filter. |
458 | - if(has_filter("geodir_custom_field_input_textarea_{$html_var}")){ |
|
458 | + if (has_filter("geodir_custom_field_input_textarea_{$html_var}")) { |
|
459 | 459 | /** |
460 | 460 | * Filter the textarea html by individual custom field. |
461 | 461 | * |
@@ -463,11 +463,11 @@ discard block |
||
463 | 463 | * @param array $cf The custom field array. |
464 | 464 | * @since 1.6.6 |
465 | 465 | */ |
466 | - $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}",$html,$cf); |
|
466 | + $html = apply_filters("geodir_custom_field_input_textarea_{$html_var}", $html, $cf); |
|
467 | 467 | } |
468 | 468 | |
469 | 469 | // If no html then we run the standard output. |
470 | - if(empty($html)) { |
|
470 | + if (empty($html)) { |
|
471 | 471 | |
472 | 472 | ob_start(); // Start buffering; |
473 | 473 | $value = geodir_get_cf_value($cf); |
@@ -475,32 +475,32 @@ discard block |
||
475 | 475 | $extra_fields = unserialize($cf['extra_fields']); |
476 | 476 | ?> |
477 | 477 | |
478 | - <div id="<?php echo $cf['name'];?>_row" |
|
479 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
478 | + <div id="<?php echo $cf['name']; ?>_row" |
|
479 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
480 | 480 | <label> |
481 | 481 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
482 | 482 | echo (trim($site_title)) ? $site_title : ' '; ?> |
483 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
483 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
484 | 484 | </label><?php |
485 | 485 | |
486 | 486 | |
487 | 487 | if (is_array($extra_fields) && in_array('1', $extra_fields)) { |
488 | 488 | |
489 | - $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);?> |
|
489 | + $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10); ?> |
|
490 | 490 | |
491 | - <div class="editor" field_id="<?php echo $cf['name'];?>" field_type="editor"> |
|
491 | + <div class="editor" field_id="<?php echo $cf['name']; ?>" field_type="editor"> |
|
492 | 492 | <?php wp_editor(stripslashes($value), $cf['name'], $editor_settings); ?> |
493 | 493 | </div><?php |
494 | 494 | |
495 | 495 | } else { |
496 | 496 | |
497 | - ?><textarea field_type="<?php echo $cf['type'];?>" class="geodir_textarea" name="<?php echo $cf['name'];?>" |
|
498 | - id="<?php echo $cf['name'];?>"><?php echo stripslashes($value);?></textarea><?php |
|
497 | + ?><textarea field_type="<?php echo $cf['type']; ?>" class="geodir_textarea" name="<?php echo $cf['name']; ?>" |
|
498 | + id="<?php echo $cf['name']; ?>"><?php echo stripslashes($value); ?></textarea><?php |
|
499 | 499 | |
500 | 500 | }?> |
501 | 501 | |
502 | 502 | |
503 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
503 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
504 | 504 | <?php if ($cf['is_required']) { ?> |
505 | 505 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
506 | 506 | <?php } ?> |
@@ -512,7 +512,7 @@ discard block |
||
512 | 512 | |
513 | 513 | return $html; |
514 | 514 | } |
515 | -add_filter('geodir_custom_field_input_textarea','geodir_cfi_textarea',10,2); |
|
515 | +add_filter('geodir_custom_field_input_textarea', 'geodir_cfi_textarea', 10, 2); |
|
516 | 516 | |
517 | 517 | |
518 | 518 | /** |
@@ -524,12 +524,12 @@ discard block |
||
524 | 524 | * |
525 | 525 | * @return string The html to output for the custom field. |
526 | 526 | */ |
527 | -function geodir_cfi_select($html,$cf){ |
|
527 | +function geodir_cfi_select($html, $cf) { |
|
528 | 528 | |
529 | 529 | $html_var = $cf['htmlvar_name']; |
530 | 530 | |
531 | 531 | // Check if there is a custom field specific filter. |
532 | - if(has_filter("geodir_custom_field_input_select_{$html_var}")){ |
|
532 | + if (has_filter("geodir_custom_field_input_select_{$html_var}")) { |
|
533 | 533 | /** |
534 | 534 | * Filter the select html by individual custom field. |
535 | 535 | * |
@@ -537,22 +537,22 @@ discard block |
||
537 | 537 | * @param array $cf The custom field array. |
538 | 538 | * @since 1.6.6 |
539 | 539 | */ |
540 | - $html = apply_filters("geodir_custom_field_input_select_{$html_var}",$html,$cf); |
|
540 | + $html = apply_filters("geodir_custom_field_input_select_{$html_var}", $html, $cf); |
|
541 | 541 | } |
542 | 542 | |
543 | 543 | // If no html then we run the standard output. |
544 | - if(empty($html)) { |
|
544 | + if (empty($html)) { |
|
545 | 545 | |
546 | 546 | ob_start(); // Start buffering; |
547 | 547 | $value = geodir_get_cf_value($cf); |
548 | 548 | |
549 | 549 | ?> |
550 | - <div id="<?php echo $cf['name'];?>_row" |
|
551 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details"> |
|
550 | + <div id="<?php echo $cf['name']; ?>_row" |
|
551 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row geodir_custom_fields clearfix gd-fieldset-details"> |
|
552 | 552 | <label> |
553 | 553 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
554 | 554 | echo (trim($site_title)) ? $site_title : ' '; ?> |
555 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
555 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
556 | 556 | </label> |
557 | 557 | <?php |
558 | 558 | $option_values_arr = geodir_string_values_to_options($cf['option_values'], true); |
@@ -562,22 +562,22 @@ discard block |
||
562 | 562 | if (isset($option_row['optgroup']) && ($option_row['optgroup'] == 'start' || $option_row['optgroup'] == 'end')) { |
563 | 563 | $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
564 | 564 | |
565 | - $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>'; |
|
565 | + $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="'.esc_attr($option_label).'">' : '</optgroup>'; |
|
566 | 566 | } else { |
567 | 567 | $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
568 | 568 | $option_value = isset($option_row['value']) ? $option_row['value'] : ''; |
569 | 569 | $selected = $option_value == stripslashes($value) ? 'selected="selected"' : ''; |
570 | 570 | |
571 | - $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
|
571 | + $select_options .= '<option value="'.esc_attr($option_value).'" '.$selected.'>'.$option_label.'</option>'; |
|
572 | 572 | } |
573 | 573 | } |
574 | 574 | } |
575 | 575 | ?> |
576 | - <select field_type="<?php echo $cf['type'];?>" name="<?php echo $cf['name'];?>" id="<?php echo $cf['name'];?>" |
|
576 | + <select field_type="<?php echo $cf['type']; ?>" name="<?php echo $cf['name']; ?>" id="<?php echo $cf['name']; ?>" |
|
577 | 577 | class="geodir_textfield textfield_x chosen_select" |
578 | - data-placeholder="<?php echo __('Choose', 'geodirectory') . ' ' . $site_title . '…';?>" |
|
579 | - option-ajaxchosen="false"><?php echo $select_options;?></select> |
|
580 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
578 | + data-placeholder="<?php echo __('Choose', 'geodirectory').' '.$site_title.'…'; ?>" |
|
579 | + option-ajaxchosen="false"><?php echo $select_options; ?></select> |
|
580 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
581 | 581 | <?php if ($cf['is_required']) { ?> |
582 | 582 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
583 | 583 | <?php } ?> |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | |
590 | 590 | return $html; |
591 | 591 | } |
592 | -add_filter('geodir_custom_field_input_select','geodir_cfi_select',10,2); |
|
592 | +add_filter('geodir_custom_field_input_select', 'geodir_cfi_select', 10, 2); |
|
593 | 593 | |
594 | 594 | |
595 | 595 | /** |
@@ -601,12 +601,12 @@ discard block |
||
601 | 601 | * |
602 | 602 | * @return string The html to output for the custom field. |
603 | 603 | */ |
604 | -function geodir_cfi_multiselect($html,$cf){ |
|
604 | +function geodir_cfi_multiselect($html, $cf) { |
|
605 | 605 | |
606 | 606 | $html_var = $cf['htmlvar_name']; |
607 | 607 | |
608 | 608 | // Check if there is a custom field specific filter. |
609 | - if(has_filter("geodir_custom_field_input_multiselect_{$html_var}")){ |
|
609 | + if (has_filter("geodir_custom_field_input_multiselect_{$html_var}")) { |
|
610 | 610 | /** |
611 | 611 | * Filter the multiselect html by individual custom field. |
612 | 612 | * |
@@ -614,11 +614,11 @@ discard block |
||
614 | 614 | * @param array $cf The custom field array. |
615 | 615 | * @since 1.6.6 |
616 | 616 | */ |
617 | - $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}",$html,$cf); |
|
617 | + $html = apply_filters("geodir_custom_field_input_multiselect_{$html_var}", $html, $cf); |
|
618 | 618 | } |
619 | 619 | |
620 | 620 | // If no html then we run the standard output. |
621 | - if(empty($html)) { |
|
621 | + if (empty($html)) { |
|
622 | 622 | |
623 | 623 | ob_start(); // Start buffering; |
624 | 624 | $value = geodir_get_cf_value($cf); |
@@ -655,9 +655,9 @@ discard block |
||
655 | 655 | $option_label = isset($option_row['label']) ? $option_row['label'] : ''; |
656 | 656 | |
657 | 657 | if ($multi_display == 'select') { |
658 | - $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="' . esc_attr($option_label) . '">' : '</optgroup>'; |
|
658 | + $select_options .= $option_row['optgroup'] == 'start' ? '<optgroup label="'.esc_attr($option_label).'">' : '</optgroup>'; |
|
659 | 659 | } else { |
660 | - $select_options .= $option_row['optgroup'] == 'start' ? '<li>' . $option_label . '</li>' : ''; |
|
660 | + $select_options .= $option_row['optgroup'] == 'start' ? '<li>'.$option_label.'</li>' : ''; |
|
661 | 661 | } |
662 | 662 | } else { |
663 | 663 | if (!is_array($value) && $value != '') { |
@@ -690,9 +690,9 @@ discard block |
||
690 | 690 | } |
691 | 691 | |
692 | 692 | if ($multi_display == 'select') { |
693 | - $select_options .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
|
693 | + $select_options .= '<option value="'.esc_attr($option_value).'" '.$selected.'>'.$option_label.'</option>'; |
|
694 | 694 | } else { |
695 | - $select_options .= '<li><input name="' . $cf['name'] . '[]" ' . $checked . ' value="' . esc_attr($option_value) . '" class="gd-' . $multi_display . '" field_type="' . $multi_display . '" type="' . $multi_display . '" /> ' . $option_label . ' </li>'; |
|
695 | + $select_options .= '<li><input name="'.$cf['name'].'[]" '.$checked.' value="'.esc_attr($option_value).'" class="gd-'.$multi_display.'" field_type="'.$multi_display.'" type="'.$multi_display.'" /> '.$option_label.' </li>'; |
|
696 | 696 | } |
697 | 697 | } |
698 | 698 | } |
@@ -712,7 +712,7 @@ discard block |
||
712 | 712 | |
713 | 713 | return $html; |
714 | 714 | } |
715 | -add_filter('geodir_custom_field_input_multiselect','geodir_cfi_multiselect',10,2); |
|
715 | +add_filter('geodir_custom_field_input_multiselect', 'geodir_cfi_multiselect', 10, 2); |
|
716 | 716 | |
717 | 717 | |
718 | 718 | /** |
@@ -724,12 +724,12 @@ discard block |
||
724 | 724 | * |
725 | 725 | * @return string The html to output for the custom field. |
726 | 726 | */ |
727 | -function geodir_cfi_html($html,$cf){ |
|
727 | +function geodir_cfi_html($html, $cf) { |
|
728 | 728 | |
729 | 729 | $html_var = $cf['htmlvar_name']; |
730 | 730 | |
731 | 731 | // Check if there is a custom field specific filter. |
732 | - if(has_filter("geodir_custom_field_input_html_{$html_var}")){ |
|
732 | + if (has_filter("geodir_custom_field_input_html_{$html_var}")) { |
|
733 | 733 | /** |
734 | 734 | * Filter the html html by individual custom field. |
735 | 735 | * |
@@ -737,11 +737,11 @@ discard block |
||
737 | 737 | * @param array $cf The custom field array. |
738 | 738 | * @since 1.6.6 |
739 | 739 | */ |
740 | - $html = apply_filters("geodir_custom_field_input_html_{$html_var}",$html,$cf); |
|
740 | + $html = apply_filters("geodir_custom_field_input_html_{$html_var}", $html, $cf); |
|
741 | 741 | } |
742 | 742 | |
743 | 743 | // If no html then we run the standard output. |
744 | - if(empty($html)) { |
|
744 | + if (empty($html)) { |
|
745 | 745 | |
746 | 746 | ob_start(); // Start buffering; |
747 | 747 | $value = geodir_get_cf_value($cf); |
@@ -774,7 +774,7 @@ discard block |
||
774 | 774 | |
775 | 775 | return $html; |
776 | 776 | } |
777 | -add_filter('geodir_custom_field_input_html','geodir_cfi_html',10,2); |
|
777 | +add_filter('geodir_custom_field_input_html', 'geodir_cfi_html', 10, 2); |
|
778 | 778 | |
779 | 779 | |
780 | 780 | |
@@ -787,12 +787,12 @@ discard block |
||
787 | 787 | * |
788 | 788 | * @return string The html to output for the custom field. |
789 | 789 | */ |
790 | -function geodir_cfi_datepicker($html,$cf){ |
|
790 | +function geodir_cfi_datepicker($html, $cf) { |
|
791 | 791 | |
792 | 792 | $html_var = $cf['htmlvar_name']; |
793 | 793 | |
794 | 794 | // Check if there is a custom field specific filter. |
795 | - if(has_filter("geodir_custom_field_input_datepicker_{$html_var}")){ |
|
795 | + if (has_filter("geodir_custom_field_input_datepicker_{$html_var}")) { |
|
796 | 796 | /** |
797 | 797 | * Filter the datepicker html by individual custom field. |
798 | 798 | * |
@@ -800,11 +800,11 @@ discard block |
||
800 | 800 | * @param array $cf The custom field array. |
801 | 801 | * @since 1.6.6 |
802 | 802 | */ |
803 | - $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}",$html,$cf); |
|
803 | + $html = apply_filters("geodir_custom_field_input_datepicker_{$html_var}", $html, $cf); |
|
804 | 804 | } |
805 | 805 | |
806 | 806 | // If no html then we run the standard output. |
807 | - if(empty($html)) { |
|
807 | + if (empty($html)) { |
|
808 | 808 | |
809 | 809 | ob_start(); // Start buffering; |
810 | 810 | $value = geodir_get_cf_value($cf); |
@@ -816,23 +816,23 @@ discard block |
||
816 | 816 | $extra_fields['date_format'] = 'yy-mm-dd'; |
817 | 817 | |
818 | 818 | $date_format = $extra_fields['date_format']; |
819 | - $jquery_date_format = $date_format; |
|
819 | + $jquery_date_format = $date_format; |
|
820 | 820 | |
821 | 821 | |
822 | 822 | // check if we need to change the format or not |
823 | 823 | $date_format_len = strlen(str_replace(' ', '', $date_format)); |
824 | - if($date_format_len>5){// if greater then 5 then it's the old style format. |
|
824 | + if ($date_format_len > 5) {// if greater then 5 then it's the old style format. |
|
825 | 825 | |
826 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format |
|
827 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format |
|
826 | + $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format |
|
827 | + $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format |
|
828 | 828 | |
829 | 829 | $date_format = str_replace($search, $replace, $date_format); |
830 | - }else{ |
|
831 | - $jquery_date_format = geodir_date_format_php_to_jqueryui( $jquery_date_format ); |
|
830 | + } else { |
|
831 | + $jquery_date_format = geodir_date_format_php_to_jqueryui($jquery_date_format); |
|
832 | 832 | } |
833 | 833 | |
834 | - if($value=='0000-00-00'){$value='';}//if date not set, then mark it empty |
|
835 | - if($value && !isset($_REQUEST['backandedit'])) { |
|
834 | + if ($value == '0000-00-00') {$value = ''; }//if date not set, then mark it empty |
|
835 | + if ($value && !isset($_REQUEST['backandedit'])) { |
|
836 | 836 | //$time = strtotime($value); |
837 | 837 | //$value = date_i18n($date_format, $time); |
838 | 838 | } |
@@ -843,37 +843,37 @@ discard block |
||
843 | 843 | |
844 | 844 | jQuery(function () { |
845 | 845 | |
846 | - jQuery("#<?php echo $cf['name'];?>").datepicker({changeMonth: true, changeYear: true <?php |
|
846 | + jQuery("#<?php echo $cf['name']; ?>").datepicker({changeMonth: true, changeYear: true <?php |
|
847 | 847 | /** |
848 | 848 | * Used to add extra option to datepicker per custom field. |
849 | 849 | * |
850 | 850 | * @since 1.5.7 |
851 | 851 | * @param string $name The custom field name. |
852 | 852 | */ |
853 | - echo apply_filters("gd_datepicker_extra_{$name}",'');?>}); |
|
853 | + echo apply_filters("gd_datepicker_extra_{$name}", ''); ?>}); |
|
854 | 854 | |
855 | - jQuery("#<?php echo $name;?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format;?>'); |
|
855 | + jQuery("#<?php echo $name; ?>").datepicker("option", "dateFormat", '<?php echo $jquery_date_format; ?>'); |
|
856 | 856 | |
857 | - <?php if(!empty($value)){?> |
|
858 | - jQuery("#<?php echo $name;?>").datepicker("setDate", '<?php echo $value;?>'); |
|
857 | + <?php if (!empty($value)) {?> |
|
858 | + jQuery("#<?php echo $name; ?>").datepicker("setDate", '<?php echo $value; ?>'); |
|
859 | 859 | <?php } ?> |
860 | 860 | |
861 | 861 | }); |
862 | 862 | |
863 | 863 | </script> |
864 | - <div id="<?php echo $name;?>_row" |
|
865 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
864 | + <div id="<?php echo $name; ?>_row" |
|
865 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
866 | 866 | <label> |
867 | 867 | |
868 | 868 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
869 | 869 | echo (trim($site_title)) ? $site_title : ' '; ?> |
870 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
870 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
871 | 871 | </label> |
872 | 872 | |
873 | - <input field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" id="<?php echo $name;?>" |
|
874 | - value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/> |
|
873 | + <input field_type="<?php echo $cf['type']; ?>" name="<?php echo $name; ?>" id="<?php echo $name; ?>" |
|
874 | + value="<?php echo esc_attr($value); ?>" type="text" class="geodir_textfield"/> |
|
875 | 875 | |
876 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
876 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
877 | 877 | <?php if ($cf['is_required']) { ?> |
878 | 878 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
879 | 879 | <?php } ?> |
@@ -885,7 +885,7 @@ discard block |
||
885 | 885 | |
886 | 886 | return $html; |
887 | 887 | } |
888 | -add_filter('geodir_custom_field_input_datepicker','geodir_cfi_datepicker',10,2); |
|
888 | +add_filter('geodir_custom_field_input_datepicker', 'geodir_cfi_datepicker', 10, 2); |
|
889 | 889 | |
890 | 890 | |
891 | 891 | /** |
@@ -897,12 +897,12 @@ discard block |
||
897 | 897 | * |
898 | 898 | * @return string The html to output for the custom field. |
899 | 899 | */ |
900 | -function geodir_cfi_time($html,$cf){ |
|
900 | +function geodir_cfi_time($html, $cf) { |
|
901 | 901 | |
902 | 902 | $html_var = $cf['htmlvar_name']; |
903 | 903 | |
904 | 904 | // Check if there is a custom field specific filter. |
905 | - if(has_filter("geodir_custom_field_input_time_{$html_var}")){ |
|
905 | + if (has_filter("geodir_custom_field_input_time_{$html_var}")) { |
|
906 | 906 | /** |
907 | 907 | * Filter the time html by individual custom field. |
908 | 908 | * |
@@ -910,11 +910,11 @@ discard block |
||
910 | 910 | * @param array $cf The custom field array. |
911 | 911 | * @since 1.6.6 |
912 | 912 | */ |
913 | - $html = apply_filters("geodir_custom_field_input_time_{$html_var}",$html,$cf); |
|
913 | + $html = apply_filters("geodir_custom_field_input_time_{$html_var}", $html, $cf); |
|
914 | 914 | } |
915 | 915 | |
916 | 916 | // If no html then we run the standard output. |
917 | - if(empty($html)) { |
|
917 | + if (empty($html)) { |
|
918 | 918 | |
919 | 919 | ob_start(); // Start buffering; |
920 | 920 | $value = geodir_get_cf_value($cf); |
@@ -927,25 +927,25 @@ discard block |
||
927 | 927 | <script type="text/javascript"> |
928 | 928 | jQuery(document).ready(function () { |
929 | 929 | |
930 | - jQuery('#<?php echo $name;?>').timepicker({ |
|
930 | + jQuery('#<?php echo $name; ?>').timepicker({ |
|
931 | 931 | showPeriod: true, |
932 | 932 | showLeadingZero: true, |
933 | 933 | showPeriod: true, |
934 | 934 | }); |
935 | 935 | }); |
936 | 936 | </script> |
937 | - <div id="<?php echo $name;?>_row" |
|
938 | - class="<?php if ($cf['is_required']) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
937 | + <div id="<?php echo $name; ?>_row" |
|
938 | + class="<?php if ($cf['is_required']) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
939 | 939 | <label> |
940 | 940 | |
941 | 941 | <?php $site_title = __($cf['site_title'], 'geodirectory'); |
942 | 942 | echo (trim($site_title)) ? $site_title : ' '; ?> |
943 | - <?php if ($cf['is_required']) echo '<span>*</span>';?> |
|
943 | + <?php if ($cf['is_required']) echo '<span>*</span>'; ?> |
|
944 | 944 | </label> |
945 | - <input readonly="readonly" field_type="<?php echo $cf['type'];?>" name="<?php echo $name;?>" |
|
946 | - id="<?php echo $name;?>" value="<?php echo esc_attr($value);?>" type="text" class="geodir_textfield"/> |
|
945 | + <input readonly="readonly" field_type="<?php echo $cf['type']; ?>" name="<?php echo $name; ?>" |
|
946 | + id="<?php echo $name; ?>" value="<?php echo esc_attr($value); ?>" type="text" class="geodir_textfield"/> |
|
947 | 947 | |
948 | - <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory');?></span> |
|
948 | + <span class="geodir_message_note"><?php _e($cf['desc'], 'geodirectory'); ?></span> |
|
949 | 949 | <?php if ($cf['is_required']) { ?> |
950 | 950 | <span class="geodir_message_error"><?php _e($cf['required_msg'], 'geodirectory'); ?></span> |
951 | 951 | <?php } ?> |
@@ -956,7 +956,7 @@ discard block |
||
956 | 956 | |
957 | 957 | return $html; |
958 | 958 | } |
959 | -add_filter('geodir_custom_field_input_time','geodir_cfi_time',10,2); |
|
959 | +add_filter('geodir_custom_field_input_time', 'geodir_cfi_time', 10, 2); |
|
960 | 960 | |
961 | 961 | |
962 | 962 | /** |
@@ -968,12 +968,12 @@ discard block |
||
968 | 968 | * |
969 | 969 | * @return string The html to output for the custom field. |
970 | 970 | */ |
971 | -function geodir_cfi_address($html,$cf){ |
|
971 | +function geodir_cfi_address($html, $cf) { |
|
972 | 972 | |
973 | 973 | $html_var = $cf['htmlvar_name']; |
974 | 974 | |
975 | 975 | // Check if there is a custom field specific filter. |
976 | - if(has_filter("geodir_custom_field_input_address_{$html_var}")){ |
|
976 | + if (has_filter("geodir_custom_field_input_address_{$html_var}")) { |
|
977 | 977 | /** |
978 | 978 | * Filter the address html by individual custom field. |
979 | 979 | * |
@@ -981,11 +981,11 @@ discard block |
||
981 | 981 | * @param array $cf The custom field array. |
982 | 982 | * @since 1.6.6 |
983 | 983 | */ |
984 | - $html = apply_filters("geodir_custom_field_input_address_{$html_var}",$html,$cf); |
|
984 | + $html = apply_filters("geodir_custom_field_input_address_{$html_var}", $html, $cf); |
|
985 | 985 | } |
986 | 986 | |
987 | 987 | // If no html then we run the standard output. |
988 | - if(empty($html)) { |
|
988 | + if (empty($html)) { |
|
989 | 989 | |
990 | 990 | global $gd_session; |
991 | 991 | ob_start(); // Start buffering; |
@@ -998,12 +998,12 @@ discard block |
||
998 | 998 | $site_title = $cf['site_title']; |
999 | 999 | $is_admin = $cf['is_admin']; |
1000 | 1000 | $extra_fields = stripslashes_deep(unserialize($cf['extra_fields'])); |
1001 | - $prefix = $name . '_'; |
|
1001 | + $prefix = $name.'_'; |
|
1002 | 1002 | |
1003 | - ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix . ' address'); |
|
1004 | - ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix . ' zip/post code '); |
|
1003 | + ($site_title != '') ? $address_title = $site_title : $address_title = geodir_ucwords($prefix.' address'); |
|
1004 | + ($extra_fields['zip_lable'] != '') ? $zip_title = $extra_fields['zip_lable'] : $zip_title = geodir_ucwords($prefix.' zip/post code '); |
|
1005 | 1005 | ($extra_fields['map_lable'] != '') ? $map_title = $extra_fields['map_lable'] : $map_title = geodir_ucwords('set address on map'); |
1006 | - ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix . ' mapview'); |
|
1006 | + ($extra_fields['mapview_lable'] != '') ? $mapview_title = $extra_fields['mapview_lable'] : $mapview_title = geodir_ucwords($prefix.' mapview'); |
|
1007 | 1007 | |
1008 | 1008 | $address = ''; |
1009 | 1009 | $zip = ''; |
@@ -1014,21 +1014,21 @@ discard block |
||
1014 | 1014 | |
1015 | 1015 | if (isset($_REQUEST['backandedit']) && $_REQUEST['backandedit'] && $gd_ses_listing = $gd_session->get('listing')) { |
1016 | 1016 | $post = $gd_ses_listing; |
1017 | - $address = $post[$prefix . 'address']; |
|
1018 | - $zip = isset($post[$prefix . 'zip']) ? $post[$prefix . 'zip'] : ''; |
|
1019 | - $lat = isset($post[$prefix . 'latitude']) ? $post[$prefix . 'latitude'] : ''; |
|
1020 | - $lng = isset($post[$prefix . 'longitude']) ? $post[$prefix . 'longitude'] : ''; |
|
1021 | - $mapview = isset($post[$prefix . 'mapview']) ? $post[$prefix . 'mapview'] : ''; |
|
1022 | - $mapzoom = isset($post[$prefix . 'mapzoom']) ? $post[$prefix . 'mapzoom'] : ''; |
|
1017 | + $address = $post[$prefix.'address']; |
|
1018 | + $zip = isset($post[$prefix.'zip']) ? $post[$prefix.'zip'] : ''; |
|
1019 | + $lat = isset($post[$prefix.'latitude']) ? $post[$prefix.'latitude'] : ''; |
|
1020 | + $lng = isset($post[$prefix.'longitude']) ? $post[$prefix.'longitude'] : ''; |
|
1021 | + $mapview = isset($post[$prefix.'mapview']) ? $post[$prefix.'mapview'] : ''; |
|
1022 | + $mapzoom = isset($post[$prefix.'mapzoom']) ? $post[$prefix.'mapzoom'] : ''; |
|
1023 | 1023 | } else if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && $post_info = geodir_get_post_info($_REQUEST['pid'])) { |
1024 | - $post_info = (array)$post_info; |
|
1025 | - |
|
1026 | - $address = $post_info[$prefix . 'address']; |
|
1027 | - $zip = isset($post_info[$prefix . 'zip']) ? $post_info[$prefix . 'zip'] : ''; |
|
1028 | - $lat = isset($post_info[$prefix . 'latitude']) ? $post_info[$prefix . 'latitude'] : ''; |
|
1029 | - $lng = isset($post_info[$prefix . 'longitude']) ? $post_info[$prefix . 'longitude'] : ''; |
|
1030 | - $mapview = isset($post_info[$prefix . 'mapview']) ? $post_info[$prefix . 'mapview'] : ''; |
|
1031 | - $mapzoom = isset($post_info[$prefix . 'mapzoom']) ? $post_info[$prefix . 'mapzoom'] : ''; |
|
1024 | + $post_info = (array) $post_info; |
|
1025 | + |
|
1026 | + $address = $post_info[$prefix.'address']; |
|
1027 | + $zip = isset($post_info[$prefix.'zip']) ? $post_info[$prefix.'zip'] : ''; |
|
1028 | + $lat = isset($post_info[$prefix.'latitude']) ? $post_info[$prefix.'latitude'] : ''; |
|
1029 | + $lng = isset($post_info[$prefix.'longitude']) ? $post_info[$prefix.'longitude'] : ''; |
|
1030 | + $mapview = isset($post_info[$prefix.'mapview']) ? $post_info[$prefix.'mapview'] : ''; |
|
1031 | + $mapzoom = isset($post_info[$prefix.'mapzoom']) ? $post_info[$prefix.'mapzoom'] : ''; |
|
1032 | 1032 | } |
1033 | 1033 | |
1034 | 1034 | $location = geodir_get_default_location(); |
@@ -1065,16 +1065,16 @@ discard block |
||
1065 | 1065 | |
1066 | 1066 | ?> |
1067 | 1067 | |
1068 | - <div id="geodir_<?php echo $prefix . 'address';?>_row" |
|
1069 | - class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
1068 | + <div id="geodir_<?php echo $prefix.'address'; ?>_row" |
|
1069 | + class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
1070 | 1070 | <label> |
1071 | 1071 | <?php _e($address_title, 'geodirectory'); ?> |
1072 | - <?php if ($is_required) echo '<span>*</span>';?> |
|
1072 | + <?php if ($is_required) echo '<span>*</span>'; ?> |
|
1073 | 1073 | </label> |
1074 | - <input type="text" field_type="<?php echo $type;?>" name="<?php echo $prefix . 'address';?>" |
|
1075 | - id="<?php echo $prefix . 'address';?>" class="geodir_textfield" |
|
1074 | + <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'address'; ?>" |
|
1075 | + id="<?php echo $prefix.'address'; ?>" class="geodir_textfield" |
|
1076 | 1076 | value="<?php echo esc_attr(stripslashes($address)); ?>"/> |
1077 | - <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span> |
|
1077 | + <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?></span> |
|
1078 | 1078 | <?php if ($is_required) { ?> |
1079 | 1079 | <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span> |
1080 | 1080 | <?php } ?> |
@@ -1094,14 +1094,14 @@ discard block |
||
1094 | 1094 | |
1095 | 1095 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { ?> |
1096 | 1096 | |
1097 | - <div id="geodir_<?php echo $prefix . 'zip'; ?>_row" |
|
1097 | + <div id="geodir_<?php echo $prefix.'zip'; ?>_row" |
|
1098 | 1098 | class="<?php /*if($is_required) echo 'required_field';*/ ?> geodir_form_row clearfix gd-fieldset-details"> |
1099 | 1099 | <label> |
1100 | 1100 | <?php _e($zip_title, 'geodirectory'); ?> |
1101 | 1101 | <?php /*if($is_required) echo '<span>*</span>';*/ ?> |
1102 | 1102 | </label> |
1103 | - <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'zip'; ?>" |
|
1104 | - id="<?php echo $prefix . 'zip'; ?>" class="geodir_textfield autofill" |
|
1103 | + <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'zip'; ?>" |
|
1104 | + id="<?php echo $prefix.'zip'; ?>" class="geodir_textfield autofill" |
|
1105 | 1105 | value="<?php echo esc_attr(stripslashes($zip)); ?>"/> |
1106 | 1106 | <?php /*if($is_required) {?> |
1107 | 1107 | <span class="geodir_message_error"><?php echo _e($required_msg,'geodirectory');?></span> |
@@ -1111,14 +1111,14 @@ discard block |
||
1111 | 1111 | |
1112 | 1112 | <?php if (isset($extra_fields['show_map']) && $extra_fields['show_map']) { ?> |
1113 | 1113 | |
1114 | - <div id="geodir_<?php echo $prefix . 'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details"> |
|
1114 | + <div id="geodir_<?php echo $prefix.'map'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details"> |
|
1115 | 1115 | <?php |
1116 | 1116 | /** |
1117 | 1117 | * Contains add listing page map functions. |
1118 | 1118 | * |
1119 | 1119 | * @since 1.0.0 |
1120 | 1120 | */ |
1121 | - include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php"); |
|
1121 | + include(geodir_plugin_path()."/geodirectory-functions/map-functions/map_on_add_listing_page.php"); |
|
1122 | 1122 | if ($lat_lng_blank) { |
1123 | 1123 | $lat = ''; |
1124 | 1124 | $lng = ''; |
@@ -1129,14 +1129,14 @@ discard block |
||
1129 | 1129 | <?php |
1130 | 1130 | /* show lat lng */ |
1131 | 1131 | $style_latlng = ((isset($extra_fields['show_latlng']) && $extra_fields['show_latlng']) || is_admin()) ? '' : 'style="display:none"'; ?> |
1132 | - <div id="geodir_<?php echo $prefix . 'latitude'; ?>_row" |
|
1132 | + <div id="geodir_<?php echo $prefix.'latitude'; ?>_row" |
|
1133 | 1133 | class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>> |
1134 | 1134 | <label> |
1135 | 1135 | <?php echo PLACE_ADDRESS_LAT; ?> |
1136 | 1136 | <?php if ($is_required) echo '<span>*</span>'; ?> |
1137 | 1137 | </label> |
1138 | - <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'latitude'; ?>" |
|
1139 | - id="<?php echo $prefix . 'latitude'; ?>" class="geodir_textfield" |
|
1138 | + <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'latitude'; ?>" |
|
1139 | + id="<?php echo $prefix.'latitude'; ?>" class="geodir_textfield" |
|
1140 | 1140 | value="<?php echo esc_attr(stripslashes($lat)); ?>" size="25"/> |
1141 | 1141 | <span class="geodir_message_note"><?php echo GET_LATITUDE_MSG; ?></span> |
1142 | 1142 | <?php if ($is_required) { ?> |
@@ -1144,14 +1144,14 @@ discard block |
||
1144 | 1144 | <?php } ?> |
1145 | 1145 | </div> |
1146 | 1146 | |
1147 | - <div id="geodir_<?php echo $prefix . 'longitude'; ?>_row" |
|
1147 | + <div id="geodir_<?php echo $prefix.'longitude'; ?>_row" |
|
1148 | 1148 | class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details" <?php echo $style_latlng; ?>> |
1149 | 1149 | <label> |
1150 | 1150 | <?php echo PLACE_ADDRESS_LNG; ?> |
1151 | 1151 | <?php if ($is_required) echo '<span>*</span>'; ?> |
1152 | 1152 | </label> |
1153 | - <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix . 'longitude'; ?>" |
|
1154 | - id="<?php echo $prefix . 'longitude'; ?>" class="geodir_textfield" |
|
1153 | + <input type="text" field_type="<?php echo $type; ?>" name="<?php echo $prefix.'longitude'; ?>" |
|
1154 | + id="<?php echo $prefix.'longitude'; ?>" class="geodir_textfield" |
|
1155 | 1155 | value="<?php echo esc_attr(stripslashes($lng)); ?>" size="25"/> |
1156 | 1156 | <span class="geodir_message_note"><?php echo GET_LOGNGITUDE_MSG; ?></span> |
1157 | 1157 | <?php if ($is_required) { ?> |
@@ -1161,32 +1161,32 @@ discard block |
||
1161 | 1161 | <?php } ?> |
1162 | 1162 | |
1163 | 1163 | <?php if (isset($extra_fields['show_mapview']) && $extra_fields['show_mapview']) { ?> |
1164 | - <div id="geodir_<?php echo $prefix . 'mapview'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details"> |
|
1164 | + <div id="geodir_<?php echo $prefix.'mapview'; ?>_row" class="geodir_form_row clearfix gd-fieldset-details"> |
|
1165 | 1165 | <label><?php _e($mapview_title, 'geodirectory'); ?></label> |
1166 | 1166 | |
1167 | 1167 | |
1168 | 1168 | <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio" |
1169 | 1169 | class="gd-checkbox" |
1170 | - name="<?php echo $prefix . 'mapview'; ?>" |
|
1171 | - id="<?php echo $prefix . 'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') { |
|
1170 | + name="<?php echo $prefix.'mapview'; ?>" |
|
1171 | + id="<?php echo $prefix.'mapview'; ?>" <?php if ($mapview == 'ROADMAP' || $mapview == '') { |
|
1172 | 1172 | echo 'checked="checked"'; |
1173 | 1173 | } ?> value="ROADMAP" size="25"/> <?php _e('Default Map', 'geodirectory'); ?></span> |
1174 | 1174 | <span class="geodir_user_define"> <input field_type="<?php echo $type; ?>" type="radio" |
1175 | 1175 | class="gd-checkbox" |
1176 | - name="<?php echo $prefix . 'mapview'; ?>" |
|
1176 | + name="<?php echo $prefix.'mapview'; ?>" |
|
1177 | 1177 | id="map_view1" <?php if ($mapview == 'SATELLITE') { |
1178 | 1178 | echo 'checked="checked"'; |
1179 | 1179 | } ?> value="SATELLITE" size="25"/> <?php _e('Satellite Map', 'geodirectory'); ?></span> |
1180 | 1180 | |
1181 | 1181 | <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio" |
1182 | 1182 | class="gd-checkbox" |
1183 | - name="<?php echo $prefix . 'mapview'; ?>" |
|
1183 | + name="<?php echo $prefix.'mapview'; ?>" |
|
1184 | 1184 | id="map_view2" <?php if ($mapview == 'HYBRID') { |
1185 | 1185 | echo 'checked="checked"'; |
1186 | 1186 | } ?> value="HYBRID" size="25"/> <?php _e('Hybrid Map', 'geodirectory'); ?></span> |
1187 | 1187 | <span class="geodir_user_define"><input field_type="<?php echo $type; ?>" type="radio" |
1188 | 1188 | class="gd-checkbox" |
1189 | - name="<?php echo $prefix . 'mapview'; ?>" |
|
1189 | + name="<?php echo $prefix.'mapview'; ?>" |
|
1190 | 1190 | id="map_view3" <?php if ($mapview == 'TERRAIN') { |
1191 | 1191 | echo 'checked="checked"'; |
1192 | 1192 | } ?> value="TERRAIN" size="25"/> <?php _e('Terrain Map', 'geodirectory'); ?></span> |
@@ -1198,7 +1198,7 @@ discard block |
||
1198 | 1198 | <?php if (isset($extra_fields['show_mapzoom']) && $extra_fields['show_mapzoom']) { ?> |
1199 | 1199 | <input type="hidden" value="<?php if (isset($mapzoom)) { |
1200 | 1200 | echo esc_attr($mapzoom); |
1201 | - } ?>" name="<?php echo $prefix . 'mapzoom'; ?>" id="<?php echo $prefix . 'mapzoom'; ?>"/> |
|
1201 | + } ?>" name="<?php echo $prefix.'mapzoom'; ?>" id="<?php echo $prefix.'mapzoom'; ?>"/> |
|
1202 | 1202 | <?php } |
1203 | 1203 | |
1204 | 1204 | $html = ob_get_clean(); |
@@ -1206,7 +1206,7 @@ discard block |
||
1206 | 1206 | |
1207 | 1207 | return $html; |
1208 | 1208 | } |
1209 | -add_filter('geodir_custom_field_input_address','geodir_cfi_address',10,2); |
|
1209 | +add_filter('geodir_custom_field_input_address', 'geodir_cfi_address', 10, 2); |
|
1210 | 1210 | |
1211 | 1211 | |
1212 | 1212 | |
@@ -1219,12 +1219,12 @@ discard block |
||
1219 | 1219 | * |
1220 | 1220 | * @return string The html to output for the custom field. |
1221 | 1221 | */ |
1222 | -function geodir_cfi_taxonomy($html,$cf){ |
|
1222 | +function geodir_cfi_taxonomy($html, $cf) { |
|
1223 | 1223 | |
1224 | 1224 | $html_var = $cf['htmlvar_name']; |
1225 | 1225 | |
1226 | 1226 | // Check if there is a custom field specific filter. |
1227 | - if(has_filter("geodir_custom_field_input_taxonomy_{$html_var}")){ |
|
1227 | + if (has_filter("geodir_custom_field_input_taxonomy_{$html_var}")) { |
|
1228 | 1228 | /** |
1229 | 1229 | * Filter the taxonomy html by individual custom field. |
1230 | 1230 | * |
@@ -1232,11 +1232,11 @@ discard block |
||
1232 | 1232 | * @param array $cf The custom field array. |
1233 | 1233 | * @since 1.6.6 |
1234 | 1234 | */ |
1235 | - $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}",$html,$cf); |
|
1235 | + $html = apply_filters("geodir_custom_field_input_taxonomy_{$html_var}", $html, $cf); |
|
1236 | 1236 | } |
1237 | 1237 | |
1238 | 1238 | // If no html then we run the standard output. |
1239 | - if(empty($html)) { |
|
1239 | + if (empty($html)) { |
|
1240 | 1240 | |
1241 | 1241 | ob_start(); // Start buffering; |
1242 | 1242 | $value = geodir_get_cf_value($cf); |
@@ -1251,15 +1251,15 @@ discard block |
||
1251 | 1251 | if ($value == $cf['default']) { |
1252 | 1252 | $value = ''; |
1253 | 1253 | } ?> |
1254 | - <div id="<?php echo $name;?>_row" |
|
1255 | - class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
1254 | + <div id="<?php echo $name; ?>_row" |
|
1255 | + class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
1256 | 1256 | <label> |
1257 | 1257 | <?php $site_title = __($site_title, 'geodirectory'); |
1258 | 1258 | echo (trim($site_title)) ? $site_title : ' '; ?> |
1259 | - <?php if ($is_required) echo '<span>*</span>';?> |
|
1259 | + <?php if ($is_required) echo '<span>*</span>'; ?> |
|
1260 | 1260 | </label> |
1261 | 1261 | |
1262 | - <div id="<?php echo $name;?>" class="geodir_taxonomy_field" style="float:left; width:70%;"> |
|
1262 | + <div id="<?php echo $name; ?>" class="geodir_taxonomy_field" style="float:left; width:70%;"> |
|
1263 | 1263 | <?php |
1264 | 1264 | global $wpdb, $post, $cat_display, $post_cat, $package_id, $exclude_cats; |
1265 | 1265 | |
@@ -1271,7 +1271,7 @@ discard block |
||
1271 | 1271 | |
1272 | 1272 | $package_info = array(); |
1273 | 1273 | |
1274 | - $package_info = (array)geodir_post_package_info($package_info, $post, $post_type); |
|
1274 | + $package_info = (array) geodir_post_package_info($package_info, $post, $post_type); |
|
1275 | 1275 | |
1276 | 1276 | if (!empty($package_info)) { |
1277 | 1277 | |
@@ -1300,7 +1300,7 @@ discard block |
||
1300 | 1300 | |
1301 | 1301 | $catadd_limit = $wpdb->get_var( |
1302 | 1302 | $wpdb->prepare( |
1303 | - "SELECT cat_limit FROM " . GEODIR_PRICE_TABLE . " WHERE pid = %d", |
|
1303 | + "SELECT cat_limit FROM ".GEODIR_PRICE_TABLE." WHERE pid = %d", |
|
1304 | 1304 | array($package_id) |
1305 | 1305 | ) |
1306 | 1306 | ); |
@@ -1316,13 +1316,13 @@ discard block |
||
1316 | 1316 | $required_limit_msg = ''; |
1317 | 1317 | if ($catadd_limit > 0 && $cat_display != 'select' && $cat_display != 'radio') { |
1318 | 1318 | |
1319 | - $required_limit_msg = __('Only select', 'geodirectory') . ' ' . $catadd_limit . __(' categories for this package.', 'geodirectory'); |
|
1319 | + $required_limit_msg = __('Only select', 'geodirectory').' '.$catadd_limit.__(' categories for this package.', 'geodirectory'); |
|
1320 | 1320 | |
1321 | 1321 | } else { |
1322 | 1322 | $required_limit_msg = $required_msg; |
1323 | 1323 | } |
1324 | 1324 | |
1325 | - echo '<input type="hidden" cat_limit="' . $catadd_limit . '" id="cat_limit" value="' . esc_attr($required_limit_msg) . '" name="cat_limit[' . $name . ']" />'; |
|
1325 | + echo '<input type="hidden" cat_limit="'.$catadd_limit.'" id="cat_limit" value="'.esc_attr($required_limit_msg).'" name="cat_limit['.$name.']" />'; |
|
1326 | 1326 | |
1327 | 1327 | |
1328 | 1328 | if ($cat_display == 'select' || $cat_display == 'multiselect') { |
@@ -1332,11 +1332,11 @@ discard block |
||
1332 | 1332 | if ($cat_display == 'multiselect') |
1333 | 1333 | $multiple = 'multiple="multiple"'; |
1334 | 1334 | |
1335 | - echo '<select id="' . $name . '" ' . $multiple . ' type="' . $name . '" name="post_category[' . $name . '][]" alt="' . $name . '" field_type="' . $cat_display . '" class="geodir_textfield textfield_x chosen_select" data-placeholder="' . __('Select Category', 'geodirectory') . '">'; |
|
1335 | + echo '<select id="'.$name.'" '.$multiple.' type="'.$name.'" name="post_category['.$name.'][]" alt="'.$name.'" field_type="'.$cat_display.'" class="geodir_textfield textfield_x chosen_select" data-placeholder="'.__('Select Category', 'geodirectory').'">'; |
|
1336 | 1336 | |
1337 | 1337 | |
1338 | 1338 | if ($cat_display == 'select') |
1339 | - echo '<option value="">' . __('Select Category', 'geodirectory') . '</option>'; |
|
1339 | + echo '<option value="">'.__('Select Category', 'geodirectory').'</option>'; |
|
1340 | 1340 | |
1341 | 1341 | } |
1342 | 1342 | |
@@ -1354,7 +1354,7 @@ discard block |
||
1354 | 1354 | ?> |
1355 | 1355 | </div> |
1356 | 1356 | |
1357 | - <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?></span> |
|
1357 | + <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?></span> |
|
1358 | 1358 | <?php if ($is_required) { ?> |
1359 | 1359 | <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span> |
1360 | 1360 | <?php } ?> |
@@ -1366,7 +1366,7 @@ discard block |
||
1366 | 1366 | |
1367 | 1367 | return $html; |
1368 | 1368 | } |
1369 | -add_filter('geodir_custom_field_input_taxonomy','geodir_cfi_taxonomy',10,2); |
|
1369 | +add_filter('geodir_custom_field_input_taxonomy', 'geodir_cfi_taxonomy', 10, 2); |
|
1370 | 1370 | |
1371 | 1371 | |
1372 | 1372 | /** |
@@ -1378,12 +1378,12 @@ discard block |
||
1378 | 1378 | * |
1379 | 1379 | * @return string The html to output for the custom field. |
1380 | 1380 | */ |
1381 | -function geodir_cfi_file($html,$cf){ |
|
1381 | +function geodir_cfi_file($html, $cf) { |
|
1382 | 1382 | |
1383 | 1383 | $html_var = $cf['htmlvar_name']; |
1384 | 1384 | |
1385 | 1385 | // Check if there is a custom field specific filter. |
1386 | - if(has_filter("geodir_custom_field_input_file_{$html_var}")){ |
|
1386 | + if (has_filter("geodir_custom_field_input_file_{$html_var}")) { |
|
1387 | 1387 | /** |
1388 | 1388 | * Filter the file html by individual custom field. |
1389 | 1389 | * |
@@ -1391,11 +1391,11 @@ discard block |
||
1391 | 1391 | * @param array $cf The custom field array. |
1392 | 1392 | * @since 1.6.6 |
1393 | 1393 | */ |
1394 | - $html = apply_filters("geodir_custom_field_input_file_{$html_var}",$html,$cf); |
|
1394 | + $html = apply_filters("geodir_custom_field_input_file_{$html_var}", $html, $cf); |
|
1395 | 1395 | } |
1396 | 1396 | |
1397 | 1397 | // If no html then we run the standard output. |
1398 | - if(empty($html)) { |
|
1398 | + if (empty($html)) { |
|
1399 | 1399 | |
1400 | 1400 | ob_start(); // Start buffering; |
1401 | 1401 | $value = geodir_get_cf_value($cf); |
@@ -1438,8 +1438,8 @@ discard block |
||
1438 | 1438 | $file_totImg = count($curImages); |
1439 | 1439 | } |
1440 | 1440 | |
1441 | - $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types'] ) ? implode(",", $extra_fields['gd_file_types']) : ''; |
|
1442 | - $display_file_types = $allowed_file_types != '' ? '.' . implode(", .", $extra_fields['gd_file_types']) : ''; |
|
1441 | + $allowed_file_types = !empty($extra_fields['gd_file_types']) && is_array($extra_fields['gd_file_types']) && !in_array("*", $extra_fields['gd_file_types']) ? implode(",", $extra_fields['gd_file_types']) : ''; |
|
1442 | + $display_file_types = $allowed_file_types != '' ? '.'.implode(", .", $extra_fields['gd_file_types']) : ''; |
|
1443 | 1443 | |
1444 | 1444 | ?> |
1445 | 1445 | <?php /*?> <h5 class="geodir-form_title"> <?php echo $site_title; ?> |
@@ -1449,13 +1449,13 @@ discard block |
||
1449 | 1449 | </h5> <?php */ |
1450 | 1450 | ?> |
1451 | 1451 | |
1452 | - <div id="<?php echo $name;?>_row" |
|
1453 | - class="<?php if ($is_required) echo 'required_field';?> geodir_form_row clearfix gd-fieldset-details"> |
|
1452 | + <div id="<?php echo $name; ?>_row" |
|
1453 | + class="<?php if ($is_required) echo 'required_field'; ?> geodir_form_row clearfix gd-fieldset-details"> |
|
1454 | 1454 | |
1455 | 1455 | <div id="<?php echo $file_id; ?>dropbox" style="text-align:center;"> |
1456 | 1456 | <label |
1457 | 1457 | style="text-align:left; padding-top:10px;"><?php $site_title = __($site_title, 'geodirectory'); |
1458 | - echo $site_title; ?><?php if ($is_required) echo '<span>*</span>';?></label> |
|
1458 | + echo $site_title; ?><?php if ($is_required) echo '<span>*</span>'; ?></label> |
|
1459 | 1459 | <input class="geodir-custom-file-upload" field_type="file" type="hidden" |
1460 | 1460 | name="<?php echo $file_id; ?>" id="<?php echo $file_id; ?>" |
1461 | 1461 | value="<?php echo esc_attr($file_value); ?>"/> |
@@ -1463,7 +1463,7 @@ discard block |
||
1463 | 1463 | id="<?php echo $file_id; ?>image_limit" value="<?php echo $file_image_limit; ?>"/> |
1464 | 1464 | <?php if ($allowed_file_types != '') { ?> |
1465 | 1465 | <input type="hidden" name="<?php echo $file_id; ?>_allowed_types" |
1466 | - id="<?php echo $file_id; ?>_allowed_types" value="<?php echo esc_attr($allowed_file_types); ?>" data-exts="<?php echo esc_attr($display_file_types);?>"/> |
|
1466 | + id="<?php echo $file_id; ?>_allowed_types" value="<?php echo esc_attr($allowed_file_types); ?>" data-exts="<?php echo esc_attr($display_file_types); ?>"/> |
|
1467 | 1467 | <?php } ?> |
1468 | 1468 | <input type="hidden" name="<?php echo $file_id; ?>totImg" id="<?php echo $file_id; ?>totImg" |
1469 | 1469 | value="<?php if (isset($file_totImg)) { |
@@ -1479,10 +1479,10 @@ discard block |
||
1479 | 1479 | <?php /*?><h4><?php _e('Drop files to upload');?></h4><br/><?php */ |
1480 | 1480 | ?> |
1481 | 1481 | <input id="<?php echo $file_id; ?>plupload-browse-button" type="button" |
1482 | - value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory') ); ?>" |
|
1482 | + value="<?php ($file_image_limit > 1 ? esc_attr_e('Select Files', 'geodirectory') : esc_attr_e('Select File', 'geodirectory')); ?>" |
|
1483 | 1483 | class="geodir_button" style="margin-top:10px;"/> |
1484 | 1484 | <span class="ajaxnonceplu" |
1485 | - id="ajaxnonceplu<?php echo wp_create_nonce($file_id . 'pluploadan'); ?>"></span> |
|
1485 | + id="ajaxnonceplu<?php echo wp_create_nonce($file_id.'pluploadan'); ?>"></span> |
|
1486 | 1486 | <?php if ($file_width && $file_height): ?> |
1487 | 1487 | <span class="plupload-resize"></span> |
1488 | 1488 | <span class="plupload-width" id="plupload-width<?php echo $file_width; ?>"></span> |
@@ -1502,7 +1502,7 @@ discard block |
||
1502 | 1502 | |
1503 | 1503 | </div> |
1504 | 1504 | </div> |
1505 | - <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory');?> <?php echo ( $display_file_types != '' ? __('Allowed file types:', 'geodirectory') . ' ' . $display_file_types : '' );?></span> |
|
1505 | + <span class="geodir_message_note"><?php _e($admin_desc, 'geodirectory'); ?> <?php echo ($display_file_types != '' ? __('Allowed file types:', 'geodirectory').' '.$display_file_types : ''); ?></span> |
|
1506 | 1506 | <?php if ($is_required) { ?> |
1507 | 1507 | <span class="geodir_message_error"><?php _e($required_msg, 'geodirectory'); ?></span> |
1508 | 1508 | <?php } ?> |
@@ -1515,4 +1515,4 @@ discard block |
||
1515 | 1515 | |
1516 | 1516 | return $html; |
1517 | 1517 | } |
1518 | -add_filter('geodir_custom_field_input_file','geodir_cfi_file',10,2); |
|
1519 | 1518 | \ No newline at end of file |
1519 | +add_filter('geodir_custom_field_input_file', 'geodir_cfi_file', 10, 2); |
|
1520 | 1520 | \ No newline at end of file |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | * @since 1.4.6 |
14 | 14 | * @return int|null Return the page ID if present or null if not. |
15 | 15 | */ |
16 | -function geodir_add_listing_page_id(){ |
|
16 | +function geodir_add_listing_page_id() { |
|
17 | 17 | $gd_page_id = get_option('geodir_add_listing_page'); |
18 | 18 | |
19 | 19 | if (function_exists('icl_object_id')) { |
20 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
20 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
21 | 21 | } |
22 | 22 | |
23 | 23 | return $gd_page_id; |
@@ -30,11 +30,11 @@ discard block |
||
30 | 30 | * @since 1.4.6 |
31 | 31 | * @return int|null Return the page ID if present or null if not. |
32 | 32 | */ |
33 | -function geodir_preview_page_id(){ |
|
33 | +function geodir_preview_page_id() { |
|
34 | 34 | $gd_page_id = get_option('geodir_preview_page'); |
35 | 35 | |
36 | 36 | if (function_exists('icl_object_id')) { |
37 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
37 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
38 | 38 | } |
39 | 39 | |
40 | 40 | return $gd_page_id; |
@@ -47,11 +47,11 @@ discard block |
||
47 | 47 | * @since 1.4.6 |
48 | 48 | * @return int|null Return the page ID if present or null if not. |
49 | 49 | */ |
50 | -function geodir_success_page_id(){ |
|
50 | +function geodir_success_page_id() { |
|
51 | 51 | $gd_page_id = get_option('geodir_success_page'); |
52 | 52 | |
53 | 53 | if (function_exists('icl_object_id')) { |
54 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
54 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | return $gd_page_id; |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | * @since 1.4.6 |
65 | 65 | * @return int|null Return the page ID if present or null if not. |
66 | 66 | */ |
67 | -function geodir_location_page_id(){ |
|
67 | +function geodir_location_page_id() { |
|
68 | 68 | $gd_page_id = get_option('geodir_location_page'); |
69 | 69 | |
70 | 70 | if (function_exists('icl_object_id')) { |
71 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
71 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
72 | 72 | } |
73 | 73 | |
74 | 74 | return $gd_page_id; |
@@ -81,11 +81,11 @@ discard block |
||
81 | 81 | * @since 1.5.4 |
82 | 82 | * @return int|null Return the page ID if present or null if not. |
83 | 83 | */ |
84 | -function geodir_home_page_id(){ |
|
84 | +function geodir_home_page_id() { |
|
85 | 85 | $gd_page_id = get_option('geodir_home_page'); |
86 | 86 | |
87 | 87 | if (function_exists('icl_object_id')) { |
88 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
88 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
89 | 89 | } |
90 | 90 | |
91 | 91 | return $gd_page_id; |
@@ -98,11 +98,11 @@ discard block |
||
98 | 98 | * @since 1.5.3 |
99 | 99 | * @return int|null Return the page ID if present or null if not. |
100 | 100 | */ |
101 | -function geodir_info_page_id(){ |
|
101 | +function geodir_info_page_id() { |
|
102 | 102 | $gd_page_id = get_option('geodir_info_page'); |
103 | 103 | |
104 | 104 | if (function_exists('icl_object_id')) { |
105 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
105 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | return $gd_page_id; |
@@ -115,11 +115,11 @@ discard block |
||
115 | 115 | * @since 1.5.3 |
116 | 116 | * @return int|null Return the page ID if present or null if not. |
117 | 117 | */ |
118 | -function geodir_login_page_id(){ |
|
118 | +function geodir_login_page_id() { |
|
119 | 119 | $gd_page_id = get_option('geodir_login_page'); |
120 | 120 | |
121 | 121 | if (function_exists('icl_object_id')) { |
122 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
122 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | return $gd_page_id; |
@@ -133,20 +133,20 @@ discard block |
||
133 | 133 | * @since 1.5.3 |
134 | 134 | * @return int|null Return the page ID if present or null if not. |
135 | 135 | */ |
136 | -function geodir_login_url($args=array()){ |
|
136 | +function geodir_login_url($args = array()) { |
|
137 | 137 | $gd_page_id = get_option('geodir_login_page'); |
138 | 138 | |
139 | 139 | if (function_exists('icl_object_id')) { |
140 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
140 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | if (function_exists('geodir_location_geo_home_link')) { |
144 | 144 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
145 | 145 | } |
146 | 146 | |
147 | - if (geodir_is_wpml()){ |
|
147 | + if (geodir_is_wpml()) { |
|
148 | 148 | $home_url = icl_get_home_url(); |
149 | - }else{ |
|
149 | + } else { |
|
150 | 150 | $home_url = home_url(); |
151 | 151 | } |
152 | 152 | |
@@ -154,17 +154,17 @@ discard block |
||
154 | 154 | add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
155 | 155 | } |
156 | 156 | |
157 | - if($gd_page_id){ |
|
157 | + if ($gd_page_id) { |
|
158 | 158 | $post = get_post($gd_page_id); |
159 | 159 | $slug = $post->post_name; |
160 | 160 | //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
161 | 161 | $login_url = trailingslashit($home_url)."$slug/"; |
162 | - }else{ |
|
162 | + } else { |
|
163 | 163 | $login_url = trailingslashit($home_url)."?geodir_signup=true"; |
164 | 164 | } |
165 | 165 | |
166 | - if($args){ |
|
167 | - $login_url = add_query_arg($args,$login_url ); |
|
166 | + if ($args) { |
|
167 | + $login_url = add_query_arg($args, $login_url); |
|
168 | 168 | } |
169 | 169 | |
170 | 170 | /** |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | * @param array $args The array of query args used. |
179 | 179 | * @param int $gd_page_id The page id of the GD login page. |
180 | 180 | */ |
181 | - return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id); |
|
181 | + return apply_filters('geodir_login_url', $login_url, $args, $gd_page_id); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -189,20 +189,20 @@ discard block |
||
189 | 189 | * @since 1.5.16 Added WPML lang code to url. |
190 | 190 | * @return string Info page url. |
191 | 191 | */ |
192 | -function geodir_info_url($args=array()){ |
|
192 | +function geodir_info_url($args = array()) { |
|
193 | 193 | $gd_page_id = get_option('geodir_info_page'); |
194 | 194 | |
195 | 195 | if (function_exists('icl_object_id')) { |
196 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
196 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | if (function_exists('geodir_location_geo_home_link')) { |
200 | 200 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
201 | 201 | } |
202 | 202 | |
203 | - if (geodir_is_wpml()){ |
|
203 | + if (geodir_is_wpml()) { |
|
204 | 204 | $home_url = icl_get_home_url(); |
205 | - }else{ |
|
205 | + } else { |
|
206 | 206 | $home_url = home_url(); |
207 | 207 | } |
208 | 208 | |
@@ -210,17 +210,17 @@ discard block |
||
210 | 210 | add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
211 | 211 | } |
212 | 212 | |
213 | - if($gd_page_id){ |
|
213 | + if ($gd_page_id) { |
|
214 | 214 | $post = get_post($gd_page_id); |
215 | 215 | $slug = $post->post_name; |
216 | 216 | //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
217 | 217 | $info_url = trailingslashit($home_url)."$slug/"; |
218 | - }else{ |
|
218 | + } else { |
|
219 | 219 | $info_url = trailingslashit($home_url); |
220 | 220 | } |
221 | 221 | |
222 | - if($args){ |
|
223 | - $info_url = add_query_arg($args,$info_url ); |
|
222 | + if ($args) { |
|
223 | + $info_url = add_query_arg($args, $info_url); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | return $info_url; |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | * @param string $charset Character set to use for conversion. |
239 | 239 | * @return string Returns converted string. |
240 | 240 | */ |
241 | -function geodir_ucwords($string, $charset='UTF-8') { |
|
241 | +function geodir_ucwords($string, $charset = 'UTF-8') { |
|
242 | 242 | if (function_exists('mb_convert_case')) { |
243 | 243 | return mb_convert_case($string, MB_CASE_TITLE, $charset); |
244 | 244 | } else { |
@@ -258,7 +258,7 @@ discard block |
||
258 | 258 | * @param string $charset Character set to use for conversion. |
259 | 259 | * @return string Returns converted string. |
260 | 260 | */ |
261 | -function geodir_strtolower($string, $charset='UTF-8') { |
|
261 | +function geodir_strtolower($string, $charset = 'UTF-8') { |
|
262 | 262 | if (function_exists('mb_convert_case')) { |
263 | 263 | return mb_convert_case($string, MB_CASE_LOWER, $charset); |
264 | 264 | } else { |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * @param string $charset Character set to use for conversion. |
279 | 279 | * @return string Returns converted string. |
280 | 280 | */ |
281 | -function geodir_strtoupper($string, $charset='UTF-8') { |
|
281 | +function geodir_strtoupper($string, $charset = 'UTF-8') { |
|
282 | 282 | if (function_exists('mb_convert_case')) { |
283 | 283 | return mb_convert_case($string, MB_CASE_UPPER, $charset); |
284 | 284 | } else { |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | |
310 | 310 | $url = trim($parts[0]); |
311 | 311 | if ($formatted && $url != '') { |
312 | - $url = str_replace( ' ', '%20', $url ); |
|
312 | + $url = str_replace(' ', '%20', $url); |
|
313 | 313 | $url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\[\]\\x80-\\xff]|i', '', $url); |
314 | 314 | |
315 | 315 | if (0 !== stripos($url, 'mailto:')) { |
@@ -319,8 +319,8 @@ discard block |
||
319 | 319 | |
320 | 320 | $url = str_replace(';//', '://', $url); |
321 | 321 | |
322 | - if (strpos($url, ':') === false && ! in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) { |
|
323 | - $url = 'http://' . $url; |
|
322 | + if (strpos($url, ':') === false && !in_array($url[0], array('/', '#', '?')) && !preg_match('/^[a-z0-9-]+?\.php/i', $url)) { |
|
323 | + $url = 'http://'.$url; |
|
324 | 324 | } |
325 | 325 | |
326 | 326 | $url = wp_kses_normalize_entities($url); |
@@ -462,7 +462,7 @@ discard block |
||
462 | 462 | * @package GeoDirectory |
463 | 463 | */ |
464 | 464 | function _gd_die_handler() { |
465 | - if ( defined( 'GD_TESTING_MODE' ) ) { |
|
465 | + if (defined('GD_TESTING_MODE')) { |
|
466 | 466 | return '_gd_die_handler'; |
467 | 467 | } else { |
468 | 468 | die(); |
@@ -480,10 +480,10 @@ discard block |
||
480 | 480 | * @param string $title Optional. Error title. |
481 | 481 | * @param int $status Optional. Status code. |
482 | 482 | */ |
483 | -function gd_die( $message = '', $title = '', $status = 400 ) { |
|
484 | - add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 ); |
|
485 | - add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 ); |
|
486 | - wp_die( $message, $title, array( 'response' => $status )); |
|
483 | +function gd_die($message = '', $title = '', $status = 400) { |
|
484 | + add_filter('wp_die_ajax_handler', '_gd_die_handler', 10, 3); |
|
485 | + add_filter('wp_die_handler', '_gd_die_handler', 10, 3); |
|
486 | + wp_die($message, $title, array('response' => $status)); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /* |
@@ -493,7 +493,7 @@ discard block |
||
493 | 493 | * @param string $php_format The PHP date format. |
494 | 494 | * @return string The jQuery format date string. |
495 | 495 | */ |
496 | -function geodir_date_format_php_to_jqueryui( $php_format ) { |
|
496 | +function geodir_date_format_php_to_jqueryui($php_format) { |
|
497 | 497 | $symbols = array( |
498 | 498 | // Day |
499 | 499 | 'd' => 'dd', |
@@ -533,27 +533,27 @@ discard block |
||
533 | 533 | $jqueryui_format = ""; |
534 | 534 | $escaping = false; |
535 | 535 | |
536 | - for ( $i = 0; $i < strlen( $php_format ); $i++ ) { |
|
536 | + for ($i = 0; $i < strlen($php_format); $i++) { |
|
537 | 537 | $char = $php_format[$i]; |
538 | 538 | |
539 | 539 | // PHP date format escaping character |
540 | - if ( $char === '\\' ) { |
|
540 | + if ($char === '\\') { |
|
541 | 541 | $i++; |
542 | 542 | |
543 | - if ( $escaping ) { |
|
543 | + if ($escaping) { |
|
544 | 544 | $jqueryui_format .= $php_format[$i]; |
545 | 545 | } else { |
546 | - $jqueryui_format .= '\'' . $php_format[$i]; |
|
546 | + $jqueryui_format .= '\''.$php_format[$i]; |
|
547 | 547 | } |
548 | 548 | |
549 | 549 | $escaping = true; |
550 | 550 | } else { |
551 | - if ( $escaping ) { |
|
551 | + if ($escaping) { |
|
552 | 552 | $jqueryui_format .= "'"; |
553 | 553 | $escaping = false; |
554 | 554 | } |
555 | 555 | |
556 | - if ( isset( $symbols[$char] ) ) { |
|
556 | + if (isset($symbols[$char])) { |
|
557 | 557 | $jqueryui_format .= $symbols[$char]; |
558 | 558 | } else { |
559 | 559 | $jqueryui_format .= $char; |
@@ -572,7 +572,7 @@ discard block |
||
572 | 572 | * @return string The untranslated date string. |
573 | 573 | * @since 1.6.5 |
574 | 574 | */ |
575 | -function geodir_maybe_untranslate_date($date){ |
|
575 | +function geodir_maybe_untranslate_date($date) { |
|
576 | 576 | $english_long_months = array( |
577 | 577 | 'January', |
578 | 578 | 'February', |
@@ -588,7 +588,7 @@ discard block |
||
588 | 588 | 'December', |
589 | 589 | ); |
590 | 590 | |
591 | - $non_english_long_months = array( |
|
591 | + $non_english_long_months = array( |
|
592 | 592 | __('January'), |
593 | 593 | __('February'), |
594 | 594 | __('March'), |
@@ -602,7 +602,7 @@ discard block |
||
602 | 602 | __('November'), |
603 | 603 | __('December'), |
604 | 604 | ); |
605 | - $date = str_replace($non_english_long_months,$english_long_months,$date); |
|
605 | + $date = str_replace($non_english_long_months, $english_long_months, $date); |
|
606 | 606 | |
607 | 607 | |
608 | 608 | $english_short_months = array( |
@@ -621,21 +621,21 @@ discard block |
||
621 | 621 | ); |
622 | 622 | |
623 | 623 | $non_english_short_months = array( |
624 | - ' '._x( 'Jan', 'January abbreviation' ).' ', |
|
625 | - ' '._x( 'Feb', 'February abbreviation' ).' ', |
|
626 | - ' '._x( 'Mar', 'March abbreviation' ).' ', |
|
627 | - ' '._x( 'Apr', 'April abbreviation' ).' ', |
|
628 | - ' '._x( 'May', 'May abbreviation' ).' ', |
|
629 | - ' '._x( 'Jun', 'June abbreviation' ).' ', |
|
630 | - ' '._x( 'Jul', 'July abbreviation' ).' ', |
|
631 | - ' '._x( 'Aug', 'August abbreviation' ).' ', |
|
632 | - ' '._x( 'Sep', 'September abbreviation' ).' ', |
|
633 | - ' '._x( 'Oct', 'October abbreviation' ).' ', |
|
634 | - ' '._x( 'Nov', 'November abbreviation' ).' ', |
|
635 | - ' '._x( 'Dec', 'December abbreviation' ).' ', |
|
624 | + ' '._x('Jan', 'January abbreviation').' ', |
|
625 | + ' '._x('Feb', 'February abbreviation').' ', |
|
626 | + ' '._x('Mar', 'March abbreviation').' ', |
|
627 | + ' '._x('Apr', 'April abbreviation').' ', |
|
628 | + ' '._x('May', 'May abbreviation').' ', |
|
629 | + ' '._x('Jun', 'June abbreviation').' ', |
|
630 | + ' '._x('Jul', 'July abbreviation').' ', |
|
631 | + ' '._x('Aug', 'August abbreviation').' ', |
|
632 | + ' '._x('Sep', 'September abbreviation').' ', |
|
633 | + ' '._x('Oct', 'October abbreviation').' ', |
|
634 | + ' '._x('Nov', 'November abbreviation').' ', |
|
635 | + ' '._x('Dec', 'December abbreviation').' ', |
|
636 | 636 | ); |
637 | 637 | |
638 | - $date = str_replace($non_english_short_months,$english_short_months,$date); |
|
638 | + $date = str_replace($non_english_short_months, $english_short_months, $date); |
|
639 | 639 | |
640 | 640 | |
641 | 641 | return $date; |
@@ -707,7 +707,7 @@ discard block |
||
707 | 707 | * @return string Trimmed string. |
708 | 708 | */ |
709 | 709 | function geodir_excerpt($text, $length = 100, $options = array()) { |
710 | - if (!(int)$length > 0) { |
|
710 | + if (!(int) $length > 0) { |
|
711 | 711 | return $text; |
712 | 712 | } |
713 | 713 | $default = array( |
@@ -769,7 +769,7 @@ discard block |
||
769 | 769 | $length = $truncateLength; |
770 | 770 | |
771 | 771 | foreach ($openTags as $tag) { |
772 | - $suffix .= '</' . $tag . '>'; |
|
772 | + $suffix .= '</'.$tag.'>'; |
|
773 | 773 | } |
774 | 774 | } else { |
775 | 775 | if (geodir_strlen($text, $options) <= $length) { |
@@ -791,7 +791,7 @@ discard block |
||
791 | 791 | } |
792 | 792 | } |
793 | 793 | |
794 | - return $prefix . $result . $suffix; |
|
794 | + return $prefix.$result.$suffix; |
|
795 | 795 | } |
796 | 796 | |
797 | 797 | /** |
@@ -828,7 +828,7 @@ discard block |
||
828 | 828 | $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i'; |
829 | 829 | $replace = preg_replace_callback( |
830 | 830 | $pattern, |
831 | - function ($match) use ($strlen) { |
|
831 | + function($match) use ($strlen) { |
|
832 | 832 | $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8'); |
833 | 833 | |
834 | 834 | return str_repeat(' ', $strlen($utf8, 'UTF-8')); |
@@ -889,7 +889,7 @@ discard block |
||
889 | 889 | } |
890 | 890 | |
891 | 891 | if (empty($options['html'])) { |
892 | - return (string)$substr($text, $start, $length); |
|
892 | + return (string) $substr($text, $start, $length); |
|
893 | 893 | } |
894 | 894 | |
895 | 895 | $totalOffset = 0; |
@@ -914,7 +914,7 @@ discard block |
||
914 | 914 | |
915 | 915 | $len = geodir_strlen($part, $options); |
916 | 916 | if ($offset !== 0 || $totalLength + $len > $length) { |
917 | - if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) { |
|
917 | + if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8')) { |
|
918 | 918 | // Entities cannot be passed substr. |
919 | 919 | continue; |
920 | 920 | } |
@@ -960,39 +960,39 @@ discard block |
||
960 | 960 | return ''; |
961 | 961 | } |
962 | 962 | |
963 | -function geodir_tool_restore_cpt_from_taxonomies(){ |
|
963 | +function geodir_tool_restore_cpt_from_taxonomies() { |
|
964 | 964 | |
965 | 965 | $cpts = get_option('geodir_post_types'); |
966 | 966 | |
967 | - if(!empty($cpts)){return;} |
|
967 | + if (!empty($cpts)) {return; } |
|
968 | 968 | |
969 | 969 | $taxonomies = get_option('geodir_taxonomies'); |
970 | 970 | |
971 | - if(empty($taxonomies)){return;} |
|
971 | + if (empty($taxonomies)) {return; } |
|
972 | 972 | |
973 | 973 | $cpts = array(); |
974 | 974 | |
975 | - foreach($taxonomies as $key => $val){ |
|
975 | + foreach ($taxonomies as $key => $val) { |
|
976 | 976 | |
977 | - if(strpos($val['listing_slug'], '/') === false) { |
|
978 | - $cpts[$val['object_type']] = array('cpt'=>$val['object_type'],'slug'=>$val['listing_slug']); |
|
977 | + if (strpos($val['listing_slug'], '/') === false) { |
|
978 | + $cpts[$val['object_type']] = array('cpt'=>$val['object_type'], 'slug'=>$val['listing_slug']); |
|
979 | 979 | } |
980 | 980 | |
981 | 981 | } |
982 | 982 | |
983 | - if(empty($cpts)){return;} |
|
983 | + if (empty($cpts)) {return; } |
|
984 | 984 | |
985 | 985 | |
986 | 986 | $cpts_restore = $cpts; |
987 | 987 | |
988 | - foreach($cpts as $cpt){ |
|
988 | + foreach ($cpts as $cpt) { |
|
989 | 989 | |
990 | 990 | |
991 | - $is_custom = $cpt['cpt']=='gd_place' ? 0 : 1; |
|
991 | + $is_custom = $cpt['cpt'] == 'gd_place' ? 0 : 1; |
|
992 | 992 | |
993 | - $cpts_restore[$cpt['cpt']] = array ( |
|
993 | + $cpts_restore[$cpt['cpt']] = array( |
|
994 | 994 | 'labels' => |
995 | - array ( |
|
995 | + array( |
|
996 | 996 | 'name' => $cpt['slug'], |
997 | 997 | 'singular_name' => $cpt['slug'], |
998 | 998 | 'add_new' => 'Add New', |
@@ -1020,14 +1020,14 @@ discard block |
||
1020 | 1020 | 'public' => true, |
1021 | 1021 | 'query_var' => true, |
1022 | 1022 | 'rewrite' => |
1023 | - array ( |
|
1023 | + array( |
|
1024 | 1024 | 'slug' => $cpt['slug'], |
1025 | 1025 | 'with_front' => false, |
1026 | 1026 | 'hierarchical' => true, |
1027 | 1027 | 'feeds' => true, |
1028 | 1028 | ), |
1029 | 1029 | 'supports' => |
1030 | - array ( |
|
1030 | + array( |
|
1031 | 1031 | 0 => 'title', |
1032 | 1032 | 1 => 'editor', |
1033 | 1033 | 2 => 'author', |
@@ -1037,14 +1037,14 @@ discard block |
||
1037 | 1037 | 6 => 'comments', |
1038 | 1038 | ), |
1039 | 1039 | 'taxonomies' => |
1040 | - array ( |
|
1040 | + array( |
|
1041 | 1041 | 0 => $cpt['cpt'].'category', |
1042 | 1042 | 1 => $cpt['cpt'].'_tags', |
1043 | 1043 | ), |
1044 | 1044 | 'is_custom' => $is_custom, |
1045 | 1045 | 'listing_order' => '1', |
1046 | 1046 | 'seo' => |
1047 | - array ( |
|
1047 | + array( |
|
1048 | 1048 | 'meta_keyword' => '', |
1049 | 1049 | 'meta_description' => '', |
1050 | 1050 | ), |
@@ -1056,6 +1056,6 @@ discard block |
||
1056 | 1056 | } |
1057 | 1057 | |
1058 | 1058 | |
1059 | - update_option('geodir_post_types',$cpts_restore); |
|
1059 | + update_option('geodir_post_types', $cpts_restore); |
|
1060 | 1060 | |
1061 | 1061 | } |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
17 | 17 | } |
18 | 18 | |
19 | -if (geodir_is_wpml() && defined('DOING_AJAX') && DOING_AJAX){ |
|
19 | +if (geodir_is_wpml() && defined('DOING_AJAX') && DOING_AJAX) { |
|
20 | 20 | $search_url = icl_get_home_url(); |
21 | 21 | } else { |
22 | 22 | $search_url = get_home_url(); |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | $new_style = get_option('geodir_show_search_old_search_from') ? false : true; |
32 | 32 | $form_class = 'geodir-listing-search'; |
33 | 33 | |
34 | -if($new_style){ |
|
34 | +if ($new_style) { |
|
35 | 35 | $form_class .= ' gd-search-bar-style'; |
36 | 36 | } |
37 | 37 | ?> |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | /** |
11 | 11 | * Get All Plugin functions from WordPress |
12 | 12 | */ |
13 | -include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
13 | +include_once(ABSPATH.'wp-admin/includes/plugin.php'); |
|
14 | 14 | |
15 | 15 | /*-----------------------------------------------------------------------------------*/ |
16 | 16 | /* Helper functions */ |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | * @return string example url eg: http://wpgeo.directory/wp-content/plugins/geodirectory |
28 | 28 | */ |
29 | 29 | function geodir_plugin_url() { |
30 | - return plugins_url( '', dirname( __FILE__ ) ); |
|
30 | + return plugins_url('', dirname(__FILE__)); |
|
31 | 31 | /* |
32 | 32 | if ( is_ssl() ) : |
33 | 33 | return str_replace( 'http://', 'https://', WP_PLUGIN_URL ) . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
@@ -47,10 +47,10 @@ discard block |
||
47 | 47 | * @return string example url eg: /home/geo/public_html/wp-content/plugins/geodirectory |
48 | 48 | */ |
49 | 49 | function geodir_plugin_path() { |
50 | - if ( defined( 'GD_TESTING_MODE' ) && GD_TESTING_MODE ) { |
|
51 | - return dirname( dirname( __FILE__ ) ); |
|
50 | + if (defined('GD_TESTING_MODE') && GD_TESTING_MODE) { |
|
51 | + return dirname(dirname(__FILE__)); |
|
52 | 52 | } else { |
53 | - return WP_PLUGIN_DIR . "/" . plugin_basename( dirname( dirname( __FILE__ ) ) ); |
|
53 | + return WP_PLUGIN_DIR."/".plugin_basename(dirname(dirname(__FILE__))); |
|
54 | 54 | } |
55 | 55 | } |
56 | 56 | |
@@ -65,10 +65,10 @@ discard block |
||
65 | 65 | * @return bool true or false. |
66 | 66 | * @todo check if this is faster than normal WP check and remove if not. |
67 | 67 | */ |
68 | -function geodir_is_plugin_active( $plugin ) { |
|
69 | - $active_plugins = get_option( 'active_plugins' ); |
|
70 | - foreach ( $active_plugins as $key => $active_plugin ) { |
|
71 | - if ( strstr( $active_plugin, $plugin ) ) { |
|
68 | +function geodir_is_plugin_active($plugin) { |
|
69 | + $active_plugins = get_option('active_plugins'); |
|
70 | + foreach ($active_plugins as $key => $active_plugin) { |
|
71 | + if (strstr($active_plugin, $plugin)) { |
|
72 | 72 | return true; |
73 | 73 | } |
74 | 74 | } |
@@ -90,8 +90,8 @@ discard block |
||
90 | 90 | * |
91 | 91 | * @return bool|int|string the formatted date. |
92 | 92 | */ |
93 | -function geodir_get_formated_date( $date ) { |
|
94 | - return mysql2date( get_option( 'date_format' ), $date ); |
|
93 | +function geodir_get_formated_date($date) { |
|
94 | + return mysql2date(get_option('date_format'), $date); |
|
95 | 95 | } |
96 | 96 | |
97 | 97 | /** |
@@ -107,8 +107,8 @@ discard block |
||
107 | 107 | * |
108 | 108 | * @return bool|int|string the formatted time. |
109 | 109 | */ |
110 | -function geodir_get_formated_time( $time ) { |
|
111 | - return mysql2date( get_option( 'time_format' ), $time, $translate = true ); |
|
110 | +function geodir_get_formated_time($time) { |
|
111 | + return mysql2date(get_option('time_format'), $time, $translate = true); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | |
@@ -126,35 +126,35 @@ discard block |
||
126 | 126 | * |
127 | 127 | * @return string Formatted link. |
128 | 128 | */ |
129 | -function geodir_getlink( $url, $params = array(), $use_existing_arguments = false ) { |
|
130 | - if ( $use_existing_arguments ) { |
|
129 | +function geodir_getlink($url, $params = array(), $use_existing_arguments = false) { |
|
130 | + if ($use_existing_arguments) { |
|
131 | 131 | $params = $params + $_GET; |
132 | 132 | } |
133 | - if ( ! $params ) { |
|
133 | + if (!$params) { |
|
134 | 134 | return $url; |
135 | 135 | } |
136 | 136 | $link = $url; |
137 | - if ( strpos( $link, '?' ) === false ) { |
|
137 | + if (strpos($link, '?') === false) { |
|
138 | 138 | $link .= '?'; |
139 | 139 | } //If there is no '?' add one at the end |
140 | - elseif ( strpos( $link, '//maps.google.com/maps/api/js?language=' ) ) { |
|
140 | + elseif (strpos($link, '//maps.google.com/maps/api/js?language=')) { |
|
141 | 141 | $link .= '&'; |
142 | 142 | } //If there is no '&' at the END, add one. |
143 | - elseif ( ! preg_match( '/(\?|\&(amp;)?)$/', $link ) ) { |
|
143 | + elseif (!preg_match('/(\?|\&(amp;)?)$/', $link)) { |
|
144 | 144 | $link .= '&'; |
145 | 145 | } //If there is no '&' at the END, add one. |
146 | 146 | |
147 | 147 | $params_arr = array(); |
148 | - foreach ( $params as $key => $value ) { |
|
149 | - if ( gettype( $value ) == 'array' ) { //Handle array data properly |
|
150 | - foreach ( $value as $val ) { |
|
151 | - $params_arr[] = $key . '[]=' . urlencode( $val ); |
|
148 | + foreach ($params as $key => $value) { |
|
149 | + if (gettype($value) == 'array') { //Handle array data properly |
|
150 | + foreach ($value as $val) { |
|
151 | + $params_arr[] = $key.'[]='.urlencode($val); |
|
152 | 152 | } |
153 | 153 | } else { |
154 | - $params_arr[] = $key . '=' . urlencode( $value ); |
|
154 | + $params_arr[] = $key.'='.urlencode($value); |
|
155 | 155 | } |
156 | 156 | } |
157 | - $link .= implode( '&', $params_arr ); |
|
157 | + $link .= implode('&', $params_arr); |
|
158 | 158 | |
159 | 159 | return $link; |
160 | 160 | } |
@@ -171,18 +171,18 @@ discard block |
||
171 | 171 | * |
172 | 172 | * @return string Listing page url if valid. Otherwise home url will be returned. |
173 | 173 | */ |
174 | -function geodir_get_addlisting_link( $post_type = '' ) { |
|
174 | +function geodir_get_addlisting_link($post_type = '') { |
|
175 | 175 | global $wpdb; |
176 | 176 | |
177 | 177 | //$check_pkg = $wpdb->get_var("SELECT pid FROM ".GEODIR_PRICE_TABLE." WHERE post_type='".$post_type."' and status != '0'"); |
178 | 178 | $check_pkg = 1; |
179 | - if ( post_type_exists( $post_type ) && $check_pkg ) { |
|
179 | + if (post_type_exists($post_type) && $check_pkg) { |
|
180 | 180 | |
181 | - $add_listing_link = get_page_link( geodir_add_listing_page_id() ); |
|
181 | + $add_listing_link = get_page_link(geodir_add_listing_page_id()); |
|
182 | 182 | |
183 | - return esc_url( add_query_arg( array( 'listing_type' => $post_type ), $add_listing_link ) ); |
|
183 | + return esc_url(add_query_arg(array('listing_type' => $post_type), $add_listing_link)); |
|
184 | 184 | } else { |
185 | - return get_bloginfo( 'url' ); |
|
185 | + return get_bloginfo('url'); |
|
186 | 186 | } |
187 | 187 | } |
188 | 188 | |
@@ -210,7 +210,7 @@ discard block |
||
210 | 210 | if (!empty($_SERVER['PHP_SELF']) && !empty($_SERVER['REQUEST_URI'])) { |
211 | 211 | // To build the entire URI we need to prepend the protocol, and the http host |
212 | 212 | // to the URI string. |
213 | - $pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']; |
|
213 | + $pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI']; |
|
214 | 214 | } else { |
215 | 215 | /* |
216 | 216 | * Since we do not have REQUEST_URI to work with, we will assume we are |
@@ -219,11 +219,11 @@ discard block |
||
219 | 219 | * |
220 | 220 | * IIS uses the SCRIPT_NAME variable instead of a REQUEST_URI variable... thanks, MS |
221 | 221 | */ |
222 | - $pageURL .= $_SERVER['HTTP_HOST'] . $_SERVER['SCRIPT_NAME']; |
|
222 | + $pageURL .= $_SERVER['HTTP_HOST'].$_SERVER['SCRIPT_NAME']; |
|
223 | 223 | |
224 | 224 | // If the query string exists append it to the URI string |
225 | 225 | if (isset($_SERVER['QUERY_STRING']) && !empty($_SERVER['QUERY_STRING'])) { |
226 | - $pageURL .= '?' . $_SERVER['QUERY_STRING']; |
|
226 | + $pageURL .= '?'.$_SERVER['QUERY_STRING']; |
|
227 | 227 | } |
228 | 228 | } |
229 | 229 | |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | * |
235 | 235 | * @param string $pageURL The URL of the current page. |
236 | 236 | */ |
237 | - return apply_filters( 'geodir_curPageURL', $pageURL ); |
|
237 | + return apply_filters('geodir_curPageURL', $pageURL); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | /** |
@@ -249,12 +249,12 @@ discard block |
||
249 | 249 | * |
250 | 250 | * @return string Cleaned variable. |
251 | 251 | */ |
252 | -function geodir_clean( $string ) { |
|
252 | +function geodir_clean($string) { |
|
253 | 253 | |
254 | - $string = trim( strip_tags( stripslashes( $string ) ) ); |
|
255 | - $string = str_replace( " ", "-", $string ); // Replaces all spaces with hyphens. |
|
256 | - $string = preg_replace( '/[^A-Za-z0-9\-\_]/', '', $string ); // Removes special chars. |
|
257 | - $string = preg_replace( '/-+/', '-', $string ); // Replaces multiple hyphens with single one. |
|
254 | + $string = trim(strip_tags(stripslashes($string))); |
|
255 | + $string = str_replace(" ", "-", $string); // Replaces all spaces with hyphens. |
|
256 | + $string = preg_replace('/[^A-Za-z0-9\-\_]/', '', $string); // Removes special chars. |
|
257 | + $string = preg_replace('/-+/', '-', $string); // Replaces multiple hyphens with single one. |
|
258 | 258 | |
259 | 259 | return $string; |
260 | 260 | } |
@@ -268,13 +268,13 @@ discard block |
||
268 | 268 | */ |
269 | 269 | function geodir_get_weekday() { |
270 | 270 | return array( |
271 | - __( 'Sunday', 'geodirectory' ), |
|
272 | - __( 'Monday', 'geodirectory' ), |
|
273 | - __( 'Tuesday', 'geodirectory' ), |
|
274 | - __( 'Wednesday', 'geodirectory' ), |
|
275 | - __( 'Thursday', 'geodirectory' ), |
|
276 | - __( 'Friday', 'geodirectory' ), |
|
277 | - __( 'Saturday', 'geodirectory' ) |
|
271 | + __('Sunday', 'geodirectory'), |
|
272 | + __('Monday', 'geodirectory'), |
|
273 | + __('Tuesday', 'geodirectory'), |
|
274 | + __('Wednesday', 'geodirectory'), |
|
275 | + __('Thursday', 'geodirectory'), |
|
276 | + __('Friday', 'geodirectory'), |
|
277 | + __('Saturday', 'geodirectory') |
|
278 | 278 | ); |
279 | 279 | } |
280 | 280 | |
@@ -287,11 +287,11 @@ discard block |
||
287 | 287 | */ |
288 | 288 | function geodir_get_weeks() { |
289 | 289 | return array( |
290 | - __( 'First', 'geodirectory' ), |
|
291 | - __( 'Second', 'geodirectory' ), |
|
292 | - __( 'Third', 'geodirectory' ), |
|
293 | - __( 'Fourth', 'geodirectory' ), |
|
294 | - __( 'Last', 'geodirectory' ) |
|
290 | + __('First', 'geodirectory'), |
|
291 | + __('Second', 'geodirectory'), |
|
292 | + __('Third', 'geodirectory'), |
|
293 | + __('Fourth', 'geodirectory'), |
|
294 | + __('Last', 'geodirectory') |
|
295 | 295 | ); |
296 | 296 | } |
297 | 297 | |
@@ -310,112 +310,112 @@ discard block |
||
310 | 310 | * |
311 | 311 | * @return bool If valid returns true. Otherwise false. |
312 | 312 | */ |
313 | -function geodir_is_page( $gdpage = '' ) { |
|
313 | +function geodir_is_page($gdpage = '') { |
|
314 | 314 | |
315 | 315 | global $wp_query, $post, $wp; |
316 | 316 | //if(!is_admin()): |
317 | 317 | |
318 | - switch ( $gdpage ): |
|
318 | + switch ($gdpage): |
|
319 | 319 | case 'add-listing': |
320 | 320 | |
321 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_add_listing_page_id() ) { |
|
321 | + if (is_page() && get_query_var('page_id') == geodir_add_listing_page_id()) { |
|
322 | 322 | return true; |
323 | - } elseif ( is_page() && isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) { |
|
323 | + } elseif (is_page() && isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) { |
|
324 | 324 | return true; |
325 | 325 | } |
326 | 326 | |
327 | 327 | break; |
328 | 328 | case 'preview': |
329 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_preview_page_id() ) && isset( $_REQUEST['listing_type'] ) |
|
330 | - && in_array( $_REQUEST['listing_type'], geodir_get_posttypes() ) |
|
329 | + if ((is_page() && get_query_var('page_id') == geodir_preview_page_id()) && isset($_REQUEST['listing_type']) |
|
330 | + && in_array($_REQUEST['listing_type'], geodir_get_posttypes()) |
|
331 | 331 | ) { |
332 | 332 | return true; |
333 | 333 | } |
334 | 334 | break; |
335 | 335 | case 'listing-success': |
336 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_success_page_id() ) { |
|
336 | + if (is_page() && get_query_var('page_id') == geodir_success_page_id()) { |
|
337 | 337 | return true; |
338 | 338 | } |
339 | 339 | break; |
340 | 340 | case 'detail': |
341 | - $post_type = get_query_var( 'post_type' ); |
|
342 | - if ( is_array( $post_type ) ) { |
|
343 | - $post_type = reset( $post_type ); |
|
341 | + $post_type = get_query_var('post_type'); |
|
342 | + if (is_array($post_type)) { |
|
343 | + $post_type = reset($post_type); |
|
344 | 344 | } |
345 | - if ( is_single() && in_array( $post_type, geodir_get_posttypes() ) ) { |
|
345 | + if (is_single() && in_array($post_type, geodir_get_posttypes())) { |
|
346 | 346 | return true; |
347 | 347 | } |
348 | 348 | break; |
349 | 349 | case 'pt': |
350 | - $post_type = get_query_var( 'post_type' ); |
|
351 | - if ( is_array( $post_type ) ) { |
|
352 | - $post_type = reset( $post_type ); |
|
350 | + $post_type = get_query_var('post_type'); |
|
351 | + if (is_array($post_type)) { |
|
352 | + $post_type = reset($post_type); |
|
353 | 353 | } |
354 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) && ! is_tax() ) { |
|
354 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes()) && !is_tax()) { |
|
355 | 355 | return true; |
356 | 356 | } |
357 | 357 | |
358 | 358 | break; |
359 | 359 | case 'listing': |
360 | - if ( is_tax() && geodir_get_taxonomy_posttype() ) { |
|
360 | + if (is_tax() && geodir_get_taxonomy_posttype()) { |
|
361 | 361 | global $current_term, $taxonomy, $term; |
362 | 362 | |
363 | 363 | return true; |
364 | 364 | } |
365 | - $post_type = get_query_var( 'post_type' ); |
|
366 | - if ( is_array( $post_type ) ) { |
|
367 | - $post_type = reset( $post_type ); |
|
365 | + $post_type = get_query_var('post_type'); |
|
366 | + if (is_array($post_type)) { |
|
367 | + $post_type = reset($post_type); |
|
368 | 368 | } |
369 | - if ( is_post_type_archive() && in_array( $post_type, geodir_get_posttypes() ) ) { |
|
369 | + if (is_post_type_archive() && in_array($post_type, geodir_get_posttypes())) { |
|
370 | 370 | return true; |
371 | 371 | } |
372 | 372 | |
373 | 373 | break; |
374 | 374 | case 'home': |
375 | 375 | |
376 | - if ( ( is_page() && get_query_var( 'page_id' ) == geodir_home_page_id() ) || is_page_geodir_home() ) { |
|
376 | + if ((is_page() && get_query_var('page_id') == geodir_home_page_id()) || is_page_geodir_home()) { |
|
377 | 377 | return true; |
378 | 378 | } |
379 | 379 | |
380 | 380 | break; |
381 | 381 | case 'location': |
382 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_location_page_id() ) { |
|
382 | + if (is_page() && get_query_var('page_id') == geodir_location_page_id()) { |
|
383 | 383 | return true; |
384 | 384 | } |
385 | 385 | break; |
386 | 386 | case 'author': |
387 | - if ( is_author() && isset( $_REQUEST['geodir_dashbord'] ) ) { |
|
387 | + if (is_author() && isset($_REQUEST['geodir_dashbord'])) { |
|
388 | 388 | return true; |
389 | 389 | } |
390 | 390 | |
391 | - if ( function_exists( 'bp_loggedin_user_id' ) && function_exists( 'bp_displayed_user_id' ) && $my_id = (int) bp_loggedin_user_id() ) { |
|
392 | - if ( ( (bool) bp_is_current_component( 'listings' ) || (bool) bp_is_current_component( 'favorites' ) ) && $my_id > 0 && $my_id == (int) bp_displayed_user_id() ) { |
|
391 | + if (function_exists('bp_loggedin_user_id') && function_exists('bp_displayed_user_id') && $my_id = (int) bp_loggedin_user_id()) { |
|
392 | + if (((bool) bp_is_current_component('listings') || (bool) bp_is_current_component('favorites')) && $my_id > 0 && $my_id == (int) bp_displayed_user_id()) { |
|
393 | 393 | return true; |
394 | 394 | } |
395 | 395 | } |
396 | 396 | break; |
397 | 397 | case 'search': |
398 | - if ( is_search() && isset( $_REQUEST['geodir_search'] ) ) { |
|
398 | + if (is_search() && isset($_REQUEST['geodir_search'])) { |
|
399 | 399 | return true; |
400 | 400 | } |
401 | 401 | break; |
402 | 402 | case 'info': |
403 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_info_page_id() ) { |
|
403 | + if (is_page() && get_query_var('page_id') == geodir_info_page_id()) { |
|
404 | 404 | return true; |
405 | 405 | } |
406 | 406 | break; |
407 | 407 | case 'login': |
408 | - if ( is_page() && get_query_var( 'page_id' ) == geodir_login_page_id() ) { |
|
408 | + if (is_page() && get_query_var('page_id') == geodir_login_page_id()) { |
|
409 | 409 | return true; |
410 | 410 | } |
411 | 411 | break; |
412 | 412 | case 'checkout': |
413 | - if ( is_page() && function_exists( 'geodir_payment_checkout_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_checkout_page_id() ) { |
|
413 | + if (is_page() && function_exists('geodir_payment_checkout_page_id') && get_query_var('page_id') == geodir_payment_checkout_page_id()) { |
|
414 | 414 | return true; |
415 | 415 | } |
416 | 416 | break; |
417 | 417 | case 'invoices': |
418 | - if ( is_page() && function_exists( 'geodir_payment_invoices_page_id' ) && get_query_var( 'page_id' ) == geodir_payment_invoices_page_id() ) { |
|
418 | + if (is_page() && function_exists('geodir_payment_invoices_page_id') && get_query_var('page_id') == geodir_payment_invoices_page_id()) { |
|
419 | 419 | return true; |
420 | 420 | } |
421 | 421 | break; |
@@ -440,25 +440,25 @@ discard block |
||
440 | 440 | * |
441 | 441 | * @param object $wp WordPress object. |
442 | 442 | */ |
443 | -function geodir_set_is_geodir_page( $wp ) { |
|
444 | - if ( ! is_admin() ) { |
|
443 | +function geodir_set_is_geodir_page($wp) { |
|
444 | + if (!is_admin()) { |
|
445 | 445 | //$wp->query_vars['gd_is_geodir_page'] = false; |
446 | 446 | //print_r() |
447 | - if ( empty( $wp->query_vars ) || ! array_diff( array_keys( $wp->query_vars ), array( |
|
447 | + if (empty($wp->query_vars) || !array_diff(array_keys($wp->query_vars), array( |
|
448 | 448 | 'preview', |
449 | 449 | 'page', |
450 | 450 | 'paged', |
451 | 451 | 'cpage' |
452 | - ) ) |
|
452 | + )) |
|
453 | 453 | ) { |
454 | - if ( geodir_is_page( 'home' ) ) { |
|
454 | + if (geodir_is_page('home')) { |
|
455 | 455 | $wp->query_vars['gd_is_geodir_page'] = true; |
456 | 456 | } |
457 | 457 | |
458 | 458 | |
459 | 459 | } |
460 | 460 | |
461 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['page_id'] ) ) { |
|
461 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['page_id'])) { |
|
462 | 462 | if ( |
463 | 463 | $wp->query_vars['page_id'] == geodir_add_listing_page_id() |
464 | 464 | || $wp->query_vars['page_id'] == geodir_preview_page_id() |
@@ -467,26 +467,26 @@ discard block |
||
467 | 467 | || $wp->query_vars['page_id'] == geodir_home_page_id() |
468 | 468 | || $wp->query_vars['page_id'] == geodir_info_page_id() |
469 | 469 | || $wp->query_vars['page_id'] == geodir_login_page_id() |
470 | - || ( function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
471 | - || ( function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
470 | + || (function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id()) |
|
471 | + || (function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id()) |
|
472 | 472 | ) { |
473 | 473 | $wp->query_vars['gd_is_geodir_page'] = true; |
474 | 474 | } |
475 | 475 | } |
476 | 476 | |
477 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['pagename'] ) ) { |
|
478 | - $page = get_page_by_path( $wp->query_vars['pagename'] ); |
|
477 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['pagename'])) { |
|
478 | + $page = get_page_by_path($wp->query_vars['pagename']); |
|
479 | 479 | |
480 | - if ( ! empty( $page ) && ( |
|
480 | + if (!empty($page) && ( |
|
481 | 481 | $page->ID == geodir_add_listing_page_id() |
482 | 482 | || $page->ID == geodir_preview_page_id() |
483 | 483 | || $page->ID == geodir_success_page_id() |
484 | 484 | || $page->ID == geodir_location_page_id() |
485 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_home_page_id() ) |
|
486 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_info_page_id() ) |
|
487 | - || ( isset( $wp->query_vars['page_id'] ) && $wp->query_vars['page_id'] == geodir_login_page_id() ) |
|
488 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_checkout_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id() ) |
|
489 | - || ( isset( $wp->query_vars['page_id'] ) && function_exists( 'geodir_payment_invoices_page_id' ) && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id() ) |
|
485 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_home_page_id()) |
|
486 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_info_page_id()) |
|
487 | + || (isset($wp->query_vars['page_id']) && $wp->query_vars['page_id'] == geodir_login_page_id()) |
|
488 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_checkout_page_id') && $wp->query_vars['page_id'] == geodir_payment_checkout_page_id()) |
|
489 | + || (isset($wp->query_vars['page_id']) && function_exists('geodir_payment_invoices_page_id') && $wp->query_vars['page_id'] == geodir_payment_invoices_page_id()) |
|
490 | 490 | ) |
491 | 491 | ) { |
492 | 492 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -494,20 +494,20 @@ discard block |
||
494 | 494 | } |
495 | 495 | |
496 | 496 | |
497 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['post_type'] ) && $wp->query_vars['post_type'] != '' ) { |
|
497 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['post_type']) && $wp->query_vars['post_type'] != '') { |
|
498 | 498 | $requested_post_type = $wp->query_vars['post_type']; |
499 | 499 | // check if this post type is geodirectory post types |
500 | 500 | $post_type_array = geodir_get_posttypes(); |
501 | - if ( in_array( $requested_post_type, $post_type_array ) ) { |
|
501 | + if (in_array($requested_post_type, $post_type_array)) { |
|
502 | 502 | $wp->query_vars['gd_is_geodir_page'] = true; |
503 | 503 | } |
504 | 504 | } |
505 | 505 | |
506 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) ) { |
|
507 | - $geodir_taxonomis = geodir_get_taxonomies( '', true ); |
|
508 | - if ( ! empty( $geodir_taxonomis ) ) { |
|
509 | - foreach ( $geodir_taxonomis as $taxonomy ) { |
|
510 | - if ( array_key_exists( $taxonomy, $wp->query_vars ) ) { |
|
506 | + if (!isset($wp->query_vars['gd_is_geodir_page'])) { |
|
507 | + $geodir_taxonomis = geodir_get_taxonomies('', true); |
|
508 | + if (!empty($geodir_taxonomis)) { |
|
509 | + foreach ($geodir_taxonomis as $taxonomy) { |
|
510 | + if (array_key_exists($taxonomy, $wp->query_vars)) { |
|
511 | 511 | $wp->query_vars['gd_is_geodir_page'] = true; |
512 | 512 | break; |
513 | 513 | } |
@@ -516,20 +516,20 @@ discard block |
||
516 | 516 | |
517 | 517 | } |
518 | 518 | |
519 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $wp->query_vars['author_name'] ) && isset( $_REQUEST['geodir_dashbord'] ) ) { |
|
519 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($wp->query_vars['author_name']) && isset($_REQUEST['geodir_dashbord'])) { |
|
520 | 520 | $wp->query_vars['gd_is_geodir_page'] = true; |
521 | 521 | } |
522 | 522 | |
523 | 523 | |
524 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) && isset( $_REQUEST['geodir_search'] ) ) { |
|
524 | + if (!isset($wp->query_vars['gd_is_geodir_page']) && isset($_REQUEST['geodir_search'])) { |
|
525 | 525 | $wp->query_vars['gd_is_geodir_page'] = true; |
526 | 526 | } |
527 | 527 | |
528 | 528 | |
529 | 529 | //check if homepage |
530 | - if ( ! isset( $wp->query_vars['gd_is_geodir_page'] ) |
|
531 | - && ! isset( $wp->query_vars['page_id'] ) |
|
532 | - && ! isset( $wp->query_vars['pagename'] ) |
|
530 | + if (!isset($wp->query_vars['gd_is_geodir_page']) |
|
531 | + && !isset($wp->query_vars['page_id']) |
|
532 | + && !isset($wp->query_vars['pagename']) |
|
533 | 533 | && is_page_geodir_home() |
534 | 534 | ) { |
535 | 535 | $wp->query_vars['gd_is_geodir_page'] = true; |
@@ -553,14 +553,14 @@ discard block |
||
553 | 553 | */ |
554 | 554 | function geodir_is_geodir_page() { |
555 | 555 | global $wp; |
556 | - if ( isset( $wp->query_vars['gd_is_geodir_page'] ) && $wp->query_vars['gd_is_geodir_page'] ) { |
|
556 | + if (isset($wp->query_vars['gd_is_geodir_page']) && $wp->query_vars['gd_is_geodir_page']) { |
|
557 | 557 | return true; |
558 | 558 | } else { |
559 | 559 | return false; |
560 | 560 | } |
561 | 561 | } |
562 | 562 | |
563 | -if ( ! function_exists( 'geodir_get_imagesize' ) ) { |
|
563 | +if (!function_exists('geodir_get_imagesize')) { |
|
564 | 564 | /** |
565 | 565 | * Get image size using the size key . |
566 | 566 | * |
@@ -571,13 +571,13 @@ discard block |
||
571 | 571 | * |
572 | 572 | * @return array|mixed|void|WP_Error If valid returns image size. Else returns error. |
573 | 573 | */ |
574 | - function geodir_get_imagesize( $size = '' ) { |
|
574 | + function geodir_get_imagesize($size = '') { |
|
575 | 575 | |
576 | 576 | $imagesizes = array( |
577 | - 'list-thumb' => array( 'w' => 283, 'h' => 188 ), |
|
578 | - 'thumbnail' => array( 'w' => 125, 'h' => 125 ), |
|
579 | - 'widget-thumb' => array( 'w' => 50, 'h' => 50 ), |
|
580 | - 'slider-thumb' => array( 'w' => 100, 'h' => 100 ) |
|
577 | + 'list-thumb' => array('w' => 283, 'h' => 188), |
|
578 | + 'thumbnail' => array('w' => 125, 'h' => 125), |
|
579 | + 'widget-thumb' => array('w' => 50, 'h' => 50), |
|
580 | + 'slider-thumb' => array('w' => 100, 'h' => 100) |
|
581 | 581 | ); |
582 | 582 | |
583 | 583 | /** |
@@ -587,9 +587,9 @@ discard block |
||
587 | 587 | * |
588 | 588 | * @param array $imagesizes Image size array. |
589 | 589 | */ |
590 | - $imagesizes = apply_filters( 'geodir_imagesizes', $imagesizes ); |
|
590 | + $imagesizes = apply_filters('geodir_imagesizes', $imagesizes); |
|
591 | 591 | |
592 | - if ( ! empty( $size ) && array_key_exists( $size, $imagesizes ) ) { |
|
592 | + if (!empty($size) && array_key_exists($size, $imagesizes)) { |
|
593 | 593 | /** |
594 | 594 | * Filters image size of the passed key. |
595 | 595 | * |
@@ -597,11 +597,11 @@ discard block |
||
597 | 597 | * |
598 | 598 | * @param array $imagesizes [$size] Image size array of the passed key. |
599 | 599 | */ |
600 | - return apply_filters( 'geodir_get_imagesize_' . $size, $imagesizes[ $size ] ); |
|
600 | + return apply_filters('geodir_get_imagesize_'.$size, $imagesizes[$size]); |
|
601 | 601 | |
602 | - } elseif ( ! empty( $size ) ) { |
|
602 | + } elseif (!empty($size)) { |
|
603 | 603 | |
604 | - return new WP_Error( 'geodir_no_imagesize', __( "Given image size is not valid", 'geodirectory' ) ); |
|
604 | + return new WP_Error('geodir_no_imagesize', __("Given image size is not valid", 'geodirectory')); |
|
605 | 605 | |
606 | 606 | } |
607 | 607 | |
@@ -625,7 +625,7 @@ discard block |
||
625 | 625 | */ |
626 | 626 | |
627 | 627 | |
628 | -if ( ! function_exists( 'createRandomString' ) ) { |
|
628 | +if (!function_exists('createRandomString')) { |
|
629 | 629 | /** |
630 | 630 | * Creates random string. |
631 | 631 | * |
@@ -635,21 +635,21 @@ discard block |
||
635 | 635 | */ |
636 | 636 | function createRandomString() { |
637 | 637 | $chars = "abcdefghijkmlnopqrstuvwxyz1023456789"; |
638 | - srand( (double) microtime() * 1000000 ); |
|
638 | + srand((double) microtime() * 1000000); |
|
639 | 639 | $i = 0; |
640 | 640 | $rstring = ''; |
641 | - while ( $i <= 25 ) { |
|
641 | + while ($i <= 25) { |
|
642 | 642 | $num = rand() % 33; |
643 | - $tmp = substr( $chars, $num, 1 ); |
|
644 | - $rstring = $rstring . $tmp; |
|
645 | - $i ++; |
|
643 | + $tmp = substr($chars, $num, 1); |
|
644 | + $rstring = $rstring.$tmp; |
|
645 | + $i++; |
|
646 | 646 | } |
647 | 647 | |
648 | 648 | return $rstring; |
649 | 649 | } |
650 | 650 | } |
651 | 651 | |
652 | -if ( ! function_exists( 'geodir_getDistanceRadius' ) ) { |
|
652 | +if (!function_exists('geodir_getDistanceRadius')) { |
|
653 | 653 | /** |
654 | 654 | * Calculates the distance radius. |
655 | 655 | * |
@@ -660,9 +660,9 @@ discard block |
||
660 | 660 | * |
661 | 661 | * @return float The mean radius. |
662 | 662 | */ |
663 | - function geodir_getDistanceRadius( $uom = 'km' ) { |
|
663 | + function geodir_getDistanceRadius($uom = 'km') { |
|
664 | 664 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
665 | - switch ( geodir_strtolower( $uom ) ): |
|
665 | + switch (geodir_strtolower($uom)): |
|
666 | 666 | case 'km' : |
667 | 667 | $earthMeanRadius = 6371.009; // km |
668 | 668 | break; |
@@ -694,7 +694,7 @@ discard block |
||
694 | 694 | } |
695 | 695 | |
696 | 696 | |
697 | -if ( ! function_exists( 'geodir_calculateDistanceFromLatLong' ) ) { |
|
697 | +if (!function_exists('geodir_calculateDistanceFromLatLong')) { |
|
698 | 698 | /** |
699 | 699 | * Calculate the great circle distance between two points identified by longitude and latitude. |
700 | 700 | * |
@@ -707,17 +707,17 @@ discard block |
||
707 | 707 | * |
708 | 708 | * @return float The distance. |
709 | 709 | */ |
710 | - function geodir_calculateDistanceFromLatLong( $point1, $point2, $uom = 'km' ) { |
|
710 | + function geodir_calculateDistanceFromLatLong($point1, $point2, $uom = 'km') { |
|
711 | 711 | // Use Haversine formula to calculate the great circle distance between two points identified by longitude and latitude |
712 | 712 | |
713 | - $earthMeanRadius = geodir_getDistanceRadius( $uom ); |
|
713 | + $earthMeanRadius = geodir_getDistanceRadius($uom); |
|
714 | 714 | |
715 | - $deltaLatitude = deg2rad( (float) $point2['latitude'] - (float) $point1['latitude'] ); |
|
716 | - $deltaLongitude = deg2rad( (float) $point2['longitude'] - (float) $point1['longitude'] ); |
|
717 | - $a = sin( $deltaLatitude / 2 ) * sin( $deltaLatitude / 2 ) + |
|
718 | - cos( deg2rad( (float) $point1['latitude'] ) ) * cos( deg2rad( (float) $point2['latitude'] ) ) * |
|
719 | - sin( $deltaLongitude / 2 ) * sin( $deltaLongitude / 2 ); |
|
720 | - $c = 2 * atan2( sqrt( $a ), sqrt( 1 - $a ) ); |
|
715 | + $deltaLatitude = deg2rad((float) $point2['latitude'] - (float) $point1['latitude']); |
|
716 | + $deltaLongitude = deg2rad((float) $point2['longitude'] - (float) $point1['longitude']); |
|
717 | + $a = sin($deltaLatitude / 2) * sin($deltaLatitude / 2) + |
|
718 | + cos(deg2rad((float) $point1['latitude'])) * cos(deg2rad((float) $point2['latitude'])) * |
|
719 | + sin($deltaLongitude / 2) * sin($deltaLongitude / 2); |
|
720 | + $c = 2 * atan2(sqrt($a), sqrt(1 - $a)); |
|
721 | 721 | $distance = $earthMeanRadius * $c; |
722 | 722 | |
723 | 723 | return $distance; |
@@ -726,7 +726,7 @@ discard block |
||
726 | 726 | } |
727 | 727 | |
728 | 728 | |
729 | -if ( ! function_exists( 'geodir_sendEmail' ) ) { |
|
729 | +if (!function_exists('geodir_sendEmail')) { |
|
730 | 730 | /** |
731 | 731 | * The main function that send transactional emails using the args provided. |
732 | 732 | * |
@@ -745,95 +745,95 @@ discard block |
||
745 | 745 | * @param string $post_id The post ID. |
746 | 746 | * @param string $user_id The user ID. |
747 | 747 | */ |
748 | - function geodir_sendEmail( $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '' ) { |
|
748 | + function geodir_sendEmail($fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra = '', $message_type, $post_id = '', $user_id = '') { |
|
749 | 749 | $login_details = ''; |
750 | 750 | |
751 | 751 | // strip slashes from subject & message text |
752 | - $to_subject = stripslashes_deep( $to_subject ); |
|
753 | - $to_message = stripslashes_deep( $to_message ); |
|
752 | + $to_subject = stripslashes_deep($to_subject); |
|
753 | + $to_message = stripslashes_deep($to_message); |
|
754 | 754 | |
755 | - if ( $message_type == 'send_friend' ) { |
|
756 | - $subject = get_option( 'geodir_email_friend_subject' ); |
|
757 | - $message = get_option( 'geodir_email_friend_content' ); |
|
758 | - } elseif ( $message_type == 'send_enquiry' ) { |
|
759 | - $subject = get_option( 'geodir_email_enquiry_subject' ); |
|
760 | - $message = get_option( 'geodir_email_enquiry_content' ); |
|
755 | + if ($message_type == 'send_friend') { |
|
756 | + $subject = get_option('geodir_email_friend_subject'); |
|
757 | + $message = get_option('geodir_email_friend_content'); |
|
758 | + } elseif ($message_type == 'send_enquiry') { |
|
759 | + $subject = get_option('geodir_email_enquiry_subject'); |
|
760 | + $message = get_option('geodir_email_enquiry_content'); |
|
761 | 761 | |
762 | 762 | // change to name in some cases |
763 | - $post_author = get_post_field( 'post_author', $post_id ); |
|
764 | - if(is_super_admin( $post_author )){// if admin probably not the post author so change name |
|
765 | - $toEmailName = __('Business Owner','geodirectory'); |
|
766 | - }elseif(defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id,'claimed')!='1'){// if claim manager installed but listing not claimed |
|
767 | - $toEmailName = __('Business Owner','geodirectory'); |
|
763 | + $post_author = get_post_field('post_author', $post_id); |
|
764 | + if (is_super_admin($post_author)) {// if admin probably not the post author so change name |
|
765 | + $toEmailName = __('Business Owner', 'geodirectory'); |
|
766 | + }elseif (defined('GEODIRCLAIM_VERSION') && geodir_get_post_meta($post_id, 'claimed') != '1') {// if claim manager installed but listing not claimed |
|
767 | + $toEmailName = __('Business Owner', 'geodirectory'); |
|
768 | 768 | } |
769 | 769 | |
770 | 770 | |
771 | - } elseif ( $message_type == 'forgot_password' ) { |
|
772 | - $subject = get_option( 'geodir_forgot_password_subject' ); |
|
773 | - $message = get_option( 'geodir_forgot_password_content' ); |
|
771 | + } elseif ($message_type == 'forgot_password') { |
|
772 | + $subject = get_option('geodir_forgot_password_subject'); |
|
773 | + $message = get_option('geodir_forgot_password_content'); |
|
774 | 774 | $login_details = $to_message; |
775 | - } elseif ( $message_type == 'registration' ) { |
|
776 | - $subject = get_option( 'geodir_registration_success_email_subject' ); |
|
777 | - $message = get_option( 'geodir_registration_success_email_content' ); |
|
775 | + } elseif ($message_type == 'registration') { |
|
776 | + $subject = get_option('geodir_registration_success_email_subject'); |
|
777 | + $message = get_option('geodir_registration_success_email_content'); |
|
778 | 778 | $login_details = $to_message; |
779 | - } elseif ( $message_type == 'post_submit' ) { |
|
780 | - $subject = get_option( 'geodir_post_submited_success_email_subject' ); |
|
781 | - $message = get_option( 'geodir_post_submited_success_email_content' ); |
|
782 | - } elseif ( $message_type == 'listing_published' ) { |
|
783 | - $subject = get_option( 'geodir_post_published_email_subject' ); |
|
784 | - $message = get_option( 'geodir_post_published_email_content' ); |
|
785 | - } elseif ( $message_type == 'listing_edited' ) { |
|
786 | - $subject = get_option( 'geodir_post_edited_email_subject_admin' ); |
|
787 | - $message = get_option( 'geodir_post_edited_email_content_admin' ); |
|
779 | + } elseif ($message_type == 'post_submit') { |
|
780 | + $subject = get_option('geodir_post_submited_success_email_subject'); |
|
781 | + $message = get_option('geodir_post_submited_success_email_content'); |
|
782 | + } elseif ($message_type == 'listing_published') { |
|
783 | + $subject = get_option('geodir_post_published_email_subject'); |
|
784 | + $message = get_option('geodir_post_published_email_content'); |
|
785 | + } elseif ($message_type == 'listing_edited') { |
|
786 | + $subject = get_option('geodir_post_edited_email_subject_admin'); |
|
787 | + $message = get_option('geodir_post_edited_email_content_admin'); |
|
788 | 788 | } |
789 | 789 | |
790 | - if ( ! empty( $subject ) ) { |
|
791 | - $subject = __( stripslashes_deep( $subject ), 'geodirectory' ); |
|
790 | + if (!empty($subject)) { |
|
791 | + $subject = __(stripslashes_deep($subject), 'geodirectory'); |
|
792 | 792 | } |
793 | 793 | |
794 | - if ( ! empty( $message ) ) { |
|
795 | - $message = __( stripslashes_deep( $message ), 'geodirectory' ); |
|
794 | + if (!empty($message)) { |
|
795 | + $message = __(stripslashes_deep($message), 'geodirectory'); |
|
796 | 796 | } |
797 | 797 | |
798 | - $to_message = nl2br( $to_message ); |
|
799 | - $sitefromEmail = get_option( 'site_email' ); |
|
798 | + $to_message = nl2br($to_message); |
|
799 | + $sitefromEmail = get_option('site_email'); |
|
800 | 800 | $sitefromEmailName = get_site_emailName(); |
801 | - $productlink = get_permalink( $post_id ); |
|
801 | + $productlink = get_permalink($post_id); |
|
802 | 802 | |
803 | 803 | $user_login = ''; |
804 | - if ( $user_id > 0 && $user_info = get_userdata( $user_id ) ) { |
|
804 | + if ($user_id > 0 && $user_info = get_userdata($user_id)) { |
|
805 | 805 | $user_login = $user_info->user_login; |
806 | 806 | } |
807 | 807 | |
808 | 808 | $posted_date = ''; |
809 | 809 | $listingLink = ''; |
810 | 810 | |
811 | - $post_info = get_post( $post_id ); |
|
811 | + $post_info = get_post($post_id); |
|
812 | 812 | |
813 | - if ( $post_info ) { |
|
813 | + if ($post_info) { |
|
814 | 814 | $posted_date = $post_info->post_date; |
815 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
815 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
816 | 816 | } |
817 | 817 | $siteurl = home_url(); |
818 | - $siteurl_link = '<a href="' . $siteurl . '">' . $siteurl . '</a>'; |
|
818 | + $siteurl_link = '<a href="'.$siteurl.'">'.$siteurl.'</a>'; |
|
819 | 819 | $loginurl = geodir_login_url(); |
820 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
820 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
821 | 821 | |
822 | - $post_author_id = ! empty( $post_info ) ? $post_info->post_author : 0; |
|
823 | - $post_author_data = $post_author_id ? get_userdata( $post_author_id ) : NULL; |
|
824 | - $post_author_name = geodir_get_client_name( $post_author_id ); |
|
825 | - $post_author_email = !empty( $post_author_data->user_email ) ? $post_author_data->user_email : ''; |
|
826 | - $current_date = date_i18n( 'Y-m-d H:i:s', current_time( 'timestamp' ) ); |
|
827 | - |
|
828 | - if ( $fromEmail == '' ) { |
|
829 | - $fromEmail = get_option( 'site_email' ); |
|
822 | + $post_author_id = !empty($post_info) ? $post_info->post_author : 0; |
|
823 | + $post_author_data = $post_author_id ? get_userdata($post_author_id) : NULL; |
|
824 | + $post_author_name = geodir_get_client_name($post_author_id); |
|
825 | + $post_author_email = !empty($post_author_data->user_email) ? $post_author_data->user_email : ''; |
|
826 | + $current_date = date_i18n('Y-m-d H:i:s', current_time('timestamp')); |
|
827 | + |
|
828 | + if ($fromEmail == '') { |
|
829 | + $fromEmail = get_option('site_email'); |
|
830 | 830 | } |
831 | 831 | |
832 | - if ( $fromEmailName == '' ) { |
|
833 | - $fromEmailName = get_option( 'site_email_name' ); |
|
832 | + if ($fromEmailName == '') { |
|
833 | + $fromEmailName = get_option('site_email_name'); |
|
834 | 834 | } |
835 | 835 | |
836 | - $search_array = array( |
|
836 | + $search_array = array( |
|
837 | 837 | '[#listing_link#]', |
838 | 838 | '[#site_name_url#]', |
839 | 839 | '[#post_id#]', |
@@ -875,7 +875,7 @@ discard block |
||
875 | 875 | $post_author_email, |
876 | 876 | $current_date, |
877 | 877 | ); |
878 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
878 | + $message = str_replace($search_array, $replace_array, $message); |
|
879 | 879 | |
880 | 880 | $search_array = array( |
881 | 881 | '[#listing_link#]', |
@@ -913,12 +913,12 @@ discard block |
||
913 | 913 | $post_author_email, |
914 | 914 | $current_date |
915 | 915 | ); |
916 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
916 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
917 | 917 | |
918 | - $headers = array(); |
|
918 | + $headers = array(); |
|
919 | 919 | $headers[] = 'Content-type: text/html; charset=UTF-8'; |
920 | - $headers[] = "Reply-To: " . $fromEmail; |
|
921 | - $headers[] = 'From: ' . $sitefromEmailName . ' <' . $sitefromEmail . '>'; |
|
920 | + $headers[] = "Reply-To: ".$fromEmail; |
|
921 | + $headers[] = 'From: '.$sitefromEmailName.' <'.$sitefromEmail.'>'; |
|
922 | 922 | |
923 | 923 | $to = $toEmail; |
924 | 924 | |
@@ -940,7 +940,7 @@ discard block |
||
940 | 940 | * @param string $post_id The post ID. |
941 | 941 | * @param string $user_id The user ID. |
942 | 942 | */ |
943 | - $to = apply_filters( 'geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
943 | + $to = apply_filters('geodir_sendEmail_to', $to, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
944 | 944 | /** |
945 | 945 | * Filter the client email subject. |
946 | 946 | * |
@@ -959,7 +959,7 @@ discard block |
||
959 | 959 | * @param string $post_id The post ID. |
960 | 960 | * @param string $user_id The user ID. |
961 | 961 | */ |
962 | - $subject = apply_filters( 'geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
962 | + $subject = apply_filters('geodir_sendEmail_subject', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
963 | 963 | /** |
964 | 964 | * Filter the client email message. |
965 | 965 | * |
@@ -978,7 +978,7 @@ discard block |
||
978 | 978 | * @param string $post_id The post ID. |
979 | 979 | * @param string $user_id The user ID. |
980 | 980 | */ |
981 | - $message = apply_filters( 'geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
981 | + $message = apply_filters('geodir_sendEmail_message', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
982 | 982 | /** |
983 | 983 | * Filter the client email headers. |
984 | 984 | * |
@@ -997,39 +997,39 @@ discard block |
||
997 | 997 | * @param string $post_id The post ID. |
998 | 998 | * @param string $user_id The user ID. |
999 | 999 | */ |
1000 | - $headers = apply_filters( 'geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
1000 | + $headers = apply_filters('geodir_sendEmail_headers', $headers, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
1001 | 1001 | |
1002 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
1002 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
1003 | 1003 | |
1004 | - if ( ! $sent ) { |
|
1005 | - if ( is_array( $to ) ) { |
|
1006 | - $to = implode( ',', $to ); |
|
1004 | + if (!$sent) { |
|
1005 | + if (is_array($to)) { |
|
1006 | + $to = implode(',', $to); |
|
1007 | 1007 | } |
1008 | 1008 | $log_message = sprintf( |
1009 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
1009 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'), |
|
1010 | 1010 | $message_type, |
1011 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
1011 | + date_i18n('F j Y H:i:s', current_time('timestamp')), |
|
1012 | 1012 | $to, |
1013 | 1013 | $subject |
1014 | 1014 | ); |
1015 | - geodir_error_log( $log_message ); |
|
1015 | + geodir_error_log($log_message); |
|
1016 | 1016 | } |
1017 | 1017 | |
1018 | 1018 | ///////// ADMIN BCC EMIALS |
1019 | - $adminEmail = get_bloginfo( 'admin_email' ); |
|
1019 | + $adminEmail = get_bloginfo('admin_email'); |
|
1020 | 1020 | $to = $adminEmail; |
1021 | 1021 | |
1022 | 1022 | $admin_bcc = false; |
1023 | - if ( $message_type == 'registration' ) { |
|
1024 | - $message_raw = explode( __( "Password:", 'geodirectory' ), $message ); |
|
1025 | - $message_raw2 = explode( "</p>", $message_raw[1], 2 ); |
|
1026 | - $message = $message_raw[0] . __( 'Password:', 'geodirectory' ) . ' **********</p>' . $message_raw2[1]; |
|
1023 | + if ($message_type == 'registration') { |
|
1024 | + $message_raw = explode(__("Password:", 'geodirectory'), $message); |
|
1025 | + $message_raw2 = explode("</p>", $message_raw[1], 2); |
|
1026 | + $message = $message_raw[0].__('Password:', 'geodirectory').' **********</p>'.$message_raw2[1]; |
|
1027 | 1027 | } |
1028 | - if ( $message_type == 'post_submit' ) { |
|
1029 | - $subject = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_subject_admin' ) ), 'geodirectory' ); |
|
1030 | - $message = __( stripslashes_deep( get_option( 'geodir_post_submited_success_email_content_admin' ) ), 'geodirectory' ); |
|
1028 | + if ($message_type == 'post_submit') { |
|
1029 | + $subject = __(stripslashes_deep(get_option('geodir_post_submited_success_email_subject_admin')), 'geodirectory'); |
|
1030 | + $message = __(stripslashes_deep(get_option('geodir_post_submited_success_email_content_admin')), 'geodirectory'); |
|
1031 | 1031 | |
1032 | - $search_array = array( |
|
1032 | + $search_array = array( |
|
1033 | 1033 | '[#listing_link#]', |
1034 | 1034 | '[#site_name_url#]', |
1035 | 1035 | '[#post_id#]', |
@@ -1065,7 +1065,7 @@ discard block |
||
1065 | 1065 | $user_login, |
1066 | 1066 | $post_author_email, |
1067 | 1067 | ); |
1068 | - $message = str_replace( $search_array, $replace_array, $message ); |
|
1068 | + $message = str_replace($search_array, $replace_array, $message); |
|
1069 | 1069 | |
1070 | 1070 | $search_array = array( |
1071 | 1071 | '[#listing_link#]', |
@@ -1097,26 +1097,26 @@ discard block |
||
1097 | 1097 | $user_login, |
1098 | 1098 | $post_author_email, |
1099 | 1099 | ); |
1100 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
1100 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
1101 | 1101 | |
1102 | 1102 | $subject .= ' - ADMIN BCC COPY'; |
1103 | 1103 | $admin_bcc = true; |
1104 | 1104 | |
1105 | - } elseif ( $message_type == 'registration' && get_option( 'geodir_bcc_new_user' ) ) { |
|
1105 | + } elseif ($message_type == 'registration' && get_option('geodir_bcc_new_user')) { |
|
1106 | 1106 | $subject .= ' - ADMIN BCC COPY'; |
1107 | 1107 | $admin_bcc = true; |
1108 | - } elseif ( $message_type == 'send_friend' && get_option( 'geodir_bcc_friend' ) ) { |
|
1108 | + } elseif ($message_type == 'send_friend' && get_option('geodir_bcc_friend')) { |
|
1109 | 1109 | $subject .= ' - ADMIN BCC COPY'; |
1110 | 1110 | $admin_bcc = true; |
1111 | - } elseif ( $message_type == 'send_enquiry' && get_option( 'geodir_bcc_enquiry' ) ) { |
|
1111 | + } elseif ($message_type == 'send_enquiry' && get_option('geodir_bcc_enquiry')) { |
|
1112 | 1112 | $subject .= ' - ADMIN BCC COPY'; |
1113 | 1113 | $admin_bcc = true; |
1114 | - } elseif ( $message_type == 'listing_published' && get_option( 'geodir_bcc_listing_published' ) ) { |
|
1114 | + } elseif ($message_type == 'listing_published' && get_option('geodir_bcc_listing_published')) { |
|
1115 | 1115 | $subject .= ' - ADMIN BCC COPY'; |
1116 | 1116 | $admin_bcc = true; |
1117 | 1117 | } |
1118 | 1118 | |
1119 | - if ( $admin_bcc === true ) { |
|
1119 | + if ($admin_bcc === true) { |
|
1120 | 1120 | |
1121 | 1121 | /** |
1122 | 1122 | * Filter the client email subject. |
@@ -1136,7 +1136,7 @@ discard block |
||
1136 | 1136 | * @param string $post_id The post ID. |
1137 | 1137 | * @param string $user_id The user ID. |
1138 | 1138 | */ |
1139 | - $subject = apply_filters( 'geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
1139 | + $subject = apply_filters('geodir_sendEmail_subject_admin_bcc', $subject, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
1140 | 1140 | /** |
1141 | 1141 | * Filter the client email message. |
1142 | 1142 | * |
@@ -1155,23 +1155,23 @@ discard block |
||
1155 | 1155 | * @param string $post_id The post ID. |
1156 | 1156 | * @param string $user_id The user ID. |
1157 | 1157 | */ |
1158 | - $message = apply_filters( 'geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id ); |
|
1158 | + $message = apply_filters('geodir_sendEmail_message_admin_bcc', $message, $fromEmail, $fromEmailName, $toEmail, $toEmailName, $to_subject, $to_message, $extra, $message_type, $post_id, $user_id); |
|
1159 | 1159 | |
1160 | 1160 | |
1161 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
1161 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
1162 | 1162 | |
1163 | - if ( ! $sent ) { |
|
1164 | - if ( is_array( $to ) ) { |
|
1165 | - $to = implode( ',', $to ); |
|
1163 | + if (!$sent) { |
|
1164 | + if (is_array($to)) { |
|
1165 | + $to = implode(',', $to); |
|
1166 | 1166 | } |
1167 | 1167 | $log_message = sprintf( |
1168 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
1168 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'), |
|
1169 | 1169 | $message_type, |
1170 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
1170 | + date_i18n('F j Y H:i:s', current_time('timestamp')), |
|
1171 | 1171 | $to, |
1172 | 1172 | $subject |
1173 | 1173 | ); |
1174 | - geodir_error_log( $log_message ); |
|
1174 | + geodir_error_log($log_message); |
|
1175 | 1175 | } |
1176 | 1176 | } |
1177 | 1177 | |
@@ -1187,49 +1187,49 @@ discard block |
||
1187 | 1187 | */ |
1188 | 1188 | function geodir_taxonomy_breadcrumb() { |
1189 | 1189 | |
1190 | - $term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) ); |
|
1190 | + $term = get_term_by('slug', get_query_var('term'), get_query_var('taxonomy')); |
|
1191 | 1191 | $parent = $term->parent; |
1192 | 1192 | |
1193 | - while ( $parent ): |
|
1193 | + while ($parent): |
|
1194 | 1194 | $parents[] = $parent; |
1195 | - $new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
1195 | + $new_parent = get_term_by('id', $parent, get_query_var('taxonomy')); |
|
1196 | 1196 | $parent = $new_parent->parent; |
1197 | 1197 | endwhile; |
1198 | 1198 | |
1199 | - if ( ! empty( $parents ) ): |
|
1200 | - $parents = array_reverse( $parents ); |
|
1199 | + if (!empty($parents)): |
|
1200 | + $parents = array_reverse($parents); |
|
1201 | 1201 | |
1202 | - foreach ( $parents as $parent ): |
|
1203 | - $item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) ); |
|
1204 | - $url = get_term_link( $item, get_query_var( 'taxonomy' ) ); |
|
1205 | - echo '<li> > <a href="' . $url . '">' . $item->name . '</a></li>'; |
|
1202 | + foreach ($parents as $parent): |
|
1203 | + $item = get_term_by('id', $parent, get_query_var('taxonomy')); |
|
1204 | + $url = get_term_link($item, get_query_var('taxonomy')); |
|
1205 | + echo '<li> > <a href="'.$url.'">'.$item->name.'</a></li>'; |
|
1206 | 1206 | endforeach; |
1207 | 1207 | |
1208 | 1208 | endif; |
1209 | 1209 | |
1210 | - echo '<li> > ' . $term->name . '</li>'; |
|
1210 | + echo '<li> > '.$term->name.'</li>'; |
|
1211 | 1211 | } |
1212 | 1212 | |
1213 | -function geodir_wpml_post_type_archive_link($link, $post_type){ |
|
1213 | +function geodir_wpml_post_type_archive_link($link, $post_type) { |
|
1214 | 1214 | if (function_exists('icl_object_id')) { |
1215 | - $post_types = get_option( 'geodir_post_types' ); |
|
1216 | - $slug = $post_types[ $post_type ]['rewrite']['slug']; |
|
1215 | + $post_types = get_option('geodir_post_types'); |
|
1216 | + $slug = $post_types[$post_type]['rewrite']['slug']; |
|
1217 | 1217 | |
1218 | 1218 | // Alter the CPT slug if WPML is set to do so |
1219 | - if ( function_exists( 'icl_object_id' ) ) { |
|
1220 | - if ( gd_wpml_slug_translation_turned_on( $post_type ) && $language_code = gd_wpml_get_lang_from_url( $link) ) { |
|
1219 | + if (function_exists('icl_object_id')) { |
|
1220 | + if (gd_wpml_slug_translation_turned_on($post_type) && $language_code = gd_wpml_get_lang_from_url($link)) { |
|
1221 | 1221 | |
1222 | 1222 | $org_slug = $slug; |
1223 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
1223 | + $slug = apply_filters('wpml_translate_single_string', |
|
1224 | 1224 | $slug, |
1225 | 1225 | 'WordPress', |
1226 | - 'URL slug: ' . $slug, |
|
1227 | - $language_code ); |
|
1226 | + 'URL slug: '.$slug, |
|
1227 | + $language_code); |
|
1228 | 1228 | |
1229 | - if ( ! $slug ) { |
|
1229 | + if (!$slug) { |
|
1230 | 1230 | $slug = $org_slug; |
1231 | 1231 | } else { |
1232 | - $link = str_replace( $org_slug, $slug, $link ); |
|
1232 | + $link = str_replace($org_slug, $slug, $link); |
|
1233 | 1233 | } |
1234 | 1234 | } |
1235 | 1235 | } |
@@ -1237,7 +1237,7 @@ discard block |
||
1237 | 1237 | |
1238 | 1238 | return $link; |
1239 | 1239 | } |
1240 | -add_filter( 'post_type_archive_link','geodir_wpml_post_type_archive_link', 1000, 2); |
|
1240 | +add_filter('post_type_archive_link', 'geodir_wpml_post_type_archive_link', 1000, 2); |
|
1241 | 1241 | |
1242 | 1242 | /** |
1243 | 1243 | * Main function that generates breadcrumb for all pages. |
@@ -1258,9 +1258,9 @@ discard block |
||
1258 | 1258 | * |
1259 | 1259 | * @since 1.0.0 |
1260 | 1260 | */ |
1261 | - $separator = apply_filters( 'geodir_breadcrumb_separator', ' > ' ); |
|
1261 | + $separator = apply_filters('geodir_breadcrumb_separator', ' > '); |
|
1262 | 1262 | |
1263 | - if ( ! geodir_is_page( 'home' ) ) { |
|
1263 | + if (!geodir_is_page('home')) { |
|
1264 | 1264 | $breadcrumb = ''; |
1265 | 1265 | $url_categoris = ''; |
1266 | 1266 | $breadcrumb .= '<div class="geodir-breadcrumb clearfix"><ul id="breadcrumbs">'; |
@@ -1269,167 +1269,167 @@ discard block |
||
1269 | 1269 | * |
1270 | 1270 | * @since 1.0.0 |
1271 | 1271 | */ |
1272 | - $breadcrumb .= '<li>' . apply_filters( 'geodir_breadcrumb_first_link', '<a href="' . home_url() . '">' . __( 'Home', 'geodirectory' ) . '</a>' ) . '</li>'; |
|
1272 | + $breadcrumb .= '<li>'.apply_filters('geodir_breadcrumb_first_link', '<a href="'.home_url().'">'.__('Home', 'geodirectory').'</a>').'</li>'; |
|
1273 | 1273 | |
1274 | 1274 | $gd_post_type = geodir_get_current_posttype(); |
1275 | - $post_type_info = get_post_type_object( $gd_post_type ); |
|
1275 | + $post_type_info = get_post_type_object($gd_post_type); |
|
1276 | 1276 | |
1277 | - remove_filter( 'post_type_archive_link', 'geodir_get_posttype_link' ); |
|
1277 | + remove_filter('post_type_archive_link', 'geodir_get_posttype_link'); |
|
1278 | 1278 | |
1279 | - $listing_link = get_post_type_archive_link( $gd_post_type ); |
|
1279 | + $listing_link = get_post_type_archive_link($gd_post_type); |
|
1280 | 1280 | |
1281 | - add_filter( 'post_type_archive_link', 'geodir_get_posttype_link', 10, 2 ); |
|
1282 | - $listing_link = rtrim( $listing_link, '/' ); |
|
1281 | + add_filter('post_type_archive_link', 'geodir_get_posttype_link', 10, 2); |
|
1282 | + $listing_link = rtrim($listing_link, '/'); |
|
1283 | 1283 | $listing_link .= '/'; |
1284 | 1284 | |
1285 | 1285 | $post_type_for_location_link = $listing_link; |
1286 | - $location_terms = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
1286 | + $location_terms = geodir_get_current_location_terms('query_vars', $gd_post_type); |
|
1287 | 1287 | |
1288 | 1288 | global $wp, $gd_session; |
1289 | 1289 | $location_link = $post_type_for_location_link; |
1290 | 1290 | |
1291 | - if ( geodir_is_page( 'detail' ) || geodir_is_page( 'listing' ) ) { |
|
1291 | + if (geodir_is_page('detail') || geodir_is_page('listing')) { |
|
1292 | 1292 | global $post; |
1293 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
1294 | - $neighbourhood_active = $location_manager && get_option( 'location_neighbourhoods' ) ? true : false; |
|
1293 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false; |
|
1294 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false; |
|
1295 | 1295 | |
1296 | - if ( geodir_is_page( 'detail' ) && isset( $post->country_slug ) ) { |
|
1296 | + if (geodir_is_page('detail') && isset($post->country_slug)) { |
|
1297 | 1297 | $location_terms = array( |
1298 | 1298 | 'gd_country' => $post->country_slug, |
1299 | 1299 | 'gd_region' => $post->region_slug, |
1300 | 1300 | 'gd_city' => $post->city_slug |
1301 | 1301 | ); |
1302 | 1302 | |
1303 | - if ( $neighbourhood_active && ! empty( $location_terms['gd_city'] ) && $gd_ses_neighbourhood = $gd_session->get( 'gd_neighbourhood' ) ) { |
|
1303 | + if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) { |
|
1304 | 1304 | $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
1305 | 1305 | } |
1306 | 1306 | } |
1307 | 1307 | |
1308 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
1308 | + $geodir_show_location_url = get_option('geodir_show_location_url'); |
|
1309 | 1309 | |
1310 | 1310 | $hide_url_part = array(); |
1311 | - if ( $location_manager ) { |
|
1312 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
1313 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
1314 | - |
|
1315 | - if ( $hide_region_part && $hide_country_part ) { |
|
1316 | - $hide_url_part = array( 'gd_country', 'gd_region' ); |
|
1317 | - } else if ( $hide_region_part && ! $hide_country_part ) { |
|
1318 | - $hide_url_part = array( 'gd_region' ); |
|
1319 | - } else if ( ! $hide_region_part && $hide_country_part ) { |
|
1320 | - $hide_url_part = array( 'gd_country' ); |
|
1311 | + if ($location_manager) { |
|
1312 | + $hide_country_part = get_option('geodir_location_hide_country_part'); |
|
1313 | + $hide_region_part = get_option('geodir_location_hide_region_part'); |
|
1314 | + |
|
1315 | + if ($hide_region_part && $hide_country_part) { |
|
1316 | + $hide_url_part = array('gd_country', 'gd_region'); |
|
1317 | + } else if ($hide_region_part && !$hide_country_part) { |
|
1318 | + $hide_url_part = array('gd_region'); |
|
1319 | + } else if (!$hide_region_part && $hide_country_part) { |
|
1320 | + $hide_url_part = array('gd_country'); |
|
1321 | 1321 | } |
1322 | 1322 | } |
1323 | 1323 | |
1324 | 1324 | $hide_text_part = array(); |
1325 | - if ( $geodir_show_location_url == 'country_city' ) { |
|
1326 | - $hide_text_part = array( 'gd_region' ); |
|
1325 | + if ($geodir_show_location_url == 'country_city') { |
|
1326 | + $hide_text_part = array('gd_region'); |
|
1327 | 1327 | |
1328 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) { |
|
1329 | - unset( $location_terms['gd_region'] ); |
|
1328 | + if (isset($location_terms['gd_region']) && !$location_manager) { |
|
1329 | + unset($location_terms['gd_region']); |
|
1330 | 1330 | } |
1331 | - } else if ( $geodir_show_location_url == 'region_city' ) { |
|
1332 | - $hide_text_part = array( 'gd_country' ); |
|
1331 | + } else if ($geodir_show_location_url == 'region_city') { |
|
1332 | + $hide_text_part = array('gd_country'); |
|
1333 | 1333 | |
1334 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) { |
|
1335 | - unset( $location_terms['gd_country'] ); |
|
1334 | + if (isset($location_terms['gd_country']) && !$location_manager) { |
|
1335 | + unset($location_terms['gd_country']); |
|
1336 | 1336 | } |
1337 | - } else if ( $geodir_show_location_url == 'city' ) { |
|
1338 | - $hide_text_part = array( 'gd_country', 'gd_region' ); |
|
1337 | + } else if ($geodir_show_location_url == 'city') { |
|
1338 | + $hide_text_part = array('gd_country', 'gd_region'); |
|
1339 | 1339 | |
1340 | - if ( isset( $location_terms['gd_country'] ) && ! $location_manager ) { |
|
1341 | - unset( $location_terms['gd_country'] ); |
|
1340 | + if (isset($location_terms['gd_country']) && !$location_manager) { |
|
1341 | + unset($location_terms['gd_country']); |
|
1342 | 1342 | } |
1343 | - if ( isset( $location_terms['gd_region'] ) && ! $location_manager ) { |
|
1344 | - unset( $location_terms['gd_region'] ); |
|
1343 | + if (isset($location_terms['gd_region']) && !$location_manager) { |
|
1344 | + unset($location_terms['gd_region']); |
|
1345 | 1345 | } |
1346 | 1346 | } |
1347 | 1347 | |
1348 | 1348 | $is_location_last = ''; |
1349 | 1349 | $is_taxonomy_last = ''; |
1350 | 1350 | $breadcrumb .= '<li>'; |
1351 | - if ( get_query_var( $gd_post_type . 'category' ) ) { |
|
1352 | - $gd_taxonomy = $gd_post_type . 'category'; |
|
1353 | - } elseif ( get_query_var( $gd_post_type . '_tags' ) ) { |
|
1354 | - $gd_taxonomy = $gd_post_type . '_tags'; |
|
1351 | + if (get_query_var($gd_post_type.'category')) { |
|
1352 | + $gd_taxonomy = $gd_post_type.'category'; |
|
1353 | + } elseif (get_query_var($gd_post_type.'_tags')) { |
|
1354 | + $gd_taxonomy = $gd_post_type.'_tags'; |
|
1355 | 1355 | } |
1356 | 1356 | |
1357 | - $breadcrumb .= $separator . '<a href="' . $listing_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
1358 | - if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) { |
|
1357 | + $breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
1358 | + if (!empty($gd_taxonomy) || geodir_is_page('detail')) { |
|
1359 | 1359 | $is_location_last = false; |
1360 | 1360 | } else { |
1361 | 1361 | $is_location_last = true; |
1362 | 1362 | } |
1363 | 1363 | |
1364 | - if ( ! empty( $gd_taxonomy ) && geodir_is_page( 'listing' ) ) { |
|
1364 | + if (!empty($gd_taxonomy) && geodir_is_page('listing')) { |
|
1365 | 1365 | $is_taxonomy_last = true; |
1366 | 1366 | } else { |
1367 | 1367 | $is_taxonomy_last = false; |
1368 | 1368 | } |
1369 | 1369 | |
1370 | - if ( ! empty( $location_terms ) ) { |
|
1371 | - $geodir_get_locations = function_exists( 'get_actual_location_name' ) ? true : false; |
|
1370 | + if (!empty($location_terms)) { |
|
1371 | + $geodir_get_locations = function_exists('get_actual_location_name') ? true : false; |
|
1372 | 1372 | |
1373 | - foreach ( $location_terms as $key => $location_term ) { |
|
1374 | - if ( $location_term != '' ) { |
|
1375 | - if ( ! empty( $hide_url_part ) && in_array( $key, $hide_url_part ) ) { // Hide location part from url & breadcrumb. |
|
1373 | + foreach ($location_terms as $key => $location_term) { |
|
1374 | + if ($location_term != '') { |
|
1375 | + if (!empty($hide_url_part) && in_array($key, $hide_url_part)) { // Hide location part from url & breadcrumb. |
|
1376 | 1376 | continue; |
1377 | 1377 | } |
1378 | 1378 | |
1379 | - $gd_location_link_text = preg_replace( '/-(\d+)$/', '', $location_term ); |
|
1380 | - $gd_location_link_text = preg_replace( '/[_-]/', ' ', $gd_location_link_text ); |
|
1381 | - $gd_location_link_text = ucfirst( $gd_location_link_text ); |
|
1379 | + $gd_location_link_text = preg_replace('/-(\d+)$/', '', $location_term); |
|
1380 | + $gd_location_link_text = preg_replace('/[_-]/', ' ', $gd_location_link_text); |
|
1381 | + $gd_location_link_text = ucfirst($gd_location_link_text); |
|
1382 | 1382 | |
1383 | 1383 | $location_term_actual_country = ''; |
1384 | 1384 | $location_term_actual_region = ''; |
1385 | 1385 | $location_term_actual_city = ''; |
1386 | 1386 | $location_term_actual_neighbourhood = ''; |
1387 | - if ( $geodir_get_locations ) { |
|
1388 | - if ( $key == 'gd_country' ) { |
|
1389 | - $location_term_actual_country = get_actual_location_name( 'country', $location_term, true ); |
|
1390 | - } else if ( $key == 'gd_region' ) { |
|
1391 | - $location_term_actual_region = get_actual_location_name( 'region', $location_term, true ); |
|
1392 | - } else if ( $key == 'gd_city' ) { |
|
1393 | - $location_term_actual_city = get_actual_location_name( 'city', $location_term, true ); |
|
1394 | - } else if ( $key == 'gd_neighbourhood' ) { |
|
1395 | - $location_term_actual_neighbourhood = get_actual_location_name( 'neighbourhood', $location_term, true ); |
|
1387 | + if ($geodir_get_locations) { |
|
1388 | + if ($key == 'gd_country') { |
|
1389 | + $location_term_actual_country = get_actual_location_name('country', $location_term, true); |
|
1390 | + } else if ($key == 'gd_region') { |
|
1391 | + $location_term_actual_region = get_actual_location_name('region', $location_term, true); |
|
1392 | + } else if ($key == 'gd_city') { |
|
1393 | + $location_term_actual_city = get_actual_location_name('city', $location_term, true); |
|
1394 | + } else if ($key == 'gd_neighbourhood') { |
|
1395 | + $location_term_actual_neighbourhood = get_actual_location_name('neighbourhood', $location_term, true); |
|
1396 | 1396 | } |
1397 | 1397 | } else { |
1398 | 1398 | $location_info = geodir_get_location(); |
1399 | 1399 | |
1400 | - if ( ! empty( $location_info ) && isset( $location_info->location_id ) ) { |
|
1401 | - if ( $key == 'gd_country' ) { |
|
1402 | - $location_term_actual_country = __( $location_info->country, 'geodirectory' ); |
|
1403 | - } else if ( $key == 'gd_region' ) { |
|
1404 | - $location_term_actual_region = __( $location_info->region, 'geodirectory' ); |
|
1405 | - } else if ( $key == 'gd_city' ) { |
|
1406 | - $location_term_actual_city = __( $location_info->city, 'geodirectory' ); |
|
1400 | + if (!empty($location_info) && isset($location_info->location_id)) { |
|
1401 | + if ($key == 'gd_country') { |
|
1402 | + $location_term_actual_country = __($location_info->country, 'geodirectory'); |
|
1403 | + } else if ($key == 'gd_region') { |
|
1404 | + $location_term_actual_region = __($location_info->region, 'geodirectory'); |
|
1405 | + } else if ($key == 'gd_city') { |
|
1406 | + $location_term_actual_city = __($location_info->city, 'geodirectory'); |
|
1407 | 1407 | } |
1408 | 1408 | } |
1409 | 1409 | } |
1410 | 1410 | |
1411 | - if ( $is_location_last && $key == 'gd_country' && ! ( isset( $location_terms['gd_region'] ) && $location_terms['gd_region'] != '' ) && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) { |
|
1412 | - $breadcrumb .= $location_term_actual_country != '' ? $separator . $location_term_actual_country : $separator . $gd_location_link_text; |
|
1413 | - } else if ( $is_location_last && $key == 'gd_region' && ! ( isset( $location_terms['gd_city'] ) && $location_terms['gd_city'] != '' ) ) { |
|
1414 | - $breadcrumb .= $location_term_actual_region != '' ? $separator . $location_term_actual_region : $separator . $gd_location_link_text; |
|
1415 | - } else if ( $is_location_last && $key == 'gd_city' && empty( $location_terms['gd_neighbourhood'] ) ) { |
|
1416 | - $breadcrumb .= $location_term_actual_city != '' ? $separator . $location_term_actual_city : $separator . $gd_location_link_text; |
|
1417 | - } else if ( $is_location_last && $key == 'gd_neighbourhood' ) { |
|
1418 | - $breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator . $location_term_actual_neighbourhood : $separator . $gd_location_link_text; |
|
1411 | + if ($is_location_last && $key == 'gd_country' && !(isset($location_terms['gd_region']) && $location_terms['gd_region'] != '') && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) { |
|
1412 | + $breadcrumb .= $location_term_actual_country != '' ? $separator.$location_term_actual_country : $separator.$gd_location_link_text; |
|
1413 | + } else if ($is_location_last && $key == 'gd_region' && !(isset($location_terms['gd_city']) && $location_terms['gd_city'] != '')) { |
|
1414 | + $breadcrumb .= $location_term_actual_region != '' ? $separator.$location_term_actual_region : $separator.$gd_location_link_text; |
|
1415 | + } else if ($is_location_last && $key == 'gd_city' && empty($location_terms['gd_neighbourhood'])) { |
|
1416 | + $breadcrumb .= $location_term_actual_city != '' ? $separator.$location_term_actual_city : $separator.$gd_location_link_text; |
|
1417 | + } else if ($is_location_last && $key == 'gd_neighbourhood') { |
|
1418 | + $breadcrumb .= $location_term_actual_neighbourhood != '' ? $separator.$location_term_actual_neighbourhood : $separator.$gd_location_link_text; |
|
1419 | 1419 | } else { |
1420 | - if ( get_option( 'permalink_structure' ) != '' ) { |
|
1421 | - $location_link .= $location_term . '/'; |
|
1420 | + if (get_option('permalink_structure') != '') { |
|
1421 | + $location_link .= $location_term.'/'; |
|
1422 | 1422 | } else { |
1423 | - $location_link .= "&$key=" . $location_term; |
|
1423 | + $location_link .= "&$key=".$location_term; |
|
1424 | 1424 | } |
1425 | 1425 | |
1426 | - if ( $key == 'gd_country' && $location_term_actual_country != '' ) { |
|
1426 | + if ($key == 'gd_country' && $location_term_actual_country != '') { |
|
1427 | 1427 | $gd_location_link_text = $location_term_actual_country; |
1428 | - } else if ( $key == 'gd_region' && $location_term_actual_region != '' ) { |
|
1428 | + } else if ($key == 'gd_region' && $location_term_actual_region != '') { |
|
1429 | 1429 | $gd_location_link_text = $location_term_actual_region; |
1430 | - } else if ( $key == 'gd_city' && $location_term_actual_city != '' ) { |
|
1430 | + } else if ($key == 'gd_city' && $location_term_actual_city != '') { |
|
1431 | 1431 | $gd_location_link_text = $location_term_actual_city; |
1432 | - } else if ( $key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '' ) { |
|
1432 | + } else if ($key == 'gd_neighbourhood' && $location_term_actual_neighbourhood != '') { |
|
1433 | 1433 | $gd_location_link_text = $location_term_actual_neighbourhood; |
1434 | 1434 | } |
1435 | 1435 | |
@@ -1439,76 +1439,76 @@ discard block |
||
1439 | 1439 | } |
1440 | 1440 | */ |
1441 | 1441 | |
1442 | - $breadcrumb .= $separator . '<a href="' . $location_link . '">' . $gd_location_link_text . '</a>'; |
|
1442 | + $breadcrumb .= $separator.'<a href="'.$location_link.'">'.$gd_location_link_text.'</a>'; |
|
1443 | 1443 | } |
1444 | 1444 | } |
1445 | 1445 | } |
1446 | 1446 | } |
1447 | 1447 | |
1448 | - if ( ! empty( $gd_taxonomy ) ) { |
|
1448 | + if (!empty($gd_taxonomy)) { |
|
1449 | 1449 | $term_index = 1; |
1450 | 1450 | |
1451 | 1451 | //if(get_option('geodir_add_categories_url')) |
1452 | 1452 | { |
1453 | - if ( get_query_var( $gd_post_type . '_tags' ) ) { |
|
1454 | - $cat_link = $listing_link . 'tags/'; |
|
1453 | + if (get_query_var($gd_post_type.'_tags')) { |
|
1454 | + $cat_link = $listing_link.'tags/'; |
|
1455 | 1455 | } else { |
1456 | 1456 | $cat_link = $listing_link; |
1457 | 1457 | } |
1458 | 1458 | |
1459 | - foreach ( $location_terms as $key => $location_term ) { |
|
1460 | - if ( $location_manager && in_array( $key, $hide_url_part ) ) { |
|
1459 | + foreach ($location_terms as $key => $location_term) { |
|
1460 | + if ($location_manager && in_array($key, $hide_url_part)) { |
|
1461 | 1461 | continue; |
1462 | 1462 | } |
1463 | 1463 | |
1464 | - if ( $location_term != '' ) { |
|
1465 | - if ( get_option( 'permalink_structure' ) != '' ) { |
|
1466 | - $cat_link .= $location_term . '/'; |
|
1464 | + if ($location_term != '') { |
|
1465 | + if (get_option('permalink_structure') != '') { |
|
1466 | + $cat_link .= $location_term.'/'; |
|
1467 | 1467 | } |
1468 | 1468 | } |
1469 | 1469 | } |
1470 | 1470 | |
1471 | - $term_array = explode( "/", trim( $wp_query->query[ $gd_taxonomy ], "/" ) ); |
|
1472 | - foreach ( $term_array as $term ) { |
|
1473 | - $term_link_text = preg_replace( '/-(\d+)$/', '', $term ); |
|
1474 | - $term_link_text = preg_replace( '/[_-]/', ' ', $term_link_text ); |
|
1471 | + $term_array = explode("/", trim($wp_query->query[$gd_taxonomy], "/")); |
|
1472 | + foreach ($term_array as $term) { |
|
1473 | + $term_link_text = preg_replace('/-(\d+)$/', '', $term); |
|
1474 | + $term_link_text = preg_replace('/[_-]/', ' ', $term_link_text); |
|
1475 | 1475 | |
1476 | 1476 | // get term actual name |
1477 | - $term_info = get_term_by( 'slug', $term, $gd_taxonomy, 'ARRAY_A' ); |
|
1478 | - if ( ! empty( $term_info ) && isset( $term_info['name'] ) && $term_info['name'] != '' ) { |
|
1479 | - $term_link_text = urldecode( $term_info['name'] ); |
|
1477 | + $term_info = get_term_by('slug', $term, $gd_taxonomy, 'ARRAY_A'); |
|
1478 | + if (!empty($term_info) && isset($term_info['name']) && $term_info['name'] != '') { |
|
1479 | + $term_link_text = urldecode($term_info['name']); |
|
1480 | 1480 | } else { |
1481 | 1481 | continue; |
1482 | 1482 | //$term_link_text = wp_strip_all_tags(geodir_ucwords(urldecode($term_link_text))); |
1483 | 1483 | } |
1484 | 1484 | |
1485 | - if ( $term_index == count( $term_array ) && $is_taxonomy_last ) { |
|
1486 | - $breadcrumb .= $separator . $term_link_text; |
|
1485 | + if ($term_index == count($term_array) && $is_taxonomy_last) { |
|
1486 | + $breadcrumb .= $separator.$term_link_text; |
|
1487 | 1487 | } else { |
1488 | - $cat_link .= $term . '/'; |
|
1489 | - $breadcrumb .= $separator . '<a href="' . $cat_link . '">' . $term_link_text . '</a>'; |
|
1488 | + $cat_link .= $term.'/'; |
|
1489 | + $breadcrumb .= $separator.'<a href="'.$cat_link.'">'.$term_link_text.'</a>'; |
|
1490 | 1490 | } |
1491 | - $term_index ++; |
|
1491 | + $term_index++; |
|
1492 | 1492 | } |
1493 | 1493 | } |
1494 | 1494 | |
1495 | 1495 | |
1496 | 1496 | } |
1497 | 1497 | |
1498 | - if ( geodir_is_page( 'detail' ) ) { |
|
1499 | - $breadcrumb .= $separator . get_the_title(); |
|
1498 | + if (geodir_is_page('detail')) { |
|
1499 | + $breadcrumb .= $separator.get_the_title(); |
|
1500 | 1500 | } |
1501 | 1501 | |
1502 | 1502 | $breadcrumb .= '</li>'; |
1503 | 1503 | |
1504 | 1504 | |
1505 | - } elseif ( geodir_is_page( 'author' ) ) { |
|
1505 | + } elseif (geodir_is_page('author')) { |
|
1506 | 1506 | $user_id = get_current_user_id(); |
1507 | - $author_link = get_author_posts_url( $user_id ); |
|
1508 | - $default_author_link = geodir_getlink( $author_link, array( |
|
1507 | + $author_link = get_author_posts_url($user_id); |
|
1508 | + $default_author_link = geodir_getlink($author_link, array( |
|
1509 | 1509 | 'geodir_dashbord' => 'true', |
1510 | 1510 | 'stype' => 'gd_place' |
1511 | - ), false ); |
|
1511 | + ), false); |
|
1512 | 1512 | |
1513 | 1513 | /** |
1514 | 1514 | * Filter author page link. |
@@ -1518,16 +1518,16 @@ discard block |
||
1518 | 1518 | * @param string $default_author_link Default author link. |
1519 | 1519 | * @param int $user_id Author ID. |
1520 | 1520 | */ |
1521 | - $default_author_link = apply_filters( 'geodir_dashboard_author_link', $default_author_link, $user_id ); |
|
1521 | + $default_author_link = apply_filters('geodir_dashboard_author_link', $default_author_link, $user_id); |
|
1522 | 1522 | |
1523 | 1523 | $breadcrumb .= '<li>'; |
1524 | - $breadcrumb .= $separator . '<a href="' . $default_author_link . '">' . __( 'My Dashboard', 'geodirectory' ) . '</a>'; |
|
1524 | + $breadcrumb .= $separator.'<a href="'.$default_author_link.'">'.__('My Dashboard', 'geodirectory').'</a>'; |
|
1525 | 1525 | |
1526 | - if ( isset( $_REQUEST['list'] ) ) { |
|
1527 | - $author_link = geodir_getlink( $author_link, array( |
|
1526 | + if (isset($_REQUEST['list'])) { |
|
1527 | + $author_link = geodir_getlink($author_link, array( |
|
1528 | 1528 | 'geodir_dashbord' => 'true', |
1529 | 1529 | 'stype' => $_REQUEST['stype'] |
1530 | - ), false ); |
|
1530 | + ), false); |
|
1531 | 1531 | |
1532 | 1532 | /** |
1533 | 1533 | * Filter author page link. |
@@ -1538,61 +1538,61 @@ discard block |
||
1538 | 1538 | * @param int $user_id Author ID. |
1539 | 1539 | * @param string $_REQUEST ['stype'] Post type. |
1540 | 1540 | */ |
1541 | - $author_link = apply_filters( 'geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype'] ); |
|
1541 | + $author_link = apply_filters('geodir_dashboard_author_link', $author_link, $user_id, $_REQUEST['stype']); |
|
1542 | 1542 | |
1543 | - $breadcrumb .= $separator . '<a href="' . $author_link . '">' . __( ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>'; |
|
1544 | - $breadcrumb .= $separator . ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] ); |
|
1543 | + $breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(ucfirst($post_type_info->label), 'geodirectory').'</a>'; |
|
1544 | + $breadcrumb .= $separator.ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']); |
|
1545 | 1545 | } else { |
1546 | - $breadcrumb .= $separator . __( ucfirst( $post_type_info->label ), 'geodirectory' ); |
|
1546 | + $breadcrumb .= $separator.__(ucfirst($post_type_info->label), 'geodirectory'); |
|
1547 | 1547 | } |
1548 | 1548 | |
1549 | 1549 | $breadcrumb .= '</li>'; |
1550 | - } elseif ( is_category() || is_single() ) { |
|
1550 | + } elseif (is_category() || is_single()) { |
|
1551 | 1551 | $category = get_the_category(); |
1552 | - if ( is_category() ) { |
|
1553 | - $breadcrumb .= '<li>' . $separator . $category[0]->cat_name . '</li>'; |
|
1552 | + if (is_category()) { |
|
1553 | + $breadcrumb .= '<li>'.$separator.$category[0]->cat_name.'</li>'; |
|
1554 | 1554 | } |
1555 | - if ( is_single() ) { |
|
1556 | - $breadcrumb .= '<li>' . $separator . '<a href="' . get_category_link( $category[0]->term_id ) . '">' . $category[0]->cat_name . '</a></li>'; |
|
1557 | - $breadcrumb .= '<li>' . $separator . get_the_title() . '</li>'; |
|
1555 | + if (is_single()) { |
|
1556 | + $breadcrumb .= '<li>'.$separator.'<a href="'.get_category_link($category[0]->term_id).'">'.$category[0]->cat_name.'</a></li>'; |
|
1557 | + $breadcrumb .= '<li>'.$separator.get_the_title().'</li>'; |
|
1558 | 1558 | } |
1559 | 1559 | /* End of my version ##################################################### */ |
1560 | - } else if ( is_page() ) { |
|
1560 | + } else if (is_page()) { |
|
1561 | 1561 | $page_title = get_the_title(); |
1562 | 1562 | |
1563 | - if ( geodir_is_page( 'location' ) ) { |
|
1563 | + if (geodir_is_page('location')) { |
|
1564 | 1564 | $location_page_id = geodir_location_page_id(); |
1565 | - $loc_post = get_post( $location_page_id ); |
|
1565 | + $loc_post = get_post($location_page_id); |
|
1566 | 1566 | $post_name = $loc_post->post_name; |
1567 | - $slug = ucwords( str_replace( '-', ' ', $post_name ) ); |
|
1568 | - $page_title = ! empty( $slug ) ? $slug : __( 'Location', 'geodirectory' ); |
|
1567 | + $slug = ucwords(str_replace('-', ' ', $post_name)); |
|
1568 | + $page_title = !empty($slug) ? $slug : __('Location', 'geodirectory'); |
|
1569 | 1569 | } |
1570 | 1570 | |
1571 | - $breadcrumb .= '<li>' . $separator; |
|
1572 | - $breadcrumb .= stripslashes_deep( $page_title ); |
|
1571 | + $breadcrumb .= '<li>'.$separator; |
|
1572 | + $breadcrumb .= stripslashes_deep($page_title); |
|
1573 | 1573 | $breadcrumb .= '</li>'; |
1574 | - } else if ( is_tag() ) { |
|
1575 | - $breadcrumb .= "<li> " . $separator . single_tag_title( '', false ) . '</li>'; |
|
1576 | - } else if ( is_day() ) { |
|
1577 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
1578 | - the_time( 'F jS, Y' ); |
|
1574 | + } else if (is_tag()) { |
|
1575 | + $breadcrumb .= "<li> ".$separator.single_tag_title('', false).'</li>'; |
|
1576 | + } else if (is_day()) { |
|
1577 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." "; |
|
1578 | + the_time('F jS, Y'); |
|
1579 | 1579 | $breadcrumb .= '</li>'; |
1580 | - } else if ( is_month() ) { |
|
1581 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
1582 | - the_time( 'F, Y' ); |
|
1580 | + } else if (is_month()) { |
|
1581 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." "; |
|
1582 | + the_time('F, Y'); |
|
1583 | 1583 | $breadcrumb .= '</li>'; |
1584 | - } else if ( is_year() ) { |
|
1585 | - $breadcrumb .= "<li> " . $separator . __( " Archive for", 'geodirectory' ) . " "; |
|
1586 | - the_time( 'Y' ); |
|
1584 | + } else if (is_year()) { |
|
1585 | + $breadcrumb .= "<li> ".$separator.__(" Archive for", 'geodirectory')." "; |
|
1586 | + the_time('Y'); |
|
1587 | 1587 | $breadcrumb .= '</li>'; |
1588 | - } else if ( is_author() ) { |
|
1589 | - $breadcrumb .= "<li> " . $separator . __( " Author Archive", 'geodirectory' ); |
|
1588 | + } else if (is_author()) { |
|
1589 | + $breadcrumb .= "<li> ".$separator.__(" Author Archive", 'geodirectory'); |
|
1590 | 1590 | $breadcrumb .= '</li>'; |
1591 | - } else if ( isset( $_GET['paged'] ) && ! empty( $_GET['paged'] ) ) { |
|
1592 | - $breadcrumb .= "<li>" . $separator . __( "Blog Archives", 'geodirectory' ); |
|
1591 | + } else if (isset($_GET['paged']) && !empty($_GET['paged'])) { |
|
1592 | + $breadcrumb .= "<li>".$separator.__("Blog Archives", 'geodirectory'); |
|
1593 | 1593 | $breadcrumb .= '</li>'; |
1594 | - } else if ( is_search() ) { |
|
1595 | - $breadcrumb .= "<li> " . $separator . __( " Search Results", 'geodirectory' ); |
|
1594 | + } else if (is_search()) { |
|
1595 | + $breadcrumb .= "<li> ".$separator.__(" Search Results", 'geodirectory'); |
|
1596 | 1596 | $breadcrumb .= '</li>'; |
1597 | 1597 | } |
1598 | 1598 | $breadcrumb .= '</ul></div>'; |
@@ -1605,13 +1605,13 @@ discard block |
||
1605 | 1605 | * @param string $breadcrumb Breadcrumb HTML. |
1606 | 1606 | * @param string $separator Breadcrumb separator. |
1607 | 1607 | */ |
1608 | - echo $breadcrumb = apply_filters( 'geodir_breadcrumb', $breadcrumb, $separator ); |
|
1608 | + echo $breadcrumb = apply_filters('geodir_breadcrumb', $breadcrumb, $separator); |
|
1609 | 1609 | } |
1610 | 1610 | } |
1611 | 1611 | |
1612 | 1612 | |
1613 | -add_action( "admin_init", "geodir_allow_wpadmin" ); // check user is admin |
|
1614 | -if ( ! function_exists( 'geodir_allow_wpadmin' ) ) { |
|
1613 | +add_action("admin_init", "geodir_allow_wpadmin"); // check user is admin |
|
1614 | +if (!function_exists('geodir_allow_wpadmin')) { |
|
1615 | 1615 | /** |
1616 | 1616 | * Allow only admins to access wp-admin. |
1617 | 1617 | * |
@@ -1623,12 +1623,12 @@ discard block |
||
1623 | 1623 | */ |
1624 | 1624 | function geodir_allow_wpadmin() { |
1625 | 1625 | global $wpdb; |
1626 | - if ( get_option( 'geodir_allow_wpadmin' ) == '0' && is_user_logged_in() && ( ! defined( 'DOING_AJAX' ) ) ) // checking action in request to allow ajax request go through |
|
1626 | + if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && (!defined('DOING_AJAX'))) // checking action in request to allow ajax request go through |
|
1627 | 1627 | { |
1628 | - if ( current_user_can( 'administrator' ) ) { |
|
1628 | + if (current_user_can('administrator')) { |
|
1629 | 1629 | } else { |
1630 | 1630 | |
1631 | - wp_redirect( home_url() ); |
|
1631 | + wp_redirect(home_url()); |
|
1632 | 1632 | exit; |
1633 | 1633 | } |
1634 | 1634 | |
@@ -1647,23 +1647,23 @@ discard block |
||
1647 | 1647 | * |
1648 | 1648 | * @return array|WP_Error The uploaded data as array. When failure returns error. |
1649 | 1649 | */ |
1650 | -function fetch_remote_file( $url ) { |
|
1650 | +function fetch_remote_file($url) { |
|
1651 | 1651 | // extract the file name and extension from the url |
1652 | - require_once( ABSPATH . 'wp-includes/pluggable.php' ); |
|
1653 | - $file_name = basename( $url ); |
|
1654 | - if ( strpos( $file_name, '?' ) !== false ) { |
|
1655 | - list( $file_name ) = explode( '?', $file_name ); |
|
1652 | + require_once(ABSPATH.'wp-includes/pluggable.php'); |
|
1653 | + $file_name = basename($url); |
|
1654 | + if (strpos($file_name, '?') !== false) { |
|
1655 | + list($file_name) = explode('?', $file_name); |
|
1656 | 1656 | } |
1657 | 1657 | $dummy = false; |
1658 | 1658 | $add_to_cache = false; |
1659 | 1659 | $key = null; |
1660 | - if ( strpos( $url, '/dummy/' ) !== false ) { |
|
1660 | + if (strpos($url, '/dummy/') !== false) { |
|
1661 | 1661 | $dummy = true; |
1662 | - $key = "dummy_" . str_replace( '.', '_', $file_name ); |
|
1663 | - $value = get_transient( 'cached_dummy_images' ); |
|
1664 | - if ( $value ) { |
|
1665 | - if ( isset( $value[ $key ] ) ) { |
|
1666 | - return $value[ $key ]; |
|
1662 | + $key = "dummy_".str_replace('.', '_', $file_name); |
|
1663 | + $value = get_transient('cached_dummy_images'); |
|
1664 | + if ($value) { |
|
1665 | + if (isset($value[$key])) { |
|
1666 | + return $value[$key]; |
|
1667 | 1667 | } else { |
1668 | 1668 | $add_to_cache = true; |
1669 | 1669 | } |
@@ -1674,58 +1674,58 @@ discard block |
||
1674 | 1674 | |
1675 | 1675 | // get placeholder file in the upload dir with a unique, sanitized filename |
1676 | 1676 | |
1677 | - $post_upload_date = isset( $post['upload_date'] ) ? $post['upload_date'] : ''; |
|
1677 | + $post_upload_date = isset($post['upload_date']) ? $post['upload_date'] : ''; |
|
1678 | 1678 | |
1679 | - $upload = wp_upload_bits( $file_name, 0, '', $post_upload_date ); |
|
1680 | - if ( $upload['error'] ) { |
|
1681 | - return new WP_Error( 'upload_dir_error', $upload['error'] ); |
|
1679 | + $upload = wp_upload_bits($file_name, 0, '', $post_upload_date); |
|
1680 | + if ($upload['error']) { |
|
1681 | + return new WP_Error('upload_dir_error', $upload['error']); |
|
1682 | 1682 | } |
1683 | 1683 | |
1684 | 1684 | |
1685 | - sleep( 0.3 );// if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
1685 | + sleep(0.3); // if multiple remote file this can cause the remote server to timeout so we add a slight delay |
|
1686 | 1686 | |
1687 | 1687 | // fetch the remote url and write it to the placeholder file |
1688 | - $headers = wp_remote_get( $url, array( 'stream' => true, 'filename' => $upload['file'] ) ); |
|
1688 | + $headers = wp_remote_get($url, array('stream' => true, 'filename' => $upload['file'])); |
|
1689 | 1689 | |
1690 | 1690 | $log_message = ''; |
1691 | - if ( is_wp_error( $headers ) ) { |
|
1692 | - echo 'file: ' . $url; |
|
1691 | + if (is_wp_error($headers)) { |
|
1692 | + echo 'file: '.$url; |
|
1693 | 1693 | |
1694 | - return new WP_Error( 'import_file_error', $headers->get_error_message() ); |
|
1694 | + return new WP_Error('import_file_error', $headers->get_error_message()); |
|
1695 | 1695 | } |
1696 | 1696 | |
1697 | - $filesize = filesize( $upload['file'] ); |
|
1697 | + $filesize = filesize($upload['file']); |
|
1698 | 1698 | // request failed |
1699 | - if ( ! $headers ) { |
|
1700 | - $log_message = __( 'Remote server did not respond', 'geodirectory' ); |
|
1699 | + if (!$headers) { |
|
1700 | + $log_message = __('Remote server did not respond', 'geodirectory'); |
|
1701 | 1701 | } // make sure the fetch was successful |
1702 | - elseif ( $headers['response']['code'] != '200' ) { |
|
1703 | - $log_message = sprintf( __( 'Remote server returned error response %1$d %2$s', 'geodirectory' ), esc_html( $headers['response'] ), get_status_header_desc( $headers['response'] ) ); |
|
1704 | - } elseif ( isset( $headers['headers']['content-length'] ) && $filesize != $headers['headers']['content-length'] ) { |
|
1705 | - $log_message = __( 'Remote file is incorrect size', 'geodirectory' ); |
|
1706 | - } elseif ( 0 == $filesize ) { |
|
1707 | - $log_message = __( 'Zero size file downloaded', 'geodirectory' ); |
|
1708 | - } |
|
1709 | - |
|
1710 | - if ( $log_message ) { |
|
1711 | - $del = unlink( $upload['file'] ); |
|
1712 | - if ( ! $del ) { |
|
1713 | - geodir_error_log( __( 'GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory' ) ); |
|
1702 | + elseif ($headers['response']['code'] != '200') { |
|
1703 | + $log_message = sprintf(__('Remote server returned error response %1$d %2$s', 'geodirectory'), esc_html($headers['response']), get_status_header_desc($headers['response'])); |
|
1704 | + } elseif (isset($headers['headers']['content-length']) && $filesize != $headers['headers']['content-length']) { |
|
1705 | + $log_message = __('Remote file is incorrect size', 'geodirectory'); |
|
1706 | + } elseif (0 == $filesize) { |
|
1707 | + $log_message = __('Zero size file downloaded', 'geodirectory'); |
|
1708 | + } |
|
1709 | + |
|
1710 | + if ($log_message) { |
|
1711 | + $del = unlink($upload['file']); |
|
1712 | + if (!$del) { |
|
1713 | + geodir_error_log(__('GeoDirectory: fetch_remote_file() failed to delete temp file.', 'geodirectory')); |
|
1714 | 1714 | } |
1715 | 1715 | |
1716 | - return new WP_Error( 'import_file_error', $log_message ); |
|
1716 | + return new WP_Error('import_file_error', $log_message); |
|
1717 | 1717 | } |
1718 | 1718 | |
1719 | - if ( $dummy && $add_to_cache && is_array( $upload ) ) { |
|
1720 | - $images = get_transient( 'cached_dummy_images' ); |
|
1721 | - if ( is_array( $images ) ) { |
|
1722 | - $images[ $key ] = $upload; |
|
1719 | + if ($dummy && $add_to_cache && is_array($upload)) { |
|
1720 | + $images = get_transient('cached_dummy_images'); |
|
1721 | + if (is_array($images)) { |
|
1722 | + $images[$key] = $upload; |
|
1723 | 1723 | } else { |
1724 | - $images = array( $key => $upload ); |
|
1724 | + $images = array($key => $upload); |
|
1725 | 1725 | } |
1726 | 1726 | |
1727 | 1727 | //setting the cache using the WP Transient API |
1728 | - set_transient( 'cached_dummy_images', $images, 60 * 10 ); //10 minutes cache |
|
1728 | + set_transient('cached_dummy_images', $images, 60 * 10); //10 minutes cache |
|
1729 | 1729 | } |
1730 | 1730 | |
1731 | 1731 | return $upload; |
@@ -1739,12 +1739,12 @@ discard block |
||
1739 | 1739 | * @return string|void Max upload size. |
1740 | 1740 | */ |
1741 | 1741 | function geodir_max_upload_size() { |
1742 | - $max_filesize = (float) get_option( 'geodir_upload_max_filesize', 2 ); |
|
1742 | + $max_filesize = (float) get_option('geodir_upload_max_filesize', 2); |
|
1743 | 1743 | |
1744 | - if ( $max_filesize > 0 && $max_filesize < 1 ) { |
|
1745 | - $max_filesize = (int) ( $max_filesize * 1024 ) . 'kb'; |
|
1744 | + if ($max_filesize > 0 && $max_filesize < 1) { |
|
1745 | + $max_filesize = (int) ($max_filesize * 1024).'kb'; |
|
1746 | 1746 | } else { |
1747 | - $max_filesize = $max_filesize > 0 ? $max_filesize . 'mb' : '2mb'; |
|
1747 | + $max_filesize = $max_filesize > 0 ? $max_filesize.'mb' : '2mb'; |
|
1748 | 1748 | } |
1749 | 1749 | |
1750 | 1750 | /** |
@@ -1754,7 +1754,7 @@ discard block |
||
1754 | 1754 | * |
1755 | 1755 | * @param string $max_filesize Max file upload size. Ex. 10mb, 512kb. |
1756 | 1756 | */ |
1757 | - return apply_filters( 'geodir_default_image_upload_size_limit', $max_filesize ); |
|
1757 | + return apply_filters('geodir_default_image_upload_size_limit', $max_filesize); |
|
1758 | 1758 | } |
1759 | 1759 | |
1760 | 1760 | /** |
@@ -1767,8 +1767,8 @@ discard block |
||
1767 | 1767 | * @return bool If dummy folder exists returns true, else false. |
1768 | 1768 | */ |
1769 | 1769 | function geodir_dummy_folder_exists() { |
1770 | - $path = geodir_plugin_path() . '/geodirectory-admin/dummy/'; |
|
1771 | - if ( ! is_dir( $path ) ) { |
|
1770 | + $path = geodir_plugin_path().'/geodirectory-admin/dummy/'; |
|
1771 | + if (!is_dir($path)) { |
|
1772 | 1772 | return false; |
1773 | 1773 | } else { |
1774 | 1774 | return true; |
@@ -1787,17 +1787,17 @@ discard block |
||
1787 | 1787 | * |
1788 | 1788 | * @return object Author info. |
1789 | 1789 | */ |
1790 | -function geodir_get_author_info( $aid ) { |
|
1790 | +function geodir_get_author_info($aid) { |
|
1791 | 1791 | global $wpdb; |
1792 | 1792 | /*$infosql = "select * from $wpdb->users where ID=$aid";*/ |
1793 | - $infosql = $wpdb->prepare( "select * from $wpdb->users where ID=%d", array( $aid ) ); |
|
1794 | - $info = $wpdb->get_results( $infosql ); |
|
1795 | - if ( $info ) { |
|
1793 | + $infosql = $wpdb->prepare("select * from $wpdb->users where ID=%d", array($aid)); |
|
1794 | + $info = $wpdb->get_results($infosql); |
|
1795 | + if ($info) { |
|
1796 | 1796 | return $info[0]; |
1797 | 1797 | } |
1798 | 1798 | } |
1799 | 1799 | |
1800 | -if ( ! function_exists( 'adminEmail' ) ) { |
|
1800 | +if (!function_exists('adminEmail')) { |
|
1801 | 1801 | /** |
1802 | 1802 | * Send emails to client on post submission, renew etc. |
1803 | 1803 | * |
@@ -1810,67 +1810,67 @@ discard block |
||
1810 | 1810 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1811 | 1811 | * @param string $custom_1 Custom data to be sent. |
1812 | 1812 | */ |
1813 | - function adminEmail( $page_id, $user_id, $message_type, $custom_1 = '' ) { |
|
1813 | + function adminEmail($page_id, $user_id, $message_type, $custom_1 = '') { |
|
1814 | 1814 | global $wpdb; |
1815 | - if ( $message_type == 'expiration' ) { |
|
1816 | - $subject = stripslashes( __( get_option( 'renew_email_subject' ), 'geodirectory' ) ); |
|
1817 | - $client_message = stripslashes( __( get_option( 'renew_email_content' ), 'geodirectory' ) ); |
|
1818 | - } elseif ( $message_type == 'post_submited' ) { |
|
1819 | - $subject = __( get_option( 'post_submited_success_email_subject_admin' ), 'geodirectory' ); |
|
1820 | - $client_message = __( get_option( 'post_submited_success_email_content_admin' ), 'geodirectory' ); |
|
1821 | - } elseif ( $message_type == 'renew' ) { |
|
1822 | - $subject = __( get_option( 'post_renew_success_email_subject_admin' ), 'geodirectory' ); |
|
1823 | - $client_message = __( get_option( 'post_renew_success_email_content_admin' ), 'geodirectory' ); |
|
1824 | - } elseif ( $message_type == 'upgrade' ) { |
|
1825 | - $subject = __( get_option( 'post_upgrade_success_email_subject_admin' ), 'geodirectory' ); |
|
1826 | - $client_message = __( get_option( 'post_upgrade_success_email_content_admin' ), 'geodirectory' ); |
|
1827 | - } elseif ( $message_type == 'claim_approved' ) { |
|
1828 | - $subject = __( get_option( 'claim_approved_email_subject' ), 'geodirectory' ); |
|
1829 | - $client_message = __( get_option( 'claim_approved_email_content' ), 'geodirectory' ); |
|
1830 | - } elseif ( $message_type == 'claim_rejected' ) { |
|
1831 | - $subject = __( get_option( 'claim_rejected_email_subject' ), 'geodirectory' ); |
|
1832 | - $client_message = __( get_option( 'claim_rejected_email_content' ), 'geodirectory' ); |
|
1833 | - } elseif ( $message_type == 'claim_requested' ) { |
|
1834 | - $subject = __( get_option( 'claim_email_subject_admin' ), 'geodirectory' ); |
|
1835 | - $client_message = __( get_option( 'claim_email_content_admin' ), 'geodirectory' ); |
|
1836 | - } elseif ( $message_type == 'auto_claim' ) { |
|
1837 | - $subject = __( get_option( 'auto_claim_email_subject' ), 'geodirectory' ); |
|
1838 | - $client_message = __( get_option( 'auto_claim_email_content' ), 'geodirectory' ); |
|
1839 | - } elseif ( $message_type == 'payment_success' ) { |
|
1840 | - $subject = __( get_option( 'post_payment_success_admin_email_subject' ), 'geodirectory' ); |
|
1841 | - $client_message = __( get_option( 'post_payment_success_admin_email_content' ), 'geodirectory' ); |
|
1842 | - } elseif ( $message_type == 'payment_fail' ) { |
|
1843 | - $subject = __( get_option( 'post_payment_fail_admin_email_subject' ), 'geodirectory' ); |
|
1844 | - $client_message = __( get_option( 'post_payment_fail_admin_email_content' ), 'geodirectory' ); |
|
1815 | + if ($message_type == 'expiration') { |
|
1816 | + $subject = stripslashes(__(get_option('renew_email_subject'), 'geodirectory')); |
|
1817 | + $client_message = stripslashes(__(get_option('renew_email_content'), 'geodirectory')); |
|
1818 | + } elseif ($message_type == 'post_submited') { |
|
1819 | + $subject = __(get_option('post_submited_success_email_subject_admin'), 'geodirectory'); |
|
1820 | + $client_message = __(get_option('post_submited_success_email_content_admin'), 'geodirectory'); |
|
1821 | + } elseif ($message_type == 'renew') { |
|
1822 | + $subject = __(get_option('post_renew_success_email_subject_admin'), 'geodirectory'); |
|
1823 | + $client_message = __(get_option('post_renew_success_email_content_admin'), 'geodirectory'); |
|
1824 | + } elseif ($message_type == 'upgrade') { |
|
1825 | + $subject = __(get_option('post_upgrade_success_email_subject_admin'), 'geodirectory'); |
|
1826 | + $client_message = __(get_option('post_upgrade_success_email_content_admin'), 'geodirectory'); |
|
1827 | + } elseif ($message_type == 'claim_approved') { |
|
1828 | + $subject = __(get_option('claim_approved_email_subject'), 'geodirectory'); |
|
1829 | + $client_message = __(get_option('claim_approved_email_content'), 'geodirectory'); |
|
1830 | + } elseif ($message_type == 'claim_rejected') { |
|
1831 | + $subject = __(get_option('claim_rejected_email_subject'), 'geodirectory'); |
|
1832 | + $client_message = __(get_option('claim_rejected_email_content'), 'geodirectory'); |
|
1833 | + } elseif ($message_type == 'claim_requested') { |
|
1834 | + $subject = __(get_option('claim_email_subject_admin'), 'geodirectory'); |
|
1835 | + $client_message = __(get_option('claim_email_content_admin'), 'geodirectory'); |
|
1836 | + } elseif ($message_type == 'auto_claim') { |
|
1837 | + $subject = __(get_option('auto_claim_email_subject'), 'geodirectory'); |
|
1838 | + $client_message = __(get_option('auto_claim_email_content'), 'geodirectory'); |
|
1839 | + } elseif ($message_type == 'payment_success') { |
|
1840 | + $subject = __(get_option('post_payment_success_admin_email_subject'), 'geodirectory'); |
|
1841 | + $client_message = __(get_option('post_payment_success_admin_email_content'), 'geodirectory'); |
|
1842 | + } elseif ($message_type == 'payment_fail') { |
|
1843 | + $subject = __(get_option('post_payment_fail_admin_email_subject'), 'geodirectory'); |
|
1844 | + $client_message = __(get_option('post_payment_fail_admin_email_content'), 'geodirectory'); |
|
1845 | 1845 | } |
1846 | 1846 | $transaction_details = $custom_1; |
1847 | - $fromEmail = get_option( 'site_email' ); |
|
1847 | + $fromEmail = get_option('site_email'); |
|
1848 | 1848 | $fromEmailName = get_site_emailName(); |
1849 | 1849 | //$alivedays = get_post_meta($page_id,'alive_days',true); |
1850 | - $pkg_limit = get_property_price_info_listing( $page_id ); |
|
1850 | + $pkg_limit = get_property_price_info_listing($page_id); |
|
1851 | 1851 | $alivedays = $pkg_limit['days']; |
1852 | - $productlink = get_permalink( $page_id ); |
|
1853 | - $post_info = get_post( $page_id ); |
|
1854 | - $post_date = date( 'dS F,Y', strtotime( $post_info->post_date ) ); |
|
1855 | - $listingLink = '<a href="' . $productlink . '"><b>' . $post_info->post_title . '</b></a>'; |
|
1852 | + $productlink = get_permalink($page_id); |
|
1853 | + $post_info = get_post($page_id); |
|
1854 | + $post_date = date('dS F,Y', strtotime($post_info->post_date)); |
|
1855 | + $listingLink = '<a href="'.$productlink.'"><b>'.$post_info->post_title.'</b></a>'; |
|
1856 | 1856 | $loginurl = geodir_login_url(); |
1857 | - $loginurl_link = '<a href="' . $loginurl . '">login</a>'; |
|
1857 | + $loginurl_link = '<a href="'.$loginurl.'">login</a>'; |
|
1858 | 1858 | $siteurl = home_url(); |
1859 | - $siteurl_link = '<a href="' . $siteurl . '">' . $fromEmailName . '</a>'; |
|
1860 | - $user_info = get_userdata( $user_id ); |
|
1859 | + $siteurl_link = '<a href="'.$siteurl.'">'.$fromEmailName.'</a>'; |
|
1860 | + $user_info = get_userdata($user_id); |
|
1861 | 1861 | $user_email = $user_info->user_email; |
1862 | - $display_name = geodir_get_client_name( $user_id ); |
|
1862 | + $display_name = geodir_get_client_name($user_id); |
|
1863 | 1863 | $user_login = $user_info->user_login; |
1864 | - $number_of_grace_days = get_option( 'ptthemes_listing_preexpiry_notice_days' ); |
|
1865 | - if ( $number_of_grace_days == '' ) { |
|
1864 | + $number_of_grace_days = get_option('ptthemes_listing_preexpiry_notice_days'); |
|
1865 | + if ($number_of_grace_days == '') { |
|
1866 | 1866 | $number_of_grace_days = 1; |
1867 | 1867 | } |
1868 | - if ( $post_info->post_type == 'event' ) { |
|
1868 | + if ($post_info->post_type == 'event') { |
|
1869 | 1869 | $post_type = 'event'; |
1870 | 1870 | } else { |
1871 | 1871 | $post_type = 'listing'; |
1872 | 1872 | } |
1873 | - $renew_link = '<a href="' . $siteurl . '?ptype=post_' . $post_type . '&renew=1&pid=' . $page_id . '">' . RENEW_LINK . '</a>'; |
|
1873 | + $renew_link = '<a href="'.$siteurl.'?ptype=post_'.$post_type.'&renew=1&pid='.$page_id.'">'.RENEW_LINK.'</a>'; |
|
1874 | 1874 | $search_array = array( |
1875 | 1875 | '[#client_name#]', |
1876 | 1876 | '[#listing_link#]', |
@@ -1886,7 +1886,7 @@ discard block |
||
1886 | 1886 | '[#site_name#]', |
1887 | 1887 | '[#transaction_details#]' |
1888 | 1888 | ); |
1889 | - $replace_array = array( |
|
1889 | + $replace_array = array( |
|
1890 | 1890 | $display_name, |
1891 | 1891 | $listingLink, |
1892 | 1892 | $post_date, |
@@ -1901,13 +1901,13 @@ discard block |
||
1901 | 1901 | $fromEmailName, |
1902 | 1902 | $transaction_details |
1903 | 1903 | ); |
1904 | - $client_message = str_replace( $search_array, $replace_array, $client_message ); |
|
1905 | - $subject = str_replace( $search_array, $replace_array, $subject ); |
|
1904 | + $client_message = str_replace($search_array, $replace_array, $client_message); |
|
1905 | + $subject = str_replace($search_array, $replace_array, $subject); |
|
1906 | 1906 | |
1907 | 1907 | |
1908 | - $headers = array(); |
|
1908 | + $headers = array(); |
|
1909 | 1909 | $headers[] = 'Content-type: text/html; charset=UTF-8'; |
1910 | - $headers[] = 'From: ' . $fromEmailName . ' <' . $fromEmail . '>'; |
|
1910 | + $headers[] = 'From: '.$fromEmailName.' <'.$fromEmail.'>'; |
|
1911 | 1911 | |
1912 | 1912 | $to = $fromEmail; |
1913 | 1913 | $message = $client_message; |
@@ -1925,7 +1925,7 @@ discard block |
||
1925 | 1925 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1926 | 1926 | * @param string $custom_1 Custom data to be sent. |
1927 | 1927 | */ |
1928 | - $to = apply_filters( 'geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1 ); |
|
1928 | + $to = apply_filters('geodir_adminEmail_to', $to, $page_id, $user_id, $message_type, $custom_1); |
|
1929 | 1929 | /** |
1930 | 1930 | * Filter the admin email subject. |
1931 | 1931 | * |
@@ -1938,7 +1938,7 @@ discard block |
||
1938 | 1938 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1939 | 1939 | * @param string $custom_1 Custom data to be sent. |
1940 | 1940 | */ |
1941 | - $subject = apply_filters( 'geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1 ); |
|
1941 | + $subject = apply_filters('geodir_adminEmail_subject', $subject, $page_id, $user_id, $message_type, $custom_1); |
|
1942 | 1942 | /** |
1943 | 1943 | * Filter the admin email message. |
1944 | 1944 | * |
@@ -1951,7 +1951,7 @@ discard block |
||
1951 | 1951 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1952 | 1952 | * @param string $custom_1 Custom data to be sent. |
1953 | 1953 | */ |
1954 | - $message = apply_filters( 'geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1 ); |
|
1954 | + $message = apply_filters('geodir_adminEmail_message', $message, $page_id, $user_id, $message_type, $custom_1); |
|
1955 | 1955 | /** |
1956 | 1956 | * Filter the admin email headers. |
1957 | 1957 | * |
@@ -1964,22 +1964,22 @@ discard block |
||
1964 | 1964 | * @param string $message_type Can be 'expiration','post_submited','renew','upgrade','claim_approved','claim_rejected','claim_requested','auto_claim','payment_success','payment_fail'. |
1965 | 1965 | * @param string $custom_1 Custom data to be sent. |
1966 | 1966 | */ |
1967 | - $headers = apply_filters( 'geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1 ); |
|
1967 | + $headers = apply_filters('geodir_adminEmail_headers', $headers, $page_id, $user_id, $message_type, $custom_1); |
|
1968 | 1968 | |
1969 | 1969 | |
1970 | - $sent = wp_mail( $to, $subject, $message, $headers ); |
|
1971 | - if ( ! $sent ) { |
|
1972 | - if ( is_array( $to ) ) { |
|
1973 | - $to = implode( ',', $to ); |
|
1970 | + $sent = wp_mail($to, $subject, $message, $headers); |
|
1971 | + if (!$sent) { |
|
1972 | + if (is_array($to)) { |
|
1973 | + $to = implode(',', $to); |
|
1974 | 1974 | } |
1975 | 1975 | $log_message = sprintf( |
1976 | - __( "Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory' ), |
|
1976 | + __("Email from GeoDirectory failed to send.\nMessage type: %s\nSend time: %s\nTo: %s\nSubject: %s\n\n", 'geodirectory'), |
|
1977 | 1977 | $message_type, |
1978 | - date_i18n( 'F j Y H:i:s', current_time( 'timestamp' ) ), |
|
1978 | + date_i18n('F j Y H:i:s', current_time('timestamp')), |
|
1979 | 1979 | $to, |
1980 | 1980 | $subject |
1981 | 1981 | ); |
1982 | - geodir_error_log( $log_message ); |
|
1982 | + geodir_error_log($log_message); |
|
1983 | 1983 | } |
1984 | 1984 | } |
1985 | 1985 | } |
@@ -1999,12 +1999,12 @@ discard block |
||
1999 | 1999 | * |
2000 | 2000 | * @return array Category IDs. |
2001 | 2001 | */ |
2002 | -function gd_lang_object_ids( $ids_array, $type ) { |
|
2003 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2002 | +function gd_lang_object_ids($ids_array, $type) { |
|
2003 | + if (function_exists('icl_object_id')) { |
|
2004 | 2004 | $res = array(); |
2005 | - foreach ( $ids_array as $id ) { |
|
2006 | - $xlat = icl_object_id( $id, $type, false ); |
|
2007 | - if ( ! is_null( $xlat ) ) { |
|
2005 | + foreach ($ids_array as $id) { |
|
2006 | + $xlat = icl_object_id($id, $type, false); |
|
2007 | + if (!is_null($xlat)) { |
|
2008 | 2008 | $res[] = $xlat; |
2009 | 2009 | } |
2010 | 2010 | } |
@@ -2028,20 +2028,20 @@ discard block |
||
2028 | 2028 | * |
2029 | 2029 | * @return array Modified Body CSS classes. |
2030 | 2030 | */ |
2031 | -function geodir_custom_posts_body_class( $classes ) { |
|
2031 | +function geodir_custom_posts_body_class($classes) { |
|
2032 | 2032 | global $wpdb, $wp; |
2033 | - $post_types = geodir_get_posttypes( 'object' ); |
|
2034 | - if ( ! empty( $post_types ) && count( (array) $post_types ) > 1 ) { |
|
2033 | + $post_types = geodir_get_posttypes('object'); |
|
2034 | + if (!empty($post_types) && count((array) $post_types) > 1) { |
|
2035 | 2035 | $classes[] = 'geodir_custom_posts'; |
2036 | 2036 | } |
2037 | 2037 | |
2038 | 2038 | // fix body class for signup page |
2039 | - if ( geodir_is_page( 'login' ) ) { |
|
2039 | + if (geodir_is_page('login')) { |
|
2040 | 2040 | $new_classes = array(); |
2041 | 2041 | $new_classes[] = 'signup page-geodir-signup'; |
2042 | - if ( ! empty( $classes ) ) { |
|
2043 | - foreach ( $classes as $class ) { |
|
2044 | - if ( $class && $class != 'home' && $class != 'blog' ) { |
|
2042 | + if (!empty($classes)) { |
|
2043 | + foreach ($classes as $class) { |
|
2044 | + if ($class && $class != 'home' && $class != 'blog') { |
|
2045 | 2045 | $new_classes[] = $class; |
2046 | 2046 | } |
2047 | 2047 | } |
@@ -2049,14 +2049,14 @@ discard block |
||
2049 | 2049 | $classes = $new_classes; |
2050 | 2050 | } |
2051 | 2051 | |
2052 | - if ( geodir_is_geodir_page() ) { |
|
2052 | + if (geodir_is_geodir_page()) { |
|
2053 | 2053 | $classes[] = 'geodir-page'; |
2054 | 2054 | } |
2055 | 2055 | |
2056 | 2056 | return $classes; |
2057 | 2057 | } |
2058 | 2058 | |
2059 | -add_filter( 'body_class', 'geodir_custom_posts_body_class' ); // let's add a class to the body so we can style the new addition to the search |
|
2059 | +add_filter('body_class', 'geodir_custom_posts_body_class'); // let's add a class to the body so we can style the new addition to the search |
|
2060 | 2060 | |
2061 | 2061 | |
2062 | 2062 | /** |
@@ -2072,7 +2072,7 @@ discard block |
||
2072 | 2072 | * |
2073 | 2073 | * @since 1.0.0 |
2074 | 2074 | */ |
2075 | - return apply_filters( 'geodir_map_zoom_level', array( |
|
2075 | + return apply_filters('geodir_map_zoom_level', array( |
|
2076 | 2076 | 1, |
2077 | 2077 | 2, |
2078 | 2078 | 3, |
@@ -2092,7 +2092,7 @@ discard block |
||
2092 | 2092 | 17, |
2093 | 2093 | 18, |
2094 | 2094 | 19 |
2095 | - ) ); |
|
2095 | + )); |
|
2096 | 2096 | |
2097 | 2097 | } |
2098 | 2098 | |
@@ -2105,12 +2105,12 @@ discard block |
||
2105 | 2105 | * |
2106 | 2106 | * @param string $geodir_option_name Option key. |
2107 | 2107 | */ |
2108 | -function geodir_option_version_backup( $geodir_option_name ) { |
|
2108 | +function geodir_option_version_backup($geodir_option_name) { |
|
2109 | 2109 | $version_date = time(); |
2110 | - $geodir_option = get_option( $geodir_option_name ); |
|
2110 | + $geodir_option = get_option($geodir_option_name); |
|
2111 | 2111 | |
2112 | - if ( ! empty( $geodir_option ) ) { |
|
2113 | - add_option( $geodir_option_name . '_' . $version_date, $geodir_option ); |
|
2112 | + if (!empty($geodir_option)) { |
|
2113 | + add_option($geodir_option_name.'_'.$version_date, $geodir_option); |
|
2114 | 2114 | } |
2115 | 2115 | } |
2116 | 2116 | |
@@ -2124,10 +2124,10 @@ discard block |
||
2124 | 2124 | * |
2125 | 2125 | * @return int Page ID. |
2126 | 2126 | */ |
2127 | -function get_page_id_geodir_add_listing_page( $page_id ) { |
|
2128 | - if ( geodir_wpml_multilingual_status() ) { |
|
2127 | +function get_page_id_geodir_add_listing_page($page_id) { |
|
2128 | + if (geodir_wpml_multilingual_status()) { |
|
2129 | 2129 | $post_type = 'post_page'; |
2130 | - $page_id = geodir_get_wpml_element_id( $page_id, $post_type ); |
|
2130 | + $page_id = geodir_get_wpml_element_id($page_id, $post_type); |
|
2131 | 2131 | } |
2132 | 2132 | |
2133 | 2133 | return $page_id; |
@@ -2141,7 +2141,7 @@ discard block |
||
2141 | 2141 | * @return bool Returns true when sitepress multilingual CMS active. else returns false. |
2142 | 2142 | */ |
2143 | 2143 | function geodir_wpml_multilingual_status() { |
2144 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2144 | + if (function_exists('icl_object_id')) { |
|
2145 | 2145 | return true; |
2146 | 2146 | } |
2147 | 2147 | |
@@ -2159,19 +2159,19 @@ discard block |
||
2159 | 2159 | * |
2160 | 2160 | * @return int Element ID when exists. Else the page id. |
2161 | 2161 | */ |
2162 | -function geodir_get_wpml_element_id( $page_id, $post_type ) { |
|
2162 | +function geodir_get_wpml_element_id($page_id, $post_type) { |
|
2163 | 2163 | global $sitepress; |
2164 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) { |
|
2165 | - $trid = $sitepress->get_element_trid( $page_id, $post_type ); |
|
2164 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) { |
|
2165 | + $trid = $sitepress->get_element_trid($page_id, $post_type); |
|
2166 | 2166 | |
2167 | - if ( $trid > 0 ) { |
|
2168 | - $translations = $sitepress->get_element_translations( $trid, $post_type ); |
|
2167 | + if ($trid > 0) { |
|
2168 | + $translations = $sitepress->get_element_translations($trid, $post_type); |
|
2169 | 2169 | |
2170 | 2170 | $lang = $sitepress->get_current_language(); |
2171 | 2171 | $lang = $lang ? $lang : $sitepress->get_default_language(); |
2172 | 2172 | |
2173 | - if ( ! empty( $translations ) && ! empty( $lang ) && isset( $translations[ $lang ] ) && isset( $translations[ $lang ]->element_id ) && ! empty( $translations[ $lang ]->element_id ) ) { |
|
2174 | - $page_id = $translations[ $lang ]->element_id; |
|
2173 | + if (!empty($translations) && !empty($lang) && isset($translations[$lang]) && isset($translations[$lang]->element_id) && !empty($translations[$lang]->element_id)) { |
|
2174 | + $page_id = $translations[$lang]->element_id; |
|
2175 | 2175 | } |
2176 | 2176 | } |
2177 | 2177 | } |
@@ -2188,15 +2188,15 @@ discard block |
||
2188 | 2188 | */ |
2189 | 2189 | function geodir_wpml_check_element_id() { |
2190 | 2190 | global $sitepress; |
2191 | - if ( geodir_wpml_multilingual_status() && ! empty( $sitepress ) && isset( $sitepress->queries ) ) { |
|
2191 | + if (geodir_wpml_multilingual_status() && !empty($sitepress) && isset($sitepress->queries)) { |
|
2192 | 2192 | $el_type = 'post_page'; |
2193 | - $el_id = get_option( 'geodir_add_listing_page' ); |
|
2193 | + $el_id = get_option('geodir_add_listing_page'); |
|
2194 | 2194 | $default_lang = $sitepress->get_default_language(); |
2195 | - $el_details = $sitepress->get_element_language_details( $el_id, $el_type ); |
|
2195 | + $el_details = $sitepress->get_element_language_details($el_id, $el_type); |
|
2196 | 2196 | |
2197 | - if ( ! ( $el_id > 0 && $default_lang && ! empty( $el_details ) && isset( $el_details->language_code ) && $el_details->language_code == $default_lang ) ) { |
|
2198 | - if ( ! $el_details->source_language_code ) { |
|
2199 | - $sitepress->set_element_language_details( $el_id, $el_type, '', $default_lang ); |
|
2197 | + if (!($el_id > 0 && $default_lang && !empty($el_details) && isset($el_details->language_code) && $el_details->language_code == $default_lang)) { |
|
2198 | + if (!$el_details->source_language_code) { |
|
2199 | + $sitepress->set_element_language_details($el_id, $el_type, '', $default_lang); |
|
2200 | 2200 | $sitepress->icl_translations_cache->clear(); |
2201 | 2201 | } |
2202 | 2202 | } |
@@ -2215,41 +2215,41 @@ discard block |
||
2215 | 2215 | * |
2216 | 2216 | * @return string Orderby SQL. |
2217 | 2217 | */ |
2218 | -function geodir_widget_listings_get_order( $query_args ) { |
|
2218 | +function geodir_widget_listings_get_order($query_args) { |
|
2219 | 2219 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2220 | 2220 | |
2221 | 2221 | $query_args = $gd_query_args_widgets; |
2222 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2223 | - return $wpdb->posts . ".post_date DESC, "; |
|
2222 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2223 | + return $wpdb->posts.".post_date DESC, "; |
|
2224 | 2224 | } |
2225 | 2225 | |
2226 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2227 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2226 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2227 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2228 | 2228 | |
2229 | - $sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : ''; |
|
2229 | + $sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : ''; |
|
2230 | 2230 | |
2231 | - switch ( $sort_by ) { |
|
2231 | + switch ($sort_by) { |
|
2232 | 2232 | case 'latest': |
2233 | 2233 | case 'newest': |
2234 | - $orderby = $wpdb->posts . ".post_date DESC, "; |
|
2234 | + $orderby = $wpdb->posts.".post_date DESC, "; |
|
2235 | 2235 | break; |
2236 | 2236 | case 'featured': |
2237 | - $orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, "; |
|
2237 | + $orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, "; |
|
2238 | 2238 | break; |
2239 | 2239 | case 'az': |
2240 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
2240 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
2241 | 2241 | break; |
2242 | 2242 | case 'high_review': |
2243 | - $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, "; |
|
2243 | + $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, "; |
|
2244 | 2244 | break; |
2245 | 2245 | case 'high_rating': |
2246 | - $orderby = "( " . $table . ".overall_rating ) DESC, "; |
|
2246 | + $orderby = "( ".$table.".overall_rating ) DESC, "; |
|
2247 | 2247 | break; |
2248 | 2248 | case 'random': |
2249 | 2249 | $orderby = "RAND(), "; |
2250 | 2250 | break; |
2251 | 2251 | default: |
2252 | - $orderby = $wpdb->posts . ".post_title ASC, "; |
|
2252 | + $orderby = $wpdb->posts.".post_title ASC, "; |
|
2253 | 2253 | break; |
2254 | 2254 | } |
2255 | 2255 | |
@@ -2272,15 +2272,15 @@ discard block |
||
2272 | 2272 | * |
2273 | 2273 | * @return mixed Result object. |
2274 | 2274 | */ |
2275 | -function geodir_get_widget_listings( $query_args = array(), $count_only = false ) { |
|
2275 | +function geodir_get_widget_listings($query_args = array(), $count_only = false) { |
|
2276 | 2276 | global $wpdb, $plugin_prefix, $table_prefix; |
2277 | 2277 | $GLOBALS['gd_query_args_widgets'] = $query_args; |
2278 | 2278 | $gd_query_args_widgets = $query_args; |
2279 | 2279 | |
2280 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2281 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2280 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2281 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2282 | 2282 | |
2283 | - $fields = $wpdb->posts . ".*, " . $table . ".*"; |
|
2283 | + $fields = $wpdb->posts.".*, ".$table.".*"; |
|
2284 | 2284 | /** |
2285 | 2285 | * Filter widget listing fields string part that is being used for query. |
2286 | 2286 | * |
@@ -2290,17 +2290,17 @@ discard block |
||
2290 | 2290 | * @param string $table Table name. |
2291 | 2291 | * @param string $post_type Post type. |
2292 | 2292 | */ |
2293 | - $fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type ); |
|
2293 | + $fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type); |
|
2294 | 2294 | |
2295 | - $join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)"; |
|
2295 | + $join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)"; |
|
2296 | 2296 | |
2297 | 2297 | ########### WPML ########### |
2298 | 2298 | |
2299 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2299 | + if (function_exists('icl_object_id')) { |
|
2300 | 2300 | global $sitepress; |
2301 | 2301 | $lang_code = ICL_LANGUAGE_CODE; |
2302 | - if ( $lang_code ) { |
|
2303 | - $join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID"; |
|
2302 | + if ($lang_code) { |
|
2303 | + $join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID"; |
|
2304 | 2304 | } |
2305 | 2305 | } |
2306 | 2306 | |
@@ -2314,15 +2314,15 @@ discard block |
||
2314 | 2314 | * @param string $join Join clause string. |
2315 | 2315 | * @param string $post_type Post type. |
2316 | 2316 | */ |
2317 | - $join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type ); |
|
2317 | + $join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type); |
|
2318 | 2318 | |
2319 | - $post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : ''; |
|
2319 | + $post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : ''; |
|
2320 | 2320 | |
2321 | - $where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'"; |
|
2321 | + $where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'"; |
|
2322 | 2322 | |
2323 | 2323 | ########### WPML ########### |
2324 | - if ( function_exists( 'icl_object_id' ) ) { |
|
2325 | - if ( $lang_code ) { |
|
2324 | + if (function_exists('icl_object_id')) { |
|
2325 | + if ($lang_code) { |
|
2326 | 2326 | $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' "; |
2327 | 2327 | } |
2328 | 2328 | } |
@@ -2335,8 +2335,8 @@ discard block |
||
2335 | 2335 | * @param string $where Where clause string. |
2336 | 2336 | * @param string $post_type Post type. |
2337 | 2337 | */ |
2338 | - $where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type ); |
|
2339 | - $where = $where != '' ? " WHERE 1=1 " . $where : ''; |
|
2338 | + $where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type); |
|
2339 | + $where = $where != '' ? " WHERE 1=1 ".$where : ''; |
|
2340 | 2340 | |
2341 | 2341 | $groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster withotu |
2342 | 2342 | /** |
@@ -2347,15 +2347,15 @@ discard block |
||
2347 | 2347 | * @param string $groupby Group by clause string. |
2348 | 2348 | * @param string $post_type Post type. |
2349 | 2349 | */ |
2350 | - $groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type ); |
|
2350 | + $groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type); |
|
2351 | 2351 | |
2352 | - if ( $count_only ) { |
|
2353 | - $sql = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . " |
|
2354 | - " . $join . " |
|
2352 | + if ($count_only) { |
|
2353 | + $sql = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts." |
|
2354 | + " . $join." |
|
2355 | 2355 | " . $where; |
2356 | - $rows = (int) $wpdb->get_var( $sql ); |
|
2356 | + $rows = (int) $wpdb->get_var($sql); |
|
2357 | 2357 | } else { |
2358 | - $orderby = geodir_widget_listings_get_order( $query_args ); |
|
2358 | + $orderby = geodir_widget_listings_get_order($query_args); |
|
2359 | 2359 | /** |
2360 | 2360 | * Filter widget listing orderby clause string part that is being used for query. |
2361 | 2361 | * |
@@ -2365,11 +2365,11 @@ discard block |
||
2365 | 2365 | * @param string $table Table name. |
2366 | 2366 | * @param string $post_type Post type. |
2367 | 2367 | */ |
2368 | - $orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type ); |
|
2369 | - $orderby .= $wpdb->posts . ".post_title ASC"; |
|
2370 | - $orderby = $orderby != '' ? " ORDER BY " . $orderby : ''; |
|
2368 | + $orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type); |
|
2369 | + $orderby .= $wpdb->posts.".post_title ASC"; |
|
2370 | + $orderby = $orderby != '' ? " ORDER BY ".$orderby : ''; |
|
2371 | 2371 | |
2372 | - $limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5; |
|
2372 | + $limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5; |
|
2373 | 2373 | /** |
2374 | 2374 | * Filter widget listing limit that is being used for query. |
2375 | 2375 | * |
@@ -2378,27 +2378,27 @@ discard block |
||
2378 | 2378 | * @param int $limit Query results limit. |
2379 | 2379 | * @param string $post_type Post type. |
2380 | 2380 | */ |
2381 | - $limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type ); |
|
2381 | + $limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type); |
|
2382 | 2382 | |
2383 | - $page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1; |
|
2384 | - if ( ! $page ) { |
|
2383 | + $page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1; |
|
2384 | + if (!$page) { |
|
2385 | 2385 | $page = 1; |
2386 | 2386 | } |
2387 | 2387 | |
2388 | - $limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : ""; |
|
2388 | + $limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : ""; |
|
2389 | 2389 | |
2390 | 2390 | //@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without |
2391 | - $sql = "SELECT " . $fields . " FROM " . $wpdb->posts . " |
|
2392 | - " . $join . " |
|
2393 | - " . $where . " |
|
2394 | - " . $groupby . " |
|
2395 | - " . $orderby . " |
|
2391 | + $sql = "SELECT ".$fields." FROM ".$wpdb->posts." |
|
2392 | + " . $join." |
|
2393 | + " . $where." |
|
2394 | + " . $groupby." |
|
2395 | + " . $orderby." |
|
2396 | 2396 | " . $limit; |
2397 | - $rows = $wpdb->get_results( $sql ); |
|
2397 | + $rows = $wpdb->get_results($sql); |
|
2398 | 2398 | } |
2399 | 2399 | |
2400 | - unset( $GLOBALS['gd_query_args_widgets'] ); |
|
2401 | - unset( $gd_query_args_widgets ); |
|
2400 | + unset($GLOBALS['gd_query_args_widgets']); |
|
2401 | + unset($gd_query_args_widgets); |
|
2402 | 2402 | |
2403 | 2403 | return $rows; |
2404 | 2404 | } |
@@ -2415,11 +2415,11 @@ discard block |
||
2415 | 2415 | * |
2416 | 2416 | * @return string Modified fields SQL. |
2417 | 2417 | */ |
2418 | -function geodir_function_widget_listings_fields( $fields ) { |
|
2418 | +function geodir_function_widget_listings_fields($fields) { |
|
2419 | 2419 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2420 | 2420 | |
2421 | 2421 | $query_args = $gd_query_args_widgets; |
2422 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2422 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2423 | 2423 | return $fields; |
2424 | 2424 | } |
2425 | 2425 | |
@@ -2438,24 +2438,24 @@ discard block |
||
2438 | 2438 | * |
2439 | 2439 | * @return string Modified join clause SQL. |
2440 | 2440 | */ |
2441 | -function geodir_function_widget_listings_join( $join ) { |
|
2441 | +function geodir_function_widget_listings_join($join) { |
|
2442 | 2442 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2443 | 2443 | |
2444 | 2444 | $query_args = $gd_query_args_widgets; |
2445 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2445 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2446 | 2446 | return $join; |
2447 | 2447 | } |
2448 | 2448 | |
2449 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2450 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2449 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2450 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2451 | 2451 | |
2452 | - if ( ! empty( $query_args['with_pics_only'] ) ) { |
|
2453 | - $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )"; |
|
2452 | + if (!empty($query_args['with_pics_only'])) { |
|
2453 | + $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )"; |
|
2454 | 2454 | } |
2455 | 2455 | |
2456 | - if ( ! empty( $query_args['tax_query'] ) ) { |
|
2457 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
2458 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) { |
|
2456 | + if (!empty($query_args['tax_query'])) { |
|
2457 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
2458 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) { |
|
2459 | 2459 | $join .= $tax_queries['join']; |
2460 | 2460 | } |
2461 | 2461 | } |
@@ -2476,60 +2476,60 @@ discard block |
||
2476 | 2476 | * |
2477 | 2477 | * @return string Modified where clause SQL. |
2478 | 2478 | */ |
2479 | -function geodir_function_widget_listings_where( $where ) { |
|
2479 | +function geodir_function_widget_listings_where($where) { |
|
2480 | 2480 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2481 | 2481 | |
2482 | 2482 | $query_args = $gd_query_args_widgets; |
2483 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2483 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2484 | 2484 | return $where; |
2485 | 2485 | } |
2486 | - $post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type']; |
|
2487 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
2486 | + $post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type']; |
|
2487 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
2488 | 2488 | |
2489 | - if ( ! empty( $query_args ) ) { |
|
2490 | - if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) { |
|
2491 | - $where = geodir_default_location_where( $where, $table ); |
|
2489 | + if (!empty($query_args)) { |
|
2490 | + if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) { |
|
2491 | + $where = geodir_default_location_where($where, $table); |
|
2492 | 2492 | } |
2493 | 2493 | |
2494 | - if ( ! empty( $query_args['post_author'] ) ) { |
|
2495 | - $where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author']; |
|
2494 | + if (!empty($query_args['post_author'])) { |
|
2495 | + $where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author']; |
|
2496 | 2496 | } |
2497 | 2497 | |
2498 | - if ( ! empty( $query_args['show_featured_only'] ) ) { |
|
2499 | - $where .= " AND " . $table . ".is_featured = '1'"; |
|
2498 | + if (!empty($query_args['show_featured_only'])) { |
|
2499 | + $where .= " AND ".$table.".is_featured = '1'"; |
|
2500 | 2500 | } |
2501 | 2501 | |
2502 | - if ( ! empty( $query_args['show_special_only'] ) ) { |
|
2503 | - $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )"; |
|
2502 | + if (!empty($query_args['show_special_only'])) { |
|
2503 | + $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )"; |
|
2504 | 2504 | } |
2505 | 2505 | |
2506 | - if ( ! empty( $query_args['with_pics_only'] ) ) { |
|
2507 | - $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL "; |
|
2506 | + if (!empty($query_args['with_pics_only'])) { |
|
2507 | + $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL "; |
|
2508 | 2508 | } |
2509 | 2509 | |
2510 | - if ( ! empty( $query_args['featured_image_only'] ) ) { |
|
2511 | - $where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' "; |
|
2510 | + if (!empty($query_args['featured_image_only'])) { |
|
2511 | + $where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' "; |
|
2512 | 2512 | } |
2513 | 2513 | |
2514 | - if ( ! empty( $query_args['with_videos_only'] ) ) { |
|
2515 | - $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )"; |
|
2514 | + if (!empty($query_args['with_videos_only'])) { |
|
2515 | + $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )"; |
|
2516 | 2516 | } |
2517 | 2517 | |
2518 | - if ( ! empty( $query_args['show_favorites_only'] ) ) { |
|
2518 | + if (!empty($query_args['show_favorites_only'])) { |
|
2519 | 2519 | $user_favorites = '-1'; |
2520 | 2520 | |
2521 | - if ( !empty( $query_args['favorites_by_user'] ) ) { |
|
2522 | - $user_favorites = get_user_meta( (int)$query_args['favorites_by_user'], 'gd_user_favourite_post', true ); |
|
2521 | + if (!empty($query_args['favorites_by_user'])) { |
|
2522 | + $user_favorites = get_user_meta((int) $query_args['favorites_by_user'], 'gd_user_favourite_post', true); |
|
2523 | 2523 | $user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1'; |
2524 | 2524 | } |
2525 | 2525 | |
2526 | - $where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')"; |
|
2526 | + $where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')"; |
|
2527 | 2527 | } |
2528 | 2528 | |
2529 | - if ( ! empty( $query_args['tax_query'] ) ) { |
|
2530 | - $tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' ); |
|
2529 | + if (!empty($query_args['tax_query'])) { |
|
2530 | + $tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID'); |
|
2531 | 2531 | |
2532 | - if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) { |
|
2532 | + if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) { |
|
2533 | 2533 | $where .= $tax_queries['where']; |
2534 | 2534 | } |
2535 | 2535 | } |
@@ -2550,11 +2550,11 @@ discard block |
||
2550 | 2550 | * |
2551 | 2551 | * @return string Modified orderby clause SQL. |
2552 | 2552 | */ |
2553 | -function geodir_function_widget_listings_orderby( $orderby ) { |
|
2553 | +function geodir_function_widget_listings_orderby($orderby) { |
|
2554 | 2554 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2555 | 2555 | |
2556 | 2556 | $query_args = $gd_query_args_widgets; |
2557 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2557 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2558 | 2558 | return $orderby; |
2559 | 2559 | } |
2560 | 2560 | |
@@ -2573,15 +2573,15 @@ discard block |
||
2573 | 2573 | * |
2574 | 2574 | * @return int Query limit. |
2575 | 2575 | */ |
2576 | -function geodir_function_widget_listings_limit( $limit ) { |
|
2576 | +function geodir_function_widget_listings_limit($limit) { |
|
2577 | 2577 | global $wpdb, $plugin_prefix, $gd_query_args_widgets; |
2578 | 2578 | |
2579 | 2579 | $query_args = $gd_query_args_widgets; |
2580 | - if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) { |
|
2580 | + if (empty($query_args) || empty($query_args['is_geodir_loop'])) { |
|
2581 | 2581 | return $limit; |
2582 | 2582 | } |
2583 | 2583 | |
2584 | - if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) { |
|
2584 | + if (!empty($query_args) && !empty($query_args['posts_per_page'])) { |
|
2585 | 2585 | $limit = (int) $query_args['posts_per_page']; |
2586 | 2586 | } |
2587 | 2587 | |
@@ -2599,12 +2599,12 @@ discard block |
||
2599 | 2599 | * |
2600 | 2600 | * @return int Large size width. |
2601 | 2601 | */ |
2602 | -function geodir_media_image_large_width( $default = 800, $params = '' ) { |
|
2603 | - $large_size_w = get_option( 'large_size_w' ); |
|
2602 | +function geodir_media_image_large_width($default = 800, $params = '') { |
|
2603 | + $large_size_w = get_option('large_size_w'); |
|
2604 | 2604 | $large_size_w = $large_size_w > 0 ? $large_size_w : $default; |
2605 | - $large_size_w = absint( $large_size_w ); |
|
2605 | + $large_size_w = absint($large_size_w); |
|
2606 | 2606 | |
2607 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) { |
|
2607 | + if (!get_option('geodir_use_wp_media_large_size')) { |
|
2608 | 2608 | $large_size_w = 800; |
2609 | 2609 | } |
2610 | 2610 | |
@@ -2617,7 +2617,7 @@ discard block |
||
2617 | 2617 | * @param int $default Default width. |
2618 | 2618 | * @param string|array $params Image parameters. |
2619 | 2619 | */ |
2620 | - $large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params ); |
|
2620 | + $large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params); |
|
2621 | 2621 | |
2622 | 2622 | return $large_size_w; |
2623 | 2623 | } |
@@ -2633,12 +2633,12 @@ discard block |
||
2633 | 2633 | * |
2634 | 2634 | * @return int Large size height. |
2635 | 2635 | */ |
2636 | -function geodir_media_image_large_height( $default = 800, $params = '' ) { |
|
2637 | - $large_size_h = get_option( 'large_size_h' ); |
|
2636 | +function geodir_media_image_large_height($default = 800, $params = '') { |
|
2637 | + $large_size_h = get_option('large_size_h'); |
|
2638 | 2638 | $large_size_h = $large_size_h > 0 ? $large_size_h : $default; |
2639 | - $large_size_h = absint( $large_size_h ); |
|
2639 | + $large_size_h = absint($large_size_h); |
|
2640 | 2640 | |
2641 | - if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) { |
|
2641 | + if (!get_option('geodir_use_wp_media_large_size')) { |
|
2642 | 2642 | $large_size_h = 800; |
2643 | 2643 | } |
2644 | 2644 | |
@@ -2651,7 +2651,7 @@ discard block |
||
2651 | 2651 | * @param int $default Default height. |
2652 | 2652 | * @param string|array $params Image parameters. |
2653 | 2653 | */ |
2654 | - $large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params ); |
|
2654 | + $large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params); |
|
2655 | 2655 | |
2656 | 2656 | return $large_size_h; |
2657 | 2657 | } |
@@ -2668,8 +2668,8 @@ discard block |
||
2668 | 2668 | * |
2669 | 2669 | * @return string Sanitized name. |
2670 | 2670 | */ |
2671 | -function geodir_sanitize_location_name( $type, $name, $translate = true ) { |
|
2672 | - if ( $name == '' ) { |
|
2671 | +function geodir_sanitize_location_name($type, $name, $translate = true) { |
|
2672 | + if ($name == '') { |
|
2673 | 2673 | return null; |
2674 | 2674 | } |
2675 | 2675 | |
@@ -2678,13 +2678,13 @@ discard block |
||
2678 | 2678 | $type = $type == 'gd_city' ? 'city' : $type; |
2679 | 2679 | |
2680 | 2680 | $return = $name; |
2681 | - if ( function_exists( 'get_actual_location_name' ) ) { |
|
2682 | - $return = get_actual_location_name( $type, $name, $translate ); |
|
2681 | + if (function_exists('get_actual_location_name')) { |
|
2682 | + $return = get_actual_location_name($type, $name, $translate); |
|
2683 | 2683 | } else { |
2684 | - $return = preg_replace( '/-(\d+)$/', '', $return ); |
|
2685 | - $return = preg_replace( '/[_-]/', ' ', $return ); |
|
2686 | - $return = geodir_ucwords( $return ); |
|
2687 | - $return = $translate ? __( $return, 'geodirectory' ) : $return; |
|
2684 | + $return = preg_replace('/-(\d+)$/', '', $return); |
|
2685 | + $return = preg_replace('/[_-]/', ' ', $return); |
|
2686 | + $return = geodir_ucwords($return); |
|
2687 | + $return = $translate ? __($return, 'geodirectory') : $return; |
|
2688 | 2688 | } |
2689 | 2689 | |
2690 | 2690 | return $return; |
@@ -2702,26 +2702,26 @@ discard block |
||
2702 | 2702 | * |
2703 | 2703 | * @param int $number Comments number. |
2704 | 2704 | */ |
2705 | -function geodir_comments_number( $number ) { |
|
2705 | +function geodir_comments_number($number) { |
|
2706 | 2706 | global $post; |
2707 | 2707 | |
2708 | - if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) { |
|
2708 | + if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) { |
|
2709 | 2709 | $number = get_comments_number(); |
2710 | 2710 | |
2711 | - if ( $number > 1 ) { |
|
2712 | - $output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) ); |
|
2713 | - } elseif ( $number == 0 || $number == '' ) { |
|
2714 | - $output = __( 'No Comments', 'geodirectory' ); |
|
2711 | + if ($number > 1) { |
|
2712 | + $output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory')); |
|
2713 | + } elseif ($number == 0 || $number == '') { |
|
2714 | + $output = __('No Comments', 'geodirectory'); |
|
2715 | 2715 | } else { // must be one |
2716 | - $output = __( '1 Comment', 'geodirectory' ); |
|
2716 | + $output = __('1 Comment', 'geodirectory'); |
|
2717 | 2717 | } |
2718 | 2718 | } else { |
2719 | - if ( $number > 1 ) { |
|
2720 | - $output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) ); |
|
2721 | - } elseif ( $number == 0 || $number == '' ) { |
|
2722 | - $output = __( 'No Reviews', 'geodirectory' ); |
|
2719 | + if ($number > 1) { |
|
2720 | + $output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory')); |
|
2721 | + } elseif ($number == 0 || $number == '') { |
|
2722 | + $output = __('No Reviews', 'geodirectory'); |
|
2723 | 2723 | } else { // must be one |
2724 | - $output = __( '1 Review', 'geodirectory' ); |
|
2724 | + $output = __('1 Review', 'geodirectory'); |
|
2725 | 2725 | } |
2726 | 2726 | } |
2727 | 2727 | |
@@ -2738,18 +2738,18 @@ discard block |
||
2738 | 2738 | */ |
2739 | 2739 | function is_page_geodir_home() { |
2740 | 2740 | global $wpdb; |
2741 | - $cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() ); |
|
2742 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) { |
|
2743 | - remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 ); |
|
2741 | + $cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL()); |
|
2742 | + if (function_exists('geodir_location_geo_home_link')) { |
|
2743 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
2744 | 2744 | } |
2745 | - $home_url = home_url( '', 'http' ); |
|
2746 | - if ( function_exists( 'geodir_location_geo_home_link' ) ) { |
|
2747 | - add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 ); |
|
2745 | + $home_url = home_url('', 'http'); |
|
2746 | + if (function_exists('geodir_location_geo_home_link')) { |
|
2747 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
2748 | 2748 | } |
2749 | - $home_url = str_replace( "www.", "", $home_url ); |
|
2750 | - if ( ( strpos( $home_url, $cur_url ) !== false || strpos( $home_url . '/', $cur_url ) !== false ) && ( 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) ) { |
|
2749 | + $home_url = str_replace("www.", "", $home_url); |
|
2750 | + if ((strpos($home_url, $cur_url) !== false || strpos($home_url.'/', $cur_url) !== false) && ('page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page'))) { |
|
2751 | 2751 | return true; |
2752 | - } elseif ( get_query_var( 'page_id' ) == get_option( 'page_on_front' ) && 'page' == get_option( 'show_on_front' ) && get_option( 'page_on_front' ) && get_option( 'page_on_front' ) == get_option( 'geodir_home_page' ) ) { |
|
2752 | + } elseif (get_query_var('page_id') == get_option('page_on_front') && 'page' == get_option('show_on_front') && get_option('page_on_front') && get_option('page_on_front') == get_option('geodir_home_page')) { |
|
2753 | 2753 | return true; |
2754 | 2754 | } else { |
2755 | 2755 | return false; |
@@ -2769,18 +2769,18 @@ discard block |
||
2769 | 2769 | * |
2770 | 2770 | * @return string The canonical URL. |
2771 | 2771 | */ |
2772 | -function geodir_wpseo_homepage_canonical( $url ) { |
|
2772 | +function geodir_wpseo_homepage_canonical($url) { |
|
2773 | 2773 | global $post; |
2774 | 2774 | |
2775 | - if ( is_page_geodir_home() ) { |
|
2775 | + if (is_page_geodir_home()) { |
|
2776 | 2776 | return home_url(); |
2777 | 2777 | } |
2778 | 2778 | |
2779 | 2779 | return $url; |
2780 | 2780 | } |
2781 | 2781 | |
2782 | -add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 ); |
|
2783 | -add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 ); |
|
2782 | +add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10); |
|
2783 | +add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10); |
|
2784 | 2784 | |
2785 | 2785 | /** |
2786 | 2786 | * Add extra fields to google maps script call. |
@@ -2793,20 +2793,20 @@ discard block |
||
2793 | 2793 | * |
2794 | 2794 | * @return string Modified extra string. |
2795 | 2795 | */ |
2796 | -function geodir_googlemap_script_extra_details_page( $extra ) { |
|
2796 | +function geodir_googlemap_script_extra_details_page($extra) { |
|
2797 | 2797 | global $post; |
2798 | 2798 | $add_google_places_api = false; |
2799 | - if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) { |
|
2799 | + if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) { |
|
2800 | 2800 | $add_google_places_api = true; |
2801 | 2801 | } |
2802 | - if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) { |
|
2802 | + if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) { |
|
2803 | 2803 | $extra .= "&libraries=places"; |
2804 | 2804 | } |
2805 | 2805 | |
2806 | 2806 | return $extra; |
2807 | 2807 | } |
2808 | 2808 | |
2809 | -add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 ); |
|
2809 | +add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1); |
|
2810 | 2810 | |
2811 | 2811 | |
2812 | 2812 | /** |
@@ -2824,104 +2824,104 @@ discard block |
||
2824 | 2824 | * after_widget. |
2825 | 2825 | * @param array|string $instance The settings for the particular instance of the widget. |
2826 | 2826 | */ |
2827 | -function geodir_popular_post_category_output( $args = '', $instance = '' ) { |
|
2827 | +function geodir_popular_post_category_output($args = '', $instance = '') { |
|
2828 | 2828 | // prints the widget |
2829 | 2829 | global $wpdb, $plugin_prefix, $geodir_post_category_str; |
2830 | - extract( $args, EXTR_SKIP ); |
|
2830 | + extract($args, EXTR_SKIP); |
|
2831 | 2831 | |
2832 | 2832 | echo $before_widget; |
2833 | 2833 | |
2834 | 2834 | /** This filter is documented in geodirectory_widgets.php */ |
2835 | - $title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
2835 | + $title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
2836 | 2836 | |
2837 | 2837 | $gd_post_type = geodir_get_current_posttype(); |
2838 | 2838 | |
2839 | - $category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
2839 | + $category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15; |
|
2840 | 2840 | if (!isset($category_restrict)) { |
2841 | 2841 | $category_restrict = false; |
2842 | 2842 | } |
2843 | - if ( ! empty( $gd_post_type ) ) { |
|
2843 | + if (!empty($gd_post_type)) { |
|
2844 | 2844 | $default_post_type = $gd_post_type; |
2845 | - } elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) { |
|
2845 | + } elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) { |
|
2846 | 2846 | $default_post_type = $instance['default_post_type']; |
2847 | 2847 | } else { |
2848 | 2848 | $all_gd_post_type = geodir_get_posttypes(); |
2849 | - $default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : ''; |
|
2849 | + $default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : ''; |
|
2850 | 2850 | } |
2851 | - $parent_only = !empty( $instance['parent_only'] ) ? true : false; |
|
2851 | + $parent_only = !empty($instance['parent_only']) ? true : false; |
|
2852 | 2852 | |
2853 | 2853 | $taxonomy = array(); |
2854 | - if ( ! empty( $gd_post_type ) ) { |
|
2855 | - $taxonomy[] = $gd_post_type . "category"; |
|
2854 | + if (!empty($gd_post_type)) { |
|
2855 | + $taxonomy[] = $gd_post_type."category"; |
|
2856 | 2856 | } else { |
2857 | - $taxonomy = geodir_get_taxonomies( $gd_post_type ); |
|
2857 | + $taxonomy = geodir_get_taxonomies($gd_post_type); |
|
2858 | 2858 | } |
2859 | 2859 | |
2860 | 2860 | $taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy); |
2861 | 2861 | |
2862 | - $term_args = array( 'taxonomy' => $taxonomy ); |
|
2863 | - if ( $parent_only ) { |
|
2862 | + $term_args = array('taxonomy' => $taxonomy); |
|
2863 | + if ($parent_only) { |
|
2864 | 2864 | $term_args['parent'] = 0; |
2865 | 2865 | } |
2866 | 2866 | |
2867 | - $terms = get_terms( $term_args ); |
|
2867 | + $terms = get_terms($term_args); |
|
2868 | 2868 | $a_terms = array(); |
2869 | 2869 | $b_terms = array(); |
2870 | 2870 | |
2871 | - foreach ( $terms as $term ) { |
|
2872 | - if ( $term->count > 0 ) { |
|
2873 | - $a_terms[ $term->taxonomy ][] = $term; |
|
2871 | + foreach ($terms as $term) { |
|
2872 | + if ($term->count > 0) { |
|
2873 | + $a_terms[$term->taxonomy][] = $term; |
|
2874 | 2874 | } |
2875 | 2875 | } |
2876 | 2876 | |
2877 | - if ( ! empty( $a_terms ) ) { |
|
2878 | - foreach ( $a_terms as $b_key => $b_val ) { |
|
2879 | - $b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' ); |
|
2877 | + if (!empty($a_terms)) { |
|
2878 | + foreach ($a_terms as $b_key => $b_val) { |
|
2879 | + $b_terms[$b_key] = geodir_sort_terms($b_val, 'count'); |
|
2880 | 2880 | } |
2881 | 2881 | |
2882 | - $default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : ''; |
|
2882 | + $default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : ''; |
|
2883 | 2883 | |
2884 | 2884 | $tax_change_output = ''; |
2885 | - if ( count( $b_terms ) > 1 ) { |
|
2886 | - $tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
2887 | - foreach ( $b_terms as $key => $val ) { |
|
2888 | - $ptype = get_post_type_object( str_replace( "category", "", $key ) ); |
|
2889 | - $cpt_name = __( $ptype->labels->singular_name, 'geodirectory' ); |
|
2890 | - $tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>"; |
|
2885 | + if (count($b_terms) > 1) { |
|
2886 | + $tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax' onchange='geodir_get_post_term(this);'>"; |
|
2887 | + foreach ($b_terms as $key => $val) { |
|
2888 | + $ptype = get_post_type_object(str_replace("category", "", $key)); |
|
2889 | + $cpt_name = __($ptype->labels->singular_name, 'geodirectory'); |
|
2890 | + $tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>"; |
|
2891 | 2891 | } |
2892 | 2892 | $tax_change_output .= "</select>"; |
2893 | 2893 | } |
2894 | 2894 | |
2895 | - if ( ! empty( $b_terms ) ) { |
|
2896 | - $terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array |
|
2897 | - global $cat_count;//make global so we can change via function |
|
2895 | + if (!empty($b_terms)) { |
|
2896 | + $terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array |
|
2897 | + global $cat_count; //make global so we can change via function |
|
2898 | 2898 | $cat_count = 0; |
2899 | 2899 | ?> |
2900 | 2900 | <div class="geodir-category-list-in clearfix"> |
2901 | 2901 | <div class="geodir-cat-list clearfix"> |
2902 | 2902 | <?php |
2903 | - echo $before_title . __( $title ) . $after_title; |
|
2903 | + echo $before_title.__($title).$after_title; |
|
2904 | 2904 | |
2905 | 2905 | echo $tax_change_output; |
2906 | 2906 | |
2907 | 2907 | echo '<ul class="geodir-popular-cat-list">'; |
2908 | 2908 | |
2909 | - geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict); |
|
2909 | + geodir_helper_cat_list_output($terms, $category_limit, $category_restrict); |
|
2910 | 2910 | |
2911 | 2911 | echo '</ul>'; |
2912 | 2912 | ?> |
2913 | 2913 | </div> |
2914 | 2914 | <?php |
2915 | 2915 | $hide = ''; |
2916 | - if ( $cat_count < $category_limit ) { |
|
2916 | + if ($cat_count < $category_limit) { |
|
2917 | 2917 | $hide = 'style="display:none;"'; |
2918 | 2918 | } |
2919 | 2919 | echo "<div class='geodir-cat-list-more' $hide >"; |
2920 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>'; |
|
2921 | - echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>'; |
|
2920 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>'; |
|
2921 | + echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>'; |
|
2922 | 2922 | echo "</div>"; |
2923 | 2923 | /* add scripts */ |
2924 | - add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 ); |
|
2924 | + add_action('wp_footer', 'geodir_popular_category_add_scripts', 100); |
|
2925 | 2925 | ?> |
2926 | 2926 | </div> |
2927 | 2927 | <?php |
@@ -2941,28 +2941,28 @@ discard block |
||
2941 | 2941 | * @param int $category_limit Number of categories to display by default. |
2942 | 2942 | * @param bool $category_restrict If the cat limit shoudl be hidden or not shown. |
2943 | 2943 | */ |
2944 | -function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) { |
|
2944 | +function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) { |
|
2945 | 2945 | global $geodir_post_category_str, $cat_count; |
2946 | 2946 | $term_icons = geodir_get_term_icon(); |
2947 | 2947 | |
2948 | 2948 | $geodir_post_category_str = array(); |
2949 | 2949 | |
2950 | 2950 | |
2951 | - foreach ( $terms as $cat ) { |
|
2952 | - $post_type = str_replace( "category", "", $cat->taxonomy ); |
|
2953 | - $term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : ''; |
|
2951 | + foreach ($terms as $cat) { |
|
2952 | + $post_type = str_replace("category", "", $cat->taxonomy); |
|
2953 | + $term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : ''; |
|
2954 | 2954 | |
2955 | - $cat_count ++; |
|
2955 | + $cat_count++; |
|
2956 | 2956 | |
2957 | - $geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id ); |
|
2957 | + $geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id); |
|
2958 | 2958 | |
2959 | - $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show'; |
|
2960 | - if($category_restrict && $cat_count > $category_limit ){ |
|
2959 | + $class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show'; |
|
2960 | + if ($category_restrict && $cat_count > $category_limit) { |
|
2961 | 2961 | continue; |
2962 | 2962 | } |
2963 | 2963 | $total_post = $cat->count; |
2964 | 2964 | |
2965 | - $term_link = get_term_link( $cat, $cat->taxonomy ); |
|
2965 | + $term_link = get_term_link($cat, $cat->taxonomy); |
|
2966 | 2966 | /** |
2967 | 2967 | * Filer the category term link. |
2968 | 2968 | * |
@@ -2972,11 +2972,11 @@ discard block |
||
2972 | 2972 | * @param int $cat ->term_id The term id. |
2973 | 2973 | * @param string $post_type Wordpress post type. |
2974 | 2974 | */ |
2975 | - $term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type ); |
|
2975 | + $term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type); |
|
2976 | 2976 | |
2977 | - echo '<li class="' . $class_row . '"><a href="' . $term_link . '">'; |
|
2978 | - echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">'; |
|
2979 | - echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> '; |
|
2977 | + echo '<li class="'.$class_row.'"><a href="'.$term_link.'">'; |
|
2978 | + echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">'; |
|
2979 | + echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> '; |
|
2980 | 2980 | echo '</a></li>'; |
2981 | 2981 | } |
2982 | 2982 | } |
@@ -2991,14 +2991,14 @@ discard block |
||
2991 | 2991 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
2992 | 2992 | * @param array|string $instance The settings for the particular instance of the widget. |
2993 | 2993 | */ |
2994 | -function geodir_listing_slider_widget_output( $args = '', $instance = '' ) { |
|
2994 | +function geodir_listing_slider_widget_output($args = '', $instance = '') { |
|
2995 | 2995 | // prints the widget |
2996 | - extract( $args, EXTR_SKIP ); |
|
2996 | + extract($args, EXTR_SKIP); |
|
2997 | 2997 | |
2998 | 2998 | echo $before_widget; |
2999 | 2999 | |
3000 | 3000 | /** This filter is documented in geodirectory_widgets.php */ |
3001 | - $title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
3001 | + $title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
3002 | 3002 | /** |
3003 | 3003 | * Filter the widget post type. |
3004 | 3004 | * |
@@ -3006,7 +3006,7 @@ discard block |
||
3006 | 3006 | * |
3007 | 3007 | * @param string $instance ['post_type'] Post type of listing. |
3008 | 3008 | */ |
3009 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
3009 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']); |
|
3010 | 3010 | /** |
3011 | 3011 | * Filter the widget's term. |
3012 | 3012 | * |
@@ -3014,7 +3014,7 @@ discard block |
||
3014 | 3014 | * |
3015 | 3015 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
3016 | 3016 | */ |
3017 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
3017 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']); |
|
3018 | 3018 | /** |
3019 | 3019 | * Filter widget's "add_location_filter" value. |
3020 | 3020 | * |
@@ -3022,7 +3022,7 @@ discard block |
||
3022 | 3022 | * |
3023 | 3023 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
3024 | 3024 | */ |
3025 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
3025 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']); |
|
3026 | 3026 | /** |
3027 | 3027 | * Filter the widget listings limit. |
3028 | 3028 | * |
@@ -3030,7 +3030,7 @@ discard block |
||
3030 | 3030 | * |
3031 | 3031 | * @param string $instance ['post_number'] Number of listings to display. |
3032 | 3032 | */ |
3033 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
3033 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']); |
|
3034 | 3034 | /** |
3035 | 3035 | * Filter the widget listings limit shown at one time. |
3036 | 3036 | * |
@@ -3038,7 +3038,7 @@ discard block |
||
3038 | 3038 | * |
3039 | 3039 | * @param string $instance ['max_show'] Number of listings to display on screen. |
3040 | 3040 | */ |
3041 | - $max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] ); |
|
3041 | + $max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']); |
|
3042 | 3042 | /** |
3043 | 3043 | * Filter the widget slide width. |
3044 | 3044 | * |
@@ -3046,7 +3046,7 @@ discard block |
||
3046 | 3046 | * |
3047 | 3047 | * @param string $instance ['slide_width'] Width of the slides shown. |
3048 | 3048 | */ |
3049 | - $slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] ); |
|
3049 | + $slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']); |
|
3050 | 3050 | /** |
3051 | 3051 | * Filter widget's "show title" value. |
3052 | 3052 | * |
@@ -3054,7 +3054,7 @@ discard block |
||
3054 | 3054 | * |
3055 | 3055 | * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0. |
3056 | 3056 | */ |
3057 | - $show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] ); |
|
3057 | + $show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']); |
|
3058 | 3058 | /** |
3059 | 3059 | * Filter widget's "slideshow" value. |
3060 | 3060 | * |
@@ -3062,7 +3062,7 @@ discard block |
||
3062 | 3062 | * |
3063 | 3063 | * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically. |
3064 | 3064 | */ |
3065 | - $slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] ); |
|
3065 | + $slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']); |
|
3066 | 3066 | /** |
3067 | 3067 | * Filter widget's "animationLoop" value. |
3068 | 3068 | * |
@@ -3070,7 +3070,7 @@ discard block |
||
3070 | 3070 | * |
3071 | 3071 | * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop. |
3072 | 3072 | */ |
3073 | - $animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] ); |
|
3073 | + $animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']); |
|
3074 | 3074 | /** |
3075 | 3075 | * Filter widget's "directionNav" value. |
3076 | 3076 | * |
@@ -3078,7 +3078,7 @@ discard block |
||
3078 | 3078 | * |
3079 | 3079 | * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0. |
3080 | 3080 | */ |
3081 | - $directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] ); |
|
3081 | + $directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']); |
|
3082 | 3082 | /** |
3083 | 3083 | * Filter widget's "slideshowSpeed" value. |
3084 | 3084 | * |
@@ -3086,7 +3086,7 @@ discard block |
||
3086 | 3086 | * |
3087 | 3087 | * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds. |
3088 | 3088 | */ |
3089 | - $slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] ); |
|
3089 | + $slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']); |
|
3090 | 3090 | /** |
3091 | 3091 | * Filter widget's "animationSpeed" value. |
3092 | 3092 | * |
@@ -3094,7 +3094,7 @@ discard block |
||
3094 | 3094 | * |
3095 | 3095 | * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds. |
3096 | 3096 | */ |
3097 | - $animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] ); |
|
3097 | + $animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']); |
|
3098 | 3098 | /** |
3099 | 3099 | * Filter widget's "animation" value. |
3100 | 3100 | * |
@@ -3102,7 +3102,7 @@ discard block |
||
3102 | 3102 | * |
3103 | 3103 | * @param string $instance ['animation'] Controls the animation type, "fade" or "slide". |
3104 | 3104 | */ |
3105 | - $animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] ); |
|
3105 | + $animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']); |
|
3106 | 3106 | /** |
3107 | 3107 | * Filter widget's "list_sort" type. |
3108 | 3108 | * |
@@ -3110,10 +3110,10 @@ discard block |
||
3110 | 3110 | * |
3111 | 3111 | * @param string $instance ['list_sort'] Listing sort by type. |
3112 | 3112 | */ |
3113 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
3114 | - $show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null; |
|
3113 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']); |
|
3114 | + $show_featured_only = !empty($instance['show_featured_only']) ? 1 : null; |
|
3115 | 3115 | |
3116 | - wp_enqueue_script( 'geodirectory-jquery-flexslider-js' ); |
|
3116 | + wp_enqueue_script('geodirectory-jquery-flexslider-js'); |
|
3117 | 3117 | ?> |
3118 | 3118 | <script type="text/javascript"> |
3119 | 3119 | jQuery(window).load(function () { |
@@ -3132,7 +3132,7 @@ discard block |
||
3132 | 3132 | itemWidth: 75, |
3133 | 3133 | itemMargin: 5, |
3134 | 3134 | asNavFor: '#geodir_widget_slider', |
3135 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>, |
|
3135 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>, |
|
3136 | 3136 | start: function (slider) { |
3137 | 3137 | // chrome 53 introduced a bug, so we need to repaint the slider when shown. |
3138 | 3138 | jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl'); |
@@ -3140,19 +3140,19 @@ discard block |
||
3140 | 3140 | }); |
3141 | 3141 | |
3142 | 3142 | jQuery('#geodir_widget_slider').flexslider({ |
3143 | - animation: "<?php echo $animation;?>", |
|
3143 | + animation: "<?php echo $animation; ?>", |
|
3144 | 3144 | selector: ".geodir-slides > li", |
3145 | 3145 | namespace: "geodir-", |
3146 | 3146 | controlNav: true, |
3147 | - animationLoop: <?php echo $animationLoop;?>, |
|
3148 | - slideshow: <?php echo $slideshow;?>, |
|
3149 | - slideshowSpeed: <?php echo $slideshowSpeed;?>, |
|
3150 | - animationSpeed: <?php echo $animationSpeed;?>, |
|
3151 | - directionNav: <?php echo $directionNav;?>, |
|
3152 | - maxItems: <?php echo $max_show;?>, |
|
3147 | + animationLoop: <?php echo $animationLoop; ?>, |
|
3148 | + slideshow: <?php echo $slideshow; ?>, |
|
3149 | + slideshowSpeed: <?php echo $slideshowSpeed; ?>, |
|
3150 | + animationSpeed: <?php echo $animationSpeed; ?>, |
|
3151 | + directionNav: <?php echo $directionNav; ?>, |
|
3152 | + maxItems: <?php echo $max_show; ?>, |
|
3153 | 3153 | move: 1, |
3154 | - <?php if ( $slide_width ) { |
|
3155 | - echo "itemWidth: " . $slide_width . ","; |
|
3154 | + <?php if ($slide_width) { |
|
3155 | + echo "itemWidth: ".$slide_width.","; |
|
3156 | 3156 | }?> |
3157 | 3157 | sync: "#geodir_widget_carousel", |
3158 | 3158 | start: function (slider) { |
@@ -3163,7 +3163,7 @@ discard block |
||
3163 | 3163 | jQuery('#geodir_widget_slider').css({'visibility': 'visible'}); |
3164 | 3164 | jQuery('#geodir_widget_carousel').css({'visibility': 'visible'}); |
3165 | 3165 | }, |
3166 | - rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?> |
|
3166 | + rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?> |
|
3167 | 3167 | }); |
3168 | 3168 | }); |
3169 | 3169 | </script> |
@@ -3176,62 +3176,62 @@ discard block |
||
3176 | 3176 | 'order_by' => $list_sort |
3177 | 3177 | ); |
3178 | 3178 | |
3179 | - if ( $show_featured_only ) { |
|
3179 | + if ($show_featured_only) { |
|
3180 | 3180 | $query_args['show_featured_only'] = 1; |
3181 | 3181 | } |
3182 | 3182 | |
3183 | - if ( $category != 0 || $category != '' ) { |
|
3184 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
3183 | + if ($category != 0 || $category != '') { |
|
3184 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
3185 | 3185 | $tax_query = array( |
3186 | 3186 | 'taxonomy' => $category_taxonomy[0], |
3187 | 3187 | 'field' => 'id', |
3188 | 3188 | 'terms' => $category |
3189 | 3189 | ); |
3190 | 3190 | |
3191 | - $query_args['tax_query'] = array( $tax_query ); |
|
3191 | + $query_args['tax_query'] = array($tax_query); |
|
3192 | 3192 | } |
3193 | 3193 | |
3194 | 3194 | // we want listings with featured image only |
3195 | 3195 | $query_args['featured_image_only'] = 1; |
3196 | 3196 | |
3197 | - if ( $post_type == 'gd_event' ) { |
|
3197 | + if ($post_type == 'gd_event') { |
|
3198 | 3198 | $query_args['gedir_event_listing_filter'] = 'upcoming'; |
3199 | 3199 | }// show only upcoming events |
3200 | 3200 | |
3201 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
3202 | - if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) { |
|
3203 | - if ( $title ) { |
|
3204 | - echo $before_title . $title . $after_title; |
|
3201 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
3202 | + if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) { |
|
3203 | + if ($title) { |
|
3204 | + echo $before_title.$title.$after_title; |
|
3205 | 3205 | } |
3206 | 3206 | |
3207 | 3207 | global $post; |
3208 | 3208 | |
3209 | - $current_post = $post;// keep current post info |
|
3209 | + $current_post = $post; // keep current post info |
|
3210 | 3210 | |
3211 | 3211 | $widget_main_slides = ''; |
3212 | 3212 | $nav_slides = ''; |
3213 | 3213 | $widget_slides = 0; |
3214 | 3214 | |
3215 | - foreach ( $widget_listings as $widget_listing ) { |
|
3215 | + foreach ($widget_listings as $widget_listing) { |
|
3216 | 3216 | global $gd_widget_listing_type; |
3217 | 3217 | $post = $widget_listing; |
3218 | - $widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) ); |
|
3218 | + $widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img')); |
|
3219 | 3219 | |
3220 | - if ( ! empty( $widget_image ) ) { |
|
3221 | - if ( $widget_image->height >= 200 ) { |
|
3220 | + if (!empty($widget_image)) { |
|
3221 | + if ($widget_image->height >= 200) { |
|
3222 | 3222 | $widget_spacer_height = 0; |
3223 | 3223 | } else { |
3224 | - $widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 ); |
|
3224 | + $widget_spacer_height = ((200 - $widget_image->height) / 2); |
|
3225 | 3225 | } |
3226 | 3226 | |
3227 | - $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="' . geodir_plugin_url() . "/geodirectory-assets/images/spacer.gif" . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:' . $widget_spacer_height . 'px !important;margin:0 auto;" width="100" />'; |
|
3227 | + $widget_main_slides .= '<li class="geodir-listing-slider-widget"><img class="geodir-listing-slider-spacer" src="'.geodir_plugin_url()."/geodirectory-assets/images/spacer.gif".'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:'.$widget_spacer_height.'px !important;margin:0 auto;" width="100" />'; |
|
3228 | 3228 | |
3229 | 3229 | $title = ''; |
3230 | - if ( $show_title ) { |
|
3231 | - $title_html = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>'; |
|
3230 | + if ($show_title) { |
|
3231 | + $title_html = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>'; |
|
3232 | 3232 | $post_id = $post->ID; |
3233 | - $post_permalink = get_permalink( $post->ID ); |
|
3234 | - $post_title = get_the_title( $post->ID ); |
|
3233 | + $post_permalink = get_permalink($post->ID); |
|
3234 | + $post_title = get_the_title($post->ID); |
|
3235 | 3235 | /** |
3236 | 3236 | * Filter the listing slider widget title. |
3237 | 3237 | * |
@@ -3242,12 +3242,12 @@ discard block |
||
3242 | 3242 | * @param string $post_permalink The post permalink url. |
3243 | 3243 | * @param string $post_title The post title text. |
3244 | 3244 | */ |
3245 | - $title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title ); |
|
3245 | + $title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title); |
|
3246 | 3246 | } |
3247 | 3247 | |
3248 | - $widget_main_slides .= $title . '<img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:200px;margin:0 auto;" /></li>'; |
|
3249 | - $nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>'; |
|
3250 | - $widget_slides ++; |
|
3248 | + $widget_main_slides .= $title.'<img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:200px;margin:0 auto;" /></li>'; |
|
3249 | + $nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>'; |
|
3250 | + $widget_slides++; |
|
3251 | 3251 | } |
3252 | 3252 | } |
3253 | 3253 | ?> |
@@ -3256,7 +3256,7 @@ discard block |
||
3256 | 3256 | <div id="geodir_widget_slider" class="geodir_flexslider"> |
3257 | 3257 | <ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul> |
3258 | 3258 | </div> |
3259 | - <?php if ( $widget_slides > 1 ) { ?> |
|
3259 | + <?php if ($widget_slides > 1) { ?> |
|
3260 | 3260 | <div id="geodir_widget_carousel" class="geodir_flexslider"> |
3261 | 3261 | <ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul> |
3262 | 3262 | </div> |
@@ -3264,7 +3264,7 @@ discard block |
||
3264 | 3264 | </div> |
3265 | 3265 | <?php |
3266 | 3266 | $GLOBALS['post'] = $current_post; |
3267 | - setup_postdata( $current_post ); |
|
3267 | + setup_postdata($current_post); |
|
3268 | 3268 | } |
3269 | 3269 | echo $after_widget; |
3270 | 3270 | } |
@@ -3280,46 +3280,46 @@ discard block |
||
3280 | 3280 | * @param array|string $args Display arguments including before_title, after_title, before_widget, and after_widget. |
3281 | 3281 | * @param array|string $instance The settings for the particular instance of the widget. |
3282 | 3282 | */ |
3283 | -function geodir_loginwidget_output( $args = '', $instance = '' ) { |
|
3283 | +function geodir_loginwidget_output($args = '', $instance = '') { |
|
3284 | 3284 | //print_r($args); |
3285 | 3285 | //print_r($instance); |
3286 | 3286 | // prints the widget |
3287 | - extract( $args, EXTR_SKIP ); |
|
3287 | + extract($args, EXTR_SKIP); |
|
3288 | 3288 | |
3289 | 3289 | /** This filter is documented in geodirectory_widgets.php */ |
3290 | - $title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
3290 | + $title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory')); |
|
3291 | 3291 | |
3292 | 3292 | echo $before_widget; |
3293 | - echo $before_title . $title . $after_title; |
|
3293 | + echo $before_title.$title.$after_title; |
|
3294 | 3294 | |
3295 | - if ( is_user_logged_in() ) { |
|
3295 | + if (is_user_logged_in()) { |
|
3296 | 3296 | global $current_user; |
3297 | 3297 | |
3298 | - $author_link = get_author_posts_url( $current_user->data->ID ); |
|
3299 | - $author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false ); |
|
3298 | + $author_link = get_author_posts_url($current_user->data->ID); |
|
3299 | + $author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false); |
|
3300 | 3300 | |
3301 | 3301 | echo '<ul class="geodir-loginbox-list">'; |
3302 | 3302 | ob_start(); |
3303 | 3303 | ?> |
3304 | 3304 | <li><a class="signin" |
3305 | - href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li> |
|
3305 | + href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li> |
|
3306 | 3306 | <?php |
3307 | - $post_types = geodir_get_posttypes( 'object' ); |
|
3308 | - $show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' ); |
|
3309 | - $geodir_allow_posttype_frontend = get_option( 'geodir_allow_posttype_frontend' ); |
|
3307 | + $post_types = geodir_get_posttypes('object'); |
|
3308 | + $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard'); |
|
3309 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend'); |
|
3310 | 3310 | |
3311 | - if ( ! empty( $show_add_listing_post_types_main_nav ) ) { |
|
3311 | + if (!empty($show_add_listing_post_types_main_nav)) { |
|
3312 | 3312 | $addlisting_links = ''; |
3313 | - foreach ( $post_types as $key => $postobj ) { |
|
3313 | + foreach ($post_types as $key => $postobj) { |
|
3314 | 3314 | |
3315 | - if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) { |
|
3315 | + if (in_array($key, $show_add_listing_post_types_main_nav)) { |
|
3316 | 3316 | |
3317 | - if ( $add_link = geodir_get_addlisting_link( $key ) ) { |
|
3317 | + if ($add_link = geodir_get_addlisting_link($key)) { |
|
3318 | 3318 | |
3319 | 3319 | $name = $postobj->labels->name; |
3320 | 3320 | |
3321 | 3321 | $selected = ''; |
3322 | - if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) { |
|
3322 | + if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) { |
|
3323 | 3323 | $selected = 'selected="selected"'; |
3324 | 3324 | } |
3325 | 3325 | |
@@ -3332,22 +3332,22 @@ discard block |
||
3332 | 3332 | * @param string $key Add listing array key. |
3333 | 3333 | * @param int $current_user ->ID Current user ID. |
3334 | 3334 | */ |
3335 | - $add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID ); |
|
3335 | + $add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID); |
|
3336 | 3336 | |
3337 | - $addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
3337 | + $addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
3338 | 3338 | |
3339 | 3339 | } |
3340 | 3340 | } |
3341 | 3341 | |
3342 | 3342 | } |
3343 | 3343 | |
3344 | - if ( $addlisting_links != '' ) { ?> |
|
3344 | + if ($addlisting_links != '') { ?> |
|
3345 | 3345 | |
3346 | 3346 | <li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value" |
3347 | 3347 | option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false" |
3348 | - data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>"> |
|
3348 | + data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>"> |
|
3349 | 3349 | <option value="" disabled="disabled" selected="selected" |
3350 | - style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option> |
|
3350 | + style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option> |
|
3351 | 3351 | <?php echo $addlisting_links; ?> |
3352 | 3352 | </select></li> <?php |
3353 | 3353 | |
@@ -3355,23 +3355,23 @@ discard block |
||
3355 | 3355 | |
3356 | 3356 | } |
3357 | 3357 | // My Favourites in Dashboard |
3358 | - $show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' ); |
|
3358 | + $show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard'); |
|
3359 | 3359 | $user_favourite = geodir_user_favourite_listing_count(); |
3360 | 3360 | |
3361 | - if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) { |
|
3361 | + if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) { |
|
3362 | 3362 | $favourite_links = ''; |
3363 | 3363 | |
3364 | - foreach ( $post_types as $key => $postobj ) { |
|
3365 | - if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) { |
|
3364 | + foreach ($post_types as $key => $postobj) { |
|
3365 | + if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) { |
|
3366 | 3366 | $name = $postobj->labels->name; |
3367 | - $post_type_link = geodir_getlink( $author_link, array( |
|
3367 | + $post_type_link = geodir_getlink($author_link, array( |
|
3368 | 3368 | 'stype' => $key, |
3369 | 3369 | 'list' => 'favourite' |
3370 | - ), false ); |
|
3370 | + ), false); |
|
3371 | 3371 | |
3372 | 3372 | $selected = ''; |
3373 | 3373 | |
3374 | - if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) { |
|
3374 | + if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) { |
|
3375 | 3375 | $selected = 'selected="selected"'; |
3376 | 3376 | } |
3377 | 3377 | /** |
@@ -3383,20 +3383,20 @@ discard block |
||
3383 | 3383 | * @param string $key Favorite listing array key. |
3384 | 3384 | * @param int $current_user ->ID Current user ID. |
3385 | 3385 | */ |
3386 | - $post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID ); |
|
3386 | + $post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID); |
|
3387 | 3387 | |
3388 | - $favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
3388 | + $favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
3389 | 3389 | } |
3390 | 3390 | } |
3391 | 3391 | |
3392 | - if ( $favourite_links != '' ) { |
|
3392 | + if ($favourite_links != '') { |
|
3393 | 3393 | ?> |
3394 | 3394 | <li> |
3395 | 3395 | <select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value" |
3396 | 3396 | option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false" |
3397 | - data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>"> |
|
3397 | + data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>"> |
|
3398 | 3398 | <option value="" disabled="disabled" selected="selected" |
3399 | - style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option> |
|
3399 | + style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option> |
|
3400 | 3400 | <?php echo $favourite_links; ?> |
3401 | 3401 | </select> |
3402 | 3402 | </li> |
@@ -3405,19 +3405,19 @@ discard block |
||
3405 | 3405 | } |
3406 | 3406 | |
3407 | 3407 | |
3408 | - $show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' ); |
|
3408 | + $show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard'); |
|
3409 | 3409 | $user_listing = geodir_user_post_listing_count(); |
3410 | 3410 | |
3411 | - if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) { |
|
3411 | + if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) { |
|
3412 | 3412 | $listing_links = ''; |
3413 | 3413 | |
3414 | - foreach ( $post_types as $key => $postobj ) { |
|
3415 | - if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) { |
|
3414 | + foreach ($post_types as $key => $postobj) { |
|
3415 | + if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) { |
|
3416 | 3416 | $name = $postobj->labels->name; |
3417 | - $listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false ); |
|
3417 | + $listing_link = geodir_getlink($author_link, array('stype' => $key), false); |
|
3418 | 3418 | |
3419 | 3419 | $selected = ''; |
3420 | - if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) { |
|
3420 | + if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) { |
|
3421 | 3421 | $selected = 'selected="selected"'; |
3422 | 3422 | } |
3423 | 3423 | |
@@ -3430,20 +3430,20 @@ discard block |
||
3430 | 3430 | * @param string $key My listing array key. |
3431 | 3431 | * @param int $current_user ->ID Current user ID. |
3432 | 3432 | */ |
3433 | - $listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID ); |
|
3433 | + $listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID); |
|
3434 | 3434 | |
3435 | - $listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( ucfirst( $name ), 'geodirectory' ) . '</option>'; |
|
3435 | + $listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(ucfirst($name), 'geodirectory').'</option>'; |
|
3436 | 3436 | } |
3437 | 3437 | } |
3438 | 3438 | |
3439 | - if ( $listing_links != '' ) { |
|
3439 | + if ($listing_links != '') { |
|
3440 | 3440 | ?> |
3441 | 3441 | <li> |
3442 | 3442 | <select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value" |
3443 | 3443 | option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false" |
3444 | - data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>"> |
|
3444 | + data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>"> |
|
3445 | 3445 | <option value="" disabled="disabled" selected="selected" |
3446 | - style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option> |
|
3446 | + style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option> |
|
3447 | 3447 | <?php echo $listing_links; ?> |
3448 | 3448 | </select> |
3449 | 3449 | </li> |
@@ -3459,7 +3459,7 @@ discard block |
||
3459 | 3459 | * |
3460 | 3460 | * @param string $dashboard_link Dashboard links HTML. |
3461 | 3461 | */ |
3462 | - echo apply_filters( 'geodir_dashboard_links', $dashboard_link ); |
|
3462 | + echo apply_filters('geodir_dashboard_links', $dashboard_link); |
|
3463 | 3463 | echo '</ul>'; |
3464 | 3464 | |
3465 | 3465 | /** |
@@ -3467,7 +3467,7 @@ discard block |
||
3467 | 3467 | * |
3468 | 3468 | * @since 1.6.6 |
3469 | 3469 | */ |
3470 | - do_action( 'geodir_after_loginwidget_form_logged_in' ); |
|
3470 | + do_action('geodir_after_loginwidget_form_logged_in'); |
|
3471 | 3471 | |
3472 | 3472 | |
3473 | 3473 | } else { |
@@ -3482,18 +3482,18 @@ discard block |
||
3482 | 3482 | <form name="loginform" class="loginform1" |
3483 | 3483 | action="<?php echo geodir_login_url(); ?>" |
3484 | 3484 | method="post"> |
3485 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log" |
|
3485 | + <div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log" |
|
3486 | 3486 | type="text" class="textfield user_login1"/> <span |
3487 | 3487 | class="user_loginInfo"></span></div> |
3488 | - <div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>" |
|
3488 | + <div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>" |
|
3489 | 3489 | name="pwd" type="password" |
3490 | 3490 | class="textfield user_pass1 input-text"/><span |
3491 | 3491 | class="user_passInfo"></span></div> |
3492 | 3492 | |
3493 | - <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/> |
|
3493 | + <input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/> |
|
3494 | 3494 | <input type="hidden" name="testcookie" value="1"/> |
3495 | 3495 | |
3496 | - <?php do_action( 'login_form' ); ?> |
|
3496 | + <?php do_action('login_form'); ?> |
|
3497 | 3497 | |
3498 | 3498 | <div class="geodir_form_row clearfix"><input type="submit" name="submit" |
3499 | 3499 | value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/> |
@@ -3505,11 +3505,11 @@ discard block |
||
3505 | 3505 | * |
3506 | 3506 | * @since 1.0.0 |
3507 | 3507 | */ |
3508 | - $is_enable_signup = get_option( 'users_can_register' ); |
|
3508 | + $is_enable_signup = get_option('users_can_register'); |
|
3509 | 3509 | |
3510 | - if ( $is_enable_signup ) { |
|
3510 | + if ($is_enable_signup) { |
|
3511 | 3511 | ?> |
3512 | - <a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>" |
|
3512 | + <a href="<?php echo geodir_login_url(array('signup' => true)); ?>" |
|
3513 | 3513 | class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a> |
3514 | 3514 | |
3515 | 3515 | <?php |
@@ -3520,7 +3520,7 @@ discard block |
||
3520 | 3520 | * @since 1.0.0 |
3521 | 3521 | */ |
3522 | 3522 | ?> |
3523 | - <a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>" |
|
3523 | + <a href="<?php echo geodir_login_url(array('forgot' => true)); ?>" |
|
3524 | 3524 | class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div> |
3525 | 3525 | </form> |
3526 | 3526 | <?php |
@@ -3529,7 +3529,7 @@ discard block |
||
3529 | 3529 | * |
3530 | 3530 | * @since 1.6.6 |
3531 | 3531 | */ |
3532 | - do_action( 'geodir_after_loginwidget_form_logged_out' ); |
|
3532 | + do_action('geodir_after_loginwidget_form_logged_out'); |
|
3533 | 3533 | } |
3534 | 3534 | |
3535 | 3535 | echo $after_widget; |
@@ -3551,16 +3551,16 @@ discard block |
||
3551 | 3551 | * after_widget. |
3552 | 3552 | * @param array|string $instance The settings for the particular instance of the widget. |
3553 | 3553 | */ |
3554 | -function geodir_popular_postview_output( $args = '', $instance = '' ) { |
|
3554 | +function geodir_popular_postview_output($args = '', $instance = '') { |
|
3555 | 3555 | global $gd_session; |
3556 | 3556 | |
3557 | 3557 | // prints the widget |
3558 | - extract( $args, EXTR_SKIP ); |
|
3558 | + extract($args, EXTR_SKIP); |
|
3559 | 3559 | |
3560 | 3560 | echo $before_widget; |
3561 | 3561 | |
3562 | 3562 | /** This filter is documented in geodirectory_widgets.php */ |
3563 | - $title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) ); |
|
3563 | + $title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory')); |
|
3564 | 3564 | /** |
3565 | 3565 | * Filter the widget post type. |
3566 | 3566 | * |
@@ -3568,7 +3568,7 @@ discard block |
||
3568 | 3568 | * |
3569 | 3569 | * @param string $instance ['post_type'] Post type of listing. |
3570 | 3570 | */ |
3571 | - $post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] ); |
|
3571 | + $post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']); |
|
3572 | 3572 | /** |
3573 | 3573 | * Filter the widget's term. |
3574 | 3574 | * |
@@ -3576,7 +3576,7 @@ discard block |
||
3576 | 3576 | * |
3577 | 3577 | * @param string $instance ['category'] Filter by term. Can be any valid term. |
3578 | 3578 | */ |
3579 | - $category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] ); |
|
3579 | + $category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']); |
|
3580 | 3580 | /** |
3581 | 3581 | * Filter the widget listings limit. |
3582 | 3582 | * |
@@ -3584,7 +3584,7 @@ discard block |
||
3584 | 3584 | * |
3585 | 3585 | * @param string $instance ['post_number'] Number of listings to display. |
3586 | 3586 | */ |
3587 | - $post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] ); |
|
3587 | + $post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']); |
|
3588 | 3588 | /** |
3589 | 3589 | * Filter widget's "layout" type. |
3590 | 3590 | * |
@@ -3592,7 +3592,7 @@ discard block |
||
3592 | 3592 | * |
3593 | 3593 | * @param string $instance ['layout'] Widget layout type. |
3594 | 3594 | */ |
3595 | - $layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] ); |
|
3595 | + $layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']); |
|
3596 | 3596 | /** |
3597 | 3597 | * Filter widget's "add_location_filter" value. |
3598 | 3598 | * |
@@ -3600,7 +3600,7 @@ discard block |
||
3600 | 3600 | * |
3601 | 3601 | * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0. |
3602 | 3602 | */ |
3603 | - $add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] ); |
|
3603 | + $add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']); |
|
3604 | 3604 | /** |
3605 | 3605 | * Filter widget's listing width. |
3606 | 3606 | * |
@@ -3608,7 +3608,7 @@ discard block |
||
3608 | 3608 | * |
3609 | 3609 | * @param string $instance ['listing_width'] Listing width. |
3610 | 3610 | */ |
3611 | - $listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] ); |
|
3611 | + $listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']); |
|
3612 | 3612 | /** |
3613 | 3613 | * Filter widget's "list_sort" type. |
3614 | 3614 | * |
@@ -3616,25 +3616,25 @@ discard block |
||
3616 | 3616 | * |
3617 | 3617 | * @param string $instance ['list_sort'] Listing sort by type. |
3618 | 3618 | */ |
3619 | - $list_sort = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] ); |
|
3620 | - $use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false; |
|
3619 | + $list_sort = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']); |
|
3620 | + $use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false; |
|
3621 | 3621 | |
3622 | 3622 | // set post type to current viewing post type |
3623 | - if ( $use_viewing_post_type ) { |
|
3623 | + if ($use_viewing_post_type) { |
|
3624 | 3624 | $current_post_type = geodir_get_current_posttype(); |
3625 | - if ( $current_post_type != '' && $current_post_type != $post_type ) { |
|
3625 | + if ($current_post_type != '' && $current_post_type != $post_type) { |
|
3626 | 3626 | $post_type = $current_post_type; |
3627 | 3627 | $category = array(); // old post type category will not work for current changed post type |
3628 | 3628 | } |
3629 | 3629 | } |
3630 | 3630 | // replace widget title dynamically |
3631 | - $posttype_plural_label = __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
3632 | - $posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' ); |
|
3631 | + $posttype_plural_label = __(get_post_type_plural_label($post_type), 'geodirectory'); |
|
3632 | + $posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory'); |
|
3633 | 3633 | |
3634 | - $title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title ); |
|
3635 | - $title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title ); |
|
3634 | + $title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title); |
|
3635 | + $title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title); |
|
3636 | 3636 | |
3637 | - if ( isset( $instance['character_count'] ) ) { |
|
3637 | + if (isset($instance['character_count'])) { |
|
3638 | 3638 | /** |
3639 | 3639 | * Filter the widget's excerpt character count. |
3640 | 3640 | * |
@@ -3642,37 +3642,37 @@ discard block |
||
3642 | 3642 | * |
3643 | 3643 | * @param int $instance ['character_count'] Excerpt character count. |
3644 | 3644 | */ |
3645 | - $character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] ); |
|
3645 | + $character_count = apply_filters('widget_list_character_count', $instance['character_count']); |
|
3646 | 3646 | } else { |
3647 | 3647 | $character_count = ''; |
3648 | 3648 | } |
3649 | 3649 | |
3650 | - if ( empty( $title ) || $title == 'All' ) { |
|
3651 | - $title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' ); |
|
3650 | + if (empty($title) || $title == 'All') { |
|
3651 | + $title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory'); |
|
3652 | 3652 | } |
3653 | 3653 | |
3654 | 3654 | $location_url = array(); |
3655 | - $city = get_query_var( 'gd_city' ); |
|
3656 | - if ( ! empty( $city ) ) { |
|
3657 | - $country = get_query_var( 'gd_country' ); |
|
3658 | - $region = get_query_var( 'gd_region' ); |
|
3655 | + $city = get_query_var('gd_city'); |
|
3656 | + if (!empty($city)) { |
|
3657 | + $country = get_query_var('gd_country'); |
|
3658 | + $region = get_query_var('gd_region'); |
|
3659 | 3659 | |
3660 | - $geodir_show_location_url = get_option( 'geodir_show_location_url' ); |
|
3660 | + $geodir_show_location_url = get_option('geodir_show_location_url'); |
|
3661 | 3661 | |
3662 | - if ( $geodir_show_location_url == 'all' ) { |
|
3663 | - if ( $country != '' ) { |
|
3662 | + if ($geodir_show_location_url == 'all') { |
|
3663 | + if ($country != '') { |
|
3664 | 3664 | $location_url[] = $country; |
3665 | 3665 | } |
3666 | 3666 | |
3667 | - if ( $region != '' ) { |
|
3667 | + if ($region != '') { |
|
3668 | 3668 | $location_url[] = $region; |
3669 | 3669 | } |
3670 | - } else if ( $geodir_show_location_url == 'country_city' ) { |
|
3671 | - if ( $country != '' ) { |
|
3670 | + } else if ($geodir_show_location_url == 'country_city') { |
|
3671 | + if ($country != '') { |
|
3672 | 3672 | $location_url[] = $country; |
3673 | 3673 | } |
3674 | - } else if ( $geodir_show_location_url == 'region_city' ) { |
|
3675 | - if ( $region != '' ) { |
|
3674 | + } else if ($geodir_show_location_url == 'region_city') { |
|
3675 | + if ($region != '') { |
|
3676 | 3676 | $location_url[] = $region; |
3677 | 3677 | } |
3678 | 3678 | } |
@@ -3680,37 +3680,37 @@ discard block |
||
3680 | 3680 | $location_url[] = $city; |
3681 | 3681 | } |
3682 | 3682 | |
3683 | - $location_url = implode( '/', $location_url ); |
|
3683 | + $location_url = implode('/', $location_url); |
|
3684 | 3684 | $skip_location = false; |
3685 | - if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) { |
|
3685 | + if (!$add_location_filter && $gd_session->get('gd_multi_location')) { |
|
3686 | 3686 | $skip_location = true; |
3687 | - $gd_session->un_set( 'gd_multi_location' ); |
|
3687 | + $gd_session->un_set('gd_multi_location'); |
|
3688 | 3688 | } |
3689 | 3689 | |
3690 | - if ( get_option( 'permalink_structure' ) ) { |
|
3691 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
3690 | + if (get_option('permalink_structure')) { |
|
3691 | + $viewall_url = get_post_type_archive_link($post_type); |
|
3692 | 3692 | } else { |
3693 | - $viewall_url = get_post_type_archive_link( $post_type ); |
|
3693 | + $viewall_url = get_post_type_archive_link($post_type); |
|
3694 | 3694 | } |
3695 | 3695 | |
3696 | - if ( ! empty( $category ) && $category[0] != '0' ) { |
|
3696 | + if (!empty($category) && $category[0] != '0') { |
|
3697 | 3697 | global $geodir_add_location_url; |
3698 | 3698 | |
3699 | 3699 | $geodir_add_location_url = '0'; |
3700 | 3700 | |
3701 | - if ( $add_location_filter != '0' ) { |
|
3701 | + if ($add_location_filter != '0') { |
|
3702 | 3702 | $geodir_add_location_url = '1'; |
3703 | 3703 | } |
3704 | 3704 | |
3705 | - $viewall_url = get_term_link( (int) $category[0], $post_type . 'category' ); |
|
3705 | + $viewall_url = get_term_link((int) $category[0], $post_type.'category'); |
|
3706 | 3706 | |
3707 | 3707 | $geodir_add_location_url = null; |
3708 | 3708 | } |
3709 | - if ( $skip_location ) { |
|
3710 | - $gd_session->set( 'gd_multi_location', 1 ); |
|
3709 | + if ($skip_location) { |
|
3710 | + $gd_session->set('gd_multi_location', 1); |
|
3711 | 3711 | } |
3712 | 3712 | |
3713 | - if ( is_wp_error( $viewall_url ) ) { |
|
3713 | + if (is_wp_error($viewall_url)) { |
|
3714 | 3714 | $viewall_url = ''; |
3715 | 3715 | } |
3716 | 3716 | |
@@ -3722,34 +3722,34 @@ discard block |
||
3722 | 3722 | 'order_by' => $list_sort |
3723 | 3723 | ); |
3724 | 3724 | |
3725 | - if ( $character_count ) { |
|
3725 | + if ($character_count) { |
|
3726 | 3726 | $query_args['excerpt_length'] = $character_count; |
3727 | 3727 | } |
3728 | 3728 | |
3729 | - if ( ! empty( $instance['show_featured_only'] ) ) { |
|
3729 | + if (!empty($instance['show_featured_only'])) { |
|
3730 | 3730 | $query_args['show_featured_only'] = 1; |
3731 | 3731 | } |
3732 | 3732 | |
3733 | - if ( ! empty( $instance['show_special_only'] ) ) { |
|
3733 | + if (!empty($instance['show_special_only'])) { |
|
3734 | 3734 | $query_args['show_special_only'] = 1; |
3735 | 3735 | } |
3736 | 3736 | |
3737 | - if ( ! empty( $instance['with_pics_only'] ) ) { |
|
3737 | + if (!empty($instance['with_pics_only'])) { |
|
3738 | 3738 | $query_args['with_pics_only'] = 0; |
3739 | 3739 | $query_args['featured_image_only'] = 1; |
3740 | 3740 | } |
3741 | 3741 | |
3742 | - if ( ! empty( $instance['with_videos_only'] ) ) { |
|
3742 | + if (!empty($instance['with_videos_only'])) { |
|
3743 | 3743 | $query_args['with_videos_only'] = 1; |
3744 | 3744 | } |
3745 | - $with_no_results = ! empty( $instance['without_no_results'] ) ? false : true; |
|
3745 | + $with_no_results = !empty($instance['without_no_results']) ? false : true; |
|
3746 | 3746 | |
3747 | - if ( ! empty( $category ) && $category[0] != '0' ) { |
|
3748 | - $category_taxonomy = geodir_get_taxonomies( $post_type ); |
|
3747 | + if (!empty($category) && $category[0] != '0') { |
|
3748 | + $category_taxonomy = geodir_get_taxonomies($post_type); |
|
3749 | 3749 | |
3750 | 3750 | ######### WPML ######### |
3751 | - if ( function_exists( 'icl_object_id' ) ) { |
|
3752 | - $category = gd_lang_object_ids( $category, $category_taxonomy[0] ); |
|
3751 | + if (function_exists('icl_object_id')) { |
|
3752 | + $category = gd_lang_object_ids($category, $category_taxonomy[0]); |
|
3753 | 3753 | } |
3754 | 3754 | ######### WPML ######### |
3755 | 3755 | |
@@ -3759,14 +3759,14 @@ discard block |
||
3759 | 3759 | 'terms' => $category |
3760 | 3760 | ); |
3761 | 3761 | |
3762 | - $query_args['tax_query'] = array( $tax_query ); |
|
3762 | + $query_args['tax_query'] = array($tax_query); |
|
3763 | 3763 | } |
3764 | 3764 | |
3765 | 3765 | global $gridview_columns_widget, $geodir_is_widget_listing; |
3766 | 3766 | |
3767 | - $widget_listings = geodir_get_widget_listings( $query_args ); |
|
3767 | + $widget_listings = geodir_get_widget_listings($query_args); |
|
3768 | 3768 | |
3769 | - if ( ! empty( $widget_listings ) || $with_no_results ) { |
|
3769 | + if (!empty($widget_listings) || $with_no_results) { |
|
3770 | 3770 | ?> |
3771 | 3771 | <div class="geodir_locations geodir_location_listing"> |
3772 | 3772 | |
@@ -3776,11 +3776,11 @@ discard block |
||
3776 | 3776 | * |
3777 | 3777 | * @since 1.0.0 |
3778 | 3778 | */ |
3779 | - do_action( 'geodir_before_view_all_link_in_widget' ); ?> |
|
3779 | + do_action('geodir_before_view_all_link_in_widget'); ?> |
|
3780 | 3780 | <div class="geodir_list_heading clearfix"> |
3781 | - <?php echo $before_title . $title . $after_title; ?> |
|
3781 | + <?php echo $before_title.$title.$after_title; ?> |
|
3782 | 3782 | <a href="<?php echo $viewall_url; ?>" |
3783 | - class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a> |
|
3783 | + class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a> |
|
3784 | 3784 | </div> |
3785 | 3785 | <?php |
3786 | 3786 | /** |
@@ -3788,10 +3788,10 @@ discard block |
||
3788 | 3788 | * |
3789 | 3789 | * @since 1.0.0 |
3790 | 3790 | */ |
3791 | - do_action( 'geodir_after_view_all_link_in_widget' ); ?> |
|
3791 | + do_action('geodir_after_view_all_link_in_widget'); ?> |
|
3792 | 3792 | <?php |
3793 | - if ( strstr( $layout, 'gridview' ) ) { |
|
3794 | - $listing_view_exp = explode( '_', $layout ); |
|
3793 | + if (strstr($layout, 'gridview')) { |
|
3794 | + $listing_view_exp = explode('_', $layout); |
|
3795 | 3795 | $gridview_columns_widget = $layout; |
3796 | 3796 | $layout = $listing_view_exp[0]; |
3797 | 3797 | } else { |
@@ -3803,8 +3803,8 @@ discard block |
||
3803 | 3803 | * |
3804 | 3804 | * @since 1.0.0 |
3805 | 3805 | */ |
3806 | - $template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) ); |
|
3807 | - if ( ! isset( $character_count ) ) { |
|
3806 | + $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview')); |
|
3807 | + if (!isset($character_count)) { |
|
3808 | 3808 | /** |
3809 | 3809 | * Filter the widget's excerpt character count. |
3810 | 3810 | * |
@@ -3812,7 +3812,7 @@ discard block |
||
3812 | 3812 | * |
3813 | 3813 | * @param int $instance ['character_count'] Excerpt character count. |
3814 | 3814 | */ |
3815 | - $character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count ); |
|
3815 | + $character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count); |
|
3816 | 3816 | } |
3817 | 3817 | |
3818 | 3818 | global $post, $map_jason, $map_canvas_arr; |
@@ -3827,13 +3827,13 @@ discard block |
||
3827 | 3827 | * |
3828 | 3828 | * @since 1.0.0 |
3829 | 3829 | */ |
3830 | - include( $template ); |
|
3830 | + include($template); |
|
3831 | 3831 | |
3832 | 3832 | $geodir_is_widget_listing = false; |
3833 | 3833 | |
3834 | 3834 | $GLOBALS['post'] = $current_post; |
3835 | - if ( ! empty( $current_post ) ) { |
|
3836 | - setup_postdata( $current_post ); |
|
3835 | + if (!empty($current_post)) { |
|
3836 | + setup_postdata($current_post); |
|
3837 | 3837 | } |
3838 | 3838 | $map_jason = $current_map_jason; |
3839 | 3839 | $map_canvas_arr = $current_map_canvas_arr; |
@@ -3864,12 +3864,12 @@ discard block |
||
3864 | 3864 | * |
3865 | 3865 | * @return int Reviews count. |
3866 | 3866 | */ |
3867 | -function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) { |
|
3867 | +function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) { |
|
3868 | 3868 | global $wpdb, $plugin_prefix; |
3869 | 3869 | |
3870 | - $detail_table = $plugin_prefix . $post_type . '_detail'; |
|
3870 | + $detail_table = $plugin_prefix.$post_type.'_detail'; |
|
3871 | 3871 | |
3872 | - $sql = "SELECT COALESCE(SUM(rating_count),0) FROM " . $detail_table . " WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(" . $term_id . ", " . $taxonomy . ")"; |
|
3872 | + $sql = "SELECT COALESCE(SUM(rating_count),0) FROM ".$detail_table." WHERE post_status = 'publish' AND rating_count > 0 AND FIND_IN_SET(".$term_id.", ".$taxonomy.")"; |
|
3873 | 3873 | |
3874 | 3874 | /** |
3875 | 3875 | * Filter count review sql query. |
@@ -3881,9 +3881,9 @@ discard block |
||
3881 | 3881 | * @param int $taxonomy The taxonomy Id. |
3882 | 3882 | * @param string $post_type The post type. |
3883 | 3883 | */ |
3884 | - $sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type ); |
|
3884 | + $sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type); |
|
3885 | 3885 | |
3886 | - $count = $wpdb->get_var( $sql ); |
|
3886 | + $count = $wpdb->get_var($sql); |
|
3887 | 3887 | |
3888 | 3888 | return $count; |
3889 | 3889 | } |
@@ -3901,7 +3901,7 @@ discard block |
||
3901 | 3901 | * |
3902 | 3902 | * @return array Term array data. |
3903 | 3903 | */ |
3904 | -function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) { |
|
3904 | +function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) { |
|
3905 | 3905 | /** |
3906 | 3906 | * Filter review count option data. |
3907 | 3907 | * |
@@ -3911,78 +3911,78 @@ discard block |
||
3911 | 3911 | * @param bool $force_update Force update option value?. Default.false. |
3912 | 3912 | * @param int $post_ID The post id to update if any. |
3913 | 3913 | */ |
3914 | - $option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID ); |
|
3915 | - if ( ! empty( $option_data ) ) { |
|
3914 | + $option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID); |
|
3915 | + if (!empty($option_data)) { |
|
3916 | 3916 | return $option_data; |
3917 | 3917 | } |
3918 | 3918 | |
3919 | - $option_data = get_option( 'geodir_global_review_count' ); |
|
3919 | + $option_data = get_option('geodir_global_review_count'); |
|
3920 | 3920 | |
3921 | - if ( ! $option_data || $force_update ) { |
|
3922 | - if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only. |
|
3921 | + if (!$option_data || $force_update) { |
|
3922 | + if ((int) $post_ID > 0) { // Update reviews count for specific post categories only. |
|
3923 | 3923 | global $gd_session; |
3924 | 3924 | $term_array = (array) $option_data; |
3925 | - $post_type = get_post_type( $post_ID ); |
|
3926 | - $taxonomy = $post_type . 'category'; |
|
3927 | - $terms = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) ); |
|
3928 | - |
|
3929 | - if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) { |
|
3930 | - foreach ( $terms as $term_id ) { |
|
3931 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
3932 | - $children = get_term_children( $term_id, $taxonomy ); |
|
3933 | - $term_array[ $term_id ] = $count; |
|
3925 | + $post_type = get_post_type($post_ID); |
|
3926 | + $taxonomy = $post_type.'category'; |
|
3927 | + $terms = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids')); |
|
3928 | + |
|
3929 | + if (!empty($terms) && !is_wp_error($terms)) { |
|
3930 | + foreach ($terms as $term_id) { |
|
3931 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
3932 | + $children = get_term_children($term_id, $taxonomy); |
|
3933 | + $term_array[$term_id] = $count; |
|
3934 | 3934 | } |
3935 | 3935 | } |
3936 | 3936 | |
3937 | - $session_listing = $gd_session->get( 'listing' ); |
|
3937 | + $session_listing = $gd_session->get('listing'); |
|
3938 | 3938 | |
3939 | 3939 | $terms = array(); |
3940 | - if ( isset( $_POST['post_category'][ $taxonomy ] ) ) { |
|
3941 | - $terms = (array) $_POST['post_category'][ $taxonomy ]; |
|
3942 | - } else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) { |
|
3943 | - $terms = (array) $session_listing['post_category'][ $taxonomy ]; |
|
3940 | + if (isset($_POST['post_category'][$taxonomy])) { |
|
3941 | + $terms = (array) $_POST['post_category'][$taxonomy]; |
|
3942 | + } else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) { |
|
3943 | + $terms = (array) $session_listing['post_category'][$taxonomy]; |
|
3944 | 3944 | } |
3945 | 3945 | |
3946 | - if ( ! empty( $terms ) ) { |
|
3947 | - foreach ( $terms as $term_id ) { |
|
3948 | - if ( $term_id > 0 ) { |
|
3949 | - $count = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ); |
|
3950 | - $children = get_term_children( $term_id, $taxonomy ); |
|
3951 | - $term_array[ $term_id ] = $count; |
|
3946 | + if (!empty($terms)) { |
|
3947 | + foreach ($terms as $term_id) { |
|
3948 | + if ($term_id > 0) { |
|
3949 | + $count = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type); |
|
3950 | + $children = get_term_children($term_id, $taxonomy); |
|
3951 | + $term_array[$term_id] = $count; |
|
3952 | 3952 | } |
3953 | 3953 | } |
3954 | 3954 | } |
3955 | 3955 | } else { // Update reviews count for all post categories. |
3956 | 3956 | $term_array = array(); |
3957 | 3957 | $post_types = geodir_get_posttypes(); |
3958 | - foreach ( $post_types as $post_type ) { |
|
3958 | + foreach ($post_types as $post_type) { |
|
3959 | 3959 | |
3960 | - $taxonomy = geodir_get_taxonomies( $post_type ); |
|
3960 | + $taxonomy = geodir_get_taxonomies($post_type); |
|
3961 | 3961 | $taxonomy = $taxonomy[0]; |
3962 | 3962 | |
3963 | 3963 | $args = array( |
3964 | 3964 | 'hide_empty' => false |
3965 | 3965 | ); |
3966 | 3966 | |
3967 | - $terms = get_terms( $taxonomy, $args ); |
|
3967 | + $terms = get_terms($taxonomy, $args); |
|
3968 | 3968 | |
3969 | - foreach ( $terms as $term ) { |
|
3970 | - $count = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type ); |
|
3971 | - $children = get_term_children( $term->term_id, $taxonomy ); |
|
3969 | + foreach ($terms as $term) { |
|
3970 | + $count = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type); |
|
3971 | + $children = get_term_children($term->term_id, $taxonomy); |
|
3972 | 3972 | /*if ( is_array( $children ) ) { |
3973 | 3973 | foreach ( $children as $child_id ) { |
3974 | 3974 | $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type); |
3975 | 3975 | $count = $count + $child_count; |
3976 | 3976 | } |
3977 | 3977 | }*/ |
3978 | - $term_array[ $term->term_id ] = $count; |
|
3978 | + $term_array[$term->term_id] = $count; |
|
3979 | 3979 | } |
3980 | 3980 | } |
3981 | 3981 | } |
3982 | 3982 | |
3983 | - update_option( 'geodir_global_review_count', $term_array ); |
|
3983 | + update_option('geodir_global_review_count', $term_array); |
|
3984 | 3984 | //clear cache |
3985 | - wp_cache_delete( 'geodir_global_review_count' ); |
|
3985 | + wp_cache_delete('geodir_global_review_count'); |
|
3986 | 3986 | |
3987 | 3987 | return $term_array; |
3988 | 3988 | } else { |
@@ -3998,39 +3998,39 @@ discard block |
||
3998 | 3998 | * @package GeoDirectory |
3999 | 3999 | * @return bool |
4000 | 4000 | */ |
4001 | -function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) { |
|
4002 | - if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) { |
|
4001 | +function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') { |
|
4002 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') { |
|
4003 | 4003 | return; // do not run if importing listings |
4004 | 4004 | } |
4005 | 4005 | |
4006 | - if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) { |
|
4006 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
4007 | 4007 | return; |
4008 | 4008 | } |
4009 | 4009 | |
4010 | 4010 | $post_ID = 0; |
4011 | - if ( ! empty( $post ) ) { |
|
4012 | - if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) { |
|
4011 | + if (!empty($post)) { |
|
4012 | + if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) { |
|
4013 | 4013 | return; |
4014 | 4014 | } |
4015 | 4015 | |
4016 | - if ( $new_status == 'auto-draft' && $old_status == 'new' ) { |
|
4016 | + if ($new_status == 'auto-draft' && $old_status == 'new') { |
|
4017 | 4017 | return; |
4018 | 4018 | } |
4019 | 4019 | |
4020 | - if ( ! empty( $post->ID ) ) { |
|
4020 | + if (!empty($post->ID)) { |
|
4021 | 4021 | $post_ID = $post->ID; |
4022 | 4022 | } |
4023 | 4023 | } |
4024 | 4024 | |
4025 | - if ( $new_status != $old_status ) { |
|
4026 | - geodir_count_reviews_by_terms( true, $post_ID ); |
|
4025 | + if ($new_status != $old_status) { |
|
4026 | + geodir_count_reviews_by_terms(true, $post_ID); |
|
4027 | 4027 | } |
4028 | 4028 | |
4029 | 4029 | return true; |
4030 | 4030 | } |
4031 | 4031 | |
4032 | -function geodir_term_review_count_force_update_single_post( $post_id ) { |
|
4033 | - geodir_count_reviews_by_terms( true, $post_id ); |
|
4032 | +function geodir_term_review_count_force_update_single_post($post_id) { |
|
4033 | + geodir_count_reviews_by_terms(true, $post_id); |
|
4034 | 4034 | } |
4035 | 4035 | |
4036 | 4036 | /*-----------------------------------------------------------------------------------*/ |
@@ -4047,11 +4047,11 @@ discard block |
||
4047 | 4047 | * |
4048 | 4048 | * @return int Post count. |
4049 | 4049 | */ |
4050 | -function geodir_count_posts_by_term( $data, $term ) { |
|
4050 | +function geodir_count_posts_by_term($data, $term) { |
|
4051 | 4051 | |
4052 | - if ( $data ) { |
|
4053 | - if ( isset( $data[ $term->term_id ] ) ) { |
|
4054 | - return $data[ $term->term_id ]; |
|
4052 | + if ($data) { |
|
4053 | + if (isset($data[$term->term_id])) { |
|
4054 | + return $data[$term->term_id]; |
|
4055 | 4055 | } else { |
4056 | 4056 | return 0; |
4057 | 4057 | } |
@@ -4068,8 +4068,8 @@ discard block |
||
4068 | 4068 | * param array $terms An array of term objects. |
4069 | 4069 | * @return array Sorted terms array. |
4070 | 4070 | */ |
4071 | -function geodir_sort_terms_by_count( $terms ) { |
|
4072 | - usort( $terms, "geodir_sort_by_count_obj" ); |
|
4071 | +function geodir_sort_terms_by_count($terms) { |
|
4072 | + usort($terms, "geodir_sort_by_count_obj"); |
|
4073 | 4073 | |
4074 | 4074 | return $terms; |
4075 | 4075 | } |
@@ -4084,8 +4084,8 @@ discard block |
||
4084 | 4084 | * |
4085 | 4085 | * @return array Sorted terms array. |
4086 | 4086 | */ |
4087 | -function geodir_sort_terms_by_review_count( $terms ) { |
|
4088 | - usort( $terms, "geodir_sort_by_review_count_obj" ); |
|
4087 | +function geodir_sort_terms_by_review_count($terms) { |
|
4088 | + usort($terms, "geodir_sort_by_review_count_obj"); |
|
4089 | 4089 | |
4090 | 4090 | return $terms; |
4091 | 4091 | } |
@@ -4101,12 +4101,12 @@ discard block |
||
4101 | 4101 | * |
4102 | 4102 | * @return array Sorted terms array. |
4103 | 4103 | */ |
4104 | -function geodir_sort_terms( $terms, $sort = 'count' ) { |
|
4105 | - if ( $sort == 'count' ) { |
|
4106 | - return geodir_sort_terms_by_count( $terms ); |
|
4104 | +function geodir_sort_terms($terms, $sort = 'count') { |
|
4105 | + if ($sort == 'count') { |
|
4106 | + return geodir_sort_terms_by_count($terms); |
|
4107 | 4107 | } |
4108 | - if ( $sort == 'review_count' ) { |
|
4109 | - return geodir_sort_terms_by_review_count( $terms ); |
|
4108 | + if ($sort == 'review_count') { |
|
4109 | + return geodir_sort_terms_by_review_count($terms); |
|
4110 | 4110 | } |
4111 | 4111 | } |
4112 | 4112 | |
@@ -4124,7 +4124,7 @@ discard block |
||
4124 | 4124 | * |
4125 | 4125 | * @return bool |
4126 | 4126 | */ |
4127 | -function geodir_sort_by_count( $a, $b ) { |
|
4127 | +function geodir_sort_by_count($a, $b) { |
|
4128 | 4128 | return $a['count'] < $b['count']; |
4129 | 4129 | } |
4130 | 4130 | |
@@ -4139,7 +4139,7 @@ discard block |
||
4139 | 4139 | * |
4140 | 4140 | * @return bool |
4141 | 4141 | */ |
4142 | -function geodir_sort_by_count_obj( $a, $b ) { |
|
4142 | +function geodir_sort_by_count_obj($a, $b) { |
|
4143 | 4143 | return $a->count < $b->count; |
4144 | 4144 | } |
4145 | 4145 | |
@@ -4154,7 +4154,7 @@ discard block |
||
4154 | 4154 | * |
4155 | 4155 | * @return bool |
4156 | 4156 | */ |
4157 | -function geodir_sort_by_review_count_obj( $a, $b ) { |
|
4157 | +function geodir_sort_by_review_count_obj($a, $b) { |
|
4158 | 4158 | return $a->review_count < $b->review_count; |
4159 | 4159 | } |
4160 | 4160 | |
@@ -4171,35 +4171,35 @@ discard block |
||
4171 | 4171 | * @since 1.4.2 |
4172 | 4172 | * @package GeoDirectory |
4173 | 4173 | */ |
4174 | - $locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' ); |
|
4174 | + $locale = apply_filters('plugin_locale', get_locale(), 'geodirectory'); |
|
4175 | 4175 | |
4176 | - load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' ); |
|
4177 | - load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' ); |
|
4176 | + load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo'); |
|
4177 | + load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages'); |
|
4178 | 4178 | |
4179 | 4179 | /** |
4180 | 4180 | * Define language constants. |
4181 | 4181 | * |
4182 | 4182 | * @since 1.0.0 |
4183 | 4183 | */ |
4184 | - require_once( geodir_plugin_path() . '/language.php' ); |
|
4184 | + require_once(geodir_plugin_path().'/language.php'); |
|
4185 | 4185 | |
4186 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
4186 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
4187 | 4187 | |
4188 | 4188 | // Load language string file if not created yet |
4189 | - if ( ! file_exists( $language_file ) ) { |
|
4189 | + if (!file_exists($language_file)) { |
|
4190 | 4190 | geodirectory_load_db_language(); |
4191 | 4191 | } |
4192 | 4192 | |
4193 | - if ( file_exists( $language_file ) ) { |
|
4193 | + if (file_exists($language_file)) { |
|
4194 | 4194 | /** |
4195 | 4195 | * Language strings from database. |
4196 | 4196 | * |
4197 | 4197 | * @since 1.4.2 |
4198 | 4198 | */ |
4199 | 4199 | try { |
4200 | - require_once( $language_file ); |
|
4201 | - } catch ( Exception $e ) { |
|
4202 | - error_log( 'Language Error: ' . $e->getMessage() ); |
|
4200 | + require_once($language_file); |
|
4201 | + } catch (Exception $e) { |
|
4202 | + error_log('Language Error: '.$e->getMessage()); |
|
4203 | 4203 | } |
4204 | 4204 | } |
4205 | 4205 | } |
@@ -4216,19 +4216,19 @@ discard block |
||
4216 | 4216 | */ |
4217 | 4217 | function geodirectory_load_db_language() { |
4218 | 4218 | global $wp_filesystem; |
4219 | - if ( empty( $wp_filesystem ) ) { |
|
4220 | - require_once( ABSPATH . '/wp-admin/includes/file.php' ); |
|
4219 | + if (empty($wp_filesystem)) { |
|
4220 | + require_once(ABSPATH.'/wp-admin/includes/file.php'); |
|
4221 | 4221 | WP_Filesystem(); |
4222 | 4222 | global $wp_filesystem; |
4223 | 4223 | } |
4224 | 4224 | |
4225 | - $language_file = geodir_plugin_path() . '/db-language.php'; |
|
4225 | + $language_file = geodir_plugin_path().'/db-language.php'; |
|
4226 | 4226 | |
4227 | - if ( is_file( $language_file ) && ! is_writable( $language_file ) ) { |
|
4227 | + if (is_file($language_file) && !is_writable($language_file)) { |
|
4228 | 4228 | return false; |
4229 | 4229 | } // Not possible to create. |
4230 | 4230 | |
4231 | - if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) { |
|
4231 | + if (!is_file($language_file) && !is_writable(dirname($language_file))) { |
|
4232 | 4232 | return false; |
4233 | 4233 | } // Not possible to create. |
4234 | 4234 | |
@@ -4242,9 +4242,9 @@ discard block |
||
4242 | 4242 | * |
4243 | 4243 | * @param array $contents_strings Array of strings. |
4244 | 4244 | */ |
4245 | - $contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings ); |
|
4245 | + $contents_strings = apply_filters('geodir_load_db_language', $contents_strings); |
|
4246 | 4246 | |
4247 | - $contents_strings = array_unique( $contents_strings ); |
|
4247 | + $contents_strings = array_unique($contents_strings); |
|
4248 | 4248 | |
4249 | 4249 | $contents_head = array(); |
4250 | 4250 | $contents_head[] = "<?php"; |
@@ -4261,21 +4261,21 @@ discard block |
||
4261 | 4261 | $contents_foot[] = ""; |
4262 | 4262 | $contents_foot[] = ""; |
4263 | 4263 | |
4264 | - $contents = implode( PHP_EOL, $contents_head ); |
|
4264 | + $contents = implode(PHP_EOL, $contents_head); |
|
4265 | 4265 | |
4266 | - if ( ! empty( $contents_strings ) ) { |
|
4267 | - foreach ( $contents_strings as $string ) { |
|
4268 | - if ( is_scalar( $string ) && $string != '' ) { |
|
4269 | - $string = str_replace( "'", "\'", $string ); |
|
4270 | - geodir_wpml_register_string( $string ); |
|
4271 | - $contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');"; |
|
4266 | + if (!empty($contents_strings)) { |
|
4267 | + foreach ($contents_strings as $string) { |
|
4268 | + if (is_scalar($string) && $string != '') { |
|
4269 | + $string = str_replace("'", "\'", $string); |
|
4270 | + geodir_wpml_register_string($string); |
|
4271 | + $contents .= PHP_EOL."__('".$string."', 'geodirectory');"; |
|
4272 | 4272 | } |
4273 | 4273 | } |
4274 | 4274 | } |
4275 | 4275 | |
4276 | - $contents .= implode( PHP_EOL, $contents_foot ); |
|
4276 | + $contents .= implode(PHP_EOL, $contents_foot); |
|
4277 | 4277 | |
4278 | - if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) { |
|
4278 | + if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) { |
|
4279 | 4279 | return false; |
4280 | 4280 | } // Failure; could not write file. |
4281 | 4281 | |
@@ -4296,49 +4296,49 @@ discard block |
||
4296 | 4296 | * |
4297 | 4297 | * @return array Translation texts. |
4298 | 4298 | */ |
4299 | -function geodir_load_custom_field_translation( $translation_texts = array() ) { |
|
4299 | +function geodir_load_custom_field_translation($translation_texts = array()) { |
|
4300 | 4300 | global $wpdb; |
4301 | 4301 | |
4302 | 4302 | // Custom fields table |
4303 | - $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE; |
|
4304 | - $rows = $wpdb->get_results( $sql ); |
|
4303 | + $sql = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE; |
|
4304 | + $rows = $wpdb->get_results($sql); |
|
4305 | 4305 | |
4306 | - if ( ! empty( $rows ) ) { |
|
4307 | - foreach ( $rows as $row ) { |
|
4308 | - if ( ! empty( $row->admin_title ) ) { |
|
4309 | - $translation_texts[] = stripslashes_deep( $row->admin_title ); |
|
4306 | + if (!empty($rows)) { |
|
4307 | + foreach ($rows as $row) { |
|
4308 | + if (!empty($row->admin_title)) { |
|
4309 | + $translation_texts[] = stripslashes_deep($row->admin_title); |
|
4310 | 4310 | } |
4311 | 4311 | |
4312 | - if ( ! empty( $row->admin_desc ) ) { |
|
4313 | - $translation_texts[] = stripslashes_deep( $row->admin_desc ); |
|
4312 | + if (!empty($row->admin_desc)) { |
|
4313 | + $translation_texts[] = stripslashes_deep($row->admin_desc); |
|
4314 | 4314 | } |
4315 | 4315 | |
4316 | - if ( ! empty( $row->site_title ) ) { |
|
4317 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
4316 | + if (!empty($row->site_title)) { |
|
4317 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
4318 | 4318 | } |
4319 | 4319 | |
4320 | - if ( ! empty( $row->clabels ) ) { |
|
4321 | - $translation_texts[] = stripslashes_deep( $row->clabels ); |
|
4320 | + if (!empty($row->clabels)) { |
|
4321 | + $translation_texts[] = stripslashes_deep($row->clabels); |
|
4322 | 4322 | } |
4323 | 4323 | |
4324 | - if ( ! empty( $row->required_msg ) ) { |
|
4325 | - $translation_texts[] = stripslashes_deep( $row->required_msg ); |
|
4324 | + if (!empty($row->required_msg)) { |
|
4325 | + $translation_texts[] = stripslashes_deep($row->required_msg); |
|
4326 | 4326 | } |
4327 | 4327 | |
4328 | - if ( ! empty( $row->validation_msg ) ) { |
|
4329 | - $translation_texts[] = stripslashes_deep( $row->validation_msg ); |
|
4328 | + if (!empty($row->validation_msg)) { |
|
4329 | + $translation_texts[] = stripslashes_deep($row->validation_msg); |
|
4330 | 4330 | } |
4331 | 4331 | |
4332 | - if ( ! empty( $row->default_value ) ) { |
|
4333 | - $translation_texts[] = stripslashes_deep( $row->default_value ); |
|
4332 | + if (!empty($row->default_value)) { |
|
4333 | + $translation_texts[] = stripslashes_deep($row->default_value); |
|
4334 | 4334 | } |
4335 | 4335 | |
4336 | - if ( ! empty( $row->option_values ) ) { |
|
4337 | - $option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) ); |
|
4336 | + if (!empty($row->option_values)) { |
|
4337 | + $option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values)); |
|
4338 | 4338 | |
4339 | - if ( ! empty( $option_values ) ) { |
|
4340 | - foreach ( $option_values as $option_value ) { |
|
4341 | - if ( ! empty( $option_value['label'] ) ) { |
|
4339 | + if (!empty($option_values)) { |
|
4340 | + foreach ($option_values as $option_value) { |
|
4341 | + if (!empty($option_value['label'])) { |
|
4342 | 4342 | $translation_texts[] = $option_value['label']; |
4343 | 4343 | } |
4344 | 4344 | } |
@@ -4348,56 +4348,56 @@ discard block |
||
4348 | 4348 | } |
4349 | 4349 | |
4350 | 4350 | // Custom sorting fields table |
4351 | - $sql = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
4352 | - $rows = $wpdb->get_results( $sql ); |
|
4351 | + $sql = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE; |
|
4352 | + $rows = $wpdb->get_results($sql); |
|
4353 | 4353 | |
4354 | - if ( ! empty( $rows ) ) { |
|
4355 | - foreach ( $rows as $row ) { |
|
4356 | - if ( ! empty( $row->site_title ) ) { |
|
4357 | - $translation_texts[] = stripslashes_deep( $row->site_title ); |
|
4354 | + if (!empty($rows)) { |
|
4355 | + foreach ($rows as $row) { |
|
4356 | + if (!empty($row->site_title)) { |
|
4357 | + $translation_texts[] = stripslashes_deep($row->site_title); |
|
4358 | 4358 | } |
4359 | 4359 | |
4360 | - if ( ! empty( $row->asc_title ) ) { |
|
4361 | - $translation_texts[] = stripslashes_deep( $row->asc_title ); |
|
4360 | + if (!empty($row->asc_title)) { |
|
4361 | + $translation_texts[] = stripslashes_deep($row->asc_title); |
|
4362 | 4362 | } |
4363 | 4363 | |
4364 | - if ( ! empty( $row->desc_title ) ) { |
|
4365 | - $translation_texts[] = stripslashes_deep( $row->desc_title ); |
|
4364 | + if (!empty($row->desc_title)) { |
|
4365 | + $translation_texts[] = stripslashes_deep($row->desc_title); |
|
4366 | 4366 | } |
4367 | 4367 | } |
4368 | 4368 | } |
4369 | 4369 | |
4370 | 4370 | // Advance search filter fields table |
4371 | - if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) { |
|
4372 | - $sql = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE; |
|
4373 | - $rows = $wpdb->get_results( $sql ); |
|
4374 | - |
|
4375 | - if ( ! empty( $rows ) ) { |
|
4376 | - foreach ( $rows as $row ) { |
|
4377 | - if ( ! empty( $row->field_site_name ) ) { |
|
4378 | - $translation_texts[] = stripslashes_deep( $row->field_site_name ); |
|
4371 | + if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) { |
|
4372 | + $sql = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE; |
|
4373 | + $rows = $wpdb->get_results($sql); |
|
4374 | + |
|
4375 | + if (!empty($rows)) { |
|
4376 | + foreach ($rows as $row) { |
|
4377 | + if (!empty($row->field_site_name)) { |
|
4378 | + $translation_texts[] = stripslashes_deep($row->field_site_name); |
|
4379 | 4379 | } |
4380 | 4380 | |
4381 | - if ( ! empty( $row->front_search_title ) ) { |
|
4382 | - $translation_texts[] = stripslashes_deep( $row->front_search_title ); |
|
4381 | + if (!empty($row->front_search_title)) { |
|
4382 | + $translation_texts[] = stripslashes_deep($row->front_search_title); |
|
4383 | 4383 | } |
4384 | 4384 | |
4385 | - if ( ! empty( $row->first_search_text ) ) { |
|
4386 | - $translation_texts[] = stripslashes_deep( $row->first_search_text ); |
|
4385 | + if (!empty($row->first_search_text)) { |
|
4386 | + $translation_texts[] = stripslashes_deep($row->first_search_text); |
|
4387 | 4387 | } |
4388 | 4388 | |
4389 | - if ( ! empty( $row->last_search_text ) ) { |
|
4390 | - $translation_texts[] = stripslashes_deep( $row->last_search_text ); |
|
4389 | + if (!empty($row->last_search_text)) { |
|
4390 | + $translation_texts[] = stripslashes_deep($row->last_search_text); |
|
4391 | 4391 | } |
4392 | 4392 | |
4393 | - if ( ! empty( $row->field_desc ) ) { |
|
4394 | - $translation_texts[] = stripslashes_deep( $row->field_desc ); |
|
4393 | + if (!empty($row->field_desc)) { |
|
4394 | + $translation_texts[] = stripslashes_deep($row->field_desc); |
|
4395 | 4395 | } |
4396 | 4396 | } |
4397 | 4397 | } |
4398 | 4398 | } |
4399 | 4399 | |
4400 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
4400 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
4401 | 4401 | |
4402 | 4402 | return $translation_texts; |
4403 | 4403 | } |
@@ -4419,7 +4419,7 @@ discard block |
||
4419 | 4419 | * |
4420 | 4420 | * @param array $geodir_allowed_mime_types and file extensions. |
4421 | 4421 | */ |
4422 | - return apply_filters( 'geodir_allowed_mime_types', array( |
|
4422 | + return apply_filters('geodir_allowed_mime_types', array( |
|
4423 | 4423 | 'Image' => array( // Image formats. |
4424 | 4424 | 'jpg' => 'image/jpeg', |
4425 | 4425 | 'jpe' => 'image/jpeg', |
@@ -4487,18 +4487,18 @@ discard block |
||
4487 | 4487 | * |
4488 | 4488 | * @return string User display name. |
4489 | 4489 | */ |
4490 | -function geodir_get_client_name( $user_id ) { |
|
4490 | +function geodir_get_client_name($user_id) { |
|
4491 | 4491 | $client_name = ''; |
4492 | 4492 | |
4493 | - $user_data = get_userdata( $user_id ); |
|
4493 | + $user_data = get_userdata($user_id); |
|
4494 | 4494 | |
4495 | - if ( ! empty( $user_data ) ) { |
|
4496 | - if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) { |
|
4497 | - $client_name = trim( $user_data->display_name ); |
|
4498 | - } else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) { |
|
4499 | - $client_name = trim( $user_data->user_nicename ); |
|
4495 | + if (!empty($user_data)) { |
|
4496 | + if (isset($user_data->display_name) && trim($user_data->display_name) != '') { |
|
4497 | + $client_name = trim($user_data->display_name); |
|
4498 | + } else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') { |
|
4499 | + $client_name = trim($user_data->user_nicename); |
|
4500 | 4500 | } else { |
4501 | - $client_name = trim( $user_data->user_login ); |
|
4501 | + $client_name = trim($user_data->user_login); |
|
4502 | 4502 | } |
4503 | 4503 | } |
4504 | 4504 | |
@@ -4506,17 +4506,17 @@ discard block |
||
4506 | 4506 | } |
4507 | 4507 | |
4508 | 4508 | |
4509 | -add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 ); |
|
4509 | +add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1); |
|
4510 | 4510 | /* |
4511 | 4511 | * Add location variables to wpseo replacements. |
4512 | 4512 | * |
4513 | 4513 | * @since 1.5.4 |
4514 | 4514 | */ |
4515 | -function geodir_wpseo_replacements( $vars ) { |
|
4515 | +function geodir_wpseo_replacements($vars) { |
|
4516 | 4516 | |
4517 | 4517 | // location variables |
4518 | 4518 | $gd_post_type = geodir_get_current_posttype(); |
4519 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
4519 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type); |
|
4520 | 4520 | /** |
4521 | 4521 | * Filter the title variables location variables array |
4522 | 4522 | * |
@@ -4526,7 +4526,7 @@ discard block |
||
4526 | 4526 | * @param array $location_array The array of location variables. |
4527 | 4527 | * @param array $vars The page title variables. |
4528 | 4528 | */ |
4529 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars ); |
|
4529 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars); |
|
4530 | 4530 | |
4531 | 4531 | |
4532 | 4532 | $location_replace_vars = geodir_location_replace_vars($location_array, NULL, ''); |
@@ -4541,13 +4541,13 @@ discard block |
||
4541 | 4541 | * @param string $vars The title with variables. |
4542 | 4542 | * @param array $location_array The array of location variables. |
4543 | 4543 | */ |
4544 | - return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array ); |
|
4544 | + return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array); |
|
4545 | 4545 | } |
4546 | 4546 | |
4547 | 4547 | |
4548 | -add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 ); |
|
4549 | -add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 ); |
|
4550 | -add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 ); |
|
4548 | +add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3); |
|
4549 | +add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2); |
|
4550 | +add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3); |
|
4551 | 4551 | |
4552 | 4552 | /** |
4553 | 4553 | * Filter the title variables. |
@@ -4589,14 +4589,14 @@ discard block |
||
4589 | 4589 | * |
4590 | 4590 | * @return string Title after filtered variables. |
4591 | 4591 | */ |
4592 | -function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) { |
|
4592 | +function geodir_filter_title_variables($title, $gd_page, $sep = '') { |
|
4593 | 4593 | global $wp, $post; |
4594 | 4594 | |
4595 | - if ( ! $gd_page || ! $title ) { |
|
4595 | + if (!$gd_page || !$title) { |
|
4596 | 4596 | return $title; // if no a GD page then bail. |
4597 | 4597 | } |
4598 | 4598 | |
4599 | - if ( $sep == '' ) { |
|
4599 | + if ($sep == '') { |
|
4600 | 4600 | /** |
4601 | 4601 | * Filter the page title separator. |
4602 | 4602 | * |
@@ -4605,100 +4605,100 @@ discard block |
||
4605 | 4605 | * |
4606 | 4606 | * @param string $sep The separator, default: `|`. |
4607 | 4607 | */ |
4608 | - $sep = apply_filters( 'geodir_page_title_separator', '|' ); |
|
4608 | + $sep = apply_filters('geodir_page_title_separator', '|'); |
|
4609 | 4609 | } |
4610 | 4610 | |
4611 | - if ( strpos( $title, '%%title%%' ) !== false ) { |
|
4612 | - $title = str_replace( "%%title%%", $post->post_title, $title ); |
|
4611 | + if (strpos($title, '%%title%%') !== false) { |
|
4612 | + $title = str_replace("%%title%%", $post->post_title, $title); |
|
4613 | 4613 | } |
4614 | 4614 | |
4615 | - if ( strpos( $title, '%%sitename%%' ) !== false ) { |
|
4616 | - $title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title ); |
|
4615 | + if (strpos($title, '%%sitename%%') !== false) { |
|
4616 | + $title = str_replace("%%sitename%%", get_bloginfo('name'), $title); |
|
4617 | 4617 | } |
4618 | 4618 | |
4619 | - if ( strpos( $title, '%%sitedesc%%' ) !== false ) { |
|
4620 | - $title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title ); |
|
4619 | + if (strpos($title, '%%sitedesc%%') !== false) { |
|
4620 | + $title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title); |
|
4621 | 4621 | } |
4622 | 4622 | |
4623 | - if ( strpos( $title, '%%excerpt%%' ) !== false ) { |
|
4624 | - $title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title ); |
|
4623 | + if (strpos($title, '%%excerpt%%') !== false) { |
|
4624 | + $title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title); |
|
4625 | 4625 | } |
4626 | 4626 | |
4627 | - if ( $gd_page == 'search' || $gd_page == 'author' ) { |
|
4628 | - $post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : ''; |
|
4629 | - } else if ( $gd_page == 'add-listing' ) { |
|
4630 | - $post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : ''; |
|
4631 | - $post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type; |
|
4632 | - } else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) { |
|
4627 | + if ($gd_page == 'search' || $gd_page == 'author') { |
|
4628 | + $post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : ''; |
|
4629 | + } else if ($gd_page == 'add-listing') { |
|
4630 | + $post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : ''; |
|
4631 | + $post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type; |
|
4632 | + } else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) { |
|
4633 | 4633 | $post_type = $post->post_type; |
4634 | 4634 | } else { |
4635 | - $post_type = get_query_var( 'post_type' ); |
|
4635 | + $post_type = get_query_var('post_type'); |
|
4636 | 4636 | } |
4637 | 4637 | |
4638 | - if ( strpos( $title, '%%pt_single%%' ) !== false ) { |
|
4638 | + if (strpos($title, '%%pt_single%%') !== false) { |
|
4639 | 4639 | $singular_name = ''; |
4640 | - if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) { |
|
4641 | - $singular_name = __( $singular_name, 'geodirectory' ); |
|
4640 | + if ($post_type && $singular_name = get_post_type_singular_label($post_type)) { |
|
4641 | + $singular_name = __($singular_name, 'geodirectory'); |
|
4642 | 4642 | } |
4643 | 4643 | |
4644 | - $title = str_replace( "%%pt_single%%", $singular_name, $title ); |
|
4644 | + $title = str_replace("%%pt_single%%", $singular_name, $title); |
|
4645 | 4645 | } |
4646 | 4646 | |
4647 | - if ( strpos( $title, '%%pt_plural%%' ) !== false ) { |
|
4647 | + if (strpos($title, '%%pt_plural%%') !== false) { |
|
4648 | 4648 | $plural_name = ''; |
4649 | - if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) { |
|
4650 | - $plural_name = __( $plural_name, 'geodirectory' ); |
|
4649 | + if ($post_type && $plural_name = get_post_type_plural_label($post_type)) { |
|
4650 | + $plural_name = __($plural_name, 'geodirectory'); |
|
4651 | 4651 | } |
4652 | 4652 | |
4653 | - $title = str_replace( "%%pt_plural%%", $plural_name, $title ); |
|
4653 | + $title = str_replace("%%pt_plural%%", $plural_name, $title); |
|
4654 | 4654 | } |
4655 | 4655 | |
4656 | - if ( strpos( $title, '%%category%%' ) !== false ) { |
|
4656 | + if (strpos($title, '%%category%%') !== false) { |
|
4657 | 4657 | $cat_name = ''; |
4658 | 4658 | |
4659 | - if ( $gd_page == 'detail' ) { |
|
4660 | - if ( $post->default_category ) { |
|
4661 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
4662 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
4659 | + if ($gd_page == 'detail') { |
|
4660 | + if ($post->default_category) { |
|
4661 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
4662 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
4663 | 4663 | } |
4664 | - } else if ( $gd_page == 'listing' ) { |
|
4664 | + } else if ($gd_page == 'listing') { |
|
4665 | 4665 | $queried_object = get_queried_object(); |
4666 | - if ( isset( $queried_object->name ) ) { |
|
4666 | + if (isset($queried_object->name)) { |
|
4667 | 4667 | $cat_name = $queried_object->name; |
4668 | 4668 | } |
4669 | 4669 | } |
4670 | - $title = str_replace( "%%category%%", $cat_name, $title ); |
|
4670 | + $title = str_replace("%%category%%", $cat_name, $title); |
|
4671 | 4671 | } |
4672 | 4672 | |
4673 | - if ( strpos( $title, '%%tag%%' ) !== false ) { |
|
4673 | + if (strpos($title, '%%tag%%') !== false) { |
|
4674 | 4674 | $cat_name = ''; |
4675 | 4675 | |
4676 | - if ( $gd_page == 'detail' ) { |
|
4677 | - if ( $post->default_category ) { |
|
4678 | - $cat = get_term( $post->default_category, $post->post_type . 'category' ); |
|
4679 | - $cat_name = ( isset( $cat->name ) ) ? $cat->name : ''; |
|
4676 | + if ($gd_page == 'detail') { |
|
4677 | + if ($post->default_category) { |
|
4678 | + $cat = get_term($post->default_category, $post->post_type.'category'); |
|
4679 | + $cat_name = (isset($cat->name)) ? $cat->name : ''; |
|
4680 | 4680 | } |
4681 | - } else if ( $gd_page == 'listing' ) { |
|
4681 | + } else if ($gd_page == 'listing') { |
|
4682 | 4682 | $queried_object = get_queried_object(); |
4683 | - if ( isset( $queried_object->name ) ) { |
|
4683 | + if (isset($queried_object->name)) { |
|
4684 | 4684 | $cat_name = $queried_object->name; |
4685 | 4685 | } |
4686 | 4686 | } |
4687 | - $title = str_replace( "%%tag%%", $cat_name, $title ); |
|
4687 | + $title = str_replace("%%tag%%", $cat_name, $title); |
|
4688 | 4688 | } |
4689 | 4689 | |
4690 | - if ( strpos( $title, '%%id%%' ) !== false ) { |
|
4691 | - $ID = ( isset( $post->ID ) ) ? $post->ID : ''; |
|
4692 | - $title = str_replace( "%%id%%", $ID, $title ); |
|
4690 | + if (strpos($title, '%%id%%') !== false) { |
|
4691 | + $ID = (isset($post->ID)) ? $post->ID : ''; |
|
4692 | + $title = str_replace("%%id%%", $ID, $title); |
|
4693 | 4693 | } |
4694 | 4694 | |
4695 | - if ( strpos( $title, '%%sep%%' ) !== false ) { |
|
4696 | - $title = str_replace( "%%sep%%", $sep, $title ); |
|
4695 | + if (strpos($title, '%%sep%%') !== false) { |
|
4696 | + $title = str_replace("%%sep%%", $sep, $title); |
|
4697 | 4697 | } |
4698 | 4698 | |
4699 | 4699 | // location variables |
4700 | 4700 | $gd_post_type = geodir_get_current_posttype(); |
4701 | - $location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type ); |
|
4701 | + $location_array = geodir_get_current_location_terms('query_vars', $gd_post_type); |
|
4702 | 4702 | |
4703 | 4703 | /** |
4704 | 4704 | * Filter the title variables location variables array |
@@ -4711,20 +4711,20 @@ discard block |
||
4711 | 4711 | * @param string $gd_page The page being filtered. |
4712 | 4712 | * @param string $sep The separator, default: `|`. |
4713 | 4713 | */ |
4714 | - $location_array = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep ); |
|
4714 | + $location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep); |
|
4715 | 4715 | |
4716 | - if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) { |
|
4717 | - if ( get_query_var( 'gd_country_full' ) ) { |
|
4718 | - $location_array['gd_country'] = get_query_var( 'gd_country_full' ); |
|
4716 | + if ($gd_page == 'location' && get_query_var('gd_country_full')) { |
|
4717 | + if (get_query_var('gd_country_full')) { |
|
4718 | + $location_array['gd_country'] = get_query_var('gd_country_full'); |
|
4719 | 4719 | } |
4720 | - if ( get_query_var( 'gd_region_full' ) ) { |
|
4721 | - $location_array['gd_region'] = get_query_var( 'gd_region_full' ); |
|
4720 | + if (get_query_var('gd_region_full')) { |
|
4721 | + $location_array['gd_region'] = get_query_var('gd_region_full'); |
|
4722 | 4722 | } |
4723 | - if ( get_query_var( 'gd_city_full' ) ) { |
|
4724 | - $location_array['gd_city'] = get_query_var( 'gd_city_full' ); |
|
4723 | + if (get_query_var('gd_city_full')) { |
|
4724 | + $location_array['gd_city'] = get_query_var('gd_city_full'); |
|
4725 | 4725 | } |
4726 | - if ( get_query_var( 'gd_neighbourhood_full' ) ) { |
|
4727 | - $location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' ); |
|
4726 | + if (get_query_var('gd_neighbourhood_full')) { |
|
4727 | + $location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full'); |
|
4728 | 4728 | } |
4729 | 4729 | } |
4730 | 4730 | |
@@ -4739,57 +4739,57 @@ discard block |
||
4739 | 4739 | * @param string $gd_page The page being filtered. |
4740 | 4740 | * @param string $sep The separator, default: `|`. |
4741 | 4741 | */ |
4742 | - $title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep ); |
|
4742 | + $title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep); |
|
4743 | 4743 | |
4744 | - if ( strpos( $title, '%%search_term%%' ) !== false ) { |
|
4744 | + if (strpos($title, '%%search_term%%') !== false) { |
|
4745 | 4745 | $search_term = ''; |
4746 | - if ( isset( $_REQUEST['s'] ) ) { |
|
4747 | - $search_term = esc_attr( $_REQUEST['s'] ); |
|
4746 | + if (isset($_REQUEST['s'])) { |
|
4747 | + $search_term = esc_attr($_REQUEST['s']); |
|
4748 | 4748 | } |
4749 | - $title = str_replace( "%%search_term%%", $search_term, $title ); |
|
4749 | + $title = str_replace("%%search_term%%", $search_term, $title); |
|
4750 | 4750 | } |
4751 | 4751 | |
4752 | - if ( strpos( $title, '%%search_near%%' ) !== false ) { |
|
4752 | + if (strpos($title, '%%search_near%%') !== false) { |
|
4753 | 4753 | $search_term = ''; |
4754 | - if ( isset( $_REQUEST['snear'] ) ) { |
|
4755 | - $search_term = esc_attr( $_REQUEST['snear'] ); |
|
4754 | + if (isset($_REQUEST['snear'])) { |
|
4755 | + $search_term = esc_attr($_REQUEST['snear']); |
|
4756 | 4756 | } |
4757 | - $title = str_replace( "%%search_near%%", $search_term, $title ); |
|
4757 | + $title = str_replace("%%search_near%%", $search_term, $title); |
|
4758 | 4758 | } |
4759 | 4759 | |
4760 | - if ( strpos( $title, '%%name%%' ) !== false ) { |
|
4761 | - if ( is_author() ) { |
|
4762 | - $curauth = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) ); |
|
4760 | + if (strpos($title, '%%name%%') !== false) { |
|
4761 | + if (is_author()) { |
|
4762 | + $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author')); |
|
4763 | 4763 | $author_name = $curauth->display_name; |
4764 | 4764 | } else { |
4765 | 4765 | $author_name = get_the_author(); |
4766 | 4766 | } |
4767 | - if ( ! $author_name || $author_name === '' ) { |
|
4767 | + if (!$author_name || $author_name === '') { |
|
4768 | 4768 | $queried_object = get_queried_object(); |
4769 | 4769 | |
4770 | - if ( isset( $queried_object->data->user_nicename ) ) { |
|
4770 | + if (isset($queried_object->data->user_nicename)) { |
|
4771 | 4771 | $author_name = $queried_object->data->display_name; |
4772 | 4772 | } |
4773 | 4773 | } |
4774 | - $title = str_replace( "%%name%%", $author_name, $title ); |
|
4774 | + $title = str_replace("%%name%%", $author_name, $title); |
|
4775 | 4775 | } |
4776 | 4776 | |
4777 | - if ( strpos( $title, '%%page%%' ) !== false ) { |
|
4778 | - $page = geodir_title_meta_page( $sep ); |
|
4779 | - $title = str_replace( "%%page%%", $page, $title ); |
|
4777 | + if (strpos($title, '%%page%%') !== false) { |
|
4778 | + $page = geodir_title_meta_page($sep); |
|
4779 | + $title = str_replace("%%page%%", $page, $title); |
|
4780 | 4780 | } |
4781 | - if ( strpos( $title, '%%pagenumber%%' ) !== false ) { |
|
4781 | + if (strpos($title, '%%pagenumber%%') !== false) { |
|
4782 | 4782 | $pagenumber = geodir_title_meta_pagenumber(); |
4783 | - $title = str_replace( "%%pagenumber%%", $pagenumber, $title ); |
|
4783 | + $title = str_replace("%%pagenumber%%", $pagenumber, $title); |
|
4784 | 4784 | } |
4785 | - if ( strpos( $title, '%%pagetotal%%' ) !== false ) { |
|
4785 | + if (strpos($title, '%%pagetotal%%') !== false) { |
|
4786 | 4786 | $pagetotal = geodir_title_meta_pagetotal(); |
4787 | - $title = str_replace( "%%pagetotal%%", $pagetotal, $title ); |
|
4787 | + $title = str_replace("%%pagetotal%%", $pagetotal, $title); |
|
4788 | 4788 | } |
4789 | 4789 | |
4790 | - $title = wptexturize( $title ); |
|
4791 | - $title = convert_chars( $title ); |
|
4792 | - $title = esc_html( $title ); |
|
4790 | + $title = wptexturize($title); |
|
4791 | + $title = convert_chars($title); |
|
4792 | + $title = esc_html($title); |
|
4793 | 4793 | |
4794 | 4794 | /** |
4795 | 4795 | * Filter the title variables after standard ones have been filtered. |
@@ -4803,7 +4803,7 @@ discard block |
||
4803 | 4803 | * @param string $sep The separator, default: `|`. |
4804 | 4804 | */ |
4805 | 4805 | |
4806 | - return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep ); |
|
4806 | + return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep); |
|
4807 | 4807 | } |
4808 | 4808 | |
4809 | 4809 | /** |
@@ -4816,82 +4816,82 @@ discard block |
||
4816 | 4816 | * |
4817 | 4817 | * @return array Translation texts. |
4818 | 4818 | */ |
4819 | -function geodir_load_cpt_text_translation( $translation_texts = array() ) { |
|
4820 | - $gd_post_types = geodir_get_posttypes( 'array' ); |
|
4819 | +function geodir_load_cpt_text_translation($translation_texts = array()) { |
|
4820 | + $gd_post_types = geodir_get_posttypes('array'); |
|
4821 | 4821 | |
4822 | - if ( ! empty( $gd_post_types ) ) { |
|
4823 | - foreach ( $gd_post_types as $post_type => $cpt_info ) { |
|
4824 | - $labels = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : ''; |
|
4825 | - $description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : ''; |
|
4826 | - $seo = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : ''; |
|
4822 | + if (!empty($gd_post_types)) { |
|
4823 | + foreach ($gd_post_types as $post_type => $cpt_info) { |
|
4824 | + $labels = isset($cpt_info['labels']) ? $cpt_info['labels'] : ''; |
|
4825 | + $description = isset($cpt_info['description']) ? $cpt_info['description'] : ''; |
|
4826 | + $seo = isset($cpt_info['seo']) ? $cpt_info['seo'] : ''; |
|
4827 | 4827 | |
4828 | - if ( ! empty( $labels ) ) { |
|
4829 | - if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) { |
|
4828 | + if (!empty($labels)) { |
|
4829 | + if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) { |
|
4830 | 4830 | $translation_texts[] = $labels['name']; |
4831 | 4831 | } |
4832 | - if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) { |
|
4832 | + if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) { |
|
4833 | 4833 | $translation_texts[] = $labels['singular_name']; |
4834 | 4834 | } |
4835 | - if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) { |
|
4835 | + if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) { |
|
4836 | 4836 | $translation_texts[] = $labels['add_new']; |
4837 | 4837 | } |
4838 | - if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) { |
|
4838 | + if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) { |
|
4839 | 4839 | $translation_texts[] = $labels['add_new_item']; |
4840 | 4840 | } |
4841 | - if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) { |
|
4841 | + if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) { |
|
4842 | 4842 | $translation_texts[] = $labels['edit_item']; |
4843 | 4843 | } |
4844 | - if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) { |
|
4844 | + if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) { |
|
4845 | 4845 | $translation_texts[] = $labels['new_item']; |
4846 | 4846 | } |
4847 | - if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) { |
|
4847 | + if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) { |
|
4848 | 4848 | $translation_texts[] = $labels['view_item']; |
4849 | 4849 | } |
4850 | - if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) { |
|
4850 | + if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) { |
|
4851 | 4851 | $translation_texts[] = $labels['search_items']; |
4852 | 4852 | } |
4853 | - if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) { |
|
4853 | + if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) { |
|
4854 | 4854 | $translation_texts[] = $labels['not_found']; |
4855 | 4855 | } |
4856 | - if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) { |
|
4856 | + if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) { |
|
4857 | 4857 | $translation_texts[] = $labels['not_found_in_trash']; |
4858 | 4858 | } |
4859 | - if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) { |
|
4859 | + if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) { |
|
4860 | 4860 | $translation_texts[] = $labels['label_post_profile']; |
4861 | 4861 | } |
4862 | - if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) { |
|
4862 | + if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) { |
|
4863 | 4863 | $translation_texts[] = $labels['label_post_info']; |
4864 | 4864 | } |
4865 | - if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) { |
|
4865 | + if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) { |
|
4866 | 4866 | $translation_texts[] = $labels['label_post_images']; |
4867 | 4867 | } |
4868 | - if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) { |
|
4868 | + if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) { |
|
4869 | 4869 | $translation_texts[] = $labels['label_post_map']; |
4870 | 4870 | } |
4871 | - if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) { |
|
4871 | + if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) { |
|
4872 | 4872 | $translation_texts[] = $labels['label_reviews']; |
4873 | 4873 | } |
4874 | - if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) { |
|
4874 | + if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) { |
|
4875 | 4875 | $translation_texts[] = $labels['label_related_listing']; |
4876 | 4876 | } |
4877 | 4877 | } |
4878 | 4878 | |
4879 | - if ( $description != '' && ! in_array( $description, $translation_texts ) ) { |
|
4880 | - $translation_texts[] = normalize_whitespace( $description ); |
|
4879 | + if ($description != '' && !in_array($description, $translation_texts)) { |
|
4880 | + $translation_texts[] = normalize_whitespace($description); |
|
4881 | 4881 | } |
4882 | 4882 | |
4883 | - if ( ! empty( $seo ) ) { |
|
4884 | - if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) { |
|
4885 | - $translation_texts[] = normalize_whitespace( $seo['meta_keyword'] ); |
|
4883 | + if (!empty($seo)) { |
|
4884 | + if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) { |
|
4885 | + $translation_texts[] = normalize_whitespace($seo['meta_keyword']); |
|
4886 | 4886 | } |
4887 | 4887 | |
4888 | - if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) { |
|
4889 | - $translation_texts[] = normalize_whitespace( $seo['meta_description'] ); |
|
4888 | + if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) { |
|
4889 | + $translation_texts[] = normalize_whitespace($seo['meta_description']); |
|
4890 | 4890 | } |
4891 | 4891 | } |
4892 | 4892 | } |
4893 | 4893 | } |
4894 | - $translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts; |
|
4894 | + $translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts; |
|
4895 | 4895 | |
4896 | 4896 | return $translation_texts; |
4897 | 4897 | } |
@@ -4906,27 +4906,27 @@ discard block |
||
4906 | 4906 | * |
4907 | 4907 | * @return array Location terms. |
4908 | 4908 | */ |
4909 | -function geodir_remove_location_terms( $location_terms = array() ) { |
|
4910 | - $location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false; |
|
4909 | +function geodir_remove_location_terms($location_terms = array()) { |
|
4910 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false; |
|
4911 | 4911 | |
4912 | - if ( ! empty( $location_terms ) && $location_manager ) { |
|
4913 | - $hide_country_part = get_option( 'geodir_location_hide_country_part' ); |
|
4914 | - $hide_region_part = get_option( 'geodir_location_hide_region_part' ); |
|
4912 | + if (!empty($location_terms) && $location_manager) { |
|
4913 | + $hide_country_part = get_option('geodir_location_hide_country_part'); |
|
4914 | + $hide_region_part = get_option('geodir_location_hide_region_part'); |
|
4915 | 4915 | |
4916 | - if ( $hide_region_part && $hide_country_part ) { |
|
4917 | - if ( isset( $location_terms['gd_country'] ) ) { |
|
4918 | - unset( $location_terms['gd_country'] ); |
|
4916 | + if ($hide_region_part && $hide_country_part) { |
|
4917 | + if (isset($location_terms['gd_country'])) { |
|
4918 | + unset($location_terms['gd_country']); |
|
4919 | 4919 | } |
4920 | - if ( isset( $location_terms['gd_region'] ) ) { |
|
4921 | - unset( $location_terms['gd_region'] ); |
|
4920 | + if (isset($location_terms['gd_region'])) { |
|
4921 | + unset($location_terms['gd_region']); |
|
4922 | 4922 | } |
4923 | - } else if ( $hide_region_part && ! $hide_country_part ) { |
|
4924 | - if ( isset( $location_terms['gd_region'] ) ) { |
|
4925 | - unset( $location_terms['gd_region'] ); |
|
4923 | + } else if ($hide_region_part && !$hide_country_part) { |
|
4924 | + if (isset($location_terms['gd_region'])) { |
|
4925 | + unset($location_terms['gd_region']); |
|
4926 | 4926 | } |
4927 | - } else if ( ! $hide_region_part && $hide_country_part ) { |
|
4928 | - if ( isset( $location_terms['gd_country'] ) ) { |
|
4929 | - unset( $location_terms['gd_country'] ); |
|
4927 | + } else if (!$hide_region_part && $hide_country_part) { |
|
4928 | + if (isset($location_terms['gd_country'])) { |
|
4929 | + unset($location_terms['gd_country']); |
|
4930 | 4930 | } |
4931 | 4931 | } |
4932 | 4932 | } |
@@ -4944,33 +4944,33 @@ discard block |
||
4944 | 4944 | * @param WP_Post $post Post object. |
4945 | 4945 | * @param bool $update Whether this is an existing listing being updated or not. |
4946 | 4946 | */ |
4947 | -function geodir_on_wp_insert_post( $post_ID, $post, $update ) { |
|
4948 | - if ( ! $update ) { |
|
4947 | +function geodir_on_wp_insert_post($post_ID, $post, $update) { |
|
4948 | + if (!$update) { |
|
4949 | 4949 | return; |
4950 | 4950 | } |
4951 | 4951 | |
4952 | - $action = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : ''; |
|
4953 | - $is_admin = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false; |
|
4952 | + $action = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : ''; |
|
4953 | + $is_admin = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false; |
|
4954 | 4954 | $inline_save = $action == 'inline-save' ? true : false; |
4955 | 4955 | |
4956 | - if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) { |
|
4956 | + if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) { |
|
4957 | 4957 | return; |
4958 | 4958 | } |
4959 | 4959 | |
4960 | - if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) { |
|
4960 | + if ($action != '' && in_array($action, array('geodir_import_export'))) { |
|
4961 | 4961 | return; |
4962 | 4962 | } |
4963 | 4963 | |
4964 | 4964 | $user_id = (int) get_current_user_id(); |
4965 | 4965 | |
4966 | - if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) { |
|
4967 | - $author_id = ! empty( $post->post_author ) ? $post->post_author : 0; |
|
4966 | + if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) { |
|
4967 | + $author_id = !empty($post->post_author) ? $post->post_author : 0; |
|
4968 | 4968 | |
4969 | - if ( $user_id == $author_id && ! is_super_admin() ) { |
|
4970 | - $from_email = get_option( 'site_email' ); |
|
4969 | + if ($user_id == $author_id && !is_super_admin()) { |
|
4970 | + $from_email = get_option('site_email'); |
|
4971 | 4971 | $from_name = get_site_emailName(); |
4972 | - $to_email = get_option( 'admin_email' ); |
|
4973 | - $to_name = get_option( 'name' ); |
|
4972 | + $to_email = get_option('admin_email'); |
|
4973 | + $to_name = get_option('name'); |
|
4974 | 4974 | $message_type = 'listing_edited'; |
4975 | 4975 | |
4976 | 4976 | $notify_edited = true; |
@@ -4982,9 +4982,9 @@ discard block |
||
4982 | 4982 | * @param bool $notify_edited Notify on listing edited by author? |
4983 | 4983 | * @param object $post The current post object. |
4984 | 4984 | */ |
4985 | - $notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post ); |
|
4985 | + $notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post); |
|
4986 | 4986 | |
4987 | - geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID ); |
|
4987 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
4988 | 4988 | } |
4989 | 4989 | } |
4990 | 4990 | } |
@@ -4999,14 +4999,14 @@ discard block |
||
4999 | 4999 | * |
5000 | 5000 | * @return string|null The current page start & end numbering. |
5001 | 5001 | */ |
5002 | -function geodir_title_meta_page( $sep ) { |
|
5002 | +function geodir_title_meta_page($sep) { |
|
5003 | 5003 | $replacement = null; |
5004 | 5004 | |
5005 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
5006 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
5005 | + $max = geodir_title_meta_pagenumbering('max'); |
|
5006 | + $nr = geodir_title_meta_pagenumbering('nr'); |
|
5007 | 5007 | |
5008 | - if ( $max > 1 && $nr > 1 ) { |
|
5009 | - $replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max ); |
|
5008 | + if ($max > 1 && $nr > 1) { |
|
5009 | + $replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max); |
|
5010 | 5010 | } |
5011 | 5011 | |
5012 | 5012 | return $replacement; |
@@ -5023,8 +5023,8 @@ discard block |
||
5023 | 5023 | function geodir_title_meta_pagenumber() { |
5024 | 5024 | $replacement = null; |
5025 | 5025 | |
5026 | - $nr = geodir_title_meta_pagenumbering( 'nr' ); |
|
5027 | - if ( isset( $nr ) && $nr > 0 ) { |
|
5026 | + $nr = geodir_title_meta_pagenumbering('nr'); |
|
5027 | + if (isset($nr) && $nr > 0) { |
|
5028 | 5028 | $replacement = (string) $nr; |
5029 | 5029 | } |
5030 | 5030 | |
@@ -5042,8 +5042,8 @@ discard block |
||
5042 | 5042 | function geodir_title_meta_pagetotal() { |
5043 | 5043 | $replacement = null; |
5044 | 5044 | |
5045 | - $max = geodir_title_meta_pagenumbering( 'max' ); |
|
5046 | - if ( isset( $max ) && $max > 0 ) { |
|
5045 | + $max = geodir_title_meta_pagenumbering('max'); |
|
5046 | + if (isset($max) && $max > 0) { |
|
5047 | 5047 | $replacement = (string) $max; |
5048 | 5048 | } |
5049 | 5049 | |
@@ -5063,36 +5063,36 @@ discard block |
||
5063 | 5063 | * |
5064 | 5064 | * @return int|null The current page numbering. |
5065 | 5065 | */ |
5066 | -function geodir_title_meta_pagenumbering( $request = 'nr' ) { |
|
5066 | +function geodir_title_meta_pagenumbering($request = 'nr') { |
|
5067 | 5067 | global $wp_query, $post; |
5068 | 5068 | $max_num_pages = null; |
5069 | 5069 | $page_number = null; |
5070 | 5070 | |
5071 | 5071 | $max_num_pages = 1; |
5072 | 5072 | |
5073 | - if ( ! is_singular() ) { |
|
5074 | - $page_number = get_query_var( 'paged' ); |
|
5075 | - if ( $page_number === 0 || $page_number === '' ) { |
|
5073 | + if (!is_singular()) { |
|
5074 | + $page_number = get_query_var('paged'); |
|
5075 | + if ($page_number === 0 || $page_number === '') { |
|
5076 | 5076 | $page_number = 1; |
5077 | 5077 | } |
5078 | 5078 | |
5079 | - if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) { |
|
5079 | + if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) { |
|
5080 | 5080 | $max_num_pages = $wp_query->max_num_pages; |
5081 | 5081 | } |
5082 | 5082 | } else { |
5083 | - $page_number = get_query_var( 'page' ); |
|
5084 | - if ( $page_number === 0 || $page_number === '' ) { |
|
5083 | + $page_number = get_query_var('page'); |
|
5084 | + if ($page_number === 0 || $page_number === '') { |
|
5085 | 5085 | $page_number = 1; |
5086 | 5086 | } |
5087 | 5087 | |
5088 | - if ( isset( $post->post_content ) ) { |
|
5089 | - $max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 ); |
|
5088 | + if (isset($post->post_content)) { |
|
5089 | + $max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1); |
|
5090 | 5090 | } |
5091 | 5091 | } |
5092 | 5092 | |
5093 | 5093 | $return = null; |
5094 | 5094 | |
5095 | - switch ( $request ) { |
|
5095 | + switch ($request) { |
|
5096 | 5096 | case 'nr': |
5097 | 5097 | $return = $page_number; |
5098 | 5098 | break; |
@@ -5113,14 +5113,14 @@ discard block |
||
5113 | 5113 | * |
5114 | 5114 | * @return array Terms. |
5115 | 5115 | */ |
5116 | -function geodir_filter_empty_terms( $terms ) { |
|
5117 | - if ( empty( $terms ) ) { |
|
5116 | +function geodir_filter_empty_terms($terms) { |
|
5117 | + if (empty($terms)) { |
|
5118 | 5118 | return $terms; |
5119 | 5119 | } |
5120 | 5120 | |
5121 | 5121 | $return = array(); |
5122 | - foreach ( $terms as $term ) { |
|
5123 | - if ( isset( $term->count ) && $term->count > 0 ) { |
|
5122 | + foreach ($terms as $term) { |
|
5123 | + if (isset($term->count) && $term->count > 0) { |
|
5124 | 5124 | $return[] = $term; |
5125 | 5125 | } else { |
5126 | 5126 | /** |
@@ -5131,7 +5131,7 @@ discard block |
||
5131 | 5131 | * @param array $return The array of terms to return. |
5132 | 5132 | * @param object $term The term object. |
5133 | 5133 | */ |
5134 | - $return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term ); |
|
5134 | + $return = apply_filters('geodir_filter_empty_terms_filter', $return, $term); |
|
5135 | 5135 | } |
5136 | 5136 | } |
5137 | 5137 | |
@@ -5148,15 +5148,15 @@ discard block |
||
5148 | 5148 | * |
5149 | 5149 | * @return array |
5150 | 5150 | */ |
5151 | -function geodir_remove_hentry( $class ) { |
|
5152 | - if ( geodir_is_page( 'detail' ) ) { |
|
5153 | - $class = array_diff( $class, array( 'hentry' ) ); |
|
5151 | +function geodir_remove_hentry($class) { |
|
5152 | + if (geodir_is_page('detail')) { |
|
5153 | + $class = array_diff($class, array('hentry')); |
|
5154 | 5154 | } |
5155 | 5155 | |
5156 | 5156 | return $class; |
5157 | 5157 | } |
5158 | 5158 | |
5159 | -add_filter( 'post_class', 'geodir_remove_hentry' ); |
|
5159 | +add_filter('post_class', 'geodir_remove_hentry'); |
|
5160 | 5160 | |
5161 | 5161 | /** |
5162 | 5162 | * Registers a individual text string for WPML translation. |
@@ -5168,8 +5168,8 @@ discard block |
||
5168 | 5168 | * @param string $domain The plugin domain. Default geodirectory. |
5169 | 5169 | * @param string $name The name of the string which helps to know what's being translated. |
5170 | 5170 | */ |
5171 | -function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) { |
|
5172 | - do_action( 'wpml_register_single_string', $domain, $name, $string ); |
|
5171 | +function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') { |
|
5172 | + do_action('wpml_register_single_string', $domain, $name, $string); |
|
5173 | 5173 | } |
5174 | 5174 | |
5175 | 5175 | /** |
@@ -5184,6 +5184,6 @@ discard block |
||
5184 | 5184 | * @param string $language_code Return the translation in this language. Default is NULL which returns the current language. |
5185 | 5185 | * @return string The translated string. |
5186 | 5186 | */ |
5187 | -function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) { |
|
5188 | - return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code ); |
|
5187 | +function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) { |
|
5188 | + return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code); |
|
5189 | 5189 | } |
5190 | 5190 | \ No newline at end of file |