@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | */ |
23 | 23 | function geodir_core_dequeue_script() |
24 | 24 | { |
25 | - wp_dequeue_script('flexslider'); |
|
25 | + wp_dequeue_script('flexslider'); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | add_action('wp_print_scripts', 'geodir_core_dequeue_script', 100); |
@@ -35,168 +35,168 @@ discard block |
||
35 | 35 | */ |
36 | 36 | function geodir_templates_scripts() |
37 | 37 | { |
38 | - $is_detail_page = false; |
|
39 | - $geodir_map_name = geodir_map_name(); |
|
38 | + $is_detail_page = false; |
|
39 | + $geodir_map_name = geodir_map_name(); |
|
40 | 40 | |
41 | - if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) { |
|
42 | - $is_detail_page = true; |
|
43 | - } |
|
44 | - |
|
45 | - wp_enqueue_script('jquery'); |
|
46 | - |
|
47 | - wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js', array(), GEODIRECTORY_VERSION); |
|
48 | - wp_enqueue_script('geodirectory-script'); |
|
41 | + if((is_single() && geodir_is_geodir_page()) || (is_page() && geodir_is_page('preview') )) { |
|
42 | + $is_detail_page = true; |
|
43 | + } |
|
49 | 44 | |
50 | - $geodir_vars_data = array( |
|
51 | - 'siteurl' => get_option('siteurl'), |
|
52 | - 'geodir_plugin_url' => geodir_plugin_url(), |
|
53 | - 'geodir_lazy_load' => get_option('geodir_lazy_load',1), |
|
54 | - 'geodir_ajax_url' => geodir_get_ajax_url(), |
|
55 | - 'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'), |
|
56 | - 'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue |
|
57 | - ); |
|
45 | + wp_enqueue_script('jquery'); |
|
46 | + |
|
47 | + wp_register_script('geodirectory-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory.min.js', array(), GEODIRECTORY_VERSION); |
|
48 | + wp_enqueue_script('geodirectory-script'); |
|
49 | + |
|
50 | + $geodir_vars_data = array( |
|
51 | + 'siteurl' => get_option('siteurl'), |
|
52 | + 'geodir_plugin_url' => geodir_plugin_url(), |
|
53 | + 'geodir_lazy_load' => get_option('geodir_lazy_load',1), |
|
54 | + 'geodir_ajax_url' => geodir_get_ajax_url(), |
|
55 | + 'geodir_gd_modal' => (int)get_option('geodir_disable_gb_modal'), |
|
56 | + 'is_rtl' => is_rtl() ? 1 : 0 // fix rtl issue |
|
57 | + ); |
|
58 | + |
|
59 | + /** |
|
60 | + * Filter the `geodir_var` data array that outputs the wp_localize_script() translations and variables. |
|
61 | + * |
|
62 | + * This is used by addons to add JS translatable variables. |
|
63 | + * |
|
64 | + * @since 1.4.4 |
|
65 | + * @param array $geodir_vars_data { |
|
66 | + * geodir var data used by addons to add JS translatable variables. |
|
67 | + * |
|
68 | + * @type string $siteurl Site url. |
|
69 | + * @type string $geodir_plugin_url Geodirectory core plugin url. |
|
70 | + * @type string $geodir_ajax_url Geodirectory plugin ajax url. |
|
71 | + * @type int $geodir_gd_modal Disable GD modal that displays slideshow images in popup?. |
|
72 | + * @type int $is_rtl Checks if current locale is RTL. |
|
73 | + * |
|
74 | + * } |
|
75 | + */ |
|
76 | + $geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data); |
|
77 | + |
|
78 | + wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data); |
|
79 | + |
|
80 | + wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true); |
|
81 | + if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');} |
|
82 | + |
|
83 | + wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true); |
|
84 | + wp_enqueue_script('geodirectory-lightbox-jquery'); |
|
85 | + |
|
86 | + wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true); |
|
87 | + if ($is_detail_page) { |
|
88 | + wp_enqueue_script('geodirectory-jquery-simplemodal'); |
|
89 | + } |
|
58 | 90 | |
59 | - /** |
|
60 | - * Filter the `geodir_var` data array that outputs the wp_localize_script() translations and variables. |
|
61 | - * |
|
62 | - * This is used by addons to add JS translatable variables. |
|
63 | - * |
|
64 | - * @since 1.4.4 |
|
65 | - * @param array $geodir_vars_data { |
|
66 | - * geodir var data used by addons to add JS translatable variables. |
|
67 | - * |
|
68 | - * @type string $siteurl Site url. |
|
69 | - * @type string $geodir_plugin_url Geodirectory core plugin url. |
|
70 | - * @type string $geodir_ajax_url Geodirectory plugin ajax url. |
|
71 | - * @type int $geodir_gd_modal Disable GD modal that displays slideshow images in popup?. |
|
72 | - * @type int $is_rtl Checks if current locale is RTL. |
|
73 | - * |
|
74 | - * } |
|
75 | - */ |
|
76 | - $geodir_vars_data = apply_filters('geodir_vars_data',$geodir_vars_data); |
|
77 | - |
|
78 | - wp_localize_script('geodirectory-script', 'geodir_var', $geodir_vars_data); |
|
79 | - |
|
80 | - wp_register_script('geodirectory-jquery-flexslider-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.flexslider.min.js', array(), GEODIRECTORY_VERSION,true); |
|
81 | - if($is_detail_page){wp_enqueue_script('geodirectory-jquery-flexslider-js');} |
|
82 | - |
|
83 | - wp_register_script('geodirectory-lightbox-jquery', geodir_plugin_url() . '/geodirectory-assets/js/jquery.lightbox-0.5.min.js', array(), GEODIRECTORY_VERSION,true); |
|
84 | - wp_enqueue_script('geodirectory-lightbox-jquery'); |
|
85 | - |
|
86 | - wp_register_script('geodirectory-jquery-simplemodal', geodir_plugin_url() . '/geodirectory-assets/js/jquery.simplemodal.min.js', array(), GEODIRECTORY_VERSION,true); |
|
87 | - if ($is_detail_page) { |
|
88 | - wp_enqueue_script('geodirectory-jquery-simplemodal'); |
|
89 | - } |
|
90 | - |
|
91 | - if (in_array($geodir_map_name, array('auto', 'google'))) { |
|
92 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
93 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
94 | - /** |
|
95 | - * Filter the variables that are added to the end of the google maps script call. |
|
96 | - * |
|
97 | - * This i used to change things like google maps language etc. |
|
98 | - * |
|
99 | - * @since 1.0.0 |
|
100 | - * @param string $var The string to filter, default is empty string. |
|
101 | - */ |
|
102 | - $map_extra = apply_filters('geodir_googlemap_script_extra', ''); |
|
103 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL); |
|
104 | - } |
|
91 | + if (in_array($geodir_map_name, array('auto', 'google'))) { |
|
92 | + $map_lang = "&language=" . geodir_get_map_default_language(); |
|
93 | + $map_key = "&key=" . geodir_get_map_api_key(); |
|
94 | + /** |
|
95 | + * Filter the variables that are added to the end of the google maps script call. |
|
96 | + * |
|
97 | + * This i used to change things like google maps language etc. |
|
98 | + * |
|
99 | + * @since 1.0.0 |
|
100 | + * @param string $var The string to filter, default is empty string. |
|
101 | + */ |
|
102 | + $map_extra = apply_filters('geodir_googlemap_script_extra', ''); |
|
103 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra , '', NULL); |
|
104 | + } |
|
105 | 105 | |
106 | - if ($geodir_map_name == 'osm') { |
|
107 | - // Leaflet OpenStreetMap |
|
108 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION); |
|
109 | - wp_enqueue_style('geodirectory-leaflet-style'); |
|
106 | + if ($geodir_map_name == 'osm') { |
|
107 | + // Leaflet OpenStreetMap |
|
108 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION); |
|
109 | + wp_enqueue_style('geodirectory-leaflet-style'); |
|
110 | 110 | |
111 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION); |
|
112 | - wp_enqueue_script('geodirectory-leaflet-script'); |
|
111 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION); |
|
112 | + wp_enqueue_script('geodirectory-leaflet-script'); |
|
113 | 113 | |
114 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION); |
|
115 | - wp_enqueue_script('geodirectory-leaflet-geo-script'); |
|
114 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array(), GEODIRECTORY_VERSION); |
|
115 | + wp_enqueue_script('geodirectory-leaflet-geo-script'); |
|
116 | 116 | |
117 | - if ($is_detail_page) { |
|
118 | - wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION); |
|
119 | - wp_enqueue_style('geodirectory-leaflet-routing-style'); |
|
117 | + if ($is_detail_page) { |
|
118 | + wp_register_style('geodirectory-leaflet-routing-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.css', array(), GEODIRECTORY_VERSION); |
|
119 | + wp_enqueue_style('geodirectory-leaflet-routing-style'); |
|
120 | 120 | |
121 | - wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION); |
|
122 | - wp_enqueue_script('geodirectory-leaflet-routing-script'); |
|
123 | - } |
|
124 | - } |
|
125 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
121 | + wp_register_script('geodirectory-leaflet-routing-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/routing/leaflet-routing-machine.js', array(), GEODIRECTORY_VERSION); |
|
122 | + wp_enqueue_script('geodirectory-leaflet-routing-script'); |
|
123 | + } |
|
124 | + } |
|
125 | + wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
126 | 126 | |
127 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true); |
|
128 | - wp_enqueue_script('geodirectory-goMap-script'); |
|
129 | - |
|
130 | - |
|
131 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION); |
|
132 | - wp_enqueue_script('chosen'); |
|
133 | - |
|
134 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION); |
|
135 | - wp_enqueue_script('geodirectory-choose-ajax'); |
|
136 | - |
|
137 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true); |
|
138 | - |
|
139 | - if (is_page() && geodir_is_page('add-listing')) { |
|
140 | - // SCRIPT FOR UPLOAD |
|
141 | - wp_enqueue_script('plupload-all'); |
|
142 | - wp_enqueue_script('jquery-ui-sortable'); |
|
143 | - |
|
144 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true); |
|
145 | - wp_enqueue_script('geodirectory-plupload-script'); |
|
146 | - // SCRIPT FOR UPLOAD END |
|
147 | - |
|
148 | - // check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls |
|
149 | - if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) { |
|
150 | - $ajax_url = admin_url('admin-ajax.php'); |
|
151 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) { |
|
152 | - $ajax_url = admin_url('admin-ajax.php'); |
|
153 | - } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) { |
|
154 | - $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php')); |
|
155 | - } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) { |
|
156 | - $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php')); |
|
157 | - } else { |
|
158 | - $ajax_url = admin_url('admin-ajax.php'); |
|
159 | - } |
|
127 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true); |
|
128 | + wp_enqueue_script('geodirectory-goMap-script'); |
|
129 | + |
|
130 | + |
|
131 | + wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.min.js', array(), GEODIRECTORY_VERSION); |
|
132 | + wp_enqueue_script('chosen'); |
|
133 | + |
|
134 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.min.js', array(), GEODIRECTORY_VERSION); |
|
135 | + wp_enqueue_script('geodirectory-choose-ajax'); |
|
136 | + |
|
137 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.min.js', array('jquery-ui-datepicker', 'jquery-ui-slider', 'jquery-effects-core', 'jquery-effects-slide'), '', true); |
|
138 | + |
|
139 | + if (is_page() && geodir_is_page('add-listing')) { |
|
140 | + // SCRIPT FOR UPLOAD |
|
141 | + wp_enqueue_script('plupload-all'); |
|
142 | + wp_enqueue_script('jquery-ui-sortable'); |
|
143 | + |
|
144 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.min.js#asyncload', array(), GEODIRECTORY_VERSION,true); |
|
145 | + wp_enqueue_script('geodirectory-plupload-script'); |
|
146 | + // SCRIPT FOR UPLOAD END |
|
147 | + |
|
148 | + // check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls |
|
149 | + if (str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) { |
|
150 | + $ajax_url = admin_url('admin-ajax.php'); |
|
151 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) { |
|
152 | + $ajax_url = admin_url('admin-ajax.php'); |
|
153 | + } elseif (str_replace("https", "http", admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])) { |
|
154 | + $ajax_url = str_replace("https", "http", admin_url('admin-ajax.php')); |
|
155 | + } elseif (!str_replace("https", "http", admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])) { |
|
156 | + $ajax_url = str_replace("http", "https", admin_url('admin-ajax.php')); |
|
157 | + } else { |
|
158 | + $ajax_url = admin_url('admin-ajax.php'); |
|
159 | + } |
|
160 | 160 | |
161 | - // place js config array for plupload |
|
162 | - $plupload_init = array( |
|
163 | - 'runtimes' => 'html5,silverlight,flash,browserplus,gears,html4', |
|
164 | - 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
165 | - 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
166 | - 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
167 | - 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
168 | - 'multiple_queues' => true, |
|
169 | - 'max_file_size' => geodir_max_upload_size(), |
|
170 | - 'url' => $ajax_url, |
|
171 | - 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'), |
|
172 | - 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'), |
|
173 | - 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')), |
|
174 | - 'multipart' => true, |
|
175 | - 'urlstream_upload' => true, |
|
176 | - 'multi_selection' => false, // will be added per uploader |
|
177 | - // additional post data to send to our ajax hook |
|
178 | - 'multipart_params' => array( |
|
179 | - '_ajax_nonce' => "", // will be added per uploader |
|
180 | - 'action' => 'plupload_action', // the ajax action name |
|
181 | - 'imgid' => 0 // will be added per uploader |
|
182 | - ) |
|
183 | - ); |
|
184 | - $base_plupload_config = json_encode($plupload_init); |
|
185 | - |
|
186 | - $gd_plupload_init = array('base_plupload_config' => $base_plupload_config, |
|
187 | - 'upload_img_size' => geodir_max_upload_size()); |
|
188 | - |
|
189 | - wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init); |
|
190 | - |
|
191 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload'); |
|
192 | - } // End if for add place page |
|
193 | - |
|
194 | - wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true); |
|
195 | - if ($is_detail_page) { |
|
161 | + // place js config array for plupload |
|
162 | + $plupload_init = array( |
|
163 | + 'runtimes' => 'html5,silverlight,flash,browserplus,gears,html4', |
|
164 | + 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
165 | + 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
166 | + 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
167 | + 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
168 | + 'multiple_queues' => true, |
|
169 | + 'max_file_size' => geodir_max_upload_size(), |
|
170 | + 'url' => $ajax_url, |
|
171 | + 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'), |
|
172 | + 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'), |
|
173 | + 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')), |
|
174 | + 'multipart' => true, |
|
175 | + 'urlstream_upload' => true, |
|
176 | + 'multi_selection' => false, // will be added per uploader |
|
177 | + // additional post data to send to our ajax hook |
|
178 | + 'multipart_params' => array( |
|
179 | + '_ajax_nonce' => "", // will be added per uploader |
|
180 | + 'action' => 'plupload_action', // the ajax action name |
|
181 | + 'imgid' => 0 // will be added per uploader |
|
182 | + ) |
|
183 | + ); |
|
184 | + $base_plupload_config = json_encode($plupload_init); |
|
185 | + |
|
186 | + $gd_plupload_init = array('base_plupload_config' => $base_plupload_config, |
|
187 | + 'upload_img_size' => geodir_max_upload_size()); |
|
188 | + |
|
189 | + wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init); |
|
190 | + |
|
191 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation.min.js#asyncload'); |
|
192 | + } // End if for add place page |
|
193 | + |
|
194 | + wp_register_script('geodirectory-post-custom-js', geodir_plugin_url() . '/geodirectory-assets/js/post.custom.min.js#asyncload', array(), GEODIRECTORY_VERSION, true); |
|
195 | + if ($is_detail_page) { |
|
196 | 196 | wp_enqueue_script('geodirectory-post-custom-js'); |
197 | 197 | } |
198 | 198 | |
199 | - // font awesome rating script |
|
199 | + // font awesome rating script |
|
200 | 200 | if (get_option('geodir_reviewrating_enable_font_awesome')) { |
201 | 201 | wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION, true); |
202 | 202 | wp_enqueue_script('geodir-barrating-js'); |
@@ -205,11 +205,11 @@ discard block |
||
205 | 205 | wp_enqueue_script('geodir-jRating-js'); |
206 | 206 | } |
207 | 207 | |
208 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js#asyncload', array(), GEODIRECTORY_VERSION, true); |
|
209 | - wp_enqueue_script('geodir-on-document-load'); |
|
208 | + wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js#asyncload', array(), GEODIRECTORY_VERSION, true); |
|
209 | + wp_enqueue_script('geodir-on-document-load'); |
|
210 | 210 | |
211 | - wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true); |
|
212 | - wp_enqueue_script('google-geometa'); |
|
211 | + wp_register_script('google-geometa', geodir_plugin_url() . '/geodirectory-assets/js/geometa.min.js#asyncload', array(), GEODIRECTORY_VERSION, true); |
|
212 | + wp_enqueue_script('google-geometa'); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | /** |
@@ -223,8 +223,8 @@ discard block |
||
223 | 223 | */ |
224 | 224 | function geodir_header_scripts() |
225 | 225 | { |
226 | - echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>'; |
|
227 | - echo stripslashes(get_option('geodir_header_scripts')); |
|
226 | + echo '<style>' . stripslashes(get_option('geodir_coustem_css')) . '</style>'; |
|
227 | + echo stripslashes(get_option('geodir_header_scripts')); |
|
228 | 228 | } |
229 | 229 | |
230 | 230 | /** |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | */ |
238 | 238 | function geodir_google_analytics_tracking_code() |
239 | 239 | { |
240 | - if(get_option('geodir_ga_add_tracking_code') && get_option('geodir_ga_account_id')){?> |
|
240 | + if(get_option('geodir_ga_add_tracking_code') && get_option('geodir_ga_account_id')){?> |
|
241 | 241 | |
242 | 242 | <script> |
243 | 243 | (function(i,s,o,g,r,a,m){ i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ |
@@ -252,9 +252,9 @@ discard block |
||
252 | 252 | </script> |
253 | 253 | |
254 | 254 | <?php |
255 | - }elseif(get_option('geodir_ga_tracking_code') && !get_option('geodir_ga_account_id')){ |
|
256 | - echo stripslashes(get_option('geodir_ga_tracking_code')); |
|
257 | - } |
|
255 | + }elseif(get_option('geodir_ga_tracking_code') && !get_option('geodir_ga_account_id')){ |
|
256 | + echo stripslashes(get_option('geodir_ga_tracking_code')); |
|
257 | + } |
|
258 | 258 | } |
259 | 259 | |
260 | 260 | /** |
@@ -268,16 +268,16 @@ discard block |
||
268 | 268 | function geodir_footer_scripts() |
269 | 269 | { |
270 | 270 | |
271 | - echo stripslashes(get_option('geodir_footer_scripts')); |
|
271 | + echo stripslashes(get_option('geodir_footer_scripts')); |
|
272 | 272 | |
273 | - /* |
|
273 | + /* |
|
274 | 274 | * Apple suck and can't/won't fix bugs: https://bugs.webkit.org/show_bug.cgi?id=136041 |
275 | 275 | * |
276 | 276 | * Flexbox wont wrap on ios for search form items |
277 | 277 | */ |
278 | - if ( !empty( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/iPad|iPod|iPhone|Safari/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
279 | - echo "<style>body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper{flex:50 1 auto !important;min-width: initial !important;width:auto !important;}.geodir-filter-container .geodir-filter-cat{width:auto !important;}</style>"; |
|
280 | - } |
|
278 | + if ( !empty( $_SERVER['HTTP_USER_AGENT'] ) && preg_match( '/iPad|iPod|iPhone|Safari/', $_SERVER['HTTP_USER_AGENT'] ) ) { |
|
279 | + echo "<style>body .geodir-listing-search.gd-search-bar-style .geodir-loc-bar .clearfix.geodir-loc-bar-in .geodir-search .gd-search-input-wrapper{flex:50 1 auto !important;min-width: initial !important;width:auto !important;}.geodir-filter-container .geodir-filter-cat{width:auto !important;}</style>"; |
|
280 | + } |
|
281 | 281 | } |
282 | 282 | |
283 | 283 | |
@@ -291,12 +291,12 @@ discard block |
||
291 | 291 | */ |
292 | 292 | function geodir_add_async_forscript($url) |
293 | 293 | { |
294 | - if (strpos($url, '#asyncload')===false) |
|
295 | - return $url; |
|
296 | - else if (is_admin()) |
|
297 | - return str_replace('#asyncload', '', $url); |
|
298 | - else |
|
299 | - return str_replace('#asyncload', '', $url)."' async='async"; |
|
294 | + if (strpos($url, '#asyncload')===false) |
|
295 | + return $url; |
|
296 | + else if (is_admin()) |
|
297 | + return str_replace('#asyncload', '', $url); |
|
298 | + else |
|
299 | + return str_replace('#asyncload', '', $url)."' async='async"; |
|
300 | 300 | } |
301 | 301 | add_filter('clean_url', 'geodir_add_async_forscript', 11, 1); |
302 | 302 | |
@@ -309,17 +309,17 @@ discard block |
||
309 | 309 | function geodir_templates_styles() |
310 | 310 | { |
311 | 311 | |
312 | - wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION); |
|
313 | - wp_enqueue_style('geodir-core-scss'); |
|
314 | - wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION); |
|
312 | + wp_register_style('geodir-core-scss', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend.css', array(), GEODIRECTORY_VERSION); |
|
313 | + wp_enqueue_style('geodir-core-scss'); |
|
314 | + wp_register_style('geodir-core-scss-footer', geodir_plugin_url() . '/geodirectory-assets/css/gd_core_frontend_footer.css', array(), GEODIRECTORY_VERSION); |
|
315 | 315 | |
316 | - if(is_rtl()){ |
|
317 | - wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION); |
|
318 | - wp_enqueue_style('geodirectory-frontend-rtl-style'); |
|
319 | - } |
|
316 | + if(is_rtl()){ |
|
317 | + wp_register_style('geodirectory-frontend-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl-frontend.css', array(), GEODIRECTORY_VERSION); |
|
318 | + wp_enqueue_style('geodirectory-frontend-rtl-style'); |
|
319 | + } |
|
320 | 320 | |
321 | - wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION); |
|
322 | - wp_enqueue_style('font-awesome'); |
|
321 | + wp_register_style('font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION); |
|
322 | + wp_enqueue_style('font-awesome'); |
|
323 | 323 | |
324 | 324 | |
325 | 325 | } |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | */ |
334 | 334 | function geodir_get_sidebar() |
335 | 335 | { |
336 | - get_sidebar('geodirectory'); |
|
336 | + get_sidebar('geodirectory'); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | /** |
@@ -352,122 +352,122 @@ discard block |
||
352 | 352 | * @param bool $always_show Do you want to show the pagination always? Default: false. |
353 | 353 | */ |
354 | 354 | function geodir_pagination($before = '', $after = '', $prelabel = '', $nxtlabel = '', $pages_to_show = 5, $always_show = false) { |
355 | - global $wp_query, $posts_per_page, $wpdb, $paged, $blog_id; |
|
355 | + global $wp_query, $posts_per_page, $wpdb, $paged, $blog_id; |
|
356 | 356 | |
357 | - if (empty($prelabel)) { |
|
358 | - $prelabel = '<strong>«</strong>'; |
|
359 | - } |
|
357 | + if (empty($prelabel)) { |
|
358 | + $prelabel = '<strong>«</strong>'; |
|
359 | + } |
|
360 | 360 | |
361 | - if (empty($nxtlabel)) { |
|
362 | - $nxtlabel = '<strong>»</strong>'; |
|
363 | - } |
|
361 | + if (empty($nxtlabel)) { |
|
362 | + $nxtlabel = '<strong>»</strong>'; |
|
363 | + } |
|
364 | 364 | |
365 | - $half_pages_to_show = round($pages_to_show / 2); |
|
365 | + $half_pages_to_show = round($pages_to_show / 2); |
|
366 | 366 | |
367 | - if (geodir_is_page('home')) // dont apply default pagination for geodirectory home page. |
|
368 | - return; |
|
367 | + if (geodir_is_page('home')) // dont apply default pagination for geodirectory home page. |
|
368 | + return; |
|
369 | 369 | |
370 | - if (!is_single()) { |
|
371 | - if (function_exists('geodir_location_geo_home_link')) { |
|
372 | - remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
373 | - } |
|
374 | - $numposts = $wp_query->found_posts; |
|
370 | + if (!is_single()) { |
|
371 | + if (function_exists('geodir_location_geo_home_link')) { |
|
372 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
373 | + } |
|
374 | + $numposts = $wp_query->found_posts; |
|
375 | 375 | |
376 | - $max_page = ceil($numposts / $posts_per_page); |
|
376 | + $max_page = ceil($numposts / $posts_per_page); |
|
377 | 377 | |
378 | - if (empty($paged)) { |
|
379 | - $paged = 1; |
|
380 | - } |
|
378 | + if (empty($paged)) { |
|
379 | + $paged = 1; |
|
380 | + } |
|
381 | 381 | |
382 | - $post_type = geodir_get_current_posttype(); |
|
383 | - $listing_type_name = get_post_type_plural_label($post_type); |
|
384 | - if (geodir_is_page('listing') || geodir_is_page('search')) { |
|
385 | - $term = array(); |
|
382 | + $post_type = geodir_get_current_posttype(); |
|
383 | + $listing_type_name = get_post_type_plural_label($post_type); |
|
384 | + if (geodir_is_page('listing') || geodir_is_page('search')) { |
|
385 | + $term = array(); |
|
386 | 386 | |
387 | - if (is_tax()) { |
|
388 | - $term_id = get_queried_object_id(); |
|
389 | - $taxonomy = get_query_var('taxonomy'); |
|
387 | + if (is_tax()) { |
|
388 | + $term_id = get_queried_object_id(); |
|
389 | + $taxonomy = get_query_var('taxonomy'); |
|
390 | 390 | |
391 | - if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) { |
|
392 | - $term = get_term($term_id, $post_type . 'category'); |
|
393 | - } |
|
394 | - } |
|
391 | + if ($term_id && $post_type && get_query_var('taxonomy') == $post_type . 'category' ) { |
|
392 | + $term = get_term($term_id, $post_type . 'category'); |
|
393 | + } |
|
394 | + } |
|
395 | 395 | |
396 | - if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) { |
|
397 | - $taxonomy_search = $_REQUEST['s' . $post_type . 'category']; |
|
396 | + if (geodir_is_page('search') && !empty($_REQUEST['s' . $post_type . 'category'])) { |
|
397 | + $taxonomy_search = $_REQUEST['s' . $post_type . 'category']; |
|
398 | 398 | |
399 | - if (!is_array($taxonomy_search)) { |
|
400 | - $term = get_term((int)$taxonomy_search, $post_type . 'category'); |
|
401 | - } else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search |
|
402 | - $term = get_term((int)$taxonomy_search[0], $post_type . 'category'); |
|
403 | - } |
|
404 | - } |
|
399 | + if (!is_array($taxonomy_search)) { |
|
400 | + $term = get_term((int)$taxonomy_search, $post_type . 'category'); |
|
401 | + } else if(is_array($taxonomy_search) && count($taxonomy_search) == 1) { // single category search |
|
402 | + $term = get_term((int)$taxonomy_search[0], $post_type . 'category'); |
|
403 | + } |
|
404 | + } |
|
405 | 405 | |
406 | - if (!empty($term) && !is_wp_error($term)) { |
|
407 | - $listing_type_name = $term->name; |
|
408 | - } |
|
409 | - } |
|
406 | + if (!empty($term) && !is_wp_error($term)) { |
|
407 | + $listing_type_name = $term->name; |
|
408 | + } |
|
409 | + } |
|
410 | 410 | |
411 | - if ($max_page > 1 || $always_show) { |
|
412 | - // Extra pagination info |
|
413 | - $geodir_pagination_more_info = get_option('geodir_pagination_advance_info'); |
|
414 | - $start_no = ( $paged - 1 ) * $posts_per_page + 1; |
|
415 | - $end_no = min($paged * $posts_per_page, $numposts); |
|
411 | + if ($max_page > 1 || $always_show) { |
|
412 | + // Extra pagination info |
|
413 | + $geodir_pagination_more_info = get_option('geodir_pagination_advance_info'); |
|
414 | + $start_no = ( $paged - 1 ) * $posts_per_page + 1; |
|
415 | + $end_no = min($paged * $posts_per_page, $numposts); |
|
416 | 416 | |
417 | - if ($geodir_pagination_more_info != '') { |
|
418 | - if ($listing_type_name) { |
|
419 | - $listing_type_name = __($listing_type_name, 'geodirectory'); |
|
420 | - $pegination_desc = wp_sprintf(__('Showing %s %d-%d of %d', 'geodirectory'), $listing_type_name, $start_no, $end_no, $numposts); |
|
421 | - } else { |
|
422 | - $pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts); |
|
423 | - } |
|
424 | - $pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>'; |
|
425 | - /** |
|
426 | - * Adds an extra pagination info above/under pagination. |
|
427 | - * |
|
428 | - * @since 1.5.9 |
|
429 | - * |
|
430 | - * @param string $pagination_info Extra pagination info content. |
|
431 | - * @param string $listing_type_name Listing results type. |
|
432 | - * @param string $start_no First result number. |
|
433 | - * @param string $end_no Last result number. |
|
434 | - * @param string $numposts Total number of listings. |
|
435 | - * @param string $post_type The post type. |
|
436 | - */ |
|
437 | - $pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type); |
|
417 | + if ($geodir_pagination_more_info != '') { |
|
418 | + if ($listing_type_name) { |
|
419 | + $listing_type_name = __($listing_type_name, 'geodirectory'); |
|
420 | + $pegination_desc = wp_sprintf(__('Showing %s %d-%d of %d', 'geodirectory'), $listing_type_name, $start_no, $end_no, $numposts); |
|
421 | + } else { |
|
422 | + $pegination_desc = wp_sprintf(__('Showing listings %d-%d of %d', 'geodirectory'), $start_no, $end_no, $numposts); |
|
423 | + } |
|
424 | + $pagination_info = '<div class="gd-pagination-details">' . $pegination_desc . '</div>'; |
|
425 | + /** |
|
426 | + * Adds an extra pagination info above/under pagination. |
|
427 | + * |
|
428 | + * @since 1.5.9 |
|
429 | + * |
|
430 | + * @param string $pagination_info Extra pagination info content. |
|
431 | + * @param string $listing_type_name Listing results type. |
|
432 | + * @param string $start_no First result number. |
|
433 | + * @param string $end_no Last result number. |
|
434 | + * @param string $numposts Total number of listings. |
|
435 | + * @param string $post_type The post type. |
|
436 | + */ |
|
437 | + $pagination_info = apply_filters('geodir_pagination_advance_info', $pagination_info, $listing_type_name, $start_no, $end_no, $numposts, $post_type); |
|
438 | 438 | |
439 | - if ($geodir_pagination_more_info == 'before') { |
|
440 | - $before = $before . $pagination_info; |
|
441 | - } else if ($geodir_pagination_more_info == 'after') { |
|
442 | - $after = $pagination_info . $after; |
|
443 | - } |
|
444 | - } |
|
439 | + if ($geodir_pagination_more_info == 'before') { |
|
440 | + $before = $before . $pagination_info; |
|
441 | + } else if ($geodir_pagination_more_info == 'after') { |
|
442 | + $after = $pagination_info . $after; |
|
443 | + } |
|
444 | + } |
|
445 | 445 | |
446 | - echo "$before <div class='Navi gd-navi'>"; |
|
447 | - if ($paged >= ($pages_to_show - 1)) { |
|
448 | - echo '<a href="' . str_replace('&paged', '&paged', get_pagenum_link()) . '">«</a>'; |
|
449 | - } |
|
450 | - previous_posts_link($prelabel); |
|
451 | - for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) { |
|
452 | - if ($i >= 1 && $i <= $max_page) { |
|
453 | - if ($i == $paged) { |
|
454 | - echo "<strong class='on'>$i</strong>"; |
|
455 | - } else { |
|
456 | - echo ' <a href="' . str_replace('&paged', '&paged', get_pagenum_link($i)) . '">' . $i . '</a> '; |
|
457 | - } |
|
458 | - } |
|
459 | - } |
|
460 | - next_posts_link($nxtlabel, $max_page); |
|
461 | - if (($paged + $half_pages_to_show) < ($max_page)) { |
|
462 | - echo '<a href="' . str_replace('&paged', '&paged', get_pagenum_link($max_page)) . '">»</a>'; |
|
463 | - } |
|
464 | - echo "</div> $after"; |
|
465 | - } |
|
446 | + echo "$before <div class='Navi gd-navi'>"; |
|
447 | + if ($paged >= ($pages_to_show - 1)) { |
|
448 | + echo '<a href="' . str_replace('&paged', '&paged', get_pagenum_link()) . '">«</a>'; |
|
449 | + } |
|
450 | + previous_posts_link($prelabel); |
|
451 | + for ($i = $paged - $half_pages_to_show; $i <= $paged + $half_pages_to_show; $i++) { |
|
452 | + if ($i >= 1 && $i <= $max_page) { |
|
453 | + if ($i == $paged) { |
|
454 | + echo "<strong class='on'>$i</strong>"; |
|
455 | + } else { |
|
456 | + echo ' <a href="' . str_replace('&paged', '&paged', get_pagenum_link($i)) . '">' . $i . '</a> '; |
|
457 | + } |
|
458 | + } |
|
459 | + } |
|
460 | + next_posts_link($nxtlabel, $max_page); |
|
461 | + if (($paged + $half_pages_to_show) < ($max_page)) { |
|
462 | + echo '<a href="' . str_replace('&paged', '&paged', get_pagenum_link($max_page)) . '">»</a>'; |
|
463 | + } |
|
464 | + echo "</div> $after"; |
|
465 | + } |
|
466 | 466 | |
467 | - if (function_exists('geodir_location_geo_home_link')) { |
|
468 | - add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
469 | - } |
|
470 | - } |
|
467 | + if (function_exists('geodir_location_geo_home_link')) { |
|
468 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
469 | + } |
|
470 | + } |
|
471 | 471 | } |
472 | 472 | |
473 | 473 | /** |
@@ -478,20 +478,20 @@ discard block |
||
478 | 478 | */ |
479 | 479 | function geodir_listingsearch_scripts() |
480 | 480 | { |
481 | - if (get_option('gd_search_dist') != '') { |
|
482 | - $dist = get_option('gd_search_dist'); |
|
483 | - } else { |
|
484 | - $dist = 500; |
|
485 | - } |
|
486 | - $dist_dif = 1000; |
|
487 | - |
|
488 | - if ($dist <= 5000) $dist_dif = 500; |
|
489 | - if ($dist <= 1000) $dist_dif = 100; |
|
490 | - if ($dist <= 500) $dist_dif = 50; |
|
491 | - if ($dist <= 100) $dist_dif = 10; |
|
492 | - if ($dist <= 50) $dist_dif = 5; |
|
493 | - |
|
494 | - ?> |
|
481 | + if (get_option('gd_search_dist') != '') { |
|
482 | + $dist = get_option('gd_search_dist'); |
|
483 | + } else { |
|
484 | + $dist = 500; |
|
485 | + } |
|
486 | + $dist_dif = 1000; |
|
487 | + |
|
488 | + if ($dist <= 5000) $dist_dif = 500; |
|
489 | + if ($dist <= 1000) $dist_dif = 100; |
|
490 | + if ($dist <= 500) $dist_dif = 50; |
|
491 | + if ($dist <= 100) $dist_dif = 10; |
|
492 | + if ($dist <= 50) $dist_dif = 5; |
|
493 | + |
|
494 | + ?> |
|
495 | 495 | <script type="text/javascript"> |
496 | 496 | |
497 | 497 | jQuery(function ($) { |
@@ -549,20 +549,20 @@ discard block |
||
549 | 549 | * @package GeoDirectory |
550 | 550 | */ |
551 | 551 | function geodir_add_sharelocation_scripts() { |
552 | - $default_search_for_text = SEARCH_FOR_TEXT; |
|
553 | - if (get_option('geodir_search_field_default_text')) |
|
554 | - $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory'); |
|
552 | + $default_search_for_text = SEARCH_FOR_TEXT; |
|
553 | + if (get_option('geodir_search_field_default_text')) |
|
554 | + $default_search_for_text = __(get_option('geodir_search_field_default_text'), 'geodirectory'); |
|
555 | 555 | |
556 | - $default_near_text = NEAR_TEXT; |
|
557 | - if (get_option('geodir_near_field_default_text')) |
|
558 | - $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory'); |
|
556 | + $default_near_text = NEAR_TEXT; |
|
557 | + if (get_option('geodir_near_field_default_text')) |
|
558 | + $default_near_text = __(get_option('geodir_near_field_default_text'), 'geodirectory'); |
|
559 | 559 | |
560 | - $search_location = geodir_get_default_location(); |
|
560 | + $search_location = geodir_get_default_location(); |
|
561 | 561 | |
562 | - $default_search_for_text = addslashes(stripslashes($default_search_for_text)); |
|
563 | - $default_near_text = addslashes(stripslashes($default_near_text)); |
|
564 | - $city = !empty($search_location) ? addslashes(stripslashes($search_location->city)) : ''; |
|
565 | - ?> |
|
562 | + $default_search_for_text = addslashes(stripslashes($default_search_for_text)); |
|
563 | + $default_near_text = addslashes(stripslashes($default_near_text)); |
|
564 | + $city = !empty($search_location) ? addslashes(stripslashes($search_location->city)) : ''; |
|
565 | + ?> |
|
566 | 566 | <script type="text/javascript"> |
567 | 567 | var default_location = '<?php echo $city ;?>'; |
568 | 568 | var latlng; |
@@ -643,14 +643,14 @@ discard block |
||
643 | 643 | initialise2(); |
644 | 644 | } else { |
645 | 645 | <?php |
646 | - $near_add = get_option('geodir_search_near_addition'); |
|
647 | - /** |
|
648 | - * Adds any extra info to the near search box query when trying to geolocate it via google api. |
|
649 | - * |
|
650 | - * @since 1.0.0 |
|
651 | - */ |
|
652 | - $near_add2 = apply_filters('geodir_search_near_addition', ''); |
|
653 | - ?> |
|
646 | + $near_add = get_option('geodir_search_near_addition'); |
|
647 | + /** |
|
648 | + * Adds any extra info to the near search box query when trying to geolocate it via google api. |
|
649 | + * |
|
650 | + * @since 1.0.0 |
|
651 | + */ |
|
652 | + $near_add2 = apply_filters('geodir_search_near_addition', ''); |
|
653 | + ?> |
|
654 | 654 | if (window.gdMaps === 'google') { |
655 | 655 | Sgeocoder.geocode({'address': address<?php echo ($near_add ? '+", ' . $near_add . '"' : '') . $near_add2;?>}, |
656 | 656 | function (results, status) { |
@@ -753,30 +753,30 @@ discard block |
||
753 | 753 | */ |
754 | 754 | function geodir_show_badges_on_image($which, $post, $link) |
755 | 755 | { |
756 | - $return = ''; |
|
757 | - switch ($which) { |
|
758 | - case 'featured': |
|
759 | - /** |
|
760 | - * Filter the featured image badge html that appears in the listings pages over the thumbnail. |
|
761 | - * |
|
762 | - * @since 1.0.0 |
|
763 | - * @param object $post The post object. |
|
764 | - * @param string $link The link to the post. |
|
765 | - */ |
|
766 | - $return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img"> </span></a>',$post,$link); |
|
767 | - break; |
|
768 | - case 'new' : |
|
769 | - /** |
|
770 | - * Filter the new image badge html that appears in the listings pages over the thumbnail. |
|
771 | - * |
|
772 | - * @since 1.0.0 |
|
773 | - * @param object $post The post object. |
|
774 | - * @param string $link The link to the post. |
|
775 | - */ |
|
776 | - $return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing"> </span></a>',$post,$link); |
|
777 | - break; |
|
778 | - |
|
779 | - } |
|
756 | + $return = ''; |
|
757 | + switch ($which) { |
|
758 | + case 'featured': |
|
759 | + /** |
|
760 | + * Filter the featured image badge html that appears in the listings pages over the thumbnail. |
|
761 | + * |
|
762 | + * @since 1.0.0 |
|
763 | + * @param object $post The post object. |
|
764 | + * @param string $link The link to the post. |
|
765 | + */ |
|
766 | + $return = apply_filters('geodir_featured_badge_on_image', '<a href="' . $link . '"><span class="geodir_featured_img"> </span></a>',$post,$link); |
|
767 | + break; |
|
768 | + case 'new' : |
|
769 | + /** |
|
770 | + * Filter the new image badge html that appears in the listings pages over the thumbnail. |
|
771 | + * |
|
772 | + * @since 1.0.0 |
|
773 | + * @param object $post The post object. |
|
774 | + * @param string $link The link to the post. |
|
775 | + */ |
|
776 | + $return = apply_filters('geodir_new_badge_on_image', '<a href="' . $link . '"><span class="geodir_new_listing"> </span></a>',$post,$link); |
|
777 | + break; |
|
778 | + |
|
779 | + } |
|
780 | 780 | |
781 | - return $return; |
|
781 | + return $return; |
|
782 | 782 | } |
@@ -16,10 +16,10 @@ discard block |
||
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 |
||
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 |
||
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 | - } // Latatude |
|
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 | + } // Latatude |
|
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(ucfirst($addr_details[geoplugin_latitude])); |
|
125 | - $mylon = stripslashes(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(ucfirst($addr_details[geoplugin_latitude])); |
|
125 | + $mylon = stripslashes(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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 ########### |
|
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 | + } |
|
671 | + |
|
672 | + } |
|
673 | + ########### WPML ########### |
|
674 | 674 | |
675 | 675 | |
676 | - return $where = str_replace("0 = 1", "1=1", $where); |
|
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 |
||
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); |
|
754 | 737 | |
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 | - */ |
|
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 | + } |
|
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 |
||
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 |
||
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 |
||
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 |
||
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,42 +953,42 @@ discard block |
||
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 | \ No newline at end of file |
@@ -14,13 +14,13 @@ discard block |
||
14 | 14 | * @return int|null Return the page ID if present or null if not. |
15 | 15 | */ |
16 | 16 | function geodir_add_listing_page_id(){ |
17 | - $gd_page_id = get_option('geodir_add_listing_page'); |
|
17 | + $gd_page_id = get_option('geodir_add_listing_page'); |
|
18 | 18 | |
19 | - if (function_exists('icl_object_id')) { |
|
20 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
21 | - } |
|
19 | + if (function_exists('icl_object_id')) { |
|
20 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
21 | + } |
|
22 | 22 | |
23 | - return $gd_page_id; |
|
23 | + return $gd_page_id; |
|
24 | 24 | } |
25 | 25 | |
26 | 26 | /** |
@@ -31,13 +31,13 @@ discard block |
||
31 | 31 | * @return int|null Return the page ID if present or null if not. |
32 | 32 | */ |
33 | 33 | function geodir_preview_page_id(){ |
34 | - $gd_page_id = get_option('geodir_preview_page'); |
|
34 | + $gd_page_id = get_option('geodir_preview_page'); |
|
35 | 35 | |
36 | - if (function_exists('icl_object_id')) { |
|
37 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
38 | - } |
|
36 | + if (function_exists('icl_object_id')) { |
|
37 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
38 | + } |
|
39 | 39 | |
40 | - return $gd_page_id; |
|
40 | + return $gd_page_id; |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -48,13 +48,13 @@ discard block |
||
48 | 48 | * @return int|null Return the page ID if present or null if not. |
49 | 49 | */ |
50 | 50 | function geodir_success_page_id(){ |
51 | - $gd_page_id = get_option('geodir_success_page'); |
|
51 | + $gd_page_id = get_option('geodir_success_page'); |
|
52 | 52 | |
53 | - if (function_exists('icl_object_id')) { |
|
54 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
55 | - } |
|
53 | + if (function_exists('icl_object_id')) { |
|
54 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
55 | + } |
|
56 | 56 | |
57 | - return $gd_page_id; |
|
57 | + return $gd_page_id; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
@@ -65,13 +65,13 @@ discard block |
||
65 | 65 | * @return int|null Return the page ID if present or null if not. |
66 | 66 | */ |
67 | 67 | function geodir_location_page_id(){ |
68 | - $gd_page_id = get_option('geodir_location_page'); |
|
68 | + $gd_page_id = get_option('geodir_location_page'); |
|
69 | 69 | |
70 | - if (function_exists('icl_object_id')) { |
|
71 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
72 | - } |
|
70 | + if (function_exists('icl_object_id')) { |
|
71 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
72 | + } |
|
73 | 73 | |
74 | - return $gd_page_id; |
|
74 | + return $gd_page_id; |
|
75 | 75 | } |
76 | 76 | |
77 | 77 | /** |
@@ -82,13 +82,13 @@ discard block |
||
82 | 82 | * @return int|null Return the page ID if present or null if not. |
83 | 83 | */ |
84 | 84 | function geodir_home_page_id(){ |
85 | - $gd_page_id = get_option('geodir_home_page'); |
|
85 | + $gd_page_id = get_option('geodir_home_page'); |
|
86 | 86 | |
87 | - if (function_exists('icl_object_id')) { |
|
88 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
89 | - } |
|
87 | + if (function_exists('icl_object_id')) { |
|
88 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
89 | + } |
|
90 | 90 | |
91 | - return $gd_page_id; |
|
91 | + return $gd_page_id; |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | /** |
@@ -99,13 +99,13 @@ discard block |
||
99 | 99 | * @return int|null Return the page ID if present or null if not. |
100 | 100 | */ |
101 | 101 | function geodir_info_page_id(){ |
102 | - $gd_page_id = get_option('geodir_info_page'); |
|
102 | + $gd_page_id = get_option('geodir_info_page'); |
|
103 | 103 | |
104 | - if (function_exists('icl_object_id')) { |
|
105 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
106 | - } |
|
104 | + if (function_exists('icl_object_id')) { |
|
105 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
106 | + } |
|
107 | 107 | |
108 | - return $gd_page_id; |
|
108 | + return $gd_page_id; |
|
109 | 109 | } |
110 | 110 | |
111 | 111 | /** |
@@ -116,13 +116,13 @@ discard block |
||
116 | 116 | * @return int|null Return the page ID if present or null if not. |
117 | 117 | */ |
118 | 118 | function geodir_login_page_id(){ |
119 | - $gd_page_id = get_option('geodir_login_page'); |
|
119 | + $gd_page_id = get_option('geodir_login_page'); |
|
120 | 120 | |
121 | - if (function_exists('icl_object_id')) { |
|
122 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
123 | - } |
|
121 | + if (function_exists('icl_object_id')) { |
|
122 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
123 | + } |
|
124 | 124 | |
125 | - return $gd_page_id; |
|
125 | + return $gd_page_id; |
|
126 | 126 | } |
127 | 127 | |
128 | 128 | |
@@ -134,51 +134,51 @@ discard block |
||
134 | 134 | * @return int|null Return the page ID if present or null if not. |
135 | 135 | */ |
136 | 136 | function geodir_login_url($args=array()){ |
137 | - $gd_page_id = get_option('geodir_login_page'); |
|
138 | - |
|
139 | - if (function_exists('icl_object_id')) { |
|
140 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
141 | - } |
|
142 | - |
|
143 | - if (function_exists('geodir_location_geo_home_link')) { |
|
144 | - remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
145 | - } |
|
146 | - |
|
147 | - if (geodir_is_wpml()){ |
|
148 | - $home_url = icl_get_home_url(); |
|
149 | - }else{ |
|
150 | - $home_url = home_url(); |
|
151 | - } |
|
152 | - |
|
153 | - if (function_exists('geodir_location_geo_home_link')) { |
|
154 | - add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
155 | - } |
|
156 | - |
|
157 | - if($gd_page_id){ |
|
158 | - $post = get_post($gd_page_id); |
|
159 | - $slug = $post->post_name; |
|
160 | - //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
|
161 | - $login_url = trailingslashit($home_url)."$slug/"; |
|
162 | - }else{ |
|
163 | - $login_url = trailingslashit($home_url)."?geodir_signup=true"; |
|
164 | - } |
|
165 | - |
|
166 | - if($args){ |
|
167 | - $login_url = add_query_arg($args,$login_url ); |
|
168 | - } |
|
169 | - |
|
170 | - /** |
|
171 | - * Filter the GeoDirectory login page url. |
|
172 | - * |
|
173 | - * This filter can be used to change the GeoDirectory page url. |
|
174 | - * |
|
175 | - * @since 1.5.3 |
|
176 | - * @package GeoDirectory |
|
177 | - * @param string $login_url The url of the login page. |
|
178 | - * @param array $args The array of query args used. |
|
179 | - * @param int $gd_page_id The page id of the GD login page. |
|
180 | - */ |
|
181 | - return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id); |
|
137 | + $gd_page_id = get_option('geodir_login_page'); |
|
138 | + |
|
139 | + if (function_exists('icl_object_id')) { |
|
140 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
141 | + } |
|
142 | + |
|
143 | + if (function_exists('geodir_location_geo_home_link')) { |
|
144 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
145 | + } |
|
146 | + |
|
147 | + if (geodir_is_wpml()){ |
|
148 | + $home_url = icl_get_home_url(); |
|
149 | + }else{ |
|
150 | + $home_url = home_url(); |
|
151 | + } |
|
152 | + |
|
153 | + if (function_exists('geodir_location_geo_home_link')) { |
|
154 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
155 | + } |
|
156 | + |
|
157 | + if($gd_page_id){ |
|
158 | + $post = get_post($gd_page_id); |
|
159 | + $slug = $post->post_name; |
|
160 | + //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
|
161 | + $login_url = trailingslashit($home_url)."$slug/"; |
|
162 | + }else{ |
|
163 | + $login_url = trailingslashit($home_url)."?geodir_signup=true"; |
|
164 | + } |
|
165 | + |
|
166 | + if($args){ |
|
167 | + $login_url = add_query_arg($args,$login_url ); |
|
168 | + } |
|
169 | + |
|
170 | + /** |
|
171 | + * Filter the GeoDirectory login page url. |
|
172 | + * |
|
173 | + * This filter can be used to change the GeoDirectory page url. |
|
174 | + * |
|
175 | + * @since 1.5.3 |
|
176 | + * @package GeoDirectory |
|
177 | + * @param string $login_url The url of the login page. |
|
178 | + * @param array $args The array of query args used. |
|
179 | + * @param int $gd_page_id The page id of the GD login page. |
|
180 | + */ |
|
181 | + return apply_filters('geodir_login_url',$login_url,$args,$gd_page_id); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | /** |
@@ -190,40 +190,40 @@ discard block |
||
190 | 190 | * @return string Info page url. |
191 | 191 | */ |
192 | 192 | function geodir_info_url($args=array()){ |
193 | - $gd_page_id = get_option('geodir_info_page'); |
|
194 | - |
|
195 | - if (function_exists('icl_object_id')) { |
|
196 | - $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
197 | - } |
|
198 | - |
|
199 | - if (function_exists('geodir_location_geo_home_link')) { |
|
200 | - remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
201 | - } |
|
202 | - |
|
203 | - if (geodir_is_wpml()){ |
|
204 | - $home_url = icl_get_home_url(); |
|
205 | - }else{ |
|
206 | - $home_url = home_url(); |
|
207 | - } |
|
208 | - |
|
209 | - if (function_exists('geodir_location_geo_home_link')) { |
|
210 | - add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
211 | - } |
|
212 | - |
|
213 | - if($gd_page_id){ |
|
214 | - $post = get_post($gd_page_id); |
|
215 | - $slug = $post->post_name; |
|
216 | - //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
|
217 | - $info_url = trailingslashit($home_url)."$slug/"; |
|
218 | - }else{ |
|
219 | - $info_url = trailingslashit($home_url); |
|
220 | - } |
|
221 | - |
|
222 | - if($args){ |
|
223 | - $info_url = add_query_arg($args,$info_url ); |
|
224 | - } |
|
225 | - |
|
226 | - return $info_url; |
|
193 | + $gd_page_id = get_option('geodir_info_page'); |
|
194 | + |
|
195 | + if (function_exists('icl_object_id')) { |
|
196 | + $gd_page_id = icl_object_id($gd_page_id, 'page', true); |
|
197 | + } |
|
198 | + |
|
199 | + if (function_exists('geodir_location_geo_home_link')) { |
|
200 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000); |
|
201 | + } |
|
202 | + |
|
203 | + if (geodir_is_wpml()){ |
|
204 | + $home_url = icl_get_home_url(); |
|
205 | + }else{ |
|
206 | + $home_url = home_url(); |
|
207 | + } |
|
208 | + |
|
209 | + if (function_exists('geodir_location_geo_home_link')) { |
|
210 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2); |
|
211 | + } |
|
212 | + |
|
213 | + if($gd_page_id){ |
|
214 | + $post = get_post($gd_page_id); |
|
215 | + $slug = $post->post_name; |
|
216 | + //$login_url = get_permalink($gd_page_id );// get_permalink can only be user after theme-Setup hook, any earlier and it errors |
|
217 | + $info_url = trailingslashit($home_url)."$slug/"; |
|
218 | + }else{ |
|
219 | + $info_url = trailingslashit($home_url); |
|
220 | + } |
|
221 | + |
|
222 | + if($args){ |
|
223 | + $info_url = add_query_arg($args,$info_url ); |
|
224 | + } |
|
225 | + |
|
226 | + return $info_url; |
|
227 | 227 | } |
228 | 228 | |
229 | 229 | /** |
@@ -239,11 +239,11 @@ discard block |
||
239 | 239 | * @return string Returns converted string. |
240 | 240 | */ |
241 | 241 | function geodir_ucwords($string, $charset='UTF-8') { |
242 | - if (function_exists('mb_convert_case')) { |
|
243 | - return mb_convert_case($string, MB_CASE_TITLE, $charset); |
|
244 | - } else { |
|
245 | - return ucwords($string); |
|
246 | - } |
|
242 | + if (function_exists('mb_convert_case')) { |
|
243 | + return mb_convert_case($string, MB_CASE_TITLE, $charset); |
|
244 | + } else { |
|
245 | + return ucwords($string); |
|
246 | + } |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | /** |
@@ -259,11 +259,11 @@ discard block |
||
259 | 259 | * @return string Returns converted string. |
260 | 260 | */ |
261 | 261 | function geodir_strtolower($string, $charset='UTF-8') { |
262 | - if (function_exists('mb_convert_case')) { |
|
263 | - return mb_convert_case($string, MB_CASE_LOWER, $charset); |
|
264 | - } else { |
|
265 | - return strtolower($string); |
|
266 | - } |
|
262 | + if (function_exists('mb_convert_case')) { |
|
263 | + return mb_convert_case($string, MB_CASE_LOWER, $charset); |
|
264 | + } else { |
|
265 | + return strtolower($string); |
|
266 | + } |
|
267 | 267 | } |
268 | 268 | |
269 | 269 | /** |
@@ -279,11 +279,11 @@ discard block |
||
279 | 279 | * @return string Returns converted string. |
280 | 280 | */ |
281 | 281 | function geodir_strtoupper($string, $charset='UTF-8') { |
282 | - if (function_exists('mb_convert_case')) { |
|
283 | - return mb_convert_case($string, MB_CASE_UPPER, $charset); |
|
284 | - } else { |
|
285 | - return strtoupper($string); |
|
286 | - } |
|
282 | + if (function_exists('mb_convert_case')) { |
|
283 | + return mb_convert_case($string, MB_CASE_UPPER, $charset); |
|
284 | + } else { |
|
285 | + return strtoupper($string); |
|
286 | + } |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | /** |
@@ -462,11 +462,11 @@ discard block |
||
462 | 462 | * @package GeoDirectory |
463 | 463 | */ |
464 | 464 | function _gd_die_handler() { |
465 | - if ( defined( 'GD_TESTING_MODE' ) ) { |
|
466 | - return '_gd_die_handler'; |
|
467 | - } else { |
|
468 | - die(); |
|
469 | - } |
|
465 | + if ( defined( 'GD_TESTING_MODE' ) ) { |
|
466 | + return '_gd_die_handler'; |
|
467 | + } else { |
|
468 | + die(); |
|
469 | + } |
|
470 | 470 | } |
471 | 471 | |
472 | 472 | /** |
@@ -481,9 +481,9 @@ discard block |
||
481 | 481 | * @param int $status Optional. Status code. |
482 | 482 | */ |
483 | 483 | function gd_die( $message = '', $title = '', $status = 400 ) { |
484 | - add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 ); |
|
485 | - add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 ); |
|
486 | - wp_die( $message, $title, array( 'response' => $status )); |
|
484 | + add_filter( 'wp_die_ajax_handler', '_gd_die_handler', 10, 3 ); |
|
485 | + add_filter( 'wp_die_handler', '_gd_die_handler', 10, 3 ); |
|
486 | + wp_die( $message, $title, array( 'response' => $status )); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /* |
@@ -652,37 +652,37 @@ discard block |
||
652 | 652 | * @return string The formatted date. |
653 | 653 | */ |
654 | 654 | function geodir_date($date_input, $date_to, $date_from = '') { |
655 | - if (empty($date_input) || empty($date_to)) { |
|
656 | - return NULL; |
|
657 | - } |
|
655 | + if (empty($date_input) || empty($date_to)) { |
|
656 | + return NULL; |
|
657 | + } |
|
658 | 658 | |
659 | - $date = ''; |
|
660 | - if (!empty($date_from)) { |
|
661 | - $datetime = date_create_from_format($date_from, $date_input); |
|
659 | + $date = ''; |
|
660 | + if (!empty($date_from)) { |
|
661 | + $datetime = date_create_from_format($date_from, $date_input); |
|
662 | 662 | |
663 | - if (!empty($datetime)) { |
|
664 | - $date = $datetime->format($date_to); |
|
665 | - } |
|
666 | - } |
|
663 | + if (!empty($datetime)) { |
|
664 | + $date = $datetime->format($date_to); |
|
665 | + } |
|
666 | + } |
|
667 | 667 | |
668 | - if (empty($date)) { |
|
669 | - $date = strpos($date_input, '/') !== false ? str_replace('/', '-', $date_input) : $date_input; |
|
670 | - $date = date_i18n($date_to, strtotime($date)); |
|
671 | - } |
|
668 | + if (empty($date)) { |
|
669 | + $date = strpos($date_input, '/') !== false ? str_replace('/', '-', $date_input) : $date_input; |
|
670 | + $date = date_i18n($date_to, strtotime($date)); |
|
671 | + } |
|
672 | 672 | |
673 | - $date = geodir_maybe_untranslate_date($date); |
|
674 | - /** |
|
675 | - * Filter the the date format conversion. |
|
676 | - * |
|
677 | - * @since 1.6.7 |
|
678 | - * @package GeoDirectory |
|
679 | - * |
|
680 | - * @param string $date The date string. |
|
681 | - * @param string $date_input The date input. |
|
682 | - * @param string $date_to The destination date format. |
|
683 | - * @param string $date_from The source date format. |
|
684 | - */ |
|
685 | - return apply_filters('geodir_date', $date, $date_input, $date_to, $date_from); |
|
673 | + $date = geodir_maybe_untranslate_date($date); |
|
674 | + /** |
|
675 | + * Filter the the date format conversion. |
|
676 | + * |
|
677 | + * @since 1.6.7 |
|
678 | + * @package GeoDirectory |
|
679 | + * |
|
680 | + * @param string $date The date string. |
|
681 | + * @param string $date_input The date input. |
|
682 | + * @param string $date_to The destination date format. |
|
683 | + * @param string $date_from The source date format. |
|
684 | + */ |
|
685 | + return apply_filters('geodir_date', $date, $date_input, $date_to, $date_from); |
|
686 | 686 | } |
687 | 687 | |
688 | 688 | /** |
@@ -707,91 +707,91 @@ discard block |
||
707 | 707 | * @return string Trimmed string. |
708 | 708 | */ |
709 | 709 | function geodir_excerpt($text, $length = 100, $options = array()) { |
710 | - if (!(int)$length > 0) { |
|
711 | - return $text; |
|
712 | - } |
|
713 | - $default = array( |
|
714 | - 'ellipsis' => '', 'exact' => true, 'html' => true, 'trimWidth' => false, |
|
710 | + if (!(int)$length > 0) { |
|
711 | + return $text; |
|
712 | + } |
|
713 | + $default = array( |
|
714 | + 'ellipsis' => '', 'exact' => true, 'html' => true, 'trimWidth' => false, |
|
715 | 715 | ); |
716 | - if (!empty($options['html']) && function_exists('mb_internal_encoding') && strtolower(mb_internal_encoding()) === 'utf-8') { |
|
717 | - $default['ellipsis'] = ""; |
|
718 | - } |
|
719 | - $options += $default; |
|
720 | - |
|
721 | - $prefix = ''; |
|
722 | - $suffix = $options['ellipsis']; |
|
723 | - |
|
724 | - if ($options['html']) { |
|
725 | - $ellipsisLength = geodir_strlen(strip_tags($options['ellipsis']), $options); |
|
726 | - |
|
727 | - $truncateLength = 0; |
|
728 | - $totalLength = 0; |
|
729 | - $openTags = array(); |
|
730 | - $truncate = ''; |
|
731 | - |
|
732 | - preg_match_all('/(<\/?([\w+]+)[^>]*>)?([^<>]*)/', $text, $tags, PREG_SET_ORDER); |
|
733 | - foreach ($tags as $tag) { |
|
734 | - $contentLength = geodir_strlen($tag[3], $options); |
|
735 | - |
|
736 | - if ($truncate === '') { |
|
737 | - if (!preg_match('/img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param/i', $tag[2])) { |
|
738 | - if (preg_match('/<[\w]+[^>]*>/', $tag[0])) { |
|
739 | - array_unshift($openTags, $tag[2]); |
|
740 | - } elseif (preg_match('/<\/([\w]+)[^>]*>/', $tag[0], $closeTag)) { |
|
741 | - $pos = array_search($closeTag[1], $openTags); |
|
742 | - if ($pos !== false) { |
|
743 | - array_splice($openTags, $pos, 1); |
|
744 | - } |
|
745 | - } |
|
746 | - } |
|
747 | - |
|
748 | - $prefix .= $tag[1]; |
|
749 | - |
|
750 | - if ($totalLength + $contentLength + $ellipsisLength > $length) { |
|
751 | - $truncate = $tag[3]; |
|
752 | - $truncateLength = $length - $totalLength; |
|
753 | - } else { |
|
754 | - $prefix .= $tag[3]; |
|
755 | - } |
|
756 | - } |
|
757 | - |
|
758 | - $totalLength += $contentLength; |
|
759 | - if ($totalLength > $length) { |
|
760 | - break; |
|
761 | - } |
|
762 | - } |
|
763 | - |
|
764 | - if ($totalLength <= $length) { |
|
765 | - return $text; |
|
766 | - } |
|
767 | - |
|
768 | - $text = $truncate; |
|
769 | - $length = $truncateLength; |
|
770 | - |
|
771 | - foreach ($openTags as $tag) { |
|
772 | - $suffix .= '</' . $tag . '>'; |
|
773 | - } |
|
774 | - } else { |
|
775 | - if (geodir_strlen($text, $options) <= $length) { |
|
776 | - return $text; |
|
777 | - } |
|
778 | - $ellipsisLength = geodir_strlen($options['ellipsis'], $options); |
|
779 | - } |
|
780 | - |
|
781 | - $result = geodir_substr($text, 0, $length - $ellipsisLength, $options); |
|
782 | - |
|
783 | - if (!$options['exact']) { |
|
784 | - if (geodir_substr($text, $length - $ellipsisLength, 1, $options) !== ' ') { |
|
785 | - $result = geodir_remove_last_word($result); |
|
786 | - } |
|
787 | - |
|
788 | - // Do not need to count ellipsis in the cut, if result is empty. |
|
789 | - if (!strlen($result)) { |
|
790 | - $result = geodir_substr($text, 0, $length, $options); |
|
791 | - } |
|
792 | - } |
|
793 | - |
|
794 | - return $prefix . $result . $suffix; |
|
716 | + if (!empty($options['html']) && function_exists('mb_internal_encoding') && strtolower(mb_internal_encoding()) === 'utf-8') { |
|
717 | + $default['ellipsis'] = ""; |
|
718 | + } |
|
719 | + $options += $default; |
|
720 | + |
|
721 | + $prefix = ''; |
|
722 | + $suffix = $options['ellipsis']; |
|
723 | + |
|
724 | + if ($options['html']) { |
|
725 | + $ellipsisLength = geodir_strlen(strip_tags($options['ellipsis']), $options); |
|
726 | + |
|
727 | + $truncateLength = 0; |
|
728 | + $totalLength = 0; |
|
729 | + $openTags = array(); |
|
730 | + $truncate = ''; |
|
731 | + |
|
732 | + preg_match_all('/(<\/?([\w+]+)[^>]*>)?([^<>]*)/', $text, $tags, PREG_SET_ORDER); |
|
733 | + foreach ($tags as $tag) { |
|
734 | + $contentLength = geodir_strlen($tag[3], $options); |
|
735 | + |
|
736 | + if ($truncate === '') { |
|
737 | + if (!preg_match('/img|br|input|hr|area|base|basefont|col|frame|isindex|link|meta|param/i', $tag[2])) { |
|
738 | + if (preg_match('/<[\w]+[^>]*>/', $tag[0])) { |
|
739 | + array_unshift($openTags, $tag[2]); |
|
740 | + } elseif (preg_match('/<\/([\w]+)[^>]*>/', $tag[0], $closeTag)) { |
|
741 | + $pos = array_search($closeTag[1], $openTags); |
|
742 | + if ($pos !== false) { |
|
743 | + array_splice($openTags, $pos, 1); |
|
744 | + } |
|
745 | + } |
|
746 | + } |
|
747 | + |
|
748 | + $prefix .= $tag[1]; |
|
749 | + |
|
750 | + if ($totalLength + $contentLength + $ellipsisLength > $length) { |
|
751 | + $truncate = $tag[3]; |
|
752 | + $truncateLength = $length - $totalLength; |
|
753 | + } else { |
|
754 | + $prefix .= $tag[3]; |
|
755 | + } |
|
756 | + } |
|
757 | + |
|
758 | + $totalLength += $contentLength; |
|
759 | + if ($totalLength > $length) { |
|
760 | + break; |
|
761 | + } |
|
762 | + } |
|
763 | + |
|
764 | + if ($totalLength <= $length) { |
|
765 | + return $text; |
|
766 | + } |
|
767 | + |
|
768 | + $text = $truncate; |
|
769 | + $length = $truncateLength; |
|
770 | + |
|
771 | + foreach ($openTags as $tag) { |
|
772 | + $suffix .= '</' . $tag . '>'; |
|
773 | + } |
|
774 | + } else { |
|
775 | + if (geodir_strlen($text, $options) <= $length) { |
|
776 | + return $text; |
|
777 | + } |
|
778 | + $ellipsisLength = geodir_strlen($options['ellipsis'], $options); |
|
779 | + } |
|
780 | + |
|
781 | + $result = geodir_substr($text, 0, $length - $ellipsisLength, $options); |
|
782 | + |
|
783 | + if (!$options['exact']) { |
|
784 | + if (geodir_substr($text, $length - $ellipsisLength, 1, $options) !== ' ') { |
|
785 | + $result = geodir_remove_last_word($result); |
|
786 | + } |
|
787 | + |
|
788 | + // Do not need to count ellipsis in the cut, if result is empty. |
|
789 | + if (!strlen($result)) { |
|
790 | + $result = geodir_substr($text, 0, $length, $options); |
|
791 | + } |
|
792 | + } |
|
793 | + |
|
794 | + return $prefix . $result . $suffix; |
|
795 | 795 | } |
796 | 796 | |
797 | 797 | /** |
@@ -815,28 +815,28 @@ discard block |
||
815 | 815 | * @return int |
816 | 816 | */ |
817 | 817 | function geodir_strlen($text, array $options) { |
818 | - if (empty($options['trimWidth'])) { |
|
819 | - $strlen = 'geodir_utf8_strlen'; |
|
820 | - } else { |
|
821 | - $strlen = 'geodir_utf8_strwidth'; |
|
822 | - } |
|
823 | - |
|
824 | - if (empty($options['html'])) { |
|
825 | - return $strlen($text); |
|
826 | - } |
|
827 | - |
|
828 | - $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i'; |
|
829 | - $replace = preg_replace_callback( |
|
830 | - $pattern, |
|
831 | - function ($match) use ($strlen) { |
|
832 | - $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8'); |
|
833 | - |
|
834 | - return str_repeat(' ', $strlen($utf8, 'UTF-8')); |
|
835 | - }, |
|
836 | - $text |
|
837 | - ); |
|
838 | - |
|
839 | - return $strlen($replace); |
|
818 | + if (empty($options['trimWidth'])) { |
|
819 | + $strlen = 'geodir_utf8_strlen'; |
|
820 | + } else { |
|
821 | + $strlen = 'geodir_utf8_strwidth'; |
|
822 | + } |
|
823 | + |
|
824 | + if (empty($options['html'])) { |
|
825 | + return $strlen($text); |
|
826 | + } |
|
827 | + |
|
828 | + $pattern = '/&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};/i'; |
|
829 | + $replace = preg_replace_callback( |
|
830 | + $pattern, |
|
831 | + function ($match) use ($strlen) { |
|
832 | + $utf8 = html_entity_decode($match[0], ENT_HTML5 | ENT_QUOTES, 'UTF-8'); |
|
833 | + |
|
834 | + return str_repeat(' ', $strlen($utf8, 'UTF-8')); |
|
835 | + }, |
|
836 | + $text |
|
837 | + ); |
|
838 | + |
|
839 | + return $strlen($replace); |
|
840 | 840 | } |
841 | 841 | |
842 | 842 | /** |
@@ -857,80 +857,80 @@ discard block |
||
857 | 857 | * @return string |
858 | 858 | */ |
859 | 859 | function geodir_substr($text, $start, $length, array $options) { |
860 | - if (empty($options['trimWidth'])) { |
|
861 | - $substr = 'geodir_utf8_substr'; |
|
862 | - } else { |
|
863 | - $substr = 'geodir_utf8_strimwidth'; |
|
864 | - } |
|
865 | - |
|
866 | - $maxPosition = geodir_strlen($text, array('trimWidth' => false) + $options); |
|
867 | - if ($start < 0) { |
|
868 | - $start += $maxPosition; |
|
869 | - if ($start < 0) { |
|
870 | - $start = 0; |
|
871 | - } |
|
872 | - } |
|
873 | - if ($start >= $maxPosition) { |
|
874 | - return ''; |
|
875 | - } |
|
876 | - |
|
877 | - if ($length === null) { |
|
878 | - $length = geodir_strlen($text, $options); |
|
879 | - } |
|
880 | - |
|
881 | - if ($length < 0) { |
|
882 | - $text = geodir_substr($text, $start, null, $options); |
|
883 | - $start = 0; |
|
884 | - $length += geodir_strlen($text, $options); |
|
885 | - } |
|
886 | - |
|
887 | - if ($length <= 0) { |
|
888 | - return ''; |
|
889 | - } |
|
890 | - |
|
891 | - if (empty($options['html'])) { |
|
892 | - return (string)$substr($text, $start, $length); |
|
893 | - } |
|
894 | - |
|
895 | - $totalOffset = 0; |
|
896 | - $totalLength = 0; |
|
897 | - $result = ''; |
|
898 | - |
|
899 | - $pattern = '/(&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};)/i'; |
|
900 | - $parts = preg_split($pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); |
|
901 | - foreach ($parts as $part) { |
|
902 | - $offset = 0; |
|
903 | - |
|
904 | - if ($totalOffset < $start) { |
|
905 | - $len = geodir_strlen($part, array('trimWidth' => false) + $options); |
|
906 | - if ($totalOffset + $len <= $start) { |
|
907 | - $totalOffset += $len; |
|
908 | - continue; |
|
909 | - } |
|
910 | - |
|
911 | - $offset = $start - $totalOffset; |
|
912 | - $totalOffset = $start; |
|
913 | - } |
|
914 | - |
|
915 | - $len = geodir_strlen($part, $options); |
|
916 | - if ($offset !== 0 || $totalLength + $len > $length) { |
|
917 | - if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) { |
|
918 | - // Entities cannot be passed substr. |
|
919 | - continue; |
|
920 | - } |
|
921 | - |
|
922 | - $part = $substr($part, $offset, $length - $totalLength); |
|
923 | - $len = geodir_strlen($part, $options); |
|
924 | - } |
|
925 | - |
|
926 | - $result .= $part; |
|
927 | - $totalLength += $len; |
|
928 | - if ($totalLength >= $length) { |
|
929 | - break; |
|
930 | - } |
|
931 | - } |
|
932 | - |
|
933 | - return $result; |
|
860 | + if (empty($options['trimWidth'])) { |
|
861 | + $substr = 'geodir_utf8_substr'; |
|
862 | + } else { |
|
863 | + $substr = 'geodir_utf8_strimwidth'; |
|
864 | + } |
|
865 | + |
|
866 | + $maxPosition = geodir_strlen($text, array('trimWidth' => false) + $options); |
|
867 | + if ($start < 0) { |
|
868 | + $start += $maxPosition; |
|
869 | + if ($start < 0) { |
|
870 | + $start = 0; |
|
871 | + } |
|
872 | + } |
|
873 | + if ($start >= $maxPosition) { |
|
874 | + return ''; |
|
875 | + } |
|
876 | + |
|
877 | + if ($length === null) { |
|
878 | + $length = geodir_strlen($text, $options); |
|
879 | + } |
|
880 | + |
|
881 | + if ($length < 0) { |
|
882 | + $text = geodir_substr($text, $start, null, $options); |
|
883 | + $start = 0; |
|
884 | + $length += geodir_strlen($text, $options); |
|
885 | + } |
|
886 | + |
|
887 | + if ($length <= 0) { |
|
888 | + return ''; |
|
889 | + } |
|
890 | + |
|
891 | + if (empty($options['html'])) { |
|
892 | + return (string)$substr($text, $start, $length); |
|
893 | + } |
|
894 | + |
|
895 | + $totalOffset = 0; |
|
896 | + $totalLength = 0; |
|
897 | + $result = ''; |
|
898 | + |
|
899 | + $pattern = '/(&[0-9a-z]{2,8};|&#[0-9]{1,7};|&#x[0-9a-f]{1,6};)/i'; |
|
900 | + $parts = preg_split($pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE | PREG_SPLIT_NO_EMPTY); |
|
901 | + foreach ($parts as $part) { |
|
902 | + $offset = 0; |
|
903 | + |
|
904 | + if ($totalOffset < $start) { |
|
905 | + $len = geodir_strlen($part, array('trimWidth' => false) + $options); |
|
906 | + if ($totalOffset + $len <= $start) { |
|
907 | + $totalOffset += $len; |
|
908 | + continue; |
|
909 | + } |
|
910 | + |
|
911 | + $offset = $start - $totalOffset; |
|
912 | + $totalOffset = $start; |
|
913 | + } |
|
914 | + |
|
915 | + $len = geodir_strlen($part, $options); |
|
916 | + if ($offset !== 0 || $totalLength + $len > $length) { |
|
917 | + if (strpos($part, '&') === 0 && preg_match($pattern, $part) && $part !== html_entity_decode($part, ENT_HTML5 | ENT_QUOTES, 'UTF-8') ) { |
|
918 | + // Entities cannot be passed substr. |
|
919 | + continue; |
|
920 | + } |
|
921 | + |
|
922 | + $part = $substr($part, $offset, $length - $totalLength); |
|
923 | + $len = geodir_strlen($part, $options); |
|
924 | + } |
|
925 | + |
|
926 | + $result .= $part; |
|
927 | + $totalLength += $len; |
|
928 | + if ($totalLength >= $length) { |
|
929 | + break; |
|
930 | + } |
|
931 | + } |
|
932 | + |
|
933 | + return $result; |
|
934 | 934 | } |
935 | 935 | |
936 | 936 | /** |
@@ -943,21 +943,21 @@ discard block |
||
943 | 943 | * @return string |
944 | 944 | */ |
945 | 945 | function geodir_remove_last_word($text) { |
946 | - $spacepos = geodir_utf8_strrpos($text, ' '); |
|
946 | + $spacepos = geodir_utf8_strrpos($text, ' '); |
|
947 | 947 | |
948 | - if ($spacepos !== false) { |
|
949 | - $lastWord = geodir_utf8_strrpos($text, $spacepos); |
|
948 | + if ($spacepos !== false) { |
|
949 | + $lastWord = geodir_utf8_strrpos($text, $spacepos); |
|
950 | 950 | |
951 | - // Some languages are written without word separation. |
|
952 | - // We recognize a string as a word if it does not contain any full-width characters. |
|
953 | - if (geodir_utf8_strwidth($lastWord) === geodir_utf8_strlen($lastWord)) { |
|
954 | - $text = geodir_utf8_substr($text, 0, $spacepos); |
|
955 | - } |
|
951 | + // Some languages are written without word separation. |
|
952 | + // We recognize a string as a word if it does not contain any full-width characters. |
|
953 | + if (geodir_utf8_strwidth($lastWord) === geodir_utf8_strlen($lastWord)) { |
|
954 | + $text = geodir_utf8_substr($text, 0, $spacepos); |
|
955 | + } |
|
956 | 956 | |
957 | - return $text; |
|
958 | - } |
|
957 | + return $text; |
|
958 | + } |
|
959 | 959 | |
960 | - return ''; |
|
960 | + return ''; |
|
961 | 961 | } |
962 | 962 | |
963 | 963 | function geodir_tool_restore_cpt_from_taxonomies(){ |
@@ -1075,11 +1075,11 @@ discard block |
||
1075 | 1075 | * @return string |
1076 | 1076 | */ |
1077 | 1077 | function geodir_utf8_strimwidth( $str, $start, $width, $trimmaker = '', $encoding = 'UTF-8' ) { |
1078 | - if ( function_exists( 'mb_strimwidth' ) ) { |
|
1079 | - return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
1080 | - } |
|
1078 | + if ( function_exists( 'mb_strimwidth' ) ) { |
|
1079 | + return mb_strimwidth( $str, $start, $width, $trimmaker, $encoding ); |
|
1080 | + } |
|
1081 | 1081 | |
1082 | - return geodir_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
1082 | + return geodir_utf8_substr( $str, $start, $width, $encoding ) . $trimmaker; |
|
1083 | 1083 | } |
1084 | 1084 | |
1085 | 1085 | /** |
@@ -1093,11 +1093,11 @@ discard block |
||
1093 | 1093 | * @return int Returns the number of characters in string. |
1094 | 1094 | */ |
1095 | 1095 | function geodir_utf8_strlen( $str, $encoding = 'UTF-8' ) { |
1096 | - if ( function_exists( 'mb_strlen' ) ) { |
|
1097 | - return mb_strlen( $str, $encoding ); |
|
1098 | - } |
|
1096 | + if ( function_exists( 'mb_strlen' ) ) { |
|
1097 | + return mb_strlen( $str, $encoding ); |
|
1098 | + } |
|
1099 | 1099 | |
1100 | - return strlen( $str ); |
|
1100 | + return strlen( $str ); |
|
1101 | 1101 | } |
1102 | 1102 | |
1103 | 1103 | /** |
@@ -1113,11 +1113,11 @@ discard block |
||
1113 | 1113 | * @return int Returns the position of the first occurrence of search in the string. |
1114 | 1114 | */ |
1115 | 1115 | function geodir_utf8_strpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
1116 | - if ( function_exists( 'mb_strpos' ) ) { |
|
1117 | - return mb_strpos( $str, $find, $offset, $encoding ); |
|
1118 | - } |
|
1116 | + if ( function_exists( 'mb_strpos' ) ) { |
|
1117 | + return mb_strpos( $str, $find, $offset, $encoding ); |
|
1118 | + } |
|
1119 | 1119 | |
1120 | - return strpos( $str, $find, $offset ); |
|
1120 | + return strpos( $str, $find, $offset ); |
|
1121 | 1121 | } |
1122 | 1122 | |
1123 | 1123 | /** |
@@ -1133,11 +1133,11 @@ discard block |
||
1133 | 1133 | * @return int Returns the position of the last occurrence of search. |
1134 | 1134 | */ |
1135 | 1135 | function geodir_utf8_strrpos( $str, $find, $offset = 0, $encoding = 'UTF-8' ) { |
1136 | - if ( function_exists( 'mb_strrpos' ) ) { |
|
1137 | - return mb_strrpos( $str, $find, $offset, $encoding ); |
|
1138 | - } |
|
1136 | + if ( function_exists( 'mb_strrpos' ) ) { |
|
1137 | + return mb_strrpos( $str, $find, $offset, $encoding ); |
|
1138 | + } |
|
1139 | 1139 | |
1140 | - return strrpos( $str, $find, $offset ); |
|
1140 | + return strrpos( $str, $find, $offset ); |
|
1141 | 1141 | } |
1142 | 1142 | |
1143 | 1143 | /** |
@@ -1154,15 +1154,15 @@ discard block |
||
1154 | 1154 | * @return string |
1155 | 1155 | */ |
1156 | 1156 | function geodir_utf8_substr( $str, $start, $length = null, $encoding = 'UTF-8' ) { |
1157 | - if ( function_exists( 'mb_substr' ) ) { |
|
1158 | - if ( $length === null ) { |
|
1159 | - return mb_substr( $str, $start, geodir_utf8_strlen( $str, $encoding ), $encoding ); |
|
1160 | - } else { |
|
1161 | - return mb_substr( $str, $start, $length, $encoding ); |
|
1162 | - } |
|
1163 | - } |
|
1157 | + if ( function_exists( 'mb_substr' ) ) { |
|
1158 | + if ( $length === null ) { |
|
1159 | + return mb_substr( $str, $start, geodir_utf8_strlen( $str, $encoding ), $encoding ); |
|
1160 | + } else { |
|
1161 | + return mb_substr( $str, $start, $length, $encoding ); |
|
1162 | + } |
|
1163 | + } |
|
1164 | 1164 | |
1165 | - return substr( $str, $start, $length ); |
|
1165 | + return substr( $str, $start, $length ); |
|
1166 | 1166 | } |
1167 | 1167 | |
1168 | 1168 | /** |
@@ -1176,11 +1176,11 @@ discard block |
||
1176 | 1176 | * @return string The width of string. |
1177 | 1177 | */ |
1178 | 1178 | function geodir_utf8_strwidth( $str, $encoding = 'UTF-8' ) { |
1179 | - if ( function_exists( 'mb_strwidth' ) ) { |
|
1180 | - return mb_strwidth( $str, $encoding ); |
|
1181 | - } |
|
1179 | + if ( function_exists( 'mb_strwidth' ) ) { |
|
1180 | + return mb_strwidth( $str, $encoding ); |
|
1181 | + } |
|
1182 | 1182 | |
1183 | - return geodir_utf8_strlen( $str, $encoding ); |
|
1183 | + return geodir_utf8_strlen( $str, $encoding ); |
|
1184 | 1184 | ======= |
1185 | 1185 | |
1186 | 1186 | function geodir_total_listings_count($post_type = false) |