Test Failed
Pull Request — master (#383)
by Kiran
18:03
created
geodirectory-functions/cat-meta-functions/Tax-meta-class.php 3 patches
Indentation   +2027 added lines, -2027 removed lines patch added patch discarded remove patch
@@ -28,260 +28,260 @@  discard block
 block discarded – undo
28 28
 
29 29
 if (!class_exists('Tax_Meta_Class')) :
30 30
 
31
-    /**
32
-     * All Types Meta Box class.
33
-     *
34
-     * @package All Types Meta Box
35
-     * @since 1.0
36
-     *
37
-     * @todo Nothing.
38
-     */
39
-
40
-
41
-    class Tax_Meta_Class
42
-    {
43
-
44
-        /**
45
-         * Holds meta box object
46
-         *
47
-         * @var object
48
-         * @access protected
49
-         */
50
-        protected $_meta_box;
51
-
52
-        /**
53
-         * Holds meta box fields.
54
-         *
55
-         * @var array
56
-         * @access protected
57
-         */
58
-        protected $_prefix;
59
-
60
-        /**
61
-         * Holds Prefix for meta box fields.
62
-         *
63
-         * @var array
64
-         * @access protected
65
-         */
66
-        protected $_fields;
67
-
68
-        /**
69
-         * Use local images.
70
-         *
71
-         * @var bool
72
-         * @access protected
73
-         */
74
-        protected $_Local_images;
75
-
76
-        /**
77
-         * What form is this? edit or new term.
78
-         *
79
-         * @var string
80
-         * @access protected
81
-         * $since 1.0
82
-         */
83
-        protected $_form_type;
84
-        /**
85
-         * SelfPath to allow themes as well as plugins.
86
-         *
87
-         * @var string
88
-         * @access protected
89
-         * $since 1.0
90
-         */
91
-        protected $SelfPath;
92
-
93
-        /**
94
-         * Constructor
95
-         *
96
-         * @since 1.0
97
-         * @access public
98
-         *
99
-         * @param array $meta_box
100
-         */
101
-        public function __construct($meta_box)
102
-        {
103
-
104
-            // If we are not in admin area exit.
105
-            if (!is_admin())
106
-                return;
107
-
108
-            // Assign meta box values to local variables and add it's missed values.
109
-            $this->_meta_box = $meta_box;
110
-            $this->_prefix = (isset($meta_box['prefix'])) ? $meta_box['prefix'] : '';
111
-            $this->_fields = &$this->_meta_box['fields'];
112
-            $this->_Local_images = (isset($meta_box['local_images'])) ? true : false;
113
-            $this->add_missed_values();
114
-            if (isset($meta_box['use_with_theme']))
115
-                if ($meta_box['use_with_theme'] === true) {
116
-                    $this->SelfPath = get_stylesheet_directory_uri() . '/library/cat-meta';
117
-                } elseif ($meta_box['use_with_theme'] === false) {
118
-                    $this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
119
-                } else {
120
-                    $this->SelfPath = $meta_box['use_with_theme'];
121
-                }
122
-            else {
123
-                $this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
124
-            }
125
-
126
-
127
-            // Add Actions
128
-            add_action('admin_init', array(&$this, 'add'));
129
-
130
-            // Check for special fields and add needed actions for them.
131
-            $this->check_field_upload();
132
-            $this->check_field_color();
133
-            $this->check_field_date();
134
-            $this->check_field_time();
135
-
136
-            // Load common js, css files
137
-            // Must enqueue for all pages as we need js for the media upload, too.
138
-            add_action('admin_print_styles', array(&$this, 'load_scripts_styles'));
139
-
140
-        }
141
-
142
-        /**
143
-         * Load all Javascript and CSS
144
-         *
145
-         * @since 1.0
146
-         * @access public
147
-         */
148
-        public function load_scripts_styles()
149
-        {
150
-
151
-            // Get Plugin Path
152
-            $plugin_path = $this->SelfPath;
153
-            //only load styles and js when needed
154
-            /* 
31
+	/**
32
+	 * All Types Meta Box class.
33
+	 *
34
+	 * @package All Types Meta Box
35
+	 * @since 1.0
36
+	 *
37
+	 * @todo Nothing.
38
+	 */
39
+
40
+
41
+	class Tax_Meta_Class
42
+	{
43
+
44
+		/**
45
+		 * Holds meta box object
46
+		 *
47
+		 * @var object
48
+		 * @access protected
49
+		 */
50
+		protected $_meta_box;
51
+
52
+		/**
53
+		 * Holds meta box fields.
54
+		 *
55
+		 * @var array
56
+		 * @access protected
57
+		 */
58
+		protected $_prefix;
59
+
60
+		/**
61
+		 * Holds Prefix for meta box fields.
62
+		 *
63
+		 * @var array
64
+		 * @access protected
65
+		 */
66
+		protected $_fields;
67
+
68
+		/**
69
+		 * Use local images.
70
+		 *
71
+		 * @var bool
72
+		 * @access protected
73
+		 */
74
+		protected $_Local_images;
75
+
76
+		/**
77
+		 * What form is this? edit or new term.
78
+		 *
79
+		 * @var string
80
+		 * @access protected
81
+		 * $since 1.0
82
+		 */
83
+		protected $_form_type;
84
+		/**
85
+		 * SelfPath to allow themes as well as plugins.
86
+		 *
87
+		 * @var string
88
+		 * @access protected
89
+		 * $since 1.0
90
+		 */
91
+		protected $SelfPath;
92
+
93
+		/**
94
+		 * Constructor
95
+		 *
96
+		 * @since 1.0
97
+		 * @access public
98
+		 *
99
+		 * @param array $meta_box
100
+		 */
101
+		public function __construct($meta_box)
102
+		{
103
+
104
+			// If we are not in admin area exit.
105
+			if (!is_admin())
106
+				return;
107
+
108
+			// Assign meta box values to local variables and add it's missed values.
109
+			$this->_meta_box = $meta_box;
110
+			$this->_prefix = (isset($meta_box['prefix'])) ? $meta_box['prefix'] : '';
111
+			$this->_fields = &$this->_meta_box['fields'];
112
+			$this->_Local_images = (isset($meta_box['local_images'])) ? true : false;
113
+			$this->add_missed_values();
114
+			if (isset($meta_box['use_with_theme']))
115
+				if ($meta_box['use_with_theme'] === true) {
116
+					$this->SelfPath = get_stylesheet_directory_uri() . '/library/cat-meta';
117
+				} elseif ($meta_box['use_with_theme'] === false) {
118
+					$this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
119
+				} else {
120
+					$this->SelfPath = $meta_box['use_with_theme'];
121
+				}
122
+			else {
123
+				$this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
124
+			}
125
+
126
+
127
+			// Add Actions
128
+			add_action('admin_init', array(&$this, 'add'));
129
+
130
+			// Check for special fields and add needed actions for them.
131
+			$this->check_field_upload();
132
+			$this->check_field_color();
133
+			$this->check_field_date();
134
+			$this->check_field_time();
135
+
136
+			// Load common js, css files
137
+			// Must enqueue for all pages as we need js for the media upload, too.
138
+			add_action('admin_print_styles', array(&$this, 'load_scripts_styles'));
139
+
140
+		}
141
+
142
+		/**
143
+		 * Load all Javascript and CSS
144
+		 *
145
+		 * @since 1.0
146
+		 * @access public
147
+		 */
148
+		public function load_scripts_styles()
149
+		{
150
+
151
+			// Get Plugin Path
152
+			$plugin_path = $this->SelfPath;
153
+			//only load styles and js when needed
154
+			/* 
155 155
 		 * since 1.0
156 156
 		 */
157
-            $taxnow = isset($_REQUEST['taxonomy']) ? $_REQUEST['taxonomy'] : '';
158
-
159
-            if (!empty($this->_meta_box['pages'])) {
160
-                if (in_array($taxnow, $this->_meta_box['pages'])) {
161
-                    // Enqueue Meta Box Style
162
-                    //wp_enqueue_style( 'tax-meta-clss', $plugin_path . '/css/Tax-meta-class.css' );
163
-                    // Enqueue Meta Box Scripts
164
-                    //wp_enqueue_script( 'tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array( 'jquery' ), null, true );
165
-
166
-                }
167
-            }
168
-
169
-        }
170
-
171
-        /**
172
-         * Check the Field Upload, Add needed Actions
173
-         *
174
-         * @since 1.0
175
-         * @access public
176
-         */
177
-        public function enqueue_tax_meta_scripts()
178
-        {
179
-            // Make upload feature work event when custom post type doesn't support 'editor'
180
-            wp_enqueue_script('media-upload');
181
-            wp_enqueue_script('thickbox');
182
-            add_thickbox();
183
-            wp_enqueue_script('jquery-ui-core');
184
-            wp_enqueue_script('jquery-ui-sortable');
185
-
186
-
187
-        }
188
-
189
-        public function check_field_upload()
190
-        {
191
-
192
-            // Check if the field is an image or file. If not, return.
193
-            if (!$this->has_field('image') && !$this->has_field('file'))
194
-                return;
195
-
196
-
197
-            add_action('wp_enqueue_scripts', array(&$this, 'enqueue_tax_meta_scripts'), 100);
198
-
199
-            // Add data encoding type for file uploading.	
200
-            add_action('post_edit_form_tag', array(&$this, 'add_enctype'));
201
-
202
-
203
-            // Add filters for media upload.
204
-            add_filter('media_upload_gallery', array(&$this, 'insert_images'));
205
-            add_filter('media_upload_library', array(&$this, 'insert_images'));
206
-            add_filter('media_upload_image', array(&$this, 'insert_images'));
207
-
208
-            // Delete all attachments when delete custom post type.
209
-            add_action('wp_ajax_at_delete_file', array(&$this, 'delete_file'));
210
-            add_action('wp_ajax_at_reorder_images', array(&$this, 'reorder_images'));
211
-            // Delete file via Ajax
212
-            add_action('wp_ajax_at_delete_mupload', array($this, 'wp_ajax_delete_image'));
213
-        }
214
-
215
-        /**
216
-         * Add data encoding type for file uploading
217
-         *
218
-         * @since 1.0
219
-         * @access public
220
-         */
221
-        public function add_enctype()
222
-        {
223
-            echo ' enctype="multipart/form-data"';
224
-        }
225
-
226
-        /**
227
-         * Process images added to meta field.
228
-         *
229
-         * Modified from Faster Image Insert plugin.
230
-         *
231
-         * @return void
232
-         * @author Cory Crowley
233
-         */
234
-        public function insert_images()
235
-        {
236
-
237
-            // If post variables are empty, return.
238
-            if (!isset($_POST['at-insert']) || empty($_POST['attachments']))
239
-                return;
240
-
241
-            // Security Check
242
-            check_admin_referer('media-form');
243
-
244
-            // Create Security Nonce
245
-            $nonce = wp_create_nonce('at_ajax_delete');
246
-
247
-            // Get Post Id and Field Id
248
-            $term_id = $_POST['post_id'];
249
-            $id = $_POST['field_id'];
250
-
251
-            // Modify the insertion string
252
-            $html = '';
253
-            foreach ($_POST['attachments'] as $attachment_id => $attachment) {
254
-
255
-                // Strip Slashes
256
-                $attachment = stripslashes_deep($attachment);
257
-
258
-                // If not selected or url is empty, continue in loop.
259
-                if (empty($attachment['selected']) || empty($attachment['url']))
260
-                    continue;
261
-
262
-                $li = "<li id='item_{$attachment_id}'>";
263
-                $li .= "<img src='{$attachment['url']}' alt='image_{$attachment_id}' />";
264
-                //$li 	.= "<a title='" . __( 'Delete this image' ) . "' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'>" . __( 'Delete' ) . "</a>";
265
-                $li .= "<a title='" . __('Remove this image', 'geodirectory') . "' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'><img src='" . $this->SelfPath . "/images/delete-16.png' alt='" . __('Remove', 'geodirectory') . "' /></a>";
266
-                $li .= "<input type='hidden' name='{$id}[]' value='{$attachment_id}' />";
267
-                $li .= "</li>";
268
-                $html .= $li;
269
-
270
-            } // End For Each
271
-
272
-            return media_send_to_editor($html);
273
-
274
-        }
275
-
276
-        /**
277
-         * Delete attachments associated with the post.
278
-         *
279
-         * @since 1.0
280
-         * @access public
281
-         *
282
-         * @param int|string $term_id The term ID.
283
-         */
284
-        /*public function delete_attachments( $term_id ) {
157
+			$taxnow = isset($_REQUEST['taxonomy']) ? $_REQUEST['taxonomy'] : '';
158
+
159
+			if (!empty($this->_meta_box['pages'])) {
160
+				if (in_array($taxnow, $this->_meta_box['pages'])) {
161
+					// Enqueue Meta Box Style
162
+					//wp_enqueue_style( 'tax-meta-clss', $plugin_path . '/css/Tax-meta-class.css' );
163
+					// Enqueue Meta Box Scripts
164
+					//wp_enqueue_script( 'tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array( 'jquery' ), null, true );
165
+
166
+				}
167
+			}
168
+
169
+		}
170
+
171
+		/**
172
+		 * Check the Field Upload, Add needed Actions
173
+		 *
174
+		 * @since 1.0
175
+		 * @access public
176
+		 */
177
+		public function enqueue_tax_meta_scripts()
178
+		{
179
+			// Make upload feature work event when custom post type doesn't support 'editor'
180
+			wp_enqueue_script('media-upload');
181
+			wp_enqueue_script('thickbox');
182
+			add_thickbox();
183
+			wp_enqueue_script('jquery-ui-core');
184
+			wp_enqueue_script('jquery-ui-sortable');
185
+
186
+
187
+		}
188
+
189
+		public function check_field_upload()
190
+		{
191
+
192
+			// Check if the field is an image or file. If not, return.
193
+			if (!$this->has_field('image') && !$this->has_field('file'))
194
+				return;
195
+
196
+
197
+			add_action('wp_enqueue_scripts', array(&$this, 'enqueue_tax_meta_scripts'), 100);
198
+
199
+			// Add data encoding type for file uploading.	
200
+			add_action('post_edit_form_tag', array(&$this, 'add_enctype'));
201
+
202
+
203
+			// Add filters for media upload.
204
+			add_filter('media_upload_gallery', array(&$this, 'insert_images'));
205
+			add_filter('media_upload_library', array(&$this, 'insert_images'));
206
+			add_filter('media_upload_image', array(&$this, 'insert_images'));
207
+
208
+			// Delete all attachments when delete custom post type.
209
+			add_action('wp_ajax_at_delete_file', array(&$this, 'delete_file'));
210
+			add_action('wp_ajax_at_reorder_images', array(&$this, 'reorder_images'));
211
+			// Delete file via Ajax
212
+			add_action('wp_ajax_at_delete_mupload', array($this, 'wp_ajax_delete_image'));
213
+		}
214
+
215
+		/**
216
+		 * Add data encoding type for file uploading
217
+		 *
218
+		 * @since 1.0
219
+		 * @access public
220
+		 */
221
+		public function add_enctype()
222
+		{
223
+			echo ' enctype="multipart/form-data"';
224
+		}
225
+
226
+		/**
227
+		 * Process images added to meta field.
228
+		 *
229
+		 * Modified from Faster Image Insert plugin.
230
+		 *
231
+		 * @return void
232
+		 * @author Cory Crowley
233
+		 */
234
+		public function insert_images()
235
+		{
236
+
237
+			// If post variables are empty, return.
238
+			if (!isset($_POST['at-insert']) || empty($_POST['attachments']))
239
+				return;
240
+
241
+			// Security Check
242
+			check_admin_referer('media-form');
243
+
244
+			// Create Security Nonce
245
+			$nonce = wp_create_nonce('at_ajax_delete');
246
+
247
+			// Get Post Id and Field Id
248
+			$term_id = $_POST['post_id'];
249
+			$id = $_POST['field_id'];
250
+
251
+			// Modify the insertion string
252
+			$html = '';
253
+			foreach ($_POST['attachments'] as $attachment_id => $attachment) {
254
+
255
+				// Strip Slashes
256
+				$attachment = stripslashes_deep($attachment);
257
+
258
+				// If not selected or url is empty, continue in loop.
259
+				if (empty($attachment['selected']) || empty($attachment['url']))
260
+					continue;
261
+
262
+				$li = "<li id='item_{$attachment_id}'>";
263
+				$li .= "<img src='{$attachment['url']}' alt='image_{$attachment_id}' />";
264
+				//$li 	.= "<a title='" . __( 'Delete this image' ) . "' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'>" . __( 'Delete' ) . "</a>";
265
+				$li .= "<a title='" . __('Remove this image', 'geodirectory') . "' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'><img src='" . $this->SelfPath . "/images/delete-16.png' alt='" . __('Remove', 'geodirectory') . "' /></a>";
266
+				$li .= "<input type='hidden' name='{$id}[]' value='{$attachment_id}' />";
267
+				$li .= "</li>";
268
+				$html .= $li;
269
+
270
+			} // End For Each
271
+
272
+			return media_send_to_editor($html);
273
+
274
+		}
275
+
276
+		/**
277
+		 * Delete attachments associated with the post.
278
+		 *
279
+		 * @since 1.0
280
+		 * @access public
281
+		 *
282
+		 * @param int|string $term_id The term ID.
283
+		 */
284
+		/*public function delete_attachments( $term_id ) {
285 285
 		
286 286
 		// Get Attachments
287 287
 		$attachments = get_posts( array( 'numberposts' => -1, 'post_type' => 'attachment', 'post_parent' => $term_id ) );
@@ -295,349 +295,349 @@  discard block
 block discarded – undo
295 295
 		
296 296
 	}*/
297 297
 
298
-        /**
299
-         * Ajax callback for deleting files.
300
-         *
301
-         * Modified from a function used by "Verve Meta Boxes" plugin ( http://goo.gl/aw64H )
302
-         *
303
-         * @since 1.0
304
-         * @access public
305
-         */
306
-        public function delete_file()
307
-        {
308
-
309
-
310
-            // If data is not set, die.
311
-            if (!isset($_POST['data']))
312
-                die();
313
-
314
-            list($nonce, $term_id, $key, $attach_id) = explode('|', $_POST['data']);
315
-
316
-            if (!wp_verify_nonce($nonce, 'at_ajax_delete'))
317
-                die('1');
318
-
319
-            $this->delete_tax_meta($term_id, $key, $attach_id);
320
-
321
-            die('0');
322
-
323
-        }
324
-
325
-        /**
326
-         * Ajax callback for deleting files.
327
-         * Modified from a function used by "Verve Meta Boxes" plugin (http://goo.gl/LzYSq)
328
-         * @since 1.0
329
-         * @access public
330
-         */
331
-        public function wp_ajax_delete_image()
332
-        {
333
-            $term_id = isset($_GET['post_id']) ? intval($_GET['post_id']) : 0;
334
-            $field_id = isset($_GET['field_id']) ? $_GET['field_id'] : 0;
335
-            $attachment_id = isset($_GET['attachment_id']) ? intval($_GET['attachment_id']) : 0;
336
-            $ok = false;
337
-            if (strpos($field_id, '[') === false) {
338
-                check_admin_referer("at-delete-mupload_" . urldecode($field_id));
339
-                if ($term_id > 0)
340
-                    $this->delete_tax_meta($term_id, $field_id);
341
-                //$ok = wp_delete_attachment( $attachment_id );
342
-                $ok = 1;
343
-            } else {
344
-                $f = explode('[', urldecode($field_id));
345
-                $f_fiexed = array();
346
-                foreach ($f as $k => $v) {
347
-                    $f[$k] = str_replace(']', '', $v);
348
-                }
349
-                $saved = $this->get_tax_meta($term_id, $f[0], true);
350
-                if (isset($saved[$f[1]][$f[2]])) {
351
-                    unset($saved[$f[1]][$f[2]]);
352
-                    if ($term_id > 0)
353
-                        update_post_meta($term_id, $f[0], $saved);
354
-                    //$ok = wp_delete_attachment( $attachment_id );
355
-                    $ok = 1;
356
-                }
357
-            }
358
-
359
-
360
-            if ($ok) {
361
-                echo json_encode(array('status' => 'success'));
362
-                die();
363
-            } else {
364
-                echo json_encode(array('message' => __('Cannot delete file. Something\'s wrong.', 'geodirectory')));
365
-                die();
366
-            }
367
-        }
368
-
369
-        /**
370
-         * Ajax callback for reordering Images.
371
-         *
372
-         * @since 1.0
373
-         * @access public
374
-         */
375
-        public function reorder_images()
376
-        {
377
-
378
-            if (!isset($_POST['data']))
379
-                die();
380
-
381
-            list($order, $term_id, $key, $nonce) = explode('|', $_POST['data']);
382
-
383
-            if (!wp_verify_nonce($nonce, 'at_ajax_reorder'))
384
-                die('1');
385
-
386
-            parse_str($order, $items);
387
-            $items = $items['item'];
388
-            $order = 1;
389
-            foreach ($items as $item) {
390
-                wp_update_post(array('ID' => $item, 'post_parent' => $term_id, 'menu_order' => $order));
391
-                $order++;
392
-            }
393
-
394
-            die('0');
395
-
396
-        }
397
-
398
-        /**
399
-         * Check Field Color
400
-         *
401
-         * @since 1.0
402
-         * @access public
403
-         */
404
-        public function check_field_color()
405
-        {
406
-
407
-            if ($this->has_field('color') && $this->is_edit_page()) {
408
-                // Enqueu built-in script and style for color picker.
409
-                wp_enqueue_style('farbtastic');
410
-                wp_enqueue_script('farbtastic');
411
-            }
412
-
413
-        }
414
-
415
-        /**
416
-         * Check Field Date
417
-         *
418
-         * @since 1.0
419
-         * @access public
420
-         */
421
-        public function check_field_date()
422
-        {
423
-
424
-            if ($this->has_field('date') && $this->is_edit_page()) {
425
-                // Enqueu JQuery UI, use proper version.
426
-                wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/themes/base/jquery-ui.css');
427
-                wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/jquery-ui.min.js', array('jquery'));
428
-            }
429
-
430
-        }
431
-
432
-        /**
433
-         * Check Field Time
434
-         *
435
-         * @since 1.0
436
-         * @access public
437
-         */
438
-        public function check_field_time()
439
-        {
440
-
441
-            if ($this->has_field('time') && $this->is_edit_page()) {
442
-
443
-                // Enqueu JQuery UI, use proper version.
444
-                wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/themes/base/jquery-ui.css', array(), false, true);
445
-                wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/jquery-ui.min.js', array('jquery'), false, true);
446
-                wp_enqueue_script('at-timepicker', 'https://github.com/trentrichardson/jQuery-Timepicker-Addon/raw/master/jquery-ui-timepicker-addon.js', array('tmc-jquery-ui'), false, true);
447
-
448
-            }
449
-
450
-        }
451
-
452
-        /**
453
-         * Add Meta Box for multiple post types.
454
-         *
455
-         * @since 1.0
456
-         * @access public
457
-         */
458
-        public function add()
459
-        {
460
-
461
-            // Loop through array
462
-            if (!empty($this->_meta_box['pages'])) {
463
-                foreach ($this->_meta_box['pages'] as $page) {
464
-                    //add fields to edit form
465
-                    add_action($page . '_edit_form_fields', array(&$this, 'show_edit_form'));
466
-                    //add fields to add new form
467
-                    add_action($page . '_add_form_fields', array(&$this, 'show_new_form'));
468
-                    // this saves the edit fields
469
-                    add_action('edited_' . $page, array(&$this, 'save'), 10, 2);
470
-                    // this saves the add fields
471
-                    add_action('created_' . $page, array(&$this, 'save'), 10, 2);
472
-                }
473
-            }
474
-
475
-        }
476
-
477
-        /**
478
-         * Callback function to show fields on add new taxonomy term form.
479
-         *
480
-         * @since 1.0
481
-         * @access public
482
-         */
483
-        public function show_new_form($term_id)
484
-        {
485
-            $this->_form_type = 'new';
486
-            $this->show($term_id);
487
-        }
488
-
489
-        /**
490
-         * Callback function to show fields on term edit form.
491
-         *
492
-         * @since 1.0
493
-         * @access public
494
-         */
495
-        public function show_edit_form($term_id)
496
-        {
497
-            $this->_form_type = 'edit';
498
-            $this->show($term_id);
499
-        }
500
-
501
-
502
-        /**
503
-         * Callback function to show fields in meta box.
504
-         *
505
-         * @since 1.0
506
-         * @access public
507
-         */
508
-        public function show($term_id)
509
-        {
510
-
511
-            wp_nonce_field(basename(__FILE__), 'tax_meta_class_nonce');
512
-
513
-            foreach ($this->_fields as $field) {
514
-                $meta = $this->get_tax_meta($term_id, $field['id'], !$field['multiple']);
515
-                $meta = ($meta !== '') ? $meta : $field['std'];
516
-                if ('image' != $field['type'] && $field['type'] != 'repeater')
517
-                    $meta = is_array($meta) ? array_map('esc_attr', $meta) : esc_attr($meta);
518
-
519
-                if ($field['validate_func']) {
520
-                    echo '<tr class="form-field form-required ' . $field['style'] . '">';
521
-                } else {
522
-                    echo '<tr class="form-field ' . $field['style'] . '">';
523
-                }
524
-
525
-                // Call Separated methods for displaying each type of field.
526
-                call_user_func(array(&$this, 'show_field_' . $field['type']), $field, $meta);
527
-                echo '</tr>';
528
-            }
529
-            echo '</table>';
530
-        }
531
-
532
-        /**
533
-         * Show Repeater Fields.
534
-         *
535
-         * @param string $field
536
-         * @param string $meta
537
-         * @since 1.0
538
-         * @access public
539
-         */
540
-        public function show_field_repeater($field, $meta)
541
-        {
542
-            // Get Plugin Path
543
-            $plugin_path = $this->SelfPath;
544
-            $this->show_field_begin($field, $meta);
545
-            echo "<div class='at-repeat' id='{$field['id']}'>";
546
-
547
-            $c = 0;
548
-
549
-            if (count($meta) > 0 && is_array($meta)) {
550
-                foreach ($meta as $me) {
551
-                    //for labling toggles
552
-                    $mmm = $me[$field['fields'][0]['id']];
553
-                    echo '<div class="at-repater-block">' . $mmm . '<br/><table class="repeater-table" style="display: none;">';
554
-                    if ($field['inline']) {
555
-                        echo '<tr class="at-inline" VALIGN="top">';
556
-                    }
557
-                    foreach ($field['fields'] as $f) {
558
-                        //reset var $id for repeater
559
-                        $id = '';
560
-                        $id = $field['id'] . '[' . $c . '][' . $f['id'] . ']';
561
-                        $m = $me[$f['id']];
562
-                        $m = ($m !== '') ? $m : $f['std'];
563
-                        if ('image' != $f['type'] && $f['type'] != 'repeater')
564
-                            $m = is_array($m) ? array_map('esc_attr', $m) : esc_attr($m);
565
-                        //set new id for field in array format
566
-                        $f['id'] = $id;
567
-                        if (!$field['inline']) {
568
-                            echo '<tr>';
569
-                        }
570
-                        call_user_func(array(&$this, 'show_field_' . $f['type']), $f, $m);
571
-                        if (!$field['inline']) {
572
-                            echo '</tr>';
573
-                        }
574
-                    }
575
-                    if ($field['inline']) {
576
-                        echo '</tr>';
577
-                    }
578
-                    echo '</table>
298
+		/**
299
+		 * Ajax callback for deleting files.
300
+		 *
301
+		 * Modified from a function used by "Verve Meta Boxes" plugin ( http://goo.gl/aw64H )
302
+		 *
303
+		 * @since 1.0
304
+		 * @access public
305
+		 */
306
+		public function delete_file()
307
+		{
308
+
309
+
310
+			// If data is not set, die.
311
+			if (!isset($_POST['data']))
312
+				die();
313
+
314
+			list($nonce, $term_id, $key, $attach_id) = explode('|', $_POST['data']);
315
+
316
+			if (!wp_verify_nonce($nonce, 'at_ajax_delete'))
317
+				die('1');
318
+
319
+			$this->delete_tax_meta($term_id, $key, $attach_id);
320
+
321
+			die('0');
322
+
323
+		}
324
+
325
+		/**
326
+		 * Ajax callback for deleting files.
327
+		 * Modified from a function used by "Verve Meta Boxes" plugin (http://goo.gl/LzYSq)
328
+		 * @since 1.0
329
+		 * @access public
330
+		 */
331
+		public function wp_ajax_delete_image()
332
+		{
333
+			$term_id = isset($_GET['post_id']) ? intval($_GET['post_id']) : 0;
334
+			$field_id = isset($_GET['field_id']) ? $_GET['field_id'] : 0;
335
+			$attachment_id = isset($_GET['attachment_id']) ? intval($_GET['attachment_id']) : 0;
336
+			$ok = false;
337
+			if (strpos($field_id, '[') === false) {
338
+				check_admin_referer("at-delete-mupload_" . urldecode($field_id));
339
+				if ($term_id > 0)
340
+					$this->delete_tax_meta($term_id, $field_id);
341
+				//$ok = wp_delete_attachment( $attachment_id );
342
+				$ok = 1;
343
+			} else {
344
+				$f = explode('[', urldecode($field_id));
345
+				$f_fiexed = array();
346
+				foreach ($f as $k => $v) {
347
+					$f[$k] = str_replace(']', '', $v);
348
+				}
349
+				$saved = $this->get_tax_meta($term_id, $f[0], true);
350
+				if (isset($saved[$f[1]][$f[2]])) {
351
+					unset($saved[$f[1]][$f[2]]);
352
+					if ($term_id > 0)
353
+						update_post_meta($term_id, $f[0], $saved);
354
+					//$ok = wp_delete_attachment( $attachment_id );
355
+					$ok = 1;
356
+				}
357
+			}
358
+
359
+
360
+			if ($ok) {
361
+				echo json_encode(array('status' => 'success'));
362
+				die();
363
+			} else {
364
+				echo json_encode(array('message' => __('Cannot delete file. Something\'s wrong.', 'geodirectory')));
365
+				die();
366
+			}
367
+		}
368
+
369
+		/**
370
+		 * Ajax callback for reordering Images.
371
+		 *
372
+		 * @since 1.0
373
+		 * @access public
374
+		 */
375
+		public function reorder_images()
376
+		{
377
+
378
+			if (!isset($_POST['data']))
379
+				die();
380
+
381
+			list($order, $term_id, $key, $nonce) = explode('|', $_POST['data']);
382
+
383
+			if (!wp_verify_nonce($nonce, 'at_ajax_reorder'))
384
+				die('1');
385
+
386
+			parse_str($order, $items);
387
+			$items = $items['item'];
388
+			$order = 1;
389
+			foreach ($items as $item) {
390
+				wp_update_post(array('ID' => $item, 'post_parent' => $term_id, 'menu_order' => $order));
391
+				$order++;
392
+			}
393
+
394
+			die('0');
395
+
396
+		}
397
+
398
+		/**
399
+		 * Check Field Color
400
+		 *
401
+		 * @since 1.0
402
+		 * @access public
403
+		 */
404
+		public function check_field_color()
405
+		{
406
+
407
+			if ($this->has_field('color') && $this->is_edit_page()) {
408
+				// Enqueu built-in script and style for color picker.
409
+				wp_enqueue_style('farbtastic');
410
+				wp_enqueue_script('farbtastic');
411
+			}
412
+
413
+		}
414
+
415
+		/**
416
+		 * Check Field Date
417
+		 *
418
+		 * @since 1.0
419
+		 * @access public
420
+		 */
421
+		public function check_field_date()
422
+		{
423
+
424
+			if ($this->has_field('date') && $this->is_edit_page()) {
425
+				// Enqueu JQuery UI, use proper version.
426
+				wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/themes/base/jquery-ui.css');
427
+				wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/jquery-ui.min.js', array('jquery'));
428
+			}
429
+
430
+		}
431
+
432
+		/**
433
+		 * Check Field Time
434
+		 *
435
+		 * @since 1.0
436
+		 * @access public
437
+		 */
438
+		public function check_field_time()
439
+		{
440
+
441
+			if ($this->has_field('time') && $this->is_edit_page()) {
442
+
443
+				// Enqueu JQuery UI, use proper version.
444
+				wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/themes/base/jquery-ui.css', array(), false, true);
445
+				wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/jquery-ui.min.js', array('jquery'), false, true);
446
+				wp_enqueue_script('at-timepicker', 'https://github.com/trentrichardson/jQuery-Timepicker-Addon/raw/master/jquery-ui-timepicker-addon.js', array('tmc-jquery-ui'), false, true);
447
+
448
+			}
449
+
450
+		}
451
+
452
+		/**
453
+		 * Add Meta Box for multiple post types.
454
+		 *
455
+		 * @since 1.0
456
+		 * @access public
457
+		 */
458
+		public function add()
459
+		{
460
+
461
+			// Loop through array
462
+			if (!empty($this->_meta_box['pages'])) {
463
+				foreach ($this->_meta_box['pages'] as $page) {
464
+					//add fields to edit form
465
+					add_action($page . '_edit_form_fields', array(&$this, 'show_edit_form'));
466
+					//add fields to add new form
467
+					add_action($page . '_add_form_fields', array(&$this, 'show_new_form'));
468
+					// this saves the edit fields
469
+					add_action('edited_' . $page, array(&$this, 'save'), 10, 2);
470
+					// this saves the add fields
471
+					add_action('created_' . $page, array(&$this, 'save'), 10, 2);
472
+				}
473
+			}
474
+
475
+		}
476
+
477
+		/**
478
+		 * Callback function to show fields on add new taxonomy term form.
479
+		 *
480
+		 * @since 1.0
481
+		 * @access public
482
+		 */
483
+		public function show_new_form($term_id)
484
+		{
485
+			$this->_form_type = 'new';
486
+			$this->show($term_id);
487
+		}
488
+
489
+		/**
490
+		 * Callback function to show fields on term edit form.
491
+		 *
492
+		 * @since 1.0
493
+		 * @access public
494
+		 */
495
+		public function show_edit_form($term_id)
496
+		{
497
+			$this->_form_type = 'edit';
498
+			$this->show($term_id);
499
+		}
500
+
501
+
502
+		/**
503
+		 * Callback function to show fields in meta box.
504
+		 *
505
+		 * @since 1.0
506
+		 * @access public
507
+		 */
508
+		public function show($term_id)
509
+		{
510
+
511
+			wp_nonce_field(basename(__FILE__), 'tax_meta_class_nonce');
512
+
513
+			foreach ($this->_fields as $field) {
514
+				$meta = $this->get_tax_meta($term_id, $field['id'], !$field['multiple']);
515
+				$meta = ($meta !== '') ? $meta : $field['std'];
516
+				if ('image' != $field['type'] && $field['type'] != 'repeater')
517
+					$meta = is_array($meta) ? array_map('esc_attr', $meta) : esc_attr($meta);
518
+
519
+				if ($field['validate_func']) {
520
+					echo '<tr class="form-field form-required ' . $field['style'] . '">';
521
+				} else {
522
+					echo '<tr class="form-field ' . $field['style'] . '">';
523
+				}
524
+
525
+				// Call Separated methods for displaying each type of field.
526
+				call_user_func(array(&$this, 'show_field_' . $field['type']), $field, $meta);
527
+				echo '</tr>';
528
+			}
529
+			echo '</table>';
530
+		}
531
+
532
+		/**
533
+		 * Show Repeater Fields.
534
+		 *
535
+		 * @param string $field
536
+		 * @param string $meta
537
+		 * @since 1.0
538
+		 * @access public
539
+		 */
540
+		public function show_field_repeater($field, $meta)
541
+		{
542
+			// Get Plugin Path
543
+			$plugin_path = $this->SelfPath;
544
+			$this->show_field_begin($field, $meta);
545
+			echo "<div class='at-repeat' id='{$field['id']}'>";
546
+
547
+			$c = 0;
548
+
549
+			if (count($meta) > 0 && is_array($meta)) {
550
+				foreach ($meta as $me) {
551
+					//for labling toggles
552
+					$mmm = $me[$field['fields'][0]['id']];
553
+					echo '<div class="at-repater-block">' . $mmm . '<br/><table class="repeater-table" style="display: none;">';
554
+					if ($field['inline']) {
555
+						echo '<tr class="at-inline" VALIGN="top">';
556
+					}
557
+					foreach ($field['fields'] as $f) {
558
+						//reset var $id for repeater
559
+						$id = '';
560
+						$id = $field['id'] . '[' . $c . '][' . $f['id'] . ']';
561
+						$m = $me[$f['id']];
562
+						$m = ($m !== '') ? $m : $f['std'];
563
+						if ('image' != $f['type'] && $f['type'] != 'repeater')
564
+							$m = is_array($m) ? array_map('esc_attr', $m) : esc_attr($m);
565
+						//set new id for field in array format
566
+						$f['id'] = $id;
567
+						if (!$field['inline']) {
568
+							echo '<tr>';
569
+						}
570
+						call_user_func(array(&$this, 'show_field_' . $f['type']), $f, $m);
571
+						if (!$field['inline']) {
572
+							echo '</tr>';
573
+						}
574
+					}
575
+					if ($field['inline']) {
576
+						echo '</tr>';
577
+					}
578
+					echo '</table>
579 579
 				<span class="at-re-toggle"><img src="';
580
-                    if ($this->_Local_images) {
581
-                        echo $plugin_path . '/images/edit.png';
582
-                    } else {
583
-                        echo 'http://i.imgur.com/ka0E2.png';
584
-                    }
585
-                    echo '" alt="Edit" title="Edit"/></span> 
580
+					if ($this->_Local_images) {
581
+						echo $plugin_path . '/images/edit.png';
582
+					} else {
583
+						echo 'http://i.imgur.com/ka0E2.png';
584
+					}
585
+					echo '" alt="Edit" title="Edit"/></span> 
586 586
 				<img src="';
587
-                    if ($this->_Local_images) {
588
-                        echo $plugin_path . '/images/remove.png';
589
-                    } else {
590
-                        echo 'http://i.imgur.com/g8Duj.png';
591
-                    }
592
-                    echo '" alt="' . __('Remove', 'geodirectory') . '" title="' . __('Remove', 'geodirectory') . '" id="remove-' . $field['id'] . '"></div>';
593
-                    $c = $c + 1;
594
-
595
-                }
596
-                $this->show_field_end($field, $meta);
597
-            }
598
-
599
-            echo '<img src="';
600
-            if ($this->_Local_images) {
601
-                echo $plugin_path . '/images/add.png';
602
-            } else {
603
-                echo 'http://i.imgur.com/w5Tuc.png';
604
-            }
605
-            echo '" alt="' . __('Add', 'geodirectory') . '" title="' . __('Add', 'geodirectory') . '" id="add-' . $field['id'] . '"><br/></div>';
606
-
607
-            //create all fields once more for js function and catch with object buffer
608
-            ob_start();
609
-            echo '<div class="at-repater-block"><table class="repeater-table">';
610
-            if ($field['inline']) {
611
-                echo '<tr class="at-inline" VALIGN="top">';
612
-            }
613
-            foreach ($field['fields'] as $f) {
614
-                //reset var $id for repeater
615
-                $id = '';
616
-                $id = $field['id'] . '[CurrentCounter][' . $f['id'] . ']';
617
-                $f['id'] = $id;
618
-                if (!$field['inline']) {
619
-                    echo '<tr>';
620
-                }
621
-                call_user_func(array(&$this, 'show_field_' . $f['type']), $f, '');
622
-                if (!$field['inline']) {
623
-                    echo '</tr>';
624
-                }
625
-            }
626
-            if ($field['inline']) {
627
-                echo '</tr>';
628
-            }
629
-            echo '</table><img src="';
630
-            if ($this->_Local_images) {
631
-                echo $plugin_path . '/images/remove.png';
632
-            } else {
633
-                echo 'http://i.imgur.com/g8Duj.png';
634
-            }
635
-            echo '" alt="' . __('Remove', 'geodirectory') . '" title="' . __('Remove', 'geodirectory') . '" id="remove-' . $field['id'] . '"></div>';
636
-            $counter = 'countadd_' . $field['id'];
637
-            $js_code = ob_get_clean();
638
-            $js_code = str_replace("'", "\"", $js_code);
639
-            $js_code = str_replace("CurrentCounter", "' + " . $counter . " + '", $js_code);
640
-            echo '<script>
587
+					if ($this->_Local_images) {
588
+						echo $plugin_path . '/images/remove.png';
589
+					} else {
590
+						echo 'http://i.imgur.com/g8Duj.png';
591
+					}
592
+					echo '" alt="' . __('Remove', 'geodirectory') . '" title="' . __('Remove', 'geodirectory') . '" id="remove-' . $field['id'] . '"></div>';
593
+					$c = $c + 1;
594
+
595
+				}
596
+				$this->show_field_end($field, $meta);
597
+			}
598
+
599
+			echo '<img src="';
600
+			if ($this->_Local_images) {
601
+				echo $plugin_path . '/images/add.png';
602
+			} else {
603
+				echo 'http://i.imgur.com/w5Tuc.png';
604
+			}
605
+			echo '" alt="' . __('Add', 'geodirectory') . '" title="' . __('Add', 'geodirectory') . '" id="add-' . $field['id'] . '"><br/></div>';
606
+
607
+			//create all fields once more for js function and catch with object buffer
608
+			ob_start();
609
+			echo '<div class="at-repater-block"><table class="repeater-table">';
610
+			if ($field['inline']) {
611
+				echo '<tr class="at-inline" VALIGN="top">';
612
+			}
613
+			foreach ($field['fields'] as $f) {
614
+				//reset var $id for repeater
615
+				$id = '';
616
+				$id = $field['id'] . '[CurrentCounter][' . $f['id'] . ']';
617
+				$f['id'] = $id;
618
+				if (!$field['inline']) {
619
+					echo '<tr>';
620
+				}
621
+				call_user_func(array(&$this, 'show_field_' . $f['type']), $f, '');
622
+				if (!$field['inline']) {
623
+					echo '</tr>';
624
+				}
625
+			}
626
+			if ($field['inline']) {
627
+				echo '</tr>';
628
+			}
629
+			echo '</table><img src="';
630
+			if ($this->_Local_images) {
631
+				echo $plugin_path . '/images/remove.png';
632
+			} else {
633
+				echo 'http://i.imgur.com/g8Duj.png';
634
+			}
635
+			echo '" alt="' . __('Remove', 'geodirectory') . '" title="' . __('Remove', 'geodirectory') . '" id="remove-' . $field['id'] . '"></div>';
636
+			$counter = 'countadd_' . $field['id'];
637
+			$js_code = ob_get_clean();
638
+			$js_code = str_replace("'", "\"", $js_code);
639
+			$js_code = str_replace("CurrentCounter", "' + " . $counter . " + '", $js_code);
640
+			echo '<script>
641 641
 				jQuery(document).ready(function() {
642 642
 					var ' . $counter . ' = ' . $c . ';
643 643
 					jQuery("#add-' . $field['id'] . '").live(\'click\', function() {
@@ -650,7 +650,7 @@  discard block
 block discarded – undo
650 650
         			});
651 651
     			});
652 652
     		</script>';
653
-            echo '<br/><style>
653
+			echo '<br/><style>
654 654
 .at-inline{line-height: 1 !important;}
655 655
 .at-inline .at-field{border: 0px !important;}
656 656
 .at-inline .at-label{margin: 0 0 1px !important;}
@@ -658,531 +658,531 @@  discard block
 block discarded – undo
658 658
 .at-inline .at-textarea{width: 100px; height: 75px;}
659 659
 .at-repater-block{background-color: #FFFFFF;border: 1px solid;margin: 2px;}
660 660
 </style>';
661
-            $this->show_field_end($field, $meta);
662
-        }
663
-
664
-        /**
665
-         * Begin Field.
666
-         *
667
-         * @param string $field
668
-         * @param string $meta
669
-         * @since 1.0
670
-         * @access public
671
-         */
672
-        public function show_field_begin($field, $meta)
673
-        {
674
-            if (isset($field['group'])) {
675
-                if ($field['group'] == "start") {
676
-                    echo "<td class='at-field'>";
677
-                }
678
-            } else {
679
-                if ($this->_form_type == 'edit') {
680
-                    echo '<th valign="top" scope="row">';
681
-                } else {
682
-                    if ($field['validate_func']) {
683
-                        echo '<td><div class="form-field form-required">';
684
-                    } else {
685
-                        echo '<td><div class="form-field">';
686
-                    }
687
-                }
688
-            }
689
-            if ($field['name'] != '' || $field['name'] != FALSE) {
690
-                //echo "<div class='at-label'>";
691
-                echo "<label for='{$field['id']}'>{$field['name']}</label>";
692
-                //echo "</div>";
693
-            }
694
-            if ($this->_form_type == 'edit') {
695
-                echo '</th><td>';
696
-            }
697
-        }
698
-
699
-        /**
700
-         * End Field.
701
-         *
702
-         * @param string $field
703
-         * @param string $meta
704
-         * @since 1.0
705
-         * @access public
706
-         */
707
-        public function show_field_end($field, $meta = NULL, $group = false)
708
-        {
709
-            if (isset($field['group'])) {
710
-                if ($group == 'end') {
711
-                    if ($field['desc'] != '') {
712
-                        echo "<p class='desc-field'>{$field['desc']}</p></td>";
713
-                    } else {
714
-                        echo "</td>";
715
-                    }
716
-                } else {
717
-                    if ($field['desc'] != '') {
718
-                        echo "<p class='desc-field'>{$field['desc']}</p><br/>";
719
-                    } else {
720
-                        echo '<br/>';
721
-                    }
722
-                }
723
-            } else {
724
-                if ($field['desc'] != '') {
725
-                    echo "<p class='desc-field'>{$field['desc']}</p>";
726
-                }
727
-                if ($this->_form_type == 'edit') {
728
-                    echo '</td>';
729
-                } else {
730
-                    echo '</td></div>';
731
-                }
732
-            }
733
-        }
734
-
735
-        /**
736
-         * Show Field Text.
737
-         *
738
-         * @param string $field
739
-         * @param string $meta
740
-         * @since 1.0
741
-         * @access public
742
-         */
743
-        public function show_field_text($field, $meta)
744
-        {
745
-            $this->show_field_begin($field, $meta);
746
-            echo "<input type='text' class='at-text' name='{$field['id']}' id='{$field['id']}' value='{$meta}' size='30' />";
747
-            $this->show_field_end($field, $meta);
748
-        }
749
-
750
-        /**
751
-         * Show Field hidden.
752
-         *
753
-         * @param string $field
754
-         * @param string|mixed $meta
755
-         * @since 0.1.3
756
-         * @access public
757
-         */
758
-        public function show_field_hidden($field, $meta)
759
-        {
760
-            //$this->show_field_begin( $field, $meta );
761
-            echo "<input type='hidden' class='at-text' name='{$field['id']}' id='{$field['id']}' value='{$meta}'/>";
762
-            //$this->show_field_end( $field, $meta );
763
-        }
764
-
765
-        /**
766
-         * Show Field Paragraph.
767
-         *
768
-         * @param string $field
769
-         * @since 0.1.3
770
-         * @access public
771
-         */
772
-        public function show_field_paragraph($field)
773
-        {
774
-            //$this->show_field_begin( $field, $meta );
775
-            echo '<p>' . $field['value'] . '</p>';
776
-            //$this->show_field_end( $field, $meta );
777
-        }
778
-
779
-        /**
780
-         * Show Field Textarea.
781
-         *
782
-         * @param string $field
783
-         * @param string $meta
784
-         * @since 1.0
785
-         * @access public
786
-         */
787
-        public function show_field_textarea($field, $meta)
788
-        {
789
-            $this->show_field_begin($field, $meta);
790
-            echo "<textarea class='at-textarea large-text' name='{$field['id']}' id='{$field['id']}' cols='60' rows='10'>{$meta}</textarea>";
791
-            $this->show_field_end($field, $meta);
792
-        }
793
-
794
-        /**
795
-         * Show Field Select.
796
-         *
797
-         * @param string $field
798
-         * @param string $meta
799
-         * @since 1.0
800
-         * @access public
801
-         */
802
-        public function show_field_select($field, $meta)
803
-        {
804
-
805
-            if (!is_array($meta))
806
-                $meta = (array)$meta;
807
-
808
-            $this->show_field_begin($field, $meta);
809
-            echo "<select class='at-select' name='{$field['id']}" . ($field['multiple'] ? "[]' id='{$field['id']}' multiple='multiple'" : "'") . ">";
810
-            foreach ($field['options'] as $key => $value) {
811
-                echo "<option value='{$key}'" . selected(in_array($key, $meta), true, false) . ">{$value}</option>";
812
-            }
813
-            echo "</select>";
814
-            $this->show_field_end($field, $meta);
815
-
816
-        }
817
-
818
-        /**
819
-         * Show Radio Field.
820
-         *
821
-         * @param string $field
822
-         * @param string $meta
823
-         * @since 1.0
824
-         * @access public
825
-         */
826
-        public function show_field_radio($field, $meta)
827
-        {
828
-
829
-            if (!is_array($meta))
830
-                $meta = (array)$meta;
831
-
832
-            $this->show_field_begin($field, $meta);
833
-            foreach ($field['options'] as $key => $value) {
834
-                echo "<input type='radio' class='at-radio' name='{$field['id']}' value='{$key}'" . checked(in_array($key, $meta), true, false) . " /> <span class='at-radio-label'>{$value}</span>";
835
-            }
836
-            $this->show_field_end($field, $meta);
837
-        }
838
-
839
-        /**
840
-         * Show Checkbox Field.
841
-         *
842
-         * @param string $field
843
-         * @param string $meta
844
-         * @since 1.0
845
-         * @access public
846
-         */
847
-        public function show_field_checkbox($field, $meta)
848
-        {
849
-
850
-            $this->show_field_begin($field, $meta);
851
-            echo "<input type='checkbox' class='rw-checkbox' name='{$field['id']}' id='{$field['id']}'" . checked(!empty($meta), true, false) . " /> {$field['desc']}";
852
-            $this->show_field_end($field, $meta);
853
-        }
854
-
855
-        /**
856
-         * Show Wysiwig Field.
857
-         *
858
-         * @param string $field
859
-         * @param string $meta
860
-         * @since 1.0
861
-         * @access public
862
-         */
863
-        public function show_field_wysiwyg($field, $meta)
864
-        {
865
-            $this->show_field_begin($field, $meta);
866
-            // Add TinyMCE script for WP version < 3.3
867
-            global $wp_version;
868
-
869
-            if (version_compare($wp_version, '3.2.1') < 1) {
870
-                echo "<textarea class='at-wysiwyg theEditor large-text' name='{$field['id']}' id='{$field['id']}' cols='60' rows='10'>{$meta}</textarea>";
871
-            } else {
872
-                // Use new wp_editor() since WP 3.3
873
-                wp_editor(stripslashes(html_entity_decode($meta)), $field['id'], array('editor_class' => 'at-wysiwyg'));
874
-            }
875
-            $this->show_field_end($field, $meta);
876
-        }
877
-
878
-        /**
879
-         * Show File Field.
880
-         *
881
-         * @global object $post The current post object.
882
-         * @param string $field
883
-         * @param string $meta
884
-         * @since 1.0
885
-         * @access public
886
-         */
887
-        public function show_field_file($field, $meta)
888
-        {
889
-
890
-            global $post;
891
-
892
-            if (!is_array($meta))
893
-                $meta = (array)$meta;
894
-
895
-            $this->show_field_begin($field, $meta);
896
-            echo "{$field['desc']}<br />";
897
-
898
-            if (!empty($meta)) {
899
-                $nonce = wp_create_nonce('at_ajax_delete');
900
-                echo '<div style="margin-bottom: 10px"><strong>' . __('Uploaded files', 'geodirectory') . '</strong></div>';
901
-                echo '<ol class="at-upload">';
902
-                foreach ($meta as $att) {
903
-                    // if (wp_attachment_is_image($att)) continue; // what's image uploader for?
904
-                    echo "<li>" . wp_get_attachment_link($att, '', false, false, ' ') . " (<a class='at-delete-file' href='#' rel='{$nonce}|{$post->ID}|{$field['id']}|{$att}'>" . __('Remove', 'geodirectory') . "</a>)</li>";
905
-                }
906
-                echo '</ol>';
907
-            }
908
-
909
-            // show form upload
910
-
911
-            echo "<div class='at-file-upload-label'>";
912
-            echo "<strong>" . __('Upload new files', 'geodirectory') . "</strong>";
913
-            echo "</div>";
914
-            echo "<div class='new-files'>";
915
-            echo "<div class='file-input'>";
916
-            echo "<input type='file' name='{$field['id']}[]' />";
917
-            echo "</div><!-- End .file-input -->";
918
-            echo "<a class='at-add-file button' href='#'>" . __('Add more files', 'geodirectory') . "</a>";
919
-            echo "</div><!-- End .new-files -->";
920
-            echo "</td>";
921
-            $this->show_field_end($field, $meta);
922
-        }
923
-
924
-        /**
925
-         * Show Image Field.
926
-         *
927
-         * @param array $field
928
-         * @param array $meta
929
-         * @since 1.0
930
-         * @access public
931
-         */
932
-        public function show_field_image($field, $meta)
933
-        {
934
-            $this->show_field_begin($field, $meta);
935
-            $html = wp_nonce_field("at-delete-mupload_{$field['id']}", "nonce-delete-mupload_" . $field['id'], false, false);
936
-            if (is_array($meta)) {
937
-                if (isset($meta[0]) && is_array($meta[0]))
938
-                    $meta = $meta[0];
939
-            }
940
-
941
-            $uploads = wp_upload_dir();
942
-            if (is_array($meta) && isset($meta['src']) && $meta['src'] != '') {
943
-                $file_info = pathinfo($meta['src']);
944
-
945
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
946
-                    $sub_dir = $file_info['dirname'];
947
-
948
-                $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
949
-                $uploads_baseurl = $uploads['baseurl'];
950
-                $uploads_path = $uploads['path'];
951
-
952
-                $file_name = $file_info['basename'];
953
-
954
-                if (strpos($sub_dir, 'https://') !== false) {
955
-                    $uploads['baseurl'] = str_replace('http://', 'https://', $uploads['baseurl']);
956
-                } else {
957
-                    $uploads['baseurl'] = str_replace('https://', 'http://', $uploads['baseurl']);
958
-                }
959
-                $sub_dir = str_replace($uploads['baseurl'], '', $sub_dir);
960
-
961
-                $uploads_url = $uploads_baseurl . $sub_dir;
962
-
963
-                $meta['src'] = $uploads_url . '/' . $file_name;
964
-
965
-                $html .= "<span class='mupload_img_holder'><img src='" . $meta['src'] . "' style='max-height: 150px;max-width: 150px;' /></span>";
966
-                $html .= "<input type='hidden' name='" . $field['id'] . "[id]' id='" . $field['id'] . "[id]' value='" . $meta['id'] . "' />";
967
-                $html .= "<input type='hidden' class='" . $field['id'] . "[src]' name='" . $field['id'] . "[src]' id='" . $field['id'] . "[src]' value='" . $meta['src'] . "' />";
968
-                $html .= "<input class='at-delete_image_button' type='button' rel='" . $field['id'] . "' value='" . __('Remove Image', 'geodirectory') . "' />";
969
-            } else {
970
-                $html .= "<span class='mupload_img_holder'></span>";
971
-                $html .= "<input type='hidden' name='" . $field['id'] . "[id]' id='" . $field['id'] . "[id]' value='' />";
972
-                $html .= "<input class='" . $field['id'] . "[src]' style='position:absolute;left:-500px;width:50px;' type='text' name='" . $field['id'] . "[src]' id='" . $field['id'] . "[src]' value='' />";
973
-                $html .= "<input class='at-upload_image_button' type='button' rel='" . $field['id'] . "' value='" . __('Upload Image', 'geodirectory') . "' />";
974
-            }
975
-            echo $html;
976
-            $this->show_field_end($field, $meta);
977
-        }
978
-
979
-        /**
980
-         * Show Color Field.
981
-         *
982
-         * @param string $field
983
-         * @param string $meta
984
-         * @since 1.0
985
-         * @access public
986
-         */
987
-        public function show_field_color($field, $meta)
988
-        {
989
-
990
-            if (empty($meta))
991
-                $meta = '#';
992
-
993
-            $this->show_field_begin($field, $meta);
994
-
995
-            echo "<input class='at-color' type='text' name='{$field['id']}' id='{$field['id']}' value='{$meta}' size='8' />";
996
-            //	echo "<a href='#' class='at-color-select button' rel='{$field['id']}'>" . __( 'Select a color' ) . "</a>";
997
-            echo "<input type='button' class='at-color-select button' rel='{$field['id']}' value='" . __('Select a color', 'geodirectory') . "'/>";
998
-            echo "<div style='display:none' class='at-color-picker' rel='{$field['id']}'></div>";
999
-            $this->show_field_end($field, $meta);
1000
-
1001
-        }
1002
-
1003
-        /**
1004
-         * Show Checkbox List Field
1005
-         *
1006
-         * @param string $field
1007
-         * @param string $meta
1008
-         * @since 1.0
1009
-         * @access public
1010
-         */
1011
-        public function show_field_checkbox_list($field, $meta)
1012
-        {
1013
-
1014
-            if (!is_array($meta))
1015
-                $meta = (array)$meta;
1016
-
1017
-            $this->show_field_begin($field, $meta);
1018
-
1019
-            $html = array();
1020
-
1021
-            foreach ($field['options'] as $key => $value) {
1022
-                $html[] = "<input type='checkbox' class='at-checkbox_list' name='{$field['id']}[]' value='{$key}'" . checked(in_array($key, $meta), true, false) . " /> {$value}";
1023
-            }
1024
-
1025
-            echo implode('<br />', $html);
1026
-
1027
-            $this->show_field_end($field, $meta);
1028
-
1029
-        }
1030
-
1031
-        /**
1032
-         * Show Date Field.
1033
-         *
1034
-         * @param string $field
1035
-         * @param string $meta
1036
-         * @since 1.0
1037
-         * @access public
1038
-         */
1039
-        public function show_field_date($field, $meta)
1040
-        {
1041
-            $this->show_field_begin($field, $meta);
1042
-            echo "<input type='text' class='at-date' name='{$field['id']}' id='{$field['id']}' rel='{$field['format']}' value='{$meta}' size='30' />";
1043
-            $this->show_field_end($field, $meta);
1044
-        }
1045
-
1046
-        /**
1047
-         * Show time field.
1048
-         *
1049
-         * @param string $field
1050
-         * @param string $meta
1051
-         * @since 1.0
1052
-         * @access public
1053
-         */
1054
-        public function show_field_time($field, $meta)
1055
-        {
1056
-            $this->show_field_begin($field, $meta);
1057
-            echo "<input type='text' class='at-time' name='{$field['id']}' id='{$field['id']}' rel='{$field['format']}' value='{$meta}' size='30' />";
1058
-            $this->show_field_end($field, $meta);
1059
-        }
1060
-
1061
-        /**
1062
-         * Show Posts field.
1063
-         * used creating a posts/pages/custom types checkboxlist or a select dropdown
1064
-         *
1065
-         * @global object $post The current post object.
1066
-         * @param string $field
1067
-         * @param string $meta
1068
-         * @since 1.0
1069
-         * @access public
1070
-         */
1071
-        public function show_field_posts($field, $meta)
1072
-        {
1073
-            global $post;
1074
-
1075
-            if (!is_array($meta)) $meta = (array)$meta;
1076
-            $this->show_field_begin($field, $meta);
1077
-            $options = $field['options'];
1078
-            $posts = get_posts($options['args']);
1079
-
1080
-            // checkbox_list
1081
-            if ('checkbox_list' == $options['type']) {
1082
-                foreach ($posts as $p) {
1083
-                    echo "<input type='checkbox' name='{$field['id']}[]' value='$p->ID'" . checked(in_array($p->ID, $meta), true, false) . " /> $p->post_title<br/>";
1084
-                }
1085
-            } // select
1086
-            else {
1087
-                echo "<select name='{$field['id']}" . ($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'") . ">";
1088
-                foreach ($posts as $p) {
1089
-                    echo "<option value='$p->ID'" . selected(in_array($p->ID, $meta), true, false) . ">$p->post_title</option>";
1090
-                }
1091
-                echo "</select>";
1092
-            }
1093
-
1094
-            $this->show_field_end($field, $meta);
1095
-        }
1096
-
1097
-        /**
1098
-         * Show Taxonomy field.
1099
-         * used creating a category/tags/custom taxonomy checkboxlist or a select dropdown
1100
-         *
1101
-         * @global object $post The current post object.
1102
-         * @param string $field
1103
-         * @param string $meta
1104
-         * @since 1.0
1105
-         * @access public
1106
-         *
1107
-         * @uses get_terms()
1108
-         */
1109
-        public function show_field_taxonomy($field, $meta)
1110
-        {
1111
-            global $post;
1112
-
1113
-            if (!is_array($meta)) $meta = (array)$meta;
1114
-            $this->show_field_begin($field, $meta);
1115
-            $options = $field['options'];
1116
-            $terms = get_terms($options['taxonomy'], $options['args']);
1117
-
1118
-            // checkbox_list
1119
-            if ('checkbox_list' == $options['type']) {
1120
-                foreach ($terms as $term) {
1121
-                    echo "<input type='checkbox' name='{$field['id']}[]' value='$term->slug'" . checked(in_array($term->slug, $meta), true, false) . " /> $term->name<br/>";
1122
-                }
1123
-            } // select
1124
-            else {
1125
-                echo "<select name='{$field['id']}" . ($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'") . ">";
1126
-                foreach ($terms as $term) {
1127
-                    echo "<option value='$term->slug'" . selected(in_array($term->slug, $meta), true, false) . ">$term->name</option>";
1128
-                }
1129
-                echo "</select>";
1130
-            }
1131
-
1132
-            $this->show_field_end($field, $meta);
1133
-        }
1134
-
1135
-        /**
1136
-         * Save Data from Metabox
1137
-         *
1138
-         * @param string $term_id The term ID.
1139
-         * @since 1.0
1140
-         * @access public
1141
-         * @return string
1142
-         */
1143
-        public function save($term_id)
1144
-        {
1145
-
1146
-            $taxnow = '';
1147
-            if (isset($_POST['taxonomy']))
1148
-                $taxnow = $_POST['taxonomy'];
1149
-
1150
-            if (!isset($term_id)                                                        // Check Revision
1151
-                || (!in_array($taxnow, $this->_meta_box['pages']))                            // Check if current taxonomy type is supported.
1152
-                || (!check_admin_referer(basename(__FILE__), 'tax_meta_class_nonce'))        // Check nonce - Security
1153
-                || (!current_user_can('manage_categories'))
1154
-            )                                // Check permission
1155
-            {
1156
-                return $term_id;
1157
-            }
1158
-
1159
-
1160
-            foreach ($this->_fields as $field) {
1161
-
1162
-                $name = $field['id'];
1163
-                $type = $field['type'];
1164
-                $old = $this->get_tax_meta($term_id, $name, !$field['multiple']);
1165
-                $new = (isset($_POST[$name])) ? $_POST[$name] : (($field['multiple']) ? array() : '');
1166
-
1167
-                // Validate meta value
1168
-                if (class_exists('Tax_Meta_Validate') && method_exists('Tax_Meta_Validate', $field['validate_func'])) {
1169
-                    $new = call_user_func(array('Tax_Meta_Validate', $field['validate_func']), $new);
1170
-                }
1171
-
1172
-
1173
-                if ($name == 'ct_cat_icon') {
1174
-
1175
-                    $upload_dir = wp_upload_dir();
1176
-
1177
-                    $image_name_arr = explode('/', $new['src']);
1178
-                    //$old_filename = end($image_name_arr);
1179
-                    //$img_name_arr = explode('.',$old_filename);
1180
-
1181
-                    //$old_filename = $upload_dir['path'].'/'.$old_filename;
1182
-
1183
-                    $new_filename = $upload_dir['path'] . '/' . 'cat_icon_' . $term_id . '.png';
1184
-
1185
-                    /*rename($old_filename, $new_filename);
661
+			$this->show_field_end($field, $meta);
662
+		}
663
+
664
+		/**
665
+		 * Begin Field.
666
+		 *
667
+		 * @param string $field
668
+		 * @param string $meta
669
+		 * @since 1.0
670
+		 * @access public
671
+		 */
672
+		public function show_field_begin($field, $meta)
673
+		{
674
+			if (isset($field['group'])) {
675
+				if ($field['group'] == "start") {
676
+					echo "<td class='at-field'>";
677
+				}
678
+			} else {
679
+				if ($this->_form_type == 'edit') {
680
+					echo '<th valign="top" scope="row">';
681
+				} else {
682
+					if ($field['validate_func']) {
683
+						echo '<td><div class="form-field form-required">';
684
+					} else {
685
+						echo '<td><div class="form-field">';
686
+					}
687
+				}
688
+			}
689
+			if ($field['name'] != '' || $field['name'] != FALSE) {
690
+				//echo "<div class='at-label'>";
691
+				echo "<label for='{$field['id']}'>{$field['name']}</label>";
692
+				//echo "</div>";
693
+			}
694
+			if ($this->_form_type == 'edit') {
695
+				echo '</th><td>';
696
+			}
697
+		}
698
+
699
+		/**
700
+		 * End Field.
701
+		 *
702
+		 * @param string $field
703
+		 * @param string $meta
704
+		 * @since 1.0
705
+		 * @access public
706
+		 */
707
+		public function show_field_end($field, $meta = NULL, $group = false)
708
+		{
709
+			if (isset($field['group'])) {
710
+				if ($group == 'end') {
711
+					if ($field['desc'] != '') {
712
+						echo "<p class='desc-field'>{$field['desc']}</p></td>";
713
+					} else {
714
+						echo "</td>";
715
+					}
716
+				} else {
717
+					if ($field['desc'] != '') {
718
+						echo "<p class='desc-field'>{$field['desc']}</p><br/>";
719
+					} else {
720
+						echo '<br/>';
721
+					}
722
+				}
723
+			} else {
724
+				if ($field['desc'] != '') {
725
+					echo "<p class='desc-field'>{$field['desc']}</p>";
726
+				}
727
+				if ($this->_form_type == 'edit') {
728
+					echo '</td>';
729
+				} else {
730
+					echo '</td></div>';
731
+				}
732
+			}
733
+		}
734
+
735
+		/**
736
+		 * Show Field Text.
737
+		 *
738
+		 * @param string $field
739
+		 * @param string $meta
740
+		 * @since 1.0
741
+		 * @access public
742
+		 */
743
+		public function show_field_text($field, $meta)
744
+		{
745
+			$this->show_field_begin($field, $meta);
746
+			echo "<input type='text' class='at-text' name='{$field['id']}' id='{$field['id']}' value='{$meta}' size='30' />";
747
+			$this->show_field_end($field, $meta);
748
+		}
749
+
750
+		/**
751
+		 * Show Field hidden.
752
+		 *
753
+		 * @param string $field
754
+		 * @param string|mixed $meta
755
+		 * @since 0.1.3
756
+		 * @access public
757
+		 */
758
+		public function show_field_hidden($field, $meta)
759
+		{
760
+			//$this->show_field_begin( $field, $meta );
761
+			echo "<input type='hidden' class='at-text' name='{$field['id']}' id='{$field['id']}' value='{$meta}'/>";
762
+			//$this->show_field_end( $field, $meta );
763
+		}
764
+
765
+		/**
766
+		 * Show Field Paragraph.
767
+		 *
768
+		 * @param string $field
769
+		 * @since 0.1.3
770
+		 * @access public
771
+		 */
772
+		public function show_field_paragraph($field)
773
+		{
774
+			//$this->show_field_begin( $field, $meta );
775
+			echo '<p>' . $field['value'] . '</p>';
776
+			//$this->show_field_end( $field, $meta );
777
+		}
778
+
779
+		/**
780
+		 * Show Field Textarea.
781
+		 *
782
+		 * @param string $field
783
+		 * @param string $meta
784
+		 * @since 1.0
785
+		 * @access public
786
+		 */
787
+		public function show_field_textarea($field, $meta)
788
+		{
789
+			$this->show_field_begin($field, $meta);
790
+			echo "<textarea class='at-textarea large-text' name='{$field['id']}' id='{$field['id']}' cols='60' rows='10'>{$meta}</textarea>";
791
+			$this->show_field_end($field, $meta);
792
+		}
793
+
794
+		/**
795
+		 * Show Field Select.
796
+		 *
797
+		 * @param string $field
798
+		 * @param string $meta
799
+		 * @since 1.0
800
+		 * @access public
801
+		 */
802
+		public function show_field_select($field, $meta)
803
+		{
804
+
805
+			if (!is_array($meta))
806
+				$meta = (array)$meta;
807
+
808
+			$this->show_field_begin($field, $meta);
809
+			echo "<select class='at-select' name='{$field['id']}" . ($field['multiple'] ? "[]' id='{$field['id']}' multiple='multiple'" : "'") . ">";
810
+			foreach ($field['options'] as $key => $value) {
811
+				echo "<option value='{$key}'" . selected(in_array($key, $meta), true, false) . ">{$value}</option>";
812
+			}
813
+			echo "</select>";
814
+			$this->show_field_end($field, $meta);
815
+
816
+		}
817
+
818
+		/**
819
+		 * Show Radio Field.
820
+		 *
821
+		 * @param string $field
822
+		 * @param string $meta
823
+		 * @since 1.0
824
+		 * @access public
825
+		 */
826
+		public function show_field_radio($field, $meta)
827
+		{
828
+
829
+			if (!is_array($meta))
830
+				$meta = (array)$meta;
831
+
832
+			$this->show_field_begin($field, $meta);
833
+			foreach ($field['options'] as $key => $value) {
834
+				echo "<input type='radio' class='at-radio' name='{$field['id']}' value='{$key}'" . checked(in_array($key, $meta), true, false) . " /> <span class='at-radio-label'>{$value}</span>";
835
+			}
836
+			$this->show_field_end($field, $meta);
837
+		}
838
+
839
+		/**
840
+		 * Show Checkbox Field.
841
+		 *
842
+		 * @param string $field
843
+		 * @param string $meta
844
+		 * @since 1.0
845
+		 * @access public
846
+		 */
847
+		public function show_field_checkbox($field, $meta)
848
+		{
849
+
850
+			$this->show_field_begin($field, $meta);
851
+			echo "<input type='checkbox' class='rw-checkbox' name='{$field['id']}' id='{$field['id']}'" . checked(!empty($meta), true, false) . " /> {$field['desc']}";
852
+			$this->show_field_end($field, $meta);
853
+		}
854
+
855
+		/**
856
+		 * Show Wysiwig Field.
857
+		 *
858
+		 * @param string $field
859
+		 * @param string $meta
860
+		 * @since 1.0
861
+		 * @access public
862
+		 */
863
+		public function show_field_wysiwyg($field, $meta)
864
+		{
865
+			$this->show_field_begin($field, $meta);
866
+			// Add TinyMCE script for WP version < 3.3
867
+			global $wp_version;
868
+
869
+			if (version_compare($wp_version, '3.2.1') < 1) {
870
+				echo "<textarea class='at-wysiwyg theEditor large-text' name='{$field['id']}' id='{$field['id']}' cols='60' rows='10'>{$meta}</textarea>";
871
+			} else {
872
+				// Use new wp_editor() since WP 3.3
873
+				wp_editor(stripslashes(html_entity_decode($meta)), $field['id'], array('editor_class' => 'at-wysiwyg'));
874
+			}
875
+			$this->show_field_end($field, $meta);
876
+		}
877
+
878
+		/**
879
+		 * Show File Field.
880
+		 *
881
+		 * @global object $post The current post object.
882
+		 * @param string $field
883
+		 * @param string $meta
884
+		 * @since 1.0
885
+		 * @access public
886
+		 */
887
+		public function show_field_file($field, $meta)
888
+		{
889
+
890
+			global $post;
891
+
892
+			if (!is_array($meta))
893
+				$meta = (array)$meta;
894
+
895
+			$this->show_field_begin($field, $meta);
896
+			echo "{$field['desc']}<br />";
897
+
898
+			if (!empty($meta)) {
899
+				$nonce = wp_create_nonce('at_ajax_delete');
900
+				echo '<div style="margin-bottom: 10px"><strong>' . __('Uploaded files', 'geodirectory') . '</strong></div>';
901
+				echo '<ol class="at-upload">';
902
+				foreach ($meta as $att) {
903
+					// if (wp_attachment_is_image($att)) continue; // what's image uploader for?
904
+					echo "<li>" . wp_get_attachment_link($att, '', false, false, ' ') . " (<a class='at-delete-file' href='#' rel='{$nonce}|{$post->ID}|{$field['id']}|{$att}'>" . __('Remove', 'geodirectory') . "</a>)</li>";
905
+				}
906
+				echo '</ol>';
907
+			}
908
+
909
+			// show form upload
910
+
911
+			echo "<div class='at-file-upload-label'>";
912
+			echo "<strong>" . __('Upload new files', 'geodirectory') . "</strong>";
913
+			echo "</div>";
914
+			echo "<div class='new-files'>";
915
+			echo "<div class='file-input'>";
916
+			echo "<input type='file' name='{$field['id']}[]' />";
917
+			echo "</div><!-- End .file-input -->";
918
+			echo "<a class='at-add-file button' href='#'>" . __('Add more files', 'geodirectory') . "</a>";
919
+			echo "</div><!-- End .new-files -->";
920
+			echo "</td>";
921
+			$this->show_field_end($field, $meta);
922
+		}
923
+
924
+		/**
925
+		 * Show Image Field.
926
+		 *
927
+		 * @param array $field
928
+		 * @param array $meta
929
+		 * @since 1.0
930
+		 * @access public
931
+		 */
932
+		public function show_field_image($field, $meta)
933
+		{
934
+			$this->show_field_begin($field, $meta);
935
+			$html = wp_nonce_field("at-delete-mupload_{$field['id']}", "nonce-delete-mupload_" . $field['id'], false, false);
936
+			if (is_array($meta)) {
937
+				if (isset($meta[0]) && is_array($meta[0]))
938
+					$meta = $meta[0];
939
+			}
940
+
941
+			$uploads = wp_upload_dir();
942
+			if (is_array($meta) && isset($meta['src']) && $meta['src'] != '') {
943
+				$file_info = pathinfo($meta['src']);
944
+
945
+				if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
946
+					$sub_dir = $file_info['dirname'];
947
+
948
+				$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
949
+				$uploads_baseurl = $uploads['baseurl'];
950
+				$uploads_path = $uploads['path'];
951
+
952
+				$file_name = $file_info['basename'];
953
+
954
+				if (strpos($sub_dir, 'https://') !== false) {
955
+					$uploads['baseurl'] = str_replace('http://', 'https://', $uploads['baseurl']);
956
+				} else {
957
+					$uploads['baseurl'] = str_replace('https://', 'http://', $uploads['baseurl']);
958
+				}
959
+				$sub_dir = str_replace($uploads['baseurl'], '', $sub_dir);
960
+
961
+				$uploads_url = $uploads_baseurl . $sub_dir;
962
+
963
+				$meta['src'] = $uploads_url . '/' . $file_name;
964
+
965
+				$html .= "<span class='mupload_img_holder'><img src='" . $meta['src'] . "' style='max-height: 150px;max-width: 150px;' /></span>";
966
+				$html .= "<input type='hidden' name='" . $field['id'] . "[id]' id='" . $field['id'] . "[id]' value='" . $meta['id'] . "' />";
967
+				$html .= "<input type='hidden' class='" . $field['id'] . "[src]' name='" . $field['id'] . "[src]' id='" . $field['id'] . "[src]' value='" . $meta['src'] . "' />";
968
+				$html .= "<input class='at-delete_image_button' type='button' rel='" . $field['id'] . "' value='" . __('Remove Image', 'geodirectory') . "' />";
969
+			} else {
970
+				$html .= "<span class='mupload_img_holder'></span>";
971
+				$html .= "<input type='hidden' name='" . $field['id'] . "[id]' id='" . $field['id'] . "[id]' value='' />";
972
+				$html .= "<input class='" . $field['id'] . "[src]' style='position:absolute;left:-500px;width:50px;' type='text' name='" . $field['id'] . "[src]' id='" . $field['id'] . "[src]' value='' />";
973
+				$html .= "<input class='at-upload_image_button' type='button' rel='" . $field['id'] . "' value='" . __('Upload Image', 'geodirectory') . "' />";
974
+			}
975
+			echo $html;
976
+			$this->show_field_end($field, $meta);
977
+		}
978
+
979
+		/**
980
+		 * Show Color Field.
981
+		 *
982
+		 * @param string $field
983
+		 * @param string $meta
984
+		 * @since 1.0
985
+		 * @access public
986
+		 */
987
+		public function show_field_color($field, $meta)
988
+		{
989
+
990
+			if (empty($meta))
991
+				$meta = '#';
992
+
993
+			$this->show_field_begin($field, $meta);
994
+
995
+			echo "<input class='at-color' type='text' name='{$field['id']}' id='{$field['id']}' value='{$meta}' size='8' />";
996
+			//	echo "<a href='#' class='at-color-select button' rel='{$field['id']}'>" . __( 'Select a color' ) . "</a>";
997
+			echo "<input type='button' class='at-color-select button' rel='{$field['id']}' value='" . __('Select a color', 'geodirectory') . "'/>";
998
+			echo "<div style='display:none' class='at-color-picker' rel='{$field['id']}'></div>";
999
+			$this->show_field_end($field, $meta);
1000
+
1001
+		}
1002
+
1003
+		/**
1004
+		 * Show Checkbox List Field
1005
+		 *
1006
+		 * @param string $field
1007
+		 * @param string $meta
1008
+		 * @since 1.0
1009
+		 * @access public
1010
+		 */
1011
+		public function show_field_checkbox_list($field, $meta)
1012
+		{
1013
+
1014
+			if (!is_array($meta))
1015
+				$meta = (array)$meta;
1016
+
1017
+			$this->show_field_begin($field, $meta);
1018
+
1019
+			$html = array();
1020
+
1021
+			foreach ($field['options'] as $key => $value) {
1022
+				$html[] = "<input type='checkbox' class='at-checkbox_list' name='{$field['id']}[]' value='{$key}'" . checked(in_array($key, $meta), true, false) . " /> {$value}";
1023
+			}
1024
+
1025
+			echo implode('<br />', $html);
1026
+
1027
+			$this->show_field_end($field, $meta);
1028
+
1029
+		}
1030
+
1031
+		/**
1032
+		 * Show Date Field.
1033
+		 *
1034
+		 * @param string $field
1035
+		 * @param string $meta
1036
+		 * @since 1.0
1037
+		 * @access public
1038
+		 */
1039
+		public function show_field_date($field, $meta)
1040
+		{
1041
+			$this->show_field_begin($field, $meta);
1042
+			echo "<input type='text' class='at-date' name='{$field['id']}' id='{$field['id']}' rel='{$field['format']}' value='{$meta}' size='30' />";
1043
+			$this->show_field_end($field, $meta);
1044
+		}
1045
+
1046
+		/**
1047
+		 * Show time field.
1048
+		 *
1049
+		 * @param string $field
1050
+		 * @param string $meta
1051
+		 * @since 1.0
1052
+		 * @access public
1053
+		 */
1054
+		public function show_field_time($field, $meta)
1055
+		{
1056
+			$this->show_field_begin($field, $meta);
1057
+			echo "<input type='text' class='at-time' name='{$field['id']}' id='{$field['id']}' rel='{$field['format']}' value='{$meta}' size='30' />";
1058
+			$this->show_field_end($field, $meta);
1059
+		}
1060
+
1061
+		/**
1062
+		 * Show Posts field.
1063
+		 * used creating a posts/pages/custom types checkboxlist or a select dropdown
1064
+		 *
1065
+		 * @global object $post The current post object.
1066
+		 * @param string $field
1067
+		 * @param string $meta
1068
+		 * @since 1.0
1069
+		 * @access public
1070
+		 */
1071
+		public function show_field_posts($field, $meta)
1072
+		{
1073
+			global $post;
1074
+
1075
+			if (!is_array($meta)) $meta = (array)$meta;
1076
+			$this->show_field_begin($field, $meta);
1077
+			$options = $field['options'];
1078
+			$posts = get_posts($options['args']);
1079
+
1080
+			// checkbox_list
1081
+			if ('checkbox_list' == $options['type']) {
1082
+				foreach ($posts as $p) {
1083
+					echo "<input type='checkbox' name='{$field['id']}[]' value='$p->ID'" . checked(in_array($p->ID, $meta), true, false) . " /> $p->post_title<br/>";
1084
+				}
1085
+			} // select
1086
+			else {
1087
+				echo "<select name='{$field['id']}" . ($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'") . ">";
1088
+				foreach ($posts as $p) {
1089
+					echo "<option value='$p->ID'" . selected(in_array($p->ID, $meta), true, false) . ">$p->post_title</option>";
1090
+				}
1091
+				echo "</select>";
1092
+			}
1093
+
1094
+			$this->show_field_end($field, $meta);
1095
+		}
1096
+
1097
+		/**
1098
+		 * Show Taxonomy field.
1099
+		 * used creating a category/tags/custom taxonomy checkboxlist or a select dropdown
1100
+		 *
1101
+		 * @global object $post The current post object.
1102
+		 * @param string $field
1103
+		 * @param string $meta
1104
+		 * @since 1.0
1105
+		 * @access public
1106
+		 *
1107
+		 * @uses get_terms()
1108
+		 */
1109
+		public function show_field_taxonomy($field, $meta)
1110
+		{
1111
+			global $post;
1112
+
1113
+			if (!is_array($meta)) $meta = (array)$meta;
1114
+			$this->show_field_begin($field, $meta);
1115
+			$options = $field['options'];
1116
+			$terms = get_terms($options['taxonomy'], $options['args']);
1117
+
1118
+			// checkbox_list
1119
+			if ('checkbox_list' == $options['type']) {
1120
+				foreach ($terms as $term) {
1121
+					echo "<input type='checkbox' name='{$field['id']}[]' value='$term->slug'" . checked(in_array($term->slug, $meta), true, false) . " /> $term->name<br/>";
1122
+				}
1123
+			} // select
1124
+			else {
1125
+				echo "<select name='{$field['id']}" . ($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'") . ">";
1126
+				foreach ($terms as $term) {
1127
+					echo "<option value='$term->slug'" . selected(in_array($term->slug, $meta), true, false) . ">$term->name</option>";
1128
+				}
1129
+				echo "</select>";
1130
+			}
1131
+
1132
+			$this->show_field_end($field, $meta);
1133
+		}
1134
+
1135
+		/**
1136
+		 * Save Data from Metabox
1137
+		 *
1138
+		 * @param string $term_id The term ID.
1139
+		 * @since 1.0
1140
+		 * @access public
1141
+		 * @return string
1142
+		 */
1143
+		public function save($term_id)
1144
+		{
1145
+
1146
+			$taxnow = '';
1147
+			if (isset($_POST['taxonomy']))
1148
+				$taxnow = $_POST['taxonomy'];
1149
+
1150
+			if (!isset($term_id)                                                        // Check Revision
1151
+				|| (!in_array($taxnow, $this->_meta_box['pages']))                            // Check if current taxonomy type is supported.
1152
+				|| (!check_admin_referer(basename(__FILE__), 'tax_meta_class_nonce'))        // Check nonce - Security
1153
+				|| (!current_user_can('manage_categories'))
1154
+			)                                // Check permission
1155
+			{
1156
+				return $term_id;
1157
+			}
1158
+
1159
+
1160
+			foreach ($this->_fields as $field) {
1161
+
1162
+				$name = $field['id'];
1163
+				$type = $field['type'];
1164
+				$old = $this->get_tax_meta($term_id, $name, !$field['multiple']);
1165
+				$new = (isset($_POST[$name])) ? $_POST[$name] : (($field['multiple']) ? array() : '');
1166
+
1167
+				// Validate meta value
1168
+				if (class_exists('Tax_Meta_Validate') && method_exists('Tax_Meta_Validate', $field['validate_func'])) {
1169
+					$new = call_user_func(array('Tax_Meta_Validate', $field['validate_func']), $new);
1170
+				}
1171
+
1172
+
1173
+				if ($name == 'ct_cat_icon') {
1174
+
1175
+					$upload_dir = wp_upload_dir();
1176
+
1177
+					$image_name_arr = explode('/', $new['src']);
1178
+					//$old_filename = end($image_name_arr);
1179
+					//$img_name_arr = explode('.',$old_filename);
1180
+
1181
+					//$old_filename = $upload_dir['path'].'/'.$old_filename;
1182
+
1183
+					$new_filename = $upload_dir['path'] . '/' . 'cat_icon_' . $term_id . '.png';
1184
+
1185
+					/*rename($old_filename, $new_filename);
1186 1186
 				
1187 1187
 				//subdir
1188 1188
 				$new['src'] = $upload_dir['url'].'/'.'cat_icon_'.$term_id.'.png';
@@ -1190,7 +1190,7 @@  discard block
 block discarded – undo
1190 1190
 				update_attached_file( $new['id'], $new['src'] );*/
1191 1191
 
1192 1192
 
1193
-                    /*	
1193
+					/*	
1194 1194
 		
1195 1195
 		$new['src'] = $upload_dir['url'].'/'.'cat_icon_'.$term_id.'.png';
1196 1196
 		
@@ -1215,67 +1215,67 @@  discard block
 block discarded – undo
1215 1215
 		$attach_id = wp_insert_attachment( $attachment, $filename);*/
1216 1216
 
1217 1217
 
1218
-                }
1219
-
1220
-
1221
-                //skip on Paragraph field
1222
-                if ($type != "paragraph") {
1223
-
1224
-                    // Call defined method to save meta value, if there's no methods, call common one.
1225
-                    $save_func = 'save_field_' . $type;
1226
-                    if (method_exists($this, $save_func)) {
1227
-                        call_user_func(array(&$this, 'save_field_' . $type), $term_id, $field, $old, $new);
1228
-                    } else {
1229
-                        $this->save_field($term_id, $field, $old, $new);
1230
-                    }
1231
-                }
1232
-
1233
-            } // End foreach
1234
-
1235
-        }
1236
-
1237
-        /**
1238
-         * Common function for saving fields.
1239
-         *
1240
-         * @param string $term_id The term ID.
1241
-         * @param string $field
1242
-         * @param string $old
1243
-         * @param string|mixed $new
1244
-         * @since 1.0
1245
-         * @access public
1246
-         */
1247
-        public function save_field($term_id, $field, $old, $new)
1248
-        {
1249
-            $name = $field['id'];
1250
-            $this->delete_tax_meta($term_id, $name);
1251
-            if ($new === '' || $new === array())
1252
-                return;
1253
-
1254
-            $this->update_tax_meta($term_id, $name, $new);
1255
-        }
1256
-
1257
-        /**
1258
-         * function for saving image field.
1259
-         *
1260
-         * @param string $term_id The term ID.
1261
-         * @param string $field
1262
-         * @param string $old
1263
-         * @param string|mixed $new
1264
-         * @since 1.0
1265
-         * @access public
1266
-         */
1267
-        public function save_field_image($term_id, $field, $old, $new)
1268
-        {
1269
-            $name = $field['id'];
1270
-
1271
-            $this->delete_tax_meta($term_id, $name);
1272
-            if ($new === '' || $new === array() || $new['id'] == '' || $new['src'] == '')
1273
-                return;
1274
-
1275
-            $this->update_tax_meta($term_id, $name, $new);
1276
-        }
1277
-
1278
-        /*
1218
+				}
1219
+
1220
+
1221
+				//skip on Paragraph field
1222
+				if ($type != "paragraph") {
1223
+
1224
+					// Call defined method to save meta value, if there's no methods, call common one.
1225
+					$save_func = 'save_field_' . $type;
1226
+					if (method_exists($this, $save_func)) {
1227
+						call_user_func(array(&$this, 'save_field_' . $type), $term_id, $field, $old, $new);
1228
+					} else {
1229
+						$this->save_field($term_id, $field, $old, $new);
1230
+					}
1231
+				}
1232
+
1233
+			} // End foreach
1234
+
1235
+		}
1236
+
1237
+		/**
1238
+		 * Common function for saving fields.
1239
+		 *
1240
+		 * @param string $term_id The term ID.
1241
+		 * @param string $field
1242
+		 * @param string $old
1243
+		 * @param string|mixed $new
1244
+		 * @since 1.0
1245
+		 * @access public
1246
+		 */
1247
+		public function save_field($term_id, $field, $old, $new)
1248
+		{
1249
+			$name = $field['id'];
1250
+			$this->delete_tax_meta($term_id, $name);
1251
+			if ($new === '' || $new === array())
1252
+				return;
1253
+
1254
+			$this->update_tax_meta($term_id, $name, $new);
1255
+		}
1256
+
1257
+		/**
1258
+		 * function for saving image field.
1259
+		 *
1260
+		 * @param string $term_id The term ID.
1261
+		 * @param string $field
1262
+		 * @param string $old
1263
+		 * @param string|mixed $new
1264
+		 * @since 1.0
1265
+		 * @access public
1266
+		 */
1267
+		public function save_field_image($term_id, $field, $old, $new)
1268
+		{
1269
+			$name = $field['id'];
1270
+
1271
+			$this->delete_tax_meta($term_id, $name);
1272
+			if ($new === '' || $new === array() || $new['id'] == '' || $new['src'] == '')
1273
+				return;
1274
+
1275
+			$this->update_tax_meta($term_id, $name, $new);
1276
+		}
1277
+
1278
+		/*
1279 1279
 	 * Save Wysiwyg Field.
1280 1280
 	 *
1281 1281
 	 * @param string $term_id The term ID. 
@@ -1285,806 +1285,806 @@  discard block
 block discarded – undo
1285 1285
 	 * @since 1.0
1286 1286
 	 * @access public 
1287 1287
 	 */
1288
-        public function save_field_wysiwyg($term_id, $field, $old, $new)
1289
-        {
1290
-            $this->save_field($term_id, $field, $old, $new);
1291
-        }
1292
-
1293
-        /**
1294
-         * Save repeater Fields.
1295
-         *
1296
-         * @param string $term_id The term ID.
1297
-         * @param string $field
1298
-         * @param string|mixed $old
1299
-         * @param string|mixed $new
1300
-         * @since 1.0
1301
-         * @access public
1302
-         */
1303
-        public function save_field_repeater($term_id, $field, $old, $new)
1304
-        {
1305
-            if (is_array($new) && count($new) > 0) {
1306
-                foreach ($new as $n) {
1307
-                    foreach ($field['fields'] as $f) {
1308
-                        $type = $f['type'];
1309
-                        switch ($type) {
1310
-                            case 'wysiwyg':
1311
-                                $n[$f['id']] = wpautop($n[$f['id']]);
1312
-                                break;
1313
-                            case 'file':
1314
-                                $n[$f['id']] = $this->save_field_file_repeater($term_id, $f, '', $n[$f['id']]);
1315
-                                break;
1316
-                            default:
1317
-                                break;
1318
-                        }
1319
-                    }
1320
-                    if (!$this->is_array_empty($n))
1321
-                        $temp[] = $n;
1322
-                }
1323
-                if (isset($temp) && count($temp) > 0 && !$this->is_array_empty($temp)) {
1324
-                    $this->update_tax_meta($term_id, $field['id'], $temp);
1325
-                } else {
1326
-                    //	remove old meta if exists
1327
-                    delete_post_meta($term_id, $field['id']);
1328
-                }
1329
-            } else {
1330
-                //	remove old meta if exists
1331
-                delete_post_meta($term_id, $field['id']);
1332
-            }
1333
-        }
1334
-
1335
-        /**
1336
-         * Save File Field.
1337
-         *
1338
-         * @param string $term_id The term ID.
1339
-         * @param string $field
1340
-         * @param string $old
1341
-         * @param string $new
1342
-         * @since 1.0
1343
-         * @access public
1344
-         */
1345
-        public function save_field_file($term_id, $field, $old, $new)
1346
-        {
1347
-
1348
-            $name = $field['id'];
1349
-            if (empty($_FILES[$name]))
1350
-                return;
1351
-            $this->fix_file_array($_FILES[$name]);
1352
-            foreach ($_FILES[$name] as $position => $fileitem) {
1353
-
1354
-                $file = wp_handle_upload($fileitem, array('test_form' => false));
1355
-                if (empty($file['file']))
1356
-                    continue;
1357
-                $filename = $file['file'];
1358
-
1359
-                $attachment = array(
1360
-                    'post_mime_type' => $file['type'],
1361
-                    'guid' => $file['url'],
1362
-                    'post_parent' => $term_id,
1363
-                    'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
1364
-                    'post_content' => ''
1365
-                );
1366
-
1367
-                $id = wp_insert_attachment($attachment, $filename, $term_id);
1368
-
1369
-                if (!is_wp_error($id)) {
1370
-
1371
-                    wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
1372
-                    add_post_meta($term_id, $name, $id, false);    // save file's url in meta fields
1373
-
1374
-                } // End if
1375
-
1376
-            } // End foreach
1377
-
1378
-        }
1379
-
1380
-        /**
1381
-         * Save repeater File Field.
1382
-         * @param string $term_id The term ID.
1383
-         * @param string $field
1384
-         * @param string $old
1385
-         * @param string $new
1386
-         * @since 1.0
1387
-         * @access public
1388
-         * @return int|void
1389
-         */
1390
-        public function save_field_file_repeater($term_id, $field, $old, $new)
1391
-        {
1392
-
1393
-            $name = $field['id'];
1394
-            if (empty($_FILES[$name]))
1395
-                return;
1396
-            $this->fix_file_array($_FILES[$name]);
1397
-            foreach ($_FILES[$name] as $position => $fileitem) {
1398
-
1399
-                $file = wp_handle_upload($fileitem, array('test_form' => false));
1400
-                if (empty($file['file']))
1401
-                    continue;
1402
-                $filename = $file['file'];
1403
-
1404
-                $attachment = array(
1405
-                    'post_mime_type' => $file['type'],
1406
-                    'guid' => $file['url'],
1407
-                    'post_parent' => $term_id,
1408
-                    'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
1409
-                    'post_content' => ''
1410
-                );
1411
-
1412
-                $id = wp_insert_attachment($attachment, $filename);
1413
-
1414
-                if (!is_wp_error($id)) {
1415
-
1416
-                    wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
1417
-                    return $id;    // return file's url in meta fields
1418
-                } // End if
1419
-            } // End foreach
1420
-        }
1421
-
1422
-        /**
1423
-         * Add missed values for meta box.
1424
-         *
1425
-         * @since 1.0
1426
-         * @access public
1427
-         */
1428
-        public function add_missed_values()
1429
-        {
1430
-
1431
-            // Default values for meta box
1432
-            $this->_meta_box = array_merge(array('context' => 'normal', 'priority' => 'high', 'pages' => array('post')), (array)$this->_meta_box);
1433
-
1434
-            if(is_array($this->_fields)) {
1435
-                // Default values for fields
1436
-                foreach ($this->_fields as &$field) {
1437
-                    $multiple = in_array($field['type'], array('checkbox_list', 'file', 'image'));
1438
-                    $std = $multiple ? array() : '';
1439
-                    $format = 'date' == $field['type'] ? 'yy-mm-dd' : ('time' == $field['type'] ? 'hh:mm' : '');
1440
-                    $field = array_merge(array('multiple' => $multiple, 'std' => $std, 'desc' => '', 'format' => $format, 'validate_func' => ''), $field);
1441
-                } // End foreach
1442
-            }
1443
-        }
1444
-
1445
-        /**
1446
-         * Check if field with $type exists.
1447
-         *
1448
-         * @param string $type
1449
-         * @since 1.0
1450
-         * @access public
1451
-         */
1452
-        public function has_field($type)
1453
-        {
1454
-            if(is_array($this->_fields)) {
1455
-                foreach ($this->_fields as $field) {
1456
-                    if ($type == $field['type'])
1457
-                        return true;
1458
-                }
1459
-            }
1460
-            return false;
1461
-        }
1462
-
1463
-        /**
1464
-         * Check if current page is edit page.
1465
-         *
1466
-         * @since 1.0
1467
-         * @access public
1468
-         */
1469
-        public function is_edit_page()
1470
-        {
1471
-            global $pagenow;
1472
-            return ($pagenow == 'edit-tags.php' || $pagenow == 'term.php');
1473
-        }
1474
-
1475
-        /**
1476
-         * Fixes the odd indexing of multiple file uploads.
1477
-         *
1478
-         * Goes from the format:
1479
-         * $_FILES['field']['key']['index']
1480
-         * to
1481
-         * The More standard and appropriate:
1482
-         * $_FILES['field']['index']['key']
1483
-         *
1484
-         * @param string $files
1485
-         * @since 1.0
1486
-         * @access public
1487
-         */
1488
-        public function fix_file_array(&$files)
1489
-        {
1490
-
1491
-            $output = array();
1492
-
1493
-            foreach ($files as $key => $list) {
1494
-                foreach ($list as $index => $value) {
1495
-                    $output[$index][$key] = $value;
1496
-                }
1497
-            }
1498
-
1499
-            return $files = $output;
1500
-
1501
-        }
1502
-
1503
-        /**
1504
-         * Get proper JQuery UI version.
1505
-         *
1506
-         * Used in order to not conflict with WP Admin Scripts.
1507
-         *
1508
-         * @since 1.0
1509
-         * @access public
1510
-         */
1511
-        public function get_jqueryui_ver()
1512
-        {
1513
-
1514
-            global $wp_version;
1515
-
1516
-            if (version_compare($wp_version, '3.1', '>=')) {
1517
-                return '1.8.10';
1518
-            }
1519
-
1520
-            return '1.7.3';
1521
-
1522
-        }
1523
-
1524
-        /**
1525
-         *  Add Field to meta box (generic function)
1526
-         * @author Ohad Raz
1527
-         * @since 1.0
1528
-         * @access public
1529
-         * @param $id string  field id, i.e. the meta key
1530
-         * @param $args mixed|array
1531
-         */
1532
-        public function addField($id, $args)
1533
-        {
1534
-            $new_field = array('id' => $id, 'std' => '', 'desc' => '', 'style' => '');
1535
-            $new_field = array_merge($new_field, $args);
1536
-            $this->_fields[] = $new_field;
1537
-        }
1538
-
1539
-
1540
-        /**
1541
-         *  Add Text Field to meta box
1542
-         * @author Ohad Raz
1543
-         * @since 1.0
1544
-         * @access public
1545
-         * @param $id string  field id, i.e. the meta key
1546
-         * @param $args mixed|array
1547
-         *    'name' => // field name/label string optional
1548
-         *    'desc' => // field description, string optional
1549
-         *    'std' => // default value, string optional
1550
-         *    'style' =>    // custom style for field, string optional
1551
-         *    'validate_func' => // validate function, string optional
1552
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1553
-         */
1554
-        public function addText($id, $args, $repeater = false)
1555
-        {
1556
-            $new_field = array('type' => 'text', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Text Field', 'geodirectory'));
1557
-            $new_field = array_merge($new_field, $args);
1558
-            if (false === $repeater) {
1559
-                $this->_fields[] = $new_field;
1560
-            } else {
1561
-                return $new_field;
1562
-            }
1563
-        }
1564
-
1565
-        /**
1566
-         *  Add Hidden Field to meta box
1567
-         * @author Ohad Raz
1568
-         * @since 0.1.3
1569
-         * @access public
1570
-         * @param $id string  field id, i.e. the meta key
1571
-         * @param $args mixed|array
1572
-         *    'name' => // field name/label string optional
1573
-         *    'desc' => // field description, string optional
1574
-         *    'std' => // default value, string optional
1575
-         *    'style' =>    // custom style for field, string optional
1576
-         *    'validate_func' => // validate function, string optional
1577
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1578
-         */
1579
-        public function addHidden($id, $args, $repeater = false)
1580
-        {
1581
-            $new_field = array('type' => 'hidden', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Text Field', 'geodirectory'));
1582
-            $new_field = array_merge($new_field, $args);
1583
-            if (false === $repeater) {
1584
-                $this->_fields[] = $new_field;
1585
-            } else {
1586
-                return $new_field;
1587
-            }
1588
-        }
1589
-
1590
-        /**
1591
-         *  Add Paragraph to meta box
1592
-         * @author Ohad Raz
1593
-         * @since 0.1.3
1594
-         * @access public
1595
-         * @param $id string  field id, i.e. the meta key
1596
-         * @param $value  paragraph html
1597
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1598
-         */
1599
-        public function addParagraph($id, $args, $repeater = false)
1600
-        {
1601
-            $new_field = array('type' => 'paragraph', 'id' => $id, 'value' => '', 'style' => '');
1602
-            $new_field = array_merge($new_field, $args);
1603
-            if (false === $repeater) {
1604
-                $this->_fields[] = $new_field;
1605
-            } else {
1606
-                return $new_field;
1607
-            }
1608
-        }
1609
-
1610
-        /**
1611
-         *  Add Checkbox Field to meta box
1612
-         * @author Ohad Raz
1613
-         * @since 1.0
1614
-         * @access public
1615
-         * @param $id string  field id, i.e. the meta key
1616
-         * @param $args mixed|array
1617
-         *    'name' => // field name/label string optional
1618
-         *    'desc' => // field description, string optional
1619
-         *    'std' => // default value, string optional
1620
-         *    'validate_func' => // validate function, string optional
1621
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1622
-         */
1623
-        public function addCheckbox($id, $args, $repeater = false)
1624
-        {
1625
-            $new_field = array('type' => 'checkbox', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Checkbox Field', 'geodirectory'));
1626
-            $new_field = array_merge($new_field, $args);
1627
-            if (false === $repeater) {
1628
-                $this->_fields[] = $new_field;
1629
-            } else {
1630
-                return $new_field;
1631
-            }
1632
-        }
1633
-
1634
-        /**
1635
-         *  Add CheckboxList Field to meta box
1636
-         * @author Ohad Raz
1637
-         * @since 1.0
1638
-         * @access public
1639
-         * @param $id string  field id, i.e. the meta key
1640
-         * @param $options (array)  array of key => value pairs for select options
1641
-         * @param $args mixed|array
1642
-         *    'name' => // field name/label string optional
1643
-         *    'desc' => // field description, string optional
1644
-         *    'std' => // default value, string optional
1645
-         *    'validate_func' => // validate function, string optional
1646
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1647
-         *
1648
-         * @return : remember to call: $checkbox_list = $this->get_tax_meta(get_the_ID(), 'meta_name', false);
1649
-         *   which means the last param as false to get the values in an array
1650
-         */
1651
-        public function addCheckboxList($id, $options, $args, $repeater = false)
1652
-        {
1653
-            $new_field = array('type' => 'checkbox_list', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Checkbox List Field', 'geodirectory'));
1654
-            $new_field = array_merge($new_field, $args);
1655
-            if (false === $repeater) {
1656
-                $this->_fields[] = $new_field;
1657
-            } else {
1658
-                return $new_field;
1659
-            }
1660
-        }
1661
-
1662
-        /**
1663
-         *  Add Textarea Field to meta box
1664
-         * @author Ohad Raz
1665
-         * @since 1.0
1666
-         * @access public
1667
-         * @param $id string  field id, i.e. the meta key
1668
-         * @param $args mixed|array
1669
-         *    'name' => // field name/label string optional
1670
-         *    'desc' => // field description, string optional
1671
-         *    'std' => // default value, string optional
1672
-         *    'style' =>    // custom style for field, string optional
1673
-         *    'validate_func' => // validate function, string optional
1674
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1675
-         */
1676
-        public function addTextarea($id, $args, $repeater = false)
1677
-        {
1678
-            $new_field = array('type' => 'textarea', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Textarea Field', 'geodirectory'));
1679
-            $new_field = array_merge($new_field, $args);
1680
-            if (false === $repeater) {
1681
-                $this->_fields[] = $new_field;
1682
-            } else {
1683
-                return $new_field;
1684
-            }
1685
-        }
1686
-
1687
-        /**
1688
-         *  Add Select Field to meta box
1689
-         * @author Ohad Raz
1690
-         * @since 1.0
1691
-         * @access public
1692
-         * @param $id string field id, i.e. the meta key
1693
-         * @param $options (array)  array of key => value pairs for select options
1694
-         * @param $args mixed|array
1695
-         *    'name' => // field name/label string optional
1696
-         *    'desc' => // field description, string optional
1697
-         *    'std' => // default value, (array) optional
1698
-         *    'multiple' => // select multiple values, optional. Default is false.
1699
-         *    'validate_func' => // validate function, string optional
1700
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1701
-         */
1702
-        public function addSelect($id, $options, $args, $repeater = false)
1703
-        {
1704
-            $new_field = array('type' => 'select', 'id' => $id, 'std' => array(), 'desc' => '', 'style' => '', 'name' => __('Select Field', 'geodirectory'), 'multiple' => false, 'options' => $options);
1705
-            $new_field = array_merge($new_field, $args);
1706
-            if (false === $repeater) {
1707
-                $this->_fields[] = $new_field;
1708
-            } else {
1709
-                return $new_field;
1710
-            }
1711
-        }
1712
-
1713
-
1714
-        /**
1715
-         *  Add Radio Field to meta box
1716
-         * @author Ohad Raz
1717
-         * @since 1.0
1718
-         * @access public
1719
-         * @param $id string field id, i.e. the meta key
1720
-         * @param $options (array)  array of key => value pairs for radio options
1721
-         * @param $args mixed|array
1722
-         *    'name' => // field name/label string optional
1723
-         *    'desc' => // field description, string optional
1724
-         *    'std' => // default value, string optional
1725
-         *    'validate_func' => // validate function, string optional
1726
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1727
-         */
1728
-        public function addRadio($id, $options, $args, $repeater = false)
1729
-        {
1730
-            $new_field = array('type' => 'radio', 'id' => $id, 'std' => array(), 'desc' => '', 'style' => '', 'name' => __('Radio Field', 'geodirectory'), 'options' => $options);
1731
-            $new_field = array_merge($new_field, $args);
1732
-            if (false === $repeater) {
1733
-                $this->_fields[] = $new_field;
1734
-            } else {
1735
-                return $new_field;
1736
-            }
1737
-        }
1738
-
1739
-        /**
1740
-         *  Add Date Field to meta box
1741
-         * @author Ohad Raz
1742
-         * @since 1.0
1743
-         * @access public
1744
-         * @param $id string  field id, i.e. the meta key
1745
-         * @param $args mixed|array
1746
-         *    'name' => // field name/label string optional
1747
-         *    'desc' => // field description, string optional
1748
-         *    'std' => // default value, string optional
1749
-         *    'validate_func' => // validate function, string optional
1750
-         *    'format' => // date format, default yy-mm-dd. Optional. Default "'d MM, yy'"  See more formats here: http://goo.gl/Wcwxn
1751
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1752
-         */
1753
-        public function addDate($id, $args, $repeater = false)
1754
-        {
1755
-            $new_field = array('type' => 'date', 'id' => $id, 'std' => '', 'desc' => '', 'format' => 'yy-mm-dd', 'name' => __('Date Field', 'geodirectory'));
1756
-            $new_field = array_merge($new_field, $args);
1757
-            if (false === $repeater) {
1758
-                $this->_fields[] = $new_field;
1759
-            } else {
1760
-                return $new_field;
1761
-            }
1762
-        }
1763
-
1764
-        /**
1765
-         *  Add Time Field to meta box
1766
-         * @author Ohad Raz
1767
-         * @since 1.0
1768
-         * @access public
1769
-         * @param $id string- field id, i.e. the meta key
1770
-         * @param $args mixed|array
1771
-         *    'name' => // field name/label string optional
1772
-         *    'desc' => // field description, string optional
1773
-         *    'std' => // default value, string optional
1774
-         *    'validate_func' => // validate function, string optional
1775
-         *    'format' => // time format, default hh:mm. Optional. See more formats here: http://goo.gl/83woX
1776
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1777
-         */
1778
-        public function addTime($id, $args, $repeater = false)
1779
-        {
1780
-            $new_field = array('type' => 'time', 'id' => $id, 'std' => '', 'desc' => '', 'format' => 'hh:mm', 'name' => __('Time Field', 'geodirectory'));
1781
-            $new_field = array_merge($new_field, $args);
1782
-            if (false === $repeater) {
1783
-                $this->_fields[] = $new_field;
1784
-            } else {
1785
-                return $new_field;
1786
-            }
1787
-        }
1788
-
1789
-        /**
1790
-         *  Add Color Field to meta box
1791
-         * @author Ohad Raz
1792
-         * @since 1.0
1793
-         * @access public
1794
-         * @param $id string  field id, i.e. the meta key
1795
-         * @param $args mixed|array
1796
-         *    'name' => // field name/label string optional
1797
-         *    'desc' => // field description, string optional
1798
-         *    'std' => // default value, string optional
1799
-         *    'validate_func' => // validate function, string optional
1800
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1801
-         */
1802
-        public function addColor($id, $args, $repeater = false)
1803
-        {
1804
-            $new_field = array('type' => 'color', 'id' => $id, 'std' => '', 'desc' => '', 'name' => __('ColorPicker Field', 'geodirectory'));
1805
-            $new_field = array_merge($new_field, $args);
1806
-            if (false === $repeater) {
1807
-                $this->_fields[] = $new_field;
1808
-            } else {
1809
-                return $new_field;
1810
-            }
1811
-        }
1812
-
1813
-        /**
1814
-         *  Add Image Field to meta box
1815
-         * @author Ohad Raz
1816
-         * @since 1.0
1817
-         * @access public
1818
-         * @param $id string  field id, i.e. the meta key
1819
-         * @param $args mixed|array
1820
-         *    'name' => // field name/label string optional
1821
-         *    'desc' => // field description, string optional
1822
-         *    'validate_func' => // validate function, string optional
1823
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1824
-         */
1825
-        public function addImage($id, $args, $repeater = false)
1826
-        {
1827
-            $new_field = array('type' => 'image', 'id' => $id, 'desc' => '', 'style' => '', 'name' => __('Image Field', 'geodirectory'));
1828
-            $new_field = array_merge($new_field, $args);
1829
-
1830
-            if (false === $repeater) {
1831
-                $this->_fields[] = $new_field;
1832
-            } else {
1833
-                return $new_field;
1834
-            }
1835
-        }
1836
-
1837
-        /**
1838
-         *  Add File Field to meta box
1839
-         * @author Ohad Raz
1840
-         * @since 1.0
1841
-         * @access public
1842
-         * @param $id string  field id, i.e. the meta key
1843
-         * @param $args mixed|array
1844
-         *    'name' => // field name/label string optional
1845
-         *    'desc' => // field description, string optional
1846
-         *    'validate_func' => // validate function, string optional
1847
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1848
-         */
1849
-        public function addFile($id, $args, $repeater = false)
1850
-        {
1851
-            $new_field = array('type' => 'file', 'id' => $id, 'desc' => '', 'style' => '', 'name' => __('File Field', 'geodirectory'));
1852
-            $new_field = array_merge($new_field, $args);
1853
-            if (false === $repeater) {
1854
-                $this->_fields[] = $new_field;
1855
-            } else {
1856
-                return $new_field;
1857
-            }
1858
-        }
1859
-
1860
-        /**
1861
-         *  Add WYSIWYG Field to meta box
1862
-         * @author Ohad Raz
1863
-         * @since 1.0
1864
-         * @access public
1865
-         * @param $id string  field id, i.e. the meta key
1866
-         * @param $args mixed|array
1867
-         *    'name' => // field name/label string optional
1868
-         *    'desc' => // field description, string optional
1869
-         *    'std' => // default value, string optional
1870
-         *    'style' =>    // custom style for field, string optional Default 'width: 300px; height: 400px'
1871
-         *    'validate_func' => // validate function, string optional
1872
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1873
-         */
1874
-        public function addWysiwyg($id, $args, $repeater = false)
1875
-        {
1876
-            $new_field = array('type' => 'wysiwyg', 'id' => $id, 'std' => '', 'desc' => '', 'style' => 'width: 300px; height: 400px', 'name' => __('WYSIWYG Editor Field', 'geodirectory'));
1877
-            $new_field = array_merge($new_field, $args);
1878
-            if (false === $repeater) {
1879
-                $this->_fields[] = $new_field;
1880
-            } else {
1881
-                return $new_field;
1882
-            }
1883
-        }
1884
-
1885
-        /**
1886
-         *  Add Taxonomy Field to meta box
1887
-         * @author Ohad Raz
1888
-         * @since 1.0
1889
-         * @access public
1890
-         * @param $id string  field id, i.e. the meta key
1891
-         * @param $options mixed|array options of taxonomy field
1892
-         *    'taxonomy' =>    // taxonomy name can be category,post_tag or any custom taxonomy default is category
1893
-         * 'type' =>  // how to show taxonomy? 'select' (default) or 'checkbox_list'
1894
-         * 'args' =>  // arguments to query taxonomy, see http://goo.gl/uAANN default ('hide_empty' => false)
1895
-         * @param $args mixed|array
1896
-         *    'name' => // field name/label string optional
1897
-         *    'desc' => // field description, string optional
1898
-         *    'std' => // default value, string optional
1899
-         *    'validate_func' => // validate function, string optional
1900
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1901
-         */
1902
-        public function addTaxonomy($id, $options, $args, $repeater = false)
1903
-        {
1904
-            $q = array('hide_empty' => 0);
1905
-            $tax = 'category';
1906
-            $type = 'select';
1907
-            $temp = array($tax, $type, $q);
1908
-            $options = array_merge($temp, $options);
1909
-            $new_field = array('type' => 'taxonomy', 'id' => $id, 'desc' => '', 'name' => __('Taxonomy Field', 'geodirectory'), 'options' => $options);
1910
-            $new_field = array_merge($new_field, $args);
1911
-            if (false === $repeater) {
1912
-                $this->_fields[] = $new_field;
1913
-            } else {
1914
-                return $new_field;
1915
-            }
1916
-        }
1917
-
1918
-        /**
1919
-         *  Add posts Field to meta box
1920
-         * @author Ohad Raz
1921
-         * @since 1.0
1922
-         * @access public
1923
-         * @param $id string  field id, i.e. the meta key
1924
-         * @param $options mixed|array options of taxonomy field
1925
-         *    'post_type' =>    // post type name, 'post' (default) 'page' or any custom post type
1926
-         * 'type' =>  // how to show posts? 'select' (default) or 'checkbox_list'
1927
-         * 'args' =>  // arguments to query posts, see http://goo.gl/is0yK default ('posts_per_page' => -1)
1928
-         * @param $args mixed|array
1929
-         *    'name' => // field name/label string optional
1930
-         *    'desc' => // field description, string optional
1931
-         *    'std' => // default value, string optional
1932
-         *    'validate_func' => // validate function, string optional
1933
-         * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1934
-         */
1935
-        public function addPosts($id, $options, $args, $repeater = false)
1936
-        {
1937
-            $q = array('posts_per_page' => -1);
1938
-            $temp = array('post_type' => 'post', 'type' => 'select', 'args' => $q);
1939
-            $options = array_merge($temp, $options);
1940
-            $new_field = array('type' => 'posts', 'id' => $id, 'desc' => '', 'name' => __('Posts Field', 'geodirectory'), 'options' => $options);
1941
-            $new_field = array_merge($new_field, $args);
1942
-            if (false === $repeater) {
1943
-                $this->_fields[] = $new_field;
1944
-            } else {
1945
-                return $new_field;
1946
-            }
1947
-        }
1948
-
1949
-        /**
1950
-         *  Add repeater Field Block to meta box
1951
-         * @author Ohad Raz
1952
-         * @since 1.0
1953
-         * @access public
1954
-         * @param $id string  field id, i.e. the meta key
1955
-         * @param $args mixed|array
1956
-         *    'name' => // field name/label string optional
1957
-         *    'desc' => // field description, string optional
1958
-         *    'std' => // default value, string optional
1959
-         *    'style' =>    // custom style for field, string optional
1960
-         *    'validate_func' => // validate function, string optional
1961
-         *    'fields' => //fields to repeater
1962
-         */
1963
-        public function addRepeaterBlock($id, $args)
1964
-        {
1965
-            $new_field = array('type' => 'repeater', 'id' => $id, 'name' => __('Reapeater Field', 'geodirectory'), 'fields' => array(), 'inline' => false);
1966
-            $new_field = array_merge($new_field, $args);
1967
-            $this->_fields[] = $new_field;
1968
-        }
1969
-
1970
-
1971
-        /**
1972
-         * Finish Declaration of Meta Box
1973
-         * @author Ohad Raz
1974
-         * @since 1.0
1975
-         * @access public
1976
-         */
1977
-        public function Finish()
1978
-        {
1979
-            $this->add_missed_values();
1980
-            $this->check_field_upload();
1981
-            $this->check_field_color();
1982
-            $this->check_field_date();
1983
-            $this->check_field_time();
1984
-        }
1985
-
1986
-        /**
1987
-         * Helper function to check for empty arrays
1988
-         * @author Ohad Raz
1989
-         * @since 1.0
1990
-         * @access public
1991
-         * @param $args mixed|array
1992
-         */
1993
-        public function is_array_empty($array)
1994
-        {
1995
-            if (!is_array($array))
1996
-                return true;
1997
-
1998
-            foreach ($array as $a) {
1999
-                if (is_array($a)) {
2000
-                    foreach ($a as $sub_a) {
2001
-                        if (!empty($sub_a) && $sub_a != '')
2002
-                            return false;
2003
-                    }
2004
-                } else {
2005
-                    if (!empty($a) && $a != '')
2006
-                        return false;
2007
-                }
2008
-            }
2009
-            return true;
2010
-        }
2011
-
2012
-
2013
-        //get term meta field
2014
-        public function get_tax_meta($term_id, $key, $multi = false, $post_type = '')
2015
-        {
2016
-
2017
-            if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2018
-                $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2019
-                $post_type = $taxObject->object_type[0];
2020
-            }
2021
-
2022
-            if($post_type=='post'){$post_type='';}
2023
-            if($post_type){$post_type = $post_type.'_';}
2024
-
2025
-            $t_id = (is_object($term_id)) ? $term_id->term_id : $term_id;
2026
-
2027
-            $m = get_option('tax_meta_' . $post_type  . $t_id);
2028
-            if (isset($m[$key])) {
2029
-                return $m[$key];
2030
-            } else {
2031
-                return '';
2032
-            }
2033
-        }
2034
-
2035
-        //delete meta
2036
-        public function delete_tax_meta($term_id, $key, $post_type = '')
2037
-        {
2038
-
2039
-            if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2040
-                $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2041
-                $post_type = $taxObject->object_type[0];
2042
-            }
2043
-
2044
-            if($post_type=='post'){$post_type='';}
2045
-            if($post_type){$post_type = $post_type.'_';}
2046
-
2047
-            $m = get_option('tax_meta_' . $post_type  . $term_id);
2048
-
2049
-            if (isset($m[$key])) {
2050
-                unset($m[$key]);
2051
-            }
2052
-            update_option('tax_meta_' . $post_type  . $term_id, $m);
2053
-        }
2054
-
2055
-        //update meta
2056
-        public function update_tax_meta($term_id, $key, $value, $post_type = '')
2057
-        {
2058
-
2059
-            if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2060
-                $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2061
-                $post_type = $taxObject->object_type[0];
2062
-            }
2063
-
2064
-            if($post_type=='post'){$post_type='';}
2065
-            if($post_type){$post_type = $post_type.'_';}
2066
-
2067
-            $m = get_option('tax_meta_' . $post_type  . $term_id);
2068
-
2069
-            $m[$key] = $value;
2070
-            update_option('tax_meta_' . $post_type  . $term_id, $m);
2071
-
2072
-            /**
2073
-             * Called after the tax meta is updated.
2074
-             *
2075
-             * Used to update things after a GD category is saved.
2076
-             *
2077
-             * @since 1.0.0
2078
-             * @param bool $false False.
2079
-             * @param bool $true True.
2080
-             * @param int $term_id The term id being updated.
2081
-             * @param string $post_type The post type of the cat being updated.
2082
-             */
2083
-            do_action('gd_tax_meta_updated', false, true, $term_id, $post_type);
2084
-        }
2085
-
2086
-
2087
-    } // End Class
1288
+		public function save_field_wysiwyg($term_id, $field, $old, $new)
1289
+		{
1290
+			$this->save_field($term_id, $field, $old, $new);
1291
+		}
1292
+
1293
+		/**
1294
+		 * Save repeater Fields.
1295
+		 *
1296
+		 * @param string $term_id The term ID.
1297
+		 * @param string $field
1298
+		 * @param string|mixed $old
1299
+		 * @param string|mixed $new
1300
+		 * @since 1.0
1301
+		 * @access public
1302
+		 */
1303
+		public function save_field_repeater($term_id, $field, $old, $new)
1304
+		{
1305
+			if (is_array($new) && count($new) > 0) {
1306
+				foreach ($new as $n) {
1307
+					foreach ($field['fields'] as $f) {
1308
+						$type = $f['type'];
1309
+						switch ($type) {
1310
+							case 'wysiwyg':
1311
+								$n[$f['id']] = wpautop($n[$f['id']]);
1312
+								break;
1313
+							case 'file':
1314
+								$n[$f['id']] = $this->save_field_file_repeater($term_id, $f, '', $n[$f['id']]);
1315
+								break;
1316
+							default:
1317
+								break;
1318
+						}
1319
+					}
1320
+					if (!$this->is_array_empty($n))
1321
+						$temp[] = $n;
1322
+				}
1323
+				if (isset($temp) && count($temp) > 0 && !$this->is_array_empty($temp)) {
1324
+					$this->update_tax_meta($term_id, $field['id'], $temp);
1325
+				} else {
1326
+					//	remove old meta if exists
1327
+					delete_post_meta($term_id, $field['id']);
1328
+				}
1329
+			} else {
1330
+				//	remove old meta if exists
1331
+				delete_post_meta($term_id, $field['id']);
1332
+			}
1333
+		}
1334
+
1335
+		/**
1336
+		 * Save File Field.
1337
+		 *
1338
+		 * @param string $term_id The term ID.
1339
+		 * @param string $field
1340
+		 * @param string $old
1341
+		 * @param string $new
1342
+		 * @since 1.0
1343
+		 * @access public
1344
+		 */
1345
+		public function save_field_file($term_id, $field, $old, $new)
1346
+		{
1347
+
1348
+			$name = $field['id'];
1349
+			if (empty($_FILES[$name]))
1350
+				return;
1351
+			$this->fix_file_array($_FILES[$name]);
1352
+			foreach ($_FILES[$name] as $position => $fileitem) {
1353
+
1354
+				$file = wp_handle_upload($fileitem, array('test_form' => false));
1355
+				if (empty($file['file']))
1356
+					continue;
1357
+				$filename = $file['file'];
1358
+
1359
+				$attachment = array(
1360
+					'post_mime_type' => $file['type'],
1361
+					'guid' => $file['url'],
1362
+					'post_parent' => $term_id,
1363
+					'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
1364
+					'post_content' => ''
1365
+				);
1366
+
1367
+				$id = wp_insert_attachment($attachment, $filename, $term_id);
1368
+
1369
+				if (!is_wp_error($id)) {
1370
+
1371
+					wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
1372
+					add_post_meta($term_id, $name, $id, false);    // save file's url in meta fields
1373
+
1374
+				} // End if
1375
+
1376
+			} // End foreach
1377
+
1378
+		}
1379
+
1380
+		/**
1381
+		 * Save repeater File Field.
1382
+		 * @param string $term_id The term ID.
1383
+		 * @param string $field
1384
+		 * @param string $old
1385
+		 * @param string $new
1386
+		 * @since 1.0
1387
+		 * @access public
1388
+		 * @return int|void
1389
+		 */
1390
+		public function save_field_file_repeater($term_id, $field, $old, $new)
1391
+		{
1392
+
1393
+			$name = $field['id'];
1394
+			if (empty($_FILES[$name]))
1395
+				return;
1396
+			$this->fix_file_array($_FILES[$name]);
1397
+			foreach ($_FILES[$name] as $position => $fileitem) {
1398
+
1399
+				$file = wp_handle_upload($fileitem, array('test_form' => false));
1400
+				if (empty($file['file']))
1401
+					continue;
1402
+				$filename = $file['file'];
1403
+
1404
+				$attachment = array(
1405
+					'post_mime_type' => $file['type'],
1406
+					'guid' => $file['url'],
1407
+					'post_parent' => $term_id,
1408
+					'post_title' => preg_replace('/\.[^.]+$/', '', basename($filename)),
1409
+					'post_content' => ''
1410
+				);
1411
+
1412
+				$id = wp_insert_attachment($attachment, $filename);
1413
+
1414
+				if (!is_wp_error($id)) {
1415
+
1416
+					wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
1417
+					return $id;    // return file's url in meta fields
1418
+				} // End if
1419
+			} // End foreach
1420
+		}
1421
+
1422
+		/**
1423
+		 * Add missed values for meta box.
1424
+		 *
1425
+		 * @since 1.0
1426
+		 * @access public
1427
+		 */
1428
+		public function add_missed_values()
1429
+		{
1430
+
1431
+			// Default values for meta box
1432
+			$this->_meta_box = array_merge(array('context' => 'normal', 'priority' => 'high', 'pages' => array('post')), (array)$this->_meta_box);
1433
+
1434
+			if(is_array($this->_fields)) {
1435
+				// Default values for fields
1436
+				foreach ($this->_fields as &$field) {
1437
+					$multiple = in_array($field['type'], array('checkbox_list', 'file', 'image'));
1438
+					$std = $multiple ? array() : '';
1439
+					$format = 'date' == $field['type'] ? 'yy-mm-dd' : ('time' == $field['type'] ? 'hh:mm' : '');
1440
+					$field = array_merge(array('multiple' => $multiple, 'std' => $std, 'desc' => '', 'format' => $format, 'validate_func' => ''), $field);
1441
+				} // End foreach
1442
+			}
1443
+		}
1444
+
1445
+		/**
1446
+		 * Check if field with $type exists.
1447
+		 *
1448
+		 * @param string $type
1449
+		 * @since 1.0
1450
+		 * @access public
1451
+		 */
1452
+		public function has_field($type)
1453
+		{
1454
+			if(is_array($this->_fields)) {
1455
+				foreach ($this->_fields as $field) {
1456
+					if ($type == $field['type'])
1457
+						return true;
1458
+				}
1459
+			}
1460
+			return false;
1461
+		}
1462
+
1463
+		/**
1464
+		 * Check if current page is edit page.
1465
+		 *
1466
+		 * @since 1.0
1467
+		 * @access public
1468
+		 */
1469
+		public function is_edit_page()
1470
+		{
1471
+			global $pagenow;
1472
+			return ($pagenow == 'edit-tags.php' || $pagenow == 'term.php');
1473
+		}
1474
+
1475
+		/**
1476
+		 * Fixes the odd indexing of multiple file uploads.
1477
+		 *
1478
+		 * Goes from the format:
1479
+		 * $_FILES['field']['key']['index']
1480
+		 * to
1481
+		 * The More standard and appropriate:
1482
+		 * $_FILES['field']['index']['key']
1483
+		 *
1484
+		 * @param string $files
1485
+		 * @since 1.0
1486
+		 * @access public
1487
+		 */
1488
+		public function fix_file_array(&$files)
1489
+		{
1490
+
1491
+			$output = array();
1492
+
1493
+			foreach ($files as $key => $list) {
1494
+				foreach ($list as $index => $value) {
1495
+					$output[$index][$key] = $value;
1496
+				}
1497
+			}
1498
+
1499
+			return $files = $output;
1500
+
1501
+		}
1502
+
1503
+		/**
1504
+		 * Get proper JQuery UI version.
1505
+		 *
1506
+		 * Used in order to not conflict with WP Admin Scripts.
1507
+		 *
1508
+		 * @since 1.0
1509
+		 * @access public
1510
+		 */
1511
+		public function get_jqueryui_ver()
1512
+		{
1513
+
1514
+			global $wp_version;
1515
+
1516
+			if (version_compare($wp_version, '3.1', '>=')) {
1517
+				return '1.8.10';
1518
+			}
1519
+
1520
+			return '1.7.3';
1521
+
1522
+		}
1523
+
1524
+		/**
1525
+		 *  Add Field to meta box (generic function)
1526
+		 * @author Ohad Raz
1527
+		 * @since 1.0
1528
+		 * @access public
1529
+		 * @param $id string  field id, i.e. the meta key
1530
+		 * @param $args mixed|array
1531
+		 */
1532
+		public function addField($id, $args)
1533
+		{
1534
+			$new_field = array('id' => $id, 'std' => '', 'desc' => '', 'style' => '');
1535
+			$new_field = array_merge($new_field, $args);
1536
+			$this->_fields[] = $new_field;
1537
+		}
1538
+
1539
+
1540
+		/**
1541
+		 *  Add Text Field to meta box
1542
+		 * @author Ohad Raz
1543
+		 * @since 1.0
1544
+		 * @access public
1545
+		 * @param $id string  field id, i.e. the meta key
1546
+		 * @param $args mixed|array
1547
+		 *    'name' => // field name/label string optional
1548
+		 *    'desc' => // field description, string optional
1549
+		 *    'std' => // default value, string optional
1550
+		 *    'style' =>    // custom style for field, string optional
1551
+		 *    'validate_func' => // validate function, string optional
1552
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1553
+		 */
1554
+		public function addText($id, $args, $repeater = false)
1555
+		{
1556
+			$new_field = array('type' => 'text', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Text Field', 'geodirectory'));
1557
+			$new_field = array_merge($new_field, $args);
1558
+			if (false === $repeater) {
1559
+				$this->_fields[] = $new_field;
1560
+			} else {
1561
+				return $new_field;
1562
+			}
1563
+		}
1564
+
1565
+		/**
1566
+		 *  Add Hidden Field to meta box
1567
+		 * @author Ohad Raz
1568
+		 * @since 0.1.3
1569
+		 * @access public
1570
+		 * @param $id string  field id, i.e. the meta key
1571
+		 * @param $args mixed|array
1572
+		 *    'name' => // field name/label string optional
1573
+		 *    'desc' => // field description, string optional
1574
+		 *    'std' => // default value, string optional
1575
+		 *    'style' =>    // custom style for field, string optional
1576
+		 *    'validate_func' => // validate function, string optional
1577
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1578
+		 */
1579
+		public function addHidden($id, $args, $repeater = false)
1580
+		{
1581
+			$new_field = array('type' => 'hidden', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Text Field', 'geodirectory'));
1582
+			$new_field = array_merge($new_field, $args);
1583
+			if (false === $repeater) {
1584
+				$this->_fields[] = $new_field;
1585
+			} else {
1586
+				return $new_field;
1587
+			}
1588
+		}
1589
+
1590
+		/**
1591
+		 *  Add Paragraph to meta box
1592
+		 * @author Ohad Raz
1593
+		 * @since 0.1.3
1594
+		 * @access public
1595
+		 * @param $id string  field id, i.e. the meta key
1596
+		 * @param $value  paragraph html
1597
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1598
+		 */
1599
+		public function addParagraph($id, $args, $repeater = false)
1600
+		{
1601
+			$new_field = array('type' => 'paragraph', 'id' => $id, 'value' => '', 'style' => '');
1602
+			$new_field = array_merge($new_field, $args);
1603
+			if (false === $repeater) {
1604
+				$this->_fields[] = $new_field;
1605
+			} else {
1606
+				return $new_field;
1607
+			}
1608
+		}
1609
+
1610
+		/**
1611
+		 *  Add Checkbox Field to meta box
1612
+		 * @author Ohad Raz
1613
+		 * @since 1.0
1614
+		 * @access public
1615
+		 * @param $id string  field id, i.e. the meta key
1616
+		 * @param $args mixed|array
1617
+		 *    'name' => // field name/label string optional
1618
+		 *    'desc' => // field description, string optional
1619
+		 *    'std' => // default value, string optional
1620
+		 *    'validate_func' => // validate function, string optional
1621
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1622
+		 */
1623
+		public function addCheckbox($id, $args, $repeater = false)
1624
+		{
1625
+			$new_field = array('type' => 'checkbox', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Checkbox Field', 'geodirectory'));
1626
+			$new_field = array_merge($new_field, $args);
1627
+			if (false === $repeater) {
1628
+				$this->_fields[] = $new_field;
1629
+			} else {
1630
+				return $new_field;
1631
+			}
1632
+		}
1633
+
1634
+		/**
1635
+		 *  Add CheckboxList Field to meta box
1636
+		 * @author Ohad Raz
1637
+		 * @since 1.0
1638
+		 * @access public
1639
+		 * @param $id string  field id, i.e. the meta key
1640
+		 * @param $options (array)  array of key => value pairs for select options
1641
+		 * @param $args mixed|array
1642
+		 *    'name' => // field name/label string optional
1643
+		 *    'desc' => // field description, string optional
1644
+		 *    'std' => // default value, string optional
1645
+		 *    'validate_func' => // validate function, string optional
1646
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1647
+		 *
1648
+		 * @return : remember to call: $checkbox_list = $this->get_tax_meta(get_the_ID(), 'meta_name', false);
1649
+		 *   which means the last param as false to get the values in an array
1650
+		 */
1651
+		public function addCheckboxList($id, $options, $args, $repeater = false)
1652
+		{
1653
+			$new_field = array('type' => 'checkbox_list', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Checkbox List Field', 'geodirectory'));
1654
+			$new_field = array_merge($new_field, $args);
1655
+			if (false === $repeater) {
1656
+				$this->_fields[] = $new_field;
1657
+			} else {
1658
+				return $new_field;
1659
+			}
1660
+		}
1661
+
1662
+		/**
1663
+		 *  Add Textarea Field to meta box
1664
+		 * @author Ohad Raz
1665
+		 * @since 1.0
1666
+		 * @access public
1667
+		 * @param $id string  field id, i.e. the meta key
1668
+		 * @param $args mixed|array
1669
+		 *    'name' => // field name/label string optional
1670
+		 *    'desc' => // field description, string optional
1671
+		 *    'std' => // default value, string optional
1672
+		 *    'style' =>    // custom style for field, string optional
1673
+		 *    'validate_func' => // validate function, string optional
1674
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1675
+		 */
1676
+		public function addTextarea($id, $args, $repeater = false)
1677
+		{
1678
+			$new_field = array('type' => 'textarea', 'id' => $id, 'std' => '', 'desc' => '', 'style' => '', 'name' => __('Textarea Field', 'geodirectory'));
1679
+			$new_field = array_merge($new_field, $args);
1680
+			if (false === $repeater) {
1681
+				$this->_fields[] = $new_field;
1682
+			} else {
1683
+				return $new_field;
1684
+			}
1685
+		}
1686
+
1687
+		/**
1688
+		 *  Add Select Field to meta box
1689
+		 * @author Ohad Raz
1690
+		 * @since 1.0
1691
+		 * @access public
1692
+		 * @param $id string field id, i.e. the meta key
1693
+		 * @param $options (array)  array of key => value pairs for select options
1694
+		 * @param $args mixed|array
1695
+		 *    'name' => // field name/label string optional
1696
+		 *    'desc' => // field description, string optional
1697
+		 *    'std' => // default value, (array) optional
1698
+		 *    'multiple' => // select multiple values, optional. Default is false.
1699
+		 *    'validate_func' => // validate function, string optional
1700
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1701
+		 */
1702
+		public function addSelect($id, $options, $args, $repeater = false)
1703
+		{
1704
+			$new_field = array('type' => 'select', 'id' => $id, 'std' => array(), 'desc' => '', 'style' => '', 'name' => __('Select Field', 'geodirectory'), 'multiple' => false, 'options' => $options);
1705
+			$new_field = array_merge($new_field, $args);
1706
+			if (false === $repeater) {
1707
+				$this->_fields[] = $new_field;
1708
+			} else {
1709
+				return $new_field;
1710
+			}
1711
+		}
1712
+
1713
+
1714
+		/**
1715
+		 *  Add Radio Field to meta box
1716
+		 * @author Ohad Raz
1717
+		 * @since 1.0
1718
+		 * @access public
1719
+		 * @param $id string field id, i.e. the meta key
1720
+		 * @param $options (array)  array of key => value pairs for radio options
1721
+		 * @param $args mixed|array
1722
+		 *    'name' => // field name/label string optional
1723
+		 *    'desc' => // field description, string optional
1724
+		 *    'std' => // default value, string optional
1725
+		 *    'validate_func' => // validate function, string optional
1726
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1727
+		 */
1728
+		public function addRadio($id, $options, $args, $repeater = false)
1729
+		{
1730
+			$new_field = array('type' => 'radio', 'id' => $id, 'std' => array(), 'desc' => '', 'style' => '', 'name' => __('Radio Field', 'geodirectory'), 'options' => $options);
1731
+			$new_field = array_merge($new_field, $args);
1732
+			if (false === $repeater) {
1733
+				$this->_fields[] = $new_field;
1734
+			} else {
1735
+				return $new_field;
1736
+			}
1737
+		}
1738
+
1739
+		/**
1740
+		 *  Add Date Field to meta box
1741
+		 * @author Ohad Raz
1742
+		 * @since 1.0
1743
+		 * @access public
1744
+		 * @param $id string  field id, i.e. the meta key
1745
+		 * @param $args mixed|array
1746
+		 *    'name' => // field name/label string optional
1747
+		 *    'desc' => // field description, string optional
1748
+		 *    'std' => // default value, string optional
1749
+		 *    'validate_func' => // validate function, string optional
1750
+		 *    'format' => // date format, default yy-mm-dd. Optional. Default "'d MM, yy'"  See more formats here: http://goo.gl/Wcwxn
1751
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1752
+		 */
1753
+		public function addDate($id, $args, $repeater = false)
1754
+		{
1755
+			$new_field = array('type' => 'date', 'id' => $id, 'std' => '', 'desc' => '', 'format' => 'yy-mm-dd', 'name' => __('Date Field', 'geodirectory'));
1756
+			$new_field = array_merge($new_field, $args);
1757
+			if (false === $repeater) {
1758
+				$this->_fields[] = $new_field;
1759
+			} else {
1760
+				return $new_field;
1761
+			}
1762
+		}
1763
+
1764
+		/**
1765
+		 *  Add Time Field to meta box
1766
+		 * @author Ohad Raz
1767
+		 * @since 1.0
1768
+		 * @access public
1769
+		 * @param $id string- field id, i.e. the meta key
1770
+		 * @param $args mixed|array
1771
+		 *    'name' => // field name/label string optional
1772
+		 *    'desc' => // field description, string optional
1773
+		 *    'std' => // default value, string optional
1774
+		 *    'validate_func' => // validate function, string optional
1775
+		 *    'format' => // time format, default hh:mm. Optional. See more formats here: http://goo.gl/83woX
1776
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1777
+		 */
1778
+		public function addTime($id, $args, $repeater = false)
1779
+		{
1780
+			$new_field = array('type' => 'time', 'id' => $id, 'std' => '', 'desc' => '', 'format' => 'hh:mm', 'name' => __('Time Field', 'geodirectory'));
1781
+			$new_field = array_merge($new_field, $args);
1782
+			if (false === $repeater) {
1783
+				$this->_fields[] = $new_field;
1784
+			} else {
1785
+				return $new_field;
1786
+			}
1787
+		}
1788
+
1789
+		/**
1790
+		 *  Add Color Field to meta box
1791
+		 * @author Ohad Raz
1792
+		 * @since 1.0
1793
+		 * @access public
1794
+		 * @param $id string  field id, i.e. the meta key
1795
+		 * @param $args mixed|array
1796
+		 *    'name' => // field name/label string optional
1797
+		 *    'desc' => // field description, string optional
1798
+		 *    'std' => // default value, string optional
1799
+		 *    'validate_func' => // validate function, string optional
1800
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1801
+		 */
1802
+		public function addColor($id, $args, $repeater = false)
1803
+		{
1804
+			$new_field = array('type' => 'color', 'id' => $id, 'std' => '', 'desc' => '', 'name' => __('ColorPicker Field', 'geodirectory'));
1805
+			$new_field = array_merge($new_field, $args);
1806
+			if (false === $repeater) {
1807
+				$this->_fields[] = $new_field;
1808
+			} else {
1809
+				return $new_field;
1810
+			}
1811
+		}
1812
+
1813
+		/**
1814
+		 *  Add Image Field to meta box
1815
+		 * @author Ohad Raz
1816
+		 * @since 1.0
1817
+		 * @access public
1818
+		 * @param $id string  field id, i.e. the meta key
1819
+		 * @param $args mixed|array
1820
+		 *    'name' => // field name/label string optional
1821
+		 *    'desc' => // field description, string optional
1822
+		 *    'validate_func' => // validate function, string optional
1823
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1824
+		 */
1825
+		public function addImage($id, $args, $repeater = false)
1826
+		{
1827
+			$new_field = array('type' => 'image', 'id' => $id, 'desc' => '', 'style' => '', 'name' => __('Image Field', 'geodirectory'));
1828
+			$new_field = array_merge($new_field, $args);
1829
+
1830
+			if (false === $repeater) {
1831
+				$this->_fields[] = $new_field;
1832
+			} else {
1833
+				return $new_field;
1834
+			}
1835
+		}
1836
+
1837
+		/**
1838
+		 *  Add File Field to meta box
1839
+		 * @author Ohad Raz
1840
+		 * @since 1.0
1841
+		 * @access public
1842
+		 * @param $id string  field id, i.e. the meta key
1843
+		 * @param $args mixed|array
1844
+		 *    'name' => // field name/label string optional
1845
+		 *    'desc' => // field description, string optional
1846
+		 *    'validate_func' => // validate function, string optional
1847
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1848
+		 */
1849
+		public function addFile($id, $args, $repeater = false)
1850
+		{
1851
+			$new_field = array('type' => 'file', 'id' => $id, 'desc' => '', 'style' => '', 'name' => __('File Field', 'geodirectory'));
1852
+			$new_field = array_merge($new_field, $args);
1853
+			if (false === $repeater) {
1854
+				$this->_fields[] = $new_field;
1855
+			} else {
1856
+				return $new_field;
1857
+			}
1858
+		}
1859
+
1860
+		/**
1861
+		 *  Add WYSIWYG Field to meta box
1862
+		 * @author Ohad Raz
1863
+		 * @since 1.0
1864
+		 * @access public
1865
+		 * @param $id string  field id, i.e. the meta key
1866
+		 * @param $args mixed|array
1867
+		 *    'name' => // field name/label string optional
1868
+		 *    'desc' => // field description, string optional
1869
+		 *    'std' => // default value, string optional
1870
+		 *    'style' =>    // custom style for field, string optional Default 'width: 300px; height: 400px'
1871
+		 *    'validate_func' => // validate function, string optional
1872
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1873
+		 */
1874
+		public function addWysiwyg($id, $args, $repeater = false)
1875
+		{
1876
+			$new_field = array('type' => 'wysiwyg', 'id' => $id, 'std' => '', 'desc' => '', 'style' => 'width: 300px; height: 400px', 'name' => __('WYSIWYG Editor Field', 'geodirectory'));
1877
+			$new_field = array_merge($new_field, $args);
1878
+			if (false === $repeater) {
1879
+				$this->_fields[] = $new_field;
1880
+			} else {
1881
+				return $new_field;
1882
+			}
1883
+		}
1884
+
1885
+		/**
1886
+		 *  Add Taxonomy Field to meta box
1887
+		 * @author Ohad Raz
1888
+		 * @since 1.0
1889
+		 * @access public
1890
+		 * @param $id string  field id, i.e. the meta key
1891
+		 * @param $options mixed|array options of taxonomy field
1892
+		 *    'taxonomy' =>    // taxonomy name can be category,post_tag or any custom taxonomy default is category
1893
+		 * 'type' =>  // how to show taxonomy? 'select' (default) or 'checkbox_list'
1894
+		 * 'args' =>  // arguments to query taxonomy, see http://goo.gl/uAANN default ('hide_empty' => false)
1895
+		 * @param $args mixed|array
1896
+		 *    'name' => // field name/label string optional
1897
+		 *    'desc' => // field description, string optional
1898
+		 *    'std' => // default value, string optional
1899
+		 *    'validate_func' => // validate function, string optional
1900
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1901
+		 */
1902
+		public function addTaxonomy($id, $options, $args, $repeater = false)
1903
+		{
1904
+			$q = array('hide_empty' => 0);
1905
+			$tax = 'category';
1906
+			$type = 'select';
1907
+			$temp = array($tax, $type, $q);
1908
+			$options = array_merge($temp, $options);
1909
+			$new_field = array('type' => 'taxonomy', 'id' => $id, 'desc' => '', 'name' => __('Taxonomy Field', 'geodirectory'), 'options' => $options);
1910
+			$new_field = array_merge($new_field, $args);
1911
+			if (false === $repeater) {
1912
+				$this->_fields[] = $new_field;
1913
+			} else {
1914
+				return $new_field;
1915
+			}
1916
+		}
1917
+
1918
+		/**
1919
+		 *  Add posts Field to meta box
1920
+		 * @author Ohad Raz
1921
+		 * @since 1.0
1922
+		 * @access public
1923
+		 * @param $id string  field id, i.e. the meta key
1924
+		 * @param $options mixed|array options of taxonomy field
1925
+		 *    'post_type' =>    // post type name, 'post' (default) 'page' or any custom post type
1926
+		 * 'type' =>  // how to show posts? 'select' (default) or 'checkbox_list'
1927
+		 * 'args' =>  // arguments to query posts, see http://goo.gl/is0yK default ('posts_per_page' => -1)
1928
+		 * @param $args mixed|array
1929
+		 *    'name' => // field name/label string optional
1930
+		 *    'desc' => // field description, string optional
1931
+		 *    'std' => // default value, string optional
1932
+		 *    'validate_func' => // validate function, string optional
1933
+		 * @param $repeater bool  is this a field inside a repeatr? true|false(default)
1934
+		 */
1935
+		public function addPosts($id, $options, $args, $repeater = false)
1936
+		{
1937
+			$q = array('posts_per_page' => -1);
1938
+			$temp = array('post_type' => 'post', 'type' => 'select', 'args' => $q);
1939
+			$options = array_merge($temp, $options);
1940
+			$new_field = array('type' => 'posts', 'id' => $id, 'desc' => '', 'name' => __('Posts Field', 'geodirectory'), 'options' => $options);
1941
+			$new_field = array_merge($new_field, $args);
1942
+			if (false === $repeater) {
1943
+				$this->_fields[] = $new_field;
1944
+			} else {
1945
+				return $new_field;
1946
+			}
1947
+		}
1948
+
1949
+		/**
1950
+		 *  Add repeater Field Block to meta box
1951
+		 * @author Ohad Raz
1952
+		 * @since 1.0
1953
+		 * @access public
1954
+		 * @param $id string  field id, i.e. the meta key
1955
+		 * @param $args mixed|array
1956
+		 *    'name' => // field name/label string optional
1957
+		 *    'desc' => // field description, string optional
1958
+		 *    'std' => // default value, string optional
1959
+		 *    'style' =>    // custom style for field, string optional
1960
+		 *    'validate_func' => // validate function, string optional
1961
+		 *    'fields' => //fields to repeater
1962
+		 */
1963
+		public function addRepeaterBlock($id, $args)
1964
+		{
1965
+			$new_field = array('type' => 'repeater', 'id' => $id, 'name' => __('Reapeater Field', 'geodirectory'), 'fields' => array(), 'inline' => false);
1966
+			$new_field = array_merge($new_field, $args);
1967
+			$this->_fields[] = $new_field;
1968
+		}
1969
+
1970
+
1971
+		/**
1972
+		 * Finish Declaration of Meta Box
1973
+		 * @author Ohad Raz
1974
+		 * @since 1.0
1975
+		 * @access public
1976
+		 */
1977
+		public function Finish()
1978
+		{
1979
+			$this->add_missed_values();
1980
+			$this->check_field_upload();
1981
+			$this->check_field_color();
1982
+			$this->check_field_date();
1983
+			$this->check_field_time();
1984
+		}
1985
+
1986
+		/**
1987
+		 * Helper function to check for empty arrays
1988
+		 * @author Ohad Raz
1989
+		 * @since 1.0
1990
+		 * @access public
1991
+		 * @param $args mixed|array
1992
+		 */
1993
+		public function is_array_empty($array)
1994
+		{
1995
+			if (!is_array($array))
1996
+				return true;
1997
+
1998
+			foreach ($array as $a) {
1999
+				if (is_array($a)) {
2000
+					foreach ($a as $sub_a) {
2001
+						if (!empty($sub_a) && $sub_a != '')
2002
+							return false;
2003
+					}
2004
+				} else {
2005
+					if (!empty($a) && $a != '')
2006
+						return false;
2007
+				}
2008
+			}
2009
+			return true;
2010
+		}
2011
+
2012
+
2013
+		//get term meta field
2014
+		public function get_tax_meta($term_id, $key, $multi = false, $post_type = '')
2015
+		{
2016
+
2017
+			if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2018
+				$taxObject = get_taxonomy($_REQUEST['taxonomy']);
2019
+				$post_type = $taxObject->object_type[0];
2020
+			}
2021
+
2022
+			if($post_type=='post'){$post_type='';}
2023
+			if($post_type){$post_type = $post_type.'_';}
2024
+
2025
+			$t_id = (is_object($term_id)) ? $term_id->term_id : $term_id;
2026
+
2027
+			$m = get_option('tax_meta_' . $post_type  . $t_id);
2028
+			if (isset($m[$key])) {
2029
+				return $m[$key];
2030
+			} else {
2031
+				return '';
2032
+			}
2033
+		}
2034
+
2035
+		//delete meta
2036
+		public function delete_tax_meta($term_id, $key, $post_type = '')
2037
+		{
2038
+
2039
+			if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2040
+				$taxObject = get_taxonomy($_REQUEST['taxonomy']);
2041
+				$post_type = $taxObject->object_type[0];
2042
+			}
2043
+
2044
+			if($post_type=='post'){$post_type='';}
2045
+			if($post_type){$post_type = $post_type.'_';}
2046
+
2047
+			$m = get_option('tax_meta_' . $post_type  . $term_id);
2048
+
2049
+			if (isset($m[$key])) {
2050
+				unset($m[$key]);
2051
+			}
2052
+			update_option('tax_meta_' . $post_type  . $term_id, $m);
2053
+		}
2054
+
2055
+		//update meta
2056
+		public function update_tax_meta($term_id, $key, $value, $post_type = '')
2057
+		{
2058
+
2059
+			if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2060
+				$taxObject = get_taxonomy($_REQUEST['taxonomy']);
2061
+				$post_type = $taxObject->object_type[0];
2062
+			}
2063
+
2064
+			if($post_type=='post'){$post_type='';}
2065
+			if($post_type){$post_type = $post_type.'_';}
2066
+
2067
+			$m = get_option('tax_meta_' . $post_type  . $term_id);
2068
+
2069
+			$m[$key] = $value;
2070
+			update_option('tax_meta_' . $post_type  . $term_id, $m);
2071
+
2072
+			/**
2073
+			 * Called after the tax meta is updated.
2074
+			 *
2075
+			 * Used to update things after a GD category is saved.
2076
+			 *
2077
+			 * @since 1.0.0
2078
+			 * @param bool $false False.
2079
+			 * @param bool $true True.
2080
+			 * @param int $term_id The term id being updated.
2081
+			 * @param string $post_type The post type of the cat being updated.
2082
+			 */
2083
+			do_action('gd_tax_meta_updated', false, true, $term_id, $post_type);
2084
+		}
2085
+
2086
+
2087
+	} // End Class
2088 2088
 
2089 2089
 endif; // End Check Class Exists
2090 2090
 
@@ -2094,67 +2094,67 @@  discard block
 block discarded – undo
2094 2094
 
2095 2095
 //get term meta field
2096 2096
 if (!function_exists('get_tax_meta')) {
2097
-    function get_tax_meta($term_id, $key, $multi = false, $post_type = '')
2098
-    {
2099
-
2100
-        if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2101
-            $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2102
-            $post_type = $taxObject->object_type[0];
2103
-        }
2104
-
2105
-        if($post_type=='post'){$post_type='';}
2106
-        if($post_type){$post_type = $post_type.'_';}
2107
-
2108
-        $t_id = (is_object($term_id)) ? $term_id->term_id : $term_id;
2109
-
2110
-        $m = get_option('tax_meta_' . $post_type  . $t_id);
2111
-        if (isset($m[$key])) {
2112
-            return $m[$key];
2113
-        } else {
2114
-            return '';
2115
-        }
2116
-    }
2097
+	function get_tax_meta($term_id, $key, $multi = false, $post_type = '')
2098
+	{
2099
+
2100
+		if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2101
+			$taxObject = get_taxonomy($_REQUEST['taxonomy']);
2102
+			$post_type = $taxObject->object_type[0];
2103
+		}
2104
+
2105
+		if($post_type=='post'){$post_type='';}
2106
+		if($post_type){$post_type = $post_type.'_';}
2107
+
2108
+		$t_id = (is_object($term_id)) ? $term_id->term_id : $term_id;
2109
+
2110
+		$m = get_option('tax_meta_' . $post_type  . $t_id);
2111
+		if (isset($m[$key])) {
2112
+			return $m[$key];
2113
+		} else {
2114
+			return '';
2115
+		}
2116
+	}
2117 2117
 }
2118 2118
 
2119 2119
 //delete meta
2120 2120
 if (!function_exists('delete_tax_meta')) {
2121
-    function delete_tax_meta($term_id, $key)
2122
-    {
2121
+	function delete_tax_meta($term_id, $key)
2122
+	{
2123 2123
 
2124
-        $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2125
-        $post_type = $taxObject->object_type[0];
2124
+		$taxObject = get_taxonomy($_REQUEST['taxonomy']);
2125
+		$post_type = $taxObject->object_type[0];
2126 2126
 
2127
-        if($post_type=='post'){$post_type='';}
2128
-        if($post_type){$post_type = $post_type.'_';}
2127
+		if($post_type=='post'){$post_type='';}
2128
+		if($post_type){$post_type = $post_type.'_';}
2129 2129
 
2130
-        $m = get_option('tax_meta_' . $post_type . $term_id);
2130
+		$m = get_option('tax_meta_' . $post_type . $term_id);
2131 2131
 
2132
-        if (isset($m[$key])) {
2133
-            unset($m[$key]);
2134
-        }
2135
-        update_option('tax_meta_' . $post_type  . $term_id, $m);
2136
-    }
2132
+		if (isset($m[$key])) {
2133
+			unset($m[$key]);
2134
+		}
2135
+		update_option('tax_meta_' . $post_type  . $term_id, $m);
2136
+	}
2137 2137
 }
2138 2138
 
2139 2139
 //update meta
2140 2140
 if (!function_exists('update_tax_meta')) {
2141
-    function update_tax_meta($term_id, $key, $value, $post_type = '')
2142
-    {
2141
+	function update_tax_meta($term_id, $key, $value, $post_type = '')
2142
+	{
2143 2143
 
2144
-        if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2145
-            $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2146
-            $post_type = $taxObject->object_type[0];
2147
-        }
2144
+		if (empty($post_type) && isset($_REQUEST['taxonomy'])) {
2145
+			$taxObject = get_taxonomy($_REQUEST['taxonomy']);
2146
+			$post_type = $taxObject->object_type[0];
2147
+		}
2148 2148
 
2149
-        if($post_type=='post'){$post_type='';}
2150
-        if($post_type){$post_type = $post_type.'_';}
2149
+		if($post_type=='post'){$post_type='';}
2150
+		if($post_type){$post_type = $post_type.'_';}
2151 2151
 
2152
-        $m = get_option('tax_meta_' . $post_type  . $term_id);
2152
+		$m = get_option('tax_meta_' . $post_type  . $term_id);
2153 2153
 
2154
-        $m[$key] = $value;
2155
-        update_option('tax_meta_' . $post_type . $term_id, $m);
2154
+		$m[$key] = $value;
2155
+		update_option('tax_meta_' . $post_type . $term_id, $m);
2156 2156
 
2157
-        /** This action is documented in geodirectory-functions/cat-meta-functions/Tax-meta-class.php */
2158
-        do_action('gd_tax_meta_updated', false, true, $term_id, $post_type);
2159
-    }
2157
+		/** This action is documented in geodirectory-functions/cat-meta-functions/Tax-meta-class.php */
2158
+		do_action('gd_tax_meta_updated', false, true, $term_id, $post_type);
2159
+	}
2160 2160
 }
2161 2161
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +96 added lines, -96 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@  discard block
 block discarded – undo
113 113
             $this->add_missed_values();
114 114
             if (isset($meta_box['use_with_theme']))
115 115
                 if ($meta_box['use_with_theme'] === true) {
116
-                    $this->SelfPath = get_stylesheet_directory_uri() . '/library/cat-meta';
116
+                    $this->SelfPath = get_stylesheet_directory_uri().'/library/cat-meta';
117 117
                 } elseif ($meta_box['use_with_theme'] === false) {
118 118
                     $this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
119 119
                 } else {
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
                 $li = "<li id='item_{$attachment_id}'>";
263 263
                 $li .= "<img src='{$attachment['url']}' alt='image_{$attachment_id}' />";
264 264
                 //$li 	.= "<a title='" . __( 'Delete this image' ) . "' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'>" . __( 'Delete' ) . "</a>";
265
-                $li .= "<a title='" . __('Remove this image', 'geodirectory') . "' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'><img src='" . $this->SelfPath . "/images/delete-16.png' alt='" . __('Remove', 'geodirectory') . "' /></a>";
265
+                $li .= "<a title='".__('Remove this image', 'geodirectory')."' class='at-delete-file' href='#' rel='{$nonce}|{$term_id}|{$id}|{$attachment_id}'><img src='".$this->SelfPath."/images/delete-16.png' alt='".__('Remove', 'geodirectory')."' /></a>";
266 266
                 $li .= "<input type='hidden' name='{$id}[]' value='{$attachment_id}' />";
267 267
                 $li .= "</li>";
268 268
                 $html .= $li;
@@ -335,7 +335,7 @@  discard block
 block discarded – undo
335 335
             $attachment_id = isset($_GET['attachment_id']) ? intval($_GET['attachment_id']) : 0;
336 336
             $ok = false;
337 337
             if (strpos($field_id, '[') === false) {
338
-                check_admin_referer("at-delete-mupload_" . urldecode($field_id));
338
+                check_admin_referer("at-delete-mupload_".urldecode($field_id));
339 339
                 if ($term_id > 0)
340 340
                     $this->delete_tax_meta($term_id, $field_id);
341 341
                 //$ok = wp_delete_attachment( $attachment_id );
@@ -423,8 +423,8 @@  discard block
 block discarded – undo
423 423
 
424 424
             if ($this->has_field('date') && $this->is_edit_page()) {
425 425
                 // Enqueu JQuery UI, use proper version.
426
-                wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/themes/base/jquery-ui.css');
427
-                wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/jquery-ui.min.js', array('jquery'));
426
+                wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/'.$this->get_jqueryui_ver().'/themes/base/jquery-ui.css');
427
+                wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/'.$this->get_jqueryui_ver().'/jquery-ui.min.js', array('jquery'));
428 428
             }
429 429
 
430 430
         }
@@ -441,8 +441,8 @@  discard block
 block discarded – undo
441 441
             if ($this->has_field('time') && $this->is_edit_page()) {
442 442
 
443 443
                 // Enqueu JQuery UI, use proper version.
444
-                wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/themes/base/jquery-ui.css', array(), false, true);
445
-                wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/' . $this->get_jqueryui_ver() . '/jquery-ui.min.js', array('jquery'), false, true);
444
+                wp_enqueue_style('tmc-jquery-ui-css', 'https://ajax.googleapis.com/ajax/libs/jqueryui/'.$this->get_jqueryui_ver().'/themes/base/jquery-ui.css', array(), false, true);
445
+                wp_enqueue_script('tmc-jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/'.$this->get_jqueryui_ver().'/jquery-ui.min.js', array('jquery'), false, true);
446 446
                 wp_enqueue_script('at-timepicker', 'https://github.com/trentrichardson/jQuery-Timepicker-Addon/raw/master/jquery-ui-timepicker-addon.js', array('tmc-jquery-ui'), false, true);
447 447
 
448 448
             }
@@ -462,13 +462,13 @@  discard block
 block discarded – undo
462 462
             if (!empty($this->_meta_box['pages'])) {
463 463
                 foreach ($this->_meta_box['pages'] as $page) {
464 464
                     //add fields to edit form
465
-                    add_action($page . '_edit_form_fields', array(&$this, 'show_edit_form'));
465
+                    add_action($page.'_edit_form_fields', array(&$this, 'show_edit_form'));
466 466
                     //add fields to add new form
467
-                    add_action($page . '_add_form_fields', array(&$this, 'show_new_form'));
467
+                    add_action($page.'_add_form_fields', array(&$this, 'show_new_form'));
468 468
                     // this saves the edit fields
469
-                    add_action('edited_' . $page, array(&$this, 'save'), 10, 2);
469
+                    add_action('edited_'.$page, array(&$this, 'save'), 10, 2);
470 470
                     // this saves the add fields
471
-                    add_action('created_' . $page, array(&$this, 'save'), 10, 2);
471
+                    add_action('created_'.$page, array(&$this, 'save'), 10, 2);
472 472
                 }
473 473
             }
474 474
 
@@ -517,13 +517,13 @@  discard block
 block discarded – undo
517 517
                     $meta = is_array($meta) ? array_map('esc_attr', $meta) : esc_attr($meta);
518 518
 
519 519
                 if ($field['validate_func']) {
520
-                    echo '<tr class="form-field form-required ' . $field['style'] . '">';
520
+                    echo '<tr class="form-field form-required '.$field['style'].'">';
521 521
                 } else {
522
-                    echo '<tr class="form-field ' . $field['style'] . '">';
522
+                    echo '<tr class="form-field '.$field['style'].'">';
523 523
                 }
524 524
 
525 525
                 // Call Separated methods for displaying each type of field.
526
-                call_user_func(array(&$this, 'show_field_' . $field['type']), $field, $meta);
526
+                call_user_func(array(&$this, 'show_field_'.$field['type']), $field, $meta);
527 527
                 echo '</tr>';
528 528
             }
529 529
             echo '</table>';
@@ -550,14 +550,14 @@  discard block
 block discarded – undo
550 550
                 foreach ($meta as $me) {
551 551
                     //for labling toggles
552 552
                     $mmm = $me[$field['fields'][0]['id']];
553
-                    echo '<div class="at-repater-block">' . $mmm . '<br/><table class="repeater-table" style="display: none;">';
553
+                    echo '<div class="at-repater-block">'.$mmm.'<br/><table class="repeater-table" style="display: none;">';
554 554
                     if ($field['inline']) {
555 555
                         echo '<tr class="at-inline" VALIGN="top">';
556 556
                     }
557 557
                     foreach ($field['fields'] as $f) {
558 558
                         //reset var $id for repeater
559 559
                         $id = '';
560
-                        $id = $field['id'] . '[' . $c . '][' . $f['id'] . ']';
560
+                        $id = $field['id'].'['.$c.']['.$f['id'].']';
561 561
                         $m = $me[$f['id']];
562 562
                         $m = ($m !== '') ? $m : $f['std'];
563 563
                         if ('image' != $f['type'] && $f['type'] != 'repeater')
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
                         if (!$field['inline']) {
568 568
                             echo '<tr>';
569 569
                         }
570
-                        call_user_func(array(&$this, 'show_field_' . $f['type']), $f, $m);
570
+                        call_user_func(array(&$this, 'show_field_'.$f['type']), $f, $m);
571 571
                         if (!$field['inline']) {
572 572
                             echo '</tr>';
573 573
                         }
@@ -578,18 +578,18 @@  discard block
 block discarded – undo
578 578
                     echo '</table>
579 579
 				<span class="at-re-toggle"><img src="';
580 580
                     if ($this->_Local_images) {
581
-                        echo $plugin_path . '/images/edit.png';
581
+                        echo $plugin_path.'/images/edit.png';
582 582
                     } else {
583 583
                         echo 'http://i.imgur.com/ka0E2.png';
584 584
                     }
585 585
                     echo '" alt="Edit" title="Edit"/></span> 
586 586
 				<img src="';
587 587
                     if ($this->_Local_images) {
588
-                        echo $plugin_path . '/images/remove.png';
588
+                        echo $plugin_path.'/images/remove.png';
589 589
                     } else {
590 590
                         echo 'http://i.imgur.com/g8Duj.png';
591 591
                     }
592
-                    echo '" alt="' . __('Remove', 'geodirectory') . '" title="' . __('Remove', 'geodirectory') . '" id="remove-' . $field['id'] . '"></div>';
592
+                    echo '" alt="'.__('Remove', 'geodirectory').'" title="'.__('Remove', 'geodirectory').'" id="remove-'.$field['id'].'"></div>';
593 593
                     $c = $c + 1;
594 594
 
595 595
                 }
@@ -598,11 +598,11 @@  discard block
 block discarded – undo
598 598
 
599 599
             echo '<img src="';
600 600
             if ($this->_Local_images) {
601
-                echo $plugin_path . '/images/add.png';
601
+                echo $plugin_path.'/images/add.png';
602 602
             } else {
603 603
                 echo 'http://i.imgur.com/w5Tuc.png';
604 604
             }
605
-            echo '" alt="' . __('Add', 'geodirectory') . '" title="' . __('Add', 'geodirectory') . '" id="add-' . $field['id'] . '"><br/></div>';
605
+            echo '" alt="'.__('Add', 'geodirectory').'" title="'.__('Add', 'geodirectory').'" id="add-'.$field['id'].'"><br/></div>';
606 606
 
607 607
             //create all fields once more for js function and catch with object buffer
608 608
             ob_start();
@@ -613,12 +613,12 @@  discard block
 block discarded – undo
613 613
             foreach ($field['fields'] as $f) {
614 614
                 //reset var $id for repeater
615 615
                 $id = '';
616
-                $id = $field['id'] . '[CurrentCounter][' . $f['id'] . ']';
616
+                $id = $field['id'].'[CurrentCounter]['.$f['id'].']';
617 617
                 $f['id'] = $id;
618 618
                 if (!$field['inline']) {
619 619
                     echo '<tr>';
620 620
                 }
621
-                call_user_func(array(&$this, 'show_field_' . $f['type']), $f, '');
621
+                call_user_func(array(&$this, 'show_field_'.$f['type']), $f, '');
622 622
                 if (!$field['inline']) {
623 623
                     echo '</tr>';
624 624
                 }
@@ -628,24 +628,24 @@  discard block
 block discarded – undo
628 628
             }
629 629
             echo '</table><img src="';
630 630
             if ($this->_Local_images) {
631
-                echo $plugin_path . '/images/remove.png';
631
+                echo $plugin_path.'/images/remove.png';
632 632
             } else {
633 633
                 echo 'http://i.imgur.com/g8Duj.png';
634 634
             }
635
-            echo '" alt="' . __('Remove', 'geodirectory') . '" title="' . __('Remove', 'geodirectory') . '" id="remove-' . $field['id'] . '"></div>';
636
-            $counter = 'countadd_' . $field['id'];
635
+            echo '" alt="'.__('Remove', 'geodirectory').'" title="'.__('Remove', 'geodirectory').'" id="remove-'.$field['id'].'"></div>';
636
+            $counter = 'countadd_'.$field['id'];
637 637
             $js_code = ob_get_clean();
638 638
             $js_code = str_replace("'", "\"", $js_code);
639
-            $js_code = str_replace("CurrentCounter", "' + " . $counter . " + '", $js_code);
639
+            $js_code = str_replace("CurrentCounter", "' + ".$counter." + '", $js_code);
640 640
             echo '<script>
641 641
 				jQuery(document).ready(function() {
642
-					var ' . $counter . ' = ' . $c . ';
643
-					jQuery("#add-' . $field['id'] . '").live(\'click\', function() {
644
-						' . $counter . ' = ' . $counter . ' + 1;
645
-						jQuery(this).before(\'' . $js_code . '\');						
642
+					var ' . $counter.' = '.$c.';
643
+					jQuery("#add-' . $field['id'].'").live(\'click\', function() {
644
+						' . $counter.' = '.$counter.' + 1;
645
+						jQuery(this).before(\'' . $js_code.'\');						
646 646
 						update_repeater_fields();
647 647
 					});
648
-        			jQuery("#remove-' . $field['id'] . '").live(\'click\', function() {
648
+        			jQuery("#remove-' . $field['id'].'").live(\'click\', function() {
649 649
             			jQuery(this).parent().remove();
650 650
         			});
651 651
     			});
@@ -772,7 +772,7 @@  discard block
 block discarded – undo
772 772
         public function show_field_paragraph($field)
773 773
         {
774 774
             //$this->show_field_begin( $field, $meta );
775
-            echo '<p>' . $field['value'] . '</p>';
775
+            echo '<p>'.$field['value'].'</p>';
776 776
             //$this->show_field_end( $field, $meta );
777 777
         }
778 778
 
@@ -803,12 +803,12 @@  discard block
 block discarded – undo
803 803
         {
804 804
 
805 805
             if (!is_array($meta))
806
-                $meta = (array)$meta;
806
+                $meta = (array) $meta;
807 807
 
808 808
             $this->show_field_begin($field, $meta);
809
-            echo "<select class='at-select' name='{$field['id']}" . ($field['multiple'] ? "[]' id='{$field['id']}' multiple='multiple'" : "'") . ">";
809
+            echo "<select class='at-select' name='{$field['id']}".($field['multiple'] ? "[]' id='{$field['id']}' multiple='multiple'" : "'").">";
810 810
             foreach ($field['options'] as $key => $value) {
811
-                echo "<option value='{$key}'" . selected(in_array($key, $meta), true, false) . ">{$value}</option>";
811
+                echo "<option value='{$key}'".selected(in_array($key, $meta), true, false).">{$value}</option>";
812 812
             }
813 813
             echo "</select>";
814 814
             $this->show_field_end($field, $meta);
@@ -827,11 +827,11 @@  discard block
 block discarded – undo
827 827
         {
828 828
 
829 829
             if (!is_array($meta))
830
-                $meta = (array)$meta;
830
+                $meta = (array) $meta;
831 831
 
832 832
             $this->show_field_begin($field, $meta);
833 833
             foreach ($field['options'] as $key => $value) {
834
-                echo "<input type='radio' class='at-radio' name='{$field['id']}' value='{$key}'" . checked(in_array($key, $meta), true, false) . " /> <span class='at-radio-label'>{$value}</span>";
834
+                echo "<input type='radio' class='at-radio' name='{$field['id']}' value='{$key}'".checked(in_array($key, $meta), true, false)." /> <span class='at-radio-label'>{$value}</span>";
835 835
             }
836 836
             $this->show_field_end($field, $meta);
837 837
         }
@@ -848,7 +848,7 @@  discard block
 block discarded – undo
848 848
         {
849 849
 
850 850
             $this->show_field_begin($field, $meta);
851
-            echo "<input type='checkbox' class='rw-checkbox' name='{$field['id']}' id='{$field['id']}'" . checked(!empty($meta), true, false) . " /> {$field['desc']}";
851
+            echo "<input type='checkbox' class='rw-checkbox' name='{$field['id']}' id='{$field['id']}'".checked(!empty($meta), true, false)." /> {$field['desc']}";
852 852
             $this->show_field_end($field, $meta);
853 853
         }
854 854
 
@@ -890,18 +890,18 @@  discard block
 block discarded – undo
890 890
             global $post;
891 891
 
892 892
             if (!is_array($meta))
893
-                $meta = (array)$meta;
893
+                $meta = (array) $meta;
894 894
 
895 895
             $this->show_field_begin($field, $meta);
896 896
             echo "{$field['desc']}<br />";
897 897
 
898 898
             if (!empty($meta)) {
899 899
                 $nonce = wp_create_nonce('at_ajax_delete');
900
-                echo '<div style="margin-bottom: 10px"><strong>' . __('Uploaded files', 'geodirectory') . '</strong></div>';
900
+                echo '<div style="margin-bottom: 10px"><strong>'.__('Uploaded files', 'geodirectory').'</strong></div>';
901 901
                 echo '<ol class="at-upload">';
902 902
                 foreach ($meta as $att) {
903 903
                     // if (wp_attachment_is_image($att)) continue; // what's image uploader for?
904
-                    echo "<li>" . wp_get_attachment_link($att, '', false, false, ' ') . " (<a class='at-delete-file' href='#' rel='{$nonce}|{$post->ID}|{$field['id']}|{$att}'>" . __('Remove', 'geodirectory') . "</a>)</li>";
904
+                    echo "<li>".wp_get_attachment_link($att, '', false, false, ' ')." (<a class='at-delete-file' href='#' rel='{$nonce}|{$post->ID}|{$field['id']}|{$att}'>".__('Remove', 'geodirectory')."</a>)</li>";
905 905
                 }
906 906
                 echo '</ol>';
907 907
             }
@@ -909,13 +909,13 @@  discard block
 block discarded – undo
909 909
             // show form upload
910 910
 
911 911
             echo "<div class='at-file-upload-label'>";
912
-            echo "<strong>" . __('Upload new files', 'geodirectory') . "</strong>";
912
+            echo "<strong>".__('Upload new files', 'geodirectory')."</strong>";
913 913
             echo "</div>";
914 914
             echo "<div class='new-files'>";
915 915
             echo "<div class='file-input'>";
916 916
             echo "<input type='file' name='{$field['id']}[]' />";
917 917
             echo "</div><!-- End .file-input -->";
918
-            echo "<a class='at-add-file button' href='#'>" . __('Add more files', 'geodirectory') . "</a>";
918
+            echo "<a class='at-add-file button' href='#'>".__('Add more files', 'geodirectory')."</a>";
919 919
             echo "</div><!-- End .new-files -->";
920 920
             echo "</td>";
921 921
             $this->show_field_end($field, $meta);
@@ -932,7 +932,7 @@  discard block
 block discarded – undo
932 932
         public function show_field_image($field, $meta)
933 933
         {
934 934
             $this->show_field_begin($field, $meta);
935
-            $html = wp_nonce_field("at-delete-mupload_{$field['id']}", "nonce-delete-mupload_" . $field['id'], false, false);
935
+            $html = wp_nonce_field("at-delete-mupload_{$field['id']}", "nonce-delete-mupload_".$field['id'], false, false);
936 936
             if (is_array($meta)) {
937 937
                 if (isset($meta[0]) && is_array($meta[0]))
938 938
                     $meta = $meta[0];
@@ -958,19 +958,19 @@  discard block
 block discarded – undo
958 958
                 }
959 959
                 $sub_dir = str_replace($uploads['baseurl'], '', $sub_dir);
960 960
 
961
-                $uploads_url = $uploads_baseurl . $sub_dir;
961
+                $uploads_url = $uploads_baseurl.$sub_dir;
962 962
 
963
-                $meta['src'] = $uploads_url . '/' . $file_name;
963
+                $meta['src'] = $uploads_url.'/'.$file_name;
964 964
 
965
-                $html .= "<span class='mupload_img_holder'><img src='" . $meta['src'] . "' style='max-height: 150px;max-width: 150px;' /></span>";
966
-                $html .= "<input type='hidden' name='" . $field['id'] . "[id]' id='" . $field['id'] . "[id]' value='" . $meta['id'] . "' />";
967
-                $html .= "<input type='hidden' class='" . $field['id'] . "[src]' name='" . $field['id'] . "[src]' id='" . $field['id'] . "[src]' value='" . $meta['src'] . "' />";
968
-                $html .= "<input class='at-delete_image_button' type='button' rel='" . $field['id'] . "' value='" . __('Remove Image', 'geodirectory') . "' />";
965
+                $html .= "<span class='mupload_img_holder'><img src='".$meta['src']."' style='max-height: 150px;max-width: 150px;' /></span>";
966
+                $html .= "<input type='hidden' name='".$field['id']."[id]' id='".$field['id']."[id]' value='".$meta['id']."' />";
967
+                $html .= "<input type='hidden' class='".$field['id']."[src]' name='".$field['id']."[src]' id='".$field['id']."[src]' value='".$meta['src']."' />";
968
+                $html .= "<input class='at-delete_image_button' type='button' rel='".$field['id']."' value='".__('Remove Image', 'geodirectory')."' />";
969 969
             } else {
970 970
                 $html .= "<span class='mupload_img_holder'></span>";
971
-                $html .= "<input type='hidden' name='" . $field['id'] . "[id]' id='" . $field['id'] . "[id]' value='' />";
972
-                $html .= "<input class='" . $field['id'] . "[src]' style='position:absolute;left:-500px;width:50px;' type='text' name='" . $field['id'] . "[src]' id='" . $field['id'] . "[src]' value='' />";
973
-                $html .= "<input class='at-upload_image_button' type='button' rel='" . $field['id'] . "' value='" . __('Upload Image', 'geodirectory') . "' />";
971
+                $html .= "<input type='hidden' name='".$field['id']."[id]' id='".$field['id']."[id]' value='' />";
972
+                $html .= "<input class='".$field['id']."[src]' style='position:absolute;left:-500px;width:50px;' type='text' name='".$field['id']."[src]' id='".$field['id']."[src]' value='' />";
973
+                $html .= "<input class='at-upload_image_button' type='button' rel='".$field['id']."' value='".__('Upload Image', 'geodirectory')."' />";
974 974
             }
975 975
             echo $html;
976 976
             $this->show_field_end($field, $meta);
@@ -994,7 +994,7 @@  discard block
 block discarded – undo
994 994
 
995 995
             echo "<input class='at-color' type='text' name='{$field['id']}' id='{$field['id']}' value='{$meta}' size='8' />";
996 996
             //	echo "<a href='#' class='at-color-select button' rel='{$field['id']}'>" . __( 'Select a color' ) . "</a>";
997
-            echo "<input type='button' class='at-color-select button' rel='{$field['id']}' value='" . __('Select a color', 'geodirectory') . "'/>";
997
+            echo "<input type='button' class='at-color-select button' rel='{$field['id']}' value='".__('Select a color', 'geodirectory')."'/>";
998 998
             echo "<div style='display:none' class='at-color-picker' rel='{$field['id']}'></div>";
999 999
             $this->show_field_end($field, $meta);
1000 1000
 
@@ -1012,14 +1012,14 @@  discard block
 block discarded – undo
1012 1012
         {
1013 1013
 
1014 1014
             if (!is_array($meta))
1015
-                $meta = (array)$meta;
1015
+                $meta = (array) $meta;
1016 1016
 
1017 1017
             $this->show_field_begin($field, $meta);
1018 1018
 
1019 1019
             $html = array();
1020 1020
 
1021 1021
             foreach ($field['options'] as $key => $value) {
1022
-                $html[] = "<input type='checkbox' class='at-checkbox_list' name='{$field['id']}[]' value='{$key}'" . checked(in_array($key, $meta), true, false) . " /> {$value}";
1022
+                $html[] = "<input type='checkbox' class='at-checkbox_list' name='{$field['id']}[]' value='{$key}'".checked(in_array($key, $meta), true, false)." /> {$value}";
1023 1023
             }
1024 1024
 
1025 1025
             echo implode('<br />', $html);
@@ -1072,7 +1072,7 @@  discard block
 block discarded – undo
1072 1072
         {
1073 1073
             global $post;
1074 1074
 
1075
-            if (!is_array($meta)) $meta = (array)$meta;
1075
+            if (!is_array($meta)) $meta = (array) $meta;
1076 1076
             $this->show_field_begin($field, $meta);
1077 1077
             $options = $field['options'];
1078 1078
             $posts = get_posts($options['args']);
@@ -1080,13 +1080,13 @@  discard block
 block discarded – undo
1080 1080
             // checkbox_list
1081 1081
             if ('checkbox_list' == $options['type']) {
1082 1082
                 foreach ($posts as $p) {
1083
-                    echo "<input type='checkbox' name='{$field['id']}[]' value='$p->ID'" . checked(in_array($p->ID, $meta), true, false) . " /> $p->post_title<br/>";
1083
+                    echo "<input type='checkbox' name='{$field['id']}[]' value='$p->ID'".checked(in_array($p->ID, $meta), true, false)." /> $p->post_title<br/>";
1084 1084
                 }
1085 1085
             } // select
1086 1086
             else {
1087
-                echo "<select name='{$field['id']}" . ($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'") . ">";
1087
+                echo "<select name='{$field['id']}".($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'").">";
1088 1088
                 foreach ($posts as $p) {
1089
-                    echo "<option value='$p->ID'" . selected(in_array($p->ID, $meta), true, false) . ">$p->post_title</option>";
1089
+                    echo "<option value='$p->ID'".selected(in_array($p->ID, $meta), true, false).">$p->post_title</option>";
1090 1090
                 }
1091 1091
                 echo "</select>";
1092 1092
             }
@@ -1110,7 +1110,7 @@  discard block
 block discarded – undo
1110 1110
         {
1111 1111
             global $post;
1112 1112
 
1113
-            if (!is_array($meta)) $meta = (array)$meta;
1113
+            if (!is_array($meta)) $meta = (array) $meta;
1114 1114
             $this->show_field_begin($field, $meta);
1115 1115
             $options = $field['options'];
1116 1116
             $terms = get_terms($options['taxonomy'], $options['args']);
@@ -1118,13 +1118,13 @@  discard block
 block discarded – undo
1118 1118
             // checkbox_list
1119 1119
             if ('checkbox_list' == $options['type']) {
1120 1120
                 foreach ($terms as $term) {
1121
-                    echo "<input type='checkbox' name='{$field['id']}[]' value='$term->slug'" . checked(in_array($term->slug, $meta), true, false) . " /> $term->name<br/>";
1121
+                    echo "<input type='checkbox' name='{$field['id']}[]' value='$term->slug'".checked(in_array($term->slug, $meta), true, false)." /> $term->name<br/>";
1122 1122
                 }
1123 1123
             } // select
1124 1124
             else {
1125
-                echo "<select name='{$field['id']}" . ($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'") . ">";
1125
+                echo "<select name='{$field['id']}".($field['multiple'] ? "[]' multiple='multiple' style='height:auto'" : "'").">";
1126 1126
                 foreach ($terms as $term) {
1127
-                    echo "<option value='$term->slug'" . selected(in_array($term->slug, $meta), true, false) . ">$term->name</option>";
1127
+                    echo "<option value='$term->slug'".selected(in_array($term->slug, $meta), true, false).">$term->name</option>";
1128 1128
                 }
1129 1129
                 echo "</select>";
1130 1130
             }
@@ -1180,7 +1180,7 @@  discard block
 block discarded – undo
1180 1180
 
1181 1181
                     //$old_filename = $upload_dir['path'].'/'.$old_filename;
1182 1182
 
1183
-                    $new_filename = $upload_dir['path'] . '/' . 'cat_icon_' . $term_id . '.png';
1183
+                    $new_filename = $upload_dir['path'].'/'.'cat_icon_'.$term_id.'.png';
1184 1184
 
1185 1185
                     /*rename($old_filename, $new_filename);
1186 1186
 				
@@ -1222,9 +1222,9 @@  discard block
 block discarded – undo
1222 1222
                 if ($type != "paragraph") {
1223 1223
 
1224 1224
                     // Call defined method to save meta value, if there's no methods, call common one.
1225
-                    $save_func = 'save_field_' . $type;
1225
+                    $save_func = 'save_field_'.$type;
1226 1226
                     if (method_exists($this, $save_func)) {
1227
-                        call_user_func(array(&$this, 'save_field_' . $type), $term_id, $field, $old, $new);
1227
+                        call_user_func(array(&$this, 'save_field_'.$type), $term_id, $field, $old, $new);
1228 1228
                     } else {
1229 1229
                         $this->save_field($term_id, $field, $old, $new);
1230 1230
                     }
@@ -1369,7 +1369,7 @@  discard block
 block discarded – undo
1369 1369
                 if (!is_wp_error($id)) {
1370 1370
 
1371 1371
                     wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
1372
-                    add_post_meta($term_id, $name, $id, false);    // save file's url in meta fields
1372
+                    add_post_meta($term_id, $name, $id, false); // save file's url in meta fields
1373 1373
 
1374 1374
                 } // End if
1375 1375
 
@@ -1414,7 +1414,7 @@  discard block
 block discarded – undo
1414 1414
                 if (!is_wp_error($id)) {
1415 1415
 
1416 1416
                     wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename));
1417
-                    return $id;    // return file's url in meta fields
1417
+                    return $id; // return file's url in meta fields
1418 1418
                 } // End if
1419 1419
             } // End foreach
1420 1420
         }
@@ -1429,9 +1429,9 @@  discard block
 block discarded – undo
1429 1429
         {
1430 1430
 
1431 1431
             // Default values for meta box
1432
-            $this->_meta_box = array_merge(array('context' => 'normal', 'priority' => 'high', 'pages' => array('post')), (array)$this->_meta_box);
1432
+            $this->_meta_box = array_merge(array('context' => 'normal', 'priority' => 'high', 'pages' => array('post')), (array) $this->_meta_box);
1433 1433
 
1434
-            if(is_array($this->_fields)) {
1434
+            if (is_array($this->_fields)) {
1435 1435
                 // Default values for fields
1436 1436
                 foreach ($this->_fields as &$field) {
1437 1437
                     $multiple = in_array($field['type'], array('checkbox_list', 'file', 'image'));
@@ -1451,7 +1451,7 @@  discard block
 block discarded – undo
1451 1451
          */
1452 1452
         public function has_field($type)
1453 1453
         {
1454
-            if(is_array($this->_fields)) {
1454
+            if (is_array($this->_fields)) {
1455 1455
                 foreach ($this->_fields as $field) {
1456 1456
                     if ($type == $field['type'])
1457 1457
                         return true;
@@ -2019,12 +2019,12 @@  discard block
 block discarded – undo
2019 2019
                 $post_type = $taxObject->object_type[0];
2020 2020
             }
2021 2021
 
2022
-            if($post_type=='post'){$post_type='';}
2023
-            if($post_type){$post_type = $post_type.'_';}
2022
+            if ($post_type == 'post') {$post_type = ''; }
2023
+            if ($post_type) {$post_type = $post_type.'_'; }
2024 2024
 
2025 2025
             $t_id = (is_object($term_id)) ? $term_id->term_id : $term_id;
2026 2026
 
2027
-            $m = get_option('tax_meta_' . $post_type  . $t_id);
2027
+            $m = get_option('tax_meta_'.$post_type.$t_id);
2028 2028
             if (isset($m[$key])) {
2029 2029
                 return $m[$key];
2030 2030
             } else {
@@ -2041,15 +2041,15 @@  discard block
 block discarded – undo
2041 2041
                 $post_type = $taxObject->object_type[0];
2042 2042
             }
2043 2043
 
2044
-            if($post_type=='post'){$post_type='';}
2045
-            if($post_type){$post_type = $post_type.'_';}
2044
+            if ($post_type == 'post') {$post_type = ''; }
2045
+            if ($post_type) {$post_type = $post_type.'_'; }
2046 2046
 
2047
-            $m = get_option('tax_meta_' . $post_type  . $term_id);
2047
+            $m = get_option('tax_meta_'.$post_type.$term_id);
2048 2048
 
2049 2049
             if (isset($m[$key])) {
2050 2050
                 unset($m[$key]);
2051 2051
             }
2052
-            update_option('tax_meta_' . $post_type  . $term_id, $m);
2052
+            update_option('tax_meta_'.$post_type.$term_id, $m);
2053 2053
         }
2054 2054
 
2055 2055
         //update meta
@@ -2061,13 +2061,13 @@  discard block
 block discarded – undo
2061 2061
                 $post_type = $taxObject->object_type[0];
2062 2062
             }
2063 2063
 
2064
-            if($post_type=='post'){$post_type='';}
2065
-            if($post_type){$post_type = $post_type.'_';}
2064
+            if ($post_type == 'post') {$post_type = ''; }
2065
+            if ($post_type) {$post_type = $post_type.'_'; }
2066 2066
 
2067
-            $m = get_option('tax_meta_' . $post_type  . $term_id);
2067
+            $m = get_option('tax_meta_'.$post_type.$term_id);
2068 2068
 
2069 2069
             $m[$key] = $value;
2070
-            update_option('tax_meta_' . $post_type  . $term_id, $m);
2070
+            update_option('tax_meta_'.$post_type.$term_id, $m);
2071 2071
 
2072 2072
             /**
2073 2073
              * Called after the tax meta is updated.
@@ -2102,12 +2102,12 @@  discard block
 block discarded – undo
2102 2102
             $post_type = $taxObject->object_type[0];
2103 2103
         }
2104 2104
 
2105
-        if($post_type=='post'){$post_type='';}
2106
-        if($post_type){$post_type = $post_type.'_';}
2105
+        if ($post_type == 'post') {$post_type = ''; }
2106
+        if ($post_type) {$post_type = $post_type.'_'; }
2107 2107
 
2108 2108
         $t_id = (is_object($term_id)) ? $term_id->term_id : $term_id;
2109 2109
 
2110
-        $m = get_option('tax_meta_' . $post_type  . $t_id);
2110
+        $m = get_option('tax_meta_'.$post_type.$t_id);
2111 2111
         if (isset($m[$key])) {
2112 2112
             return $m[$key];
2113 2113
         } else {
@@ -2124,15 +2124,15 @@  discard block
 block discarded – undo
2124 2124
         $taxObject = get_taxonomy($_REQUEST['taxonomy']);
2125 2125
         $post_type = $taxObject->object_type[0];
2126 2126
 
2127
-        if($post_type=='post'){$post_type='';}
2128
-        if($post_type){$post_type = $post_type.'_';}
2127
+        if ($post_type == 'post') {$post_type = ''; }
2128
+        if ($post_type) {$post_type = $post_type.'_'; }
2129 2129
 
2130
-        $m = get_option('tax_meta_' . $post_type . $term_id);
2130
+        $m = get_option('tax_meta_'.$post_type.$term_id);
2131 2131
 
2132 2132
         if (isset($m[$key])) {
2133 2133
             unset($m[$key]);
2134 2134
         }
2135
-        update_option('tax_meta_' . $post_type  . $term_id, $m);
2135
+        update_option('tax_meta_'.$post_type.$term_id, $m);
2136 2136
     }
2137 2137
 }
2138 2138
 
@@ -2146,13 +2146,13 @@  discard block
 block discarded – undo
2146 2146
             $post_type = $taxObject->object_type[0];
2147 2147
         }
2148 2148
 
2149
-        if($post_type=='post'){$post_type='';}
2150
-        if($post_type){$post_type = $post_type.'_';}
2149
+        if ($post_type == 'post') {$post_type = ''; }
2150
+        if ($post_type) {$post_type = $post_type.'_'; }
2151 2151
 
2152
-        $m = get_option('tax_meta_' . $post_type  . $term_id);
2152
+        $m = get_option('tax_meta_'.$post_type.$term_id);
2153 2153
 
2154 2154
         $m[$key] = $value;
2155
-        update_option('tax_meta_' . $post_type . $term_id, $m);
2155
+        update_option('tax_meta_'.$post_type.$term_id, $m);
2156 2156
 
2157 2157
         /** This action is documented in geodirectory-functions/cat-meta-functions/Tax-meta-class.php */
2158 2158
         do_action('gd_tax_meta_updated', false, true, $term_id, $post_type);
Please login to merge, or discard this patch.
Braces   +106 added lines, -69 removed lines patch added patch discarded remove patch
@@ -102,8 +102,9 @@  discard block
 block discarded – undo
102 102
         {
103 103
 
104 104
             // If we are not in admin area exit.
105
-            if (!is_admin())
106
-                return;
105
+            if (!is_admin()) {
106
+                            return;
107
+            }
107 108
 
108 109
             // Assign meta box values to local variables and add it's missed values.
109 110
             $this->_meta_box = $meta_box;
@@ -111,15 +112,15 @@  discard block
 block discarded – undo
111 112
             $this->_fields = &$this->_meta_box['fields'];
112 113
             $this->_Local_images = (isset($meta_box['local_images'])) ? true : false;
113 114
             $this->add_missed_values();
114
-            if (isset($meta_box['use_with_theme']))
115
-                if ($meta_box['use_with_theme'] === true) {
115
+            if (isset($meta_box['use_with_theme'])) {
116
+                            if ($meta_box['use_with_theme'] === true) {
116 117
                     $this->SelfPath = get_stylesheet_directory_uri() . '/library/cat-meta';
118
+            }
117 119
                 } elseif ($meta_box['use_with_theme'] === false) {
118 120
                     $this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
119 121
                 } else {
120 122
                     $this->SelfPath = $meta_box['use_with_theme'];
121
-                }
122
-            else {
123
+                } else {
123 124
                 $this->SelfPath = plugins_url('cat-meta-functions', plugin_basename(dirname(__FILE__)));
124 125
             }
125 126
 
@@ -190,8 +191,9 @@  discard block
 block discarded – undo
190 191
         {
191 192
 
192 193
             // Check if the field is an image or file. If not, return.
193
-            if (!$this->has_field('image') && !$this->has_field('file'))
194
-                return;
194
+            if (!$this->has_field('image') && !$this->has_field('file')) {
195
+                            return;
196
+            }
195 197
 
196 198
 
197 199
             add_action('wp_enqueue_scripts', array(&$this, 'enqueue_tax_meta_scripts'), 100);
@@ -235,8 +237,9 @@  discard block
 block discarded – undo
235 237
         {
236 238
 
237 239
             // If post variables are empty, return.
238
-            if (!isset($_POST['at-insert']) || empty($_POST['attachments']))
239
-                return;
240
+            if (!isset($_POST['at-insert']) || empty($_POST['attachments'])) {
241
+                            return;
242
+            }
240 243
 
241 244
             // Security Check
242 245
             check_admin_referer('media-form');
@@ -256,8 +259,9 @@  discard block
 block discarded – undo
256 259
                 $attachment = stripslashes_deep($attachment);
257 260
 
258 261
                 // If not selected or url is empty, continue in loop.
259
-                if (empty($attachment['selected']) || empty($attachment['url']))
260
-                    continue;
262
+                if (empty($attachment['selected']) || empty($attachment['url'])) {
263
+                                    continue;
264
+                }
261 265
 
262 266
                 $li = "<li id='item_{$attachment_id}'>";
263 267
                 $li .= "<img src='{$attachment['url']}' alt='image_{$attachment_id}' />";
@@ -308,13 +312,15 @@  discard block
 block discarded – undo
308 312
 
309 313
 
310 314
             // If data is not set, die.
311
-            if (!isset($_POST['data']))
312
-                die();
315
+            if (!isset($_POST['data'])) {
316
+                            die();
317
+            }
313 318
 
314 319
             list($nonce, $term_id, $key, $attach_id) = explode('|', $_POST['data']);
315 320
 
316
-            if (!wp_verify_nonce($nonce, 'at_ajax_delete'))
317
-                die('1');
321
+            if (!wp_verify_nonce($nonce, 'at_ajax_delete')) {
322
+                            die('1');
323
+            }
318 324
 
319 325
             $this->delete_tax_meta($term_id, $key, $attach_id);
320 326
 
@@ -336,8 +342,9 @@  discard block
 block discarded – undo
336 342
             $ok = false;
337 343
             if (strpos($field_id, '[') === false) {
338 344
                 check_admin_referer("at-delete-mupload_" . urldecode($field_id));
339
-                if ($term_id > 0)
340
-                    $this->delete_tax_meta($term_id, $field_id);
345
+                if ($term_id > 0) {
346
+                                    $this->delete_tax_meta($term_id, $field_id);
347
+                }
341 348
                 //$ok = wp_delete_attachment( $attachment_id );
342 349
                 $ok = 1;
343 350
             } else {
@@ -349,8 +356,9 @@  discard block
 block discarded – undo
349 356
                 $saved = $this->get_tax_meta($term_id, $f[0], true);
350 357
                 if (isset($saved[$f[1]][$f[2]])) {
351 358
                     unset($saved[$f[1]][$f[2]]);
352
-                    if ($term_id > 0)
353
-                        update_post_meta($term_id, $f[0], $saved);
359
+                    if ($term_id > 0) {
360
+                                            update_post_meta($term_id, $f[0], $saved);
361
+                    }
354 362
                     //$ok = wp_delete_attachment( $attachment_id );
355 363
                     $ok = 1;
356 364
                 }
@@ -375,13 +383,15 @@  discard block
 block discarded – undo
375 383
         public function reorder_images()
376 384
         {
377 385
 
378
-            if (!isset($_POST['data']))
379
-                die();
386
+            if (!isset($_POST['data'])) {
387
+                            die();
388
+            }
380 389
 
381 390
             list($order, $term_id, $key, $nonce) = explode('|', $_POST['data']);
382 391
 
383
-            if (!wp_verify_nonce($nonce, 'at_ajax_reorder'))
384
-                die('1');
392
+            if (!wp_verify_nonce($nonce, 'at_ajax_reorder')) {
393
+                            die('1');
394
+            }
385 395
 
386 396
             parse_str($order, $items);
387 397
             $items = $items['item'];
@@ -513,8 +523,9 @@  discard block
 block discarded – undo
513 523
             foreach ($this->_fields as $field) {
514 524
                 $meta = $this->get_tax_meta($term_id, $field['id'], !$field['multiple']);
515 525
                 $meta = ($meta !== '') ? $meta : $field['std'];
516
-                if ('image' != $field['type'] && $field['type'] != 'repeater')
517
-                    $meta = is_array($meta) ? array_map('esc_attr', $meta) : esc_attr($meta);
526
+                if ('image' != $field['type'] && $field['type'] != 'repeater') {
527
+                                    $meta = is_array($meta) ? array_map('esc_attr', $meta) : esc_attr($meta);
528
+                }
518 529
 
519 530
                 if ($field['validate_func']) {
520 531
                     echo '<tr class="form-field form-required ' . $field['style'] . '">';
@@ -560,8 +571,9 @@  discard block
 block discarded – undo
560 571
                         $id = $field['id'] . '[' . $c . '][' . $f['id'] . ']';
561 572
                         $m = $me[$f['id']];
562 573
                         $m = ($m !== '') ? $m : $f['std'];
563
-                        if ('image' != $f['type'] && $f['type'] != 'repeater')
564
-                            $m = is_array($m) ? array_map('esc_attr', $m) : esc_attr($m);
574
+                        if ('image' != $f['type'] && $f['type'] != 'repeater') {
575
+                                                    $m = is_array($m) ? array_map('esc_attr', $m) : esc_attr($m);
576
+                        }
565 577
                         //set new id for field in array format
566 578
                         $f['id'] = $id;
567 579
                         if (!$field['inline']) {
@@ -802,8 +814,9 @@  discard block
 block discarded – undo
802 814
         public function show_field_select($field, $meta)
803 815
         {
804 816
 
805
-            if (!is_array($meta))
806
-                $meta = (array)$meta;
817
+            if (!is_array($meta)) {
818
+                            $meta = (array)$meta;
819
+            }
807 820
 
808 821
             $this->show_field_begin($field, $meta);
809 822
             echo "<select class='at-select' name='{$field['id']}" . ($field['multiple'] ? "[]' id='{$field['id']}' multiple='multiple'" : "'") . ">";
@@ -826,8 +839,9 @@  discard block
 block discarded – undo
826 839
         public function show_field_radio($field, $meta)
827 840
         {
828 841
 
829
-            if (!is_array($meta))
830
-                $meta = (array)$meta;
842
+            if (!is_array($meta)) {
843
+                            $meta = (array)$meta;
844
+            }
831 845
 
832 846
             $this->show_field_begin($field, $meta);
833 847
             foreach ($field['options'] as $key => $value) {
@@ -889,8 +903,9 @@  discard block
 block discarded – undo
889 903
 
890 904
             global $post;
891 905
 
892
-            if (!is_array($meta))
893
-                $meta = (array)$meta;
906
+            if (!is_array($meta)) {
907
+                            $meta = (array)$meta;
908
+            }
894 909
 
895 910
             $this->show_field_begin($field, $meta);
896 911
             echo "{$field['desc']}<br />";
@@ -934,16 +949,18 @@  discard block
 block discarded – undo
934 949
             $this->show_field_begin($field, $meta);
935 950
             $html = wp_nonce_field("at-delete-mupload_{$field['id']}", "nonce-delete-mupload_" . $field['id'], false, false);
936 951
             if (is_array($meta)) {
937
-                if (isset($meta[0]) && is_array($meta[0]))
938
-                    $meta = $meta[0];
952
+                if (isset($meta[0]) && is_array($meta[0])) {
953
+                                    $meta = $meta[0];
954
+                }
939 955
             }
940 956
 
941 957
             $uploads = wp_upload_dir();
942 958
             if (is_array($meta) && isset($meta['src']) && $meta['src'] != '') {
943 959
                 $file_info = pathinfo($meta['src']);
944 960
 
945
-                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..')
946
-                    $sub_dir = $file_info['dirname'];
961
+                if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
962
+                                    $sub_dir = $file_info['dirname'];
963
+                }
947 964
 
948 965
                 $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
949 966
                 $uploads_baseurl = $uploads['baseurl'];
@@ -987,8 +1004,9 @@  discard block
 block discarded – undo
987 1004
         public function show_field_color($field, $meta)
988 1005
         {
989 1006
 
990
-            if (empty($meta))
991
-                $meta = '#';
1007
+            if (empty($meta)) {
1008
+                            $meta = '#';
1009
+            }
992 1010
 
993 1011
             $this->show_field_begin($field, $meta);
994 1012
 
@@ -1011,8 +1029,9 @@  discard block
 block discarded – undo
1011 1029
         public function show_field_checkbox_list($field, $meta)
1012 1030
         {
1013 1031
 
1014
-            if (!is_array($meta))
1015
-                $meta = (array)$meta;
1032
+            if (!is_array($meta)) {
1033
+                            $meta = (array)$meta;
1034
+            }
1016 1035
 
1017 1036
             $this->show_field_begin($field, $meta);
1018 1037
 
@@ -1072,7 +1091,9 @@  discard block
 block discarded – undo
1072 1091
         {
1073 1092
             global $post;
1074 1093
 
1075
-            if (!is_array($meta)) $meta = (array)$meta;
1094
+            if (!is_array($meta)) {
1095
+            	$meta = (array)$meta;
1096
+            }
1076 1097
             $this->show_field_begin($field, $meta);
1077 1098
             $options = $field['options'];
1078 1099
             $posts = get_posts($options['args']);
@@ -1110,7 +1131,9 @@  discard block
 block discarded – undo
1110 1131
         {
1111 1132
             global $post;
1112 1133
 
1113
-            if (!is_array($meta)) $meta = (array)$meta;
1134
+            if (!is_array($meta)) {
1135
+            	$meta = (array)$meta;
1136
+            }
1114 1137
             $this->show_field_begin($field, $meta);
1115 1138
             $options = $field['options'];
1116 1139
             $terms = get_terms($options['taxonomy'], $options['args']);
@@ -1144,17 +1167,20 @@  discard block
 block discarded – undo
1144 1167
         {
1145 1168
 
1146 1169
             $taxnow = '';
1147
-            if (isset($_POST['taxonomy']))
1148
-                $taxnow = $_POST['taxonomy'];
1170
+            if (isset($_POST['taxonomy'])) {
1171
+                            $taxnow = $_POST['taxonomy'];
1172
+            }
1149 1173
 
1150 1174
             if (!isset($term_id)                                                        // Check Revision
1151 1175
                 || (!in_array($taxnow, $this->_meta_box['pages']))                            // Check if current taxonomy type is supported.
1152 1176
                 || (!check_admin_referer(basename(__FILE__), 'tax_meta_class_nonce'))        // Check nonce - Security
1153 1177
                 || (!current_user_can('manage_categories'))
1154
-            )                                // Check permission
1178
+            ) {
1179
+            	// Check permission
1155 1180
             {
1156 1181
                 return $term_id;
1157 1182
             }
1183
+            }
1158 1184
 
1159 1185
 
1160 1186
             foreach ($this->_fields as $field) {
@@ -1248,8 +1274,9 @@  discard block
 block discarded – undo
1248 1274
         {
1249 1275
             $name = $field['id'];
1250 1276
             $this->delete_tax_meta($term_id, $name);
1251
-            if ($new === '' || $new === array())
1252
-                return;
1277
+            if ($new === '' || $new === array()) {
1278
+                            return;
1279
+            }
1253 1280
 
1254 1281
             $this->update_tax_meta($term_id, $name, $new);
1255 1282
         }
@@ -1269,8 +1296,9 @@  discard block
 block discarded – undo
1269 1296
             $name = $field['id'];
1270 1297
 
1271 1298
             $this->delete_tax_meta($term_id, $name);
1272
-            if ($new === '' || $new === array() || $new['id'] == '' || $new['src'] == '')
1273
-                return;
1299
+            if ($new === '' || $new === array() || $new['id'] == '' || $new['src'] == '') {
1300
+                            return;
1301
+            }
1274 1302
 
1275 1303
             $this->update_tax_meta($term_id, $name, $new);
1276 1304
         }
@@ -1317,8 +1345,9 @@  discard block
 block discarded – undo
1317 1345
                                 break;
1318 1346
                         }
1319 1347
                     }
1320
-                    if (!$this->is_array_empty($n))
1321
-                        $temp[] = $n;
1348
+                    if (!$this->is_array_empty($n)) {
1349
+                                            $temp[] = $n;
1350
+                    }
1322 1351
                 }
1323 1352
                 if (isset($temp) && count($temp) > 0 && !$this->is_array_empty($temp)) {
1324 1353
                     $this->update_tax_meta($term_id, $field['id'], $temp);
@@ -1346,14 +1375,16 @@  discard block
 block discarded – undo
1346 1375
         {
1347 1376
 
1348 1377
             $name = $field['id'];
1349
-            if (empty($_FILES[$name]))
1350
-                return;
1378
+            if (empty($_FILES[$name])) {
1379
+                            return;
1380
+            }
1351 1381
             $this->fix_file_array($_FILES[$name]);
1352 1382
             foreach ($_FILES[$name] as $position => $fileitem) {
1353 1383
 
1354 1384
                 $file = wp_handle_upload($fileitem, array('test_form' => false));
1355
-                if (empty($file['file']))
1356
-                    continue;
1385
+                if (empty($file['file'])) {
1386
+                                    continue;
1387
+                }
1357 1388
                 $filename = $file['file'];
1358 1389
 
1359 1390
                 $attachment = array(
@@ -1391,14 +1422,16 @@  discard block
 block discarded – undo
1391 1422
         {
1392 1423
 
1393 1424
             $name = $field['id'];
1394
-            if (empty($_FILES[$name]))
1395
-                return;
1425
+            if (empty($_FILES[$name])) {
1426
+                            return;
1427
+            }
1396 1428
             $this->fix_file_array($_FILES[$name]);
1397 1429
             foreach ($_FILES[$name] as $position => $fileitem) {
1398 1430
 
1399 1431
                 $file = wp_handle_upload($fileitem, array('test_form' => false));
1400
-                if (empty($file['file']))
1401
-                    continue;
1432
+                if (empty($file['file'])) {
1433
+                                    continue;
1434
+                }
1402 1435
                 $filename = $file['file'];
1403 1436
 
1404 1437
                 $attachment = array(
@@ -1453,8 +1486,9 @@  discard block
 block discarded – undo
1453 1486
         {
1454 1487
             if(is_array($this->_fields)) {
1455 1488
                 foreach ($this->_fields as $field) {
1456
-                    if ($type == $field['type'])
1457
-                        return true;
1489
+                    if ($type == $field['type']) {
1490
+                                            return true;
1491
+                    }
1458 1492
                 }
1459 1493
             }
1460 1494
             return false;
@@ -1992,18 +2026,21 @@  discard block
 block discarded – undo
1992 2026
          */
1993 2027
         public function is_array_empty($array)
1994 2028
         {
1995
-            if (!is_array($array))
1996
-                return true;
2029
+            if (!is_array($array)) {
2030
+                            return true;
2031
+            }
1997 2032
 
1998 2033
             foreach ($array as $a) {
1999 2034
                 if (is_array($a)) {
2000 2035
                     foreach ($a as $sub_a) {
2001
-                        if (!empty($sub_a) && $sub_a != '')
2002
-                            return false;
2036
+                        if (!empty($sub_a) && $sub_a != '') {
2037
+                                                    return false;
2038
+                        }
2003 2039
                     }
2004 2040
                 } else {
2005
-                    if (!empty($a) && $a != '')
2006
-                        return false;
2041
+                    if (!empty($a) && $a != '') {
2042
+                                            return false;
2043
+                    }
2007 2044
                 }
2008 2045
             }
2009 2046
             return true;
Please login to merge, or discard this patch.
geodirectory-functions/cat-meta-functions/cat_meta.php 3 patches
Indentation   +173 added lines, -173 removed lines patch added patch discarded remove patch
@@ -11,142 +11,142 @@  discard block
 block discarded – undo
11 11
 //include the main class file
12 12
 require_once("Tax-meta-class.php");
13 13
 if (is_admin()) {
14
-    /*
14
+	/*
15 15
      * prefix of meta keys, optional
16 16
      * use underscore (_) at the beginning to make keys hidden, for example $prefix = '_ba_';
17 17
      *  you also can make prefix empty to disable it
18 18
      *
19 19
      */
20 20
 
21
-    $prefix = 'ct_';
22
-    /*
21
+	$prefix = 'ct_';
22
+	/*
23 23
      * configure your meta box
24 24
      */
25 25
 
26
-    $config = array(
27
-        'id' => 'demo_meta_box',                    // meta box id, unique per meta box
28
-        'title' => __('Demo Meta Box', 'geodirectory'),                    // meta box title
29
-        'pages' => geodir_get_taxonomies(),            // taxonomy name, accept categories, post_tag and custom taxonomies
30
-        'context' => 'normal',                        // where the meta box appear: normal (default), advanced, side; optional
31
-        'fields' => array(),                        // list of meta fields (can be added by field arrays)
32
-        'local_images' => false,                    // Use local or hosted images (meta box images for add/remove)
33
-        'use_with_theme' => true                    //change path if used with theme set to true, false for a plugin or anything else for a custom path(default false).
34
-    );
26
+	$config = array(
27
+		'id' => 'demo_meta_box',                    // meta box id, unique per meta box
28
+		'title' => __('Demo Meta Box', 'geodirectory'),                    // meta box title
29
+		'pages' => geodir_get_taxonomies(),            // taxonomy name, accept categories, post_tag and custom taxonomies
30
+		'context' => 'normal',                        // where the meta box appear: normal (default), advanced, side; optional
31
+		'fields' => array(),                        // list of meta fields (can be added by field arrays)
32
+		'local_images' => false,                    // Use local or hosted images (meta box images for add/remove)
33
+		'use_with_theme' => true                    //change path if used with theme set to true, false for a plugin or anything else for a custom path(default false).
34
+	);
35 35
 
36 36
 
37
-    /*
37
+	/*
38 38
      * Initiate your meta box
39 39
      */
40
-    $my_meta = new Tax_Meta_Class($config);
41
-    $my_meta->addWysiwyg($prefix . 'cat_top_desc', array('name' => __('Category Top Description', 'geodirectory'), 'desc' => __('This will appear at the top of the category listing.', 'geodirectory')));
42
-    $my_meta->addImage($prefix . 'cat_default_img', array('name' => __('Default Listing Image', 'geodirectory'), 'desc' => __('Choose a default "no image"', 'geodirectory')));
43
-    $my_meta->addImage($prefix . 'cat_icon', array('name' => __('Category Icon', 'geodirectory'), 'desc' => __('Choose a category icon', 'geodirectory'), 'validate_func' => '!empty'));
44
-    /*$my_meta->addCheckbox($prefix.'pointless',array('name'=> __('<b>Exclude</b> Rating sort option','geodirectory'),'style'=>'hidden'));*/// hidden setting to trick WPML
45
-
46
-    $my_meta->addSelect($prefix . 'cat_schema',
47
-    /*
40
+	$my_meta = new Tax_Meta_Class($config);
41
+	$my_meta->addWysiwyg($prefix . 'cat_top_desc', array('name' => __('Category Top Description', 'geodirectory'), 'desc' => __('This will appear at the top of the category listing.', 'geodirectory')));
42
+	$my_meta->addImage($prefix . 'cat_default_img', array('name' => __('Default Listing Image', 'geodirectory'), 'desc' => __('Choose a default "no image"', 'geodirectory')));
43
+	$my_meta->addImage($prefix . 'cat_icon', array('name' => __('Category Icon', 'geodirectory'), 'desc' => __('Choose a category icon', 'geodirectory'), 'validate_func' => '!empty'));
44
+	/*$my_meta->addCheckbox($prefix.'pointless',array('name'=> __('<b>Exclude</b> Rating sort option','geodirectory'),'style'=>'hidden'));*/// hidden setting to trick WPML
45
+
46
+	$my_meta->addSelect($prefix . 'cat_schema',
47
+	/*
48 48
      * Allows you to add/filter the cat schema types.
49 49
      *
50 50
      * @since 1.5.7
51 51
      */
52
-        apply_filters('geodir_cat_schemas',array(
53
-            '' => __('Default (LocalBusiness)', 'geodirectory'),
54
-            'AccountingService' => 'AccountingService',
55
-            'Attorney' => 'Attorney',
56
-            'AutoBodyShop' => 'AutoBodyShop',
57
-            'AutoDealer' => 'AutoDealer',
58
-            'AutoPartsStore' => 'AutoPartsStore',
59
-            'AutoRental' => 'AutoRental',
60
-            'AutoRepair' => 'AutoRepair',
61
-            'AutoWash' => 'AutoWash',
62
-            'Bakery' => 'Bakery',
63
-            'BarOrPub' => 'BarOrPub',
64
-            'BeautySalon' => 'BeautySalon',
65
-            'BedAndBreakfast' => 'BedAndBreakfast',
66
-            'BikeStore' => 'BikeStore',
67
-            'BookStore' => 'BookStore',
68
-            'CafeOrCoffeeShop' => 'CafeOrCoffeeShop',
69
-            'Campground' => 'Campground',
70
-            'ChildCare' => 'ChildCare',
71
-            'ClothingStore' => 'ClothingStore',
72
-            'ComputerStore' => 'ComputerStore',
73
-            'DaySpa' => 'DaySpa',
74
-            'Dentist' => 'Dentist',
75
-            'DryCleaningOrLaundry' => 'DryCleaningOrLaundry',
76
-            'Electrician' => 'Electrician',
77
-            'ElectronicsStore' => 'ElectronicsStore',
78
-            'EmergencyService' => 'EmergencyService',
79
-            'EntertainmentBusiness' => 'EntertainmentBusiness',
80
-            'Event' => 'Event',
81
-            'EventVenue' => 'EventVenue',
82
-            'ExerciseGym' => 'ExerciseGym',
83
-            'FinancialService' => 'FinancialService',
84
-            'Florist' => 'Florist',
85
-            'FoodEstablishment' => 'FoodEstablishment',
86
-            'FurnitureStore' => 'FurnitureStore',
87
-            'GardenStore' => 'GardenStore',
88
-            'GeneralContractor' => 'GeneralContractor',
89
-            'GolfCourse' => 'GolfCourse',
90
-            'HairSalon' => 'HairSalon',
91
-            'HardwareStore' => 'HardwareStore',
92
-            'HealthAndBeautyBusiness' => 'HealthAndBeautyBusiness',
93
-            'HobbyShop' => 'HobbyShop',
94
-            'HomeAndConstructionBusiness' => 'HomeAndConstructionBusiness',
95
-            'HomeGoodsStore' => 'HomeGoodsStore',
96
-            'Hospital' => 'Hospital',
97
-            'Hostel' => 'Hostel',
98
-            'Hotel' => 'Hotel',
99
-            'HousePainter' => 'HousePainter',
100
-            'HVACBusiness' => 'HVACBusiness',
101
-            'InsuranceAgency' => 'InsuranceAgency',
102
-            'JewelryStore' => 'JewelryStore',
103
-            'LiquorStore' => 'LiquorStore',
104
-            'Locksmith' => 'Locksmith',
105
-            'LodgingBusiness' => 'LodgingBusiness',
106
-            'MedicalClinic' => 'MedicalClinic',
107
-            'MensClothingStore' => 'MensClothingStore',
108
-            'MobilePhoneStore' => 'MobilePhoneStore',
109
-            'Motel' => 'Motel',
110
-            'MotorcycleDealer' => 'MotorcycleDealer',
111
-            'MotorcycleRepair' => 'MotorcycleRepair',
112
-            'MovingCompany' => 'MovingCompany',
113
-            'MusicStore' => 'MusicStore',
114
-            'NailSalon' => 'NailSalon',
115
-            'NightClub' => 'NightClub',
116
-            'Notary' => 'Notary',
117
-            'OfficeEquipmentStore' => 'OfficeEquipmentStore',
118
-            'Optician' => 'Optician',
119
-            'PetStore' => 'PetStore',
120
-            'Physician' => 'Physician',
121
-            'Plumber' => 'Plumber',
122
-            'ProfessionalService' => 'ProfessionalService',
123
-            'RealEstateAgent' => 'RealEstateAgent',
124
-            'Residence' => 'Residence',
125
-            'Restaurant' => 'Restaurant',
126
-            'RoofingContractor' => 'RoofingContractor',
127
-            'RVPark' => 'RVPark',
128
-            'School' => 'School',
129
-            'SelfStorage' => 'SelfStorage',
130
-            'ShoeStore' => 'ShoeStore',
131
-            'SkiResort' => 'SkiResort',
132
-            'SportingGoodsStore' => 'SportingGoodsStore',
133
-            'SportsClub' => 'SportsClub',
134
-            'Store' => 'Store',
135
-            'TattooParlor' => 'TattooParlor',
136
-            'Taxi' => 'Taxi',
137
-            'TennisComplex' => 'TennisComplex',
138
-            'TireShop' => 'TireShop',
139
-            'TouristAttraction' => 'TouristAttraction',
140
-            'ToyStore' => 'ToyStore',
141
-            'TravelAgency' => 'TravelAgency',
142
-            //'VacationRentals' => 'VacationRentals', // Not recognised by google yet
143
-            'VeterinaryCare' => 'VeterinaryCare',
144
-            'WholesaleStore' => 'WholesaleStore',
145
-            'Winery' => 'Winery'
146
-        )),
147
-        array('name' => __('Schema Type', 'geodirectory'), 'desc' => __('Select the Schema to use for this category', 'geodirectory') . "", 'std' => array('selectkey2')));
148
-
149
-    /*$my_meta->addSelect($prefix.'cat_sort',array(''=>__('Default' , 'geodirectory'),
52
+		apply_filters('geodir_cat_schemas',array(
53
+			'' => __('Default (LocalBusiness)', 'geodirectory'),
54
+			'AccountingService' => 'AccountingService',
55
+			'Attorney' => 'Attorney',
56
+			'AutoBodyShop' => 'AutoBodyShop',
57
+			'AutoDealer' => 'AutoDealer',
58
+			'AutoPartsStore' => 'AutoPartsStore',
59
+			'AutoRental' => 'AutoRental',
60
+			'AutoRepair' => 'AutoRepair',
61
+			'AutoWash' => 'AutoWash',
62
+			'Bakery' => 'Bakery',
63
+			'BarOrPub' => 'BarOrPub',
64
+			'BeautySalon' => 'BeautySalon',
65
+			'BedAndBreakfast' => 'BedAndBreakfast',
66
+			'BikeStore' => 'BikeStore',
67
+			'BookStore' => 'BookStore',
68
+			'CafeOrCoffeeShop' => 'CafeOrCoffeeShop',
69
+			'Campground' => 'Campground',
70
+			'ChildCare' => 'ChildCare',
71
+			'ClothingStore' => 'ClothingStore',
72
+			'ComputerStore' => 'ComputerStore',
73
+			'DaySpa' => 'DaySpa',
74
+			'Dentist' => 'Dentist',
75
+			'DryCleaningOrLaundry' => 'DryCleaningOrLaundry',
76
+			'Electrician' => 'Electrician',
77
+			'ElectronicsStore' => 'ElectronicsStore',
78
+			'EmergencyService' => 'EmergencyService',
79
+			'EntertainmentBusiness' => 'EntertainmentBusiness',
80
+			'Event' => 'Event',
81
+			'EventVenue' => 'EventVenue',
82
+			'ExerciseGym' => 'ExerciseGym',
83
+			'FinancialService' => 'FinancialService',
84
+			'Florist' => 'Florist',
85
+			'FoodEstablishment' => 'FoodEstablishment',
86
+			'FurnitureStore' => 'FurnitureStore',
87
+			'GardenStore' => 'GardenStore',
88
+			'GeneralContractor' => 'GeneralContractor',
89
+			'GolfCourse' => 'GolfCourse',
90
+			'HairSalon' => 'HairSalon',
91
+			'HardwareStore' => 'HardwareStore',
92
+			'HealthAndBeautyBusiness' => 'HealthAndBeautyBusiness',
93
+			'HobbyShop' => 'HobbyShop',
94
+			'HomeAndConstructionBusiness' => 'HomeAndConstructionBusiness',
95
+			'HomeGoodsStore' => 'HomeGoodsStore',
96
+			'Hospital' => 'Hospital',
97
+			'Hostel' => 'Hostel',
98
+			'Hotel' => 'Hotel',
99
+			'HousePainter' => 'HousePainter',
100
+			'HVACBusiness' => 'HVACBusiness',
101
+			'InsuranceAgency' => 'InsuranceAgency',
102
+			'JewelryStore' => 'JewelryStore',
103
+			'LiquorStore' => 'LiquorStore',
104
+			'Locksmith' => 'Locksmith',
105
+			'LodgingBusiness' => 'LodgingBusiness',
106
+			'MedicalClinic' => 'MedicalClinic',
107
+			'MensClothingStore' => 'MensClothingStore',
108
+			'MobilePhoneStore' => 'MobilePhoneStore',
109
+			'Motel' => 'Motel',
110
+			'MotorcycleDealer' => 'MotorcycleDealer',
111
+			'MotorcycleRepair' => 'MotorcycleRepair',
112
+			'MovingCompany' => 'MovingCompany',
113
+			'MusicStore' => 'MusicStore',
114
+			'NailSalon' => 'NailSalon',
115
+			'NightClub' => 'NightClub',
116
+			'Notary' => 'Notary',
117
+			'OfficeEquipmentStore' => 'OfficeEquipmentStore',
118
+			'Optician' => 'Optician',
119
+			'PetStore' => 'PetStore',
120
+			'Physician' => 'Physician',
121
+			'Plumber' => 'Plumber',
122
+			'ProfessionalService' => 'ProfessionalService',
123
+			'RealEstateAgent' => 'RealEstateAgent',
124
+			'Residence' => 'Residence',
125
+			'Restaurant' => 'Restaurant',
126
+			'RoofingContractor' => 'RoofingContractor',
127
+			'RVPark' => 'RVPark',
128
+			'School' => 'School',
129
+			'SelfStorage' => 'SelfStorage',
130
+			'ShoeStore' => 'ShoeStore',
131
+			'SkiResort' => 'SkiResort',
132
+			'SportingGoodsStore' => 'SportingGoodsStore',
133
+			'SportsClub' => 'SportsClub',
134
+			'Store' => 'Store',
135
+			'TattooParlor' => 'TattooParlor',
136
+			'Taxi' => 'Taxi',
137
+			'TennisComplex' => 'TennisComplex',
138
+			'TireShop' => 'TireShop',
139
+			'TouristAttraction' => 'TouristAttraction',
140
+			'ToyStore' => 'ToyStore',
141
+			'TravelAgency' => 'TravelAgency',
142
+			//'VacationRentals' => 'VacationRentals', // Not recognised by google yet
143
+			'VeterinaryCare' => 'VeterinaryCare',
144
+			'WholesaleStore' => 'WholesaleStore',
145
+			'Winery' => 'Winery'
146
+		)),
147
+		array('name' => __('Schema Type', 'geodirectory'), 'desc' => __('Select the Schema to use for this category', 'geodirectory') . "", 'std' => array('selectkey2')));
148
+
149
+	/*$my_meta->addSelect($prefix.'cat_sort',array(''=>__('Default' , 'geodirectory'),
150 150
     'random'=>__('Random','geodirectory'),
151 151
     'az'=>__('Alphabetical' , 'geodirectory'),
152 152
     'newest'=>__('Newest','geodirectory'),
@@ -157,8 +157,8 @@  discard block
 block discarded – undo
157 157
     'low_review'=>__('Lowest Reviews','geodirectory')),
158 158
     array('name'=> __('Sort By','geodirectory'),'desc' => __('Select the default sort option.' ,'geodirectory'), 'std'=> array('selectkey2')));*/
159 159
 
160
-    // Show options for placecategories only
161
-    /*	if(isset($_REQUEST['taxonomy']) && in_array($_REQUEST['taxonomy'],$config['pages']) ){
160
+	// Show options for placecategories only
161
+	/*	if(isset($_REQUEST['taxonomy']) && in_array($_REQUEST['taxonomy'],$config['pages']) ){
162 162
         // Exclude sort options
163 163
         $my_meta->addCheckbox($prefix.'cat_exclude_rating',array('name'=> __('<b>Exclude</b> Rating sort option','geodirectory')));
164 164
         $my_meta->addCheckbox($prefix.'cat_exclude_reviews',array('name'=> __('<b>Exclude</b> Reviews sort option','geodirectory')));
@@ -170,8 +170,8 @@  discard block
 block discarded – undo
170 170
 
171 171
         }*/
172 172
 
173
-    //Finish Meta Box Declaration
174
-    $my_meta->Finish();
173
+	//Finish Meta Box Declaration
174
+	$my_meta->Finish();
175 175
 }
176 176
 
177 177
 
@@ -180,87 +180,87 @@  discard block
 block discarded – undo
180 180
 ##############################################################
181 181
 $gd_taxonomies = geodir_get_taxonomies();
182 182
 if (!empty($gd_taxonomies)) {
183
-    foreach ($gd_taxonomies as $gd_taxonomy) {
183
+	foreach ($gd_taxonomies as $gd_taxonomy) {
184 184
 
185
-        add_filter('manage_edit-' . $gd_taxonomy . '_columns', 'addCat_column', 10, 2);
186
-        add_action('manage_' . $gd_taxonomy . '_custom_column', 'manage_category_custom_fields', 10, 3);
185
+		add_filter('manage_edit-' . $gd_taxonomy . '_columns', 'addCat_column', 10, 2);
186
+		add_action('manage_' . $gd_taxonomy . '_custom_column', 'manage_category_custom_fields', 10, 3);
187 187
 
188
-    }
188
+	}
189 189
 }
190 190
 
191 191
 function addCat_column($columns)
192 192
 {
193
-    if (isset($columns['description']) && $posts = $columns['description']) {
194
-        unset($columns['description']);
195
-    }
196
-
197
-    $columns['cat_icon'] = 'Icon';
198
-    $columns['cat_default_img'] = __('Default Image', 'geodirectory');
199
-    $columns['cat_ID_num'] = __('Cat ID', 'geodirectory');
200
-    return $columns;
193
+	if (isset($columns['description']) && $posts = $columns['description']) {
194
+		unset($columns['description']);
195
+	}
196
+
197
+	$columns['cat_icon'] = 'Icon';
198
+	$columns['cat_default_img'] = __('Default Image', 'geodirectory');
199
+	$columns['cat_ID_num'] = __('Cat ID', 'geodirectory');
200
+	return $columns;
201 201
 }
202 202
 
203 203
 #############################################################
204 204
 function manage_category_custom_fields($deprecated, $column_name, $term_id)
205 205
 {
206
-    if ($column_name == 'cat_ID_num')
207
-        echo $term_id;
206
+	if ($column_name == 'cat_ID_num')
207
+		echo $term_id;
208 208
 
209
-    if ($column_name == 'cat_icon') {
210
-        $term_icon_url = get_tax_meta($term_id, 'ct_cat_icon');
209
+	if ($column_name == 'cat_icon') {
210
+		$term_icon_url = get_tax_meta($term_id, 'ct_cat_icon');
211 211
 
212
-        if ($term_icon_url != '') {
213
-            $file_info = pathinfo($term_icon_url['src']);
212
+		if ($term_icon_url != '') {
213
+			$file_info = pathinfo($term_icon_url['src']);
214 214
 
215
-            if (isset($file_info['dirname'] ) && $file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
216
-                $sub_dir = $file_info['dirname'];
217
-            } else {
218
-                $sub_dir = '';
219
-            }
215
+			if (isset($file_info['dirname'] ) && $file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
216
+				$sub_dir = $file_info['dirname'];
217
+			} else {
218
+				$sub_dir = '';
219
+			}
220 220
 
221
-            $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
222
-            $uploads_baseurl = $uploads['baseurl'];
223
-            $uploads_path = $uploads['path'];
221
+			$uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs
222
+			$uploads_baseurl = $uploads['baseurl'];
223
+			$uploads_path = $uploads['path'];
224 224
 
225
-            $file_name = $file_info['basename'];
225
+			$file_name = $file_info['basename'];
226 226
 
227
-            if (strpos($sub_dir, 'https://') !== false) {
228
-                $uploads['baseurl'] = str_replace('http://', 'https://', $uploads['baseurl']);
229
-            } else {
230
-                $uploads['baseurl'] = str_replace('https://', 'http://', $uploads['baseurl']);
231
-            }
232
-            $sub_dir = str_replace($uploads['baseurl'], '', $sub_dir);
227
+			if (strpos($sub_dir, 'https://') !== false) {
228
+				$uploads['baseurl'] = str_replace('http://', 'https://', $uploads['baseurl']);
229
+			} else {
230
+				$uploads['baseurl'] = str_replace('https://', 'http://', $uploads['baseurl']);
231
+			}
232
+			$sub_dir = str_replace($uploads['baseurl'], '', $sub_dir);
233 233
 
234
-            $uploads_url = $uploads_baseurl . $sub_dir;
234
+			$uploads_url = $uploads_baseurl . $sub_dir;
235 235
 
236
-            $term_icon_url['src'] = $uploads_url . '/' . $file_name;
237
-            echo '<img src="' . $term_icon_url['src'] . '" />';
238
-        }
239
-    }
236
+			$term_icon_url['src'] = $uploads_url . '/' . $file_name;
237
+			echo '<img src="' . $term_icon_url['src'] . '" />';
238
+		}
239
+	}
240 240
 
241
-    if ($column_name == 'cat_default_img') {
242
-        $cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img');
243
-        if ($cat_default_img != '')
244
-            echo '<img src="' . $cat_default_img['src'] . '" style="max-height:60px;max-width:60px;"/>';
241
+	if ($column_name == 'cat_default_img') {
242
+		$cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img');
243
+		if ($cat_default_img != '')
244
+			echo '<img src="' . $cat_default_img['src'] . '" style="max-height:60px;max-width:60px;"/>';
245 245
 
246
-    }
246
+	}
247 247
 }
248 248
 
249 249
 function geodir_get_default_catimage($term_id, $post_type = 'gd_place')
250 250
 {
251 251
 
252
-    if ($cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img', '', $post_type))
253
-        return $cat_default_img;
254
-    else
255
-        return false;
252
+	if ($cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img', '', $post_type))
253
+		return $cat_default_img;
254
+	else
255
+		return false;
256 256
 }
257 257
 
258 258
 //Clear custom fields
259 259
 add_action('in_admin_footer', 'geodir_tax_meta_clear_custom_field');
260 260
 function geodir_tax_meta_clear_custom_field()
261 261
 {
262
-    if (isset($_REQUEST['taxonomy']) && !empty($_REQUEST['taxonomy'])):
263
-        ?>
262
+	if (isset($_REQUEST['taxonomy']) && !empty($_REQUEST['taxonomy'])):
263
+		?>
264 264
         <script type="text/javascript">
265 265
             jQuery(document).ready(function () {
266 266
                 jQuery('#addtag #submit').click(function () {
@@ -281,5 +281,5 @@  discard block
 block discarded – undo
281 281
             });
282 282
         </script>
283 283
     <?php
284
-    endif;
284
+	endif;
285 285
 }
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -24,12 +24,12 @@  discard block
 block discarded – undo
24 24
      */
25 25
 
26 26
     $config = array(
27
-        'id' => 'demo_meta_box',                    // meta box id, unique per meta box
28
-        'title' => __('Demo Meta Box', 'geodirectory'),                    // meta box title
29
-        'pages' => geodir_get_taxonomies(),            // taxonomy name, accept categories, post_tag and custom taxonomies
30
-        'context' => 'normal',                        // where the meta box appear: normal (default), advanced, side; optional
31
-        'fields' => array(),                        // list of meta fields (can be added by field arrays)
32
-        'local_images' => false,                    // Use local or hosted images (meta box images for add/remove)
27
+        'id' => 'demo_meta_box', // meta box id, unique per meta box
28
+        'title' => __('Demo Meta Box', 'geodirectory'), // meta box title
29
+        'pages' => geodir_get_taxonomies(), // taxonomy name, accept categories, post_tag and custom taxonomies
30
+        'context' => 'normal', // where the meta box appear: normal (default), advanced, side; optional
31
+        'fields' => array(), // list of meta fields (can be added by field arrays)
32
+        'local_images' => false, // Use local or hosted images (meta box images for add/remove)
33 33
         'use_with_theme' => true                    //change path if used with theme set to true, false for a plugin or anything else for a custom path(default false).
34 34
     );
35 35
 
@@ -38,18 +38,18 @@  discard block
 block discarded – undo
38 38
      * Initiate your meta box
39 39
      */
40 40
     $my_meta = new Tax_Meta_Class($config);
41
-    $my_meta->addWysiwyg($prefix . 'cat_top_desc', array('name' => __('Category Top Description', 'geodirectory'), 'desc' => __('This will appear at the top of the category listing.', 'geodirectory')));
42
-    $my_meta->addImage($prefix . 'cat_default_img', array('name' => __('Default Listing Image', 'geodirectory'), 'desc' => __('Choose a default "no image"', 'geodirectory')));
43
-    $my_meta->addImage($prefix . 'cat_icon', array('name' => __('Category Icon', 'geodirectory'), 'desc' => __('Choose a category icon', 'geodirectory'), 'validate_func' => '!empty'));
41
+    $my_meta->addWysiwyg($prefix.'cat_top_desc', array('name' => __('Category Top Description', 'geodirectory'), 'desc' => __('This will appear at the top of the category listing.', 'geodirectory')));
42
+    $my_meta->addImage($prefix.'cat_default_img', array('name' => __('Default Listing Image', 'geodirectory'), 'desc' => __('Choose a default "no image"', 'geodirectory')));
43
+    $my_meta->addImage($prefix.'cat_icon', array('name' => __('Category Icon', 'geodirectory'), 'desc' => __('Choose a category icon', 'geodirectory'), 'validate_func' => '!empty'));
44 44
     /*$my_meta->addCheckbox($prefix.'pointless',array('name'=> __('<b>Exclude</b> Rating sort option','geodirectory'),'style'=>'hidden'));*/// hidden setting to trick WPML
45 45
 
46
-    $my_meta->addSelect($prefix . 'cat_schema',
46
+    $my_meta->addSelect($prefix.'cat_schema',
47 47
     /*
48 48
      * Allows you to add/filter the cat schema types.
49 49
      *
50 50
      * @since 1.5.7
51 51
      */
52
-        apply_filters('geodir_cat_schemas',array(
52
+        apply_filters('geodir_cat_schemas', array(
53 53
             '' => __('Default (LocalBusiness)', 'geodirectory'),
54 54
             'AccountingService' => 'AccountingService',
55 55
             'Attorney' => 'Attorney',
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
             'WholesaleStore' => 'WholesaleStore',
145 145
             'Winery' => 'Winery'
146 146
         )),
147
-        array('name' => __('Schema Type', 'geodirectory'), 'desc' => __('Select the Schema to use for this category', 'geodirectory') . "", 'std' => array('selectkey2')));
147
+        array('name' => __('Schema Type', 'geodirectory'), 'desc' => __('Select the Schema to use for this category', 'geodirectory')."", 'std' => array('selectkey2')));
148 148
 
149 149
     /*$my_meta->addSelect($prefix.'cat_sort',array(''=>__('Default' , 'geodirectory'),
150 150
     'random'=>__('Random','geodirectory'),
@@ -182,8 +182,8 @@  discard block
 block discarded – undo
182 182
 if (!empty($gd_taxonomies)) {
183 183
     foreach ($gd_taxonomies as $gd_taxonomy) {
184 184
 
185
-        add_filter('manage_edit-' . $gd_taxonomy . '_columns', 'addCat_column', 10, 2);
186
-        add_action('manage_' . $gd_taxonomy . '_custom_column', 'manage_category_custom_fields', 10, 3);
185
+        add_filter('manage_edit-'.$gd_taxonomy.'_columns', 'addCat_column', 10, 2);
186
+        add_action('manage_'.$gd_taxonomy.'_custom_column', 'manage_category_custom_fields', 10, 3);
187 187
 
188 188
     }
189 189
 }
@@ -212,7 +212,7 @@  discard block
 block discarded – undo
212 212
         if ($term_icon_url != '') {
213 213
             $file_info = pathinfo($term_icon_url['src']);
214 214
 
215
-            if (isset($file_info['dirname'] ) && $file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
215
+            if (isset($file_info['dirname']) && $file_info['dirname'] != '.' && $file_info['dirname'] != '..') {
216 216
                 $sub_dir = $file_info['dirname'];
217 217
             } else {
218 218
                 $sub_dir = '';
@@ -231,17 +231,17 @@  discard block
 block discarded – undo
231 231
             }
232 232
             $sub_dir = str_replace($uploads['baseurl'], '', $sub_dir);
233 233
 
234
-            $uploads_url = $uploads_baseurl . $sub_dir;
234
+            $uploads_url = $uploads_baseurl.$sub_dir;
235 235
 
236
-            $term_icon_url['src'] = $uploads_url . '/' . $file_name;
237
-            echo '<img src="' . $term_icon_url['src'] . '" />';
236
+            $term_icon_url['src'] = $uploads_url.'/'.$file_name;
237
+            echo '<img src="'.$term_icon_url['src'].'" />';
238 238
         }
239 239
     }
240 240
 
241 241
     if ($column_name == 'cat_default_img') {
242 242
         $cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img');
243 243
         if ($cat_default_img != '')
244
-            echo '<img src="' . $cat_default_img['src'] . '" style="max-height:60px;max-width:60px;"/>';
244
+            echo '<img src="'.$cat_default_img['src'].'" style="max-height:60px;max-width:60px;"/>';
245 245
 
246 246
     }
247 247
 }
@@ -272,8 +272,8 @@  discard block
 block discarded – undo
272 272
                             jQuery("#addtag iframe").contents().find("body").html('');
273 273
                             jQuery('#addtag [rel="ct_cat_default_img"]').removeClass('at-delete_image_button').addClass('at-upload_image_button');
274 274
                             jQuery('#addtag [rel="ct_cat_icon"]').removeClass('at-delete_image_button').addClass('at-upload_image_button');
275
-                            jQuery('#addtag [rel="ct_cat_default_img"]').val('<?php _e('Upload Image','geodirectory');?>');
276
-                            jQuery('#addtag [rel="ct_cat_icon"]').val('<?php _e('Upload Image','geodirectory');?>');
275
+                            jQuery('#addtag [rel="ct_cat_default_img"]').val('<?php _e('Upload Image', 'geodirectory'); ?>');
276
+                            jQuery('#addtag [rel="ct_cat_icon"]').val('<?php _e('Upload Image', 'geodirectory'); ?>');
277 277
                         }
278 278
                     }, 1000);
279 279
 
Please login to merge, or discard this patch.
Braces   +12 added lines, -9 removed lines patch added patch discarded remove patch
@@ -203,8 +203,9 @@  discard block
 block discarded – undo
203 203
 #############################################################
204 204
 function manage_category_custom_fields($deprecated, $column_name, $term_id)
205 205
 {
206
-    if ($column_name == 'cat_ID_num')
207
-        echo $term_id;
206
+    if ($column_name == 'cat_ID_num') {
207
+            echo $term_id;
208
+    }
208 209
 
209 210
     if ($column_name == 'cat_icon') {
210 211
         $term_icon_url = get_tax_meta($term_id, 'ct_cat_icon');
@@ -240,8 +241,9 @@  discard block
 block discarded – undo
240 241
 
241 242
     if ($column_name == 'cat_default_img') {
242 243
         $cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img');
243
-        if ($cat_default_img != '')
244
-            echo '<img src="' . $cat_default_img['src'] . '" style="max-height:60px;max-width:60px;"/>';
244
+        if ($cat_default_img != '') {
245
+                    echo '<img src="' . $cat_default_img['src'] . '" style="max-height:60px;max-width:60px;"/>';
246
+        }
245 247
 
246 248
     }
247 249
 }
@@ -249,11 +251,12 @@  discard block
 block discarded – undo
249 251
 function geodir_get_default_catimage($term_id, $post_type = 'gd_place')
250 252
 {
251 253
 
252
-    if ($cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img', '', $post_type))
253
-        return $cat_default_img;
254
-    else
255
-        return false;
256
-}
254
+    if ($cat_default_img = get_tax_meta($term_id, 'ct_cat_default_img', '', $post_type)) {
255
+            return $cat_default_img;
256
+    } else {
257
+            return false;
258
+    }
259
+    }
257 260
 
258 261
 //Clear custom fields
259 262
 add_action('in_admin_footer', 'geodir_tax_meta_clear_custom_field');
Please login to merge, or discard this patch.
geodirectory-functions/general_functions.php 1 patch
Spacing   +1293 added lines, -1293 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 .= '&amp;';
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1358
-			if ( ! empty( $gd_taxonomy ) || geodir_is_page( 'detail' ) ) {
1357
+			$breadcrumb .= $separator.'<a href="'.$listing_link.'">'.__(geodir_utf8_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 = geodir_utf8_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 = geodir_utf8_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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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 . '">' . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' ) . '</a>';
1544
-				$breadcrumb .= $separator . geodir_utf8_ucfirst( __( 'My', 'geodirectory' ) . ' ' . $_REQUEST['list'] );
1543
+				$breadcrumb .= $separator.'<a href="'.$author_link.'">'.__(geodir_utf8_ucfirst($post_type_info->label), 'geodirectory').'</a>';
1544
+				$breadcrumb .= $separator.geodir_utf8_ucfirst(__('My', 'geodirectory').' '.$_REQUEST['list']);
1545 1545
 			} else {
1546
-				$breadcrumb .= $separator . __( geodir_utf8_ucfirst( $post_type_info->label ), 'geodirectory' );
1546
+				$breadcrumb .= $separator.__(geodir_utf8_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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
2092 2092
 		17,
2093 2093
 		18,
2094 2094
 		19
2095
-	) );
2095
+	));
2096 2096
 
2097 2097
 }
2098 2098
 
@@ -2105,12 +2105,12 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 		}
@@ -2216,44 +2216,44 @@  discard block
 block discarded – undo
2216 2216
  *
2217 2217
  * @return string Orderby SQL.
2218 2218
  */
2219
-function geodir_widget_listings_get_order( $query_args ) {
2219
+function geodir_widget_listings_get_order($query_args) {
2220 2220
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2221 2221
 
2222 2222
 	$query_args = $gd_query_args_widgets;
2223
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2224
-		return $wpdb->posts . ".post_date DESC, ";
2223
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2224
+		return $wpdb->posts.".post_date DESC, ";
2225 2225
 	}
2226 2226
 
2227
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2228
-	$table     = $plugin_prefix . $post_type . '_detail';
2227
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2228
+	$table     = $plugin_prefix.$post_type.'_detail';
2229 2229
 
2230
-	$sort_by = ! empty( $query_args['order_by'] ) ? $query_args['order_by'] : '';
2230
+	$sort_by = !empty($query_args['order_by']) ? $query_args['order_by'] : '';
2231 2231
 
2232
-	switch ( $sort_by ) {
2232
+	switch ($sort_by) {
2233 2233
 		case 'latest':
2234 2234
 		case 'newest':
2235
-			$orderby = $wpdb->posts . ".post_date DESC, ";
2235
+			$orderby = $wpdb->posts.".post_date DESC, ";
2236 2236
 			break;
2237 2237
 		case 'featured':
2238
-			$orderby = $table . ".is_featured ASC, ". $wpdb->posts . ".post_date DESC, ";
2238
+			$orderby = $table.".is_featured ASC, ".$wpdb->posts.".post_date DESC, ";
2239 2239
 			break;
2240 2240
 		case 'az':
2241
-			$orderby = $wpdb->posts . ".post_title ASC, ";
2241
+			$orderby = $wpdb->posts.".post_title ASC, ";
2242 2242
 			break;
2243 2243
 		case 'high_review':
2244
-			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
2244
+			$orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
2245 2245
 			break;
2246 2246
 		case 'high_rating':
2247
-			$orderby = "( " . $table . ".overall_rating  ) DESC, ";
2247
+			$orderby = "( ".$table.".overall_rating  ) DESC, ";
2248 2248
 			break;
2249 2249
 		case 'random':
2250 2250
 			$orderby = "RAND(), ";
2251 2251
 			break;
2252 2252
 		default:
2253
-			if ( $custom_orderby = geodir_prepare_custom_sorting( $sort_by, $table ) ) {
2254
-				$orderby = $custom_orderby . ", ";
2253
+			if ($custom_orderby = geodir_prepare_custom_sorting($sort_by, $table)) {
2254
+				$orderby = $custom_orderby.", ";
2255 2255
 			} else {
2256
-				$orderby = $wpdb->posts . ".post_title ASC, ";
2256
+				$orderby = $wpdb->posts.".post_title ASC, ";
2257 2257
 			}
2258 2258
 			break;
2259 2259
 	}
@@ -2278,15 +2278,15 @@  discard block
 block discarded – undo
2278 2278
  *
2279 2279
  * @return mixed Result object.
2280 2280
  */
2281
-function geodir_get_widget_listings( $query_args = array(), $count_only = false ) {
2281
+function geodir_get_widget_listings($query_args = array(), $count_only = false) {
2282 2282
 	global $wpdb, $plugin_prefix, $table_prefix;
2283 2283
 	$GLOBALS['gd_query_args_widgets'] = $query_args;
2284 2284
 	$gd_query_args_widgets            = $query_args;
2285 2285
 
2286
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2287
-	$table     = $plugin_prefix . $post_type . '_detail';
2286
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2287
+	$table     = $plugin_prefix.$post_type.'_detail';
2288 2288
 
2289
-	$fields = $wpdb->posts . ".*, " . $table . ".*";
2289
+	$fields = $wpdb->posts.".*, ".$table.".*";
2290 2290
 	/**
2291 2291
 	 * Filter widget listing fields string part that is being used for query.
2292 2292
 	 *
@@ -2296,17 +2296,17 @@  discard block
 block discarded – undo
2296 2296
 	 * @param string $table     Table name.
2297 2297
 	 * @param string $post_type Post type.
2298 2298
 	 */
2299
-	$fields = apply_filters( 'geodir_filter_widget_listings_fields', $fields, $table, $post_type );
2299
+	$fields = apply_filters('geodir_filter_widget_listings_fields', $fields, $table, $post_type);
2300 2300
 
2301
-	$join = "INNER JOIN " . $table . " ON (" . $table . ".post_id = " . $wpdb->posts . ".ID)";
2301
+	$join = "INNER JOIN ".$table." ON (".$table.".post_id = ".$wpdb->posts.".ID)";
2302 2302
 
2303 2303
 	########### WPML ###########
2304 2304
 
2305
-	if ( function_exists( 'icl_object_id' ) ) {
2305
+	if (function_exists('icl_object_id')) {
2306 2306
 		global $sitepress;
2307 2307
 		$lang_code = ICL_LANGUAGE_CODE;
2308
-		if ( $lang_code ) {
2309
-			$join .= " JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
2308
+		if ($lang_code) {
2309
+			$join .= " JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
2310 2310
 		}
2311 2311
 	}
2312 2312
 
@@ -2320,15 +2320,15 @@  discard block
 block discarded – undo
2320 2320
 	 * @param string $join      Join clause string.
2321 2321
 	 * @param string $post_type Post type.
2322 2322
 	 */
2323
-	$join = apply_filters( 'geodir_filter_widget_listings_join', $join, $post_type );
2323
+	$join = apply_filters('geodir_filter_widget_listings_join', $join, $post_type);
2324 2324
 
2325
-	$post_status = is_super_admin() ? " OR " . $wpdb->posts . ".post_status = 'private'" : '';
2325
+	$post_status = is_super_admin() ? " OR ".$wpdb->posts.".post_status = 'private'" : '';
2326 2326
 
2327
-	$where = " AND ( " . $wpdb->posts . ".post_status = 'publish' " . $post_status . " ) AND " . $wpdb->posts . ".post_type = '" . $post_type . "'";
2327
+	$where = " AND ( ".$wpdb->posts.".post_status = 'publish' ".$post_status." ) AND ".$wpdb->posts.".post_type = '".$post_type."'";
2328 2328
 
2329 2329
 	########### WPML ###########
2330
-	if ( function_exists( 'icl_object_id' ) ) {
2331
-		if ( $lang_code ) {
2330
+	if (function_exists('icl_object_id')) {
2331
+		if ($lang_code) {
2332 2332
 			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type = 'post_$post_type' ";
2333 2333
 		}
2334 2334
 	}
@@ -2341,8 +2341,8 @@  discard block
 block discarded – undo
2341 2341
 	 * @param string $where     Where clause string.
2342 2342
 	 * @param string $post_type Post type.
2343 2343
 	 */
2344
-	$where = apply_filters( 'geodir_filter_widget_listings_where', $where, $post_type );
2345
-	$where = $where != '' ? " WHERE 1=1 " . $where : '';
2344
+	$where = apply_filters('geodir_filter_widget_listings_where', $where, $post_type);
2345
+	$where = $where != '' ? " WHERE 1=1 ".$where : '';
2346 2346
 
2347 2347
 	$groupby = " GROUP BY $wpdb->posts.ID "; //@todo is this needed? faster without
2348 2348
 	/**
@@ -2353,15 +2353,15 @@  discard block
 block discarded – undo
2353 2353
 	 * @param string $groupby   Group by clause string.
2354 2354
 	 * @param string $post_type Post type.
2355 2355
 	 */
2356
-	$groupby = apply_filters( 'geodir_filter_widget_listings_groupby', $groupby, $post_type );
2356
+	$groupby = apply_filters('geodir_filter_widget_listings_groupby', $groupby, $post_type);
2357 2357
 
2358
-	if ( $count_only ) {
2359
-		$sql  = "SELECT COUNT(DISTINCT " . $wpdb->posts . ".ID) AS total FROM " . $wpdb->posts . "
2360
-			" . $join . "
2358
+	if ($count_only) {
2359
+		$sql  = "SELECT COUNT(DISTINCT ".$wpdb->posts.".ID) AS total FROM ".$wpdb->posts."
2360
+			" . $join."
2361 2361
 			" . $where;
2362
-		$rows = (int) $wpdb->get_var( $sql );
2362
+		$rows = (int) $wpdb->get_var($sql);
2363 2363
 	} else {
2364
-		$orderby = geodir_widget_listings_get_order( $query_args );
2364
+		$orderby = geodir_widget_listings_get_order($query_args);
2365 2365
 		/**
2366 2366
 		 * Filter widget listing orderby clause string part that is being used for query.
2367 2367
 		 *
@@ -2371,33 +2371,33 @@  discard block
 block discarded – undo
2371 2371
 		 * @param string $table     Table name.
2372 2372
 		 * @param string $post_type Post type.
2373 2373
 		 */
2374
-		$orderby = apply_filters( 'geodir_filter_widget_listings_orderby', $orderby, $table, $post_type );
2374
+		$orderby = apply_filters('geodir_filter_widget_listings_orderby', $orderby, $table, $post_type);
2375 2375
 		
2376 2376
 		$second_orderby = array();
2377
-		if ( strpos( $orderby, strtolower( $table . ".is_featured" )  ) === false ) {
2378
-			$second_orderby[] = $table . ".is_featured ASC";
2377
+		if (strpos($orderby, strtolower($table.".is_featured")) === false) {
2378
+			$second_orderby[] = $table.".is_featured ASC";
2379 2379
 		}
2380 2380
 		
2381
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_date" )  ) === false ) {
2382
-			$second_orderby[] = $wpdb->posts . ".post_date DESC";
2381
+		if (strpos($orderby, strtolower($wpdb->posts.".post_date")) === false) {
2382
+			$second_orderby[] = $wpdb->posts.".post_date DESC";
2383 2383
 		}
2384 2384
 		
2385
-		if ( strpos( $orderby, strtolower( $wpdb->posts . ".post_title" )  ) === false ) {
2386
-			$second_orderby[] = $wpdb->posts . ".post_title ASC";
2385
+		if (strpos($orderby, strtolower($wpdb->posts.".post_title")) === false) {
2386
+			$second_orderby[] = $wpdb->posts.".post_title ASC";
2387 2387
 		}
2388 2388
 		
2389
-		if ( !empty( $second_orderby ) ) {
2390
-			$orderby .= implode( ', ', $second_orderby );
2389
+		if (!empty($second_orderby)) {
2390
+			$orderby .= implode(', ', $second_orderby);
2391 2391
 		}
2392 2392
 		
2393
-		if ( !empty( $orderby ) ) {
2394
-			$orderby = trim( $orderby );
2395
-			$orderby = rtrim( $orderby, "," );
2393
+		if (!empty($orderby)) {
2394
+			$orderby = trim($orderby);
2395
+			$orderby = rtrim($orderby, ",");
2396 2396
 		}
2397 2397
 		
2398
-		$orderby = $orderby != '' ? " ORDER BY " . $orderby : '';
2398
+		$orderby = $orderby != '' ? " ORDER BY ".$orderby : '';
2399 2399
 
2400
-		$limit = ! empty( $query_args['posts_per_page'] ) ? $query_args['posts_per_page'] : 5;
2400
+		$limit = !empty($query_args['posts_per_page']) ? $query_args['posts_per_page'] : 5;
2401 2401
 		/**
2402 2402
 		 * Filter widget listing limit that is being used for query.
2403 2403
 		 *
@@ -2406,27 +2406,27 @@  discard block
 block discarded – undo
2406 2406
 		 * @param int $limit        Query results limit.
2407 2407
 		 * @param string $post_type Post type.
2408 2408
 		 */
2409
-		$limit = apply_filters( 'geodir_filter_widget_listings_limit', $limit, $post_type );
2409
+		$limit = apply_filters('geodir_filter_widget_listings_limit', $limit, $post_type);
2410 2410
 
2411
-		$page = ! empty( $query_args['pageno'] ) ? absint( $query_args['pageno'] ) : 1;
2412
-		if ( ! $page ) {
2411
+		$page = !empty($query_args['pageno']) ? absint($query_args['pageno']) : 1;
2412
+		if (!$page) {
2413 2413
 			$page = 1;
2414 2414
 		}
2415 2415
 
2416
-		$limit = (int) $limit > 0 ? " LIMIT " . absint( ( $page - 1 ) * (int) $limit ) . ", " . (int) $limit : "";
2416
+		$limit = (int) $limit > 0 ? " LIMIT ".absint(($page - 1) * (int) $limit).", ".(int) $limit : "";
2417 2417
 
2418 2418
 		//@todo removed SQL_CALC_FOUND_ROWS from below as don't think it is needed and query is faster without
2419
-		$sql  = "SELECT " . $fields . " FROM " . $wpdb->posts . "
2420
-			" . $join . "
2421
-			" . $where . "
2422
-			" . $groupby . "
2423
-			" . $orderby . "
2419
+		$sql = "SELECT ".$fields." FROM ".$wpdb->posts."
2420
+			" . $join."
2421
+			" . $where."
2422
+			" . $groupby."
2423
+			" . $orderby."
2424 2424
 			" . $limit;
2425
-		$rows = $wpdb->get_results( $sql );
2425
+		$rows = $wpdb->get_results($sql);
2426 2426
 	}
2427 2427
 
2428
-	unset( $GLOBALS['gd_query_args_widgets'] );
2429
-	unset( $gd_query_args_widgets );
2428
+	unset($GLOBALS['gd_query_args_widgets']);
2429
+	unset($gd_query_args_widgets);
2430 2430
 
2431 2431
 	return $rows;
2432 2432
 }
@@ -2443,11 +2443,11 @@  discard block
 block discarded – undo
2443 2443
  *
2444 2444
  * @return string Modified fields SQL.
2445 2445
  */
2446
-function geodir_function_widget_listings_fields( $fields ) {
2446
+function geodir_function_widget_listings_fields($fields) {
2447 2447
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2448 2448
 
2449 2449
 	$query_args = $gd_query_args_widgets;
2450
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2450
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2451 2451
 		return $fields;
2452 2452
 	}
2453 2453
 
@@ -2466,24 +2466,24 @@  discard block
 block discarded – undo
2466 2466
  *
2467 2467
  * @return string Modified join clause SQL.
2468 2468
  */
2469
-function geodir_function_widget_listings_join( $join ) {
2469
+function geodir_function_widget_listings_join($join) {
2470 2470
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2471 2471
 
2472 2472
 	$query_args = $gd_query_args_widgets;
2473
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2473
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2474 2474
 		return $join;
2475 2475
 	}
2476 2476
 
2477
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2478
-	$table     = $plugin_prefix . $post_type . '_detail';
2477
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2478
+	$table     = $plugin_prefix.$post_type.'_detail';
2479 2479
 
2480
-	if ( ! empty( $query_args['with_pics_only'] ) ) {
2481
-		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
2480
+	if (!empty($query_args['with_pics_only'])) {
2481
+		$join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
2482 2482
 	}
2483 2483
 
2484
-	if ( ! empty( $query_args['tax_query'] ) ) {
2485
-		$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2486
-		if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2484
+	if (!empty($query_args['tax_query'])) {
2485
+		$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2486
+		if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2487 2487
 			$join .= $tax_queries['join'];
2488 2488
 		}
2489 2489
 	}
@@ -2504,60 +2504,60 @@  discard block
 block discarded – undo
2504 2504
  *
2505 2505
  * @return string Modified where clause SQL.
2506 2506
  */
2507
-function geodir_function_widget_listings_where( $where ) {
2507
+function geodir_function_widget_listings_where($where) {
2508 2508
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2509 2509
 
2510 2510
 	$query_args = $gd_query_args_widgets;
2511
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2511
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2512 2512
 		return $where;
2513 2513
 	}
2514
-	$post_type = empty( $query_args['post_type'] ) ? 'gd_place' : $query_args['post_type'];
2515
-	$table     = $plugin_prefix . $post_type . '_detail';
2514
+	$post_type = empty($query_args['post_type']) ? 'gd_place' : $query_args['post_type'];
2515
+	$table     = $plugin_prefix.$post_type.'_detail';
2516 2516
 
2517
-	if ( ! empty( $query_args ) ) {
2518
-		if ( ! empty( $query_args['gd_location'] ) && function_exists( 'geodir_default_location_where' ) ) {
2519
-			$where = geodir_default_location_where( $where, $table );
2517
+	if (!empty($query_args)) {
2518
+		if (!empty($query_args['gd_location']) && function_exists('geodir_default_location_where')) {
2519
+			$where = geodir_default_location_where($where, $table);
2520 2520
 		}
2521 2521
 
2522
-		if ( ! empty( $query_args['post_author'] ) ) {
2523
-			$where .= " AND " . $wpdb->posts . ".post_author = " . (int) $query_args['post_author'];
2522
+		if (!empty($query_args['post_author'])) {
2523
+			$where .= " AND ".$wpdb->posts.".post_author = ".(int) $query_args['post_author'];
2524 2524
 		}
2525 2525
 
2526
-		if ( ! empty( $query_args['show_featured_only'] ) ) {
2527
-			$where .= " AND " . $table . ".is_featured = '1'";
2526
+		if (!empty($query_args['show_featured_only'])) {
2527
+			$where .= " AND ".$table.".is_featured = '1'";
2528 2528
 		}
2529 2529
 
2530
-		if ( ! empty( $query_args['show_special_only'] ) ) {
2531
-			$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
2530
+		if (!empty($query_args['show_special_only'])) {
2531
+			$where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
2532 2532
 		}
2533 2533
 
2534
-		if ( ! empty( $query_args['with_pics_only'] ) ) {
2535
-			$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL ";
2534
+		if (!empty($query_args['with_pics_only'])) {
2535
+			$where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL ";
2536 2536
 		}
2537 2537
 
2538
-		if ( ! empty( $query_args['featured_image_only'] ) ) {
2539
-			$where .= " AND " . $table . ".featured_image IS NOT NULL AND " . $table . ".featured_image!='' ";
2538
+		if (!empty($query_args['featured_image_only'])) {
2539
+			$where .= " AND ".$table.".featured_image IS NOT NULL AND ".$table.".featured_image!='' ";
2540 2540
 		}
2541 2541
 
2542
-		if ( ! empty( $query_args['with_videos_only'] ) ) {
2543
-			$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
2542
+		if (!empty($query_args['with_videos_only'])) {
2543
+			$where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
2544 2544
 		}
2545 2545
         
2546
-		if ( ! empty( $query_args['show_favorites_only'] ) ) {
2546
+		if (!empty($query_args['show_favorites_only'])) {
2547 2547
 			$user_favorites = '-1';
2548 2548
 			
2549
-			if ( !empty( $query_args['favorites_by_user'] ) ) {
2550
-				$user_favorites = get_user_meta( (int)$query_args['favorites_by_user'], 'gd_user_favourite_post', true );
2549
+			if (!empty($query_args['favorites_by_user'])) {
2550
+				$user_favorites = get_user_meta((int) $query_args['favorites_by_user'], 'gd_user_favourite_post', true);
2551 2551
 				$user_favorites = !empty($user_favorites) && is_array($user_favorites) ? implode("','", $user_favorites) : '-1';
2552 2552
 			}
2553 2553
 			
2554
-			$where .= " AND `" . $wpdb->posts . "`.`ID` IN('" . $user_favorites . "')";
2554
+			$where .= " AND `".$wpdb->posts."`.`ID` IN('".$user_favorites."')";
2555 2555
 		}
2556 2556
 
2557
-		if ( ! empty( $query_args['tax_query'] ) ) {
2558
-			$tax_queries = get_tax_sql( $query_args['tax_query'], $wpdb->posts, 'ID' );
2557
+		if (!empty($query_args['tax_query'])) {
2558
+			$tax_queries = get_tax_sql($query_args['tax_query'], $wpdb->posts, 'ID');
2559 2559
 
2560
-			if ( ! empty( $tax_queries['join'] ) && ! empty( $tax_queries['where'] ) ) {
2560
+			if (!empty($tax_queries['join']) && !empty($tax_queries['where'])) {
2561 2561
 				$where .= $tax_queries['where'];
2562 2562
 			}
2563 2563
 		}
@@ -2578,11 +2578,11 @@  discard block
 block discarded – undo
2578 2578
  *
2579 2579
  * @return string Modified orderby clause SQL.
2580 2580
  */
2581
-function geodir_function_widget_listings_orderby( $orderby ) {
2581
+function geodir_function_widget_listings_orderby($orderby) {
2582 2582
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2583 2583
 
2584 2584
 	$query_args = $gd_query_args_widgets;
2585
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2585
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2586 2586
 		return $orderby;
2587 2587
 	}
2588 2588
 
@@ -2601,15 +2601,15 @@  discard block
 block discarded – undo
2601 2601
  *
2602 2602
  * @return int Query limit.
2603 2603
  */
2604
-function geodir_function_widget_listings_limit( $limit ) {
2604
+function geodir_function_widget_listings_limit($limit) {
2605 2605
 	global $wpdb, $plugin_prefix, $gd_query_args_widgets;
2606 2606
 
2607 2607
 	$query_args = $gd_query_args_widgets;
2608
-	if ( empty( $query_args ) || empty( $query_args['is_geodir_loop'] ) ) {
2608
+	if (empty($query_args) || empty($query_args['is_geodir_loop'])) {
2609 2609
 		return $limit;
2610 2610
 	}
2611 2611
 
2612
-	if ( ! empty( $query_args ) && ! empty( $query_args['posts_per_page'] ) ) {
2612
+	if (!empty($query_args) && !empty($query_args['posts_per_page'])) {
2613 2613
 		$limit = (int) $query_args['posts_per_page'];
2614 2614
 	}
2615 2615
 
@@ -2627,12 +2627,12 @@  discard block
 block discarded – undo
2627 2627
  *
2628 2628
  * @return int Large size width.
2629 2629
  */
2630
-function geodir_media_image_large_width( $default = 800, $params = '' ) {
2631
-	$large_size_w = get_option( 'large_size_w' );
2630
+function geodir_media_image_large_width($default = 800, $params = '') {
2631
+	$large_size_w = get_option('large_size_w');
2632 2632
 	$large_size_w = $large_size_w > 0 ? $large_size_w : $default;
2633
-	$large_size_w = absint( $large_size_w );
2633
+	$large_size_w = absint($large_size_w);
2634 2634
 
2635
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2635
+	if (!get_option('geodir_use_wp_media_large_size')) {
2636 2636
 		$large_size_w = 800;
2637 2637
 	}
2638 2638
 
@@ -2645,7 +2645,7 @@  discard block
 block discarded – undo
2645 2645
 	 * @param int $default         Default width.
2646 2646
 	 * @param string|array $params Image parameters.
2647 2647
 	 */
2648
-	$large_size_w = apply_filters( 'geodir_filter_media_image_large_width', $large_size_w, $default, $params );
2648
+	$large_size_w = apply_filters('geodir_filter_media_image_large_width', $large_size_w, $default, $params);
2649 2649
 
2650 2650
 	return $large_size_w;
2651 2651
 }
@@ -2661,12 +2661,12 @@  discard block
 block discarded – undo
2661 2661
  *
2662 2662
  * @return int Large size height.
2663 2663
  */
2664
-function geodir_media_image_large_height( $default = 800, $params = '' ) {
2665
-	$large_size_h = get_option( 'large_size_h' );
2664
+function geodir_media_image_large_height($default = 800, $params = '') {
2665
+	$large_size_h = get_option('large_size_h');
2666 2666
 	$large_size_h = $large_size_h > 0 ? $large_size_h : $default;
2667
-	$large_size_h = absint( $large_size_h );
2667
+	$large_size_h = absint($large_size_h);
2668 2668
 
2669
-	if ( ! get_option( 'geodir_use_wp_media_large_size' ) ) {
2669
+	if (!get_option('geodir_use_wp_media_large_size')) {
2670 2670
 		$large_size_h = 800;
2671 2671
 	}
2672 2672
 
@@ -2679,7 +2679,7 @@  discard block
 block discarded – undo
2679 2679
 	 * @param int $default         Default height.
2680 2680
 	 * @param string|array $params Image parameters.
2681 2681
 	 */
2682
-	$large_size_h = apply_filters( 'geodir_filter_media_image_large_height', $large_size_h, $default, $params );
2682
+	$large_size_h = apply_filters('geodir_filter_media_image_large_height', $large_size_h, $default, $params);
2683 2683
 
2684 2684
 	return $large_size_h;
2685 2685
 }
@@ -2696,8 +2696,8 @@  discard block
 block discarded – undo
2696 2696
  *
2697 2697
  * @return string Sanitized name.
2698 2698
  */
2699
-function geodir_sanitize_location_name( $type, $name, $translate = true ) {
2700
-	if ( $name == '' ) {
2699
+function geodir_sanitize_location_name($type, $name, $translate = true) {
2700
+	if ($name == '') {
2701 2701
 		return null;
2702 2702
 	}
2703 2703
 
@@ -2706,13 +2706,13 @@  discard block
 block discarded – undo
2706 2706
 	$type = $type == 'gd_city' ? 'city' : $type;
2707 2707
 
2708 2708
 	$return = $name;
2709
-	if ( function_exists( 'get_actual_location_name' ) ) {
2710
-		$return = get_actual_location_name( $type, $name, $translate );
2709
+	if (function_exists('get_actual_location_name')) {
2710
+		$return = get_actual_location_name($type, $name, $translate);
2711 2711
 	} else {
2712
-		$return = preg_replace( '/-(\d+)$/', '', $return );
2713
-		$return = preg_replace( '/[_-]/', ' ', $return );
2714
-		$return = geodir_ucwords( $return );
2715
-		$return = $translate ? __( $return, 'geodirectory' ) : $return;
2712
+		$return = preg_replace('/-(\d+)$/', '', $return);
2713
+		$return = preg_replace('/[_-]/', ' ', $return);
2714
+		$return = geodir_ucwords($return);
2715
+		$return = $translate ? __($return, 'geodirectory') : $return;
2716 2716
 	}
2717 2717
 
2718 2718
 	return $return;
@@ -2730,26 +2730,26 @@  discard block
 block discarded – undo
2730 2730
  *
2731 2731
  * @param int $number Comments number.
2732 2732
  */
2733
-function geodir_comments_number( $number ) {
2733
+function geodir_comments_number($number) {
2734 2734
 	global $post;
2735 2735
 	
2736
-	if ( !empty( $post->post_type ) && geodir_cpt_has_rating_disabled( $post->post_type ) ) {
2736
+	if (!empty($post->post_type) && geodir_cpt_has_rating_disabled($post->post_type)) {
2737 2737
 		$number = get_comments_number();
2738 2738
 		
2739
-		if ( $number > 1 ) {
2740
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Comments', 'geodirectory' ) );
2741
-		} elseif ( $number == 0 || $number == '' ) {
2742
-			$output = __( 'No Comments', 'geodirectory' );
2739
+		if ($number > 1) {
2740
+			$output = str_replace('%', number_format_i18n($number), __('% Comments', 'geodirectory'));
2741
+		} elseif ($number == 0 || $number == '') {
2742
+			$output = __('No Comments', 'geodirectory');
2743 2743
 		} else { // must be one
2744
-			$output = __( '1 Comment', 'geodirectory' );
2744
+			$output = __('1 Comment', 'geodirectory');
2745 2745
 		}
2746 2746
 	} else {    
2747
-		if ( $number > 1 ) {
2748
-			$output = str_replace( '%', number_format_i18n( $number ), __( '% Reviews', 'geodirectory' ) );
2749
-		} elseif ( $number == 0 || $number == '' ) {
2750
-			$output = __( 'No Reviews', 'geodirectory' );
2747
+		if ($number > 1) {
2748
+			$output = str_replace('%', number_format_i18n($number), __('% Reviews', 'geodirectory'));
2749
+		} elseif ($number == 0 || $number == '') {
2750
+			$output = __('No Reviews', 'geodirectory');
2751 2751
 		} else { // must be one
2752
-			$output = __( '1 Review', 'geodirectory' );
2752
+			$output = __('1 Review', 'geodirectory');
2753 2753
 		}
2754 2754
 	}
2755 2755
 	
@@ -2766,18 +2766,18 @@  discard block
 block discarded – undo
2766 2766
  */
2767 2767
 function is_page_geodir_home() {
2768 2768
 	global $wpdb;
2769
-	$cur_url = str_replace( array( "https://", "http://", "www." ), array( '', '', '' ), geodir_curPageURL() );
2770
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2771
-		remove_filter( 'home_url', 'geodir_location_geo_home_link', 100000 );
2769
+	$cur_url = str_replace(array("https://", "http://", "www."), array('', '', ''), geodir_curPageURL());
2770
+	if (function_exists('geodir_location_geo_home_link')) {
2771
+		remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
2772 2772
 	}
2773
-	$home_url = home_url( '', 'http' );
2774
-	if ( function_exists( 'geodir_location_geo_home_link' ) ) {
2775
-		add_filter( 'home_url', 'geodir_location_geo_home_link', 100000, 2 );
2773
+	$home_url = home_url('', 'http');
2774
+	if (function_exists('geodir_location_geo_home_link')) {
2775
+		add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
2776 2776
 	}
2777
-	$home_url = str_replace( "www.", "", $home_url );
2778
-	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' ) ) ) {
2777
+	$home_url = str_replace("www.", "", $home_url);
2778
+	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'))) {
2779 2779
 		return true;
2780
-	} 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' ) ) {
2780
+	} 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')) {
2781 2781
 		return true;
2782 2782
 	} else {
2783 2783
 		return false;
@@ -2797,18 +2797,18 @@  discard block
 block discarded – undo
2797 2797
  *
2798 2798
  * @return string The canonical URL.
2799 2799
  */
2800
-function geodir_wpseo_homepage_canonical( $url ) {
2800
+function geodir_wpseo_homepage_canonical($url) {
2801 2801
 	global $post;
2802 2802
 
2803
-	if ( is_page_geodir_home() ) {
2803
+	if (is_page_geodir_home()) {
2804 2804
 		return home_url();
2805 2805
 	}
2806 2806
 
2807 2807
 	return $url;
2808 2808
 }
2809 2809
 
2810
-add_filter( 'wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10 );
2811
-add_filter( 'aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10 );
2810
+add_filter('wpseo_canonical', 'geodir_wpseo_homepage_canonical', 10);
2811
+add_filter('aioseop_canonical_url', 'geodir_wpseo_homepage_canonical', 10);
2812 2812
 
2813 2813
 /**
2814 2814
  * Add extra fields to google maps script call.
@@ -2821,20 +2821,20 @@  discard block
 block discarded – undo
2821 2821
  *
2822 2822
  * @return string Modified extra string.
2823 2823
  */
2824
-function geodir_googlemap_script_extra_details_page( $extra ) {
2824
+function geodir_googlemap_script_extra_details_page($extra) {
2825 2825
 	global $post;
2826 2826
 	$add_google_places_api = false;
2827
-	if ( isset( $post->post_content ) && has_shortcode( $post->post_content, 'gd_add_listing' ) ) {
2827
+	if (isset($post->post_content) && has_shortcode($post->post_content, 'gd_add_listing')) {
2828 2828
 		$add_google_places_api = true;
2829 2829
 	}
2830
-	if ( ! str_replace( 'libraries=places', '', $extra ) && ( geodir_is_page( 'detail' ) || $add_google_places_api ) ) {
2830
+	if (!str_replace('libraries=places', '', $extra) && (geodir_is_page('detail') || $add_google_places_api)) {
2831 2831
 		$extra .= "&amp;libraries=places";
2832 2832
 	}
2833 2833
 
2834 2834
 	return $extra;
2835 2835
 }
2836 2836
 
2837
-add_filter( 'geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1 );
2837
+add_filter('geodir_googlemap_script_extra', 'geodir_googlemap_script_extra_details_page', 101, 1);
2838 2838
 
2839 2839
 
2840 2840
 /**
@@ -2853,119 +2853,119 @@  discard block
 block discarded – undo
2853 2853
  *                                          after_widget.
2854 2854
  * @param array|string $instance            The settings for the particular instance of the widget.
2855 2855
  */
2856
-function geodir_popular_post_category_output( $args = '', $instance = '' ) {
2856
+function geodir_popular_post_category_output($args = '', $instance = '') {
2857 2857
 	// prints the widget
2858 2858
 	global $wpdb, $plugin_prefix, $geodir_post_category_str;
2859
-	extract( $args, EXTR_SKIP );
2859
+	extract($args, EXTR_SKIP);
2860 2860
 
2861 2861
 	echo $before_widget;
2862 2862
 
2863 2863
 	/** This filter is documented in geodirectory_widgets.php */
2864
-	$title = empty( $instance['title'] ) ? __( 'Popular Categories', 'geodirectory' ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
2864
+	$title = empty($instance['title']) ? __('Popular Categories', 'geodirectory') : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
2865 2865
 
2866 2866
 	$gd_post_type = geodir_get_current_posttype();
2867 2867
 
2868
-	$category_limit = isset( $instance['category_limit'] ) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2868
+	$category_limit = isset($instance['category_limit']) && $instance['category_limit'] > 0 ? (int) $instance['category_limit'] : 15;
2869 2869
 	if (!isset($category_restrict)) {
2870 2870
 		$category_restrict = false;
2871 2871
 	}
2872
-	if ( ! empty( $gd_post_type ) ) {
2872
+	if (!empty($gd_post_type)) {
2873 2873
 		$default_post_type = $gd_post_type;
2874
-	} elseif ( isset( $instance['default_post_type'] ) && gdsc_is_post_type_valid( $instance['default_post_type'] ) ) {
2874
+	} elseif (isset($instance['default_post_type']) && gdsc_is_post_type_valid($instance['default_post_type'])) {
2875 2875
 		$default_post_type = $instance['default_post_type'];
2876 2876
 	} else {
2877 2877
 		$all_gd_post_type  = geodir_get_posttypes();
2878
-		$default_post_type = ( isset( $all_gd_post_type[0] ) ) ? $all_gd_post_type[0] : '';
2878
+		$default_post_type = (isset($all_gd_post_type[0])) ? $all_gd_post_type[0] : '';
2879 2879
 	}
2880
-	$parent_only = !empty( $instance['parent_only'] ) ? true : false;
2880
+	$parent_only = !empty($instance['parent_only']) ? true : false;
2881 2881
 
2882 2882
 	$taxonomy = array();
2883
-	if ( ! empty( $gd_post_type ) ) {
2884
-		$taxonomy[] = $gd_post_type . "category";
2883
+	if (!empty($gd_post_type)) {
2884
+		$taxonomy[] = $gd_post_type."category";
2885 2885
 	} else {
2886
-		$taxonomy = geodir_get_taxonomies( $gd_post_type );
2886
+		$taxonomy = geodir_get_taxonomies($gd_post_type);
2887 2887
 	}
2888 2888
 
2889 2889
 	$taxonomy = apply_filters('geodir_pp_category_taxonomy', $taxonomy);
2890 2890
 
2891
-	$term_args = array( 'taxonomy' => $taxonomy );
2892
-	if ( $parent_only ) {
2891
+	$term_args = array('taxonomy' => $taxonomy);
2892
+	if ($parent_only) {
2893 2893
 		$term_args['parent'] = 0;
2894 2894
 	}
2895 2895
 
2896
-	$terms   = get_terms( $term_args );
2896
+	$terms   = get_terms($term_args);
2897 2897
 	$a_terms = array();
2898 2898
 	$b_terms = array();
2899 2899
 
2900
-	foreach ( $terms as $term ) {
2901
-		if ( $term->count > 0 ) {
2902
-			$a_terms[ $term->taxonomy ][] = $term;
2900
+	foreach ($terms as $term) {
2901
+		if ($term->count > 0) {
2902
+			$a_terms[$term->taxonomy][] = $term;
2903 2903
 		}
2904 2904
 	}
2905 2905
 
2906
-	if ( ! empty( $a_terms ) ) {
2906
+	if (!empty($a_terms)) {
2907 2907
 		// Sort CPT taxonomies in categories widget.
2908
-		if ( !empty( $taxonomy ) && is_array( $taxonomy ) && count( $taxonomy ) > 1 ) {
2908
+		if (!empty($taxonomy) && is_array($taxonomy) && count($taxonomy) > 1) {
2909 2909
 			$gd_post_types = geodir_get_posttypes();
2910 2910
 			$sort_taxonomies = array();
2911 2911
 			
2912
-			foreach ( $gd_post_types as $gd_post_type ) {
2913
-				$taxonomy_name = $gd_post_type . 'category';
2912
+			foreach ($gd_post_types as $gd_post_type) {
2913
+				$taxonomy_name = $gd_post_type.'category';
2914 2914
 				
2915
-				if ( !empty( $a_terms[$taxonomy_name] ) ) {
2915
+				if (!empty($a_terms[$taxonomy_name])) {
2916 2916
 					$sort_taxonomies[$taxonomy_name] = $a_terms[$taxonomy_name];
2917 2917
 				}
2918 2918
 			}
2919
-			$a_terms = !empty( $sort_taxonomies ) ? $sort_taxonomies : $a_terms;
2919
+			$a_terms = !empty($sort_taxonomies) ? $sort_taxonomies : $a_terms;
2920 2920
 		}
2921 2921
 		
2922
-		foreach ( $a_terms as $b_key => $b_val ) {
2923
-			$b_terms[ $b_key ] = geodir_sort_terms( $b_val, 'count' );
2922
+		foreach ($a_terms as $b_key => $b_val) {
2923
+			$b_terms[$b_key] = geodir_sort_terms($b_val, 'count');
2924 2924
 		}
2925 2925
 
2926
-		$default_taxonomy = $default_post_type != '' && isset( $b_terms[ $default_post_type . 'category' ] ) ? $default_post_type . 'category' : '';
2926
+		$default_taxonomy = $default_post_type != '' && isset($b_terms[$default_post_type.'category']) ? $default_post_type.'category' : '';
2927 2927
 
2928 2928
 		$tax_change_output = '';
2929
-		if ( count( $b_terms ) > 1 ) {
2930
-			$tax_change_output .= "<select data-limit='$category_limit' data-parent='" . (int)$parent_only . "' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2931
-			foreach ( $b_terms as $key => $val ) {
2932
-				$ptype    = get_post_type_object( str_replace( "category", "", $key ) );
2933
-				$cpt_name = __( $ptype->labels->singular_name, 'geodirectory' );
2934
-				$tax_change_output .= "<option value='$key' " . selected( $key, $default_taxonomy, false ) . ">" . sprintf( __( '%s Categories', 'geodirectory' ), $cpt_name ) . "</option>";
2929
+		if (count($b_terms) > 1) {
2930
+			$tax_change_output .= "<select data-limit='$category_limit' data-parent='".(int) $parent_only."' class='geodir-cat-list-tax'  onchange='geodir_get_post_term(this);'>";
2931
+			foreach ($b_terms as $key => $val) {
2932
+				$ptype    = get_post_type_object(str_replace("category", "", $key));
2933
+				$cpt_name = __($ptype->labels->singular_name, 'geodirectory');
2934
+				$tax_change_output .= "<option value='$key' ".selected($key, $default_taxonomy, false).">".sprintf(__('%s Categories', 'geodirectory'), $cpt_name)."</option>";
2935 2935
 			}
2936 2936
 			$tax_change_output .= "</select>";
2937 2937
 		}
2938 2938
 
2939
-		if ( ! empty( $b_terms ) ) {
2940
-			$terms = $default_taxonomy != '' && isset( $b_terms[ $default_taxonomy ] ) ? $b_terms[ $default_taxonomy ] : reset( $b_terms );// get the first array
2941
-			global $cat_count;//make global so we can change via function
2939
+		if (!empty($b_terms)) {
2940
+			$terms = $default_taxonomy != '' && isset($b_terms[$default_taxonomy]) ? $b_terms[$default_taxonomy] : reset($b_terms); // get the first array
2941
+			global $cat_count; //make global so we can change via function
2942 2942
 			$cat_count = 0;
2943 2943
 			?>
2944 2944
 			<div class="geodir-category-list-in clearfix">
2945 2945
 				<div class="geodir-cat-list clearfix">
2946 2946
 					<?php
2947
-					echo $before_title . __( $title ) . $after_title;
2947
+					echo $before_title.__($title).$after_title;
2948 2948
 
2949 2949
 					echo $tax_change_output;
2950 2950
 
2951 2951
 					echo '<ul class="geodir-popular-cat-list">';
2952 2952
 
2953
-					geodir_helper_cat_list_output( $terms, $category_limit, $category_restrict);
2953
+					geodir_helper_cat_list_output($terms, $category_limit, $category_restrict);
2954 2954
 
2955 2955
 					echo '</ul>';
2956 2956
 					?>
2957 2957
 				</div>
2958 2958
 				<?php
2959 2959
 				$hide = '';
2960
-				if ( $cat_count < $category_limit ) {
2960
+				if ($cat_count < $category_limit) {
2961 2961
 					$hide = 'style="display:none;"';
2962 2962
 				}
2963 2963
 				echo "<div class='geodir-cat-list-more' $hide >";
2964
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">' . __( 'More Categories', 'geodirectory' ) . '</a>';
2965
-				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">' . __( 'Less Categories', 'geodirectory' ) . '</a>';
2964
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-showcat">'.__('More Categories', 'geodirectory').'</a>';
2965
+				echo '<a href="javascript:void(0)" class="geodir-morecat geodir-hidecat geodir-hide">'.__('Less Categories', 'geodirectory').'</a>';
2966 2966
 				echo "</div>";
2967 2967
 				/* add scripts */
2968
-				add_action( 'wp_footer', 'geodir_popular_category_add_scripts', 100 );
2968
+				add_action('wp_footer', 'geodir_popular_category_add_scripts', 100);
2969 2969
 				?>
2970 2970
 			</div>
2971 2971
 			<?php
@@ -2985,28 +2985,28 @@  discard block
 block discarded – undo
2985 2985
  * @param int $category_limit               Number of categories to display by default.
2986 2986
  * @param bool $category_restrict           If the cat limit should be hidden or not shown.
2987 2987
  */
2988
-function geodir_helper_cat_list_output( $terms, $category_limit , $category_restrict=false) {
2988
+function geodir_helper_cat_list_output($terms, $category_limit, $category_restrict = false) {
2989 2989
 	global $geodir_post_category_str, $cat_count;
2990 2990
 	$term_icons = geodir_get_term_icon();
2991 2991
 
2992 2992
 	$geodir_post_category_str = array();
2993 2993
 
2994 2994
 
2995
-	foreach ( $terms as $cat ) {
2996
-		$post_type     = str_replace( "category", "", $cat->taxonomy );
2997
-		$term_icon_url = ! empty( $term_icons ) && isset( $term_icons[ $cat->term_id ] ) ? $term_icons[ $cat->term_id ] : '';
2995
+	foreach ($terms as $cat) {
2996
+		$post_type     = str_replace("category", "", $cat->taxonomy);
2997
+		$term_icon_url = !empty($term_icons) && isset($term_icons[$cat->term_id]) ? $term_icons[$cat->term_id] : '';
2998 2998
 
2999
-		$cat_count ++;
2999
+		$cat_count++;
3000 3000
 
3001
-		$geodir_post_category_str[] = array( 'posttype' => $post_type, 'termid' => $cat->term_id );
3001
+		$geodir_post_category_str[] = array('posttype' => $post_type, 'termid' => $cat->term_id);
3002 3002
 
3003
-		$class_row  = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3004
-		if($category_restrict && $cat_count > $category_limit ){
3003
+		$class_row = $cat_count > $category_limit ? 'geodir-pcat-hide geodir-hide' : 'geodir-pcat-show';
3004
+		if ($category_restrict && $cat_count > $category_limit) {
3005 3005
 			continue;
3006 3006
 		}
3007 3007
 		$total_post = $cat->count;
3008 3008
 
3009
-		$term_link = get_term_link( $cat, $cat->taxonomy );
3009
+		$term_link = get_term_link($cat, $cat->taxonomy);
3010 3010
 		/**
3011 3011
 		 * Filer the category term link.
3012 3012
 		 *
@@ -3016,11 +3016,11 @@  discard block
 block discarded – undo
3016 3016
 		 * @param int $cat          ->term_id The term id.
3017 3017
 		 * @param string $post_type Wordpress post type.
3018 3018
 		 */
3019
-		$term_link = apply_filters( 'geodir_category_term_link', $term_link, $cat->term_id, $post_type );
3019
+		$term_link = apply_filters('geodir_category_term_link', $term_link, $cat->term_id, $post_type);
3020 3020
 
3021
-		echo '<li class="' . $class_row . '"><a href="' . $term_link . '">';
3022
-		echo '<img alt="' . esc_attr( $cat->name ) . ' icon" style="height:20px;vertical-align:middle;" src="' . $term_icon_url . '"/> <span class="cat-link">';
3023
-		echo $cat->name . '</span> <span class="geodir_term_class geodir_link_span geodir_category_class_' . $post_type . '_' . $cat->term_id . '">(' . $total_post . ')</span> ';
3021
+		echo '<li class="'.$class_row.'"><a href="'.$term_link.'">';
3022
+		echo '<img alt="'.esc_attr($cat->name).' icon" style="height:20px;vertical-align:middle;" src="'.$term_icon_url.'"/> <span class="cat-link">';
3023
+		echo $cat->name.'</span> <span class="geodir_term_class geodir_link_span geodir_category_class_'.$post_type.'_'.$cat->term_id.'">('.$total_post.')</span> ';
3024 3024
 		echo '</a></li>';
3025 3025
 	}
3026 3026
 }
@@ -3035,14 +3035,14 @@  discard block
 block discarded – undo
3035 3035
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3036 3036
  * @param array|string $instance The settings for the particular instance of the widget.
3037 3037
  */
3038
-function geodir_listing_slider_widget_output( $args = '', $instance = '' ) {
3038
+function geodir_listing_slider_widget_output($args = '', $instance = '') {
3039 3039
 	// prints the widget
3040
-	extract( $args, EXTR_SKIP );
3040
+	extract($args, EXTR_SKIP);
3041 3041
 
3042 3042
 	echo $before_widget;
3043 3043
 
3044 3044
 	/** This filter is documented in geodirectory_widgets.php */
3045
-	$title = empty( $instance['title'] ) ? '' : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3045
+	$title = empty($instance['title']) ? '' : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3046 3046
 	/**
3047 3047
 	 * Filter the widget post type.
3048 3048
 	 *
@@ -3050,7 +3050,7 @@  discard block
 block discarded – undo
3050 3050
 	 *
3051 3051
 	 * @param string $instance ['post_type'] Post type of listing.
3052 3052
 	 */
3053
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3053
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3054 3054
 	/**
3055 3055
 	 * Filter the widget's term.
3056 3056
 	 *
@@ -3058,7 +3058,7 @@  discard block
 block discarded – undo
3058 3058
 	 *
3059 3059
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3060 3060
 	 */
3061
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3061
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3062 3062
 	/**
3063 3063
 	 * Filter widget's "add_location_filter" value.
3064 3064
 	 *
@@ -3066,7 +3066,7 @@  discard block
 block discarded – undo
3066 3066
 	 *
3067 3067
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3068 3068
 	 */
3069
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3069
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3070 3070
 	/**
3071 3071
 	 * Filter the widget listings limit.
3072 3072
 	 *
@@ -3074,7 +3074,7 @@  discard block
 block discarded – undo
3074 3074
 	 *
3075 3075
 	 * @param string $instance ['post_number'] Number of listings to display.
3076 3076
 	 */
3077
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3077
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3078 3078
 	/**
3079 3079
 	 * Filter the widget listings limit shown at one time.
3080 3080
 	 *
@@ -3082,7 +3082,7 @@  discard block
 block discarded – undo
3082 3082
 	 *
3083 3083
 	 * @param string $instance ['max_show'] Number of listings to display on screen.
3084 3084
 	 */
3085
-	$max_show = empty( $instance['max_show'] ) ? '1' : apply_filters( 'widget_max_show', $instance['max_show'] );
3085
+	$max_show = empty($instance['max_show']) ? '1' : apply_filters('widget_max_show', $instance['max_show']);
3086 3086
 	/**
3087 3087
 	 * Filter the widget slide width.
3088 3088
 	 *
@@ -3090,7 +3090,7 @@  discard block
 block discarded – undo
3090 3090
 	 *
3091 3091
 	 * @param string $instance ['slide_width'] Width of the slides shown.
3092 3092
 	 */
3093
-	$slide_width = empty( $instance['slide_width'] ) ? '' : apply_filters( 'widget_slide_width', $instance['slide_width'] );
3093
+	$slide_width = empty($instance['slide_width']) ? '' : apply_filters('widget_slide_width', $instance['slide_width']);
3094 3094
 	/**
3095 3095
 	 * Filter widget's "show title" value.
3096 3096
 	 *
@@ -3098,7 +3098,7 @@  discard block
 block discarded – undo
3098 3098
 	 *
3099 3099
 	 * @param string|bool $instance ['show_title'] Do you want to display title? Can be 1 or 0.
3100 3100
 	 */
3101
-	$show_title = empty( $instance['show_title'] ) ? '' : apply_filters( 'widget_show_title', $instance['show_title'] );
3101
+	$show_title = empty($instance['show_title']) ? '' : apply_filters('widget_show_title', $instance['show_title']);
3102 3102
 	/**
3103 3103
 	 * Filter widget's "slideshow" value.
3104 3104
 	 *
@@ -3106,7 +3106,7 @@  discard block
 block discarded – undo
3106 3106
 	 *
3107 3107
 	 * @param int $instance ['slideshow'] Setup a slideshow for the slider to animate automatically.
3108 3108
 	 */
3109
-	$slideshow = empty( $instance['slideshow'] ) ? 0 : apply_filters( 'widget_slideshow', $instance['slideshow'] );
3109
+	$slideshow = empty($instance['slideshow']) ? 0 : apply_filters('widget_slideshow', $instance['slideshow']);
3110 3110
 	/**
3111 3111
 	 * Filter widget's "animationLoop" value.
3112 3112
 	 *
@@ -3114,7 +3114,7 @@  discard block
 block discarded – undo
3114 3114
 	 *
3115 3115
 	 * @param int $instance ['animationLoop'] Gives the slider a seamless infinite loop.
3116 3116
 	 */
3117
-	$animationLoop = empty( $instance['animationLoop'] ) ? 0 : apply_filters( 'widget_animationLoop', $instance['animationLoop'] );
3117
+	$animationLoop = empty($instance['animationLoop']) ? 0 : apply_filters('widget_animationLoop', $instance['animationLoop']);
3118 3118
 	/**
3119 3119
 	 * Filter widget's "directionNav" value.
3120 3120
 	 *
@@ -3122,7 +3122,7 @@  discard block
 block discarded – undo
3122 3122
 	 *
3123 3123
 	 * @param int $instance ['directionNav'] Enable previous/next arrow navigation?. Can be 1 or 0.
3124 3124
 	 */
3125
-	$directionNav = empty( $instance['directionNav'] ) ? 0 : apply_filters( 'widget_directionNav', $instance['directionNav'] );
3125
+	$directionNav = empty($instance['directionNav']) ? 0 : apply_filters('widget_directionNav', $instance['directionNav']);
3126 3126
 	/**
3127 3127
 	 * Filter widget's "slideshowSpeed" value.
3128 3128
 	 *
@@ -3130,7 +3130,7 @@  discard block
 block discarded – undo
3130 3130
 	 *
3131 3131
 	 * @param int $instance ['slideshowSpeed'] Set the speed of the slideshow cycling, in milliseconds.
3132 3132
 	 */
3133
-	$slideshowSpeed = empty( $instance['slideshowSpeed'] ) ? 5000 : apply_filters( 'widget_slideshowSpeed', $instance['slideshowSpeed'] );
3133
+	$slideshowSpeed = empty($instance['slideshowSpeed']) ? 5000 : apply_filters('widget_slideshowSpeed', $instance['slideshowSpeed']);
3134 3134
 	/**
3135 3135
 	 * Filter widget's "animationSpeed" value.
3136 3136
 	 *
@@ -3138,7 +3138,7 @@  discard block
 block discarded – undo
3138 3138
 	 *
3139 3139
 	 * @param int $instance ['animationSpeed'] Set the speed of animations, in milliseconds.
3140 3140
 	 */
3141
-	$animationSpeed = empty( $instance['animationSpeed'] ) ? 600 : apply_filters( 'widget_animationSpeed', $instance['animationSpeed'] );
3141
+	$animationSpeed = empty($instance['animationSpeed']) ? 600 : apply_filters('widget_animationSpeed', $instance['animationSpeed']);
3142 3142
 	/**
3143 3143
 	 * Filter widget's "animation" value.
3144 3144
 	 *
@@ -3146,7 +3146,7 @@  discard block
 block discarded – undo
3146 3146
 	 *
3147 3147
 	 * @param string $instance ['animation'] Controls the animation type, "fade" or "slide".
3148 3148
 	 */
3149
-	$animation = empty( $instance['animation'] ) ? 'slide' : apply_filters( 'widget_animation', $instance['animation'] );
3149
+	$animation = empty($instance['animation']) ? 'slide' : apply_filters('widget_animation', $instance['animation']);
3150 3150
 	/**
3151 3151
 	 * Filter widget's "list_sort" type.
3152 3152
 	 *
@@ -3154,10 +3154,10 @@  discard block
 block discarded – undo
3154 3154
 	 *
3155 3155
 	 * @param string $instance ['list_sort'] Listing sort by type.
3156 3156
 	 */
3157
-	$list_sort          = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3158
-	$show_featured_only = ! empty( $instance['show_featured_only'] ) ? 1 : null;
3157
+	$list_sort          = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3158
+	$show_featured_only = !empty($instance['show_featured_only']) ? 1 : null;
3159 3159
 
3160
-	wp_enqueue_script( 'geodirectory-jquery-flexslider-js' );
3160
+	wp_enqueue_script('geodirectory-jquery-flexslider-js');
3161 3161
 	?>
3162 3162
 		<script type="text/javascript">
3163 3163
 		jQuery(window).load(function () {
@@ -3176,7 +3176,7 @@  discard block
 block discarded – undo
3176 3176
 				itemWidth: 75,
3177 3177
 				itemMargin: 5,
3178 3178
 				asNavFor: '#geodir_widget_slider',
3179
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>,
3179
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>,
3180 3180
 				start: function (slider) {
3181 3181
 					// chrome 53 introduced a bug, so we need to repaint the slider when shown.
3182 3182
 					jQuery('.geodir-slides', jQuery(slider)).removeClass('flexslider-fix-rtl');
@@ -3184,19 +3184,19 @@  discard block
 block discarded – undo
3184 3184
 			});
3185 3185
 			
3186 3186
 			jQuery('#geodir_widget_slider').flexslider({
3187
-				animation: "<?php echo $animation;?>",
3187
+				animation: "<?php echo $animation; ?>",
3188 3188
 				selector: ".geodir-slides > li",
3189 3189
 				namespace: "geodir-",
3190 3190
 				controlNav: true,
3191
-				animationLoop: <?php echo $animationLoop;?>,
3192
-				slideshow: <?php echo $slideshow;?>,
3193
-				slideshowSpeed: <?php echo $slideshowSpeed;?>,
3194
-				animationSpeed: <?php echo $animationSpeed;?>,
3195
-				directionNav: <?php echo $directionNav;?>,
3196
-				maxItems: <?php echo $max_show;?>,
3191
+				animationLoop: <?php echo $animationLoop; ?>,
3192
+				slideshow: <?php echo $slideshow; ?>,
3193
+				slideshowSpeed: <?php echo $slideshowSpeed; ?>,
3194
+				animationSpeed: <?php echo $animationSpeed; ?>,
3195
+				directionNav: <?php echo $directionNav; ?>,
3196
+				maxItems: <?php echo $max_show; ?>,
3197 3197
 				move: 1,
3198
-				<?php if ( $slide_width ) {
3199
-				echo "itemWidth: " . $slide_width . ",";
3198
+				<?php if ($slide_width) {
3199
+				echo "itemWidth: ".$slide_width.",";
3200 3200
 			}?>
3201 3201
 				sync: "#geodir_widget_carousel",
3202 3202
 				start: function (slider) {
@@ -3207,7 +3207,7 @@  discard block
 block discarded – undo
3207 3207
 					jQuery('#geodir_widget_slider').css({'visibility': 'visible'});
3208 3208
 					jQuery('#geodir_widget_carousel').css({'visibility': 'visible'});
3209 3209
 				},
3210
-				rtl: <?php echo( is_rtl() ? 'true' : 'false' ); /* fix rtl issue */ ?>
3210
+				rtl: <?php echo(is_rtl() ? 'true' : 'false'); /* fix rtl issue */ ?>
3211 3211
 			});
3212 3212
 		});
3213 3213
 	</script>
@@ -3220,62 +3220,62 @@  discard block
 block discarded – undo
3220 3220
 		'order_by'       => $list_sort
3221 3221
 	);
3222 3222
 
3223
-	if ( $show_featured_only ) {
3223
+	if ($show_featured_only) {
3224 3224
 		$query_args['show_featured_only'] = 1;
3225 3225
 	}
3226 3226
 
3227
-	if ( $category != 0 || $category != '' ) {
3228
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3227
+	if ($category != 0 || $category != '') {
3228
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3229 3229
 		$tax_query         = array(
3230 3230
 			'taxonomy' => $category_taxonomy[0],
3231 3231
 			'field'    => 'id',
3232 3232
 			'terms'    => $category
3233 3233
 		);
3234 3234
 
3235
-		$query_args['tax_query'] = array( $tax_query );
3235
+		$query_args['tax_query'] = array($tax_query);
3236 3236
 	}
3237 3237
 
3238 3238
 	// we want listings with featured image only
3239 3239
 	$query_args['featured_image_only'] = 1;
3240 3240
 
3241
-	if ( $post_type == 'gd_event' ) {
3241
+	if ($post_type == 'gd_event') {
3242 3242
 		$query_args['gedir_event_listing_filter'] = 'upcoming';
3243 3243
 	}// show only upcoming events
3244 3244
 
3245
-	$widget_listings = geodir_get_widget_listings( $query_args );
3246
-	if ( ! empty( $widget_listings ) || ( isset( $with_no_results ) && $with_no_results ) ) {
3247
-		if ( $title ) {
3248
-			echo $before_title . $title . $after_title;
3245
+	$widget_listings = geodir_get_widget_listings($query_args);
3246
+	if (!empty($widget_listings) || (isset($with_no_results) && $with_no_results)) {
3247
+		if ($title) {
3248
+			echo $before_title.$title.$after_title;
3249 3249
 		}
3250 3250
 
3251 3251
 		global $post;
3252 3252
 
3253
-		$current_post = $post;// keep current post info
3253
+		$current_post = $post; // keep current post info
3254 3254
 
3255 3255
 		$widget_main_slides = '';
3256 3256
 		$nav_slides         = '';
3257 3257
 		$widget_slides      = 0;
3258 3258
 
3259
-		foreach ( $widget_listings as $widget_listing ) {
3259
+		foreach ($widget_listings as $widget_listing) {
3260 3260
 			global $gd_widget_listing_type;
3261 3261
 			$post         = $widget_listing;
3262
-			$widget_image = geodir_get_featured_image( $post->ID, 'thumbnail', get_option( 'geodir_listing_no_img' ) );
3262
+			$widget_image = geodir_get_featured_image($post->ID, 'thumbnail', get_option('geodir_listing_no_img'));
3263 3263
 
3264
-			if ( ! empty( $widget_image ) ) {
3265
-				if ( $widget_image->height >= 200 ) {
3264
+			if (!empty($widget_image)) {
3265
+				if ($widget_image->height >= 200) {
3266 3266
 					$widget_spacer_height = 0;
3267 3267
 				} else {
3268
-					$widget_spacer_height = ( ( 200 - $widget_image->height ) / 2 );
3268
+					$widget_spacer_height = ((200 - $widget_image->height) / 2);
3269 3269
 				}
3270 3270
 
3271
-				$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" />';
3271
+				$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" />';
3272 3272
 
3273 3273
 				$title = '';
3274
-				if ( $show_title ) {
3275
-					$title_html     = '<div class="geodir-slider-title"><a href="' . get_permalink( $post->ID ) . '">' . get_the_title( $post->ID ) . '</a></div>';
3274
+				if ($show_title) {
3275
+					$title_html     = '<div class="geodir-slider-title"><a href="'.get_permalink($post->ID).'">'.get_the_title($post->ID).'</a></div>';
3276 3276
 					$post_id        = $post->ID;
3277
-					$post_permalink = get_permalink( $post->ID );
3278
-					$post_title     = get_the_title( $post->ID );
3277
+					$post_permalink = get_permalink($post->ID);
3278
+					$post_title     = get_the_title($post->ID);
3279 3279
 					/**
3280 3280
 					 * Filter the listing slider widget title.
3281 3281
 					 *
@@ -3286,12 +3286,12 @@  discard block
 block discarded – undo
3286 3286
 					 * @param string $post_permalink The post permalink url.
3287 3287
 					 * @param string $post_title     The post title text.
3288 3288
 					 */
3289
-					$title = apply_filters( 'geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title );
3289
+					$title = apply_filters('geodir_listing_slider_title', $title_html, $post_id, $post_permalink, $post_title);
3290 3290
 				}
3291 3291
 
3292
-				$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>';
3293
-				$nav_slides .= '<li><img src="' . $widget_image->src . '" alt="' . $widget_image->title . '" title="' . $widget_image->title . '" style="max-height:48px;margin:0 auto;" /></li>';
3294
-				$widget_slides ++;
3292
+				$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>';
3293
+				$nav_slides .= '<li><img src="'.$widget_image->src.'" alt="'.$widget_image->title.'" title="'.$widget_image->title.'" style="max-height:48px;margin:0 auto;" /></li>';
3294
+				$widget_slides++;
3295 3295
 			}
3296 3296
 		}
3297 3297
 		?>
@@ -3300,7 +3300,7 @@  discard block
 block discarded – undo
3300 3300
 			<div id="geodir_widget_slider" class="geodir_flexslider">
3301 3301
 				<ul class="geodir-slides clearfix"><?php echo $widget_main_slides; ?></ul>
3302 3302
 			</div>
3303
-			<?php if ( $widget_slides > 1 ) { ?>
3303
+			<?php if ($widget_slides > 1) { ?>
3304 3304
 				<div id="geodir_widget_carousel" class="geodir_flexslider">
3305 3305
 					<ul class="geodir-slides clearfix"><?php echo $nav_slides; ?></ul>
3306 3306
 				</div>
@@ -3308,7 +3308,7 @@  discard block
 block discarded – undo
3308 3308
 		</div>
3309 3309
 		<?php
3310 3310
 		$GLOBALS['post'] = $current_post;
3311
-		setup_postdata( $current_post );
3311
+		setup_postdata($current_post);
3312 3312
 	}
3313 3313
 	echo $after_widget;
3314 3314
 }
@@ -3324,46 +3324,46 @@  discard block
 block discarded – undo
3324 3324
  * @param array|string $args     Display arguments including before_title, after_title, before_widget, and after_widget.
3325 3325
  * @param array|string $instance The settings for the particular instance of the widget.
3326 3326
  */
3327
-function geodir_loginwidget_output( $args = '', $instance = '' ) {
3327
+function geodir_loginwidget_output($args = '', $instance = '') {
3328 3328
 	//print_r($args);
3329 3329
 	//print_r($instance);
3330 3330
 	// prints the widget
3331
-	extract( $args, EXTR_SKIP );
3331
+	extract($args, EXTR_SKIP);
3332 3332
 
3333 3333
 	/** This filter is documented in geodirectory_widgets.php */
3334
-	$title = empty( $instance['title'] ) ? __( 'My Dashboard', 'geodirectory' ) : apply_filters( 'my_dashboard_widget_title', __( $instance['title'], 'geodirectory' ) );
3334
+	$title = empty($instance['title']) ? __('My Dashboard', 'geodirectory') : apply_filters('my_dashboard_widget_title', __($instance['title'], 'geodirectory'));
3335 3335
 
3336 3336
 	echo $before_widget;
3337
-	echo $before_title . $title . $after_title;
3337
+	echo $before_title.$title.$after_title;
3338 3338
 
3339
-	if ( is_user_logged_in() ) {
3339
+	if (is_user_logged_in()) {
3340 3340
 		global $current_user;
3341 3341
 
3342
-		$author_link = get_author_posts_url( $current_user->data->ID );
3343
-		$author_link = geodir_getlink( $author_link, array( 'geodir_dashbord' => 'true' ), false );
3342
+		$author_link = get_author_posts_url($current_user->data->ID);
3343
+		$author_link = geodir_getlink($author_link, array('geodir_dashbord' => 'true'), false);
3344 3344
 
3345 3345
 		echo '<ul class="geodir-loginbox-list">';
3346 3346
 		ob_start();
3347 3347
 		?>
3348 3348
 		<li><a class="signin"
3349
-		       href="<?php echo wp_logout_url( home_url() ); ?>"><?php _e( 'Logout', 'geodirectory' ); ?></a></li>
3349
+		       href="<?php echo wp_logout_url(home_url()); ?>"><?php _e('Logout', 'geodirectory'); ?></a></li>
3350 3350
 		<?php
3351
-		$post_types                           = geodir_get_posttypes( 'object' );
3352
-		$show_add_listing_post_types_main_nav = get_option( 'geodir_add_listing_link_user_dashboard' );
3353
-		$geodir_allow_posttype_frontend       = get_option( 'geodir_allow_posttype_frontend' );
3351
+		$post_types                           = geodir_get_posttypes('object');
3352
+		$show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_user_dashboard');
3353
+		$geodir_allow_posttype_frontend       = get_option('geodir_allow_posttype_frontend');
3354 3354
 
3355
-		if ( ! empty( $show_add_listing_post_types_main_nav ) ) {
3355
+		if (!empty($show_add_listing_post_types_main_nav)) {
3356 3356
 			$addlisting_links = '';
3357
-			foreach ( $post_types as $key => $postobj ) {
3357
+			foreach ($post_types as $key => $postobj) {
3358 3358
 
3359
-				if ( in_array( $key, $show_add_listing_post_types_main_nav ) ) {
3359
+				if (in_array($key, $show_add_listing_post_types_main_nav)) {
3360 3360
 
3361
-					if ( $add_link = geodir_get_addlisting_link( $key ) ) {
3361
+					if ($add_link = geodir_get_addlisting_link($key)) {
3362 3362
 
3363 3363
 						$name = $postobj->labels->name;
3364 3364
 
3365 3365
 						$selected = '';
3366
-						if ( geodir_get_current_posttype() == $key && geodir_is_page( 'add-listing' ) ) {
3366
+						if (geodir_get_current_posttype() == $key && geodir_is_page('add-listing')) {
3367 3367
 							$selected = 'selected="selected"';
3368 3368
 						}
3369 3369
 
@@ -3376,23 +3376,23 @@  discard block
 block discarded – undo
3376 3376
 						 * @param string $key       Add listing array key.
3377 3377
 						 * @param int $current_user ->ID Current user ID.
3378 3378
 						 */
3379
-						$add_link = apply_filters( 'geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID );
3380
-						$name = apply_filters( 'geodir_dashboard_label_add_listing', $name, $key, $current_user->ID );
3379
+						$add_link = apply_filters('geodir_dashboard_link_add_listing', $add_link, $key, $current_user->ID);
3380
+						$name = apply_filters('geodir_dashboard_label_add_listing', $name, $key, $current_user->ID);
3381 3381
 
3382
-						$addlisting_links .= '<option ' . $selected . ' value="' . $add_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3382
+						$addlisting_links .= '<option '.$selected.' value="'.$add_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3383 3383
 
3384 3384
 					}
3385 3385
 				}
3386 3386
 
3387 3387
 			}
3388 3388
 
3389
-			if ( $addlisting_links != '' ) { ?>
3389
+			if ($addlisting_links != '') { ?>
3390 3390
 
3391 3391
 				<li><select id="geodir_add_listing" class="chosen_select" onchange="window.location.href=this.value"
3392 3392
 				            option-autoredirect="1" name="geodir_add_listing" option-ajaxchosen="false"
3393
-				            data-placeholder="<?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?>">
3393
+				            data-placeholder="<?php echo esc_attr(__('Add Listing', 'geodirectory')); ?>">
3394 3394
 						<option value="" disabled="disabled" selected="selected"
3395
-						        style='display:none;'><?php echo esc_attr( __( 'Add Listing', 'geodirectory' ) ); ?></option>
3395
+						        style='display:none;'><?php echo esc_attr(__('Add Listing', 'geodirectory')); ?></option>
3396 3396
 						<?php echo $addlisting_links; ?>
3397 3397
 					</select></li> <?php
3398 3398
 
@@ -3400,23 +3400,23 @@  discard block
 block discarded – undo
3400 3400
 
3401 3401
 		}
3402 3402
 		// My Favourites in Dashboard
3403
-		$show_favorite_link_user_dashboard = get_option( 'geodir_favorite_link_user_dashboard' );
3403
+		$show_favorite_link_user_dashboard = get_option('geodir_favorite_link_user_dashboard');
3404 3404
 		$user_favourite                    = geodir_user_favourite_listing_count();
3405 3405
 
3406
-		if ( ! empty( $show_favorite_link_user_dashboard ) && ! empty( $user_favourite ) ) {
3406
+		if (!empty($show_favorite_link_user_dashboard) && !empty($user_favourite)) {
3407 3407
 			$favourite_links = '';
3408 3408
 
3409
-			foreach ( $post_types as $key => $postobj ) {
3410
-				if ( in_array( $key, $show_favorite_link_user_dashboard ) && array_key_exists( $key, $user_favourite ) ) {
3409
+			foreach ($post_types as $key => $postobj) {
3410
+				if (in_array($key, $show_favorite_link_user_dashboard) && array_key_exists($key, $user_favourite)) {
3411 3411
 					$name           = $postobj->labels->name;
3412
-					$post_type_link = geodir_getlink( $author_link, array(
3412
+					$post_type_link = geodir_getlink($author_link, array(
3413 3413
 						'stype' => $key,
3414 3414
 						'list'  => 'favourite'
3415
-					), false );
3415
+					), false);
3416 3416
 
3417 3417
 					$selected = '';
3418 3418
 
3419
-					if ( isset( $_REQUEST['list'] ) && $_REQUEST['list'] == 'favourite' && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key && isset( $_REQUEST['geodir_dashbord'] ) ) {
3419
+					if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite' && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key && isset($_REQUEST['geodir_dashbord'])) {
3420 3420
 						$selected = 'selected="selected"';
3421 3421
 					}
3422 3422
 					/**
@@ -3428,20 +3428,20 @@  discard block
 block discarded – undo
3428 3428
 					 * @param string $key            Favorite listing array key.
3429 3429
 					 * @param int $current_user      ->ID Current user ID.
3430 3430
 					 */
3431
-					$post_type_link = apply_filters( 'geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID );
3431
+					$post_type_link = apply_filters('geodir_dashboard_link_favorite_listing', $post_type_link, $key, $current_user->ID);
3432 3432
 
3433
-					$favourite_links .= '<option ' . $selected . ' value="' . $post_type_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3433
+					$favourite_links .= '<option '.$selected.' value="'.$post_type_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3434 3434
 				}
3435 3435
 			}
3436 3436
 
3437
-			if ( $favourite_links != '' ) {
3437
+			if ($favourite_links != '') {
3438 3438
 				?>
3439 3439
 				<li>
3440 3440
 					<select id="geodir_my_favourites" class="chosen_select" onchange="window.location.href=this.value"
3441 3441
 					        option-autoredirect="1" name="geodir_my_favourites" option-ajaxchosen="false"
3442
-					        data-placeholder="<?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?>">
3442
+					        data-placeholder="<?php echo esc_attr(__('My Favorites', 'geodirectory')); ?>">
3443 3443
 						<option value="" disabled="disabled" selected="selected"
3444
-						        style='display:none;'><?php echo esc_attr( __( 'My Favorites', 'geodirectory' ) ); ?></option>
3444
+						        style='display:none;'><?php echo esc_attr(__('My Favorites', 'geodirectory')); ?></option>
3445 3445
 						<?php echo $favourite_links; ?>
3446 3446
 					</select>
3447 3447
 				</li>
@@ -3450,19 +3450,19 @@  discard block
 block discarded – undo
3450 3450
 		}
3451 3451
 
3452 3452
 
3453
-		$show_listing_link_user_dashboard = get_option( 'geodir_listing_link_user_dashboard' );
3453
+		$show_listing_link_user_dashboard = get_option('geodir_listing_link_user_dashboard');
3454 3454
 		$user_listing                     = geodir_user_post_listing_count();
3455 3455
 
3456
-		if ( ! empty( $show_listing_link_user_dashboard ) && ! empty( $user_listing ) ) {
3456
+		if (!empty($show_listing_link_user_dashboard) && !empty($user_listing)) {
3457 3457
 			$listing_links = '';
3458 3458
 
3459
-			foreach ( $post_types as $key => $postobj ) {
3460
-				if ( in_array( $key, $show_listing_link_user_dashboard ) && array_key_exists( $key, $user_listing ) ) {
3459
+			foreach ($post_types as $key => $postobj) {
3460
+				if (in_array($key, $show_listing_link_user_dashboard) && array_key_exists($key, $user_listing)) {
3461 3461
 					$name         = $postobj->labels->name;
3462
-					$listing_link = geodir_getlink( $author_link, array( 'stype' => $key ), false );
3462
+					$listing_link = geodir_getlink($author_link, array('stype' => $key), false);
3463 3463
 
3464 3464
 					$selected = '';
3465
-					if ( ! isset( $_REQUEST['list'] ) && isset( $_REQUEST['geodir_dashbord'] ) && isset( $_REQUEST['stype'] ) && $_REQUEST['stype'] == $key ) {
3465
+					if (!isset($_REQUEST['list']) && isset($_REQUEST['geodir_dashbord']) && isset($_REQUEST['stype']) && $_REQUEST['stype'] == $key) {
3466 3466
 						$selected = 'selected="selected"';
3467 3467
 					}
3468 3468
 
@@ -3475,20 +3475,20 @@  discard block
 block discarded – undo
3475 3475
 					 * @param string $key          My listing array key.
3476 3476
 					 * @param int $current_user    ->ID Current user ID.
3477 3477
 					 */
3478
-					$listing_link = apply_filters( 'geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID );
3478
+					$listing_link = apply_filters('geodir_dashboard_link_my_listing', $listing_link, $key, $current_user->ID);
3479 3479
 
3480
-					$listing_links .= '<option ' . $selected . ' value="' . $listing_link . '">' . __( geodir_utf8_ucfirst( $name ), 'geodirectory' ) . '</option>';
3480
+					$listing_links .= '<option '.$selected.' value="'.$listing_link.'">'.__(geodir_utf8_ucfirst($name), 'geodirectory').'</option>';
3481 3481
 				}
3482 3482
 			}
3483 3483
 
3484
-			if ( $listing_links != '' ) {
3484
+			if ($listing_links != '') {
3485 3485
 				?>
3486 3486
 				<li>
3487 3487
 					<select id="geodir_my_listings" class="chosen_select" onchange="window.location.href=this.value"
3488 3488
 					        option-autoredirect="1" name="geodir_my_listings" option-ajaxchosen="false"
3489
-					        data-placeholder="<?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?>">
3489
+					        data-placeholder="<?php echo esc_attr(__('My Listings', 'geodirectory')); ?>">
3490 3490
 						<option value="" disabled="disabled" selected="selected"
3491
-						        style='display:none;'><?php echo esc_attr( __( 'My Listings', 'geodirectory' ) ); ?></option>
3491
+						        style='display:none;'><?php echo esc_attr(__('My Listings', 'geodirectory')); ?></option>
3492 3492
 						<?php echo $listing_links; ?>
3493 3493
 					</select>
3494 3494
 				</li>
@@ -3504,7 +3504,7 @@  discard block
 block discarded – undo
3504 3504
 		 *
3505 3505
 		 * @param string $dashboard_link Dashboard links HTML.
3506 3506
 		 */
3507
-		echo apply_filters( 'geodir_dashboard_links', $dashboard_link );
3507
+		echo apply_filters('geodir_dashboard_links', $dashboard_link);
3508 3508
 		echo '</ul>';
3509 3509
 
3510 3510
 		/**
@@ -3512,7 +3512,7 @@  discard block
 block discarded – undo
3512 3512
 		 *
3513 3513
 		 * @since 1.6.6
3514 3514
 		 */
3515
-		do_action( 'geodir_after_loginwidget_form_logged_in' );
3515
+		do_action('geodir_after_loginwidget_form_logged_in');
3516 3516
 
3517 3517
 
3518 3518
 	} else {
@@ -3527,18 +3527,18 @@  discard block
 block discarded – undo
3527 3527
 		<form name="loginform" class="loginform1"
3528 3528
 		      action="<?php echo geodir_login_url(); ?>"
3529 3529
 		      method="post">
3530
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Email', 'geodirectory' ); ?>" name="log"
3530
+			<div class="geodir_form_row"><input placeholder="<?php _e('Email', 'geodirectory'); ?>" name="log"
3531 3531
 			                                    type="text" class="textfield user_login1"/> <span
3532 3532
 					class="user_loginInfo"></span></div>
3533
-			<div class="geodir_form_row"><input placeholder="<?php _e( 'Password', 'geodirectory' ); ?>"
3533
+			<div class="geodir_form_row"><input placeholder="<?php _e('Password', 'geodirectory'); ?>"
3534 3534
 			                                    name="pwd" type="password"
3535 3535
 			                                    class="textfield user_pass1 input-text"/><span
3536 3536
 					class="user_passInfo"></span></div>
3537 3537
 
3538
-			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars( geodir_curPageURL() ); ?>"/>
3538
+			<input type="hidden" name="redirect_to" value="<?php echo htmlspecialchars(geodir_curPageURL()); ?>"/>
3539 3539
 			<input type="hidden" name="testcookie" value="1"/>
3540 3540
 
3541
-				<?php do_action( 'login_form' ); ?>
3541
+				<?php do_action('login_form'); ?>
3542 3542
 
3543 3543
 			<div class="geodir_form_row clearfix"><input type="submit" name="submit"
3544 3544
 			                                             value="<?php echo SIGN_IN_BUTTON; ?>" class="b_signin"/>
@@ -3550,11 +3550,11 @@  discard block
 block discarded – undo
3550 3550
 					 *
3551 3551
 					 * @since 1.0.0
3552 3552
 					 */
3553
-					$is_enable_signup = get_option( 'users_can_register' );
3553
+					$is_enable_signup = get_option('users_can_register');
3554 3554
 					
3555
-					if ( $is_enable_signup ) {
3555
+					if ($is_enable_signup) {
3556 3556
 					?>
3557
-						<a href="<?php echo geodir_login_url( array( 'signup' => true ) ); ?>"
3557
+						<a href="<?php echo geodir_login_url(array('signup' => true)); ?>"
3558 3558
 						   class="goedir-newuser-link"><?php echo NEW_USER_TEXT; ?></a>
3559 3559
 
3560 3560
 					<?php
@@ -3565,7 +3565,7 @@  discard block
 block discarded – undo
3565 3565
 					 * @since 1.0.0
3566 3566
 					 */
3567 3567
 					?>
3568
-					<a href="<?php echo geodir_login_url( array( 'forgot' => true ) ); ?>"
3568
+					<a href="<?php echo geodir_login_url(array('forgot' => true)); ?>"
3569 3569
 					   class="goedir-forgot-link"><?php echo FORGOT_PW_TEXT; ?></a></p></div>
3570 3570
 		</form>
3571 3571
 		<?php
@@ -3574,7 +3574,7 @@  discard block
 block discarded – undo
3574 3574
 		 *
3575 3575
 		 * @since 1.6.6
3576 3576
 		 */
3577
-		do_action( 'geodir_after_loginwidget_form_logged_out' );
3577
+		do_action('geodir_after_loginwidget_form_logged_out');
3578 3578
 	}
3579 3579
 
3580 3580
 	echo $after_widget;
@@ -3596,16 +3596,16 @@  discard block
 block discarded – undo
3596 3596
  *                                         after_widget.
3597 3597
  * @param array|string $instance           The settings for the particular instance of the widget.
3598 3598
  */
3599
-function geodir_popular_postview_output( $args = '', $instance = '' ) {
3599
+function geodir_popular_postview_output($args = '', $instance = '') {
3600 3600
 	global $gd_session;
3601 3601
 
3602 3602
 	// prints the widget
3603
-	extract( $args, EXTR_SKIP );
3603
+	extract($args, EXTR_SKIP);
3604 3604
 
3605 3605
 	echo $before_widget;
3606 3606
 
3607 3607
 	/** This filter is documented in geodirectory_widgets.php */
3608
-	$title = empty( $instance['title'] ) ? geodir_ucwords( $instance['category_title'] ) : apply_filters( 'widget_title', __( $instance['title'], 'geodirectory' ) );
3608
+	$title = empty($instance['title']) ? geodir_ucwords($instance['category_title']) : apply_filters('widget_title', __($instance['title'], 'geodirectory'));
3609 3609
 	/**
3610 3610
 	 * Filter the widget post type.
3611 3611
 	 *
@@ -3613,7 +3613,7 @@  discard block
 block discarded – undo
3613 3613
 	 *
3614 3614
 	 * @param string $instance ['post_type'] Post type of listing.
3615 3615
 	 */
3616
-	$post_type = empty( $instance['post_type'] ) ? 'gd_place' : apply_filters( 'widget_post_type', $instance['post_type'] );
3616
+	$post_type = empty($instance['post_type']) ? 'gd_place' : apply_filters('widget_post_type', $instance['post_type']);
3617 3617
 	/**
3618 3618
 	 * Filter the widget's term.
3619 3619
 	 *
@@ -3621,7 +3621,7 @@  discard block
 block discarded – undo
3621 3621
 	 *
3622 3622
 	 * @param string $instance ['category'] Filter by term. Can be any valid term.
3623 3623
 	 */
3624
-	$category = empty( $instance['category'] ) ? '0' : apply_filters( 'widget_category', $instance['category'] );
3624
+	$category = empty($instance['category']) ? '0' : apply_filters('widget_category', $instance['category']);
3625 3625
 	/**
3626 3626
 	 * Filter the widget listings limit.
3627 3627
 	 *
@@ -3629,7 +3629,7 @@  discard block
 block discarded – undo
3629 3629
 	 *
3630 3630
 	 * @param string $instance ['post_number'] Number of listings to display.
3631 3631
 	 */
3632
-	$post_number = empty( $instance['post_number'] ) ? '5' : apply_filters( 'widget_post_number', $instance['post_number'] );
3632
+	$post_number = empty($instance['post_number']) ? '5' : apply_filters('widget_post_number', $instance['post_number']);
3633 3633
 	/**
3634 3634
 	 * Filter widget's "layout" type.
3635 3635
 	 *
@@ -3637,7 +3637,7 @@  discard block
 block discarded – undo
3637 3637
 	 *
3638 3638
 	 * @param string $instance ['layout'] Widget layout type.
3639 3639
 	 */
3640
-	$layout = empty( $instance['layout'] ) ? 'gridview_onehalf' : apply_filters( 'widget_layout', $instance['layout'] );
3640
+	$layout = empty($instance['layout']) ? 'gridview_onehalf' : apply_filters('widget_layout', $instance['layout']);
3641 3641
 	/**
3642 3642
 	 * Filter widget's "add_location_filter" value.
3643 3643
 	 *
@@ -3645,7 +3645,7 @@  discard block
 block discarded – undo
3645 3645
 	 *
3646 3646
 	 * @param string|bool $instance ['add_location_filter'] Do you want to add location filter? Can be 1 or 0.
3647 3647
 	 */
3648
-	$add_location_filter = empty( $instance['add_location_filter'] ) ? '0' : apply_filters( 'widget_add_location_filter', $instance['add_location_filter'] );
3648
+	$add_location_filter = empty($instance['add_location_filter']) ? '0' : apply_filters('widget_add_location_filter', $instance['add_location_filter']);
3649 3649
 	/**
3650 3650
 	 * Filter widget's listing width.
3651 3651
 	 *
@@ -3653,7 +3653,7 @@  discard block
 block discarded – undo
3653 3653
 	 *
3654 3654
 	 * @param string $instance ['listing_width'] Listing width.
3655 3655
 	 */
3656
-	$listing_width = empty( $instance['listing_width'] ) ? '' : apply_filters( 'widget_listing_width', $instance['listing_width'] );
3656
+	$listing_width = empty($instance['listing_width']) ? '' : apply_filters('widget_listing_width', $instance['listing_width']);
3657 3657
 	/**
3658 3658
 	 * Filter widget's "list_sort" type.
3659 3659
 	 *
@@ -3661,25 +3661,25 @@  discard block
 block discarded – undo
3661 3661
 	 *
3662 3662
 	 * @param string $instance ['list_sort'] Listing sort by type.
3663 3663
 	 */
3664
-	$list_sort             = empty( $instance['list_sort'] ) ? 'latest' : apply_filters( 'widget_list_sort', $instance['list_sort'] );
3665
-	$use_viewing_post_type = ! empty( $instance['use_viewing_post_type'] ) ? true : false;
3664
+	$list_sort             = empty($instance['list_sort']) ? 'latest' : apply_filters('widget_list_sort', $instance['list_sort']);
3665
+	$use_viewing_post_type = !empty($instance['use_viewing_post_type']) ? true : false;
3666 3666
 
3667 3667
 	// set post type to current viewing post type
3668
-	if ( $use_viewing_post_type ) {
3668
+	if ($use_viewing_post_type) {
3669 3669
 		$current_post_type = geodir_get_current_posttype();
3670
-		if ( $current_post_type != '' && $current_post_type != $post_type ) {
3670
+		if ($current_post_type != '' && $current_post_type != $post_type) {
3671 3671
 			$post_type = $current_post_type;
3672 3672
 			$category  = array(); // old post type category will not work for current changed post type
3673 3673
 		}
3674 3674
 	}
3675 3675
 	// replace widget title dynamically
3676
-	$posttype_plural_label   = __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3677
-	$posttype_singular_label = __( get_post_type_singular_label( $post_type ), 'geodirectory' );
3676
+	$posttype_plural_label   = __(get_post_type_plural_label($post_type), 'geodirectory');
3677
+	$posttype_singular_label = __(get_post_type_singular_label($post_type), 'geodirectory');
3678 3678
 
3679
-	$title = str_replace( "%posttype_plural_label%", $posttype_plural_label, $title );
3680
-	$title = str_replace( "%posttype_singular_label%", $posttype_singular_label, $title );
3679
+	$title = str_replace("%posttype_plural_label%", $posttype_plural_label, $title);
3680
+	$title = str_replace("%posttype_singular_label%", $posttype_singular_label, $title);
3681 3681
 
3682
-	if ( isset( $instance['character_count'] ) ) {
3682
+	if (isset($instance['character_count'])) {
3683 3683
 		/**
3684 3684
 		 * Filter the widget's excerpt character count.
3685 3685
 		 *
@@ -3687,37 +3687,37 @@  discard block
 block discarded – undo
3687 3687
 		 *
3688 3688
 		 * @param int $instance ['character_count'] Excerpt character count.
3689 3689
 		 */
3690
-		$character_count = apply_filters( 'widget_list_character_count', $instance['character_count'] );
3690
+		$character_count = apply_filters('widget_list_character_count', $instance['character_count']);
3691 3691
 	} else {
3692 3692
 		$character_count = '';
3693 3693
 	}
3694 3694
 
3695
-	if ( empty( $title ) || $title == 'All' ) {
3696
-		$title .= ' ' . __( get_post_type_plural_label( $post_type ), 'geodirectory' );
3695
+	if (empty($title) || $title == 'All') {
3696
+		$title .= ' '.__(get_post_type_plural_label($post_type), 'geodirectory');
3697 3697
 	}
3698 3698
 
3699 3699
 	$location_url = array();
3700
-	$city         = get_query_var( 'gd_city' );
3701
-	if ( ! empty( $city ) ) {
3702
-		$country = get_query_var( 'gd_country' );
3703
-		$region  = get_query_var( 'gd_region' );
3700
+	$city         = get_query_var('gd_city');
3701
+	if (!empty($city)) {
3702
+		$country = get_query_var('gd_country');
3703
+		$region  = get_query_var('gd_region');
3704 3704
 
3705
-		$geodir_show_location_url = get_option( 'geodir_show_location_url' );
3705
+		$geodir_show_location_url = get_option('geodir_show_location_url');
3706 3706
 
3707
-		if ( $geodir_show_location_url == 'all' ) {
3708
-			if ( $country != '' ) {
3707
+		if ($geodir_show_location_url == 'all') {
3708
+			if ($country != '') {
3709 3709
 				$location_url[] = $country;
3710 3710
 			}
3711 3711
 
3712
-			if ( $region != '' ) {
3712
+			if ($region != '') {
3713 3713
 				$location_url[] = $region;
3714 3714
 			}
3715
-		} else if ( $geodir_show_location_url == 'country_city' ) {
3716
-			if ( $country != '' ) {
3715
+		} else if ($geodir_show_location_url == 'country_city') {
3716
+			if ($country != '') {
3717 3717
 				$location_url[] = $country;
3718 3718
 			}
3719
-		} else if ( $geodir_show_location_url == 'region_city' ) {
3720
-			if ( $region != '' ) {
3719
+		} else if ($geodir_show_location_url == 'region_city') {
3720
+			if ($region != '') {
3721 3721
 				$location_url[] = $region;
3722 3722
 			}
3723 3723
 		}
@@ -3725,37 +3725,37 @@  discard block
 block discarded – undo
3725 3725
 		$location_url[] = $city;
3726 3726
 	}
3727 3727
 
3728
-	$location_url  = implode( '/', $location_url );
3728
+	$location_url  = implode('/', $location_url);
3729 3729
 	$skip_location = false;
3730
-	if ( ! $add_location_filter && $gd_session->get( 'gd_multi_location' ) ) {
3730
+	if (!$add_location_filter && $gd_session->get('gd_multi_location')) {
3731 3731
 		$skip_location = true;
3732
-		$gd_session->un_set( 'gd_multi_location' );
3732
+		$gd_session->un_set('gd_multi_location');
3733 3733
 	}
3734 3734
 
3735
-	if ( get_option( 'permalink_structure' ) ) {
3736
-		$viewall_url = get_post_type_archive_link( $post_type );
3735
+	if (get_option('permalink_structure')) {
3736
+		$viewall_url = get_post_type_archive_link($post_type);
3737 3737
 	} else {
3738
-		$viewall_url = get_post_type_archive_link( $post_type );
3738
+		$viewall_url = get_post_type_archive_link($post_type);
3739 3739
 	}
3740 3740
 
3741
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3741
+	if (!empty($category) && $category[0] != '0') {
3742 3742
 		global $geodir_add_location_url;
3743 3743
 
3744 3744
 		$geodir_add_location_url = '0';
3745 3745
 
3746
-		if ( $add_location_filter != '0' ) {
3746
+		if ($add_location_filter != '0') {
3747 3747
 			$geodir_add_location_url = '1';
3748 3748
 		}
3749 3749
 
3750
-		$viewall_url = get_term_link( (int) $category[0], $post_type . 'category' );
3750
+		$viewall_url = get_term_link((int) $category[0], $post_type.'category');
3751 3751
 
3752 3752
 		$geodir_add_location_url = null;
3753 3753
 	}
3754
-	if ( $skip_location ) {
3755
-		$gd_session->set( 'gd_multi_location', 1 );
3754
+	if ($skip_location) {
3755
+		$gd_session->set('gd_multi_location', 1);
3756 3756
 	}
3757 3757
 
3758
-	if ( is_wp_error( $viewall_url ) ) {
3758
+	if (is_wp_error($viewall_url)) {
3759 3759
 		$viewall_url = '';
3760 3760
 	}
3761 3761
 
@@ -3767,34 +3767,34 @@  discard block
 block discarded – undo
3767 3767
 		'order_by'       => $list_sort
3768 3768
 	);
3769 3769
 
3770
-	if ( $character_count ) {
3770
+	if ($character_count) {
3771 3771
 		$query_args['excerpt_length'] = $character_count;
3772 3772
 	}
3773 3773
 
3774
-	if ( ! empty( $instance['show_featured_only'] ) ) {
3774
+	if (!empty($instance['show_featured_only'])) {
3775 3775
 		$query_args['show_featured_only'] = 1;
3776 3776
 	}
3777 3777
 
3778
-	if ( ! empty( $instance['show_special_only'] ) ) {
3778
+	if (!empty($instance['show_special_only'])) {
3779 3779
 		$query_args['show_special_only'] = 1;
3780 3780
 	}
3781 3781
 
3782
-	if ( ! empty( $instance['with_pics_only'] ) ) {
3782
+	if (!empty($instance['with_pics_only'])) {
3783 3783
 		$query_args['with_pics_only']      = 0;
3784 3784
 		$query_args['featured_image_only'] = 1;
3785 3785
 	}
3786 3786
 
3787
-	if ( ! empty( $instance['with_videos_only'] ) ) {
3787
+	if (!empty($instance['with_videos_only'])) {
3788 3788
 		$query_args['with_videos_only'] = 1;
3789 3789
 	}
3790
-	$with_no_results = ! empty( $instance['without_no_results'] ) ? false : true;
3790
+	$with_no_results = !empty($instance['without_no_results']) ? false : true;
3791 3791
 
3792
-	if ( ! empty( $category ) && $category[0] != '0' ) {
3793
-		$category_taxonomy = geodir_get_taxonomies( $post_type );
3792
+	if (!empty($category) && $category[0] != '0') {
3793
+		$category_taxonomy = geodir_get_taxonomies($post_type);
3794 3794
 
3795 3795
 		######### WPML #########
3796
-		if ( function_exists( 'icl_object_id' ) ) {
3797
-			$category = gd_lang_object_ids( $category, $category_taxonomy[0] );
3796
+		if (function_exists('icl_object_id')) {
3797
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
3798 3798
 		}
3799 3799
 		######### WPML #########
3800 3800
 
@@ -3804,14 +3804,14 @@  discard block
 block discarded – undo
3804 3804
 			'terms'    => $category
3805 3805
 		);
3806 3806
 
3807
-		$query_args['tax_query'] = array( $tax_query );
3807
+		$query_args['tax_query'] = array($tax_query);
3808 3808
 	}
3809 3809
 
3810 3810
 	global $gridview_columns_widget, $geodir_is_widget_listing;
3811 3811
 
3812
-	$widget_listings = geodir_get_widget_listings( $query_args );
3812
+	$widget_listings = geodir_get_widget_listings($query_args);
3813 3813
 
3814
-	if ( ! empty( $widget_listings ) || $with_no_results ) {
3814
+	if (!empty($widget_listings) || $with_no_results) {
3815 3815
 		?>
3816 3816
 		<div class="geodir_locations geodir_location_listing">
3817 3817
 
@@ -3821,11 +3821,11 @@  discard block
 block discarded – undo
3821 3821
 			 *
3822 3822
 			 * @since 1.0.0
3823 3823
 			 */
3824
-			do_action( 'geodir_before_view_all_link_in_widget' ); ?>
3824
+			do_action('geodir_before_view_all_link_in_widget'); ?>
3825 3825
 			<div class="geodir_list_heading clearfix">
3826
-				<?php echo $before_title . $title . $after_title; ?>
3826
+				<?php echo $before_title.$title.$after_title; ?>
3827 3827
 				<a href="<?php echo $viewall_url; ?>"
3828
-				   class="geodir-viewall"><?php _e( 'View all', 'geodirectory' ); ?></a>
3828
+				   class="geodir-viewall"><?php _e('View all', 'geodirectory'); ?></a>
3829 3829
 			</div>
3830 3830
 			<?php
3831 3831
 			/**
@@ -3833,10 +3833,10 @@  discard block
 block discarded – undo
3833 3833
 			 *
3834 3834
 			 * @since 1.0.0
3835 3835
 			 */
3836
-			do_action( 'geodir_after_view_all_link_in_widget' ); ?>
3836
+			do_action('geodir_after_view_all_link_in_widget'); ?>
3837 3837
 			<?php
3838
-			if ( strstr( $layout, 'gridview' ) ) {
3839
-				$listing_view_exp        = explode( '_', $layout );
3838
+			if (strstr($layout, 'gridview')) {
3839
+				$listing_view_exp        = explode('_', $layout);
3840 3840
 				$gridview_columns_widget = $layout;
3841 3841
 				$layout                  = $listing_view_exp[0];
3842 3842
 			} else {
@@ -3848,8 +3848,8 @@  discard block
 block discarded – undo
3848 3848
 			 *
3849 3849
 			 * @since 1.0.0
3850 3850
 			 */
3851
-			$template = apply_filters( "geodir_template_part-widget-listing-listview", geodir_locate_template( 'widget-listing-listview' ) );
3852
-			if ( ! isset( $character_count ) ) {
3851
+			$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
3852
+			if (!isset($character_count)) {
3853 3853
 				/**
3854 3854
 				 * Filter the widget's excerpt character count.
3855 3855
 				 *
@@ -3857,7 +3857,7 @@  discard block
 block discarded – undo
3857 3857
 				 *
3858 3858
 				 * @param int $instance ['character_count'] Excerpt character count.
3859 3859
 				 */
3860
-				$character_count = $character_count == '' ? 50 : apply_filters( 'widget_character_count', $character_count );
3860
+				$character_count = $character_count == '' ? 50 : apply_filters('widget_character_count', $character_count);
3861 3861
 			}
3862 3862
 
3863 3863
 			global $post, $map_jason, $map_canvas_arr;
@@ -3872,13 +3872,13 @@  discard block
 block discarded – undo
3872 3872
 			 *
3873 3873
 			 * @since 1.0.0
3874 3874
 			 */
3875
-			include( $template );
3875
+			include($template);
3876 3876
 
3877 3877
 			$geodir_is_widget_listing = false;
3878 3878
 
3879 3879
 			$GLOBALS['post'] = $current_post;
3880
-			if ( ! empty( $current_post ) ) {
3881
-				setup_postdata( $current_post );
3880
+			if (!empty($current_post)) {
3881
+				setup_postdata($current_post);
3882 3882
 			}
3883 3883
 			$map_jason      = $current_map_jason;
3884 3884
 			$map_canvas_arr = $current_map_canvas_arr;
@@ -3909,12 +3909,12 @@  discard block
 block discarded – undo
3909 3909
  *
3910 3910
  * @return int Reviews count.
3911 3911
  */
3912
-function geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type ) {
3912
+function geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type) {
3913 3913
 	global $wpdb, $plugin_prefix;
3914 3914
 
3915
-	$detail_table = $plugin_prefix . $post_type . '_detail';
3915
+	$detail_table = $plugin_prefix.$post_type.'_detail';
3916 3916
 
3917
-	$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 . ")";
3917
+	$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.")";
3918 3918
 
3919 3919
 	/**
3920 3920
 	 * Filter count review sql query.
@@ -3926,9 +3926,9 @@  discard block
 block discarded – undo
3926 3926
 	 * @param int $taxonomy     The taxonomy Id.
3927 3927
 	 * @param string $post_type The post type.
3928 3928
 	 */
3929
-	$sql = apply_filters( 'geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type );
3929
+	$sql = apply_filters('geodir_count_reviews_by_term_sql', $sql, $term_id, $taxonomy, $post_type);
3930 3930
 
3931
-	$count = $wpdb->get_var( $sql );
3931
+	$count = $wpdb->get_var($sql);
3932 3932
 
3933 3933
 	return $count;
3934 3934
 }
@@ -3946,7 +3946,7 @@  discard block
 block discarded – undo
3946 3946
  *
3947 3947
  * @return array Term array data.
3948 3948
  */
3949
-function geodir_count_reviews_by_terms( $force_update = false, $post_ID = 0 ) {
3949
+function geodir_count_reviews_by_terms($force_update = false, $post_ID = 0) {
3950 3950
 	/**
3951 3951
 	 * Filter review count option data.
3952 3952
 	 *
@@ -3956,78 +3956,78 @@  discard block
 block discarded – undo
3956 3956
 	 * @param bool $force_update Force update option value?. Default.false.
3957 3957
 	 * @param int $post_ID       The post id to update if any.
3958 3958
 	 */
3959
-	$option_data = apply_filters( 'geodir_count_reviews_by_terms_before', '', $force_update, $post_ID );
3960
-	if ( ! empty( $option_data ) ) {
3959
+	$option_data = apply_filters('geodir_count_reviews_by_terms_before', '', $force_update, $post_ID);
3960
+	if (!empty($option_data)) {
3961 3961
 		return $option_data;
3962 3962
 	}
3963 3963
 
3964
-	$option_data = get_option( 'geodir_global_review_count' );
3964
+	$option_data = get_option('geodir_global_review_count');
3965 3965
 
3966
-	if ( ! $option_data || $force_update ) {
3967
-		if ( (int) $post_ID > 0 ) { // Update reviews count for specific post categories only.
3966
+	if (!$option_data || $force_update) {
3967
+		if ((int) $post_ID > 0) { // Update reviews count for specific post categories only.
3968 3968
 			global $gd_session;
3969 3969
 			$term_array = (array) $option_data;
3970
-			$post_type  = get_post_type( $post_ID );
3971
-			$taxonomy   = $post_type . 'category';
3972
-			$terms      = wp_get_object_terms( $post_ID, $taxonomy, array( 'fields' => 'ids' ) );
3973
-
3974
-			if ( ! empty( $terms ) && ! is_wp_error( $terms ) ) {
3975
-				foreach ( $terms as $term_id ) {
3976
-					$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3977
-					$children               = get_term_children( $term_id, $taxonomy );
3978
-					$term_array[ $term_id ] = $count;
3970
+			$post_type  = get_post_type($post_ID);
3971
+			$taxonomy   = $post_type.'category';
3972
+			$terms      = wp_get_object_terms($post_ID, $taxonomy, array('fields' => 'ids'));
3973
+
3974
+			if (!empty($terms) && !is_wp_error($terms)) {
3975
+				foreach ($terms as $term_id) {
3976
+					$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3977
+					$children               = get_term_children($term_id, $taxonomy);
3978
+					$term_array[$term_id] = $count;
3979 3979
 				}
3980 3980
 			}
3981 3981
 
3982
-			$session_listing = $gd_session->get( 'listing' );
3982
+			$session_listing = $gd_session->get('listing');
3983 3983
 
3984 3984
 			$terms = array();
3985
-			if ( isset( $_POST['post_category'][ $taxonomy ] ) ) {
3986
-				$terms = (array) $_POST['post_category'][ $taxonomy ];
3987
-			} else if ( ! empty( $session_listing ) && isset( $session_listing['post_category'][ $taxonomy ] ) ) {
3988
-				$terms = (array) $session_listing['post_category'][ $taxonomy ];
3985
+			if (isset($_POST['post_category'][$taxonomy])) {
3986
+				$terms = (array) $_POST['post_category'][$taxonomy];
3987
+			} else if (!empty($session_listing) && isset($session_listing['post_category'][$taxonomy])) {
3988
+				$terms = (array) $session_listing['post_category'][$taxonomy];
3989 3989
 			}
3990 3990
 
3991
-			if ( ! empty( $terms ) ) {
3992
-				foreach ( $terms as $term_id ) {
3993
-					if ( $term_id > 0 ) {
3994
-						$count                  = geodir_count_reviews_by_term_id( $term_id, $taxonomy, $post_type );
3995
-						$children               = get_term_children( $term_id, $taxonomy );
3996
-						$term_array[ $term_id ] = $count;
3991
+			if (!empty($terms)) {
3992
+				foreach ($terms as $term_id) {
3993
+					if ($term_id > 0) {
3994
+						$count                  = geodir_count_reviews_by_term_id($term_id, $taxonomy, $post_type);
3995
+						$children               = get_term_children($term_id, $taxonomy);
3996
+						$term_array[$term_id] = $count;
3997 3997
 					}
3998 3998
 				}
3999 3999
 			}
4000 4000
 		} else { // Update reviews count for all post categories.
4001 4001
 			$term_array = array();
4002 4002
 			$post_types = geodir_get_posttypes();
4003
-			foreach ( $post_types as $post_type ) {
4003
+			foreach ($post_types as $post_type) {
4004 4004
 
4005
-				$taxonomy = geodir_get_taxonomies( $post_type );
4005
+				$taxonomy = geodir_get_taxonomies($post_type);
4006 4006
 				$taxonomy = $taxonomy[0];
4007 4007
 
4008 4008
 				$args = array(
4009 4009
 					'hide_empty' => false
4010 4010
 				);
4011 4011
 
4012
-				$terms = get_terms( $taxonomy, $args );
4012
+				$terms = get_terms($taxonomy, $args);
4013 4013
 
4014
-				foreach ( $terms as $term ) {
4015
-					$count    = geodir_count_reviews_by_term_id( $term->term_id, $taxonomy, $post_type );
4016
-					$children = get_term_children( $term->term_id, $taxonomy );
4014
+				foreach ($terms as $term) {
4015
+					$count    = geodir_count_reviews_by_term_id($term->term_id, $taxonomy, $post_type);
4016
+					$children = get_term_children($term->term_id, $taxonomy);
4017 4017
 					/*if ( is_array( $children ) ) {
4018 4018
                         foreach ( $children as $child_id ) {
4019 4019
                             $child_count = geodir_count_reviews_by_term_id($child_id, $taxonomy, $post_type);
4020 4020
                             $count = $count + $child_count;
4021 4021
                         }
4022 4022
                     }*/
4023
-					$term_array[ $term->term_id ] = $count;
4023
+					$term_array[$term->term_id] = $count;
4024 4024
 				}
4025 4025
 			}
4026 4026
 		}
4027 4027
 
4028
-		update_option( 'geodir_global_review_count', $term_array );
4028
+		update_option('geodir_global_review_count', $term_array);
4029 4029
 		//clear cache
4030
-		wp_cache_delete( 'geodir_global_review_count' );
4030
+		wp_cache_delete('geodir_global_review_count');
4031 4031
 
4032 4032
 		return $term_array;
4033 4033
 	} else {
@@ -4043,39 +4043,39 @@  discard block
 block discarded – undo
4043 4043
  * @package GeoDirectory
4044 4044
  * @return bool
4045 4045
  */
4046
-function geodir_term_review_count_force_update( $new_status, $old_status = '', $post = '' ) {
4047
-	if ( isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'geodir_import_export' ) {
4046
+function geodir_term_review_count_force_update($new_status, $old_status = '', $post = '') {
4047
+	if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'geodir_import_export') {
4048 4048
 		return; // do not run if importing listings
4049 4049
 	}
4050 4050
 
4051
-	if ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) {
4051
+	if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) {
4052 4052
 		return;
4053 4053
 	}
4054 4054
 
4055 4055
 	$post_ID = 0;
4056
-	if ( ! empty( $post ) ) {
4057
-		if ( isset( $post->post_type ) && strpos( $post->post_type, 'gd_' ) !== 0 ) {
4056
+	if (!empty($post)) {
4057
+		if (isset($post->post_type) && strpos($post->post_type, 'gd_') !== 0) {
4058 4058
 			return;
4059 4059
 		}
4060 4060
 
4061
-		if ( $new_status == 'auto-draft' && $old_status == 'new' ) {
4061
+		if ($new_status == 'auto-draft' && $old_status == 'new') {
4062 4062
 			return;
4063 4063
 		}
4064 4064
 
4065
-		if ( ! empty( $post->ID ) ) {
4065
+		if (!empty($post->ID)) {
4066 4066
 			$post_ID = $post->ID;
4067 4067
 		}
4068 4068
 	}
4069 4069
 
4070
-	if ( $new_status != $old_status ) {
4071
-		geodir_count_reviews_by_terms( true, $post_ID );
4070
+	if ($new_status != $old_status) {
4071
+		geodir_count_reviews_by_terms(true, $post_ID);
4072 4072
 	}
4073 4073
 
4074 4074
 	return true;
4075 4075
 }
4076 4076
 
4077
-function geodir_term_review_count_force_update_single_post( $post_id ) {
4078
-	geodir_count_reviews_by_terms( true, $post_id );
4077
+function geodir_term_review_count_force_update_single_post($post_id) {
4078
+	geodir_count_reviews_by_terms(true, $post_id);
4079 4079
 }
4080 4080
 
4081 4081
 /*-----------------------------------------------------------------------------------*/
@@ -4092,11 +4092,11 @@  discard block
 block discarded – undo
4092 4092
  *
4093 4093
  * @return int Post count.
4094 4094
  */
4095
-function geodir_count_posts_by_term( $data, $term ) {
4095
+function geodir_count_posts_by_term($data, $term) {
4096 4096
 
4097
-	if ( $data ) {
4098
-		if ( isset( $data[ $term->term_id ] ) ) {
4099
-			return $data[ $term->term_id ];
4097
+	if ($data) {
4098
+		if (isset($data[$term->term_id])) {
4099
+			return $data[$term->term_id];
4100 4100
 		} else {
4101 4101
 			return 0;
4102 4102
 		}
@@ -4113,8 +4113,8 @@  discard block
 block discarded – undo
4113 4113
  * param array $terms An array of term objects.
4114 4114
  * @return array Sorted terms array.
4115 4115
  */
4116
-function geodir_sort_terms_by_count( $terms ) {
4117
-	usort( $terms, "geodir_sort_by_count_obj" );
4116
+function geodir_sort_terms_by_count($terms) {
4117
+	usort($terms, "geodir_sort_by_count_obj");
4118 4118
 
4119 4119
 	return $terms;
4120 4120
 }
@@ -4129,8 +4129,8 @@  discard block
 block discarded – undo
4129 4129
  *
4130 4130
  * @return array Sorted terms array.
4131 4131
  */
4132
-function geodir_sort_terms_by_review_count( $terms ) {
4133
-	usort( $terms, "geodir_sort_by_review_count_obj" );
4132
+function geodir_sort_terms_by_review_count($terms) {
4133
+	usort($terms, "geodir_sort_by_review_count_obj");
4134 4134
 
4135 4135
 	return $terms;
4136 4136
 }
@@ -4146,12 +4146,12 @@  discard block
 block discarded – undo
4146 4146
  *
4147 4147
  * @return array Sorted terms array.
4148 4148
  */
4149
-function geodir_sort_terms( $terms, $sort = 'count' ) {
4150
-	if ( $sort == 'count' ) {
4151
-		return geodir_sort_terms_by_count( $terms );
4149
+function geodir_sort_terms($terms, $sort = 'count') {
4150
+	if ($sort == 'count') {
4151
+		return geodir_sort_terms_by_count($terms);
4152 4152
 	}
4153
-	if ( $sort == 'review_count' ) {
4154
-		return geodir_sort_terms_by_review_count( $terms );
4153
+	if ($sort == 'review_count') {
4154
+		return geodir_sort_terms_by_review_count($terms);
4155 4155
 	}
4156 4156
 }
4157 4157
 
@@ -4169,7 +4169,7 @@  discard block
 block discarded – undo
4169 4169
  *
4170 4170
  * @return bool
4171 4171
  */
4172
-function geodir_sort_by_count( $a, $b ) {
4172
+function geodir_sort_by_count($a, $b) {
4173 4173
 	return $a['count'] < $b['count'];
4174 4174
 }
4175 4175
 
@@ -4184,7 +4184,7 @@  discard block
 block discarded – undo
4184 4184
  *
4185 4185
  * @return bool
4186 4186
  */
4187
-function geodir_sort_by_count_obj( $a, $b ) {
4187
+function geodir_sort_by_count_obj($a, $b) {
4188 4188
 	return $a->count < $b->count;
4189 4189
 }
4190 4190
 
@@ -4199,7 +4199,7 @@  discard block
 block discarded – undo
4199 4199
  *
4200 4200
  * @return bool
4201 4201
  */
4202
-function geodir_sort_by_review_count_obj( $a, $b ) {
4202
+function geodir_sort_by_review_count_obj($a, $b) {
4203 4203
 	return $a->review_count < $b->review_count;
4204 4204
 }
4205 4205
 
@@ -4216,35 +4216,35 @@  discard block
 block discarded – undo
4216 4216
 	 * @since   1.4.2
4217 4217
 	 * @package GeoDirectory
4218 4218
 	 */
4219
-	$locale = apply_filters( 'plugin_locale', get_locale(), 'geodirectory' );
4219
+	$locale = apply_filters('plugin_locale', get_locale(), 'geodirectory');
4220 4220
 
4221
-	load_textdomain( 'geodirectory', WP_LANG_DIR . '/' . 'geodirectory' . '/' . 'geodirectory' . '-' . $locale . '.mo' );
4222
-	load_plugin_textdomain( 'geodirectory', false, plugin_basename( dirname( dirname( __FILE__ ) ) ) . '/geodirectory-languages' );
4221
+	load_textdomain('geodirectory', WP_LANG_DIR.'/'.'geodirectory'.'/'.'geodirectory'.'-'.$locale.'.mo');
4222
+	load_plugin_textdomain('geodirectory', false, plugin_basename(dirname(dirname(__FILE__))).'/geodirectory-languages');
4223 4223
 
4224 4224
 	/**
4225 4225
 	 * Define language constants.
4226 4226
 	 *
4227 4227
 	 * @since 1.0.0
4228 4228
 	 */
4229
-	require_once( geodir_plugin_path() . '/language.php' );
4229
+	require_once(geodir_plugin_path().'/language.php');
4230 4230
 
4231
-	$language_file = geodir_plugin_path() . '/db-language.php';
4231
+	$language_file = geodir_plugin_path().'/db-language.php';
4232 4232
 
4233 4233
 	// Load language string file if not created yet
4234
-	if ( ! file_exists( $language_file ) ) {
4234
+	if (!file_exists($language_file)) {
4235 4235
 		geodirectory_load_db_language();
4236 4236
 	}
4237 4237
 
4238
-	if ( file_exists( $language_file ) ) {
4238
+	if (file_exists($language_file)) {
4239 4239
 		/**
4240 4240
 		 * Language strings from database.
4241 4241
 		 *
4242 4242
 		 * @since 1.4.2
4243 4243
 		 */
4244 4244
 		try {
4245
-			require_once( $language_file );
4246
-		} catch ( Exception $e ) {
4247
-			error_log( 'Language Error: ' . $e->getMessage() );
4245
+			require_once($language_file);
4246
+		} catch (Exception $e) {
4247
+			error_log('Language Error: '.$e->getMessage());
4248 4248
 		}
4249 4249
 	}
4250 4250
 }
@@ -4261,19 +4261,19 @@  discard block
 block discarded – undo
4261 4261
  */
4262 4262
 function geodirectory_load_db_language() {
4263 4263
 	global $wp_filesystem;
4264
-	if ( empty( $wp_filesystem ) ) {
4265
-		require_once( ABSPATH . '/wp-admin/includes/file.php' );
4264
+	if (empty($wp_filesystem)) {
4265
+		require_once(ABSPATH.'/wp-admin/includes/file.php');
4266 4266
 		WP_Filesystem();
4267 4267
 		global $wp_filesystem;
4268 4268
 	}
4269 4269
 
4270
-	$language_file = geodir_plugin_path() . '/db-language.php';
4270
+	$language_file = geodir_plugin_path().'/db-language.php';
4271 4271
 
4272
-	if ( is_file( $language_file ) && ! is_writable( $language_file ) ) {
4272
+	if (is_file($language_file) && !is_writable($language_file)) {
4273 4273
 		return false;
4274 4274
 	} // Not possible to create.
4275 4275
 
4276
-	if ( ! is_file( $language_file ) && ! is_writable( dirname( $language_file ) ) ) {
4276
+	if (!is_file($language_file) && !is_writable(dirname($language_file))) {
4277 4277
 		return false;
4278 4278
 	} // Not possible to create.
4279 4279
 
@@ -4287,9 +4287,9 @@  discard block
 block discarded – undo
4287 4287
 	 *
4288 4288
 	 * @param array $contents_strings Array of strings.
4289 4289
 	 */
4290
-	$contents_strings = apply_filters( 'geodir_load_db_language', $contents_strings );
4290
+	$contents_strings = apply_filters('geodir_load_db_language', $contents_strings);
4291 4291
 
4292
-	$contents_strings = array_unique( $contents_strings );
4292
+	$contents_strings = array_unique($contents_strings);
4293 4293
 
4294 4294
 	$contents_head   = array();
4295 4295
 	$contents_head[] = "<?php";
@@ -4306,21 +4306,21 @@  discard block
 block discarded – undo
4306 4306
 	$contents_foot[] = "";
4307 4307
 	$contents_foot[] = "";
4308 4308
 
4309
-	$contents = implode( PHP_EOL, $contents_head );
4309
+	$contents = implode(PHP_EOL, $contents_head);
4310 4310
 
4311
-	if ( ! empty( $contents_strings ) ) {
4312
-		foreach ( $contents_strings as $string ) {
4313
-			if ( is_scalar( $string ) && $string != '' ) {
4314
-				$string = str_replace( "'", "\'", $string );
4315
-				geodir_wpml_register_string( $string );
4316
-				$contents .= PHP_EOL . "__('" . $string . "', 'geodirectory');";
4311
+	if (!empty($contents_strings)) {
4312
+		foreach ($contents_strings as $string) {
4313
+			if (is_scalar($string) && $string != '') {
4314
+				$string = str_replace("'", "\'", $string);
4315
+				geodir_wpml_register_string($string);
4316
+				$contents .= PHP_EOL."__('".$string."', 'geodirectory');";
4317 4317
 			}
4318 4318
 		}
4319 4319
 	}
4320 4320
 
4321
-	$contents .= implode( PHP_EOL, $contents_foot );
4321
+	$contents .= implode(PHP_EOL, $contents_foot);
4322 4322
 
4323
-	if ( $wp_filesystem->put_contents( $language_file, $contents, FS_CHMOD_FILE ) ) {
4323
+	if ($wp_filesystem->put_contents($language_file, $contents, FS_CHMOD_FILE)) {
4324 4324
 		return false;
4325 4325
 	} // Failure; could not write file.
4326 4326
 
@@ -4341,49 +4341,49 @@  discard block
 block discarded – undo
4341 4341
  *
4342 4342
  * @return array Translation texts.
4343 4343
  */
4344
-function geodir_load_custom_field_translation( $translation_texts = array() ) {
4344
+function geodir_load_custom_field_translation($translation_texts = array()) {
4345 4345
 	global $wpdb;
4346 4346
 
4347 4347
 	// Custom fields table
4348
-	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM " . GEODIR_CUSTOM_FIELDS_TABLE;
4349
-	$rows = $wpdb->get_results( $sql );
4348
+	$sql  = "SELECT admin_title, admin_desc, site_title, clabels, required_msg, default_value, option_values, validation_msg FROM ".GEODIR_CUSTOM_FIELDS_TABLE;
4349
+	$rows = $wpdb->get_results($sql);
4350 4350
 
4351
-	if ( ! empty( $rows ) ) {
4352
-		foreach ( $rows as $row ) {
4353
-			if ( ! empty( $row->admin_title ) ) {
4354
-				$translation_texts[] = stripslashes_deep( $row->admin_title );
4351
+	if (!empty($rows)) {
4352
+		foreach ($rows as $row) {
4353
+			if (!empty($row->admin_title)) {
4354
+				$translation_texts[] = stripslashes_deep($row->admin_title);
4355 4355
 			}
4356 4356
 
4357
-			if ( ! empty( $row->admin_desc ) ) {
4358
-				$translation_texts[] = stripslashes_deep( $row->admin_desc );
4357
+			if (!empty($row->admin_desc)) {
4358
+				$translation_texts[] = stripslashes_deep($row->admin_desc);
4359 4359
 			}
4360 4360
 
4361
-			if ( ! empty( $row->site_title ) ) {
4362
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4361
+			if (!empty($row->site_title)) {
4362
+				$translation_texts[] = stripslashes_deep($row->site_title);
4363 4363
 			}
4364 4364
 
4365
-			if ( ! empty( $row->clabels ) ) {
4366
-				$translation_texts[] = stripslashes_deep( $row->clabels );
4365
+			if (!empty($row->clabels)) {
4366
+				$translation_texts[] = stripslashes_deep($row->clabels);
4367 4367
 			}
4368 4368
 
4369
-			if ( ! empty( $row->required_msg ) ) {
4370
-				$translation_texts[] = stripslashes_deep( $row->required_msg );
4369
+			if (!empty($row->required_msg)) {
4370
+				$translation_texts[] = stripslashes_deep($row->required_msg);
4371 4371
 			}
4372 4372
             
4373
-			if ( ! empty( $row->validation_msg ) ) {
4374
-				$translation_texts[] = stripslashes_deep( $row->validation_msg );
4373
+			if (!empty($row->validation_msg)) {
4374
+				$translation_texts[] = stripslashes_deep($row->validation_msg);
4375 4375
 			}
4376 4376
 
4377
-			if ( ! empty( $row->default_value ) ) {
4378
-				$translation_texts[] = stripslashes_deep( $row->default_value );
4377
+			if (!empty($row->default_value)) {
4378
+				$translation_texts[] = stripslashes_deep($row->default_value);
4379 4379
 			}
4380 4380
 
4381
-			if ( ! empty( $row->option_values ) ) {
4382
-				$option_values = geodir_string_values_to_options( stripslashes_deep( $row->option_values ) );
4381
+			if (!empty($row->option_values)) {
4382
+				$option_values = geodir_string_values_to_options(stripslashes_deep($row->option_values));
4383 4383
 
4384
-				if ( ! empty( $option_values ) ) {
4385
-					foreach ( $option_values as $option_value ) {
4386
-						if ( ! empty( $option_value['label'] ) ) {
4384
+				if (!empty($option_values)) {
4385
+					foreach ($option_values as $option_value) {
4386
+						if (!empty($option_value['label'])) {
4387 4387
 							$translation_texts[] = $option_value['label'];
4388 4388
 						}
4389 4389
 					}
@@ -4393,56 +4393,56 @@  discard block
 block discarded – undo
4393 4393
 	}
4394 4394
 
4395 4395
 	// Custom sorting fields table
4396
-	$sql  = "SELECT site_title, asc_title, desc_title FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4397
-	$rows = $wpdb->get_results( $sql );
4396
+	$sql  = "SELECT site_title, asc_title, desc_title FROM ".GEODIR_CUSTOM_SORT_FIELDS_TABLE;
4397
+	$rows = $wpdb->get_results($sql);
4398 4398
 
4399
-	if ( ! empty( $rows ) ) {
4400
-		foreach ( $rows as $row ) {
4401
-			if ( ! empty( $row->site_title ) ) {
4402
-				$translation_texts[] = stripslashes_deep( $row->site_title );
4399
+	if (!empty($rows)) {
4400
+		foreach ($rows as $row) {
4401
+			if (!empty($row->site_title)) {
4402
+				$translation_texts[] = stripslashes_deep($row->site_title);
4403 4403
 			}
4404 4404
 
4405
-			if ( ! empty( $row->asc_title ) ) {
4406
-				$translation_texts[] = stripslashes_deep( $row->asc_title );
4405
+			if (!empty($row->asc_title)) {
4406
+				$translation_texts[] = stripslashes_deep($row->asc_title);
4407 4407
 			}
4408 4408
 
4409
-			if ( ! empty( $row->desc_title ) ) {
4410
-				$translation_texts[] = stripslashes_deep( $row->desc_title );
4409
+			if (!empty($row->desc_title)) {
4410
+				$translation_texts[] = stripslashes_deep($row->desc_title);
4411 4411
 			}
4412 4412
 		}
4413 4413
 	}
4414 4414
 
4415 4415
 	// Advance search filter fields table
4416
-	if ( defined( 'GEODIR_ADVANCE_SEARCH_TABLE' ) ) {
4417
-		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM " . GEODIR_ADVANCE_SEARCH_TABLE;
4418
-		$rows = $wpdb->get_results( $sql );
4419
-
4420
-		if ( ! empty( $rows ) ) {
4421
-			foreach ( $rows as $row ) {
4422
-				if ( ! empty( $row->field_site_name ) ) {
4423
-					$translation_texts[] = stripslashes_deep( $row->field_site_name );
4416
+	if (defined('GEODIR_ADVANCE_SEARCH_TABLE')) {
4417
+		$sql  = "SELECT field_site_name, front_search_title, first_search_text, last_search_text, field_desc FROM ".GEODIR_ADVANCE_SEARCH_TABLE;
4418
+		$rows = $wpdb->get_results($sql);
4419
+
4420
+		if (!empty($rows)) {
4421
+			foreach ($rows as $row) {
4422
+				if (!empty($row->field_site_name)) {
4423
+					$translation_texts[] = stripslashes_deep($row->field_site_name);
4424 4424
 				}
4425 4425
 
4426
-				if ( ! empty( $row->front_search_title ) ) {
4427
-					$translation_texts[] = stripslashes_deep( $row->front_search_title );
4426
+				if (!empty($row->front_search_title)) {
4427
+					$translation_texts[] = stripslashes_deep($row->front_search_title);
4428 4428
 				}
4429 4429
 
4430
-				if ( ! empty( $row->first_search_text ) ) {
4431
-					$translation_texts[] = stripslashes_deep( $row->first_search_text );
4430
+				if (!empty($row->first_search_text)) {
4431
+					$translation_texts[] = stripslashes_deep($row->first_search_text);
4432 4432
 				}
4433 4433
 
4434
-				if ( ! empty( $row->last_search_text ) ) {
4435
-					$translation_texts[] = stripslashes_deep( $row->last_search_text );
4434
+				if (!empty($row->last_search_text)) {
4435
+					$translation_texts[] = stripslashes_deep($row->last_search_text);
4436 4436
 				}
4437 4437
 
4438
-				if ( ! empty( $row->field_desc ) ) {
4439
-					$translation_texts[] = stripslashes_deep( $row->field_desc );
4438
+				if (!empty($row->field_desc)) {
4439
+					$translation_texts[] = stripslashes_deep($row->field_desc);
4440 4440
 				}
4441 4441
 			}
4442 4442
 		}
4443 4443
 	}
4444 4444
 
4445
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4445
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4446 4446
 
4447 4447
 	return $translation_texts;
4448 4448
 }
@@ -4464,7 +4464,7 @@  discard block
 block discarded – undo
4464 4464
 	 *
4465 4465
 	 * @param array $geodir_allowed_mime_types and file extensions.
4466 4466
 	 */
4467
-	return apply_filters( 'geodir_allowed_mime_types', array(
4467
+	return apply_filters('geodir_allowed_mime_types', array(
4468 4468
 			'Image'       => array( // Image formats.
4469 4469
 				'jpg'  => 'image/jpeg',
4470 4470
 				'jpe'  => 'image/jpeg',
@@ -4532,18 +4532,18 @@  discard block
 block discarded – undo
4532 4532
  *
4533 4533
  * @return string User display name.
4534 4534
  */
4535
-function geodir_get_client_name( $user_id ) {
4535
+function geodir_get_client_name($user_id) {
4536 4536
 	$client_name = '';
4537 4537
 
4538
-	$user_data = get_userdata( $user_id );
4538
+	$user_data = get_userdata($user_id);
4539 4539
 
4540
-	if ( ! empty( $user_data ) ) {
4541
-		if ( isset( $user_data->display_name ) && trim( $user_data->display_name ) != '' ) {
4542
-			$client_name = trim( $user_data->display_name );
4543
-		} else if ( isset( $user_data->user_nicename ) && trim( $user_data->user_nicename ) != '' ) {
4544
-			$client_name = trim( $user_data->user_nicename );
4540
+	if (!empty($user_data)) {
4541
+		if (isset($user_data->display_name) && trim($user_data->display_name) != '') {
4542
+			$client_name = trim($user_data->display_name);
4543
+		} else if (isset($user_data->user_nicename) && trim($user_data->user_nicename) != '') {
4544
+			$client_name = trim($user_data->user_nicename);
4545 4545
 		} else {
4546
-			$client_name = trim( $user_data->user_login );
4546
+			$client_name = trim($user_data->user_login);
4547 4547
 		}
4548 4548
 	}
4549 4549
 
@@ -4551,17 +4551,17 @@  discard block
 block discarded – undo
4551 4551
 }
4552 4552
 
4553 4553
 
4554
-add_filter( 'wpseo_replacements', 'geodir_wpseo_replacements', 10, 1 );
4554
+add_filter('wpseo_replacements', 'geodir_wpseo_replacements', 10, 1);
4555 4555
 /*
4556 4556
  * Add location variables to wpseo replacements.
4557 4557
  *
4558 4558
  * @since 1.5.4
4559 4559
  */
4560
-function geodir_wpseo_replacements( $vars ) {
4560
+function geodir_wpseo_replacements($vars) {
4561 4561
 
4562 4562
 	// location variables
4563 4563
 	$gd_post_type   = geodir_get_current_posttype();
4564
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4564
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4565 4565
 	/**
4566 4566
 	 * Filter the title variables location variables array
4567 4567
 	 *
@@ -4571,7 +4571,7 @@  discard block
 block discarded – undo
4571 4571
 	 * @param array $location_array The array of location variables.
4572 4572
 	 * @param array $vars           The page title variables.
4573 4573
 	 */
4574
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr_seo', $location_array, $vars );
4574
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr_seo', $location_array, $vars);
4575 4575
 
4576 4576
 
4577 4577
 	$location_replace_vars = geodir_location_replace_vars($location_array, NULL, '');
@@ -4586,13 +4586,13 @@  discard block
 block discarded – undo
4586 4586
 	 * @param string $vars          The title with variables.
4587 4587
 	 * @param array $location_array The array of location variables.
4588 4588
 	 */
4589
-	return apply_filters( 'geodir_wpseo_replacements_vars', $vars, $location_array );
4589
+	return apply_filters('geodir_wpseo_replacements_vars', $vars, $location_array);
4590 4590
 }
4591 4591
 
4592 4592
 
4593
-add_filter( 'geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3 );
4594
-add_filter( 'geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2 );
4595
-add_filter( 'geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3 );
4593
+add_filter('geodir_seo_meta_title', 'geodir_filter_title_variables', 10, 3);
4594
+add_filter('geodir_seo_page_title', 'geodir_filter_title_variables', 10, 2);
4595
+add_filter('geodir_seo_meta_description_pre', 'geodir_filter_title_variables', 10, 3);
4596 4596
 
4597 4597
 /**
4598 4598
  * Filter the title variables.
@@ -4634,14 +4634,14 @@  discard block
 block discarded – undo
4634 4634
  *
4635 4635
  * @return string Title after filtered variables.
4636 4636
  */
4637
-function geodir_filter_title_variables( $title, $gd_page, $sep = '' ) {
4637
+function geodir_filter_title_variables($title, $gd_page, $sep = '') {
4638 4638
 	global $wp, $post;
4639 4639
 
4640
-	if ( ! $gd_page || ! $title ) {
4640
+	if (!$gd_page || !$title) {
4641 4641
 		return $title; // if no a GD page then bail.
4642 4642
 	}
4643 4643
 
4644
-	if ( $sep == '' ) {
4644
+	if ($sep == '') {
4645 4645
 		/**
4646 4646
 		 * Filter the page title separator.
4647 4647
 		 *
@@ -4650,100 +4650,100 @@  discard block
 block discarded – undo
4650 4650
 		 *
4651 4651
 		 * @param string $sep The separator, default: `|`.
4652 4652
 		 */
4653
-		$sep = apply_filters( 'geodir_page_title_separator', '|' );
4653
+		$sep = apply_filters('geodir_page_title_separator', '|');
4654 4654
 	}
4655 4655
 
4656
-	if ( strpos( $title, '%%title%%' ) !== false ) {
4657
-		$title = str_replace( "%%title%%", $post->post_title, $title );
4656
+	if (strpos($title, '%%title%%') !== false) {
4657
+		$title = str_replace("%%title%%", $post->post_title, $title);
4658 4658
 	}
4659 4659
 
4660
-	if ( strpos( $title, '%%sitename%%' ) !== false ) {
4661
-		$title = str_replace( "%%sitename%%", get_bloginfo( 'name' ), $title );
4660
+	if (strpos($title, '%%sitename%%') !== false) {
4661
+		$title = str_replace("%%sitename%%", get_bloginfo('name'), $title);
4662 4662
 	}
4663 4663
 
4664
-	if ( strpos( $title, '%%sitedesc%%' ) !== false ) {
4665
-		$title = str_replace( "%%sitedesc%%", get_bloginfo( 'description' ), $title );
4664
+	if (strpos($title, '%%sitedesc%%') !== false) {
4665
+		$title = str_replace("%%sitedesc%%", get_bloginfo('description'), $title);
4666 4666
 	}
4667 4667
 
4668
-	if ( strpos( $title, '%%excerpt%%' ) !== false ) {
4669
-		$title = str_replace( "%%excerpt%%", strip_tags( get_the_excerpt() ), $title );
4668
+	if (strpos($title, '%%excerpt%%') !== false) {
4669
+		$title = str_replace("%%excerpt%%", strip_tags(get_the_excerpt()), $title);
4670 4670
 	}
4671 4671
 
4672
-	if ( $gd_page == 'search' || $gd_page == 'author' ) {
4673
-		$post_type = isset( $_REQUEST['stype'] ) ? sanitize_text_field( $_REQUEST['stype'] ) : '';
4674
-	} else if ( $gd_page == 'add-listing' ) {
4675
-		$post_type = ( isset( $_REQUEST['listing_type'] ) ) ? sanitize_text_field( $_REQUEST['listing_type'] ) : '';
4676
-		$post_type = ! $post_type && ! empty( $_REQUEST['pid'] ) ? get_post_type( (int) $_REQUEST['pid'] ) : $post_type;
4677
-	} else if ( isset( $post->post_type ) && $post->post_type && in_array( $post->post_type, geodir_get_posttypes() ) ) {
4672
+	if ($gd_page == 'search' || $gd_page == 'author') {
4673
+		$post_type = isset($_REQUEST['stype']) ? sanitize_text_field($_REQUEST['stype']) : '';
4674
+	} else if ($gd_page == 'add-listing') {
4675
+		$post_type = (isset($_REQUEST['listing_type'])) ? sanitize_text_field($_REQUEST['listing_type']) : '';
4676
+		$post_type = !$post_type && !empty($_REQUEST['pid']) ? get_post_type((int) $_REQUEST['pid']) : $post_type;
4677
+	} else if (isset($post->post_type) && $post->post_type && in_array($post->post_type, geodir_get_posttypes())) {
4678 4678
 		$post_type = $post->post_type;
4679 4679
 	} else {
4680
-		$post_type = get_query_var( 'post_type' );
4680
+		$post_type = get_query_var('post_type');
4681 4681
 	}
4682 4682
 
4683
-	if ( strpos( $title, '%%pt_single%%' ) !== false ) {
4683
+	if (strpos($title, '%%pt_single%%') !== false) {
4684 4684
 		$singular_name = '';
4685
-		if ( $post_type && $singular_name = get_post_type_singular_label( $post_type ) ) {
4686
-			$singular_name = __( $singular_name, 'geodirectory' );
4685
+		if ($post_type && $singular_name = get_post_type_singular_label($post_type)) {
4686
+			$singular_name = __($singular_name, 'geodirectory');
4687 4687
 		}
4688 4688
 
4689
-		$title = str_replace( "%%pt_single%%", $singular_name, $title );
4689
+		$title = str_replace("%%pt_single%%", $singular_name, $title);
4690 4690
 	}
4691 4691
 
4692
-	if ( strpos( $title, '%%pt_plural%%' ) !== false ) {
4692
+	if (strpos($title, '%%pt_plural%%') !== false) {
4693 4693
 		$plural_name = '';
4694
-		if ( $post_type && $plural_name = get_post_type_plural_label( $post_type ) ) {
4695
-			$plural_name = __( $plural_name, 'geodirectory' );
4694
+		if ($post_type && $plural_name = get_post_type_plural_label($post_type)) {
4695
+			$plural_name = __($plural_name, 'geodirectory');
4696 4696
 		}
4697 4697
 
4698
-		$title = str_replace( "%%pt_plural%%", $plural_name, $title );
4698
+		$title = str_replace("%%pt_plural%%", $plural_name, $title);
4699 4699
 	}
4700 4700
 
4701
-	if ( strpos( $title, '%%category%%' ) !== false ) {
4701
+	if (strpos($title, '%%category%%') !== false) {
4702 4702
 		$cat_name = '';
4703 4703
 
4704
-		if ( $gd_page == 'detail' ) {
4705
-			if ( $post->default_category ) {
4706
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4707
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4704
+		if ($gd_page == 'detail') {
4705
+			if ($post->default_category) {
4706
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4707
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4708 4708
 			}
4709
-		} else if ( $gd_page == 'listing' ) {
4709
+		} else if ($gd_page == 'listing') {
4710 4710
 			$queried_object = get_queried_object();
4711
-			if ( isset( $queried_object->name ) ) {
4711
+			if (isset($queried_object->name)) {
4712 4712
 				$cat_name = $queried_object->name;
4713 4713
 			}
4714 4714
 		}
4715
-		$title = str_replace( "%%category%%", $cat_name, $title );
4715
+		$title = str_replace("%%category%%", $cat_name, $title);
4716 4716
 	}
4717 4717
 
4718
-	if ( strpos( $title, '%%tag%%' ) !== false ) {
4718
+	if (strpos($title, '%%tag%%') !== false) {
4719 4719
 		$cat_name = '';
4720 4720
 
4721
-		if ( $gd_page == 'detail' ) {
4722
-			if ( $post->default_category ) {
4723
-				$cat      = get_term( $post->default_category, $post->post_type . 'category' );
4724
-				$cat_name = ( isset( $cat->name ) ) ? $cat->name : '';
4721
+		if ($gd_page == 'detail') {
4722
+			if ($post->default_category) {
4723
+				$cat      = get_term($post->default_category, $post->post_type.'category');
4724
+				$cat_name = (isset($cat->name)) ? $cat->name : '';
4725 4725
 			}
4726
-		} else if ( $gd_page == 'listing' ) {
4726
+		} else if ($gd_page == 'listing') {
4727 4727
 			$queried_object = get_queried_object();
4728
-			if ( isset( $queried_object->name ) ) {
4728
+			if (isset($queried_object->name)) {
4729 4729
 				$cat_name = $queried_object->name;
4730 4730
 			}
4731 4731
 		}
4732
-		$title = str_replace( "%%tag%%", $cat_name, $title );
4732
+		$title = str_replace("%%tag%%", $cat_name, $title);
4733 4733
 	}
4734 4734
 
4735
-	if ( strpos( $title, '%%id%%' ) !== false ) {
4736
-		$ID    = ( isset( $post->ID ) ) ? $post->ID : '';
4737
-		$title = str_replace( "%%id%%", $ID, $title );
4735
+	if (strpos($title, '%%id%%') !== false) {
4736
+		$ID    = (isset($post->ID)) ? $post->ID : '';
4737
+		$title = str_replace("%%id%%", $ID, $title);
4738 4738
 	}
4739 4739
 
4740
-	if ( strpos( $title, '%%sep%%' ) !== false ) {
4741
-		$title = str_replace( "%%sep%%", $sep, $title );
4740
+	if (strpos($title, '%%sep%%') !== false) {
4741
+		$title = str_replace("%%sep%%", $sep, $title);
4742 4742
 	}
4743 4743
 
4744 4744
 	// location variables
4745 4745
 	$gd_post_type   = geodir_get_current_posttype();
4746
-	$location_array = geodir_get_current_location_terms( 'query_vars', $gd_post_type );
4746
+	$location_array = geodir_get_current_location_terms('query_vars', $gd_post_type);
4747 4747
 	
4748 4748
 	/**
4749 4749
 	 * Filter the title variables location variables array
@@ -4756,20 +4756,20 @@  discard block
 block discarded – undo
4756 4756
 	 * @param string $gd_page       The page being filtered.
4757 4757
 	 * @param string $sep           The separator, default: `|`.
4758 4758
 	 */
4759
-	$location_array  = apply_filters( 'geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep );
4759
+	$location_array = apply_filters('geodir_filter_title_variables_location_arr', $location_array, $title, $gd_page, $sep);
4760 4760
 	
4761
-	if ( $gd_page == 'location' && get_query_var( 'gd_country_full' ) ) {
4762
-		if ( get_query_var( 'gd_country_full' ) ) {
4763
-			$location_array['gd_country'] = get_query_var( 'gd_country_full' );
4761
+	if ($gd_page == 'location' && get_query_var('gd_country_full')) {
4762
+		if (get_query_var('gd_country_full')) {
4763
+			$location_array['gd_country'] = get_query_var('gd_country_full');
4764 4764
 		}
4765
-		if ( get_query_var( 'gd_region_full' ) ) {
4766
-			$location_array['gd_region'] = get_query_var( 'gd_region_full' );
4765
+		if (get_query_var('gd_region_full')) {
4766
+			$location_array['gd_region'] = get_query_var('gd_region_full');
4767 4767
 		}
4768
-		if ( get_query_var( 'gd_city_full' ) ) {
4769
-			$location_array['gd_city'] = get_query_var( 'gd_city_full' );
4768
+		if (get_query_var('gd_city_full')) {
4769
+			$location_array['gd_city'] = get_query_var('gd_city_full');
4770 4770
 		}
4771
-		if ( get_query_var( 'gd_neighbourhood_full' ) ) {
4772
-			$location_array['gd_neighbourhood'] = get_query_var( 'gd_neighbourhood_full' );
4771
+		if (get_query_var('gd_neighbourhood_full')) {
4772
+			$location_array['gd_neighbourhood'] = get_query_var('gd_neighbourhood_full');
4773 4773
 		}
4774 4774
 	}
4775 4775
 	
@@ -4784,57 +4784,57 @@  discard block
 block discarded – undo
4784 4784
 	 * @param string $gd_page       The page being filtered.
4785 4785
 	 * @param string $sep           The separator, default: `|`.
4786 4786
 	 */
4787
-	$title = apply_filters( 'geodir_replace_location_variables', $title, $location_array, $gd_page, $sep );
4787
+	$title = apply_filters('geodir_replace_location_variables', $title, $location_array, $gd_page, $sep);
4788 4788
 	
4789
-	if ( strpos( $title, '%%search_term%%' ) !== false ) {
4789
+	if (strpos($title, '%%search_term%%') !== false) {
4790 4790
 		$search_term = '';
4791
-		if ( isset( $_REQUEST['s'] ) ) {
4792
-			$search_term = esc_attr( $_REQUEST['s'] );
4791
+		if (isset($_REQUEST['s'])) {
4792
+			$search_term = esc_attr($_REQUEST['s']);
4793 4793
 		}
4794
-		$title = str_replace( "%%search_term%%", $search_term, $title );
4794
+		$title = str_replace("%%search_term%%", $search_term, $title);
4795 4795
 	}
4796 4796
 
4797
-	if ( strpos( $title, '%%search_near%%' ) !== false ) {
4797
+	if (strpos($title, '%%search_near%%') !== false) {
4798 4798
 		$search_term = '';
4799
-		if ( isset( $_REQUEST['snear'] ) ) {
4800
-			$search_term = esc_attr( $_REQUEST['snear'] );
4799
+		if (isset($_REQUEST['snear'])) {
4800
+			$search_term = esc_attr($_REQUEST['snear']);
4801 4801
 		}
4802
-		$title = str_replace( "%%search_near%%", $search_term, $title );
4802
+		$title = str_replace("%%search_near%%", $search_term, $title);
4803 4803
 	}
4804 4804
 
4805
-	if ( strpos( $title, '%%name%%' ) !== false ) {
4806
-		if ( is_author() ) {
4807
-			$curauth     = ( get_query_var( 'author_name' ) ) ? get_user_by( 'slug', get_query_var( 'author_name' ) ) : get_userdata( get_query_var( 'author' ) );
4805
+	if (strpos($title, '%%name%%') !== false) {
4806
+		if (is_author()) {
4807
+			$curauth     = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
4808 4808
 			$author_name = $curauth->display_name;
4809 4809
 		} else {
4810 4810
 			$author_name = get_the_author();
4811 4811
 		}
4812
-		if ( ! $author_name || $author_name === '' ) {
4812
+		if (!$author_name || $author_name === '') {
4813 4813
 			$queried_object = get_queried_object();
4814 4814
 
4815
-			if ( isset( $queried_object->data->user_nicename ) ) {
4815
+			if (isset($queried_object->data->user_nicename)) {
4816 4816
 				$author_name = $queried_object->data->display_name;
4817 4817
 			}
4818 4818
 		}
4819
-		$title = str_replace( "%%name%%", $author_name, $title );
4819
+		$title = str_replace("%%name%%", $author_name, $title);
4820 4820
 	}
4821 4821
 
4822
-	if ( strpos( $title, '%%page%%' ) !== false ) {
4823
-		$page  = geodir_title_meta_page( $sep );
4824
-		$title = str_replace( "%%page%%", $page, $title );
4822
+	if (strpos($title, '%%page%%') !== false) {
4823
+		$page  = geodir_title_meta_page($sep);
4824
+		$title = str_replace("%%page%%", $page, $title);
4825 4825
 	}
4826
-	if ( strpos( $title, '%%pagenumber%%' ) !== false ) {
4826
+	if (strpos($title, '%%pagenumber%%') !== false) {
4827 4827
 		$pagenumber = geodir_title_meta_pagenumber();
4828
-		$title      = str_replace( "%%pagenumber%%", $pagenumber, $title );
4828
+		$title      = str_replace("%%pagenumber%%", $pagenumber, $title);
4829 4829
 	}
4830
-	if ( strpos( $title, '%%pagetotal%%' ) !== false ) {
4830
+	if (strpos($title, '%%pagetotal%%') !== false) {
4831 4831
 		$pagetotal = geodir_title_meta_pagetotal();
4832
-		$title     = str_replace( "%%pagetotal%%", $pagetotal, $title );
4832
+		$title     = str_replace("%%pagetotal%%", $pagetotal, $title);
4833 4833
 	}
4834 4834
 
4835
-	$title = wptexturize( $title );
4836
-	$title = convert_chars( $title );
4837
-	$title = esc_html( $title );
4835
+	$title = wptexturize($title);
4836
+	$title = convert_chars($title);
4837
+	$title = esc_html($title);
4838 4838
 
4839 4839
 	/**
4840 4840
 	 * Filter the title variables after standard ones have been filtered.
@@ -4848,7 +4848,7 @@  discard block
 block discarded – undo
4848 4848
 	 * @param string $sep           The separator, default: `|`.
4849 4849
 	 */
4850 4850
 
4851
-	return apply_filters( 'geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep );
4851
+	return apply_filters('geodir_filter_title_variables_vars', $title, $location_array, $gd_page, $sep);
4852 4852
 }
4853 4853
 
4854 4854
 /**
@@ -4861,82 +4861,82 @@  discard block
 block discarded – undo
4861 4861
  *
4862 4862
  * @return array Translation texts.
4863 4863
  */
4864
-function geodir_load_cpt_text_translation( $translation_texts = array() ) {
4865
-	$gd_post_types = geodir_get_posttypes( 'array' );
4864
+function geodir_load_cpt_text_translation($translation_texts = array()) {
4865
+	$gd_post_types = geodir_get_posttypes('array');
4866 4866
 
4867
-	if ( ! empty( $gd_post_types ) ) {
4868
-		foreach ( $gd_post_types as $post_type => $cpt_info ) {
4869
-			$labels      = isset( $cpt_info['labels'] ) ? $cpt_info['labels'] : '';
4870
-			$description = isset( $cpt_info['description'] ) ? $cpt_info['description'] : '';
4871
-			$seo         = isset( $cpt_info['seo'] ) ? $cpt_info['seo'] : '';
4867
+	if (!empty($gd_post_types)) {
4868
+		foreach ($gd_post_types as $post_type => $cpt_info) {
4869
+			$labels      = isset($cpt_info['labels']) ? $cpt_info['labels'] : '';
4870
+			$description = isset($cpt_info['description']) ? $cpt_info['description'] : '';
4871
+			$seo         = isset($cpt_info['seo']) ? $cpt_info['seo'] : '';
4872 4872
 
4873
-			if ( ! empty( $labels ) ) {
4874
-				if ( $labels['name'] != '' && ! in_array( $labels['name'], $translation_texts ) ) {
4873
+			if (!empty($labels)) {
4874
+				if ($labels['name'] != '' && !in_array($labels['name'], $translation_texts)) {
4875 4875
 					$translation_texts[] = $labels['name'];
4876 4876
 				}
4877
-				if ( $labels['singular_name'] != '' && ! in_array( $labels['singular_name'], $translation_texts ) ) {
4877
+				if ($labels['singular_name'] != '' && !in_array($labels['singular_name'], $translation_texts)) {
4878 4878
 					$translation_texts[] = $labels['singular_name'];
4879 4879
 				}
4880
-				if ( $labels['add_new'] != '' && ! in_array( $labels['add_new'], $translation_texts ) ) {
4880
+				if ($labels['add_new'] != '' && !in_array($labels['add_new'], $translation_texts)) {
4881 4881
 					$translation_texts[] = $labels['add_new'];
4882 4882
 				}
4883
-				if ( $labels['add_new_item'] != '' && ! in_array( $labels['add_new_item'], $translation_texts ) ) {
4883
+				if ($labels['add_new_item'] != '' && !in_array($labels['add_new_item'], $translation_texts)) {
4884 4884
 					$translation_texts[] = $labels['add_new_item'];
4885 4885
 				}
4886
-				if ( $labels['edit_item'] != '' && ! in_array( $labels['edit_item'], $translation_texts ) ) {
4886
+				if ($labels['edit_item'] != '' && !in_array($labels['edit_item'], $translation_texts)) {
4887 4887
 					$translation_texts[] = $labels['edit_item'];
4888 4888
 				}
4889
-				if ( $labels['new_item'] != '' && ! in_array( $labels['new_item'], $translation_texts ) ) {
4889
+				if ($labels['new_item'] != '' && !in_array($labels['new_item'], $translation_texts)) {
4890 4890
 					$translation_texts[] = $labels['new_item'];
4891 4891
 				}
4892
-				if ( $labels['view_item'] != '' && ! in_array( $labels['view_item'], $translation_texts ) ) {
4892
+				if ($labels['view_item'] != '' && !in_array($labels['view_item'], $translation_texts)) {
4893 4893
 					$translation_texts[] = $labels['view_item'];
4894 4894
 				}
4895
-				if ( $labels['search_items'] != '' && ! in_array( $labels['search_items'], $translation_texts ) ) {
4895
+				if ($labels['search_items'] != '' && !in_array($labels['search_items'], $translation_texts)) {
4896 4896
 					$translation_texts[] = $labels['search_items'];
4897 4897
 				}
4898
-				if ( $labels['not_found'] != '' && ! in_array( $labels['not_found'], $translation_texts ) ) {
4898
+				if ($labels['not_found'] != '' && !in_array($labels['not_found'], $translation_texts)) {
4899 4899
 					$translation_texts[] = $labels['not_found'];
4900 4900
 				}
4901
-				if ( $labels['not_found_in_trash'] != '' && ! in_array( $labels['not_found_in_trash'], $translation_texts ) ) {
4901
+				if ($labels['not_found_in_trash'] != '' && !in_array($labels['not_found_in_trash'], $translation_texts)) {
4902 4902
 					$translation_texts[] = $labels['not_found_in_trash'];
4903 4903
 				}
4904
-				if ( isset( $labels['label_post_profile'] ) && $labels['label_post_profile'] != '' && ! in_array( $labels['label_post_profile'], $translation_texts ) ) {
4904
+				if (isset($labels['label_post_profile']) && $labels['label_post_profile'] != '' && !in_array($labels['label_post_profile'], $translation_texts)) {
4905 4905
 					$translation_texts[] = $labels['label_post_profile'];
4906 4906
 				}
4907
-				if ( isset( $labels['label_post_info'] ) && $labels['label_post_info'] != '' && ! in_array( $labels['label_post_info'], $translation_texts ) ) {
4907
+				if (isset($labels['label_post_info']) && $labels['label_post_info'] != '' && !in_array($labels['label_post_info'], $translation_texts)) {
4908 4908
 					$translation_texts[] = $labels['label_post_info'];
4909 4909
 				}
4910
-				if ( isset( $labels['label_post_images'] ) && $labels['label_post_images'] != '' && ! in_array( $labels['label_post_images'], $translation_texts ) ) {
4910
+				if (isset($labels['label_post_images']) && $labels['label_post_images'] != '' && !in_array($labels['label_post_images'], $translation_texts)) {
4911 4911
 					$translation_texts[] = $labels['label_post_images'];
4912 4912
 				}
4913
-				if ( isset( $labels['label_post_map'] ) && $labels['label_post_map'] != '' && ! in_array( $labels['label_post_map'], $translation_texts ) ) {
4913
+				if (isset($labels['label_post_map']) && $labels['label_post_map'] != '' && !in_array($labels['label_post_map'], $translation_texts)) {
4914 4914
 					$translation_texts[] = $labels['label_post_map'];
4915 4915
 				}
4916
-				if ( isset( $labels['label_reviews'] ) && $labels['label_reviews'] != '' && ! in_array( $labels['label_reviews'], $translation_texts ) ) {
4916
+				if (isset($labels['label_reviews']) && $labels['label_reviews'] != '' && !in_array($labels['label_reviews'], $translation_texts)) {
4917 4917
 					$translation_texts[] = $labels['label_reviews'];
4918 4918
 				}
4919
-				if ( isset( $labels['label_related_listing'] ) && $labels['label_related_listing'] != '' && ! in_array( $labels['label_related_listing'], $translation_texts ) ) {
4919
+				if (isset($labels['label_related_listing']) && $labels['label_related_listing'] != '' && !in_array($labels['label_related_listing'], $translation_texts)) {
4920 4920
 					$translation_texts[] = $labels['label_related_listing'];
4921 4921
 				}
4922 4922
 			}
4923 4923
 
4924
-			if ( $description != '' && ! in_array( $description, $translation_texts ) ) {
4925
-				$translation_texts[] = normalize_whitespace( $description );
4924
+			if ($description != '' && !in_array($description, $translation_texts)) {
4925
+				$translation_texts[] = normalize_whitespace($description);
4926 4926
 			}
4927 4927
 
4928
-			if ( ! empty( $seo ) ) {
4929
-				if ( isset( $seo['meta_keyword'] ) && $seo['meta_keyword'] != '' && ! in_array( $seo['meta_keyword'], $translation_texts ) ) {
4930
-					$translation_texts[] = normalize_whitespace( $seo['meta_keyword'] );
4928
+			if (!empty($seo)) {
4929
+				if (isset($seo['meta_keyword']) && $seo['meta_keyword'] != '' && !in_array($seo['meta_keyword'], $translation_texts)) {
4930
+					$translation_texts[] = normalize_whitespace($seo['meta_keyword']);
4931 4931
 				}
4932 4932
 
4933
-				if ( isset( $seo['meta_description'] ) && $seo['meta_description'] != '' && ! in_array( $seo['meta_description'], $translation_texts ) ) {
4934
-					$translation_texts[] = normalize_whitespace( $seo['meta_description'] );
4933
+				if (isset($seo['meta_description']) && $seo['meta_description'] != '' && !in_array($seo['meta_description'], $translation_texts)) {
4934
+					$translation_texts[] = normalize_whitespace($seo['meta_description']);
4935 4935
 				}
4936 4936
 			}
4937 4937
 		}
4938 4938
 	}
4939
-	$translation_texts = ! empty( $translation_texts ) ? array_unique( $translation_texts ) : $translation_texts;
4939
+	$translation_texts = !empty($translation_texts) ? array_unique($translation_texts) : $translation_texts;
4940 4940
 
4941 4941
 	return $translation_texts;
4942 4942
 }
@@ -4951,27 +4951,27 @@  discard block
 block discarded – undo
4951 4951
  *
4952 4952
  * @return array Location terms.
4953 4953
  */
4954
-function geodir_remove_location_terms( $location_terms = array() ) {
4955
-	$location_manager = defined( 'POST_LOCATION_TABLE' ) ? true : false;
4954
+function geodir_remove_location_terms($location_terms = array()) {
4955
+	$location_manager = defined('POST_LOCATION_TABLE') ? true : false;
4956 4956
 
4957
-	if ( ! empty( $location_terms ) && $location_manager ) {
4958
-		$hide_country_part = get_option( 'geodir_location_hide_country_part' );
4959
-		$hide_region_part  = get_option( 'geodir_location_hide_region_part' );
4957
+	if (!empty($location_terms) && $location_manager) {
4958
+		$hide_country_part = get_option('geodir_location_hide_country_part');
4959
+		$hide_region_part  = get_option('geodir_location_hide_region_part');
4960 4960
 
4961
-		if ( $hide_region_part && $hide_country_part ) {
4962
-			if ( isset( $location_terms['gd_country'] ) ) {
4963
-				unset( $location_terms['gd_country'] );
4961
+		if ($hide_region_part && $hide_country_part) {
4962
+			if (isset($location_terms['gd_country'])) {
4963
+				unset($location_terms['gd_country']);
4964 4964
 			}
4965
-			if ( isset( $location_terms['gd_region'] ) ) {
4966
-				unset( $location_terms['gd_region'] );
4965
+			if (isset($location_terms['gd_region'])) {
4966
+				unset($location_terms['gd_region']);
4967 4967
 			}
4968
-		} else if ( $hide_region_part && ! $hide_country_part ) {
4969
-			if ( isset( $location_terms['gd_region'] ) ) {
4970
-				unset( $location_terms['gd_region'] );
4968
+		} else if ($hide_region_part && !$hide_country_part) {
4969
+			if (isset($location_terms['gd_region'])) {
4970
+				unset($location_terms['gd_region']);
4971 4971
 			}
4972
-		} else if ( ! $hide_region_part && $hide_country_part ) {
4973
-			if ( isset( $location_terms['gd_country'] ) ) {
4974
-				unset( $location_terms['gd_country'] );
4972
+		} else if (!$hide_region_part && $hide_country_part) {
4973
+			if (isset($location_terms['gd_country'])) {
4974
+				unset($location_terms['gd_country']);
4975 4975
 			}
4976 4976
 		}
4977 4977
 	}
@@ -4992,40 +4992,40 @@  discard block
 block discarded – undo
4992 4992
  * @param WP_Post $post Post object.
4993 4993
  * @param bool $update  Whether this is an existing listing being updated or not.
4994 4994
  */
4995
-function geodir_on_wp_insert_post( $post_ID, $post, $update ) {
4995
+function geodir_on_wp_insert_post($post_ID, $post, $update) {
4996 4996
 	global $gd_notified_edited;
4997 4997
 	
4998
-	if ( ! $update ) {
4998
+	if (!$update) {
4999 4999
 		return;
5000 5000
 	}
5001 5001
 
5002
-	$action      = isset( $_REQUEST['action'] ) ? sanitize_text_field( $_REQUEST['action'] ) : '';
5003
-	$is_admin    = is_admin() && ( ! defined( 'DOING_AJAX' ) || ( defined( 'DOING_AJAX' ) && ! DOING_AJAX ) ) ? true : false;
5002
+	$action      = isset($_REQUEST['action']) ? sanitize_text_field($_REQUEST['action']) : '';
5003
+	$is_admin    = is_admin() && (!defined('DOING_AJAX') || (defined('DOING_AJAX') && !DOING_AJAX)) ? true : false;
5004 5004
 	$inline_save = $action == 'inline-save' ? true : false;
5005 5005
 
5006
-	if ( empty( $post->post_type ) || $is_admin || $inline_save || ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) ) {
5006
+	if (empty($post->post_type) || $is_admin || $inline_save || (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)) {
5007 5007
 		return;
5008 5008
 	}
5009 5009
 
5010
-	if ( $action != '' && in_array( $action, array( 'geodir_import_export' ) ) ) {
5010
+	if ($action != '' && in_array($action, array('geodir_import_export'))) {
5011 5011
 		return;
5012 5012
 	}
5013 5013
 
5014 5014
 	$user_id = (int) get_current_user_id();
5015 5015
 
5016
-	if ( $user_id > 0 && get_option( 'geodir_notify_post_edited' ) && ! wp_is_post_revision( $post_ID ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
5017
-		$author_id = ! empty( $post->post_author ) ? $post->post_author : 0;
5016
+	if ($user_id > 0 && get_option('geodir_notify_post_edited') && !wp_is_post_revision($post_ID) && in_array($post->post_type, geodir_get_posttypes())) {
5017
+		$author_id = !empty($post->post_author) ? $post->post_author : 0;
5018 5018
 
5019
-		if ( $user_id == $author_id && ! is_super_admin() && empty( $gd_notified_edited[$post_ID] ) ) {
5020
-			if ( !empty( $gd_notified_edited ) ) {
5019
+		if ($user_id == $author_id && !is_super_admin() && empty($gd_notified_edited[$post_ID])) {
5020
+			if (!empty($gd_notified_edited)) {
5021 5021
 				$gd_notified_edited = array();
5022 5022
 			}
5023 5023
 			$gd_notified_edited[$post_ID] = true;
5024 5024
 			
5025
-			$from_email   = get_option( 'site_email' );
5025
+			$from_email   = get_option('site_email');
5026 5026
 			$from_name    = get_site_emailName();
5027
-			$to_email     = get_option( 'admin_email' );
5028
-			$to_name      = get_option( 'name' );
5027
+			$to_email     = get_option('admin_email');
5028
+			$to_name      = get_option('name');
5029 5029
 			$message_type = 'listing_edited';
5030 5030
 
5031 5031
 			$notify_edited = true;
@@ -5037,9 +5037,9 @@  discard block
 block discarded – undo
5037 5037
 			 * @param bool $notify_edited Notify on listing edited by author?
5038 5038
 			 * @param object $post        The current post object.
5039 5039
 			 */
5040
-			$notify_edited = apply_filters( 'geodir_notify_on_listing_edited', $notify_edited, $post );
5040
+			$notify_edited = apply_filters('geodir_notify_on_listing_edited', $notify_edited, $post);
5041 5041
 
5042
-			geodir_sendEmail( $from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID );
5042
+			geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID);
5043 5043
 		}
5044 5044
 	}
5045 5045
 }
@@ -5054,14 +5054,14 @@  discard block
 block discarded – undo
5054 5054
  *
5055 5055
  * @return string|null The current page start & end numbering.
5056 5056
  */
5057
-function geodir_title_meta_page( $sep ) {
5057
+function geodir_title_meta_page($sep) {
5058 5058
 	$replacement = null;
5059 5059
 
5060
-	$max = geodir_title_meta_pagenumbering( 'max' );
5061
-	$nr  = geodir_title_meta_pagenumbering( 'nr' );
5060
+	$max = geodir_title_meta_pagenumbering('max');
5061
+	$nr  = geodir_title_meta_pagenumbering('nr');
5062 5062
 
5063
-	if ( $max > 1 && $nr > 1 ) {
5064
-		$replacement = sprintf( $sep . ' ' . __( 'Page %1$d of %2$d', 'geodirectory' ), $nr, $max );
5063
+	if ($max > 1 && $nr > 1) {
5064
+		$replacement = sprintf($sep.' '.__('Page %1$d of %2$d', 'geodirectory'), $nr, $max);
5065 5065
 	}
5066 5066
 
5067 5067
 	return $replacement;
@@ -5078,8 +5078,8 @@  discard block
 block discarded – undo
5078 5078
 function geodir_title_meta_pagenumber() {
5079 5079
 	$replacement = null;
5080 5080
 
5081
-	$nr = geodir_title_meta_pagenumbering( 'nr' );
5082
-	if ( isset( $nr ) && $nr > 0 ) {
5081
+	$nr = geodir_title_meta_pagenumbering('nr');
5082
+	if (isset($nr) && $nr > 0) {
5083 5083
 		$replacement = (string) $nr;
5084 5084
 	}
5085 5085
 
@@ -5097,8 +5097,8 @@  discard block
 block discarded – undo
5097 5097
 function geodir_title_meta_pagetotal() {
5098 5098
 	$replacement = null;
5099 5099
 
5100
-	$max = geodir_title_meta_pagenumbering( 'max' );
5101
-	if ( isset( $max ) && $max > 0 ) {
5100
+	$max = geodir_title_meta_pagenumbering('max');
5101
+	if (isset($max) && $max > 0) {
5102 5102
 		$replacement = (string) $max;
5103 5103
 	}
5104 5104
 
@@ -5118,36 +5118,36 @@  discard block
 block discarded – undo
5118 5118
  *
5119 5119
  * @return int|null The current page numbering.
5120 5120
  */
5121
-function geodir_title_meta_pagenumbering( $request = 'nr' ) {
5121
+function geodir_title_meta_pagenumbering($request = 'nr') {
5122 5122
 	global $wp_query, $post;
5123 5123
 	$max_num_pages = null;
5124 5124
 	$page_number   = null;
5125 5125
 
5126 5126
 	$max_num_pages = 1;
5127 5127
 
5128
-	if ( ! is_singular() ) {
5129
-		$page_number = get_query_var( 'paged' );
5130
-		if ( $page_number === 0 || $page_number === '' ) {
5128
+	if (!is_singular()) {
5129
+		$page_number = get_query_var('paged');
5130
+		if ($page_number === 0 || $page_number === '') {
5131 5131
 			$page_number = 1;
5132 5132
 		}
5133 5133
 
5134
-		if ( isset( $wp_query->max_num_pages ) && ( $wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0 ) ) {
5134
+		if (isset($wp_query->max_num_pages) && ($wp_query->max_num_pages != '' && $wp_query->max_num_pages != 0)) {
5135 5135
 			$max_num_pages = $wp_query->max_num_pages;
5136 5136
 		}
5137 5137
 	} else {
5138
-		$page_number = get_query_var( 'page' );
5139
-		if ( $page_number === 0 || $page_number === '' ) {
5138
+		$page_number = get_query_var('page');
5139
+		if ($page_number === 0 || $page_number === '') {
5140 5140
 			$page_number = 1;
5141 5141
 		}
5142 5142
 
5143
-		if ( isset( $post->post_content ) ) {
5144
-			$max_num_pages = ( substr_count( $post->post_content, '<!--nextpage-->' ) + 1 );
5143
+		if (isset($post->post_content)) {
5144
+			$max_num_pages = (substr_count($post->post_content, '<!--nextpage-->') + 1);
5145 5145
 		}
5146 5146
 	}
5147 5147
 
5148 5148
 	$return = null;
5149 5149
 
5150
-	switch ( $request ) {
5150
+	switch ($request) {
5151 5151
 		case 'nr':
5152 5152
 			$return = $page_number;
5153 5153
 			break;
@@ -5168,14 +5168,14 @@  discard block
 block discarded – undo
5168 5168
  *
5169 5169
  * @return array Terms.
5170 5170
  */
5171
-function geodir_filter_empty_terms( $terms ) {
5172
-	if ( empty( $terms ) ) {
5171
+function geodir_filter_empty_terms($terms) {
5172
+	if (empty($terms)) {
5173 5173
 		return $terms;
5174 5174
 	}
5175 5175
 
5176 5176
 	$return = array();
5177
-	foreach ( $terms as $term ) {
5178
-		if ( isset( $term->count ) && $term->count > 0 ) {
5177
+	foreach ($terms as $term) {
5178
+		if (isset($term->count) && $term->count > 0) {
5179 5179
 			$return[] = $term;
5180 5180
 		} else {
5181 5181
 			/**
@@ -5186,7 +5186,7 @@  discard block
 block discarded – undo
5186 5186
 			 * @param array $return The array of terms to return.
5187 5187
 			 * @param object $term  The term object.
5188 5188
 			 */
5189
-			$return = apply_filters( 'geodir_filter_empty_terms_filter', $return, $term );
5189
+			$return = apply_filters('geodir_filter_empty_terms_filter', $return, $term);
5190 5190
 		}
5191 5191
 	}
5192 5192
 
@@ -5203,15 +5203,15 @@  discard block
 block discarded – undo
5203 5203
  *
5204 5204
  * @return array
5205 5205
  */
5206
-function geodir_remove_hentry( $class ) {
5207
-	if ( geodir_is_page( 'detail' ) ) {
5208
-		$class = array_diff( $class, array( 'hentry' ) );
5206
+function geodir_remove_hentry($class) {
5207
+	if (geodir_is_page('detail')) {
5208
+		$class = array_diff($class, array('hentry'));
5209 5209
 	}
5210 5210
 
5211 5211
 	return $class;
5212 5212
 }
5213 5213
 
5214
-add_filter( 'post_class', 'geodir_remove_hentry' );
5214
+add_filter('post_class', 'geodir_remove_hentry');
5215 5215
 
5216 5216
 /**
5217 5217
  * Registers a individual text string for WPML translation.
@@ -5223,8 +5223,8 @@  discard block
 block discarded – undo
5223 5223
  * @param string $domain The plugin domain. Default geodirectory.
5224 5224
  * @param string $name The name of the string which helps to know what's being translated.
5225 5225
  */
5226
-function geodir_wpml_register_string( $string, $domain = 'geodirectory', $name = '' ) {
5227
-    do_action( 'wpml_register_single_string', $domain, $name, $string );
5226
+function geodir_wpml_register_string($string, $domain = 'geodirectory', $name = '') {
5227
+    do_action('wpml_register_single_string', $domain, $name, $string);
5228 5228
 }
5229 5229
 
5230 5230
 /**
@@ -5239,6 +5239,6 @@  discard block
 block discarded – undo
5239 5239
  * @param string $language_code Return the translation in this language. Default is NULL which returns the current language.
5240 5240
  * @return string The translated string.
5241 5241
  */
5242
-function geodir_wpml_translate_string( $string, $domain = 'geodirectory', $name = '', $language_code = NULL ) {
5243
-    return apply_filters( 'wpml_translate_single_string', $string, $domain, $name, $language_code );
5242
+function geodir_wpml_translate_string($string, $domain = 'geodirectory', $name = '', $language_code = NULL) {
5243
+    return apply_filters('wpml_translate_single_string', $string, $domain, $name, $language_code);
5244 5244
 }
5245 5245
\ No newline at end of file
Please login to merge, or discard this patch.
geodirectory-functions/shortcode_functions.php 2 patches
Indentation   +427 added lines, -427 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  
10 10
 // If this file is called directly, abort.
11 11
 if (!defined('WPINC')) {
12
-    die;
12
+	die;
13 13
 }
14 14
 
15 15
 /**
@@ -22,22 +22,22 @@  discard block
 block discarded – undo
22 22
  */
23 23
 function gdsc_validate_measurements($value)
24 24
 {
25
-    if ((strlen($value) - 1) == strpos(trim($value), '%')) {
26
-        // $value is entered as a percent, so it can't be less than 0 or more than 100
27
-        $value = preg_replace('/\D/', '', $value);
28
-        if (100 < $value) {
29
-            $value = 100;
30
-        }
31
-        // Re-add the percent symbol
32
-        $value = $value . '%';
33
-    } elseif ((strlen($value) - 2) == strpos(trim($value), 'px')) {
34
-        // Get the absint & re-add the 'px'
35
-        $value = preg_replace('/\D/', '', $value) . 'px';
36
-    } else {
37
-        $value = preg_replace('/\D/', '', $value);
38
-    }
25
+	if ((strlen($value) - 1) == strpos(trim($value), '%')) {
26
+		// $value is entered as a percent, so it can't be less than 0 or more than 100
27
+		$value = preg_replace('/\D/', '', $value);
28
+		if (100 < $value) {
29
+			$value = 100;
30
+		}
31
+		// Re-add the percent symbol
32
+		$value = $value . '%';
33
+	} elseif ((strlen($value) - 2) == strpos(trim($value), 'px')) {
34
+		// Get the absint & re-add the 'px'
35
+		$value = preg_replace('/\D/', '', $value) . 'px';
36
+	} else {
37
+		$value = preg_replace('/\D/', '', $value);
38
+	}
39 39
 
40
-    return $value;
40
+	return $value;
41 41
 }
42 42
 
43 43
 /**
@@ -52,35 +52,35 @@  discard block
 block discarded – undo
52 52
 function gdsc_validate_map_args($params)
53 53
 {
54 54
 
55
-    $params['width'] = gdsc_validate_measurements($params['width']);
56
-    $params['height'] = gdsc_validate_measurements($params['height']);
55
+	$params['width'] = gdsc_validate_measurements($params['width']);
56
+	$params['height'] = gdsc_validate_measurements($params['height']);
57 57
 
58
-    // Only accept our 4 maptypes. Otherwise, revert to the default.
59
-    if (!(in_array(geodir_strtoupper($params['maptype']), array('HYBRID', 'SATELLITE', 'ROADMAP', 'TERRAIN')))) {
60
-        $params['maptype'] = 'ROADMAP';
61
-    } else {
62
-        $params['maptype'] = geodir_strtoupper($params['maptype']);
63
-    }
58
+	// Only accept our 4 maptypes. Otherwise, revert to the default.
59
+	if (!(in_array(geodir_strtoupper($params['maptype']), array('HYBRID', 'SATELLITE', 'ROADMAP', 'TERRAIN')))) {
60
+		$params['maptype'] = 'ROADMAP';
61
+	} else {
62
+		$params['maptype'] = geodir_strtoupper($params['maptype']);
63
+	}
64 64
 
65
-    // Zoom accepts a value between 1 and 19
66
-    $params['zoom'] = absint($params['zoom']);
67
-    if (19 < $params['zoom']) {
68
-        $params['zoom'] = '19';
69
-    }
70
-    if (0 == $params['zoom']) {
71
-        $params['zoom'] = '1';
72
-    }
65
+	// Zoom accepts a value between 1 and 19
66
+	$params['zoom'] = absint($params['zoom']);
67
+	if (19 < $params['zoom']) {
68
+		$params['zoom'] = '19';
69
+	}
70
+	if (0 == $params['zoom']) {
71
+		$params['zoom'] = '1';
72
+	}
73 73
 
74
-    // Child_collapse must be boolean
75
-    $params['child_collapse'] = gdsc_to_bool_val($params['child_collapse']);
74
+	// Child_collapse must be boolean
75
+	$params['child_collapse'] = gdsc_to_bool_val($params['child_collapse']);
76 76
 
77
-    // Scrollwheel must be boolean
78
-    $params['scrollwheel'] = gdsc_to_bool_val($params['scrollwheel']);
77
+	// Scrollwheel must be boolean
78
+	$params['scrollwheel'] = gdsc_to_bool_val($params['scrollwheel']);
79 79
 
80
-    // Scrollwheel must be boolean
81
-    $params['autozoom'] = gdsc_to_bool_val($params['autozoom']);
80
+	// Scrollwheel must be boolean
81
+	$params['autozoom'] = gdsc_to_bool_val($params['autozoom']);
82 82
 
83
-    return $params;
83
+	return $params;
84 84
 }
85 85
 
86 86
 /**
@@ -99,52 +99,52 @@  discard block
 block discarded – undo
99 99
  */
100 100
 function gdsc_to_bool_val($in, $strict = false)
101 101
 {
102
-    $out = null;
103
-
104
-    // if not strict, we only have to check if something is false
105
-    if (in_array($in, array(
106
-        'false',
107
-        'False',
108
-        'FALSE',
109
-        'no',
110
-        'No',
111
-        'n',
112
-        'N',
113
-        '0',
114
-        'off',
115
-        'Off',
116
-        'OFF',
117
-        false,
118
-        0,
119
-        null
120
-    ), true)) {
121
-        $out = false;
122
-    } else if ($strict) {
123
-        // if strict, check the equivalent true values
124
-        if (in_array($in, array(
125
-            'true',
126
-            'True',
127
-            'TRUE',
128
-            'yes',
129
-            'Yes',
130
-            'y',
131
-            'Y',
132
-            '1',
133
-            'on',
134
-            'On',
135
-            'ON',
136
-            true,
137
-            1
138
-        ), true)) {
139
-            $out = true;
140
-        }
141
-    } else {
142
-        // not strict? let the regular php bool check figure it out (will
143
-        //     largely default to true)
144
-        $out = ($in ? true : false);
145
-    }
102
+	$out = null;
103
+
104
+	// if not strict, we only have to check if something is false
105
+	if (in_array($in, array(
106
+		'false',
107
+		'False',
108
+		'FALSE',
109
+		'no',
110
+		'No',
111
+		'n',
112
+		'N',
113
+		'0',
114
+		'off',
115
+		'Off',
116
+		'OFF',
117
+		false,
118
+		0,
119
+		null
120
+	), true)) {
121
+		$out = false;
122
+	} else if ($strict) {
123
+		// if strict, check the equivalent true values
124
+		if (in_array($in, array(
125
+			'true',
126
+			'True',
127
+			'TRUE',
128
+			'yes',
129
+			'Yes',
130
+			'y',
131
+			'Y',
132
+			'1',
133
+			'on',
134
+			'On',
135
+			'ON',
136
+			true,
137
+			1
138
+		), true)) {
139
+			$out = true;
140
+		}
141
+	} else {
142
+		// not strict? let the regular php bool check figure it out (will
143
+		//     largely default to true)
144
+		$out = ($in ? true : false);
145
+	}
146 146
 
147
-    return $out;
147
+	return $out;
148 148
 }
149 149
 
150 150
 /**
@@ -157,16 +157,16 @@  discard block
 block discarded – undo
157 157
  */
158 158
 function gdsc_is_post_type_valid($incoming_post_type)
159 159
 {
160
-    $post_types = geodir_get_posttypes();
161
-    $post_types = array_map('geodir_strtolower', $post_types);
162
-    $post_type_found = false;
163
-    foreach ($post_types as $type) {
164
-        if (geodir_strtolower($incoming_post_type) == geodir_strtolower($type)) {
165
-            $post_type_found = true;
166
-        }
167
-    }
160
+	$post_types = geodir_get_posttypes();
161
+	$post_types = array_map('geodir_strtolower', $post_types);
162
+	$post_type_found = false;
163
+	foreach ($post_types as $type) {
164
+		if (geodir_strtolower($incoming_post_type) == geodir_strtolower($type)) {
165
+			$post_type_found = true;
166
+		}
167
+	}
168 168
 
169
-    return $post_type_found;
169
+	return $post_type_found;
170 170
 }
171 171
 
172 172
 /**
@@ -186,52 +186,52 @@  discard block
 block discarded – undo
186 186
  */
187 187
 function gdsc_listing_loop_filter($query)
188 188
 {
189
-    global $wp_query, $geodir_post_type, $table, $plugin_prefix, $term;
190
-
191
-    $geodir_post_type = geodir_get_current_posttype();
192
-
193
-    if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
194
-        $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
195
-
196
-        if (isset($wp_query->query[$taxonomies[0]])) {
197
-            $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
198
-            $request_term = end($request_term);
199
-            if (!term_exists($request_term)) {
200
-                $args = array('number' => '1',);
201
-                $terms_arr = get_terms($taxonomies[0], $args);
202
-                foreach ($terms_arr as $location_term) {
203
-                    $term_arr = $location_term;
204
-                    $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
205
-                }
206
-                $wp_query->queried_object_id = 1;
207
-                $wp_query->queried_object = $term_arr;
208
-            }
209
-        }
189
+	global $wp_query, $geodir_post_type, $table, $plugin_prefix, $term;
190
+
191
+	$geodir_post_type = geodir_get_current_posttype();
192
+
193
+	if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
194
+		$taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
195
+
196
+		if (isset($wp_query->query[$taxonomies[0]])) {
197
+			$request_term = explode("/", $wp_query->query[$taxonomies[0]]);
198
+			$request_term = end($request_term);
199
+			if (!term_exists($request_term)) {
200
+				$args = array('number' => '1',);
201
+				$terms_arr = get_terms($taxonomies[0], $args);
202
+				foreach ($terms_arr as $location_term) {
203
+					$term_arr = $location_term;
204
+					$term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
205
+				}
206
+				$wp_query->queried_object_id = 1;
207
+				$wp_query->queried_object = $term_arr;
208
+			}
209
+		}
210 210
 
211
-    }
212
-    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
211
+	}
212
+	if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
213 213
 
214
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
214
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
215 215
 
216
-        add_filter('posts_fields', 'geodir_posts_fields', 1);
217
-        add_filter('posts_join', 'geodir_posts_join', 1);
218
-        geodir_post_where();
219
-        if (!is_admin()) {
220
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
221
-        }
216
+		add_filter('posts_fields', 'geodir_posts_fields', 1);
217
+		add_filter('posts_join', 'geodir_posts_join', 1);
218
+		geodir_post_where();
219
+		if (!is_admin()) {
220
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
221
+		}
222 222
 
223
-        // advanced filter for popular post view widget
224
-        global $wp_query;
225
-        if (!is_admin()) {
226
-            if (!empty($wp_query->query['with_pics_only'])) {
227
-                add_filter('posts_join', 'geodir_filter_widget_join', 1000);
228
-            }
229
-            add_filter('posts_where', 'geodir_filter_widget_where', 1000);
230
-        }
223
+		// advanced filter for popular post view widget
224
+		global $wp_query;
225
+		if (!is_admin()) {
226
+			if (!empty($wp_query->query['with_pics_only'])) {
227
+				add_filter('posts_join', 'geodir_filter_widget_join', 1000);
228
+			}
229
+			add_filter('posts_where', 'geodir_filter_widget_where', 1000);
230
+		}
231 231
 
232
-    }
232
+	}
233 233
 
234
-    return $query;
234
+	return $query;
235 235
 }
236 236
 
237 237
 /**
@@ -245,40 +245,40 @@  discard block
 block discarded – undo
245 245
  */
246 246
 function gdsc_manage_category_choice($post_type, $category)
247 247
 {
248
-    if (0 == $category || '' == $category) {
249
-        return '';
250
-    }
248
+	if (0 == $category || '' == $category) {
249
+		return '';
250
+	}
251 251
 
252
-    if (!(gdsc_is_post_type_valid($post_type))) {
253
-        return '';
254
-    }
252
+	if (!(gdsc_is_post_type_valid($post_type))) {
253
+		return '';
254
+	}
255 255
 
256
-    $taxonomies = geodir_get_taxonomies($post_type);
256
+	$taxonomies = geodir_get_taxonomies($post_type);
257 257
 
258
-    $categories = get_terms(array('taxonomy' => $taxonomies[0]));
258
+	$categories = get_terms(array('taxonomy' => $taxonomies[0]));
259 259
 
260
-    $cat_id = 0;
260
+	$cat_id = 0;
261 261
 
262
-    foreach ($categories as $cat) {
263
-        if (is_numeric($category)) {
264
-            if (absint($category) == $cat->term_id) {
265
-                $cat_id = $cat->term_id;
266
-                break;
267
-            }
268
-        } else {
269
-            if ($category == $cat->slug) {
270
-                $cat_id = $cat->term_id;
271
-                break;
272
-            }
262
+	foreach ($categories as $cat) {
263
+		if (is_numeric($category)) {
264
+			if (absint($category) == $cat->term_id) {
265
+				$cat_id = $cat->term_id;
266
+				break;
267
+			}
268
+		} else {
269
+			if ($category == $cat->slug) {
270
+				$cat_id = $cat->term_id;
271
+				break;
272
+			}
273 273
 
274
-            if ($category == $cat->name) {
275
-                $cat_id = $cat->term_id;
276
-                break;
277
-            }
278
-        }
279
-    }
274
+			if ($category == $cat->name) {
275
+				$cat_id = $cat->term_id;
276
+				break;
277
+			}
278
+		}
279
+	}
280 280
 
281
-    return $cat_id;
281
+	return $cat_id;
282 282
 }
283 283
 
284 284
 // @todo: Extract this
@@ -288,11 +288,11 @@  discard block
 block discarded – undo
288 288
 	 * Adds the script in the page footer for the home page google map.
289 289
 	 *
290 290
 	 * @since 1.0.0
291
-     * @return string Print the script in page footer.
291
+	 * @return string Print the script in page footer.
292 292
 	 */
293 293
 	function geodir_home_map_add_script()
294
-    {
295
-        ?>
294
+	{
295
+		?>
296 296
         <script type="text/javascript">
297 297
             jQuery(document).ready(function () {
298 298
                 geoDirMapSlide();
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
             }
366 366
         </script>
367 367
     <?php
368
-    }
368
+	}
369 369
 }
370 370
 
371 371
 /**
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
  */
377 377
 function geodir_popular_category_add_scripts()
378 378
 {
379
-    ?>
379
+	?>
380 380
     <script type="text/javascript">
381 381
         jQuery(function ($) {
382 382
             $('.geodir-showcat').click(function () {
@@ -406,56 +406,56 @@  discard block
 block discarded – undo
406 406
  */
407 407
 function gdsc_validate_layout_choice($layout_choice)
408 408
 {
409
-    switch (geodir_strtolower($layout_choice)) {
410
-        case 'list';
411
-        case 'one';
412
-        case 'one_column';
413
-        case 'onecolumn';
414
-        case '1';
415
-            $layout_choice = 'list';
416
-            break;
417
-        case 'gridview_onehalf';
418
-        case 'two';
419
-        case 'two_column';
420
-        case 'two_columns';
421
-        case 'twocolumn';
422
-        case 'twocolumns';
423
-        case '2';
424
-            $layout_choice = 'gridview_onehalf';
425
-            break;
426
-        case 'gridview_onethird';
427
-        case 'three';
428
-        case 'three_column';
429
-        case 'three_columns';
430
-        case 'threecolumn';
431
-        case 'threecolumns';
432
-        case '3';
433
-            $layout_choice = 'gridview_onethird';
434
-            break;
435
-        case 'gridview_onefourth';
436
-        case 'four';
437
-        case 'four_column';
438
-        case 'four_columns';
439
-        case 'fourcolumn';
440
-        case 'fourcolumns';
441
-        case '4';
442
-            $layout_choice = 'gridview_onefourth';
443
-            break;
444
-        case 'gridview_onefifth';
445
-        case 'five';
446
-        case 'five_column';
447
-        case 'five_columns';
448
-        case 'fivecolumn';
449
-        case 'fivecolumns';
450
-        case '5';
451
-            $layout_choice = 'gridview_onefifth';
452
-            break;
453
-        default:
454
-            $layout_choice = 'gridview_onehalf';
455
-            break;
456
-    }
409
+	switch (geodir_strtolower($layout_choice)) {
410
+		case 'list';
411
+		case 'one';
412
+		case 'one_column';
413
+		case 'onecolumn';
414
+		case '1';
415
+			$layout_choice = 'list';
416
+			break;
417
+		case 'gridview_onehalf';
418
+		case 'two';
419
+		case 'two_column';
420
+		case 'two_columns';
421
+		case 'twocolumn';
422
+		case 'twocolumns';
423
+		case '2';
424
+			$layout_choice = 'gridview_onehalf';
425
+			break;
426
+		case 'gridview_onethird';
427
+		case 'three';
428
+		case 'three_column';
429
+		case 'three_columns';
430
+		case 'threecolumn';
431
+		case 'threecolumns';
432
+		case '3';
433
+			$layout_choice = 'gridview_onethird';
434
+			break;
435
+		case 'gridview_onefourth';
436
+		case 'four';
437
+		case 'four_column';
438
+		case 'four_columns';
439
+		case 'fourcolumn';
440
+		case 'fourcolumns';
441
+		case '4';
442
+			$layout_choice = 'gridview_onefourth';
443
+			break;
444
+		case 'gridview_onefifth';
445
+		case 'five';
446
+		case 'five_column';
447
+		case 'five_columns';
448
+		case 'fivecolumn';
449
+		case 'fivecolumns';
450
+		case '5';
451
+			$layout_choice = 'gridview_onefifth';
452
+			break;
453
+		default:
454
+			$layout_choice = 'gridview_onehalf';
455
+			break;
456
+	}
457 457
 
458
-    return $layout_choice;
458
+	return $layout_choice;
459 459
 }
460 460
 
461 461
 /**
@@ -472,34 +472,34 @@  discard block
 block discarded – undo
472 472
  */
473 473
 function gdsc_validate_sort_choice($sort_choice, $post_type = '')
474 474
 {
475
-    global $plugin_prefix;
476
-
477
-    $sorts = array(
478
-        'az',
479
-        'latest',
480
-        'featured',
481
-        'high_review',
482
-        'high_rating',
483
-        'random',
484
-    );
485
-
486
-    if (in_array($sort_choice, $sorts)) {
487
-        return $sort_choice;
488
-    }
475
+	global $plugin_prefix;
476
+
477
+	$sorts = array(
478
+		'az',
479
+		'latest',
480
+		'featured',
481
+		'high_review',
482
+		'high_rating',
483
+		'random',
484
+	);
485
+
486
+	if (in_array($sort_choice, $sorts)) {
487
+		return $sort_choice;
488
+	}
489 489
 
490
-    if (!empty($post_type)) {
491
-        $table = $plugin_prefix . $post_type . '_detail';
490
+	if (!empty($post_type)) {
491
+		$table = $plugin_prefix . $post_type . '_detail';
492 492
         
493
-        if (!geodir_prepare_custom_sorting($sort_choice, $table)) {
494
-            $sort_choice = '';
495
-        }
496
-    }
493
+		if (!geodir_prepare_custom_sorting($sort_choice, $table)) {
494
+			$sort_choice = '';
495
+		}
496
+	}
497 497
 
498
-    if (empty($post_type) || empty($sort_choice)) {
499
-        $sort_choice = 'latest';
500
-    }
498
+	if (empty($post_type) || empty($sort_choice)) {
499
+		$sort_choice = 'latest';
500
+	}
501 501
 
502
-    return $sort_choice;
502
+	return $sort_choice;
503 503
 }
504 504
 
505 505
 /**
@@ -512,22 +512,22 @@  discard block
 block discarded – undo
512 512
  */
513 513
 function gdsc_validate_listing_width($width_choice)
514 514
 {
515
-    if (!(empty($width_choice))) {
516
-        $width_choice = absint($width_choice);
517
-    } else {
518
-        return '';
519
-    }
515
+	if (!(empty($width_choice))) {
516
+		$width_choice = absint($width_choice);
517
+	} else {
518
+		return '';
519
+	}
520 520
 
521
-    if (100 < $width_choice) {
522
-        $width_choice = 100;
523
-    }
521
+	if (100 < $width_choice) {
522
+		$width_choice = 100;
523
+	}
524 524
 
525
-    // If listing_width is too narrow, it won't work, arbitrarily set to 10% here
526
-    if (10 > $width_choice) {
527
-        $width_choice = 10;
528
-    }
525
+	// If listing_width is too narrow, it won't work, arbitrarily set to 10% here
526
+	if (10 > $width_choice) {
527
+		$width_choice = 10;
528
+	}
529 529
 
530
-    return $width_choice;
530
+	return $width_choice;
531 531
 }
532 532
 
533 533
 /**
@@ -540,18 +540,18 @@  discard block
 block discarded – undo
540 540
  */
541 541
 function gdsc_validate_list_filter_choice($filter_choice)
542 542
 {
543
-    $filters = array(
544
-        'all',
545
-        'today',
546
-        'upcoming',
547
-        'past',
548
-    );
549
-
550
-    if (!(in_array($filter_choice, $filters))) {
551
-        $filter_choice = 'all';
552
-    }
543
+	$filters = array(
544
+		'all',
545
+		'today',
546
+		'upcoming',
547
+		'past',
548
+	);
549
+
550
+	if (!(in_array($filter_choice, $filters))) {
551
+		$filter_choice = 'all';
552
+	}
553 553
 
554
-    return $filter_choice;
554
+	return $filter_choice;
555 555
 }
556 556
 
557 557
 /**
@@ -573,7 +573,7 @@  discard block
 block discarded – undo
573 573
  * @return string Listings HTML content.
574 574
  */
575 575
 function geodir_sc_gd_listings_output($args = array()) {
576
-    $title				 = !empty($args['title']) ? __($args['title'], 'geodirectory') : '';
576
+	$title				 = !empty($args['title']) ? __($args['title'], 'geodirectory') : '';
577 577
 	$post_type 			 = !empty($args['post_type']) ? $args['post_type'] : 'gd_place';
578 578
 	$category 			 = !empty($args['category']) ? $args['category'] : '0';
579 579
 	$post_number		 = !empty($args['post_number']) ? $args['post_number'] : 10;
@@ -583,17 +583,17 @@  discard block
 block discarded – undo
583 583
 	$layout 			 = !empty($args['layout']) ? $args['layout'] : 'gridview_onehalf';
584 584
 	$with_pagination 	 = !empty($args['with_pagination']) ? true : false;
585 585
 	$event_type 	 	 = !empty($args['event_type']) ? $args['event_type'] : '';
586
-    $shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
587
-    $tags                = !empty($args['tags']) ? $args['tags'] : array();
588
-    /**
589
-     * Filter the content text displayed when no listings found.
590
-     *
591
-     * @since 1.6.0
592
-     *
593
-     * @param string $shortcode_content The shortcode content text.
594
-     * @param array $args Array of arguements to filter listings.
595
-     */
596
-    $shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
586
+	$shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
587
+	$tags                = !empty($args['tags']) ? $args['tags'] : array();
588
+	/**
589
+	 * Filter the content text displayed when no listings found.
590
+	 *
591
+	 * @since 1.6.0
592
+	 *
593
+	 * @param string $shortcode_content The shortcode content text.
594
+	 * @param array $args Array of arguements to filter listings.
595
+	 */
596
+	$shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
597 597
 		
598 598
 	$top_pagination 	 = $with_pagination && !empty($args['top_pagination']) ? true : false;
599 599
 	$bottom_pagination 	 = $with_pagination && !empty($args['bottom_pagination']) ? true : false;
@@ -605,92 +605,92 @@  discard block
 block discarded – undo
605 605
 	$pageno 	 		 = $geodir_ajax && !empty($args['pageno']) ? $args['pageno'] : 1;
606 606
 	
607 607
 	$query_args = array(
608
-        'posts_per_page' => $post_number,
609
-        'is_geodir_loop' => true,
610
-        'gd_location' => $add_location_filter,
611
-        'post_type' => $post_type,
612
-        'order_by' => $list_sort,
608
+		'posts_per_page' => $post_number,
609
+		'is_geodir_loop' => true,
610
+		'gd_location' => $add_location_filter,
611
+		'post_type' => $post_type,
612
+		'order_by' => $list_sort,
613 613
 		'pageno' => $pageno
614
-    );
614
+	);
615 615
 
616
-    if ($character_count >= 0) {
617
-        $query_args['excerpt_length'] = $character_count;
618
-    }
616
+	if ($character_count >= 0) {
617
+		$query_args['excerpt_length'] = $character_count;
618
+	}
619 619
     
620
-    if (!empty($args['post_author'])) {
621
-        $query_args['post_author'] = $args['post_author'];
622
-    }
620
+	if (!empty($args['post_author'])) {
621
+		$query_args['post_author'] = $args['post_author'];
622
+	}
623 623
 
624
-    if (!empty($args['show_featured_only'])) {
625
-        $query_args['show_featured_only'] = 1;
626
-    }
624
+	if (!empty($args['show_featured_only'])) {
625
+		$query_args['show_featured_only'] = 1;
626
+	}
627 627
 
628
-    if (!empty($args['show_special_only'])) {
629
-        $query_args['show_special_only'] = 1;
630
-    }
628
+	if (!empty($args['show_special_only'])) {
629
+		$query_args['show_special_only'] = 1;
630
+	}
631 631
 
632
-    if (!empty($args['with_pics_only'])) {
633
-        $query_args['with_pics_only'] = 0;
634
-        $query_args['featured_image_only'] = 1;
635
-    }
632
+	if (!empty($args['with_pics_only'])) {
633
+		$query_args['with_pics_only'] = 0;
634
+		$query_args['featured_image_only'] = 1;
635
+	}
636 636
 
637
-    if (!empty($args['with_videos_only'])) {
638
-        $query_args['with_videos_only'] = 1;
639
-    }
637
+	if (!empty($args['with_videos_only'])) {
638
+		$query_args['with_videos_only'] = 1;
639
+	}
640 640
     
641
-    if (!empty($args['show_favorites_only'])) {
642
-        $query_args['show_favorites_only'] = 1;
643
-        $query_args['favorites_by_user'] = !empty($args['favorites_by_user']) ? $args['favorites_by_user'] : 0;
644
-    }
645
-    $with_no_results = !empty($args['without_no_results']) ? false : true;
641
+	if (!empty($args['show_favorites_only'])) {
642
+		$query_args['show_favorites_only'] = 1;
643
+		$query_args['favorites_by_user'] = !empty($args['favorites_by_user']) ? $args['favorites_by_user'] : 0;
644
+	}
645
+	$with_no_results = !empty($args['without_no_results']) ? false : true;
646 646
 
647
-    if (!empty($category) && isset($category[0]) && $category[0] != '0') {
648
-        $category_taxonomy = geodir_get_taxonomies($post_type);
647
+	if (!empty($category) && isset($category[0]) && $category[0] != '0') {
648
+		$category_taxonomy = geodir_get_taxonomies($post_type);
649 649
 
650
-        ######### WPML #########
651
-        if (function_exists('icl_object_id')) {
652
-            $category = gd_lang_object_ids($category, $category_taxonomy[0]);
653
-        }
654
-        ######### WPML #########
650
+		######### WPML #########
651
+		if (function_exists('icl_object_id')) {
652
+			$category = gd_lang_object_ids($category, $category_taxonomy[0]);
653
+		}
654
+		######### WPML #########
655 655
 
656
-        $tax_query = array(
657
-            'taxonomy' => $category_taxonomy[0],
658
-            'field' => 'id',
659
-            'terms' => $category
660
-        );
656
+		$tax_query = array(
657
+			'taxonomy' => $category_taxonomy[0],
658
+			'field' => 'id',
659
+			'terms' => $category
660
+		);
661 661
 
662
-        $query_args['tax_query'] = array($tax_query);
663
-    }
662
+		$query_args['tax_query'] = array($tax_query);
663
+	}
664 664
     
665
-    if (!empty($tags)) {
666
-        // Clean tags
667
-        if (!is_array($tags)) {
668
-            $comma = _x(',', 'tag delimiter');
669
-            if ( ',' !== $comma ) {
670
-                $tags = str_replace($comma, ',', $tags);
671
-            }
672
-            $tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
673
-            $tags = array_map('trim', $tags);
674
-        }
665
+	if (!empty($tags)) {
666
+		// Clean tags
667
+		if (!is_array($tags)) {
668
+			$comma = _x(',', 'tag delimiter');
669
+			if ( ',' !== $comma ) {
670
+				$tags = str_replace($comma, ',', $tags);
671
+			}
672
+			$tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
673
+			$tags = array_map('trim', $tags);
674
+		}
675 675
         
676
-        if (!empty($tags)) {
677
-            $tag_query = array(
678
-                'taxonomy' => $post_type . '_tags',
679
-                'field' => 'name',
680
-                'terms' => $tags
681
-            );
682
-
683
-            if (!empty($query_args['tax_query'])) {
684
-                $query_args['tax_query'][] = $tag_query;
685
-            } else {
686
-                $query_args['tax_query'] = array($tag_query);
687
-            }
688
-        }
689
-    }
676
+		if (!empty($tags)) {
677
+			$tag_query = array(
678
+				'taxonomy' => $post_type . '_tags',
679
+				'field' => 'name',
680
+				'terms' => $tags
681
+			);
682
+
683
+			if (!empty($query_args['tax_query'])) {
684
+				$query_args['tax_query'][] = $tag_query;
685
+			} else {
686
+				$query_args['tax_query'] = array($tag_query);
687
+			}
688
+		}
689
+	}
690 690
 
691
-    global $gridview_columns_widget, $geodir_is_widget_listing;
691
+	global $gridview_columns_widget, $geodir_is_widget_listing;
692 692
 
693
-    if ($post_type == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
693
+	if ($post_type == 'gd_event' && function_exists('geodir_event_get_widget_events')) {
694 694
 		global $geodir_event_widget_listview;
695 695
 		$geodir_event_widget_listview = true;
696 696
 		
@@ -705,16 +705,16 @@  discard block
 block discarded – undo
705 705
 		$widget_listings = $total_posts > 0 ? geodir_get_widget_listings($query_args) : array();
706 706
 	}
707 707
 	$current_gridview_columns_widget = $gridview_columns_widget;
708
-    $identifier = ' gd-wgt-pagi-' . mt_rand();
709
-    ob_start();
708
+	$identifier = ' gd-wgt-pagi-' . mt_rand();
709
+	ob_start();
710 710
 	if (!empty($widget_listings) || $with_no_results) {
711 711
 		if (!$geodir_ajax) {
712
-        /**
713
-         * Called before the shortcode [gd_listings] content is output.
714
-         *
715
-         * @since 1.0.0
716
-         */
717
-        do_action('geodir_before_sc_gd_listings');
712
+		/**
713
+		 * Called before the shortcode [gd_listings] content is output.
714
+		 *
715
+		 * @since 1.0.0
716
+		 */
717
+		do_action('geodir_before_sc_gd_listings');
718 718
 		?>
719 719
         <div class="geodir_locations geodir_location_listing geodir-sc-gd-listings <?php echo $identifier;?>">
720 720
             <?php if ($title != '') { ?>
@@ -725,63 +725,63 @@  discard block
 block discarded – undo
725 725
             <div class="gd-sc-loader">
726 726
                 <div class="gd-sc-content">
727 727
             <?php }
728
-            if (!(empty($widget_listings) && !empty($shortcode_content))) {
729
-                if (strstr($layout, 'gridview')) {
730
-                    $listing_view_exp = explode('_', $layout);
731
-                    $gridview_columns_widget = $layout;
732
-                    $layout = $listing_view_exp[0];
733
-                } else {
734
-                    $gridview_columns_widget = '';
735
-                }
736
-
737
-                /**
738
-                 * Filter the widget listing listview template.
739
-                 *
740
-                 * @since 1.0.0
741
-                 *
742
-                 * @param string The template file to display listing.
743
-                 */
744
-                $template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
728
+			if (!(empty($widget_listings) && !empty($shortcode_content))) {
729
+				if (strstr($layout, 'gridview')) {
730
+					$listing_view_exp = explode('_', $layout);
731
+					$gridview_columns_widget = $layout;
732
+					$layout = $listing_view_exp[0];
733
+				} else {
734
+					$gridview_columns_widget = '';
735
+				}
736
+
737
+				/**
738
+				 * Filter the widget listing listview template.
739
+				 *
740
+				 * @since 1.0.0
741
+				 *
742
+				 * @param string The template file to display listing.
743
+				 */
744
+				$template = apply_filters("geodir_template_part-widget-listing-listview", geodir_locate_template('widget-listing-listview'));
745 745
                             
746
-                global $post, $map_jason, $map_canvas_arr, $gd_session;
747
-
748
-                $current_post = $post;
749
-                $current_map_jason = $map_jason;
750
-                $current_map_canvas_arr = $map_canvas_arr;
751
-                $geodir_is_widget_listing = true;
752
-                $gd_session->un_set('gd_listing_view');
753
-
754
-                if ($with_pagination && $top_pagination) {				
755
-                    echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
756
-                }
757
-
758
-                /**
759
-                 * Includes listing listview template.
760
-                 *
761
-                 * @since 1.0.0
762
-                 */
763
-                include($template);
746
+				global $post, $map_jason, $map_canvas_arr, $gd_session;
747
+
748
+				$current_post = $post;
749
+				$current_map_jason = $map_jason;
750
+				$current_map_canvas_arr = $map_canvas_arr;
751
+				$geodir_is_widget_listing = true;
752
+				$gd_session->un_set('gd_listing_view');
753
+
754
+				if ($with_pagination && $top_pagination) {				
755
+					echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
756
+				}
757
+
758
+				/**
759
+				 * Includes listing listview template.
760
+				 *
761
+				 * @since 1.0.0
762
+				 */
763
+				include($template);
764 764
                 
765
-                if ($with_pagination && $bottom_pagination) {				
766
-                    echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
767
-                }
768
-
769
-                $geodir_is_widget_listing = false;
770
-
771
-                $GLOBALS['post'] = $current_post;
772
-                if (!empty($current_post)) {
773
-                    setup_postdata($current_post);
774
-                }
775
-                $map_jason = $current_map_jason;
776
-                $map_canvas_arr = $current_map_canvas_arr;
777
-                global $gridview_columns_widget;
778
-                $gridview_columns_widget = $current_gridview_columns_widget;
779
-            } else {
780
-                echo $shortcode_content;
781
-            }
765
+				if ($with_pagination && $bottom_pagination) {				
766
+					echo geodir_sc_listings_pagination($total_posts, $post_number, $pageno);
767
+				}
768
+
769
+				$geodir_is_widget_listing = false;
770
+
771
+				$GLOBALS['post'] = $current_post;
772
+				if (!empty($current_post)) {
773
+					setup_postdata($current_post);
774
+				}
775
+				$map_jason = $current_map_jason;
776
+				$map_canvas_arr = $current_map_canvas_arr;
777
+				global $gridview_columns_widget;
778
+				$gridview_columns_widget = $current_gridview_columns_widget;
779
+			} else {
780
+				echo $shortcode_content;
781
+			}
782 782
 			?>
783 783
 			<?php
784
-            if (!$geodir_ajax) { 
784
+			if (!$geodir_ajax) { 
785 785
 			?>
786 786
             </div><p class="geodir-sclisting-loading" style="display:none;"><i class="fa fa-cog fa-spin"></i></p></div>
787 787
 <script type="text/javascript">
@@ -819,10 +819,10 @@  discard block
 block discarded – undo
819 819
             loading.hide();
820 820
             jQuery(items).html(response);
821 821
             <?php
822
-              /**
823
-               * if lazyload images enabled then refresh them once ajax page changed.
824
-               */
825
-              if (get_option('geodir_lazy_load', 1)) { ?>
822
+			  /**
823
+			   * if lazyload images enabled then refresh them once ajax page changed.
824
+			   */
825
+			  if (get_option('geodir_lazy_load', 1)) { ?>
826 826
               geodir_init_lazy_load();
827 827
               <?php } ?>
828 828
         }
@@ -832,11 +832,11 @@  discard block
 block discarded – undo
832 832
 </div>
833 833
 		<?php } ?>
834 834
     <?php
835
-    }
835
+	}
836 836
 	$output = ob_get_contents();
837
-    ob_end_clean();
837
+	ob_end_clean();
838 838
 
839
-    return trim($output);
839
+	return trim($output);
840 840
 }
841 841
 
842 842
 /**
@@ -863,15 +863,15 @@  discard block
 block discarded – undo
863 863
  * @return string Listings pagination HTML content.
864 864
  */
865 865
 function geodir_sc_listings_pagination($total_posts, $posts_per_page, $pageno, $before = '', $after = '', $prelabel = '', $nxtlabel = '', $pages_to_show = 5, $always_show = false) {
866
-    if (empty($prelabel)) {
867
-        $prelabel = '<strong>&laquo;</strong>';
868
-    }
866
+	if (empty($prelabel)) {
867
+		$prelabel = '<strong>&laquo;</strong>';
868
+	}
869 869
 
870
-    if (empty($nxtlabel)) {
871
-        $nxtlabel = '<strong>&raquo;</strong>';
872
-    }
870
+	if (empty($nxtlabel)) {
871
+		$nxtlabel = '<strong>&raquo;</strong>';
872
+	}
873 873
 
874
-    $half_pages_to_show = round($pages_to_show / 2);
874
+	$half_pages_to_show = round($pages_to_show / 2);
875 875
 
876 876
 	$numposts = $total_posts;
877 877
 
@@ -904,7 +904,7 @@  discard block
 block discarded – undo
904 904
 		}
905 905
 		
906 906
 		if (($pageno - 1) > 0) {
907
-            echo '<a class="gd-page-sc-prev gd-wgt-page" data-page="' . (int)($pageno - 1) . '" href="javascript:void(0);">' . $prelabel . '</a>&nbsp;';
907
+			echo '<a class="gd-page-sc-prev gd-wgt-page" data-page="' . (int)($pageno - 1) . '" href="javascript:void(0);">' . $prelabel . '</a>&nbsp;';
908 908
 		}
909 909
 		
910 910
 		for ($i = $pageno - $half_pages_to_show; $i <= $pageno + $half_pages_to_show; $i++) {
@@ -927,9 +927,9 @@  discard block
 block discarded – undo
927 927
 		echo "</div> $after </div>";
928 928
 	}
929 929
 	$output = ob_get_contents();
930
-    ob_end_clean();
930
+	ob_end_clean();
931 931
 
932
-    return trim($output);
932
+	return trim($output);
933 933
 }
934 934
 
935 935
 /**
@@ -940,10 +940,10 @@  discard block
 block discarded – undo
940 940
  * @return string Listings HTML content.
941 941
  */
942 942
 function geodir_sclistings_callback() {
943
-    check_ajax_referer('geodir-sclistings-nonce', 'geodir_sclistings_nonce');
944
-    //set variables
945
-    $scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
946
-    $pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
943
+	check_ajax_referer('geodir-sclistings-nonce', 'geodir_sclistings_nonce');
944
+	//set variables
945
+	$scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
946
+	$pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
947 947
 	
948 948
 	$shortcode_atts = !empty($scatts) ? (array)json_decode(stripslashes_deep($scatts)) : NULL;
949 949
 	
@@ -955,7 +955,7 @@  discard block
 block discarded – undo
955 955
 	} else {
956 956
 		echo 0;
957 957
 	}
958
-    wp_die();
958
+	wp_die();
959 959
 }
960 960
 add_action('wp_ajax_geodir_sclistings', 'geodir_sclistings_callback');
961 961
 add_action('wp_ajax_nopriv_geodir_sclistings', 'geodir_sclistings_callback');
962 962
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@  discard block
 block discarded – undo
29 29
             $value = 100;
30 30
         }
31 31
         // Re-add the percent symbol
32
-        $value = $value . '%';
32
+        $value = $value.'%';
33 33
     } elseif ((strlen($value) - 2) == strpos(trim($value), 'px')) {
34 34
         // Get the absint & re-add the 'px'
35
-        $value = preg_replace('/\D/', '', $value) . 'px';
35
+        $value = preg_replace('/\D/', '', $value).'px';
36 36
     } else {
37 37
         $value = preg_replace('/\D/', '', $value);
38 38
     }
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
     }
212 212
     if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
213 213
 
214
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
214
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
215 215
 
216 216
         add_filter('posts_fields', 'geodir_posts_fields', 1);
217 217
         add_filter('posts_join', 'geodir_posts_join', 1);
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
     }
489 489
 
490 490
     if (!empty($post_type)) {
491
-        $table = $plugin_prefix . $post_type . '_detail';
491
+        $table = $plugin_prefix.$post_type.'_detail';
492 492
         
493 493
         if (!geodir_prepare_custom_sorting($sort_choice, $table)) {
494 494
             $sort_choice = '';
@@ -579,10 +579,10 @@  discard block
 block discarded – undo
579 579
 	$post_number		 = !empty($args['post_number']) ? $args['post_number'] : 10;
580 580
 	$add_location_filter = !empty($args['add_location_filter']) ? true : false;
581 581
 	$list_sort 			 = !empty($args['list_sort']) ? $args['list_sort'] : 'latest';
582
-	$character_count	 = isset($args['character_count']) ? $args['character_count'] : '';
583
-	$layout 			 = !empty($args['layout']) ? $args['layout'] : 'gridview_onehalf';
584
-	$with_pagination 	 = !empty($args['with_pagination']) ? true : false;
585
-	$event_type 	 	 = !empty($args['event_type']) ? $args['event_type'] : '';
582
+	$character_count = isset($args['character_count']) ? $args['character_count'] : '';
583
+	$layout = !empty($args['layout']) ? $args['layout'] : 'gridview_onehalf';
584
+	$with_pagination = !empty($args['with_pagination']) ? true : false;
585
+	$event_type = !empty($args['event_type']) ? $args['event_type'] : '';
586 586
     $shortcode_content   = !empty($args['shortcode_content']) ? trim($args['shortcode_content']) : '';
587 587
     $tags                = !empty($args['tags']) ? $args['tags'] : array();
588 588
     /**
@@ -596,13 +596,13 @@  discard block
 block discarded – undo
596 596
     $shortcode_content = apply_filters('geodir_sc_gd_listings_not_found_content', $shortcode_content, $args);
597 597
 		
598 598
 	$top_pagination 	 = $with_pagination && !empty($args['top_pagination']) ? true : false;
599
-	$bottom_pagination 	 = $with_pagination && !empty($args['bottom_pagination']) ? true : false;
599
+	$bottom_pagination = $with_pagination && !empty($args['bottom_pagination']) ? true : false;
600 600
 	
601 601
 	$shortcode_atts		 = !empty($args['shortcode_atts']) ? $args['shortcode_atts'] : array();
602 602
 
603 603
 	// ajax mode
604
-	$geodir_ajax		 = !empty($args['geodir_ajax']) ? true : false;
605
-	$pageno 	 		 = $geodir_ajax && !empty($args['pageno']) ? $args['pageno'] : 1;
604
+	$geodir_ajax = !empty($args['geodir_ajax']) ? true : false;
605
+	$pageno = $geodir_ajax && !empty($args['pageno']) ? $args['pageno'] : 1;
606 606
 	
607 607
 	$query_args = array(
608 608
         'posts_per_page' => $post_number,
@@ -666,7 +666,7 @@  discard block
 block discarded – undo
666 666
         // Clean tags
667 667
         if (!is_array($tags)) {
668 668
             $comma = _x(',', 'tag delimiter');
669
-            if ( ',' !== $comma ) {
669
+            if (',' !== $comma) {
670 670
                 $tags = str_replace($comma, ',', $tags);
671 671
             }
672 672
             $tags = explode(',', trim($tags, " \n\t\r\0\x0B,"));
@@ -675,7 +675,7 @@  discard block
 block discarded – undo
675 675
         
676 676
         if (!empty($tags)) {
677 677
             $tag_query = array(
678
-                'taxonomy' => $post_type . '_tags',
678
+                'taxonomy' => $post_type.'_tags',
679 679
                 'field' => 'name',
680 680
                 'terms' => $tags
681 681
             );
@@ -705,7 +705,7 @@  discard block
 block discarded – undo
705 705
 		$widget_listings = $total_posts > 0 ? geodir_get_widget_listings($query_args) : array();
706 706
 	}
707 707
 	$current_gridview_columns_widget = $gridview_columns_widget;
708
-    $identifier = ' gd-wgt-pagi-' . mt_rand();
708
+    $identifier = ' gd-wgt-pagi-'.mt_rand();
709 709
     ob_start();
710 710
 	if (!empty($widget_listings) || $with_no_results) {
711 711
 		if (!$geodir_ajax) {
@@ -716,7 +716,7 @@  discard block
 block discarded – undo
716 716
          */
717 717
         do_action('geodir_before_sc_gd_listings');
718 718
 		?>
719
-        <div class="geodir_locations geodir_location_listing geodir-sc-gd-listings <?php echo $identifier;?>">
719
+        <div class="geodir_locations geodir_location_listing geodir-sc-gd-listings <?php echo $identifier; ?>">
720 720
             <?php if ($title != '') { ?>
721 721
             <div class="geodir_list_heading clearfix">
722 722
                 <?php echo $title; ?>
@@ -785,8 +785,8 @@  discard block
 block discarded – undo
785 785
 			?>
786 786
             </div><p class="geodir-sclisting-loading" style="display:none;"><i class="fa fa-cog fa-spin"></i></p></div>
787 787
 <script type="text/javascript">
788
-jQuery(document).on('click', '.<?php echo trim($identifier);?> .gd-wgt-page', function(e) {
789
-    var container = jQuery( '.<?php echo trim($identifier);?>');
788
+jQuery(document).on('click', '.<?php echo trim($identifier); ?> .gd-wgt-page', function(e) {
789
+    var container = jQuery( '.<?php echo trim($identifier); ?>');
790 790
     var obj = this;
791 791
     var pid = parseInt(jQuery(this).data('page'));
792 792
     var items = jQuery(obj).closest('.gd-sc-content');
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
         return false;
797 797
     }
798 798
     
799
-    var scatts = "<?php echo addslashes(json_encode($shortcode_atts));?>";
799
+    var scatts = "<?php echo addslashes(json_encode($shortcode_atts)); ?>";
800 800
     
801 801
     var data = {
802 802
       'action': 'geodir_sclistings',
@@ -885,16 +885,16 @@  discard block
 block discarded – undo
885 885
 	if ($max_page > 1 || $always_show) {
886 886
 		// Extra pagination info
887 887
 		$geodir_pagination_more_info = get_option('geodir_pagination_advance_info');
888
-		$start_no = ( $pageno - 1 ) * $posts_per_page + 1;
888
+		$start_no = ($pageno - 1) * $posts_per_page + 1;
889 889
 		$end_no = min($pageno * $posts_per_page, $numposts);
890 890
 		
891 891
 		if ($geodir_pagination_more_info != '') {
892
-			$pagination_info = '<div class="gd-pagination-details gd-pagination-details-' . $geodir_pagination_more_info . '">' . wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts) . '</div>';
892
+			$pagination_info = '<div class="gd-pagination-details gd-pagination-details-'.$geodir_pagination_more_info.'">'.wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts).'</div>';
893 893
 			
894 894
 			if ($geodir_pagination_more_info == 'before') {
895
-				$before = $before . $pagination_info;
895
+				$before = $before.$pagination_info;
896 896
 			} else if ($geodir_pagination_more_info == 'after') {
897
-				$after = $pagination_info . $after;
897
+				$after = $pagination_info.$after;
898 898
 			}
899 899
 		}
900 900
 			
@@ -904,7 +904,7 @@  discard block
 block discarded – undo
904 904
 		}
905 905
 		
906 906
 		if (($pageno - 1) > 0) {
907
-            echo '<a class="gd-page-sc-prev gd-wgt-page" data-page="' . (int)($pageno - 1) . '" href="javascript:void(0);">' . $prelabel . '</a>&nbsp;';
907
+            echo '<a class="gd-page-sc-prev gd-wgt-page" data-page="'.(int) ($pageno - 1).'" href="javascript:void(0);">'.$prelabel.'</a>&nbsp;';
908 908
 		}
909 909
 		
910 910
 		for ($i = $pageno - $half_pages_to_show; $i <= $pageno + $half_pages_to_show; $i++) {
@@ -912,17 +912,17 @@  discard block
 block discarded – undo
912 912
 				if ($i == $pageno) {
913 913
 					echo "<strong class='on' class='gd-page-sc-act'>$i</strong>";
914 914
 				} else {
915
-					echo ' <a class="gd-page-sc-no gd-wgt-page" data-page="' . (int)$i . '" href="javascript:void(0);">' . $i . '</a> ';
915
+					echo ' <a class="gd-page-sc-no gd-wgt-page" data-page="'.(int) $i.'" href="javascript:void(0);">'.$i.'</a> ';
916 916
 				}
917 917
 			}
918 918
 		}
919 919
 		
920 920
 		if (($pageno + 1) <= $max_page) {
921
-			echo '&nbsp;<a class="gd-page-sc-nxt gd-wgt-page" data-page="' . (int)($pageno + 1) . '" href="javascript:void(0);">' . $nxtlabel . '</a>';
921
+			echo '&nbsp;<a class="gd-page-sc-nxt gd-wgt-page" data-page="'.(int) ($pageno + 1).'" href="javascript:void(0);">'.$nxtlabel.'</a>';
922 922
 		}
923 923
 		
924 924
 		if ($pageno < $max_page) {
925
-			echo '&nbsp;<a class="gd-page-sc-lst gd-wgt-page" data-page="' . (int)$max_page . '" href="javascript:void(0);">&raquo;</a>';
925
+			echo '&nbsp;<a class="gd-page-sc-lst gd-wgt-page" data-page="'.(int) $max_page.'" href="javascript:void(0);">&raquo;</a>';
926 926
 		}
927 927
 		echo "</div> $after </div>";
928 928
 	}
@@ -945,7 +945,7 @@  discard block
 block discarded – undo
945 945
     $scatts = isset($_POST['scatts']) ? $_POST['scatts'] : NULL;
946 946
     $pageno = isset($_POST['pageno']) ? absint($_POST['pageno']) : 1;
947 947
 	
948
-	$shortcode_atts = !empty($scatts) ? (array)json_decode(stripslashes_deep($scatts)) : NULL;
948
+	$shortcode_atts = !empty($scatts) ? (array) json_decode(stripslashes_deep($scatts)) : NULL;
949 949
 	
950 950
 	if (!empty($shortcode_atts) && is_array($shortcode_atts)) {
951 951
 		$shortcode_atts['pageno'] = $pageno;
Please login to merge, or discard this patch.
geodirectory-functions/listing_filters.php 2 patches
Indentation   +546 added lines, -546 removed lines patch added patch discarded remove patch
@@ -16,10 +16,10 @@  discard block
 block discarded – undo
16 16
  */
17 17
 function geodir_session_start()
18 18
 {
19
-    if (!session_id()) session_start();
20
-    global $geodir_add_location_url;
19
+	if (!session_id()) session_start();
20
+	global $geodir_add_location_url;
21 21
 
22
-    $geodir_add_location_url = NULL;
22
+	$geodir_add_location_url = NULL;
23 23
 }
24 24
 
25 25
 /**
@@ -33,18 +33,18 @@  discard block
 block discarded – undo
33 33
  */
34 34
 function geodir_modified_query($query)
35 35
 {
36
-    if ($query->is_main_query() && (
37
-            (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
38
-            || geodir_is_page('listing')
39
-            || geodir_is_page('author')
40
-            || geodir_is_page('search')
41
-            || geodir_is_page('detail'))
42
-    ) {
43
-
44
-        $query->set('is_geodir_loop', true);
45
-    }
36
+	if ($query->is_main_query() && (
37
+			(geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
38
+			|| geodir_is_page('listing')
39
+			|| geodir_is_page('author')
40
+			|| geodir_is_page('search')
41
+			|| geodir_is_page('detail'))
42
+	) {
43
+
44
+		$query->set('is_geodir_loop', true);
45
+	}
46 46
 
47
-    return $query;
47
+	return $query;
48 48
 }
49 49
 
50 50
 /**
@@ -67,81 +67,81 @@  discard block
 block discarded – undo
67 67
  */
68 68
 function set_listing_request($query )
69 69
 {
70
-    global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
70
+	global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
71 71
 
72 72
 
73
-    // fix woocommerce shop products filtered by language for GD + WPML + Woocommerce
74
-    if (!geodir_is_geodir_page()) {
75
-        return;
76
-    }
73
+	// fix woocommerce shop products filtered by language for GD + WPML + Woocommerce
74
+	if (!geodir_is_geodir_page()) {
75
+		return;
76
+	}
77 77
 
78
-    /* remove all pre filters */
79
-    remove_all_filters('query');
80
-    remove_all_filters('posts_search');
81
-    remove_all_filters('posts_fields');
82
-    remove_all_filters('posts_join');
83
-    remove_all_filters('posts_orderby');
84
-    remove_all_filters('posts_where');
78
+	/* remove all pre filters */
79
+	remove_all_filters('query');
80
+	remove_all_filters('posts_search');
81
+	remove_all_filters('posts_fields');
82
+	remove_all_filters('posts_join');
83
+	remove_all_filters('posts_orderby');
84
+	remove_all_filters('posts_where');
85 85
 
86 86
 
87
-    if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')):
87
+	if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')):
88 88
 
89
-        if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = '';
90
-        //if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = '';
89
+		if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = '';
90
+		//if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = '';
91 91
 
92
-        if (isset($_REQUEST['sdist'])) {
93
-            ($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000;
94
-        } elseif (get_option('geodir_search_dist') != '') {
95
-            $dist = get_option('geodir_search_dist');
92
+		if (isset($_REQUEST['sdist'])) {
93
+			($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000;
94
+		} elseif (get_option('geodir_search_dist') != '') {
95
+			$dist = get_option('geodir_search_dist');
96 96
 
97
-        } else {
98
-            $dist = 25000;
99
-        } //  Distance
97
+		} else {
98
+			$dist = 25000;
99
+		} //  Distance
100 100
 
101
-        if (isset($_REQUEST['sgeo_lat'])) {
102
-            $mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
103
-        } else {
104
-            $mylat = (float)geodir_get_current_city_lat();
105
-        } //  Latitude
101
+		if (isset($_REQUEST['sgeo_lat'])) {
102
+			$mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
103
+		} else {
104
+			$mylat = (float)geodir_get_current_city_lat();
105
+		} //  Latitude
106 106
 
107
-        if (isset($_REQUEST['sgeo_lon'])) {
108
-            $mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
109
-        } else {
110
-            $mylon = (float)geodir_get_current_city_lng();
111
-        } //  Distance
107
+		if (isset($_REQUEST['sgeo_lon'])) {
108
+			$mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
109
+		} else {
110
+			$mylon = (float)geodir_get_current_city_lng();
111
+		} //  Distance
112 112
 
113
-        if (isset($_REQUEST['snear'])) {
114
-            $snear = trim(esc_attr($_REQUEST['snear']));
115
-        }
113
+		if (isset($_REQUEST['snear'])) {
114
+			$snear = trim(esc_attr($_REQUEST['snear']));
115
+		}
116 116
 
117
-        if (isset($_REQUEST['s'])) {
118
-            $s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s'])));
119
-        }
117
+		if (isset($_REQUEST['s'])) {
118
+			$s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s'])));
119
+		}
120 120
 
121
-        if ($snear == 'NEAR ME') {
122
-            $ip = $_SERVER['REMOTE_ADDR'];
123
-            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
124
-            $mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125
-            $mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126
-        }
121
+		if ($snear == 'NEAR ME') {
122
+			$ip = $_SERVER['REMOTE_ADDR'];
123
+			$addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
124
+			$mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125
+			$mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126
+		}
127 127
 
128 128
 
129
-        if (strstr($s, ',')) {
130
-            $s_AA = str_replace(" ", "", $s);
131
-            $s_A = explode(",", $s_AA);
132
-            $s_A = implode('","', $s_A);
133
-            $s_A = '"' . $s_A . '"';
134
-        } else {
135
-            $s_A = '"' . $s . '"';
136
-        }
129
+		if (strstr($s, ',')) {
130
+			$s_AA = str_replace(" ", "", $s);
131
+			$s_A = explode(",", $s_AA);
132
+			$s_A = implode('","', $s_A);
133
+			$s_A = '"' . $s_A . '"';
134
+		} else {
135
+			$s_A = '"' . $s . '"';
136
+		}
137 137
 
138
-        if (strstr($s, ' ')) {
139
-            $s_SA = explode(" ", $s);
140
-        } else {
141
-            $s_SA = '';
142
-        }
138
+		if (strstr($s, ' ')) {
139
+			$s_SA = explode(" ", $s);
140
+		} else {
141
+			$s_SA = '';
142
+		}
143 143
 
144
-    endif;
144
+	endif;
145 145
 
146 146
 
147 147
 
@@ -162,56 +162,56 @@  discard block
 block discarded – undo
162 162
  */
163 163
 function geodir_listing_loop_filter($query)
164 164
 {
165
-    global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term;
165
+	global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term;
166 166
 
167
-    // fix wp_reset_query for popular post view widget
168
-    if (!geodir_is_geodir_page()) {
169
-        return;
170
-    }
167
+	// fix wp_reset_query for popular post view widget
168
+	if (!geodir_is_geodir_page()) {
169
+		return;
170
+	}
171 171
 
172
-    $geodir_post_type = geodir_get_current_posttype();
173
-
174
-    if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
175
-        $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
176
-
177
-        if (isset($wp_query->query[$taxonomies[0]])) {
178
-            $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
179
-            $request_term = end($request_term);
180
-            if (!term_exists($request_term)) {
181
-                $args = array('number' => '1',);
182
-                $terms_arr = get_terms($taxonomies[0], $args);
183
-                foreach ($terms_arr as $location_term) {
184
-                    $term_arr = $location_term;
185
-                    $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
186
-                }
187
-                $wp_query->queried_object_id = 1;
188
-                $wp_query->queried_object = $term_arr;
189
-                //print_r($wp_query) ;
190
-            }
191
-        }
172
+	$geodir_post_type = geodir_get_current_posttype();
173
+
174
+	if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
175
+		$taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy');
176
+
177
+		if (isset($wp_query->query[$taxonomies[0]])) {
178
+			$request_term = explode("/", $wp_query->query[$taxonomies[0]]);
179
+			$request_term = end($request_term);
180
+			if (!term_exists($request_term)) {
181
+				$args = array('number' => '1',);
182
+				$terms_arr = get_terms($taxonomies[0], $args);
183
+				foreach ($terms_arr as $location_term) {
184
+					$term_arr = $location_term;
185
+					$term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
186
+				}
187
+				$wp_query->queried_object_id = 1;
188
+				$wp_query->queried_object = $term_arr;
189
+				//print_r($wp_query) ;
190
+			}
191
+		}
192 192
 
193
-    }
194
-    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
195
-
196
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
197
-
198
-        add_filter('posts_fields', 'geodir_posts_fields', 1);
199
-        add_filter('posts_join', 'geodir_posts_join', 1);
200
-        geodir_post_where();
201
-        if (!is_admin())
202
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
203
-
204
-        // advanced filter for popular post view widget
205
-        global $wp_query;
206
-        if (!is_admin()) {
207
-            if (!empty($wp_query->query['with_pics_only'])) {
208
-                add_filter('posts_join', 'geodir_filter_widget_join', 1000);
209
-            }
210
-            add_filter('posts_where', 'geodir_filter_widget_where', 1000);
211
-        }
193
+	}
194
+	if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
212 195
 
213
-    }
214
-    return $query;
196
+		$table = $plugin_prefix . $geodir_post_type . '_detail';
197
+
198
+		add_filter('posts_fields', 'geodir_posts_fields', 1);
199
+		add_filter('posts_join', 'geodir_posts_join', 1);
200
+		geodir_post_where();
201
+		if (!is_admin())
202
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
203
+
204
+		// advanced filter for popular post view widget
205
+		global $wp_query;
206
+		if (!is_admin()) {
207
+			if (!empty($wp_query->query['with_pics_only'])) {
208
+				add_filter('posts_join', 'geodir_filter_widget_join', 1000);
209
+			}
210
+			add_filter('posts_where', 'geodir_filter_widget_where', 1000);
211
+		}
212
+
213
+	}
214
+	return $query;
215 215
 }
216 216
 
217 217
 
@@ -230,67 +230,67 @@  discard block
 block discarded – undo
230 230
  * @return string Modified fields query string.
231 231
  */
232 232
 function geodir_posts_fields($fields) {
233
-    global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
233
+	global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
234 234
 
235
-    // Filter-Location-Manager to add location table.
236
-    $fields .= ", " . $table . ".* ";
235
+	// Filter-Location-Manager to add location table.
236
+	$fields .= ", " . $table . ".* ";
237 237
 
238 238
 	if ($snear != '' || $gd_session->get('all_near_me')) {
239
-        $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
239
+		$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
240 240
 
241 241
 		if ($gd_session->get('all_near_me')) {
242
-            $mylat = $gd_session->get('user_lat');
243
-            $mylon = $gd_session->get('user_lon');
244
-        }
245
-
246
-        $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247
-    }
248
-
249
-    global $s;
250
-    if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251
-        $keywords = explode(" ", $s);
252
-
253
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
-            foreach($keywords as $kkey=>$kword){
255
-                if(geodir_utf8_strlen($kword)<=$klimit){
256
-                    unset($keywords[$kkey]);
257
-                }
258
-            }
259
-        }
242
+			$mylat = $gd_session->get('user_lat');
243
+			$mylon = $gd_session->get('user_lon');
244
+		}
260 245
 
246
+		$fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247
+	}
261 248
 
262
-        if (count($keywords) > 1) {
263
-            $parts = array(
264
-                'AND' => 'gd_alltitlematch_part',
265
-                'OR' => 'gd_titlematch_part'
266
-            );
267
-            $gd_titlematch_part = "";
268
-            foreach ($parts as $key => $part) {
269
-                $gd_titlematch_part .= " CASE WHEN ";
270
-                $count = 0;
271
-                foreach ($keywords as $keyword) {
272
-                    $keyword = trim($keyword);
273
-                    $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
249
+	global $s;
250
+	if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251
+		$keywords = explode(" ", $s);
252
+
253
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
+			foreach($keywords as $kkey=>$kword){
255
+				if(geodir_utf8_strlen($kword)<=$klimit){
256
+					unset($keywords[$kkey]);
257
+				}
258
+			}
259
+		}
260
+
261
+
262
+		if (count($keywords) > 1) {
263
+			$parts = array(
264
+				'AND' => 'gd_alltitlematch_part',
265
+				'OR' => 'gd_titlematch_part'
266
+			);
267
+			$gd_titlematch_part = "";
268
+			foreach ($parts as $key => $part) {
269
+				$gd_titlematch_part .= " CASE WHEN ";
270
+				$count = 0;
271
+				foreach ($keywords as $keyword) {
272
+					$keyword = trim($keyword);
273
+					$keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
274 274
 					$count++;
275
-                    if ($count < count($keywords)) {
276
-                       // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
275
+					if ($count < count($keywords)) {
276
+					   // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
277 277
 						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " ";
278
-                    } else {
279
-                        //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
278
+					} else {
279
+						//$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
280 280
 						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) ";
281
-                    }
282
-                }
283
-                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
284
-            }
285
-        } else {
286
-            $gd_titlematch_part = "";
287
-        }
288
-        $s = stripslashes_deep( $s );
289
-        $s = wp_specialchars_decode($s,ENT_QUOTES);
281
+					}
282
+				}
283
+				$gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
284
+			}
285
+		} else {
286
+			$gd_titlematch_part = "";
287
+		}
288
+		$s = stripslashes_deep( $s );
289
+		$s = wp_specialchars_decode($s,ENT_QUOTES);
290 290
 		$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
291
-    }
291
+	}
292 292
 
293
-    return $fields;
293
+	return $fields;
294 294
 }
295 295
 
296 296
 
@@ -307,26 +307,26 @@  discard block
 block discarded – undo
307 307
  */
308 308
 function geodir_posts_join($join)
309 309
 {
310
-    global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix;
310
+	global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix;
311 311
 
312
-    ########### WPML ###########
312
+	########### WPML ###########
313 313
 
314
-    if (function_exists('icl_object_id')) {
315
-        global $sitepress;
316
-        $lang_code = ICL_LANGUAGE_CODE;
317
-        $default_lang_code = $sitepress->get_default_language();
318
-        if ($lang_code) {
319
-            $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
320
-        }
314
+	if (function_exists('icl_object_id')) {
315
+		global $sitepress;
316
+		$lang_code = ICL_LANGUAGE_CODE;
317
+		$default_lang_code = $sitepress->get_default_language();
318
+		if ($lang_code) {
319
+			$join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
320
+		}
321 321
 
322
-    }
323
-    ########### WPML ###########
322
+	}
323
+	########### WPML ###########
324 324
 
325
-    $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
326
-    //===old code start
327
-    //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
325
+	$join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
326
+	//===old code start
327
+	//$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
328 328
 
329
-    return $join;
329
+	return $join;
330 330
 }
331 331
 
332 332
 
@@ -344,15 +344,15 @@  discard block
 block discarded – undo
344 344
  */
345 345
 function geodir_posts_orderby($orderby)
346 346
 {
347
-    global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort;
347
+	global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort;
348 348
 
349
-    $sort_by = '';
350
-    $orderby = ' ';
349
+	$sort_by = '';
350
+	$orderby = ' ';
351 351
 
352
-    if (get_query_var('order_by'))
353
-        $sort_by = get_query_var('order_by');
352
+	if (get_query_var('order_by'))
353
+		$sort_by = get_query_var('order_by');
354 354
 
355
-    /*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
355
+	/*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
356 356
         $current_term = $wp_query->get_queried_object();
357 357
     }
358 358
 
@@ -366,133 +366,133 @@  discard block
 block discarded – undo
366 366
     }*/
367 367
 
368 368
 
369
-    if ($snear != '') {
370
-        $orderby .= " distance,";
371
-    }
369
+	if ($snear != '') {
370
+		$orderby .= " distance,";
371
+	}
372 372
 
373
-    if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query())
374
-        $sort_by = esc_attr($_REQUEST['sort_by']);
373
+	if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query())
374
+		$sort_by = esc_attr($_REQUEST['sort_by']);
375 375
 
376 376
 
377
-    if ($sort_by == '') {
378
-        $default_sort = geodir_get_posts_default_sort($geodir_post_type);
379
-        if (!empty($default_sort))
380
-            $sort_by = $default_sort;
381
-    }
377
+	if ($sort_by == '') {
378
+		$default_sort = geodir_get_posts_default_sort($geodir_post_type);
379
+		if (!empty($default_sort))
380
+			$sort_by = $default_sort;
381
+	}
382 382
 
383
-    /*
383
+	/*
384 384
     if search by term & no location then order always "relevance"
385 385
     if search by location then order always "nearest"
386 386
     */
387
-    if (is_main_query() && geodir_is_page('search')) {
388
-        $search_term = get_query_var('s');
387
+	if (is_main_query() && geodir_is_page('search')) {
388
+		$search_term = get_query_var('s');
389 389
 
390
-        if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
391
-            $sort_by = 'az';
392
-        }
390
+		if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
391
+			$sort_by = 'az';
392
+		}
393 393
 
394
-        if ($snear != '' &&  $sort_by!='farthest') {
395
-            $sort_by = 'nearest';
396
-        }
397
-    }
398
-
399
-    switch ($sort_by):
400
-        case 'newest':
401
-            $orderby = "$wpdb->posts.post_date desc, ";
402
-            break;
403
-        case 'oldest':
404
-            $orderby = "$wpdb->posts.post_date asc, ";
405
-            break;
406
-        case 'low_review':
407
-        case 'rating_count_asc':
408
-            $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
409
-            break;
410
-        case 'high_review':
411
-        case 'rating_count_desc':
412
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
413
-            break;
414
-        case 'low_rating':
415
-            $orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
416
-            break;
417
-        case 'high_rating':
418
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
419
-            break;
420
-        case 'featured':
421
-            $orderby = $table . ".is_featured asc, ";
422
-            break;
423
-        case 'nearest':
424
-            $orderby = " distance asc, ";
425
-            break;
426
-        case 'farthest':
427
-            $orderby = " distance desc, ";
428
-            break;
429
-        case 'random':
430
-            $orderby = " rand(), ";
431
-            break;
432
-        case 'az':
433
-            $orderby = "$wpdb->posts.post_title asc, ";
434
-            break;
435
-        // sort by rating
436
-        case 'overall_rating_desc':
437
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
438
-            break;
439
-        case 'overall_rating_asc':
440
-            $orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
441
-            break;
442
-        default:
443
-
444
-            break;
445
-    endswitch;
446
-
447
-    if ($sort_by != '' && geodir_cpt_has_rating_disabled($geodir_post_type)) {
448
-        if (in_array($sort_by, array('high_review', 'rating_count_desc', 'high_rating', 'overall_rating_desc'))) {
449
-            $orderby = "$wpdb->posts.comment_count DESC, ";
450
-            $sort_by = 'comment_count_desc';
451
-        } else if (in_array($sort_by, array('low_review', 'rating_count_asc', 'low_rating', 'overall_rating_asc'))) {
452
-            $orderby = "$wpdb->posts.comment_count ASC, ";
453
-            $sort_by = 'comment_count_asc';
454
-        }
455
-    }
394
+		if ($snear != '' &&  $sort_by!='farthest') {
395
+			$sort_by = 'nearest';
396
+		}
397
+	}
456 398
 
457
-    global $s;
399
+	switch ($sort_by):
400
+		case 'newest':
401
+			$orderby = "$wpdb->posts.post_date desc, ";
402
+			break;
403
+		case 'oldest':
404
+			$orderby = "$wpdb->posts.post_date asc, ";
405
+			break;
406
+		case 'low_review':
407
+		case 'rating_count_asc':
408
+			$orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
409
+			break;
410
+		case 'high_review':
411
+		case 'rating_count_desc':
412
+			$orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
413
+			break;
414
+		case 'low_rating':
415
+			$orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
416
+			break;
417
+		case 'high_rating':
418
+			$orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
419
+			break;
420
+		case 'featured':
421
+			$orderby = $table . ".is_featured asc, ";
422
+			break;
423
+		case 'nearest':
424
+			$orderby = " distance asc, ";
425
+			break;
426
+		case 'farthest':
427
+			$orderby = " distance desc, ";
428
+			break;
429
+		case 'random':
430
+			$orderby = " rand(), ";
431
+			break;
432
+		case 'az':
433
+			$orderby = "$wpdb->posts.post_title asc, ";
434
+			break;
435
+		// sort by rating
436
+		case 'overall_rating_desc':
437
+			$orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
438
+			break;
439
+		case 'overall_rating_asc':
440
+			$orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
441
+			break;
442
+		default:
443
+
444
+			break;
445
+	endswitch;
446
+
447
+	if ($sort_by != '' && geodir_cpt_has_rating_disabled($geodir_post_type)) {
448
+		if (in_array($sort_by, array('high_review', 'rating_count_desc', 'high_rating', 'overall_rating_desc'))) {
449
+			$orderby = "$wpdb->posts.comment_count DESC, ";
450
+			$sort_by = 'comment_count_desc';
451
+		} else if (in_array($sort_by, array('low_review', 'rating_count_asc', 'low_rating', 'overall_rating_asc'))) {
452
+			$orderby = "$wpdb->posts.comment_count ASC, ";
453
+			$sort_by = 'comment_count_asc';
454
+		}
455
+	}
458 456
 
459
-    if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460
-        $keywords = explode(" ", $s);
461
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
-            foreach($keywords as $kkey=>$kword){
463
-                if(geodir_utf8_strlen($kword)<=$klimit){
464
-                    unset($keywords[$kkey]);
465
-                }
466
-            }
467
-        }
468
-        if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469
-            if (count($keywords) > 1) {
470
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471
-            } else {
472
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473
-            }
474
-        } else {
475
-            if (count($keywords) > 1) {
476
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
477
-            } else {
478
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
479
-            }
480
-        }
481
-    }
457
+	global $s;
458
+
459
+	if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460
+		$keywords = explode(" ", $s);
461
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
+			foreach($keywords as $kkey=>$kword){
463
+				if(geodir_utf8_strlen($kword)<=$klimit){
464
+					unset($keywords[$kkey]);
465
+				}
466
+			}
467
+		}
468
+		if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469
+			if (count($keywords) > 1) {
470
+				$orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471
+			} else {
472
+				$orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473
+			}
474
+		} else {
475
+			if (count($keywords) > 1) {
476
+				$orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
477
+			} else {
478
+				$orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
479
+			}
480
+		}
481
+	}
482 482
 
483
-    /**
484
-     * Filter order by SQL.
485
-     *
486
-     * @since 1.0.0
487
-     * @param string $orderby The orderby query string.
488
-     * @param string $sort_by Sortby query string.
489
-     * @param string $table Listing table name.
490
-     */
491
-    $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
483
+	/**
484
+	 * Filter order by SQL.
485
+	 *
486
+	 * @since 1.0.0
487
+	 * @param string $orderby The orderby query string.
488
+	 * @param string $sort_by Sortby query string.
489
+	 * @param string $table Listing table name.
490
+	 */
491
+	$orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
492 492
 
493
-    $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
493
+	$orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
494 494
 
495
-    return $orderby;
495
+	return $orderby;
496 496
 }
497 497
 
498 498
 
@@ -510,53 +510,53 @@  discard block
 block discarded – undo
510 510
 function geodir_posts_order_by_custom_sort($orderby, $sort_by, $table)
511 511
 {
512 512
 
513
-    global $wpdb;
513
+	global $wpdb;
514 514
 
515
-    if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
515
+	if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
516 516
 
517
-        $sort_array = explode('_', $sort_by);
517
+		$sort_array = explode('_', $sort_by);
518 518
 
519
-        $sort_by_count = count($sort_array);
519
+		$sort_by_count = count($sort_array);
520 520
 
521
-        $order = $sort_array[$sort_by_count - 1];
521
+		$order = $sort_array[$sort_by_count - 1];
522 522
 
523
-        if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
523
+		if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
524 524
 
525
-            $sort_by = str_replace('_' . $order, '', $sort_by);
525
+			$sort_by = str_replace('_' . $order, '', $sort_by);
526 526
 
527
-            switch ($sort_by):
527
+			switch ($sort_by):
528 528
 
529
-                case 'post_date':
530
-                case 'comment_count':
529
+				case 'post_date':
530
+				case 'comment_count':
531 531
 
532
-                    $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
533
-                    break;
532
+					$orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
533
+					break;
534 534
 
535
-                case 'distance':
536
-                    $orderby = $sort_by . " " . $order . ", ";
537
-                    break;
535
+				case 'distance':
536
+					$orderby = $sort_by . " " . $order . ", ";
537
+					break;
538 538
 
539 539
 
540
-                // sort by rating
541
-                case 'overall_rating':
542
-                    $orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
540
+				// sort by rating
541
+				case 'overall_rating':
542
+					$orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
543 543
 
544
-                    break;
544
+					break;
545 545
 
546 546
 
547
-                default:
548
-                    if (geodir_column_exist($table, $sort_by)) {
547
+				default:
548
+					if (geodir_column_exist($table, $sort_by)) {
549 549
 						$orderby = $table . "." . $sort_by . " " . $order . ", ";
550 550
 					}
551
-                    break;
551
+					break;
552 552
 
553
-            endswitch;
553
+			endswitch;
554 554
 
555
-        }
555
+		}
556 556
 
557
-    }
557
+	}
558 558
 
559
-    return $orderby;
559
+	return $orderby;
560 560
 }
561 561
 
562 562
 /**
@@ -571,34 +571,34 @@  discard block
 block discarded – undo
571 571
 {
572 572
 
573 573
 
574
-    global $wpdb, $geodir_post_type, $table, $s, $snear;
574
+	global $wpdb, $geodir_post_type, $table, $s, $snear;
575 575
 
576
-    if (!is_admin()) {
576
+	if (!is_admin()) {
577 577
 
578
-        if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
579
-            add_filter('posts_where', 'geodir_edit_listing_where', 1);
578
+		if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
579
+			add_filter('posts_where', 'geodir_edit_listing_where', 1);
580 580
 
581
-        } elseif ((is_search() && $_REQUEST['geodir_search'])) {
581
+		} elseif ((is_search() && $_REQUEST['geodir_search'])) {
582 582
 
583
-            add_filter('posts_where', 'searching_filter_where', 1);
583
+			add_filter('posts_where', 'searching_filter_where', 1);
584 584
 
585
-            if ($snear != '')
586
-                add_filter('posts_where', 'searching_filter_where', 1);
585
+			if ($snear != '')
586
+				add_filter('posts_where', 'searching_filter_where', 1);
587 587
 
588
-            add_filter('posts_orderby', 'geodir_posts_orderby', 1);
588
+			add_filter('posts_orderby', 'geodir_posts_orderby', 1);
589 589
 
590
-        } elseif (geodir_is_page('author')) {
590
+		} elseif (geodir_is_page('author')) {
591 591
 
592
-            add_filter('posts_where', 'author_filter_where', 1);
592
+			add_filter('posts_where', 'author_filter_where', 1);
593 593
 
594
-        }
594
+		}
595 595
 
596
-        //if (!geodir_is_page('detail'))
597
-            add_filter('posts_where', 'geodir_default_where', 1);/**/
596
+		//if (!geodir_is_page('detail'))
597
+			add_filter('posts_where', 'geodir_default_where', 1);/**/
598 598
 
599
-        //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
599
+		//add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
600 600
 
601
-    }
601
+	}
602 602
 }
603 603
 
604 604
 /**
@@ -613,13 +613,13 @@  discard block
 block discarded – undo
613 613
  */
614 614
 function geodir_preview_post_cap($allcaps, $caps, $args)
615 615
 {
616
-    $user_id = get_current_user_id();
617
-    if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
616
+	$user_id = get_current_user_id();
617
+	if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
618 618
 
619
-        $allcaps['edit_posts'] = true;
620
-    }
621
-    //print_r($allcaps);
622
-    return $allcaps;
619
+		$allcaps['edit_posts'] = true;
620
+	}
621
+	//print_r($allcaps);
622
+	return $allcaps;
623 623
 }
624 624
 
625 625
 
@@ -634,9 +634,9 @@  discard block
 block discarded – undo
634 634
  */
635 635
 function geodir_edit_listing_where($where)
636 636
 {
637
-    global $wpdb;
638
-    $where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
639
-    return $where;
637
+	global $wpdb;
638
+	$where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
639
+	return $where;
640 640
 }
641 641
 
642 642
 
@@ -653,29 +653,29 @@  discard block
 block discarded – undo
653 653
  */
654 654
 function geodir_default_where($where)
655 655
 {
656
-    global $wp_query, $wpdb;
657
-
658
-    //print_r($wp_query);
659
-    ########### WPML ###########
660
-
661
-    if (function_exists('icl_object_id')) {
662
-        global $sitepress, $table_prefix;
663
-        $lang_code = ICL_LANGUAGE_CODE;
664
-        $default_lang_code = $sitepress->get_default_language();
665
-        $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666
-        //echo '##########'.$q_post_type;
667
-        if ($lang_code && $q_post_type) {
668
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
669
-            //$where .= " AND icl_t.language_code = '$lang_code' ";
670
-        }
656
+	global $wp_query, $wpdb;
671 657
 
672
-    }
673
-    ########### WPML ###########
658
+	//print_r($wp_query);
659
+	########### WPML ###########
674 660
 
661
+	if (function_exists('icl_object_id')) {
662
+		global $sitepress, $table_prefix;
663
+		$lang_code = ICL_LANGUAGE_CODE;
664
+		$default_lang_code = $sitepress->get_default_language();
665
+		$q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666
+		//echo '##########'.$q_post_type;
667
+		if ($lang_code && $q_post_type) {
668
+			$where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
669
+			//$where .= " AND icl_t.language_code = '$lang_code' ";
670
+		}
675 671
 
676
-    return $where = str_replace("0 = 1", "1=1", $where);
672
+	}
673
+	########### WPML ###########
674
+
675
+
676
+	return $where = str_replace("0 = 1", "1=1", $where);
677 677
 
678
-    /* ====== old code start ===
678
+	/* ====== old code start ===
679 679
     $where = str_replace("0 = 1", "1=1", $where);
680 680
     $country = get_query_var('gd_country');
681 681
     $region = get_query_var('gd_region');
@@ -716,108 +716,108 @@  discard block
 block discarded – undo
716 716
  * @return string Modified where query string.
717 717
  */
718 718
 function searching_filter_where($where) {
719
-    global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s_A, $s_SA, $search_term, $gd_session;
719
+	global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s_A, $s_SA, $search_term, $gd_session;
720 720
 
721
-    $search_term = 'OR';
722
-    $search_term = 'AND';
723
-    $geodir_custom_search = '';
724
-    $category_search_range = '';
721
+	$search_term = 'OR';
722
+	$search_term = 'AND';
723
+	$geodir_custom_search = '';
724
+	$category_search_range = '';
725 725
 
726
-    if (is_single() && get_query_var('post_type')) {
726
+	if (is_single() && get_query_var('post_type')) {
727 727
 		return $where;
728 728
 	}
729 729
 
730
-    if (is_tax()) {
730
+	if (is_tax()) {
731 731
 		return $where;
732 732
 	}
733 733
 
734 734
 	$s = trim($s);
735
-    $s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
-    $s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
737
-
738
-    $where = '';
739
-    $better_search_terms = '';
740
-    if (isset($_REQUEST['stype']))
741
-        $post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype']));
742
-    else
743
-        $post_types = 'gd_place';
744
-
745
-    if ($s != '') {
746
-        $keywords = explode(" ", $s);
747
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
-            foreach($keywords as $kkey=>$kword){
749
-                if(geodir_utf8_strlen($kword)<=$klimit){
750
-                    unset($keywords[$kkey]);
751
-                }
752
-            }
753
-        }
735
+	$s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
+	$s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
737
+
738
+	$where = '';
739
+	$better_search_terms = '';
740
+	if (isset($_REQUEST['stype']))
741
+		$post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype']));
742
+	else
743
+		$post_types = 'gd_place';
754 744
 
755
-        if (!empty($keywords)) {
756
-            foreach ($keywords as $keyword) {
757
-                $keyword = trim($keyword);
758
-                $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
759
-                if ($keyword != '') {
760
-                    /**
761
-                     * Filter the search query keywords SQL.
762
-                     *
763
-                     * @since 1.5.9
764
-                     * @package GeoDirectory
765
-                     * @param string $better_search_terms The query values, default: `' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'`.
766
-                     * @param array $keywords The array of keywords for the query.
767
-                     * @param string $keyword The single keyword being searched.
768
-                     */
745
+	if ($s != '') {
746
+		$keywords = explode(" ", $s);
747
+		if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
+			foreach($keywords as $kkey=>$kword){
749
+				if(geodir_utf8_strlen($kword)<=$klimit){
750
+					unset($keywords[$kkey]);
751
+				}
752
+			}
753
+		}
754
+
755
+		if (!empty($keywords)) {
756
+			foreach ($keywords as $keyword) {
757
+				$keyword = trim($keyword);
758
+				$keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
759
+				if ($keyword != '') {
760
+					/**
761
+					 * Filter the search query keywords SQL.
762
+					 *
763
+					 * @since 1.5.9
764
+					 * @package GeoDirectory
765
+					 * @param string $better_search_terms The query values, default: `' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'`.
766
+					 * @param array $keywords The array of keywords for the query.
767
+					 * @param string $keyword The single keyword being searched.
768
+					 */
769 769
 					$better_search_terms .= apply_filters("geodir_search_better_search_terms",' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )',$keywords,$keyword);
770
-                }
771
-            }
772
-        }
773
-    }
770
+				}
771
+			}
772
+		}
773
+	}
774 774
 
775
-    /* get taxonomy */
776
-    $taxonomies = geodir_get_taxonomies($post_types, true);
777
-    if($taxonomies) {
778
-        $taxonomies = implode("','", $taxonomies);
779
-        $taxonomies = "'" . $taxonomies . "'";
780
-    }else{$taxonomies='';}
775
+	/* get taxonomy */
776
+	$taxonomies = geodir_get_taxonomies($post_types, true);
777
+	if($taxonomies) {
778
+		$taxonomies = implode("','", $taxonomies);
779
+		$taxonomies = "'" . $taxonomies . "'";
780
+	}else{$taxonomies='';}
781 781
 
782
-    $content_where = $terms_where = '';
782
+	$content_where = $terms_where = '';
783 783
 	if ($s != '') {
784
-        /**
785
-         * Filter the search query content where values.
786
-         *
787
-         * @since 1.5.0
788
-         * @package GeoDirectory
789
-         * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790
-         */
784
+		/**
785
+		 * Filter the search query content where values.
786
+		 *
787
+		 * @since 1.5.0
788
+		 * @package GeoDirectory
789
+		 * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790
+		 */
791 791
 		$content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
792
-        /**
793
-         * Filter the search query term values.
794
-         *
795
-         * @since 1.5.0
796
-         * @package GeoDirectory
797
-         * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798
-         */
799
-        $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
792
+		/**
793
+		 * Filter the search query term values.
794
+		 *
795
+		 * @since 1.5.0
796
+		 * @package GeoDirectory
797
+		 * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798
+		 */
799
+		$terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
800 800
 	}
801 801
 
802
-    if ($snear != '') {
802
+	if ($snear != '') {
803 803
 
804 804
 
805
-        if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
806
-            $dist = $gd_session->get('near_me_range');
807
-        }
808
-        $lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69);
809
-        $lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69);
810
-        $lat1 = $mylat - ($dist / 69);
811
-        $lat2 = $mylat + ($dist / 69);
805
+		if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
806
+			$dist = $gd_session->get('near_me_range');
807
+		}
808
+		$lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69);
809
+		$lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69);
810
+		$lat1 = $mylat - ($dist / 69);
811
+		$lat2 = $mylat + ($dist / 69);
812 812
 
813
-        $rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : '';
814
-        $rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : '';
815
-        $rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : '';
816
-        $rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : '';
813
+		$rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : '';
814
+		$rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : '';
815
+		$rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : '';
816
+		$rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : '';
817 817
 
818 818
 
819 819
 
820
-	    $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
820
+		$where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
821 821
 			                    $content_where 
822 822
 								OR ($wpdb->posts.ID IN( 
823 823
 										SELECT $wpdb->term_relationships.object_id as post_id 
@@ -834,13 +834,13 @@  discard block
 block discarded – undo
834 834
 						AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 )
835 835
 						AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) ";
836 836
 
837
-        if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
838
-            $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
839
-            $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
840
-        }
837
+		if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
838
+			$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
839
+			$where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
840
+		}
841 841
 
842
-    } else {
843
-        $where .= " AND (	( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
842
+	} else {
843
+		$where .= " AND (	( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms)
844 844
                             $content_where  
845 845
 							OR ( $wpdb->posts.ID IN(	
846 846
 									SELECT $wpdb->term_relationships.object_id as post_id                     
@@ -854,19 +854,19 @@  discard block
 block discarded – undo
854 854
 					) 
855 855
 				AND $wpdb->posts.post_type in ('$post_types')
856 856
 				AND ($wpdb->posts.post_status = 'publish') ";
857
-    }
857
+	}
858 858
 
859 859
 	########### WPML ###########
860
-    if ( function_exists( 'icl_object_id' ) ) {
860
+	if ( function_exists( 'icl_object_id' ) ) {
861 861
 		$lang_code = ICL_LANGUAGE_CODE;
862 862
 
863 863
 		if ($lang_code && $post_types) {
864
-            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
865
-        }
866
-    }
867
-    ########### WPML ###########
864
+			$where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
865
+		}
866
+	}
867
+	########### WPML ###########
868 868
 
869
-    return $where;
869
+	return $where;
870 870
 }
871 871
 
872 872
 
@@ -881,45 +881,45 @@  discard block
 block discarded – undo
881 881
  * @return string Modified where query string.
882 882
  */
883 883
 function author_filter_where($where) {
884
-    global $wpdb, $geodir_post_type, $table, $curr;
884
+	global $wpdb, $geodir_post_type, $table, $curr;
885 885
 
886
-    $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
887
-    $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
886
+	$curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
887
+	$user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
888 888
 
889
-    if (isset($_REQUEST['stype'])) {
890
-        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
891
-    } else {
892
-        $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
893
-    }
889
+	if (isset($_REQUEST['stype'])) {
890
+		$where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
891
+	} else {
892
+		$where = " AND $wpdb->posts.post_type IN ('gd_place') ";
893
+	}
894 894
 
895
-    if ($user_id > 0) {
896
-        if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
897
-            $user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true);
898
-            $user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
899
-            $where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
900
-        } else
901
-            $where .= " AND $wpdb->posts.post_author = $user_id";
902
-
903
-        if ($user_id == (int)get_current_user_id()) {
904
-            $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
905
-        } else {
906
-            $where .= " AND $wpdb->posts.post_status = 'publish' ";
907
-        }
908
-    } else {
909
-        $where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' ";
910
-    }
895
+	if ($user_id > 0) {
896
+		if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
897
+			$user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true);
898
+			$user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
899
+			$where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
900
+		} else
901
+			$where .= " AND $wpdb->posts.post_author = $user_id";
902
+
903
+		if ($user_id == (int)get_current_user_id()) {
904
+			$where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
905
+		} else {
906
+			$where .= " AND $wpdb->posts.post_status = 'publish' ";
907
+		}
908
+	} else {
909
+		$where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' ";
910
+	}
911 911
 
912
-    ########### WPML ###########
913
-    if (function_exists('icl_object_id')) {
914
-        $lang_code = ICL_LANGUAGE_CODE;
915
-        if ($lang_code) {
916
-            $where .= " AND icl_t.language_code='" . $lang_code . "' ";
917
-        }
912
+	########### WPML ###########
913
+	if (function_exists('icl_object_id')) {
914
+		$lang_code = ICL_LANGUAGE_CODE;
915
+		if ($lang_code) {
916
+			$where .= " AND icl_t.language_code='" . $lang_code . "' ";
917
+		}
918 918
 
919
-    }
920
-    ########### WPML ###########
919
+	}
920
+	########### WPML ###########
921 921
 
922
-    return $where;
922
+	return $where;
923 923
 }
924 924
 
925 925
 /**
@@ -934,11 +934,11 @@  discard block
 block discarded – undo
934 934
  */
935 935
 function geodir_filter_widget_join($join)
936 936
 {
937
-    global $wp_query, $table;
938
-    if (!empty($wp_query->query['with_pics_only'])) {
939
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
940
-    }
941
-    return $join;
937
+	global $wp_query, $table;
938
+	if (!empty($wp_query->query['with_pics_only'])) {
939
+		$join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
940
+	}
941
+	return $join;
942 942
 }
943 943
 
944 944
 /**
@@ -953,43 +953,43 @@  discard block
 block discarded – undo
953 953
  */
954 954
 function geodir_filter_widget_where($where)
955 955
 {
956
-    global $wp_query, $table;
957
-    if (!empty($wp_query->query['show_featured_only'])) {
958
-        $where .= " AND " . $table . ".is_featured = '1'";
959
-    }
960
-    if (!empty($wp_query->query['show_special_only'])) {
961
-        $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
962
-    }
963
-    if (!empty($wp_query->query['with_pics_only'])) {
964
-        $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
965
-    }
966
-    if (!empty($wp_query->query['with_videos_only'])) {
967
-        $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
968
-    }
969
-    return $where;
956
+	global $wp_query, $table;
957
+	if (!empty($wp_query->query['show_featured_only'])) {
958
+		$where .= " AND " . $table . ".is_featured = '1'";
959
+	}
960
+	if (!empty($wp_query->query['show_special_only'])) {
961
+		$where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
962
+	}
963
+	if (!empty($wp_query->query['with_pics_only'])) {
964
+		$where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
965
+	}
966
+	if (!empty($wp_query->query['with_videos_only'])) {
967
+		$where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
968
+	}
969
+	return $where;
970 970
 }
971 971
 
972 972
 
973 973
 function geodir_related_posts_fields($fields) {
974
-    global $wp_query, $wpdb, $table, $post;
974
+	global $wp_query, $wpdb, $table, $post;
975 975
 
976
-    $fields .= ", " . $table . ".* ";
976
+	$fields .= ", " . $table . ".* ";
977 977
 
978
-    $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
978
+	$DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
979 979
 
980
-    $mylat = $post->post_latitude;
981
-    $mylon = $post->post_longitude;
980
+	$mylat = $post->post_latitude;
981
+	$mylon = $post->post_longitude;
982 982
 
983
-    $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
984
-    return $fields;
983
+	$fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
984
+	return $fields;
985 985
 }
986 986
 function geodir_related_posts_fields_filter($query) {
987
-    if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
988
-        && isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
989
-        && isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
990
-    ) {
991
-        add_filter('posts_fields', 'geodir_related_posts_fields', 1);
992
-    }
987
+	if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
988
+		&& isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
989
+		&& isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
990
+	) {
991
+		add_filter('posts_fields', 'geodir_related_posts_fields', 1);
992
+	}
993 993
 }
994 994
 add_action('pre_get_posts', 'geodir_related_posts_fields_filter', 1);
995 995
 
@@ -1004,28 +1004,28 @@  discard block
 block discarded – undo
1004 1004
  * @return string|null If field exists in table returns order by clause else returns empty.
1005 1005
  */
1006 1006
 function geodir_prepare_custom_sorting( $sorting, $table ) {
1007
-    $orderby = '';
1007
+	$orderby = '';
1008 1008
     
1009
-    if ( empty( $sorting ) || empty( $table ) ) {
1010
-        return $orderby;
1011
-    }
1009
+	if ( empty( $sorting ) || empty( $table ) ) {
1010
+		return $orderby;
1011
+	}
1012 1012
     
1013
-    if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1014
-        $sorting_array = explode( '_', $sorting );
1013
+	if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1014
+		$sorting_array = explode( '_', $sorting );
1015 1015
         
1016
-        if ( ( $count = count( $sorting_array ) ) > 1 ) {
1017
-            $order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1018
-            array_pop( $sorting_array );
1016
+		if ( ( $count = count( $sorting_array ) ) > 1 ) {
1017
+			$order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1018
+			array_pop( $sorting_array );
1019 1019
             
1020
-            if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1021
-                $sort_by = implode( '_', $sorting_array );
1020
+			if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1021
+				$sort_by = implode( '_', $sorting_array );
1022 1022
                 
1023
-                if ( geodir_column_exist( $table, $sort_by ) ) {
1024
-                    $orderby = $table . "." . $sort_by . " " . $order;
1025
-                }
1026
-            }
1027
-        }
1028
-    }
1023
+				if ( geodir_column_exist( $table, $sort_by ) ) {
1024
+					$orderby = $table . "." . $sort_by . " " . $order;
1025
+				}
1026
+			}
1027
+		}
1028
+	}
1029 1029
 
1030
-    return $orderby;
1030
+	return $orderby;
1031 1031
 }
1032 1032
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +87 added lines, -87 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
  * @global string $s_A Extra parameters.
66 66
  * @global string $s_SA Extra parameters.
67 67
  */
68
-function set_listing_request($query )
68
+function set_listing_request($query)
69 69
 {
70 70
     global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA;
71 71
 
@@ -99,15 +99,15 @@  discard block
 block discarded – undo
99 99
         } //  Distance
100 100
 
101 101
         if (isset($_REQUEST['sgeo_lat'])) {
102
-            $mylat = (float)esc_attr($_REQUEST['sgeo_lat']);
102
+            $mylat = (float) esc_attr($_REQUEST['sgeo_lat']);
103 103
         } else {
104
-            $mylat = (float)geodir_get_current_city_lat();
104
+            $mylat = (float) geodir_get_current_city_lat();
105 105
         } //  Latitude
106 106
 
107 107
         if (isset($_REQUEST['sgeo_lon'])) {
108
-            $mylon = (float)esc_attr($_REQUEST['sgeo_lon']);
108
+            $mylon = (float) esc_attr($_REQUEST['sgeo_lon']);
109 109
         } else {
110
-            $mylon = (float)geodir_get_current_city_lng();
110
+            $mylon = (float) geodir_get_current_city_lng();
111 111
         } //  Distance
112 112
 
113 113
         if (isset($_REQUEST['snear'])) {
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 
121 121
         if ($snear == 'NEAR ME') {
122 122
             $ip = $_SERVER['REMOTE_ADDR'];
123
-            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
123
+            $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip='.$ip));
124 124
             $mylat = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_latitude]));
125 125
             $mylon = stripslashes(geodir_utf8_ucfirst($addr_details[geoplugin_longitude]));
126 126
         }
@@ -130,9 +130,9 @@  discard block
 block discarded – undo
130 130
             $s_AA = str_replace(" ", "", $s);
131 131
             $s_A = explode(",", $s_AA);
132 132
             $s_A = implode('","', $s_A);
133
-            $s_A = '"' . $s_A . '"';
133
+            $s_A = '"'.$s_A.'"';
134 134
         } else {
135
-            $s_A = '"' . $s . '"';
135
+            $s_A = '"'.$s.'"';
136 136
         }
137 137
 
138 138
         if (strstr($s, ' ')) {
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
     if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
195 195
 
196
-        $table = $plugin_prefix . $geodir_post_type . '_detail';
196
+        $table = $plugin_prefix.$geodir_post_type.'_detail';
197 197
 
198 198
         add_filter('posts_fields', 'geodir_posts_fields', 1);
199 199
         add_filter('posts_join', 'geodir_posts_join', 1);
@@ -233,7 +233,7 @@  discard block
 block discarded – undo
233 233
     global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session;
234 234
 
235 235
     // Filter-Location-Manager to add location table.
236
-    $fields .= ", " . $table . ".* ";
236
+    $fields .= ", ".$table.".* ";
237 237
 
238 238
 	if ($snear != '' || $gd_session->get('all_near_me')) {
239 239
         $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
@@ -243,16 +243,16 @@  discard block
 block discarded – undo
243 243
             $mylon = $gd_session->get('user_lon');
244 244
         }
245 245
 
246
-        $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
246
+        $fields .= " , (".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) )))as distance ";
247 247
     }
248 248
 
249 249
     global $s;
250 250
     if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
251 251
         $keywords = explode(" ", $s);
252 252
 
253
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
254
-            foreach($keywords as $kkey=>$kword){
255
-                if(geodir_utf8_strlen($kword)<=$klimit){
253
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
254
+            foreach ($keywords as $kkey=>$kword) {
255
+                if (geodir_utf8_strlen($kword) <= $klimit) {
256 256
                     unset($keywords[$kkey]);
257 257
                 }
258 258
             }
@@ -270,24 +270,24 @@  discard block
 block discarded – undo
270 270
                 $count = 0;
271 271
                 foreach ($keywords as $keyword) {
272 272
                     $keyword = trim($keyword);
273
-                    $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
273
+                    $keyword = wp_specialchars_decode($keyword, ENT_QUOTES);
274 274
 					$count++;
275 275
                     if ($count < count($keywords)) {
276 276
                        // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " ";
277
-						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " ";
277
+						$gd_titlematch_part .= "( ".$wpdb->posts.".post_title LIKE '".$keyword."' OR ".$wpdb->posts.".post_title LIKE '".$keyword."%%' OR ".$wpdb->posts.".post_title LIKE '%% ".$keyword."%%' ) ".$key." ";
278 278
                     } else {
279 279
                         //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' ";
280
-						$gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) ";
280
+						$gd_titlematch_part .= "( ".$wpdb->posts.".post_title LIKE '".$keyword."' OR ".$wpdb->posts.".post_title LIKE '".$keyword."%%' OR ".$wpdb->posts.".post_title LIKE '%% ".$keyword."%%' ) ";
281 281
                     }
282 282
                 }
283
-                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ",";
283
+                $gd_titlematch_part .= "THEN 1 ELSE 0 END AS ".$part.",";
284 284
             }
285 285
         } else {
286 286
             $gd_titlematch_part = "";
287 287
         }
288
-        $s = stripslashes_deep( $s );
289
-        $s = wp_specialchars_decode($s,ENT_QUOTES);
290
-		$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
288
+        $s = stripslashes_deep($s);
289
+        $s = wp_specialchars_decode($s, ENT_QUOTES);
290
+		$fields .= $wpdb->prepare(", CASE WHEN ".$table.".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN ".$wpdb->posts.".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle,".$gd_titlematch_part." CASE WHEN ( ".$wpdb->posts.".post_title LIKE %s OR ".$wpdb->posts.".post_title LIKE %s OR ".$wpdb->posts.".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s OR ".$wpdb->posts.".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s.'%', '% '.$s.'%', $s, $s.' %', '% '.$s.' %', '% '.$s));
291 291
     }
292 292
 
293 293
     return $fields;
@@ -316,13 +316,13 @@  discard block
 block discarded – undo
316 316
         $lang_code = ICL_LANGUAGE_CODE;
317 317
         $default_lang_code = $sitepress->get_default_language();
318 318
         if ($lang_code) {
319
-            $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID";
319
+            $join .= "JOIN ".$table_prefix."icl_translations icl_t ON icl_t.element_id = ".$table_prefix."posts.ID";
320 320
         }
321 321
 
322 322
     }
323 323
     ########### WPML ###########
324 324
 
325
-    $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID)  ";
325
+    $join .= " INNER JOIN ".$table." ON (".$table.".post_id = $wpdb->posts.ID)  ";
326 326
     //===old code start
327 327
     //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id)  " ;//===old code end
328 328
 
@@ -391,7 +391,7 @@  discard block
 block discarded – undo
391 391
             $sort_by = 'az';
392 392
         }
393 393
 
394
-        if ($snear != '' &&  $sort_by!='farthest') {
394
+        if ($snear != '' && $sort_by != 'farthest') {
395 395
             $sort_by = 'nearest';
396 396
         }
397 397
     }
@@ -405,20 +405,20 @@  discard block
 block discarded – undo
405 405
             break;
406 406
         case 'low_review':
407 407
         case 'rating_count_asc':
408
-            $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, ";
408
+            $orderby = $table.".rating_count ASC, ".$table.".overall_rating ASC, ";
409 409
             break;
410 410
         case 'high_review':
411 411
         case 'rating_count_desc':
412
-            $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, ";
412
+            $orderby = $table.".rating_count DESC, ".$table.".overall_rating DESC, ";
413 413
             break;
414 414
         case 'low_rating':
415
-            $orderby = "( " . $table . ".overall_rating  ) ASC, " . $table . ".rating_count ASC,  ";
415
+            $orderby = "( ".$table.".overall_rating  ) ASC, ".$table.".rating_count ASC,  ";
416 416
             break;
417 417
         case 'high_rating':
418
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
418
+            $orderby = " ".$table.".overall_rating DESC, ".$table.".rating_count DESC, ";
419 419
             break;
420 420
         case 'featured':
421
-            $orderby = $table . ".is_featured asc, ";
421
+            $orderby = $table.".is_featured asc, ";
422 422
             break;
423 423
         case 'nearest':
424 424
             $orderby = " distance asc, ";
@@ -434,10 +434,10 @@  discard block
 block discarded – undo
434 434
             break;
435 435
         // sort by rating
436 436
         case 'overall_rating_desc':
437
-            $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, ";
437
+            $orderby = " ".$table.".overall_rating DESC, ".$table.".rating_count DESC, ";
438 438
             break;
439 439
         case 'overall_rating_asc':
440
-            $orderby = " " . $table . ".overall_rating ASC, " . $table . ".rating_count ASC, ";
440
+            $orderby = " ".$table.".overall_rating ASC, ".$table.".rating_count ASC, ";
441 441
             break;
442 442
         default:
443 443
 
@@ -458,24 +458,24 @@  discard block
 block discarded – undo
458 458
 
459 459
     if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
460 460
         $keywords = explode(" ", $s);
461
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
462
-            foreach($keywords as $kkey=>$kword){
463
-                if(geodir_utf8_strlen($kword)<=$klimit){
461
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
462
+            foreach ($keywords as $kkey=>$kword) {
463
+                if (geodir_utf8_strlen($kword) <= $klimit) {
464 464
                     unset($keywords[$kkey]);
465 465
                 }
466 466
             }
467 467
         }
468 468
         if ($sort_by == 'nearest' || $sort_by == 'farthest') {
469 469
             if (count($keywords) > 1) {
470
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
470
+                $orderby = $orderby." ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ";
471 471
             } else {
472
-                $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
472
+                $orderby = $orderby." ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ";
473 473
             }
474 474
         } else {
475 475
             if (count($keywords) > 1) {
476
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby;
476
+                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, ".$orderby;
477 477
             } else {
478
-                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby;
478
+                $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, ".$orderby;
479 479
             }
480 480
         }
481 481
     }
@@ -490,7 +490,7 @@  discard block
 block discarded – undo
490 490
      */
491 491
     $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
492 492
 
493
-    $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
493
+    $orderby .= $table.".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title ";
494 494
 
495 495
     return $orderby;
496 496
 }
@@ -512,7 +512,7 @@  discard block
 block discarded – undo
512 512
 
513 513
     global $wpdb;
514 514
 
515
-    if ($sort_by != '' && (!is_search() || ( isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear']=='' && ( $_REQUEST['s']=='' ||  $_REQUEST['s']==' ') ) )) {
515
+    if ($sort_by != '' && (!is_search() || (isset($_REQUEST['s']) && isset($_REQUEST['snear']) && $_REQUEST['snear'] == '' && ($_REQUEST['s'] == '' || $_REQUEST['s'] == ' ')))) {
516 516
 
517 517
         $sort_array = explode('_', $sort_by);
518 518
 
@@ -522,31 +522,31 @@  discard block
 block discarded – undo
522 522
 
523 523
         if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
524 524
 
525
-            $sort_by = str_replace('_' . $order, '', $sort_by);
525
+            $sort_by = str_replace('_'.$order, '', $sort_by);
526 526
 
527 527
             switch ($sort_by):
528 528
 
529 529
                 case 'post_date':
530 530
                 case 'comment_count':
531 531
 
532
-                    $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", ";
532
+                    $orderby = "$wpdb->posts.".$sort_by." ".$order.", ".$table.".overall_rating ".$order.", ";
533 533
                     break;
534 534
 
535 535
                 case 'distance':
536
-                    $orderby = $sort_by . " " . $order . ", ";
536
+                    $orderby = $sort_by." ".$order.", ";
537 537
                     break;
538 538
 
539 539
 
540 540
                 // sort by rating
541 541
                 case 'overall_rating':
542
-                    $orderby = " " . $table . "." . $sort_by . "  " . $order . ", " . $table . ".rating_count " . $order . ", ";
542
+                    $orderby = " ".$table.".".$sort_by."  ".$order.", ".$table.".rating_count ".$order.", ";
543 543
 
544 544
                     break;
545 545
 
546 546
 
547 547
                 default:
548 548
                     if (geodir_column_exist($table, $sort_by)) {
549
-						$orderby = $table . "." . $sort_by . " " . $order . ", ";
549
+						$orderby = $table.".".$sort_by." ".$order.", ";
550 550
 					}
551 551
                     break;
552 552
 
@@ -594,7 +594,7 @@  discard block
 block discarded – undo
594 594
         }
595 595
 
596 596
         //if (!geodir_is_page('detail'))
597
-            add_filter('posts_where', 'geodir_default_where', 1);/**/
597
+            add_filter('posts_where', 'geodir_default_where', 1); /**/
598 598
 
599 599
         //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts
600 600
 
@@ -665,7 +665,7 @@  discard block
 block discarded – undo
665 665
         $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : '';
666 666
         //echo '##########'.$q_post_type;
667 667
         if ($lang_code && $q_post_type) {
668
-            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
668
+            $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_".$q_post_type."') ";
669 669
             //$where .= " AND icl_t.language_code = '$lang_code' ";
670 670
         }
671 671
 
@@ -732,8 +732,8 @@  discard block
 block discarded – undo
732 732
 	}
733 733
 
734 734
 	$s = trim($s);
735
-    $s  = wp_specialchars_decode($s ,ENT_QUOTES);
736
-    $s_A = wp_specialchars_decode($s_A ,ENT_QUOTES);
735
+    $s = wp_specialchars_decode($s, ENT_QUOTES);
736
+    $s_A = wp_specialchars_decode($s_A, ENT_QUOTES);
737 737
 
738 738
     $where = '';
739 739
     $better_search_terms = '';
@@ -744,9 +744,9 @@  discard block
 block discarded – undo
744 744
 
745 745
     if ($s != '') {
746 746
         $keywords = explode(" ", $s);
747
-        if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
748
-            foreach($keywords as $kkey=>$kword){
749
-                if(geodir_utf8_strlen($kword)<=$klimit){
747
+        if (is_array($keywords) && $klimit = get_option('geodir_search_word_limit')) {
748
+            foreach ($keywords as $kkey=>$kword) {
749
+                if (geodir_utf8_strlen($kword) <= $klimit) {
750 750
                     unset($keywords[$kkey]);
751 751
                 }
752 752
             }
@@ -755,7 +755,7 @@  discard block
 block discarded – undo
755 755
         if (!empty($keywords)) {
756 756
             foreach ($keywords as $keyword) {
757 757
                 $keyword = trim($keyword);
758
-                $keyword  = wp_specialchars_decode($keyword ,ENT_QUOTES);
758
+                $keyword = wp_specialchars_decode($keyword, ENT_QUOTES);
759 759
                 if ($keyword != '') {
760 760
                     /**
761 761
                      * Filter the search query keywords SQL.
@@ -766,7 +766,7 @@  discard block
 block discarded – undo
766 766
                      * @param array $keywords The array of keywords for the query.
767 767
                      * @param string $keyword The single keyword being searched.
768 768
                      */
769
-					$better_search_terms .= apply_filters("geodir_search_better_search_terms",' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )',$keywords,$keyword);
769
+					$better_search_terms .= apply_filters("geodir_search_better_search_terms", ' OR ( '.$wpdb->posts.'.post_title LIKE "'.$keyword.'" OR '.$wpdb->posts.'.post_title LIKE "'.$keyword.'%" OR '.$wpdb->posts.'.post_title LIKE "% '.$keyword.'%" )', $keywords, $keyword);
770 770
                 }
771 771
             }
772 772
         }
@@ -774,10 +774,10 @@  discard block
 block discarded – undo
774 774
 
775 775
     /* get taxonomy */
776 776
     $taxonomies = geodir_get_taxonomies($post_types, true);
777
-    if($taxonomies) {
777
+    if ($taxonomies) {
778 778
         $taxonomies = implode("','", $taxonomies);
779
-        $taxonomies = "'" . $taxonomies . "'";
780
-    }else{$taxonomies='';}
779
+        $taxonomies = "'".$taxonomies."'";
780
+    } else {$taxonomies = ''; }
781 781
 
782 782
     $content_where = $terms_where = '';
783 783
 	if ($s != '') {
@@ -788,7 +788,7 @@  discard block
 block discarded – undo
788 788
          * @package GeoDirectory
789 789
          * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`.
790 790
          */
791
-		$content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
791
+		$content_where = apply_filters("geodir_search_content_where", " OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
792 792
         /**
793 793
          * Filter the search query term values.
794 794
          *
@@ -796,7 +796,7 @@  discard block
 block discarded – undo
796 796
          * @package GeoDirectory
797 797
          * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`.
798 798
          */
799
-        $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
799
+        $terms_where = apply_filters("geodir_search_terms_where", " AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
800 800
 	}
801 801
 
802 802
     if ($snear != '') {
@@ -831,12 +831,12 @@  discard block
 block discarded – undo
831 831
 							)
832 832
 						AND $wpdb->posts.post_type in ('{$post_types}')
833 833
 						AND ($wpdb->posts.post_status = 'publish')
834
-						AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 )
835
-						AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) ";
834
+						AND ( ".$table.".post_latitude between $rlat1 and $rlat2 )
835
+						AND ( ".$table.".post_longitude between $rlon1 and $rlon2 ) ";
836 836
 
837 837
         if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
838 838
             $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
839
-            $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
839
+            $where .= " AND CONVERT((".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= ".$dist;
840 840
         }
841 841
 
842 842
     } else {
@@ -857,11 +857,11 @@  discard block
 block discarded – undo
857 857
     }
858 858
 
859 859
 	########### WPML ###########
860
-    if ( function_exists( 'icl_object_id' ) ) {
860
+    if (function_exists('icl_object_id')) {
861 861
 		$lang_code = ICL_LANGUAGE_CODE;
862 862
 
863 863
 		if ($lang_code && $post_types) {
864
-            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
864
+            $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_".$post_types."') ";
865 865
         }
866 866
     }
867 867
     ########### WPML ###########
@@ -884,10 +884,10 @@  discard block
 block discarded – undo
884 884
     global $wpdb, $geodir_post_type, $table, $curr;
885 885
 
886 886
     $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
887
-    $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0;
887
+    $user_id = !empty($curauth->ID) ? (int) $curauth->ID : 0;
888 888
 
889 889
     if (isset($_REQUEST['stype'])) {
890
-        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
890
+        $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ", $_REQUEST['stype']);
891 891
     } else {
892 892
         $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
893 893
     }
@@ -900,7 +900,7 @@  discard block
 block discarded – undo
900 900
         } else
901 901
             $where .= " AND $wpdb->posts.post_author = $user_id";
902 902
 
903
-        if ($user_id == (int)get_current_user_id()) {
903
+        if ($user_id == (int) get_current_user_id()) {
904 904
             $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
905 905
         } else {
906 906
             $where .= " AND $wpdb->posts.post_status = 'publish' ";
@@ -913,7 +913,7 @@  discard block
 block discarded – undo
913 913
     if (function_exists('icl_object_id')) {
914 914
         $lang_code = ICL_LANGUAGE_CODE;
915 915
         if ($lang_code) {
916
-            $where .= " AND icl_t.language_code='" . $lang_code . "' ";
916
+            $where .= " AND icl_t.language_code='".$lang_code."' ";
917 917
         }
918 918
 
919 919
     }
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
 {
937 937
     global $wp_query, $table;
938 938
     if (!empty($wp_query->query['with_pics_only'])) {
939
-        $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )";
939
+        $join .= " LEFT JOIN ".GEODIR_ATTACHMENT_TABLE." ON ( ".GEODIR_ATTACHMENT_TABLE.".post_id=".$table.".post_id AND ".GEODIR_ATTACHMENT_TABLE.".mime_type LIKE '%image%' )";
940 940
     }
941 941
     return $join;
942 942
 }
@@ -955,16 +955,16 @@  discard block
 block discarded – undo
955 955
 {
956 956
     global $wp_query, $table;
957 957
     if (!empty($wp_query->query['show_featured_only'])) {
958
-        $where .= " AND " . $table . ".is_featured = '1'";
958
+        $where .= " AND ".$table.".is_featured = '1'";
959 959
     }
960 960
     if (!empty($wp_query->query['show_special_only'])) {
961
-        $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )";
961
+        $where .= " AND ( ".$table.".geodir_special_offers != '' AND ".$table.".geodir_special_offers IS NOT NULL )";
962 962
     }
963 963
     if (!empty($wp_query->query['with_pics_only'])) {
964
-        $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id";
964
+        $where .= " AND ".GEODIR_ATTACHMENT_TABLE.".ID IS NOT NULL GROUP BY ".$table.".post_id";
965 965
     }
966 966
     if (!empty($wp_query->query['with_videos_only'])) {
967
-        $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )";
967
+        $where .= " AND ( ".$table.".geodir_video != '' AND ".$table.".geodir_video IS NOT NULL )";
968 968
     }
969 969
     return $where;
970 970
 }
@@ -973,18 +973,18 @@  discard block
 block discarded – undo
973 973
 function geodir_related_posts_fields($fields) {
974 974
     global $wp_query, $wpdb, $table, $post;
975 975
 
976
-    $fields .= ", " . $table . ".* ";
976
+    $fields .= ", ".$table.".* ";
977 977
 
978 978
     $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
979 979
 
980 980
     $mylat = $post->post_latitude;
981 981
     $mylon = $post->post_longitude;
982 982
 
983
-    $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
983
+    $fields .= " , (".$DistanceRadius." * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(".$table.".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(".$table.".post_latitude) * pi()/180) *POWER(SIN(($mylon - ".$table.".post_longitude) * pi()/180 / 2), 2) )))as distance ";
984 984
     return $fields;
985 985
 }
986 986
 function geodir_related_posts_fields_filter($query) {
987
-    if ( isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
987
+    if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']
988 988
         && isset($query->query_vars['order_by']) && $query->query_vars['order_by'] == 'nearest'
989 989
         && isset($query->query_vars['related_listings']) && $query->query_vars['related_listings']
990 990
     ) {
@@ -1003,25 +1003,25 @@  discard block
 block discarded – undo
1003 1003
  * @param string $table Listing table name.
1004 1004
  * @return string|null If field exists in table returns order by clause else returns empty.
1005 1005
  */
1006
-function geodir_prepare_custom_sorting( $sorting, $table ) {
1006
+function geodir_prepare_custom_sorting($sorting, $table) {
1007 1007
     $orderby = '';
1008 1008
     
1009
-    if ( empty( $sorting ) || empty( $table ) ) {
1009
+    if (empty($sorting) || empty($table)) {
1010 1010
         return $orderby;
1011 1011
     }
1012 1012
     
1013
-    if ( strpos( strtoupper( $sorting ), '_ASC' ) !== false || strpos( strtoupper( $sorting ), '_DESC') !== false ) {
1014
-        $sorting_array = explode( '_', $sorting );
1013
+    if (strpos(strtoupper($sorting), '_ASC') !== false || strpos(strtoupper($sorting), '_DESC') !== false) {
1014
+        $sorting_array = explode('_', $sorting);
1015 1015
         
1016
-        if ( ( $count = count( $sorting_array ) ) > 1 ) {
1017
-            $order = !empty( $sorting_array[$count - 1] ) ? strtoupper( $sorting_array[$count - 1] ) : '';
1018
-            array_pop( $sorting_array );
1016
+        if (($count = count($sorting_array)) > 1) {
1017
+            $order = !empty($sorting_array[$count - 1]) ? strtoupper($sorting_array[$count - 1]) : '';
1018
+            array_pop($sorting_array);
1019 1019
             
1020
-            if ( !empty( $sorting_array ) && ( $order == 'ASC' || $order == 'DESC' ) ) {
1021
-                $sort_by = implode( '_', $sorting_array );
1020
+            if (!empty($sorting_array) && ($order == 'ASC' || $order == 'DESC')) {
1021
+                $sort_by = implode('_', $sorting_array);
1022 1022
                 
1023
-                if ( geodir_column_exist( $table, $sort_by ) ) {
1024
-                    $orderby = $table . "." . $sort_by . " " . $order;
1023
+                if (geodir_column_exist($table, $sort_by)) {
1024
+                    $orderby = $table.".".$sort_by." ".$order;
1025 1025
                 }
1026 1026
             }
1027 1027
         }
Please login to merge, or discard this patch.
geodirectory_shortcodes.php 1 patch
Indentation   +888 added lines, -888 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
7 7
  */
8 8
 // If this file is called directly, abort.
9 9
 if (!defined('WPINC')) {
10
-    die;
10
+	die;
11 11
 }
12 12
 require_once('geodirectory-functions/shortcode_functions.php');
13 13
 
@@ -32,43 +32,43 @@  discard block
 block discarded – undo
32 32
  */
33 33
 function geodir_sc_add_listing($atts)
34 34
 {
35
-    ob_start();
36
-    $defaults = array(
37
-        'pid' => '',
38
-        'listing_type' => 'gd_place',
39
-        'login_msg' => __('You must login to post.', 'geodirectory'),
40
-        'show_login' => false,
41
-    );
42
-    $params = shortcode_atts($defaults, $atts);
43
-
44
-    foreach ($params as $key => $value) {
45
-        $_REQUEST[$key] = $value;
46
-    }
47
-
48
-    $user_id = get_current_user_id();
49
-    if (!$user_id) {
50
-        echo $params['login_msg'];
51
-        if ($params['show_login']) {
52
-            echo "<br />";
53
-            $defaults = array(
54
-                'before_widget' => '',
55
-                'after_widget' => '',
56
-                'before_title' => '',
57
-                'after_title' => '',
58
-            );
59
-
60
-            geodir_loginwidget_output($defaults, $defaults);
61
-        }
62
-
63
-
64
-    } else {
65
-       // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
-    }
67
-    $output = ob_get_contents();
68
-
69
-    ob_end_clean();
70
-
71
-    return $output;
35
+	ob_start();
36
+	$defaults = array(
37
+		'pid' => '',
38
+		'listing_type' => 'gd_place',
39
+		'login_msg' => __('You must login to post.', 'geodirectory'),
40
+		'show_login' => false,
41
+	);
42
+	$params = shortcode_atts($defaults, $atts);
43
+
44
+	foreach ($params as $key => $value) {
45
+		$_REQUEST[$key] = $value;
46
+	}
47
+
48
+	$user_id = get_current_user_id();
49
+	if (!$user_id) {
50
+		echo $params['login_msg'];
51
+		if ($params['show_login']) {
52
+			echo "<br />";
53
+			$defaults = array(
54
+				'before_widget' => '',
55
+				'after_widget' => '',
56
+				'before_title' => '',
57
+				'after_title' => '',
58
+			);
59
+
60
+			geodir_loginwidget_output($defaults, $defaults);
61
+		}
62
+
63
+
64
+	} else {
65
+	   // Add listing page will be used if shortcode is detected in page content, no need to call it here
66
+	}
67
+	$output = ob_get_contents();
68
+
69
+	ob_end_clean();
70
+
71
+	return $output;
72 72
 }
73 73
 
74 74
 /**
@@ -96,136 +96,136 @@  discard block
 block discarded – undo
96 96
  */
97 97
 function geodir_sc_home_map($atts)
98 98
 {
99
-    ob_start();
100
-    $defaults = array(
101
-        'width' => '960',
102
-        'height' => '425',
103
-        'maptype' => 'ROADMAP',
104
-        'zoom' => '13',
105
-        'autozoom' => '',
106
-        'child_collapse' => '0',
107
-        'scrollwheel' => '0',
99
+	ob_start();
100
+	$defaults = array(
101
+		'width' => '960',
102
+		'height' => '425',
103
+		'maptype' => 'ROADMAP',
104
+		'zoom' => '13',
105
+		'autozoom' => '',
106
+		'child_collapse' => '0',
107
+		'scrollwheel' => '0',
108 108
 		'marker_cluster' => false,
109
-        'latitude' => '',
110
-        'longitude' => ''
111
-    );
112
-
113
-    $params = shortcode_atts($defaults, $atts);
114
-
115
-    $params = gdsc_validate_map_args($params);
116
-
117
-    $map_args = array(
118
-        'map_canvas_name' => 'gd_home_map',
119
-        'latitude' => $params['latitude'],
120
-        'longitude' => $params['longitude'],
121
-
122
-        /**
123
-         * Filter the widget width of the map on home/listings page.
124
-         *
125
-         * @since 1.0.0
126
-         * @param mixed(string|int|float) $params['width'] The map width.
127
-         */
128
-        'width' => apply_filters('widget_width', $params['width']),
129
-        /**
130
-         * Filter the widget height of the map on home/listings page.
131
-         *
132
-         * @since 1.0.0
133
-         * @param mixed(string|int|float) $params['height'] The map height.
134
-         */
135
-        'height' => apply_filters('widget_heigh', $params['height']),
136
-        /**
137
-         * Filter the widget maptype of the map on home/listings page.
138
-         *
139
-         * @since 1.0.0
109
+		'latitude' => '',
110
+		'longitude' => ''
111
+	);
112
+
113
+	$params = shortcode_atts($defaults, $atts);
114
+
115
+	$params = gdsc_validate_map_args($params);
116
+
117
+	$map_args = array(
118
+		'map_canvas_name' => 'gd_home_map',
119
+		'latitude' => $params['latitude'],
120
+		'longitude' => $params['longitude'],
121
+
122
+		/**
123
+		 * Filter the widget width of the map on home/listings page.
124
+		 *
125
+		 * @since 1.0.0
126
+		 * @param mixed(string|int|float) $params['width'] The map width.
127
+		 */
128
+		'width' => apply_filters('widget_width', $params['width']),
129
+		/**
130
+		 * Filter the widget height of the map on home/listings page.
131
+		 *
132
+		 * @since 1.0.0
133
+		 * @param mixed(string|int|float) $params['height'] The map height.
134
+		 */
135
+		'height' => apply_filters('widget_heigh', $params['height']),
136
+		/**
137
+		 * Filter the widget maptype of the map on home/listings page.
138
+		 *
139
+		 * @since 1.0.0
140 140
 		 * @since 1.5.2 Added TERRAIN map type.
141
-         * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
-         */
143
-        'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
-        /**
145
-         * Filter the widget scrollwheel value of the map on home/listings page.
146
-         *
147
-         * Should the scrollwheel zoom the map or not.
148
-         *
149
-         * @since 1.0.0
150
-         * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
-         */
152
-        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
-        /**
154
-         * Filter the widget zoom level of the map on home/listings page.
155
-         *
156
-         * @since 1.0.0
157
-         * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
-         */
159
-        'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
-        /**
161
-         * Filter the widget auto zoom value of the map on home/listings page.
162
-         *
163
-         * If the map should autozoom to fit the markers shown.
164
-         *
165
-         * @since 1.0.0
166
-         * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
-         */
168
-        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
-        /**
170
-         * Filter the widget child_collapse value of the map on home/listings page.
171
-         *
172
-         * If the map should auto collapse the child categories if the category bar is present.
173
-         *
174
-         * @since 1.0.0
175
-         * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
-         */
177
-        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
-        'enable_cat_filters' => true,
179
-        'enable_text_search' => true,
180
-        'enable_post_type_filters' => true,
181
-        /**
182
-         * Filter the widget enable_location_filters value of the map on home/listings page.
183
-         *
184
-         * This is used when the location addon is used.
185
-         *
186
-         * @since 1.0.0
187
-         * @param bool $val True if location filters should be used, false if not.
188
-         */
189
-        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
-        'enable_jason_on_load' => false,
191
-        'enable_marker_cluster' => false,
192
-        'enable_map_resize_button' => true,
193
-        'map_class_name' => 'geodir-map-home-page',
194
-        'is_geodir_home_map_widget' => true,
195
-    );
141
+		 * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN.
142
+		 */
143
+		'maptype' => apply_filters('widget_maptype', $params['maptype']),
144
+		/**
145
+		 * Filter the widget scrollwheel value of the map on home/listings page.
146
+		 *
147
+		 * Should the scrollwheel zoom the map or not.
148
+		 *
149
+		 * @since 1.0.0
150
+		 * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not.
151
+		 */
152
+		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']),
153
+		/**
154
+		 * Filter the widget zoom level of the map on home/listings page.
155
+		 *
156
+		 * @since 1.0.0
157
+		 * @param int $params['zoom'] The zoom level of the map. Between 1-19.
158
+		 */
159
+		'zoom' => apply_filters('widget_zoom', $params['zoom']),
160
+		/**
161
+		 * Filter the widget auto zoom value of the map on home/listings page.
162
+		 *
163
+		 * If the map should autozoom to fit the markers shown.
164
+		 *
165
+		 * @since 1.0.0
166
+		 * @param bool $params['autozoom'] True if the map should autozoom, false if not.
167
+		 */
168
+		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']),
169
+		/**
170
+		 * Filter the widget child_collapse value of the map on home/listings page.
171
+		 *
172
+		 * If the map should auto collapse the child categories if the category bar is present.
173
+		 *
174
+		 * @since 1.0.0
175
+		 * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not.
176
+		 */
177
+		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']),
178
+		'enable_cat_filters' => true,
179
+		'enable_text_search' => true,
180
+		'enable_post_type_filters' => true,
181
+		/**
182
+		 * Filter the widget enable_location_filters value of the map on home/listings page.
183
+		 *
184
+		 * This is used when the location addon is used.
185
+		 *
186
+		 * @since 1.0.0
187
+		 * @param bool $val True if location filters should be used, false if not.
188
+		 */
189
+		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false),
190
+		'enable_jason_on_load' => false,
191
+		'enable_marker_cluster' => false,
192
+		'enable_map_resize_button' => true,
193
+		'map_class_name' => 'geodir-map-home-page',
194
+		'is_geodir_home_map_widget' => true,
195
+	);
196 196
 
197 197
 	// Add marker cluster
198 198
 	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
199
-        $map_args['enable_marker_cluster'] = true;
200
-        if(get_option('geodir_marker_cluster_type')) {
201
-            if ($map_args['autozoom']) {
202
-                $map_args['enable_marker_cluster_no_reposition'] = false;
203
-            } else {
204
-                $map_args['enable_marker_cluster_no_reposition'] = true;
205
-            }
199
+		$map_args['enable_marker_cluster'] = true;
200
+		if(get_option('geodir_marker_cluster_type')) {
201
+			if ($map_args['autozoom']) {
202
+				$map_args['enable_marker_cluster_no_reposition'] = false;
203
+			} else {
204
+				$map_args['enable_marker_cluster_no_reposition'] = true;
205
+			}
206 206
 
207
-            $map_args['enable_marker_cluster_server'] = true ;
207
+			$map_args['enable_marker_cluster_server'] = true ;
208 208
 
209
-        }
209
+		}
210 210
 	} else {
211 211
 		$map_args['enable_marker_cluster'] = false;
212 212
 	}
213 213
 
214
-    // if lat and long set in shortcode, hack it so the map is not repositioned
215
-    if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
-        $map_args['enable_marker_cluster_no_reposition'] = true;
217
-    }
214
+	// if lat and long set in shortcode, hack it so the map is not repositioned
215
+	if(!empty($params['latitude']) && !empty($params['longitude']) ){
216
+		$map_args['enable_marker_cluster_no_reposition'] = true;
217
+	}
218 218
 
219 219
 
220
-    geodir_draw_map($map_args);
220
+	geodir_draw_map($map_args);
221 221
 
222
-    add_action('wp_footer', 'geodir_home_map_add_script', 100);
222
+	add_action('wp_footer', 'geodir_home_map_add_script', 100);
223 223
 
224
-    $output = ob_get_contents();
224
+	$output = ob_get_contents();
225 225
 
226
-    ob_end_clean();
226
+	ob_end_clean();
227 227
 
228
-    return $output;
228
+	return $output;
229 229
 }
230 230
 add_shortcode('gd_homepage_map', 'geodir_sc_home_map');
231 231
 
@@ -264,243 +264,243 @@  discard block
 block discarded – undo
264 264
  */
265 265
 function geodir_sc_listing_map($atts) {
266 266
 
267
-    // if some params are set then we need a new query, if not then we can use the main query
268
-    if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
-
270
-        global $add_post_in_marker_array, $gd_sc_map_params;
271
-        $backup_globals                             = array();
272
-        $backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
-        $backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
-
275
-        $defaults = array(
276
-            'width'          => '294',
277
-            'height'         => '370',
278
-            'zoom'           => '13',
279
-            'autozoom'       => '',
280
-            'sticky'         => '',
281
-            'showall'        => '0',
282
-            'scrollwheel'    => '0',
283
-            'maptype'        => 'ROADMAP',
284
-            'child_collapse' => 0,
285
-            'marker_cluster' => false,
286
-            'post_type'      => 'gd_place',
287
-            'category'       => '0',
288
-            'event_type'     => 'all'
289
-        );
290
-
291
-        $params = shortcode_atts( $defaults, $atts );
292
-
293
-        if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
-            $params['post_type'] = 'gd_place';
295
-        }
296
-
297
-        // Validate the selected category/ies - Grab the current list based on post_type
298
-        $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
-        $categories        = get_terms( $category_taxonomy, array(
300
-            'orderby' => 'count',
301
-            'order'   => 'DESC',
302
-            'fields'  => 'ids'
303
-        ) );
304
-
305
-        // Make sure we have an array
306
-        if ( ! ( is_array( $params['category'] ) ) ) {
307
-            $params['category'] = explode( ',', $params['category'] );
308
-        }
309
-
310
-        // Array_intersect returns only the items in $params['category'] that are also in our category list
311
-        // Otherwise it becomes empty and later on that will mean "All"
312
-        $params['category'] = array_intersect( $params['category'], $categories );
313
-
314
-        if ( $params['post_type'] == 'gd_event' ) {
315
-            $params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
-        }
317
-
318
-        $params = gdsc_validate_map_args( $params );
319
-
320
-        $gd_sc_map_params = $params;
321
-
322
-        $query_args = array(
323
-            'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
-            'is_geodir_loop' => true,
325
-            'gd_location'    => false,
326
-            'post_type'      => $params['post_type'],
327
-        );
328
-
329
-        if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
-            $category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
-
332
-            ######### WPML #########
333
-            if ( function_exists( 'icl_object_id' ) ) {
334
-                $category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
-            }
336
-            ######### WPML #########
337
-
338
-            $tax_query = array(
339
-                'taxonomy' => $category_taxonomy[0],
340
-                'field'    => 'id',
341
-                'terms'    => $params['category']
342
-            );
343
-
344
-            $query_args['tax_query'] = array( $tax_query );
345
-        }
346
-
347
-        $add_post_in_marker_array = true;
348
-
349
-        if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
-            global $geodir_event_widget_listview;
351
-            $geodir_event_widget_listview = true;
352
-
353
-            $query_args['geodir_event_type'] = $params['event_type'];
354
-
355
-            $listings = geodir_event_get_widget_events( $query_args );
356
-
357
-            $geodir_event_widget_listview = false;
358
-        } else {
359
-            $listings = geodir_get_widget_listings( $query_args );
360
-        }
361
-
362
-        if ( ! empty( $listings ) ) {
363
-            foreach ( $listings as $listing ) {
364
-                create_marker_jason_of_posts( $listing );
365
-            }
366
-        }
367
-
368
-        ob_start();
369
-        add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
-
371
-        add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
-
373
-        add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
-
375
-        $default_location = geodir_get_default_location();
376
-
377
-        $map_args = array(
378
-            'map_canvas_name'          => 'gd_listing_map',
379
-            'width'                    => $params['width'],
380
-            'height'                   => $params['height'],
381
-            'zoom'                     => $params['zoom'],
382
-            'autozoom'                 => $params['autozoom'],
383
-            'sticky'                   => $params['sticky'],
384
-            'showall'                  => $params['showall'],
385
-            'scrollwheel'              => $params['scrollwheel'],
386
-            'maptype'                  => $params['maptype'],
387
-            'child_collapse'           => 0,
388
-            'enable_cat_filters'       => false,
389
-            'enable_text_search'       => false,
390
-            'enable_post_type_filters' => false,
391
-            'enable_location_filters'  => false,
392
-            'enable_jason_on_load'     => true,
393
-            'ajax_url'                 => geodir_get_ajax_url(),
394
-            'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
-            'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
-            'streetViewControl'        => true,
397
-            'showPreview'              => '0',
398
-            'maxZoom'                  => 21,
399
-            'bubble_size'              => 'small',
400
-        );
401
-
402
-        if ( is_single() ) {
403
-            global $post;
404
-            if ( isset( $post->post_latitude ) ) {
405
-                $map_args['latitude']  = $post->post_latitude;
406
-                $map_args['longitude'] = $post->post_longitude;
407
-            }
408
-
409
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
-        } else {
411
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
412
-        }
413
-
414
-        // Add marker cluster
415
-        if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
-            $map_args['enable_marker_cluster'] = true;
417
-        } else {
418
-            $map_args['enable_marker_cluster'] = false;
419
-        }
420
-
421
-        geodir_draw_map( $map_args );
422
-
423
-        $output = ob_get_contents();
424
-
425
-        ob_end_clean();
426
-
427
-        foreach ( $backup_globals as $global => $value ) {
428
-            ${$global} = $value;
429
-        }
430
-
431
-        return $output;
432
-    }else{
433
-        ob_start();
434
-        add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
-        add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
-        add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
-        $defaults = array(
438
-            'width' => '294',
439
-            'height' => '370',
440
-            'zoom' => '13',
441
-            'autozoom' => '',
442
-            'sticky' => '',
443
-            'showall' => '0',
444
-            'scrollwheel' => '0',
445
-            'maptype' => 'ROADMAP',
446
-            'child_collapse' => 0,
447
-            'marker_cluster' => false
448
-        );
449
-        $params = shortcode_atts($defaults, $atts);
450
-        $params = gdsc_validate_map_args($params);
451
-        $map_args = array(
452
-            'map_canvas_name' => 'gd_listing_map',
453
-            'width' => $params['width'],
454
-            'height' => $params['height'],
455
-            'zoom' => $params['zoom'],
456
-            'autozoom' => $params['autozoom'],
457
-            'sticky' => $params['sticky'],
458
-            'showall' => $params['showall'],
459
-            'scrollwheel' => $params['scrollwheel'],
460
-            'child_collapse' => 0,
461
-            'enable_cat_filters' => false,
462
-            'enable_text_search' => false,
463
-            'enable_post_type_filters' => false,
464
-            'enable_location_filters' => false,
465
-            'enable_jason_on_load' => true,
466
-        );
467
-        if (is_single()) {
468
-            global $post;
469
-            $map_default_lat = $address_latitude = $post->post_latitude;
470
-            $map_default_lng = $address_longitude = $post->post_longitude;
471
-            $mapview = $post->post_mapview;
472
-            $map_args['zoom'] = $post->post_mapzoom;
473
-            $map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
-        } else {
475
-            $default_location = geodir_get_default_location();
476
-            $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
-            $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
-            $map_args['map_class_name'] = 'geodir-map-listing-page';
479
-        }
480
-        if (empty($mapview)) {
481
-            $mapview = 'ROADMAP';
482
-        }
483
-        // Set default map options
484
-        $map_args['ajax_url'] = geodir_get_ajax_url();
485
-        $map_args['latitude'] = $map_default_lat;
486
-        $map_args['longitude'] = $map_default_lng;
487
-        $map_args['streetViewControl'] = true;
488
-        $map_args['maptype'] = $mapview;
489
-        $map_args['showPreview'] = '0';
490
-        $map_args['maxZoom'] = 21;
491
-        $map_args['bubble_size'] = 'small';
492
-
493
-        // Add marker cluster
494
-        if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
-            $map_args['enable_marker_cluster'] = true;
496
-        } else {
497
-            $map_args['enable_marker_cluster'] = false;
498
-        }
499
-        geodir_draw_map($map_args);
500
-        $output = ob_get_contents();
501
-        ob_end_clean();
502
-        return $output;
503
-    }
267
+	// if some params are set then we need a new query, if not then we can use the main query
268
+	if( isset($atts['post_type']) || isset($atts['category']) || isset($atts['event_type']) ) {
269
+
270
+		global $add_post_in_marker_array, $gd_sc_map_params;
271
+		$backup_globals                             = array();
272
+		$backup_globals['add_post_in_marker_array'] = $add_post_in_marker_array;
273
+		$backup_globals['gd_sc_map_params']         = $gd_sc_map_params;
274
+
275
+		$defaults = array(
276
+			'width'          => '294',
277
+			'height'         => '370',
278
+			'zoom'           => '13',
279
+			'autozoom'       => '',
280
+			'sticky'         => '',
281
+			'showall'        => '0',
282
+			'scrollwheel'    => '0',
283
+			'maptype'        => 'ROADMAP',
284
+			'child_collapse' => 0,
285
+			'marker_cluster' => false,
286
+			'post_type'      => 'gd_place',
287
+			'category'       => '0',
288
+			'event_type'     => 'all'
289
+		);
290
+
291
+		$params = shortcode_atts( $defaults, $atts );
292
+
293
+		if ( ! ( gdsc_is_post_type_valid( $params['post_type'] ) ) ) {
294
+			$params['post_type'] = 'gd_place';
295
+		}
296
+
297
+		// Validate the selected category/ies - Grab the current list based on post_type
298
+		$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
299
+		$categories        = get_terms( $category_taxonomy, array(
300
+			'orderby' => 'count',
301
+			'order'   => 'DESC',
302
+			'fields'  => 'ids'
303
+		) );
304
+
305
+		// Make sure we have an array
306
+		if ( ! ( is_array( $params['category'] ) ) ) {
307
+			$params['category'] = explode( ',', $params['category'] );
308
+		}
309
+
310
+		// Array_intersect returns only the items in $params['category'] that are also in our category list
311
+		// Otherwise it becomes empty and later on that will mean "All"
312
+		$params['category'] = array_intersect( $params['category'], $categories );
313
+
314
+		if ( $params['post_type'] == 'gd_event' ) {
315
+			$params['event_type'] = gdsc_validate_list_filter_choice( $params['event_type'] );
316
+		}
317
+
318
+		$params = gdsc_validate_map_args( $params );
319
+
320
+		$gd_sc_map_params = $params;
321
+
322
+		$query_args = array(
323
+			'posts_per_page' => 1000000, //@todo kiran why was this added? 
324
+			'is_geodir_loop' => true,
325
+			'gd_location'    => false,
326
+			'post_type'      => $params['post_type'],
327
+		);
328
+
329
+		if ( ! empty( $params['category'] ) && isset( $params['category'][0] ) && (int) $params['category'][0] != 0 ) {
330
+			$category_taxonomy = geodir_get_taxonomies( $params['post_type'] );
331
+
332
+			######### WPML #########
333
+			if ( function_exists( 'icl_object_id' ) ) {
334
+				$category = gd_lang_object_ids( $params['category'], $category_taxonomy[0] );
335
+			}
336
+			######### WPML #########
337
+
338
+			$tax_query = array(
339
+				'taxonomy' => $category_taxonomy[0],
340
+				'field'    => 'id',
341
+				'terms'    => $params['category']
342
+			);
343
+
344
+			$query_args['tax_query'] = array( $tax_query );
345
+		}
346
+
347
+		$add_post_in_marker_array = true;
348
+
349
+		if ( $params['post_type'] == 'gd_event' && function_exists( 'geodir_event_get_widget_events' ) ) {
350
+			global $geodir_event_widget_listview;
351
+			$geodir_event_widget_listview = true;
352
+
353
+			$query_args['geodir_event_type'] = $params['event_type'];
354
+
355
+			$listings = geodir_event_get_widget_events( $query_args );
356
+
357
+			$geodir_event_widget_listview = false;
358
+		} else {
359
+			$listings = geodir_get_widget_listings( $query_args );
360
+		}
361
+
362
+		if ( ! empty( $listings ) ) {
363
+			foreach ( $listings as $listing ) {
364
+				create_marker_jason_of_posts( $listing );
365
+			}
366
+		}
367
+
368
+		ob_start();
369
+		add_action( 'wp_head', 'init_listing_map_script' ); // Initialize the map object and marker array
370
+
371
+		add_action( 'the_post', 'create_list_jsondata' ); // Add marker in json array
372
+
373
+		add_action( 'wp_footer', 'show_listing_widget_map' ); // Show map for listings with markers
374
+
375
+		$default_location = geodir_get_default_location();
376
+
377
+		$map_args = array(
378
+			'map_canvas_name'          => 'gd_listing_map',
379
+			'width'                    => $params['width'],
380
+			'height'                   => $params['height'],
381
+			'zoom'                     => $params['zoom'],
382
+			'autozoom'                 => $params['autozoom'],
383
+			'sticky'                   => $params['sticky'],
384
+			'showall'                  => $params['showall'],
385
+			'scrollwheel'              => $params['scrollwheel'],
386
+			'maptype'                  => $params['maptype'],
387
+			'child_collapse'           => 0,
388
+			'enable_cat_filters'       => false,
389
+			'enable_text_search'       => false,
390
+			'enable_post_type_filters' => false,
391
+			'enable_location_filters'  => false,
392
+			'enable_jason_on_load'     => true,
393
+			'ajax_url'                 => geodir_get_ajax_url(),
394
+			'latitude'                 => isset( $default_location->city_latitude ) ? $default_location->city_latitude : '',
395
+			'longitude'                => isset( $default_location->city_longitude ) ? $default_location->city_longitude : '',
396
+			'streetViewControl'        => true,
397
+			'showPreview'              => '0',
398
+			'maxZoom'                  => 21,
399
+			'bubble_size'              => 'small',
400
+		);
401
+
402
+		if ( is_single() ) {
403
+			global $post;
404
+			if ( isset( $post->post_latitude ) ) {
405
+				$map_args['latitude']  = $post->post_latitude;
406
+				$map_args['longitude'] = $post->post_longitude;
407
+			}
408
+
409
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
410
+		} else {
411
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
412
+		}
413
+
414
+		// Add marker cluster
415
+		if ( isset( $params['marker_cluster'] ) && gdsc_to_bool_val( $params['marker_cluster'] ) && defined( 'GDCLUSTER_VERSION' ) ) {
416
+			$map_args['enable_marker_cluster'] = true;
417
+		} else {
418
+			$map_args['enable_marker_cluster'] = false;
419
+		}
420
+
421
+		geodir_draw_map( $map_args );
422
+
423
+		$output = ob_get_contents();
424
+
425
+		ob_end_clean();
426
+
427
+		foreach ( $backup_globals as $global => $value ) {
428
+			${$global} = $value;
429
+		}
430
+
431
+		return $output;
432
+	}else{
433
+		ob_start();
434
+		add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array
435
+		add_action('the_post', 'create_list_jsondata'); // Add marker in json array
436
+		add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers
437
+		$defaults = array(
438
+			'width' => '294',
439
+			'height' => '370',
440
+			'zoom' => '13',
441
+			'autozoom' => '',
442
+			'sticky' => '',
443
+			'showall' => '0',
444
+			'scrollwheel' => '0',
445
+			'maptype' => 'ROADMAP',
446
+			'child_collapse' => 0,
447
+			'marker_cluster' => false
448
+		);
449
+		$params = shortcode_atts($defaults, $atts);
450
+		$params = gdsc_validate_map_args($params);
451
+		$map_args = array(
452
+			'map_canvas_name' => 'gd_listing_map',
453
+			'width' => $params['width'],
454
+			'height' => $params['height'],
455
+			'zoom' => $params['zoom'],
456
+			'autozoom' => $params['autozoom'],
457
+			'sticky' => $params['sticky'],
458
+			'showall' => $params['showall'],
459
+			'scrollwheel' => $params['scrollwheel'],
460
+			'child_collapse' => 0,
461
+			'enable_cat_filters' => false,
462
+			'enable_text_search' => false,
463
+			'enable_post_type_filters' => false,
464
+			'enable_location_filters' => false,
465
+			'enable_jason_on_load' => true,
466
+		);
467
+		if (is_single()) {
468
+			global $post;
469
+			$map_default_lat = $address_latitude = $post->post_latitude;
470
+			$map_default_lng = $address_longitude = $post->post_longitude;
471
+			$mapview = $post->post_mapview;
472
+			$map_args['zoom'] = $post->post_mapzoom;
473
+			$map_args['map_class_name'] = 'geodir-map-listing-page-single';
474
+		} else {
475
+			$default_location = geodir_get_default_location();
476
+			$map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : '';
477
+			$map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : '';
478
+			$map_args['map_class_name'] = 'geodir-map-listing-page';
479
+		}
480
+		if (empty($mapview)) {
481
+			$mapview = 'ROADMAP';
482
+		}
483
+		// Set default map options
484
+		$map_args['ajax_url'] = geodir_get_ajax_url();
485
+		$map_args['latitude'] = $map_default_lat;
486
+		$map_args['longitude'] = $map_default_lng;
487
+		$map_args['streetViewControl'] = true;
488
+		$map_args['maptype'] = $mapview;
489
+		$map_args['showPreview'] = '0';
490
+		$map_args['maxZoom'] = 21;
491
+		$map_args['bubble_size'] = 'small';
492
+
493
+		// Add marker cluster
494
+		if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) {
495
+			$map_args['enable_marker_cluster'] = true;
496
+		} else {
497
+			$map_args['enable_marker_cluster'] = false;
498
+		}
499
+		geodir_draw_map($map_args);
500
+		$output = ob_get_contents();
501
+		ob_end_clean();
502
+		return $output;
503
+	}
504 504
 }
505 505
 
506 506
 add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider');
@@ -533,120 +533,120 @@  discard block
 block discarded – undo
533 533
  */
534 534
 function geodir_sc_listing_slider($atts)
535 535
 {
536
-    ob_start();
537
-    $defaults = array(
538
-        'post_type' => 'gd_place',
539
-        'category' => '0',
540
-        'post_number' => '5',
541
-        'slideshow' => '0',
542
-        'animation_loop' => 0,
543
-        'direction_nav' => 0,
544
-        'slideshow_speed' => 5000,
545
-        'animation_speed' => 600,
546
-        'animation' => 'slide',
547
-        'order_by' => 'latest',
548
-        'show_title' => '',
549
-        'show_featured_only' => '',
550
-        'title' => '',
551
-    );
552
-
553
-    $params = shortcode_atts($defaults, $atts);
554
-
555
-
556
-    /*
536
+	ob_start();
537
+	$defaults = array(
538
+		'post_type' => 'gd_place',
539
+		'category' => '0',
540
+		'post_number' => '5',
541
+		'slideshow' => '0',
542
+		'animation_loop' => 0,
543
+		'direction_nav' => 0,
544
+		'slideshow_speed' => 5000,
545
+		'animation_speed' => 600,
546
+		'animation' => 'slide',
547
+		'order_by' => 'latest',
548
+		'show_title' => '',
549
+		'show_featured_only' => '',
550
+		'title' => '',
551
+	);
552
+
553
+	$params = shortcode_atts($defaults, $atts);
554
+
555
+
556
+	/*
557 557
      *
558 558
      * Now we begin the validation of the attributes.
559 559
      */
560
-    // Check we have a valid post_type
561
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
-        $params['post_type'] = 'gd_place';
563
-    }
564
-
565
-    // Check we have a valid sort_order
566
-    $params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
-
568
-    // Match the chosen animation to our options
569
-    $animation_list = array('slide', 'fade');
570
-    if (!(in_array($params['animation'], $animation_list))) {
571
-        $params['animation'] = 'slide';
572
-    }
573
-
574
-    // Post_number needs to be a positive integer
575
-    $params['post_number'] = absint($params['post_number']);
576
-    if (0 == $params['post_number']) {
577
-        $params['post_number'] = 1;
578
-    }
579
-
580
-    // Manage the entered categories
581
-    if (0 != $params['category'] || '' != $params['category']) {
582
-        $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
-    }
584
-    // Convert show_title to a bool
585
-    $params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
-
587
-    // Convert show_featured_only to a bool
588
-    $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
-
590
-    /*
560
+	// Check we have a valid post_type
561
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
562
+		$params['post_type'] = 'gd_place';
563
+	}
564
+
565
+	// Check we have a valid sort_order
566
+	$params['order_by'] = gdsc_validate_sort_choice($params['order_by']);
567
+
568
+	// Match the chosen animation to our options
569
+	$animation_list = array('slide', 'fade');
570
+	if (!(in_array($params['animation'], $animation_list))) {
571
+		$params['animation'] = 'slide';
572
+	}
573
+
574
+	// Post_number needs to be a positive integer
575
+	$params['post_number'] = absint($params['post_number']);
576
+	if (0 == $params['post_number']) {
577
+		$params['post_number'] = 1;
578
+	}
579
+
580
+	// Manage the entered categories
581
+	if (0 != $params['category'] || '' != $params['category']) {
582
+		$params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']);
583
+	}
584
+	// Convert show_title to a bool
585
+	$params['show_title'] = intval(gdsc_to_bool_val($params['show_title']));
586
+
587
+	// Convert show_featured_only to a bool
588
+	$params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only']));
589
+
590
+	/*
591 591
      * Hopefully all attributes are now valid, and safe to pass forward
592 592
      */
593 593
 
594
-    // redeclare vars after validation
595
-
596
-    if (isset($params['direction_nav'])) {
597
-        $params['directionNav'] = $params['direction_nav'];
598
-    }
599
-    if (isset($params['animation_loop'])) {
600
-        $params['animationLoop'] = $params['animation_loop'];
601
-    }
602
-    if (isset($params['slideshow_speed'])) {
603
-        $params['slideshowSpeed'] = $params['slideshow_speed'];
604
-    }
605
-    if (isset($params['animation_speed'])) {
606
-        $params['animationSpeed'] = $params['animation_speed'];
607
-    }
608
-    if (isset($params['order_by'])) {
609
-        $params['list_sort'] = $params['order_by'];
610
-    }
611
-
612
-    $query_args = array(
613
-        'post_number' => $params['post_number'],
614
-        'is_geodir_loop' => true,
615
-        'post_type' => $params['post_type'],
616
-        'order_by' => $params['order_by']
617
-    );
618
-
619
-    if (1 == $params['show_featured_only']) {
620
-        $query_args['show_featured_only'] = 1;
621
-    }
622
-
623
-    if (0 != $params['category'] && '' != $params['category']) {
624
-        $category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
-        $tax_query = array(
626
-            'taxonomy' => $category_taxonomy[0],
627
-            'field' => 'id',
628
-            'terms' => $params['category'],
629
-        );
630
-
631
-        $query_args['tax_query'] = array($tax_query);
632
-    }
633
-
634
-    $defaults = array(
635
-        'before_widget' => '',
636
-        'after_widget' => '',
637
-        'before_title' => '',
638
-        'after_title' => '',
639
-    );
640
-
641
-    $query_args = array_merge($query_args, $params);
642
-
643
-    geodir_listing_slider_widget_output($defaults, $query_args);
644
-
645
-    $output = ob_get_contents();
646
-
647
-    ob_end_clean();
648
-
649
-    return $output;
594
+	// redeclare vars after validation
595
+
596
+	if (isset($params['direction_nav'])) {
597
+		$params['directionNav'] = $params['direction_nav'];
598
+	}
599
+	if (isset($params['animation_loop'])) {
600
+		$params['animationLoop'] = $params['animation_loop'];
601
+	}
602
+	if (isset($params['slideshow_speed'])) {
603
+		$params['slideshowSpeed'] = $params['slideshow_speed'];
604
+	}
605
+	if (isset($params['animation_speed'])) {
606
+		$params['animationSpeed'] = $params['animation_speed'];
607
+	}
608
+	if (isset($params['order_by'])) {
609
+		$params['list_sort'] = $params['order_by'];
610
+	}
611
+
612
+	$query_args = array(
613
+		'post_number' => $params['post_number'],
614
+		'is_geodir_loop' => true,
615
+		'post_type' => $params['post_type'],
616
+		'order_by' => $params['order_by']
617
+	);
618
+
619
+	if (1 == $params['show_featured_only']) {
620
+		$query_args['show_featured_only'] = 1;
621
+	}
622
+
623
+	if (0 != $params['category'] && '' != $params['category']) {
624
+		$category_taxonomy = geodir_get_taxonomies($params['post_type']);
625
+		$tax_query = array(
626
+			'taxonomy' => $category_taxonomy[0],
627
+			'field' => 'id',
628
+			'terms' => $params['category'],
629
+		);
630
+
631
+		$query_args['tax_query'] = array($tax_query);
632
+	}
633
+
634
+	$defaults = array(
635
+		'before_widget' => '',
636
+		'after_widget' => '',
637
+		'before_title' => '',
638
+		'after_title' => '',
639
+	);
640
+
641
+	$query_args = array_merge($query_args, $params);
642
+
643
+	geodir_listing_slider_widget_output($defaults, $query_args);
644
+
645
+	$output = ob_get_contents();
646
+
647
+	ob_end_clean();
648
+
649
+	return $output;
650 650
 }
651 651
 
652 652
 add_shortcode('gd_login_box', 'geodir_sc_login_box');
@@ -670,22 +670,22 @@  discard block
 block discarded – undo
670 670
  */
671 671
 function geodir_sc_login_box($atts)
672 672
 {
673
-    ob_start();
673
+	ob_start();
674 674
 
675
-    $defaults = array(
676
-        'before_widget' => '',
677
-        'after_widget' => '',
678
-        'before_title' => '',
679
-        'after_title' => '',
680
-    );
675
+	$defaults = array(
676
+		'before_widget' => '',
677
+		'after_widget' => '',
678
+		'before_title' => '',
679
+		'after_title' => '',
680
+	);
681 681
 
682
-    geodir_loginwidget_output($defaults, $defaults);
682
+	geodir_loginwidget_output($defaults, $defaults);
683 683
 
684
-    $output = ob_get_contents();
684
+	$output = ob_get_contents();
685 685
 
686
-    ob_end_clean();
686
+	ob_end_clean();
687 687
 
688
-    return $output;
688
+	return $output;
689 689
 }
690 690
 
691 691
 add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category');
@@ -716,31 +716,31 @@  discard block
 block discarded – undo
716 716
  */
717 717
 function geodir_sc_popular_post_category($atts)
718 718
 {
719
-    ob_start();
720
-    global $geodir_post_category_str;
721
-    $defaults = array(
722
-        'category_limit' => 15,
723
-        'category_restrict' => false,
724
-        'before_widget' => '',
725
-        'after_widget' => '',
726
-        'before_title' => '',
727
-        'after_title' => '',
728
-        'title' => '',
729
-        'default_post_type' => '',
730
-        'parent_only' => false,
731
-    );
732
-
733
-    $params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
-    $params['category_limit'] = absint($params['category_limit']);
735
-    $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
-    $params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
-    geodir_popular_post_category_output($params, $params);
738
-
739
-    $output = ob_get_contents();
740
-
741
-    ob_end_clean();
742
-
743
-    return $output;
719
+	ob_start();
720
+	global $geodir_post_category_str;
721
+	$defaults = array(
722
+		'category_limit' => 15,
723
+		'category_restrict' => false,
724
+		'before_widget' => '',
725
+		'after_widget' => '',
726
+		'before_title' => '',
727
+		'after_title' => '',
728
+		'title' => '',
729
+		'default_post_type' => '',
730
+		'parent_only' => false,
731
+	);
732
+
733
+	$params = shortcode_atts($defaults, $atts, 'popular_post_category');
734
+	$params['category_limit'] = absint($params['category_limit']);
735
+	$params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : '';
736
+	$params['parent_only'] = gdsc_to_bool_val($params['parent_only']);
737
+	geodir_popular_post_category_output($params, $params);
738
+
739
+	$output = ob_get_contents();
740
+
741
+	ob_end_clean();
742
+
743
+	return $output;
744 744
 }
745 745
 
746 746
 add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view');
@@ -781,96 +781,96 @@  discard block
 block discarded – undo
781 781
  */
782 782
 function geodir_sc_popular_post_view($atts)
783 783
 {
784
-    ob_start();
785
-    $defaults = array(
786
-        'post_type' => 'gd_place',
787
-        'category' => '0',
788
-        'post_number' => '5',
789
-        'layout' => 'gridview_onehalf',
790
-        'add_location_filter' => '0',
791
-        'list_sort' => 'latest',
792
-        'use_viewing_post_type' => '1',
793
-        'character_count' => '20',
794
-        'listing_width' => '',
795
-        'show_featured_only' => '0',
796
-        'show_special_only' => '0',
797
-        'with_pics_only' => '0',
798
-        'with_videos_only' => '0',
799
-        'before_widget' => '',
800
-        'after_widget' => '',
801
-        'before_title' => '<h3 class="widget-title">',
802
-        'after_title' => '</h3>',
803
-        'title' => '',
804
-        'category_title' => '',
805
-    );
806
-
807
-    $params = shortcode_atts($defaults, $atts);
808
-
809
-    /**
810
-     * Validate our incoming params
811
-     */
784
+	ob_start();
785
+	$defaults = array(
786
+		'post_type' => 'gd_place',
787
+		'category' => '0',
788
+		'post_number' => '5',
789
+		'layout' => 'gridview_onehalf',
790
+		'add_location_filter' => '0',
791
+		'list_sort' => 'latest',
792
+		'use_viewing_post_type' => '1',
793
+		'character_count' => '20',
794
+		'listing_width' => '',
795
+		'show_featured_only' => '0',
796
+		'show_special_only' => '0',
797
+		'with_pics_only' => '0',
798
+		'with_videos_only' => '0',
799
+		'before_widget' => '',
800
+		'after_widget' => '',
801
+		'before_title' => '<h3 class="widget-title">',
802
+		'after_title' => '</h3>',
803
+		'title' => '',
804
+		'category_title' => '',
805
+	);
812 806
 
813
-    // Validate the selected post type, default to gd_place on fail
814
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
815
-        $params['post_type'] = 'gd_place';
816
-    }
817
-
818
-    // Validate the selected category/ies - Grab the current list based on post_type
819
-    $category_taxonomy = geodir_get_taxonomies($params['post_type']);
820
-    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
821
-
822
-    // Make sure we have an array
823
-    if (!(is_array($params['category']))) {
824
-        $params['category'] = explode(',', $params['category']);
825
-    }
826
-
827
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
828
-    // Otherwise it becomes empty and later on that will mean "All"
829
-    $params['category'] = array_intersect($params['category'], $categories);
830
-
831
-    // Post_number needs to be a positive integer
832
-    $params['post_number'] = absint($params['post_number']);
833
-    if (0 == $params['post_number']) {
834
-        $params['post_number'] = 1;
835
-    }
836
-
837
-    // Validate our layout choice
838
-    // Outside of the norm, I added some more simple terms to match the existing
839
-    // So now I just run the switch to set it properly.
840
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
841
-
842
-    // Validate our sorting choice
843
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
844
-
845
-    // Validate character_count
846
-    if ($params['character_count'] !== '') {
847
-        $params['character_count'] = absint($params['character_count']);
848
-    }
849
-
850
-    // Validate Listing width, used in the template widget-listing-listview.php
851
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
852
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
853
-
854
-    // Validate the checkboxes used on the widget
855
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
856
-    $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
857
-    $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
858
-    $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
859
-    $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
860
-    $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
861
-
862
-    /**
863
-     * End of validation
864
-     */
807
+	$params = shortcode_atts($defaults, $atts);
808
+
809
+	/**
810
+	 * Validate our incoming params
811
+	 */
812
+
813
+	// Validate the selected post type, default to gd_place on fail
814
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
815
+		$params['post_type'] = 'gd_place';
816
+	}
817
+
818
+	// Validate the selected category/ies - Grab the current list based on post_type
819
+	$category_taxonomy = geodir_get_taxonomies($params['post_type']);
820
+	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids'));
821
+
822
+	// Make sure we have an array
823
+	if (!(is_array($params['category']))) {
824
+		$params['category'] = explode(',', $params['category']);
825
+	}
865 826
 
866
-    geodir_popular_postview_output($params, $params);
827
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
828
+	// Otherwise it becomes empty and later on that will mean "All"
829
+	$params['category'] = array_intersect($params['category'], $categories);
867 830
 
831
+	// Post_number needs to be a positive integer
832
+	$params['post_number'] = absint($params['post_number']);
833
+	if (0 == $params['post_number']) {
834
+		$params['post_number'] = 1;
835
+	}
836
+
837
+	// Validate our layout choice
838
+	// Outside of the norm, I added some more simple terms to match the existing
839
+	// So now I just run the switch to set it properly.
840
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
841
+
842
+	// Validate our sorting choice
843
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
844
+
845
+	// Validate character_count
846
+	if ($params['character_count'] !== '') {
847
+		$params['character_count'] = absint($params['character_count']);
848
+	}
849
+
850
+	// Validate Listing width, used in the template widget-listing-listview.php
851
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
852
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
868 853
 
869
-    $output = ob_get_contents();
854
+	// Validate the checkboxes used on the widget
855
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
856
+	$params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']);
857
+	$params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']);
858
+	$params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']);
859
+	$params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']);
860
+	$params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']);
870 861
 
871
-    ob_end_clean();
862
+	/**
863
+	 * End of validation
864
+	 */
872 865
 
873
-    return $output;
866
+	geodir_popular_postview_output($params, $params);
867
+
868
+
869
+	$output = ob_get_contents();
870
+
871
+	ob_end_clean();
872
+
873
+	return $output;
874 874
 }
875 875
 
876 876
 add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews');
@@ -892,37 +892,37 @@  discard block
 block discarded – undo
892 892
  * @return string Recent reviews HTML.
893 893
  */
894 894
 function geodir_sc_recent_reviews($atts) {
895
-    ob_start();
896
-    $defaults = array(
895
+	ob_start();
896
+	$defaults = array(
897 897
 		'title' => '',
898 898
 		'count' => 5,
899
-    );
899
+	);
900 900
 
901
-    $params = shortcode_atts($defaults, $atts);
901
+	$params = shortcode_atts($defaults, $atts);
902 902
 
903
-    $count = absint($params['count']);
904
-    if (0 == $count) {
905
-        $count = 1;
906
-    }
903
+	$count = absint($params['count']);
904
+	if (0 == $count) {
905
+		$count = 1;
906
+	}
907 907
 	
908 908
 	$title = !empty($params['title']) ? __($params['title'], 'geodirectory') : '';
909 909
 
910
-    $comments_li = geodir_get_recent_reviews(30, $count, 100, false);
910
+	$comments_li = geodir_get_recent_reviews(30, $count, 100, false);
911 911
 
912
-    if ($comments_li) {
913
-        if ($title != '') { ?>
912
+	if ($comments_li) {
913
+		if ($title != '') { ?>
914 914
 		<h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3>
915 915
 		<?php } ?>
916 916
         <div class="geodir_sc_recent_reviews_section">
917 917
             <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul>
918 918
         </div>
919 919
     <?php
920
-    }
921
-    $output = ob_get_contents();
920
+	}
921
+	$output = ob_get_contents();
922 922
 
923
-    ob_end_clean();
923
+	ob_end_clean();
924 924
 
925
-    return $output;
925
+	return $output;
926 926
 }
927 927
 
928 928
 add_shortcode('gd_related_listings', 'geodir_sc_related_listings');
@@ -952,63 +952,63 @@  discard block
 block discarded – undo
952 952
  */
953 953
 function geodir_sc_related_listings($atts)
954 954
 {
955
-    ob_start();
956
-    $defaults = array(
957
-        'post_number' => 5,
958
-        'relate_to' => 'category',
959
-        'layout' => 'gridview_onehalf',
960
-        'add_location_filter' => 0,
961
-        'listing_width' => '',
962
-        'list_sort' => 'latest',
963
-        'character_count' => 20,
964
-        'is_widget' => 1,
965
-        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
966
-    );
967
-    // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
968
-
969
-    $params = shortcode_atts($defaults, $atts);
970
-
971
-    /**
972
-     * Begin validating parameters
973
-     */
955
+	ob_start();
956
+	$defaults = array(
957
+		'post_number' => 5,
958
+		'relate_to' => 'category',
959
+		'layout' => 'gridview_onehalf',
960
+		'add_location_filter' => 0,
961
+		'listing_width' => '',
962
+		'list_sort' => 'latest',
963
+		'character_count' => 20,
964
+		'is_widget' => 1,
965
+		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>',
966
+	);
967
+	// The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet.
974 968
 
975
-    // Validate that post_number is a number and is 1 or higher
976
-    $params['post_number'] = absint($params['post_number']);
977
-    if (0 === $params['post_number']) {
978
-        $params['post_number'] = 1;
979
-    }
969
+	$params = shortcode_atts($defaults, $atts);
980 970
 
981
-    // Validate relate_to - only category or tags
982
-    $params['relate_to'] = geodir_strtolower($params['relate_to']);
983
-    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
984
-        $params['relate_to'] = 'category';
985
-    }
971
+	/**
972
+	 * Begin validating parameters
973
+	 */
986 974
 
987
-    // Validate layout selection
988
-    $params['layout'] = gdsc_validate_layout_choice($params['layout']);
975
+	// Validate that post_number is a number and is 1 or higher
976
+	$params['post_number'] = absint($params['post_number']);
977
+	if (0 === $params['post_number']) {
978
+		$params['post_number'] = 1;
979
+	}
989 980
 
990
-    // Validate sorting option
991
-    $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
981
+	// Validate relate_to - only category or tags
982
+	$params['relate_to'] = geodir_strtolower($params['relate_to']);
983
+	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) {
984
+		$params['relate_to'] = 'category';
985
+	}
986
+
987
+	// Validate layout selection
988
+	$params['layout'] = gdsc_validate_layout_choice($params['layout']);
992 989
 
993
-    // Validate add_location_filter
994
-    $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
990
+	// Validate sorting option
991
+	$params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']);
995 992
 
996
-    // Validate listing_width
997
-    $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
993
+	// Validate add_location_filter
994
+	$params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']);
998 995
 
999
-    // Validate character_count
1000
-    if ($params['character_count'] !== '') {
1001
-        $params['character_count'] = absint($params['character_count']);
1002
-    }
996
+	// Validate listing_width
997
+	$params['listing_width'] = gdsc_validate_listing_width($params['listing_width']);
1003 998
 
1004
-    if ($related_display = geodir_related_posts_display($params)) {
1005
-        echo $related_display;
1006
-    }
1007
-    $output = ob_get_contents();
999
+	// Validate character_count
1000
+	if ($params['character_count'] !== '') {
1001
+		$params['character_count'] = absint($params['character_count']);
1002
+	}
1003
+
1004
+	if ($related_display = geodir_related_posts_display($params)) {
1005
+		echo $related_display;
1006
+	}
1007
+	$output = ob_get_contents();
1008 1008
 
1009
-    ob_end_clean();
1009
+	ob_end_clean();
1010 1010
 
1011
-    return $output;
1011
+	return $output;
1012 1012
 }
1013 1013
 
1014 1014
 /**
@@ -1032,13 +1032,13 @@  discard block
 block discarded – undo
1032 1032
  * @return string Advanced search widget HTML.
1033 1033
  */
1034 1034
 function geodir_sc_advanced_search($atts) {
1035
-    $defaults = array(
1035
+	$defaults = array(
1036 1036
 		'title' => '',
1037 1037
 		'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">',
1038
-        'after_widget' => '</section>',
1039
-        'before_title' => '<h3 class="widget-title">',
1040
-        'after_title' => '</h3>',
1041
-        'show_adv_search' => 'default',
1038
+		'after_widget' => '</section>',
1039
+		'before_title' => '<h3 class="widget-title">',
1040
+		'after_title' => '</h3>',
1041
+		'show_adv_search' => 'default',
1042 1042
 		'post_type' => ''
1043 1043
 	);
1044 1044
 	
@@ -1062,9 +1062,9 @@  discard block
 block discarded – undo
1062 1062
 	the_widget('geodir_advance_search_widget', $params, $params );
1063 1063
 	
1064 1064
 	$output = ob_get_contents();
1065
-    ob_end_clean();
1065
+	ob_end_clean();
1066 1066
 
1067
-    return $output;
1067
+	return $output;
1068 1068
 }
1069 1069
 add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search');
1070 1070
 
@@ -1110,48 +1110,48 @@  discard block
 block discarded – undo
1110 1110
 		'add_location_filter' => '1',
1111 1111
 		'tab_layout' => 'bestof-tabs-on-top',
1112 1112
 		'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">',
1113
-        'after_widget' => '</section>',
1114
-        'before_title' => '<h3 class="widget-title">',
1115
-        'after_title' => '</h3>',
1113
+		'after_widget' => '</section>',
1114
+		'before_title' => '<h3 class="widget-title">',
1115
+		'after_title' => '</h3>',
1116 1116
 	);
1117 1117
 	$params = shortcode_atts($defaults, $atts);
1118 1118
 
1119
-    /**
1120
-     * Validate our incoming params
1121
-     */
1119
+	/**
1120
+	 * Validate our incoming params
1121
+	 */
1122 1122
 
1123
-    // Validate the selected post type, default to gd_place on fail
1124
-    if (!(gdsc_is_post_type_valid($params['post_type']))) {
1125
-        $params['post_type'] = 'gd_place';
1126
-    }
1123
+	// Validate the selected post type, default to gd_place on fail
1124
+	if (!(gdsc_is_post_type_valid($params['post_type']))) {
1125
+		$params['post_type'] = 'gd_place';
1126
+	}
1127 1127
 	
1128 1128
 	// Post limit needs to be a positive integer
1129
-    $params['post_limit'] = absint($params['post_limit']);
1130
-    if (0 == $params['post_limit']) {
1131
-        $params['post_limit'] = 5;
1132
-    }
1129
+	$params['post_limit'] = absint($params['post_limit']);
1130
+	if (0 == $params['post_limit']) {
1131
+		$params['post_limit'] = 5;
1132
+	}
1133 1133
 	
1134 1134
 	// Category limit needs to be a positive integer
1135
-    $params['categ_limit'] = absint($params['categ_limit']);
1136
-    if (0 == $params['categ_limit']) {
1137
-        $params['categ_limit'] = 3;
1138
-    }
1135
+	$params['categ_limit'] = absint($params['categ_limit']);
1136
+	if (0 == $params['categ_limit']) {
1137
+		$params['categ_limit'] = 3;
1138
+	}
1139 1139
 	
1140 1140
 	// Tab layout validation
1141
-    $params['tab_layout'] = $params['tab_layout'];
1142
-    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1143
-        $params['tab_layout'] = 'bestof-tabs-on-top';
1144
-    }
1141
+	$params['tab_layout'] = $params['tab_layout'];
1142
+	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) {
1143
+		$params['tab_layout'] = 'bestof-tabs-on-top';
1144
+	}
1145 1145
 	
1146 1146
 	// Validate character_count
1147
-    $params['character_count'] = $params['character_count'];
1147
+	$params['character_count'] = $params['character_count'];
1148 1148
 
1149 1149
 	ob_start();
1150 1150
 	the_widget('geodir_bestof_widget', $params, $params);
1151
-    $output = ob_get_contents();
1152
-    ob_end_clean();
1151
+	$output = ob_get_contents();
1152
+	ob_end_clean();
1153 1153
 
1154
-    return $output;
1154
+	return $output;
1155 1155
 }
1156 1156
 add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget');
1157 1157
 
@@ -1204,143 +1204,143 @@  discard block
 block discarded – undo
1204 1204
  * @return string HTML content to display geodirectory listings.
1205 1205
  */
1206 1206
 function geodir_sc_gd_listings($atts, $content = '') {
1207
-    global $post;
1208
-    $defaults = array(
1209
-        'title'                 => '',
1210
-        'post_type'             => 'gd_place',
1211
-        'category'              => 0,
1212
-        'list_sort'             => 'latest',
1213
-        'event_type'            => '',
1214
-        'post_number'           => 10,
1215
-        'post_author'           => '',
1216
-        'layout'                => 'gridview_onehalf',
1217
-        'listing_width'         => '',
1218
-        'character_count'       => 20,
1219
-        'add_location_filter'   => 1,
1220
-        'show_featured_only'    => '',
1221
-        'show_special_only'     => '',
1222
-        'with_pics_only'        => '',
1223
-        'with_videos_only'      => '',
1224
-        'with_pagination'       => '1',
1225
-        'top_pagination'        => '0',
1226
-        'bottom_pagination'     => '1',
1227
-        'without_no_results'    => 0,
1228
-        'tags'                  => '',
1229
-        'show_favorites_only'   => '',
1230
-        'favorites_by_user'     => '',
1231
-    );
1232
-    $params = shortcode_atts($defaults, $atts);
1233
-
1234
-    $params['title']        = wp_strip_all_tags($params['title']);
1235
-    $params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1236
-
1237
-    // Validate the selected category/ies - Grab the current list based on post_type
1238
-    $category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1239
-    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids', 'hide_empty' => 0));
1240
-
1241
-    // Make sure we have an array
1242
-    if (!(is_array($params['category']))) {
1243
-        $params['category'] = explode(',', $params['category']);
1244
-    }
1245
-
1246
-    // Array_intersect returns only the items in $params['category'] that are also in our category list
1247
-    // Otherwise it becomes empty and later on that will mean "All"
1248
-    $params['category']     = array_intersect($params['category'], $categories);
1249
-
1250
-    // Post_number needs to be a positive integer
1251
-    $params['post_number']  = absint($params['post_number']);
1252
-    $params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1207
+	global $post;
1208
+	$defaults = array(
1209
+		'title'                 => '',
1210
+		'post_type'             => 'gd_place',
1211
+		'category'              => 0,
1212
+		'list_sort'             => 'latest',
1213
+		'event_type'            => '',
1214
+		'post_number'           => 10,
1215
+		'post_author'           => '',
1216
+		'layout'                => 'gridview_onehalf',
1217
+		'listing_width'         => '',
1218
+		'character_count'       => 20,
1219
+		'add_location_filter'   => 1,
1220
+		'show_featured_only'    => '',
1221
+		'show_special_only'     => '',
1222
+		'with_pics_only'        => '',
1223
+		'with_videos_only'      => '',
1224
+		'with_pagination'       => '1',
1225
+		'top_pagination'        => '0',
1226
+		'bottom_pagination'     => '1',
1227
+		'without_no_results'    => 0,
1228
+		'tags'                  => '',
1229
+		'show_favorites_only'   => '',
1230
+		'favorites_by_user'     => '',
1231
+	);
1232
+	$params = shortcode_atts($defaults, $atts);
1233
+
1234
+	$params['title']        = wp_strip_all_tags($params['title']);
1235
+	$params['post_type']    = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place';
1236
+
1237
+	// Validate the selected category/ies - Grab the current list based on post_type
1238
+	$category_taxonomy      = geodir_get_taxonomies($params['post_type']);
1239
+	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids', 'hide_empty' => 0));
1240
+
1241
+	// Make sure we have an array
1242
+	if (!(is_array($params['category']))) {
1243
+		$params['category'] = explode(',', $params['category']);
1244
+	}
1245
+
1246
+	// Array_intersect returns only the items in $params['category'] that are also in our category list
1247
+	// Otherwise it becomes empty and later on that will mean "All"
1248
+	$params['category']     = array_intersect($params['category'], $categories);
1249
+
1250
+	// Post_number needs to be a positive integer
1251
+	$params['post_number']  = absint($params['post_number']);
1252
+	$params['post_number']  = $params['post_number'] > 0 ? $params['post_number'] : 10;
1253 1253
     
1254
-    // Post_number needs to be a positive integer
1255
-    if (!empty($atts['post_author'])) {
1256
-        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1257
-            $params['post_author'] = $post->post_author;
1258
-        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1259
-            $params['post_author'] = absint($atts['post_author']);
1260
-        } else {
1261
-            unset($params['post_author']);
1262
-        }
1263
-    } else {
1264
-        unset($params['post_author']);
1265
-    }
1266
-
1267
-    // Validate character_count
1268
-    //todo: is this necessary?
1269
-    $params['character_count']  = $params['character_count'];
1270
-
1271
-    // Validate our layout choice
1272
-    // Outside of the norm, I added some more simple terms to match the existing
1273
-    // So now I just run the switch to set it properly.
1274
-    $params['layout']           = gdsc_validate_layout_choice($params['layout']);
1275
-
1276
-    // Validate our sorting choice
1277
-    $params['list_sort']        = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
1278
-
1279
-    // Validate Listing width, used in the template widget-listing-listview.php
1280
-    // The context is in width=$listing_width% - So we need a positive number between 0 & 100
1281
-    $params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1282
-
1283
-    // Validate the checkboxes used on the widget
1284
-    $params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1285
-    $params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1286
-    $params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1287
-    $params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1288
-    $params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1289
-    $params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1290
-    $params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1291
-    $params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1254
+	// Post_number needs to be a positive integer
1255
+	if (!empty($atts['post_author'])) {
1256
+		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1257
+			$params['post_author'] = $post->post_author;
1258
+		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) {
1259
+			$params['post_author'] = absint($atts['post_author']);
1260
+		} else {
1261
+			unset($params['post_author']);
1262
+		}
1263
+	} else {
1264
+		unset($params['post_author']);
1265
+	}
1266
+
1267
+	// Validate character_count
1268
+	//todo: is this necessary?
1269
+	$params['character_count']  = $params['character_count'];
1270
+
1271
+	// Validate our layout choice
1272
+	// Outside of the norm, I added some more simple terms to match the existing
1273
+	// So now I just run the switch to set it properly.
1274
+	$params['layout']           = gdsc_validate_layout_choice($params['layout']);
1275
+
1276
+	// Validate our sorting choice
1277
+	$params['list_sort']        = gdsc_validate_sort_choice($params['list_sort'], $params['post_type']);
1278
+
1279
+	// Validate Listing width, used in the template widget-listing-listview.php
1280
+	// The context is in width=$listing_width% - So we need a positive number between 0 & 100
1281
+	$params['listing_width']    = gdsc_validate_listing_width($params['listing_width']);
1282
+
1283
+	// Validate the checkboxes used on the widget
1284
+	$params['add_location_filter']  = gdsc_to_bool_val($params['add_location_filter']);
1285
+	$params['show_featured_only']   = gdsc_to_bool_val($params['show_featured_only']);
1286
+	$params['show_special_only']    = gdsc_to_bool_val($params['show_special_only']);
1287
+	$params['with_pics_only']       = gdsc_to_bool_val($params['with_pics_only']);
1288
+	$params['with_videos_only']     = gdsc_to_bool_val($params['with_videos_only']);
1289
+	$params['with_pagination']      = gdsc_to_bool_val($params['with_pagination']);
1290
+	$params['top_pagination']       = gdsc_to_bool_val($params['top_pagination']);
1291
+	$params['bottom_pagination']    = gdsc_to_bool_val($params['bottom_pagination']);
1292 1292
     
1293
-    // User favorites
1294
-    $params['show_favorites_only']  = gdsc_to_bool_val($params['show_favorites_only']);
1295
-    if (!empty($params['show_favorites_only'])) {
1296
-        if ($params['favorites_by_user'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1297
-            $params['favorites_by_user'] = $post->post_author;
1298
-        } else if ($params['favorites_by_user'] != 'current' && absint($params['favorites_by_user']) > 0) {
1299
-            $params['favorites_by_user'] = absint($atts['favorites_by_user']);
1300
-        } else if ($params['favorites_by_user'] != 'current' && $current_user_id = get_current_user_id()) {
1301
-            $params['favorites_by_user'] = $current_user_id;
1302
-        } else {
1303
-            $params['favorites_by_user'] = 0;
1304
-        }
1305
-    }
1306
-
1307
-    // Clean tags
1308
-    if (!empty($params['tags'])) {
1309
-        if (!is_array($params['tags'])) {
1310
-            $comma = _x(',', 'tag delimiter');
1311
-            if ( ',' !== $comma ) {
1312
-                $params['tags'] = str_replace($comma, ',', $params['tags']);
1313
-            }
1314
-            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1315
-            $params['tags'] = array_map('trim', $params['tags']);
1316
-        }
1317
-    } else {
1318
-        $params['tags'] = array();
1319
-    }
1320
-
1321
-    /**
1322
-     * End of validation
1323
-     */
1324
-    if (isset($atts['geodir_ajax'])) {
1325
-        $params['geodir_ajax'] = $atts['geodir_ajax'];
1326
-        unset($atts['geodir_ajax']);
1327
-    }
1328
-    if (isset($atts['pageno'])) {
1329
-        $params['pageno'] = $atts['pageno'];
1330
-        unset($atts['pageno']);
1331
-    }
1332
-
1333
-    if ( !empty($atts['shortcode_content']) ) {
1334
-        $content = $atts['shortcode_content'];
1335
-    }
1336
-    $params['shortcode_content'] = trim($content);
1337
-    $atts['shortcode_content'] = trim($content);
1293
+	// User favorites
1294
+	$params['show_favorites_only']  = gdsc_to_bool_val($params['show_favorites_only']);
1295
+	if (!empty($params['show_favorites_only'])) {
1296
+		if ($params['favorites_by_user'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') {
1297
+			$params['favorites_by_user'] = $post->post_author;
1298
+		} else if ($params['favorites_by_user'] != 'current' && absint($params['favorites_by_user']) > 0) {
1299
+			$params['favorites_by_user'] = absint($atts['favorites_by_user']);
1300
+		} else if ($params['favorites_by_user'] != 'current' && $current_user_id = get_current_user_id()) {
1301
+			$params['favorites_by_user'] = $current_user_id;
1302
+		} else {
1303
+			$params['favorites_by_user'] = 0;
1304
+		}
1305
+	}
1306
+
1307
+	// Clean tags
1308
+	if (!empty($params['tags'])) {
1309
+		if (!is_array($params['tags'])) {
1310
+			$comma = _x(',', 'tag delimiter');
1311
+			if ( ',' !== $comma ) {
1312
+				$params['tags'] = str_replace($comma, ',', $params['tags']);
1313
+			}
1314
+			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,"));
1315
+			$params['tags'] = array_map('trim', $params['tags']);
1316
+		}
1317
+	} else {
1318
+		$params['tags'] = array();
1319
+	}
1320
+
1321
+	/**
1322
+	 * End of validation
1323
+	 */
1324
+	if (isset($atts['geodir_ajax'])) {
1325
+		$params['geodir_ajax'] = $atts['geodir_ajax'];
1326
+		unset($atts['geodir_ajax']);
1327
+	}
1328
+	if (isset($atts['pageno'])) {
1329
+		$params['pageno'] = $atts['pageno'];
1330
+		unset($atts['pageno']);
1331
+	}
1332
+
1333
+	if ( !empty($atts['shortcode_content']) ) {
1334
+		$content = $atts['shortcode_content'];
1335
+	}
1336
+	$params['shortcode_content'] = trim($content);
1337
+	$atts['shortcode_content'] = trim($content);
1338 1338
     
1339
-    $params['shortcode_atts']       = $atts;
1339
+	$params['shortcode_atts']       = $atts;
1340 1340
 
1341
-    $output = geodir_sc_gd_listings_output($params);
1341
+	$output = geodir_sc_gd_listings_output($params);
1342 1342
 
1343
-    return $output;
1343
+	return $output;
1344 1344
 }
1345 1345
 add_shortcode('gd_listings', 'geodir_sc_gd_listings');
1346 1346
 
@@ -1380,56 +1380,56 @@  discard block
 block discarded – undo
1380 1380
  * @return string HTML content to display CPT categories.
1381 1381
  */
1382 1382
 function geodir_sc_cpt_categories_widget($atts, $content = '') {
1383
-    $defaults = array(
1384
-        'title' => '',
1385
-        'post_type' => '', // NULL for all
1386
-        'hide_empty' => '',
1387
-        'show_count' => '',
1388
-        'hide_icon' => '',
1389
-        'cpt_left' => '',
1390
-        'sort_by' => 'count',
1391
-        'max_count' => 'all',
1392
-        'max_level' => '1',
1393
-        'no_cpt_filter' => '',
1394
-        'no_cat_filter' => '',
1395
-        'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1396
-        'after_widget' => '</section>',
1397
-        'before_title' => '<h3 class="widget-title">',
1398
-        'after_title' => '</h3>',
1399
-    );
1400
-    $params = shortcode_atts($defaults, $atts);
1401
-
1402
-    /**
1403
-     * Validate our incoming params
1404
-     */
1405
-    // Make sure we have an array
1406
-    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1407
-     
1408
-    // Validate the checkboxes used on the widget
1409
-    $params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1410
-    $params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1411
-    $params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1412
-    $params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1383
+	$defaults = array(
1384
+		'title' => '',
1385
+		'post_type' => '', // NULL for all
1386
+		'hide_empty' => '',
1387
+		'show_count' => '',
1388
+		'hide_icon' => '',
1389
+		'cpt_left' => '',
1390
+		'sort_by' => 'count',
1391
+		'max_count' => 'all',
1392
+		'max_level' => '1',
1393
+		'no_cpt_filter' => '',
1394
+		'no_cat_filter' => '',
1395
+		'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">',
1396
+		'after_widget' => '</section>',
1397
+		'before_title' => '<h3 class="widget-title">',
1398
+		'after_title' => '</h3>',
1399
+	);
1400
+	$params = shortcode_atts($defaults, $atts);
1413 1401
 
1414
-    if ($params['max_count'] != 'all') {
1415
-        $params['max_count'] = absint($params['max_count']);
1416
-    }
1402
+	/**
1403
+	 * Validate our incoming params
1404
+	 */
1405
+	// Make sure we have an array
1406
+	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array();
1407
+     
1408
+	// Validate the checkboxes used on the widget
1409
+	$params['hide_empty'] 	= gdsc_to_bool_val($params['hide_empty']);
1410
+	$params['show_count'] 	= gdsc_to_bool_val($params['show_count']);
1411
+	$params['hide_icon'] 	= gdsc_to_bool_val($params['hide_icon']);
1412
+	$params['cpt_left'] 	= gdsc_to_bool_val($params['cpt_left']);
1413
+
1414
+	if ($params['max_count'] != 'all') {
1415
+		$params['max_count'] = absint($params['max_count']);
1416
+	}
1417 1417
 
1418
-    if ($params['max_level'] != 'all') {
1419
-        $params['max_level'] = absint($params['max_level']);
1420
-    }
1418
+	if ($params['max_level'] != 'all') {
1419
+		$params['max_level'] = absint($params['max_level']);
1420
+	}
1421 1421
 
1422
-    $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1423
-    $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1422
+	$params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']);
1423
+	$params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']);
1424 1424
 
1425
-    $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1425
+	$params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count';
1426 1426
 
1427
-    ob_start();
1428
-    the_widget('geodir_cpt_categories_widget', $params, $params);
1429
-    $output = ob_get_contents();
1430
-    ob_end_clean();
1427
+	ob_start();
1428
+	the_widget('geodir_cpt_categories_widget', $params, $params);
1429
+	$output = ob_get_contents();
1430
+	ob_end_clean();
1431 1431
 
1432
-    return $output;
1432
+	return $output;
1433 1433
 }
1434 1434
 add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget');
1435 1435
 
@@ -1444,6 +1444,6 @@  discard block
 block discarded – undo
1444 1444
  * @return string HTML code.
1445 1445
  */
1446 1446
 function geodir_sc_responsive_videos($atts, $content) {
1447
-    return '<div class="geodir-video-wrapper">'.$content.'</div>';
1447
+	return '<div class="geodir-video-wrapper">'.$content.'</div>';
1448 1448
 }
1449 1449
 add_shortcode('gd_video', 'geodir_sc_responsive_videos');
1450 1450
\ No newline at end of file
Please login to merge, or discard this patch.