| @@ -7,7 +7,7 @@ discard block | ||
| 7 | 7 | */ | 
| 8 | 8 | // If this file is called directly, abort. | 
| 9 | 9 |  if (!defined('WPINC')) { | 
| 10 | - die; | |
| 10 | + die; | |
| 11 | 11 | } | 
| 12 | 12 |  require_once('geodirectory-functions/shortcode_functions.php'); | 
| 13 | 13 | |
| @@ -32,43 +32,43 @@ discard block | ||
| 32 | 32 | */ | 
| 33 | 33 | function geodir_sc_add_listing($atts) | 
| 34 | 34 |  { | 
| 35 | - ob_start(); | |
| 36 | - $defaults = array( | |
| 37 | - 'pid' => '', | |
| 38 | - 'listing_type' => 'gd_place', | |
| 39 | -        'login_msg' => __('You must login to post.', 'geodirectory'), | |
| 40 | - 'show_login' => false, | |
| 41 | - ); | |
| 42 | - $params = shortcode_atts($defaults, $atts); | |
| 43 | - | |
| 44 | -    foreach ($params as $key => $value) { | |
| 45 | - $_REQUEST[$key] = $value; | |
| 46 | - } | |
| 47 | - | |
| 48 | - $user_id = get_current_user_id(); | |
| 49 | -    if (!$user_id) { | |
| 50 | - echo $params['login_msg']; | |
| 51 | -        if ($params['show_login']) { | |
| 52 | - echo "<br />"; | |
| 53 | - $defaults = array( | |
| 54 | - 'before_widget' => '', | |
| 55 | - 'after_widget' => '', | |
| 56 | - 'before_title' => '', | |
| 57 | - 'after_title' => '', | |
| 58 | - ); | |
| 59 | - | |
| 60 | - geodir_loginwidget_output($defaults, $defaults); | |
| 61 | - } | |
| 62 | - | |
| 63 | - | |
| 64 | -    } else { | |
| 65 | - // Add listing page will be used if shortcode is detected in page content, no need to call it here | |
| 66 | - } | |
| 67 | - $output = ob_get_contents(); | |
| 68 | - | |
| 69 | - ob_end_clean(); | |
| 70 | - | |
| 71 | - return $output; | |
| 35 | + ob_start(); | |
| 36 | + $defaults = array( | |
| 37 | + 'pid' => '', | |
| 38 | + 'listing_type' => 'gd_place', | |
| 39 | +		'login_msg' => __('You must login to post.', 'geodirectory'), | |
| 40 | + 'show_login' => false, | |
| 41 | + ); | |
| 42 | + $params = shortcode_atts($defaults, $atts); | |
| 43 | + | |
| 44 | +	foreach ($params as $key => $value) { | |
| 45 | + $_REQUEST[$key] = $value; | |
| 46 | + } | |
| 47 | + | |
| 48 | + $user_id = get_current_user_id(); | |
| 49 | +	if (!$user_id) { | |
| 50 | + echo $params['login_msg']; | |
| 51 | +		if ($params['show_login']) { | |
| 52 | + echo "<br />"; | |
| 53 | + $defaults = array( | |
| 54 | + 'before_widget' => '', | |
| 55 | + 'after_widget' => '', | |
| 56 | + 'before_title' => '', | |
| 57 | + 'after_title' => '', | |
| 58 | + ); | |
| 59 | + | |
| 60 | + geodir_loginwidget_output($defaults, $defaults); | |
| 61 | + } | |
| 62 | + | |
| 63 | + | |
| 64 | +	} else { | |
| 65 | + // Add listing page will be used if shortcode is detected in page content, no need to call it here | |
| 66 | + } | |
| 67 | + $output = ob_get_contents(); | |
| 68 | + | |
| 69 | + ob_end_clean(); | |
| 70 | + | |
| 71 | + return $output; | |
| 72 | 72 | } | 
| 73 | 73 | |
| 74 | 74 | /** | 
| @@ -96,136 +96,136 @@ discard block | ||
| 96 | 96 | */ | 
| 97 | 97 | function geodir_sc_home_map($atts) | 
| 98 | 98 |  { | 
| 99 | - ob_start(); | |
| 100 | - $defaults = array( | |
| 101 | - 'width' => '960', | |
| 102 | - 'height' => '425', | |
| 103 | - 'maptype' => 'ROADMAP', | |
| 104 | - 'zoom' => '13', | |
| 105 | - 'autozoom' => '', | |
| 106 | - 'child_collapse' => '0', | |
| 107 | - 'scrollwheel' => '0', | |
| 99 | + ob_start(); | |
| 100 | + $defaults = array( | |
| 101 | + 'width' => '960', | |
| 102 | + 'height' => '425', | |
| 103 | + 'maptype' => 'ROADMAP', | |
| 104 | + 'zoom' => '13', | |
| 105 | + 'autozoom' => '', | |
| 106 | + 'child_collapse' => '0', | |
| 107 | + 'scrollwheel' => '0', | |
| 108 | 108 | 'marker_cluster' => false, | 
| 109 | - 'latitude' => '', | |
| 110 | - 'longitude' => '' | |
| 111 | - ); | |
| 112 | - | |
| 113 | - $params = shortcode_atts($defaults, $atts); | |
| 114 | - | |
| 115 | - $params = gdsc_validate_map_args($params); | |
| 116 | - | |
| 117 | - $map_args = array( | |
| 118 | - 'map_canvas_name' => 'gd_home_map', | |
| 119 | - 'latitude' => $params['latitude'], | |
| 120 | - 'longitude' => $params['longitude'], | |
| 121 | - | |
| 122 | - /** | |
| 123 | - * Filter the widget width of the map on home/listings page. | |
| 124 | - * | |
| 125 | - * @since 1.0.0 | |
| 126 | - * @param mixed(string|int|float) $params['width'] The map width. | |
| 127 | - */ | |
| 128 | -        'width' => apply_filters('widget_width', $params['width']), | |
| 129 | - /** | |
| 130 | - * Filter the widget height of the map on home/listings page. | |
| 131 | - * | |
| 132 | - * @since 1.0.0 | |
| 133 | - * @param mixed(string|int|float) $params['height'] The map height. | |
| 134 | - */ | |
| 135 | -        'height' => apply_filters('widget_heigh', $params['height']), | |
| 136 | - /** | |
| 137 | - * Filter the widget maptype of the map on home/listings page. | |
| 138 | - * | |
| 139 | - * @since 1.0.0 | |
| 109 | + 'latitude' => '', | |
| 110 | + 'longitude' => '' | |
| 111 | + ); | |
| 112 | + | |
| 113 | + $params = shortcode_atts($defaults, $atts); | |
| 114 | + | |
| 115 | + $params = gdsc_validate_map_args($params); | |
| 116 | + | |
| 117 | + $map_args = array( | |
| 118 | + 'map_canvas_name' => 'gd_home_map', | |
| 119 | + 'latitude' => $params['latitude'], | |
| 120 | + 'longitude' => $params['longitude'], | |
| 121 | + | |
| 122 | + /** | |
| 123 | + * Filter the widget width of the map on home/listings page. | |
| 124 | + * | |
| 125 | + * @since 1.0.0 | |
| 126 | + * @param mixed(string|int|float) $params['width'] The map width. | |
| 127 | + */ | |
| 128 | +		'width' => apply_filters('widget_width', $params['width']), | |
| 129 | + /** | |
| 130 | + * Filter the widget height of the map on home/listings page. | |
| 131 | + * | |
| 132 | + * @since 1.0.0 | |
| 133 | + * @param mixed(string|int|float) $params['height'] The map height. | |
| 134 | + */ | |
| 135 | +		'height' => apply_filters('widget_heigh', $params['height']), | |
| 136 | + /** | |
| 137 | + * Filter the widget maptype of the map on home/listings page. | |
| 138 | + * | |
| 139 | + * @since 1.0.0 | |
| 140 | 140 | * @since 1.5.2 Added TERRAIN map type. | 
| 141 | - * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN. | |
| 142 | - */ | |
| 143 | -        'maptype' => apply_filters('widget_maptype', $params['maptype']), | |
| 144 | - /** | |
| 145 | - * Filter the widget scrollwheel value of the map on home/listings page. | |
| 146 | - * | |
| 147 | - * Should the scrollwheel zoom the map or not. | |
| 148 | - * | |
| 149 | - * @since 1.0.0 | |
| 150 | - * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not. | |
| 151 | - */ | |
| 152 | -        'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']), | |
| 153 | - /** | |
| 154 | - * Filter the widget zoom level of the map on home/listings page. | |
| 155 | - * | |
| 156 | - * @since 1.0.0 | |
| 157 | - * @param int $params['zoom'] The zoom level of the map. Between 1-19. | |
| 158 | - */ | |
| 159 | -        'zoom' => apply_filters('widget_zoom', $params['zoom']), | |
| 160 | - /** | |
| 161 | - * Filter the widget auto zoom value of the map on home/listings page. | |
| 162 | - * | |
| 163 | - * If the map should autozoom to fit the markers shown. | |
| 164 | - * | |
| 165 | - * @since 1.0.0 | |
| 166 | - * @param bool $params['autozoom'] True if the map should autozoom, false if not. | |
| 167 | - */ | |
| 168 | -        'autozoom' => apply_filters('widget_autozoom', $params['autozoom']), | |
| 169 | - /** | |
| 170 | - * Filter the widget child_collapse value of the map on home/listings page. | |
| 171 | - * | |
| 172 | - * If the map should auto collapse the child categories if the category bar is present. | |
| 173 | - * | |
| 174 | - * @since 1.0.0 | |
| 175 | - * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not. | |
| 176 | - */ | |
| 177 | -        'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']), | |
| 178 | - 'enable_cat_filters' => true, | |
| 179 | - 'enable_text_search' => true, | |
| 180 | - 'enable_post_type_filters' => true, | |
| 181 | - /** | |
| 182 | - * Filter the widget enable_location_filters value of the map on home/listings page. | |
| 183 | - * | |
| 184 | - * This is used when the location addon is used. | |
| 185 | - * | |
| 186 | - * @since 1.0.0 | |
| 187 | - * @param bool $val True if location filters should be used, false if not. | |
| 188 | - */ | |
| 189 | -        'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false), | |
| 190 | - 'enable_jason_on_load' => false, | |
| 191 | - 'enable_marker_cluster' => false, | |
| 192 | - 'enable_map_resize_button' => true, | |
| 193 | - 'map_class_name' => 'geodir-map-home-page', | |
| 194 | - 'is_geodir_home_map_widget' => true, | |
| 195 | - ); | |
| 141 | + * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN. | |
| 142 | + */ | |
| 143 | +		'maptype' => apply_filters('widget_maptype', $params['maptype']), | |
| 144 | + /** | |
| 145 | + * Filter the widget scrollwheel value of the map on home/listings page. | |
| 146 | + * | |
| 147 | + * Should the scrollwheel zoom the map or not. | |
| 148 | + * | |
| 149 | + * @since 1.0.0 | |
| 150 | + * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not. | |
| 151 | + */ | |
| 152 | +		'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']), | |
| 153 | + /** | |
| 154 | + * Filter the widget zoom level of the map on home/listings page. | |
| 155 | + * | |
| 156 | + * @since 1.0.0 | |
| 157 | + * @param int $params['zoom'] The zoom level of the map. Between 1-19. | |
| 158 | + */ | |
| 159 | +		'zoom' => apply_filters('widget_zoom', $params['zoom']), | |
| 160 | + /** | |
| 161 | + * Filter the widget auto zoom value of the map on home/listings page. | |
| 162 | + * | |
| 163 | + * If the map should autozoom to fit the markers shown. | |
| 164 | + * | |
| 165 | + * @since 1.0.0 | |
| 166 | + * @param bool $params['autozoom'] True if the map should autozoom, false if not. | |
| 167 | + */ | |
| 168 | +		'autozoom' => apply_filters('widget_autozoom', $params['autozoom']), | |
| 169 | + /** | |
| 170 | + * Filter the widget child_collapse value of the map on home/listings page. | |
| 171 | + * | |
| 172 | + * If the map should auto collapse the child categories if the category bar is present. | |
| 173 | + * | |
| 174 | + * @since 1.0.0 | |
| 175 | + * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not. | |
| 176 | + */ | |
| 177 | +		'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']), | |
| 178 | + 'enable_cat_filters' => true, | |
| 179 | + 'enable_text_search' => true, | |
| 180 | + 'enable_post_type_filters' => true, | |
| 181 | + /** | |
| 182 | + * Filter the widget enable_location_filters value of the map on home/listings page. | |
| 183 | + * | |
| 184 | + * This is used when the location addon is used. | |
| 185 | + * | |
| 186 | + * @since 1.0.0 | |
| 187 | + * @param bool $val True if location filters should be used, false if not. | |
| 188 | + */ | |
| 189 | +		'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false), | |
| 190 | + 'enable_jason_on_load' => false, | |
| 191 | + 'enable_marker_cluster' => false, | |
| 192 | + 'enable_map_resize_button' => true, | |
| 193 | + 'map_class_name' => 'geodir-map-home-page', | |
| 194 | + 'is_geodir_home_map_widget' => true, | |
| 195 | + ); | |
| 196 | 196 | |
| 197 | 197 | // Add marker cluster | 
| 198 | 198 |  	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) { | 
| 199 | - $map_args['enable_marker_cluster'] = true; | |
| 200 | -        if(get_option('geodir_marker_cluster_type')) { | |
| 201 | -            if ($map_args['autozoom']) { | |
| 202 | - $map_args['enable_marker_cluster_no_reposition'] = false; | |
| 203 | -            } else { | |
| 204 | - $map_args['enable_marker_cluster_no_reposition'] = true; | |
| 205 | - } | |
| 199 | + $map_args['enable_marker_cluster'] = true; | |
| 200 | +		if(get_option('geodir_marker_cluster_type')) { | |
| 201 | +			if ($map_args['autozoom']) { | |
| 202 | + $map_args['enable_marker_cluster_no_reposition'] = false; | |
| 203 | +			} else { | |
| 204 | + $map_args['enable_marker_cluster_no_reposition'] = true; | |
| 205 | + } | |
| 206 | 206 | |
| 207 | - $map_args['enable_marker_cluster_server'] = true ; | |
| 207 | + $map_args['enable_marker_cluster_server'] = true ; | |
| 208 | 208 | |
| 209 | - } | |
| 209 | + } | |
| 210 | 210 |  	} else { | 
| 211 | 211 | $map_args['enable_marker_cluster'] = false; | 
| 212 | 212 | } | 
| 213 | 213 | |
| 214 | - // if lat and long set in shortcode, hack it so the map is not repositioned | |
| 215 | -    if(!empty($params['latitude']) && !empty($params['longitude']) ){ | |
| 216 | - $map_args['enable_marker_cluster_no_reposition'] = true; | |
| 217 | - } | |
| 214 | + // if lat and long set in shortcode, hack it so the map is not repositioned | |
| 215 | +	if(!empty($params['latitude']) && !empty($params['longitude']) ){ | |
| 216 | + $map_args['enable_marker_cluster_no_reposition'] = true; | |
| 217 | + } | |
| 218 | 218 | |
| 219 | 219 | |
| 220 | - geodir_draw_map($map_args); | |
| 220 | + geodir_draw_map($map_args); | |
| 221 | 221 | |
| 222 | -    add_action('wp_footer', 'geodir_home_map_add_script', 100); | |
| 222 | +	add_action('wp_footer', 'geodir_home_map_add_script', 100); | |
| 223 | 223 | |
| 224 | - $output = ob_get_contents(); | |
| 224 | + $output = ob_get_contents(); | |
| 225 | 225 | |
| 226 | - ob_end_clean(); | |
| 226 | + ob_end_clean(); | |
| 227 | 227 | |
| 228 | - return $output; | |
| 228 | + return $output; | |
| 229 | 229 | } | 
| 230 | 230 |  add_shortcode('gd_homepage_map', 'geodir_sc_home_map'); | 
| 231 | 231 | |
| @@ -259,77 +259,77 @@ discard block | ||
| 259 | 259 | */ | 
| 260 | 260 | function geodir_sc_listing_map($atts) | 
| 261 | 261 |  { | 
| 262 | - ob_start(); | |
| 263 | -    add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array | |
| 264 | - | |
| 265 | -    add_action('the_post', 'create_list_jsondata'); // Add marker in json array | |
| 266 | - | |
| 267 | -    add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers | |
| 268 | - | |
| 269 | - $defaults = array( | |
| 270 | - 'width' => '294', | |
| 271 | - 'height' => '370', | |
| 272 | - 'zoom' => '13', | |
| 273 | - 'autozoom' => '', | |
| 274 | - 'sticky' => '', | |
| 275 | - 'showall' => '0', | |
| 276 | - 'scrollwheel' => '0', | |
| 277 | - 'maptype' => 'ROADMAP', | |
| 278 | - 'child_collapse' => 0, | |
| 262 | + ob_start(); | |
| 263 | +	add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array | |
| 264 | + | |
| 265 | +	add_action('the_post', 'create_list_jsondata'); // Add marker in json array | |
| 266 | + | |
| 267 | +	add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers | |
| 268 | + | |
| 269 | + $defaults = array( | |
| 270 | + 'width' => '294', | |
| 271 | + 'height' => '370', | |
| 272 | + 'zoom' => '13', | |
| 273 | + 'autozoom' => '', | |
| 274 | + 'sticky' => '', | |
| 275 | + 'showall' => '0', | |
| 276 | + 'scrollwheel' => '0', | |
| 277 | + 'maptype' => 'ROADMAP', | |
| 278 | + 'child_collapse' => 0, | |
| 279 | 279 | 'marker_cluster' => false | 
| 280 | - ); | |
| 281 | - | |
| 282 | - $params = shortcode_atts($defaults, $atts); | |
| 283 | - | |
| 284 | - $params = gdsc_validate_map_args($params); | |
| 285 | - | |
| 286 | - $map_args = array( | |
| 287 | - 'map_canvas_name' => 'gd_listing_map', | |
| 288 | - 'width' => $params['width'], | |
| 289 | - 'height' => $params['height'], | |
| 290 | - 'zoom' => $params['zoom'], | |
| 291 | - 'autozoom' => $params['autozoom'], | |
| 292 | - 'sticky' => $params['sticky'], | |
| 293 | - 'showall' => $params['showall'], | |
| 294 | - 'scrollwheel' => $params['scrollwheel'], | |
| 295 | - 'child_collapse' => 0, | |
| 296 | - 'enable_cat_filters' => false, | |
| 297 | - 'enable_text_search' => false, | |
| 298 | - 'enable_post_type_filters' => false, | |
| 299 | - 'enable_location_filters' => false, | |
| 300 | - 'enable_jason_on_load' => true, | |
| 301 | - ); | |
| 302 | - | |
| 303 | -    if (is_single()) { | |
| 304 | - | |
| 305 | - global $post; | |
| 306 | - $map_default_lat = $address_latitude = $post->post_latitude; | |
| 307 | - $map_default_lng = $address_longitude = $post->post_longitude; | |
| 308 | - $mapview = $post->post_mapview; | |
| 309 | - $map_args['zoom'] = $post->post_mapzoom; | |
| 310 | - $map_args['map_class_name'] = 'geodir-map-listing-page-single'; | |
| 311 | - | |
| 312 | -    } else { | |
| 313 | - $default_location = geodir_get_default_location(); | |
| 314 | - | |
| 315 | - $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; | |
| 316 | - $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; | |
| 317 | - $map_args['map_class_name'] = 'geodir-map-listing-page'; | |
| 318 | - } | |
| 319 | - | |
| 320 | -    if (empty($mapview)) { | |
| 321 | - $mapview = 'ROADMAP'; | |
| 322 | - } | |
| 323 | - | |
| 324 | - // Set default map options | |
| 325 | - $map_args['ajax_url'] = geodir_get_ajax_url(); | |
| 326 | - $map_args['latitude'] = $map_default_lat; | |
| 327 | - $map_args['longitude'] = $map_default_lng; | |
| 328 | - $map_args['streetViewControl'] = true; | |
| 329 | - $map_args['maptype'] = $mapview; | |
| 330 | - $map_args['showPreview'] = '0'; | |
| 331 | - $map_args['maxZoom'] = 21; | |
| 332 | - $map_args['bubble_size'] = 'small'; | |
| 280 | + ); | |
| 281 | + | |
| 282 | + $params = shortcode_atts($defaults, $atts); | |
| 283 | + | |
| 284 | + $params = gdsc_validate_map_args($params); | |
| 285 | + | |
| 286 | + $map_args = array( | |
| 287 | + 'map_canvas_name' => 'gd_listing_map', | |
| 288 | + 'width' => $params['width'], | |
| 289 | + 'height' => $params['height'], | |
| 290 | + 'zoom' => $params['zoom'], | |
| 291 | + 'autozoom' => $params['autozoom'], | |
| 292 | + 'sticky' => $params['sticky'], | |
| 293 | + 'showall' => $params['showall'], | |
| 294 | + 'scrollwheel' => $params['scrollwheel'], | |
| 295 | + 'child_collapse' => 0, | |
| 296 | + 'enable_cat_filters' => false, | |
| 297 | + 'enable_text_search' => false, | |
| 298 | + 'enable_post_type_filters' => false, | |
| 299 | + 'enable_location_filters' => false, | |
| 300 | + 'enable_jason_on_load' => true, | |
| 301 | + ); | |
| 302 | + | |
| 303 | +	if (is_single()) { | |
| 304 | + | |
| 305 | + global $post; | |
| 306 | + $map_default_lat = $address_latitude = $post->post_latitude; | |
| 307 | + $map_default_lng = $address_longitude = $post->post_longitude; | |
| 308 | + $mapview = $post->post_mapview; | |
| 309 | + $map_args['zoom'] = $post->post_mapzoom; | |
| 310 | + $map_args['map_class_name'] = 'geodir-map-listing-page-single'; | |
| 311 | + | |
| 312 | +	} else { | |
| 313 | + $default_location = geodir_get_default_location(); | |
| 314 | + | |
| 315 | + $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; | |
| 316 | + $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; | |
| 317 | + $map_args['map_class_name'] = 'geodir-map-listing-page'; | |
| 318 | + } | |
| 319 | + | |
| 320 | +	if (empty($mapview)) { | |
| 321 | + $mapview = 'ROADMAP'; | |
| 322 | + } | |
| 323 | + | |
| 324 | + // Set default map options | |
| 325 | + $map_args['ajax_url'] = geodir_get_ajax_url(); | |
| 326 | + $map_args['latitude'] = $map_default_lat; | |
| 327 | + $map_args['longitude'] = $map_default_lng; | |
| 328 | + $map_args['streetViewControl'] = true; | |
| 329 | + $map_args['maptype'] = $mapview; | |
| 330 | + $map_args['showPreview'] = '0'; | |
| 331 | + $map_args['maxZoom'] = 21; | |
| 332 | + $map_args['bubble_size'] = 'small'; | |
| 333 | 333 | |
| 334 | 334 | // Add marker cluster | 
| 335 | 335 |  	if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) { | 
| @@ -338,13 +338,13 @@ discard block | ||
| 338 | 338 | $map_args['enable_marker_cluster'] = false; | 
| 339 | 339 | } | 
| 340 | 340 | |
| 341 | - geodir_draw_map($map_args); | |
| 341 | + geodir_draw_map($map_args); | |
| 342 | 342 | |
| 343 | - $output = ob_get_contents(); | |
| 343 | + $output = ob_get_contents(); | |
| 344 | 344 | |
| 345 | - ob_end_clean(); | |
| 345 | + ob_end_clean(); | |
| 346 | 346 | |
| 347 | - return $output; | |
| 347 | + return $output; | |
| 348 | 348 | } | 
| 349 | 349 | |
| 350 | 350 |  add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider'); | 
| @@ -377,120 +377,120 @@ discard block | ||
| 377 | 377 | */ | 
| 378 | 378 | function geodir_sc_listing_slider($atts) | 
| 379 | 379 |  { | 
| 380 | - ob_start(); | |
| 381 | - $defaults = array( | |
| 382 | - 'post_type' => 'gd_place', | |
| 383 | - 'category' => '0', | |
| 384 | - 'post_number' => '5', | |
| 385 | - 'slideshow' => '0', | |
| 386 | - 'animation_loop' => 0, | |
| 387 | - 'direction_nav' => 0, | |
| 388 | - 'slideshow_speed' => 5000, | |
| 389 | - 'animation_speed' => 600, | |
| 390 | - 'animation' => 'slide', | |
| 391 | - 'order_by' => 'latest', | |
| 392 | - 'show_title' => '', | |
| 393 | - 'show_featured_only' => '', | |
| 394 | - 'title' => '', | |
| 395 | - ); | |
| 396 | - | |
| 397 | - $params = shortcode_atts($defaults, $atts); | |
| 398 | - | |
| 399 | - | |
| 400 | - /* | |
| 380 | + ob_start(); | |
| 381 | + $defaults = array( | |
| 382 | + 'post_type' => 'gd_place', | |
| 383 | + 'category' => '0', | |
| 384 | + 'post_number' => '5', | |
| 385 | + 'slideshow' => '0', | |
| 386 | + 'animation_loop' => 0, | |
| 387 | + 'direction_nav' => 0, | |
| 388 | + 'slideshow_speed' => 5000, | |
| 389 | + 'animation_speed' => 600, | |
| 390 | + 'animation' => 'slide', | |
| 391 | + 'order_by' => 'latest', | |
| 392 | + 'show_title' => '', | |
| 393 | + 'show_featured_only' => '', | |
| 394 | + 'title' => '', | |
| 395 | + ); | |
| 396 | + | |
| 397 | + $params = shortcode_atts($defaults, $atts); | |
| 398 | + | |
| 399 | + | |
| 400 | + /* | |
| 401 | 401 | * | 
| 402 | 402 | * Now we begin the validation of the attributes. | 
| 403 | 403 | */ | 
| 404 | - // Check we have a valid post_type | |
| 405 | -    if (!(gdsc_is_post_type_valid($params['post_type']))) { | |
| 406 | - $params['post_type'] = 'gd_place'; | |
| 407 | - } | |
| 408 | - | |
| 409 | - // Check we have a valid sort_order | |
| 410 | - $params['order_by'] = gdsc_validate_sort_choice($params['order_by']); | |
| 411 | - | |
| 412 | - // Match the chosen animation to our options | |
| 413 | -    $animation_list = array('slide', 'fade'); | |
| 414 | -    if (!(in_array($params['animation'], $animation_list))) { | |
| 415 | - $params['animation'] = 'slide'; | |
| 416 | - } | |
| 417 | - | |
| 418 | - // Post_number needs to be a positive integer | |
| 419 | - $params['post_number'] = absint($params['post_number']); | |
| 420 | -    if (0 == $params['post_number']) { | |
| 421 | - $params['post_number'] = 1; | |
| 422 | - } | |
| 423 | - | |
| 424 | - // Manage the entered categories | |
| 425 | -    if (0 != $params['category'] || '' != $params['category']) { | |
| 426 | - $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']); | |
| 427 | - } | |
| 428 | - // Convert show_title to a bool | |
| 429 | - $params['show_title'] = intval(gdsc_to_bool_val($params['show_title'])); | |
| 430 | - | |
| 431 | - // Convert show_featured_only to a bool | |
| 432 | - $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only'])); | |
| 433 | - | |
| 434 | - /* | |
| 404 | + // Check we have a valid post_type | |
| 405 | +	if (!(gdsc_is_post_type_valid($params['post_type']))) { | |
| 406 | + $params['post_type'] = 'gd_place'; | |
| 407 | + } | |
| 408 | + | |
| 409 | + // Check we have a valid sort_order | |
| 410 | + $params['order_by'] = gdsc_validate_sort_choice($params['order_by']); | |
| 411 | + | |
| 412 | + // Match the chosen animation to our options | |
| 413 | +	$animation_list = array('slide', 'fade'); | |
| 414 | +	if (!(in_array($params['animation'], $animation_list))) { | |
| 415 | + $params['animation'] = 'slide'; | |
| 416 | + } | |
| 417 | + | |
| 418 | + // Post_number needs to be a positive integer | |
| 419 | + $params['post_number'] = absint($params['post_number']); | |
| 420 | +	if (0 == $params['post_number']) { | |
| 421 | + $params['post_number'] = 1; | |
| 422 | + } | |
| 423 | + | |
| 424 | + // Manage the entered categories | |
| 425 | +	if (0 != $params['category'] || '' != $params['category']) { | |
| 426 | + $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']); | |
| 427 | + } | |
| 428 | + // Convert show_title to a bool | |
| 429 | + $params['show_title'] = intval(gdsc_to_bool_val($params['show_title'])); | |
| 430 | + | |
| 431 | + // Convert show_featured_only to a bool | |
| 432 | + $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only'])); | |
| 433 | + | |
| 434 | + /* | |
| 435 | 435 | * Hopefully all attributes are now valid, and safe to pass forward | 
| 436 | 436 | */ | 
| 437 | 437 | |
| 438 | - // redeclare vars after validation | |
| 439 | - | |
| 440 | -    if (isset($params['direction_nav'])) { | |
| 441 | - $params['directionNav'] = $params['direction_nav']; | |
| 442 | - } | |
| 443 | -    if (isset($params['animation_loop'])) { | |
| 444 | - $params['animationLoop'] = $params['animation_loop']; | |
| 445 | - } | |
| 446 | -    if (isset($params['slideshow_speed'])) { | |
| 447 | - $params['slideshowSpeed'] = $params['slideshow_speed']; | |
| 448 | - } | |
| 449 | -    if (isset($params['animation_speed'])) { | |
| 450 | - $params['animationSpeed'] = $params['animation_speed']; | |
| 451 | - } | |
| 452 | -    if (isset($params['order_by'])) { | |
| 453 | - $params['list_sort'] = $params['order_by']; | |
| 454 | - } | |
| 455 | - | |
| 456 | - $query_args = array( | |
| 457 | - 'post_number' => $params['post_number'], | |
| 458 | - 'is_geodir_loop' => true, | |
| 459 | - 'post_type' => $params['post_type'], | |
| 460 | - 'order_by' => $params['order_by'] | |
| 461 | - ); | |
| 462 | - | |
| 463 | -    if (1 == $params['show_featured_only']) { | |
| 464 | - $query_args['show_featured_only'] = 1; | |
| 465 | - } | |
| 466 | - | |
| 467 | -    if (0 != $params['category'] && '' != $params['category']) { | |
| 468 | - $category_taxonomy = geodir_get_taxonomies($params['post_type']); | |
| 469 | - $tax_query = array( | |
| 470 | - 'taxonomy' => $category_taxonomy[0], | |
| 471 | - 'field' => 'id', | |
| 472 | - 'terms' => $params['category'], | |
| 473 | - ); | |
| 474 | - | |
| 475 | - $query_args['tax_query'] = array($tax_query); | |
| 476 | - } | |
| 477 | - | |
| 478 | - $defaults = array( | |
| 479 | - 'before_widget' => '', | |
| 480 | - 'after_widget' => '', | |
| 481 | - 'before_title' => '', | |
| 482 | - 'after_title' => '', | |
| 483 | - ); | |
| 484 | - | |
| 485 | - $query_args = array_merge($query_args, $params); | |
| 486 | - | |
| 487 | - geodir_listing_slider_widget_output($defaults, $query_args); | |
| 488 | - | |
| 489 | - $output = ob_get_contents(); | |
| 490 | - | |
| 491 | - ob_end_clean(); | |
| 492 | - | |
| 493 | - return $output; | |
| 438 | + // redeclare vars after validation | |
| 439 | + | |
| 440 | +	if (isset($params['direction_nav'])) { | |
| 441 | + $params['directionNav'] = $params['direction_nav']; | |
| 442 | + } | |
| 443 | +	if (isset($params['animation_loop'])) { | |
| 444 | + $params['animationLoop'] = $params['animation_loop']; | |
| 445 | + } | |
| 446 | +	if (isset($params['slideshow_speed'])) { | |
| 447 | + $params['slideshowSpeed'] = $params['slideshow_speed']; | |
| 448 | + } | |
| 449 | +	if (isset($params['animation_speed'])) { | |
| 450 | + $params['animationSpeed'] = $params['animation_speed']; | |
| 451 | + } | |
| 452 | +	if (isset($params['order_by'])) { | |
| 453 | + $params['list_sort'] = $params['order_by']; | |
| 454 | + } | |
| 455 | + | |
| 456 | + $query_args = array( | |
| 457 | + 'post_number' => $params['post_number'], | |
| 458 | + 'is_geodir_loop' => true, | |
| 459 | + 'post_type' => $params['post_type'], | |
| 460 | + 'order_by' => $params['order_by'] | |
| 461 | + ); | |
| 462 | + | |
| 463 | +	if (1 == $params['show_featured_only']) { | |
| 464 | + $query_args['show_featured_only'] = 1; | |
| 465 | + } | |
| 466 | + | |
| 467 | +	if (0 != $params['category'] && '' != $params['category']) { | |
| 468 | + $category_taxonomy = geodir_get_taxonomies($params['post_type']); | |
| 469 | + $tax_query = array( | |
| 470 | + 'taxonomy' => $category_taxonomy[0], | |
| 471 | + 'field' => 'id', | |
| 472 | + 'terms' => $params['category'], | |
| 473 | + ); | |
| 474 | + | |
| 475 | + $query_args['tax_query'] = array($tax_query); | |
| 476 | + } | |
| 477 | + | |
| 478 | + $defaults = array( | |
| 479 | + 'before_widget' => '', | |
| 480 | + 'after_widget' => '', | |
| 481 | + 'before_title' => '', | |
| 482 | + 'after_title' => '', | |
| 483 | + ); | |
| 484 | + | |
| 485 | + $query_args = array_merge($query_args, $params); | |
| 486 | + | |
| 487 | + geodir_listing_slider_widget_output($defaults, $query_args); | |
| 488 | + | |
| 489 | + $output = ob_get_contents(); | |
| 490 | + | |
| 491 | + ob_end_clean(); | |
| 492 | + | |
| 493 | + return $output; | |
| 494 | 494 | } | 
| 495 | 495 | |
| 496 | 496 |  add_shortcode('gd_login_box', 'geodir_sc_login_box'); | 
| @@ -514,22 +514,22 @@ discard block | ||
| 514 | 514 | */ | 
| 515 | 515 | function geodir_sc_login_box($atts) | 
| 516 | 516 |  { | 
| 517 | - ob_start(); | |
| 517 | + ob_start(); | |
| 518 | 518 | |
| 519 | - $defaults = array( | |
| 520 | - 'before_widget' => '', | |
| 521 | - 'after_widget' => '', | |
| 522 | - 'before_title' => '', | |
| 523 | - 'after_title' => '', | |
| 524 | - ); | |
| 519 | + $defaults = array( | |
| 520 | + 'before_widget' => '', | |
| 521 | + 'after_widget' => '', | |
| 522 | + 'before_title' => '', | |
| 523 | + 'after_title' => '', | |
| 524 | + ); | |
| 525 | 525 | |
| 526 | - geodir_loginwidget_output($defaults, $defaults); | |
| 526 | + geodir_loginwidget_output($defaults, $defaults); | |
| 527 | 527 | |
| 528 | - $output = ob_get_contents(); | |
| 528 | + $output = ob_get_contents(); | |
| 529 | 529 | |
| 530 | - ob_end_clean(); | |
| 530 | + ob_end_clean(); | |
| 531 | 531 | |
| 532 | - return $output; | |
| 532 | + return $output; | |
| 533 | 533 | } | 
| 534 | 534 | |
| 535 | 535 |  add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category'); | 
| @@ -560,30 +560,30 @@ discard block | ||
| 560 | 560 | */ | 
| 561 | 561 | function geodir_sc_popular_post_category($atts) | 
| 562 | 562 |  { | 
| 563 | - ob_start(); | |
| 564 | - global $geodir_post_category_str; | |
| 565 | - $defaults = array( | |
| 566 | - 'category_limit' => 15, | |
| 567 | - 'before_widget' => '', | |
| 568 | - 'after_widget' => '', | |
| 569 | - 'before_title' => '', | |
| 570 | - 'after_title' => '', | |
| 571 | - 'title' => '', | |
| 572 | - 'default_post_type' => '', | |
| 573 | - 'parent_only' => false, | |
| 574 | - ); | |
| 575 | - | |
| 576 | - $params = shortcode_atts($defaults, $atts, 'popular_post_category'); | |
| 577 | - $params['category_limit'] = absint($params['category_limit']); | |
| 578 | - $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : ''; | |
| 579 | - $params['parent_only'] = gdsc_to_bool_val($params['parent_only']); | |
| 580 | - geodir_popular_post_category_output($params, $params); | |
| 581 | - | |
| 582 | - $output = ob_get_contents(); | |
| 583 | - | |
| 584 | - ob_end_clean(); | |
| 585 | - | |
| 586 | - return $output; | |
| 563 | + ob_start(); | |
| 564 | + global $geodir_post_category_str; | |
| 565 | + $defaults = array( | |
| 566 | + 'category_limit' => 15, | |
| 567 | + 'before_widget' => '', | |
| 568 | + 'after_widget' => '', | |
| 569 | + 'before_title' => '', | |
| 570 | + 'after_title' => '', | |
| 571 | + 'title' => '', | |
| 572 | + 'default_post_type' => '', | |
| 573 | + 'parent_only' => false, | |
| 574 | + ); | |
| 575 | + | |
| 576 | + $params = shortcode_atts($defaults, $atts, 'popular_post_category'); | |
| 577 | + $params['category_limit'] = absint($params['category_limit']); | |
| 578 | + $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : ''; | |
| 579 | + $params['parent_only'] = gdsc_to_bool_val($params['parent_only']); | |
| 580 | + geodir_popular_post_category_output($params, $params); | |
| 581 | + | |
| 582 | + $output = ob_get_contents(); | |
| 583 | + | |
| 584 | + ob_end_clean(); | |
| 585 | + | |
| 586 | + return $output; | |
| 587 | 587 | } | 
| 588 | 588 | |
| 589 | 589 |  add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view'); | 
| @@ -623,97 +623,97 @@ discard block | ||
| 623 | 623 | */ | 
| 624 | 624 | function geodir_sc_popular_post_view($atts) | 
| 625 | 625 |  { | 
| 626 | - ob_start(); | |
| 627 | - $defaults = array( | |
| 628 | - 'post_type' => 'gd_place', | |
| 629 | - 'category' => '0', | |
| 630 | - 'post_number' => '5', | |
| 631 | - 'layout' => 'gridview_onehalf', | |
| 632 | - 'add_location_filter' => '0', | |
| 633 | - 'list_sort' => 'latest', | |
| 634 | - 'use_viewing_post_type' => '1', | |
| 635 | - 'character_count' => '20', | |
| 636 | - 'listing_width' => '', | |
| 637 | - 'show_featured_only' => '0', | |
| 638 | - 'show_special_only' => '0', | |
| 639 | - 'with_pics_only' => '0', | |
| 640 | - 'with_videos_only' => '0', | |
| 641 | - 'before_widget' => '', | |
| 642 | - 'after_widget' => '', | |
| 643 | - 'before_title' => '<h3 class="widget-title">', | |
| 644 | - 'after_title' => '</h3>', | |
| 645 | - 'title' => '', | |
| 646 | - 'category_title' => '', | |
| 647 | - ); | |
| 648 | - | |
| 649 | - $params = shortcode_atts($defaults, $atts); | |
| 650 | - | |
| 651 | - /** | |
| 652 | - * Validate our incoming params | |
| 653 | - */ | |
| 626 | + ob_start(); | |
| 627 | + $defaults = array( | |
| 628 | + 'post_type' => 'gd_place', | |
| 629 | + 'category' => '0', | |
| 630 | + 'post_number' => '5', | |
| 631 | + 'layout' => 'gridview_onehalf', | |
| 632 | + 'add_location_filter' => '0', | |
| 633 | + 'list_sort' => 'latest', | |
| 634 | + 'use_viewing_post_type' => '1', | |
| 635 | + 'character_count' => '20', | |
| 636 | + 'listing_width' => '', | |
| 637 | + 'show_featured_only' => '0', | |
| 638 | + 'show_special_only' => '0', | |
| 639 | + 'with_pics_only' => '0', | |
| 640 | + 'with_videos_only' => '0', | |
| 641 | + 'before_widget' => '', | |
| 642 | + 'after_widget' => '', | |
| 643 | + 'before_title' => '<h3 class="widget-title">', | |
| 644 | + 'after_title' => '</h3>', | |
| 645 | + 'title' => '', | |
| 646 | + 'category_title' => '', | |
| 647 | + ); | |
| 654 | 648 | |
| 655 | - // Validate the selected post type, default to gd_place on fail | |
| 656 | -    if (!(gdsc_is_post_type_valid($params['post_type']))) { | |
| 657 | - $params['post_type'] = 'gd_place'; | |
| 658 | - } | |
| 659 | - | |
| 660 | - // Validate the selected category/ies - Grab the current list based on post_type | |
| 661 | - $category_taxonomy = geodir_get_taxonomies($params['post_type']); | |
| 662 | -    $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); | |
| 663 | - | |
| 664 | - // Make sure we have an array | |
| 665 | -    if (!(is_array($params['category']))) { | |
| 666 | -        $params['category'] = explode(',', $params['category']); | |
| 667 | - } | |
| 668 | - | |
| 669 | - // Array_intersect returns only the items in $params['category'] that are also in our category list | |
| 670 | - // Otherwise it becomes empty and later on that will mean "All" | |
| 671 | - $params['category'] = array_intersect($params['category'], $categories); | |
| 672 | - | |
| 673 | - // Post_number needs to be a positive integer | |
| 674 | - $params['post_number'] = absint($params['post_number']); | |
| 675 | -    if (0 == $params['post_number']) { | |
| 676 | - $params['post_number'] = 1; | |
| 677 | - } | |
| 678 | - | |
| 679 | - // Validate our layout choice | |
| 680 | - // Outside of the norm, I added some more simple terms to match the existing | |
| 681 | - // So now I just run the switch to set it properly. | |
| 682 | - $params['layout'] = gdsc_validate_layout_choice($params['layout']); | |
| 683 | - | |
| 684 | - // Validate our sorting choice | |
| 685 | - $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); | |
| 686 | - | |
| 687 | - // Validate character_count | |
| 688 | - $params['character_count'] = absint($params['character_count']); | |
| 689 | -    if (20 > $params['character_count']) { | |
| 690 | - $params['character_count'] = 20; | |
| 691 | - } | |
| 692 | - | |
| 693 | - // Validate Listing width, used in the template widget-listing-listview.php | |
| 694 | - // The context is in width=$listing_width% - So we need a positive number between 0 & 100 | |
| 695 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); | |
| 696 | - | |
| 697 | - // Validate the checkboxes used on the widget | |
| 698 | - $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); | |
| 699 | - $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); | |
| 700 | - $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); | |
| 701 | - $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); | |
| 702 | - $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); | |
| 703 | - $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']); | |
| 704 | - | |
| 705 | - /** | |
| 706 | - * End of validation | |
| 707 | - */ | |
| 649 | + $params = shortcode_atts($defaults, $atts); | |
| 650 | + | |
| 651 | + /** | |
| 652 | + * Validate our incoming params | |
| 653 | + */ | |
| 654 | + | |
| 655 | + // Validate the selected post type, default to gd_place on fail | |
| 656 | +	if (!(gdsc_is_post_type_valid($params['post_type']))) { | |
| 657 | + $params['post_type'] = 'gd_place'; | |
| 658 | + } | |
| 659 | + | |
| 660 | + // Validate the selected category/ies - Grab the current list based on post_type | |
| 661 | + $category_taxonomy = geodir_get_taxonomies($params['post_type']); | |
| 662 | +	$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); | |
| 708 | 663 | |
| 709 | - geodir_popular_postview_output($params, $params); | |
| 664 | + // Make sure we have an array | |
| 665 | +	if (!(is_array($params['category']))) { | |
| 666 | +		$params['category'] = explode(',', $params['category']); | |
| 667 | + } | |
| 668 | + | |
| 669 | + // Array_intersect returns only the items in $params['category'] that are also in our category list | |
| 670 | + // Otherwise it becomes empty and later on that will mean "All" | |
| 671 | + $params['category'] = array_intersect($params['category'], $categories); | |
| 672 | + | |
| 673 | + // Post_number needs to be a positive integer | |
| 674 | + $params['post_number'] = absint($params['post_number']); | |
| 675 | +	if (0 == $params['post_number']) { | |
| 676 | + $params['post_number'] = 1; | |
| 677 | + } | |
| 710 | 678 | |
| 679 | + // Validate our layout choice | |
| 680 | + // Outside of the norm, I added some more simple terms to match the existing | |
| 681 | + // So now I just run the switch to set it properly. | |
| 682 | + $params['layout'] = gdsc_validate_layout_choice($params['layout']); | |
| 711 | 683 | |
| 712 | - $output = ob_get_contents(); | |
| 684 | + // Validate our sorting choice | |
| 685 | + $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); | |
| 713 | 686 | |
| 714 | - ob_end_clean(); | |
| 687 | + // Validate character_count | |
| 688 | + $params['character_count'] = absint($params['character_count']); | |
| 689 | +	if (20 > $params['character_count']) { | |
| 690 | + $params['character_count'] = 20; | |
| 691 | + } | |
| 715 | 692 | |
| 716 | - return $output; | |
| 693 | + // Validate Listing width, used in the template widget-listing-listview.php | |
| 694 | + // The context is in width=$listing_width% - So we need a positive number between 0 & 100 | |
| 695 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); | |
| 696 | + | |
| 697 | + // Validate the checkboxes used on the widget | |
| 698 | + $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); | |
| 699 | + $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); | |
| 700 | + $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); | |
| 701 | + $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); | |
| 702 | + $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); | |
| 703 | + $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']); | |
| 704 | + | |
| 705 | + /** | |
| 706 | + * End of validation | |
| 707 | + */ | |
| 708 | + | |
| 709 | + geodir_popular_postview_output($params, $params); | |
| 710 | + | |
| 711 | + | |
| 712 | + $output = ob_get_contents(); | |
| 713 | + | |
| 714 | + ob_end_clean(); | |
| 715 | + | |
| 716 | + return $output; | |
| 717 | 717 | } | 
| 718 | 718 | |
| 719 | 719 |  add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews'); | 
| @@ -735,37 +735,37 @@ discard block | ||
| 735 | 735 | * @return string Recent reviews HTML. | 
| 736 | 736 | */ | 
| 737 | 737 |  function geodir_sc_recent_reviews($atts) { | 
| 738 | - ob_start(); | |
| 739 | - $defaults = array( | |
| 738 | + ob_start(); | |
| 739 | + $defaults = array( | |
| 740 | 740 | 'title' => '', | 
| 741 | 741 | 'count' => 5, | 
| 742 | - ); | |
| 742 | + ); | |
| 743 | 743 | |
| 744 | - $params = shortcode_atts($defaults, $atts); | |
| 744 | + $params = shortcode_atts($defaults, $atts); | |
| 745 | 745 | |
| 746 | - $count = absint($params['count']); | |
| 747 | -    if (0 == $count) { | |
| 748 | - $count = 1; | |
| 749 | - } | |
| 746 | + $count = absint($params['count']); | |
| 747 | +	if (0 == $count) { | |
| 748 | + $count = 1; | |
| 749 | + } | |
| 750 | 750 | |
| 751 | 751 | $title = !empty($params['title']) ? __($params['title'], 'geodirectory') : ''; | 
| 752 | 752 | |
| 753 | - $comments_li = geodir_get_recent_reviews(30, $count, 100, false); | |
| 753 | + $comments_li = geodir_get_recent_reviews(30, $count, 100, false); | |
| 754 | 754 | |
| 755 | -    if ($comments_li) { | |
| 756 | -        if ($title != '') { ?> | |
| 755 | +	if ($comments_li) { | |
| 756 | +		if ($title != '') { ?> | |
| 757 | 757 | <h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3> | 
| 758 | 758 | <?php } ?> | 
| 759 | 759 | <div class="geodir_sc_recent_reviews_section"> | 
| 760 | 760 | <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul> | 
| 761 | 761 | </div> | 
| 762 | 762 | <?php | 
| 763 | - } | |
| 764 | - $output = ob_get_contents(); | |
| 763 | + } | |
| 764 | + $output = ob_get_contents(); | |
| 765 | 765 | |
| 766 | - ob_end_clean(); | |
| 766 | + ob_end_clean(); | |
| 767 | 767 | |
| 768 | - return $output; | |
| 768 | + return $output; | |
| 769 | 769 | } | 
| 770 | 770 | |
| 771 | 771 |  add_shortcode('gd_related_listings', 'geodir_sc_related_listings'); | 
| @@ -795,64 +795,64 @@ discard block | ||
| 795 | 795 | */ | 
| 796 | 796 | function geodir_sc_related_listings($atts) | 
| 797 | 797 |  { | 
| 798 | - ob_start(); | |
| 799 | - $defaults = array( | |
| 800 | - 'post_number' => 5, | |
| 801 | - 'relate_to' => 'category', | |
| 802 | - 'layout' => 'gridview_onehalf', | |
| 803 | - 'add_location_filter' => 0, | |
| 804 | - 'listing_width' => '', | |
| 805 | - 'list_sort' => 'latest', | |
| 806 | - 'character_count' => 20, | |
| 807 | - 'is_widget' => 1, | |
| 808 | -        'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>', | |
| 809 | - ); | |
| 810 | - // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet. | |
| 811 | - | |
| 812 | - $params = shortcode_atts($defaults, $atts); | |
| 813 | - | |
| 814 | - /** | |
| 815 | - * Begin validating parameters | |
| 816 | - */ | |
| 798 | + ob_start(); | |
| 799 | + $defaults = array( | |
| 800 | + 'post_number' => 5, | |
| 801 | + 'relate_to' => 'category', | |
| 802 | + 'layout' => 'gridview_onehalf', | |
| 803 | + 'add_location_filter' => 0, | |
| 804 | + 'listing_width' => '', | |
| 805 | + 'list_sort' => 'latest', | |
| 806 | + 'character_count' => 20, | |
| 807 | + 'is_widget' => 1, | |
| 808 | +		'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>', | |
| 809 | + ); | |
| 810 | + // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet. | |
| 811 | + | |
| 812 | + $params = shortcode_atts($defaults, $atts); | |
| 813 | + | |
| 814 | + /** | |
| 815 | + * Begin validating parameters | |
| 816 | + */ | |
| 817 | 817 | |
| 818 | - // Validate that post_number is a number and is 1 or higher | |
| 819 | - $params['post_number'] = absint($params['post_number']); | |
| 820 | -    if (0 === $params['post_number']) { | |
| 821 | - $params['post_number'] = 1; | |
| 822 | - } | |
| 818 | + // Validate that post_number is a number and is 1 or higher | |
| 819 | + $params['post_number'] = absint($params['post_number']); | |
| 820 | +	if (0 === $params['post_number']) { | |
| 821 | + $params['post_number'] = 1; | |
| 822 | + } | |
| 823 | 823 | |
| 824 | - // Validate relate_to - only category or tags | |
| 825 | - $params['relate_to'] = geodir_strtolower($params['relate_to']); | |
| 826 | -    if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) { | |
| 827 | - $params['relate_to'] = 'category'; | |
| 828 | - } | |
| 824 | + // Validate relate_to - only category or tags | |
| 825 | + $params['relate_to'] = geodir_strtolower($params['relate_to']); | |
| 826 | +	if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) { | |
| 827 | + $params['relate_to'] = 'category'; | |
| 828 | + } | |
| 829 | 829 | |
| 830 | - // Validate layout selection | |
| 831 | - $params['layout'] = gdsc_validate_layout_choice($params['layout']); | |
| 830 | + // Validate layout selection | |
| 831 | + $params['layout'] = gdsc_validate_layout_choice($params['layout']); | |
| 832 | 832 | |
| 833 | - // Validate sorting option | |
| 834 | - $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); | |
| 833 | + // Validate sorting option | |
| 834 | + $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); | |
| 835 | 835 | |
| 836 | - // Validate add_location_filter | |
| 837 | - $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); | |
| 836 | + // Validate add_location_filter | |
| 837 | + $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); | |
| 838 | 838 | |
| 839 | - // Validate listing_width | |
| 840 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); | |
| 839 | + // Validate listing_width | |
| 840 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); | |
| 841 | 841 | |
| 842 | - // Validate character_count | |
| 843 | - $params['character_count'] = absint($params['character_count']); | |
| 844 | -    if (20 > $params['character_count']) { | |
| 845 | - $params['character_count'] = 20; | |
| 846 | - } | |
| 842 | + // Validate character_count | |
| 843 | + $params['character_count'] = absint($params['character_count']); | |
| 844 | +	if (20 > $params['character_count']) { | |
| 845 | + $params['character_count'] = 20; | |
| 846 | + } | |
| 847 | 847 | |
| 848 | -    if ($related_display = geodir_related_posts_display($params)) { | |
| 849 | - echo $related_display; | |
| 850 | - } | |
| 851 | - $output = ob_get_contents(); | |
| 848 | +	if ($related_display = geodir_related_posts_display($params)) { | |
| 849 | + echo $related_display; | |
| 850 | + } | |
| 851 | + $output = ob_get_contents(); | |
| 852 | 852 | |
| 853 | - ob_end_clean(); | |
| 853 | + ob_end_clean(); | |
| 854 | 854 | |
| 855 | - return $output; | |
| 855 | + return $output; | |
| 856 | 856 | } | 
| 857 | 857 | |
| 858 | 858 | /** | 
| @@ -876,12 +876,12 @@ discard block | ||
| 876 | 876 | * @return string Advanced search widget HTML. | 
| 877 | 877 | */ | 
| 878 | 878 |  function geodir_sc_advanced_search($atts) { | 
| 879 | - $defaults = array( | |
| 879 | + $defaults = array( | |
| 880 | 880 | 'title' => '', | 
| 881 | 881 | 'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advance_search_widget">', | 
| 882 | - 'after_widget' => '</section>', | |
| 883 | - 'before_title' => '<h3 class="widget-title">', | |
| 884 | - 'after_title' => '</h3>', | |
| 882 | + 'after_widget' => '</section>', | |
| 883 | + 'before_title' => '<h3 class="widget-title">', | |
| 884 | + 'after_title' => '</h3>', | |
| 885 | 885 | 'show_adv_search' => 'default' | 
| 886 | 886 | ); | 
| 887 | 887 | |
| @@ -905,9 +905,9 @@ discard block | ||
| 905 | 905 |  	the_widget('geodir_advance_search_widget', $params, $params ); | 
| 906 | 906 | |
| 907 | 907 | $output = ob_get_contents(); | 
| 908 | - ob_end_clean(); | |
| 908 | + ob_end_clean(); | |
| 909 | 909 | |
| 910 | - return $output; | |
| 910 | + return $output; | |
| 911 | 911 | } | 
| 912 | 912 |  add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search'); | 
| 913 | 913 | |
| @@ -953,48 +953,48 @@ discard block | ||
| 953 | 953 | 'add_location_filter' => '1', | 
| 954 | 954 | 'tab_layout' => 'bestof-tabs-on-top', | 
| 955 | 955 | 'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">', | 
| 956 | - 'after_widget' => '</section>', | |
| 957 | - 'before_title' => '<h3 class="widget-title">', | |
| 958 | - 'after_title' => '</h3>', | |
| 956 | + 'after_widget' => '</section>', | |
| 957 | + 'before_title' => '<h3 class="widget-title">', | |
| 958 | + 'after_title' => '</h3>', | |
| 959 | 959 | ); | 
| 960 | 960 | $params = shortcode_atts($defaults, $atts); | 
| 961 | 961 | |
| 962 | - /** | |
| 963 | - * Validate our incoming params | |
| 964 | - */ | |
| 962 | + /** | |
| 963 | + * Validate our incoming params | |
| 964 | + */ | |
| 965 | 965 | |
| 966 | - // Validate the selected post type, default to gd_place on fail | |
| 967 | -    if (!(gdsc_is_post_type_valid($params['post_type']))) { | |
| 968 | - $params['post_type'] = 'gd_place'; | |
| 969 | - } | |
| 966 | + // Validate the selected post type, default to gd_place on fail | |
| 967 | +	if (!(gdsc_is_post_type_valid($params['post_type']))) { | |
| 968 | + $params['post_type'] = 'gd_place'; | |
| 969 | + } | |
| 970 | 970 | |
| 971 | 971 | // Post limit needs to be a positive integer | 
| 972 | - $params['post_limit'] = absint($params['post_limit']); | |
| 973 | -    if (0 == $params['post_limit']) { | |
| 974 | - $params['post_limit'] = 5; | |
| 975 | - } | |
| 972 | + $params['post_limit'] = absint($params['post_limit']); | |
| 973 | +	if (0 == $params['post_limit']) { | |
| 974 | + $params['post_limit'] = 5; | |
| 975 | + } | |
| 976 | 976 | |
| 977 | 977 | // Category limit needs to be a positive integer | 
| 978 | - $params['categ_limit'] = absint($params['categ_limit']); | |
| 979 | -    if (0 == $params['categ_limit']) { | |
| 980 | - $params['categ_limit'] = 3; | |
| 981 | - } | |
| 978 | + $params['categ_limit'] = absint($params['categ_limit']); | |
| 979 | +	if (0 == $params['categ_limit']) { | |
| 980 | + $params['categ_limit'] = 3; | |
| 981 | + } | |
| 982 | 982 | |
| 983 | 983 | // Tab layout validation | 
| 984 | - $params['tab_layout'] = $params['tab_layout']; | |
| 985 | -    if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) { | |
| 986 | - $params['tab_layout'] = 'bestof-tabs-on-top'; | |
| 987 | - } | |
| 984 | + $params['tab_layout'] = $params['tab_layout']; | |
| 985 | +	if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) { | |
| 986 | + $params['tab_layout'] = 'bestof-tabs-on-top'; | |
| 987 | + } | |
| 988 | 988 | |
| 989 | 989 | // Validate character_count | 
| 990 | - $params['character_count'] = $params['character_count']; | |
| 990 | + $params['character_count'] = $params['character_count']; | |
| 991 | 991 | |
| 992 | 992 | ob_start(); | 
| 993 | 993 |  	the_widget('geodir_bestof_widget', $params, $params); | 
| 994 | - $output = ob_get_contents(); | |
| 995 | - ob_end_clean(); | |
| 994 | + $output = ob_get_contents(); | |
| 995 | + ob_end_clean(); | |
| 996 | 996 | |
| 997 | - return $output; | |
| 997 | + return $output; | |
| 998 | 998 | } | 
| 999 | 999 |  add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget'); | 
| 1000 | 1000 | |
| @@ -1042,127 +1042,127 @@ discard block | ||
| 1042 | 1042 | * @return string HTML content to display geodirectory listings. | 
| 1043 | 1043 | */ | 
| 1044 | 1044 |  function geodir_sc_gd_listings($atts, $content = '') { | 
| 1045 | - global $post; | |
| 1046 | - $defaults = array( | |
| 1047 | - 'title' => '', | |
| 1048 | - 'post_type' => 'gd_place', | |
| 1049 | - 'category' => 0, | |
| 1050 | - 'list_sort' => 'latest', | |
| 1051 | - 'event_type' => '', | |
| 1052 | - 'post_number' => 10, | |
| 1053 | - 'post_author' => '', | |
| 1054 | - 'layout' => 'gridview_onehalf', | |
| 1055 | - 'listing_width' => '', | |
| 1056 | - 'character_count' => 20, | |
| 1057 | - 'add_location_filter' => 1, | |
| 1058 | - 'show_featured_only' => '', | |
| 1059 | - 'show_special_only' => '', | |
| 1060 | - 'with_pics_only' => '', | |
| 1061 | - 'with_videos_only' => '', | |
| 1062 | - 'with_pagination' => '1', | |
| 1063 | - 'top_pagination' => '0', | |
| 1064 | - 'bottom_pagination' => '1', | |
| 1065 | - 'without_no_results' => 0, | |
| 1066 | - 'tags' => '' | |
| 1067 | - ); | |
| 1068 | - $params = shortcode_atts($defaults, $atts); | |
| 1069 | - | |
| 1070 | - $params['title'] = wp_strip_all_tags($params['title']); | |
| 1071 | - $params['post_type'] = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place'; | |
| 1072 | - | |
| 1073 | - // Validate the selected category/ies - Grab the current list based on post_type | |
| 1074 | - $category_taxonomy = geodir_get_taxonomies($params['post_type']); | |
| 1075 | -    $categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); | |
| 1076 | - | |
| 1077 | - // Make sure we have an array | |
| 1078 | -    if (!(is_array($params['category']))) { | |
| 1079 | -        $params['category'] = explode(',', $params['category']); | |
| 1080 | - } | |
| 1081 | - | |
| 1082 | - // Array_intersect returns only the items in $params['category'] that are also in our category list | |
| 1083 | - // Otherwise it becomes empty and later on that will mean "All" | |
| 1084 | - $params['category'] = array_intersect($params['category'], $categories); | |
| 1085 | - | |
| 1086 | - // Post_number needs to be a positive integer | |
| 1087 | - $params['post_number'] = absint($params['post_number']); | |
| 1088 | - $params['post_number'] = $params['post_number'] > 0 ? $params['post_number'] : 10; | |
| 1045 | + global $post; | |
| 1046 | + $defaults = array( | |
| 1047 | + 'title' => '', | |
| 1048 | + 'post_type' => 'gd_place', | |
| 1049 | + 'category' => 0, | |
| 1050 | + 'list_sort' => 'latest', | |
| 1051 | + 'event_type' => '', | |
| 1052 | + 'post_number' => 10, | |
| 1053 | + 'post_author' => '', | |
| 1054 | + 'layout' => 'gridview_onehalf', | |
| 1055 | + 'listing_width' => '', | |
| 1056 | + 'character_count' => 20, | |
| 1057 | + 'add_location_filter' => 1, | |
| 1058 | + 'show_featured_only' => '', | |
| 1059 | + 'show_special_only' => '', | |
| 1060 | + 'with_pics_only' => '', | |
| 1061 | + 'with_videos_only' => '', | |
| 1062 | + 'with_pagination' => '1', | |
| 1063 | + 'top_pagination' => '0', | |
| 1064 | + 'bottom_pagination' => '1', | |
| 1065 | + 'without_no_results' => 0, | |
| 1066 | + 'tags' => '' | |
| 1067 | + ); | |
| 1068 | + $params = shortcode_atts($defaults, $atts); | |
| 1069 | + | |
| 1070 | + $params['title'] = wp_strip_all_tags($params['title']); | |
| 1071 | + $params['post_type'] = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place'; | |
| 1072 | + | |
| 1073 | + // Validate the selected category/ies - Grab the current list based on post_type | |
| 1074 | + $category_taxonomy = geodir_get_taxonomies($params['post_type']); | |
| 1075 | +	$categories             = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); | |
| 1076 | + | |
| 1077 | + // Make sure we have an array | |
| 1078 | +	if (!(is_array($params['category']))) { | |
| 1079 | +		$params['category'] = explode(',', $params['category']); | |
| 1080 | + } | |
| 1081 | + | |
| 1082 | + // Array_intersect returns only the items in $params['category'] that are also in our category list | |
| 1083 | + // Otherwise it becomes empty and later on that will mean "All" | |
| 1084 | + $params['category'] = array_intersect($params['category'], $categories); | |
| 1085 | + | |
| 1086 | + // Post_number needs to be a positive integer | |
| 1087 | + $params['post_number'] = absint($params['post_number']); | |
| 1088 | + $params['post_number'] = $params['post_number'] > 0 ? $params['post_number'] : 10; | |
| 1089 | 1089 | |
| 1090 | - // Post_number needs to be a positive integer | |
| 1091 | -    if (!empty($atts['post_author'])) { | |
| 1092 | -        if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') { | |
| 1093 | - $params['post_author'] = $post->post_author; | |
| 1094 | -        } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) { | |
| 1095 | - $params['post_author'] = absint($atts['post_author']); | |
| 1096 | -        } else { | |
| 1097 | - unset($params['post_author']); | |
| 1098 | - } | |
| 1099 | -    } else { | |
| 1100 | - unset($params['post_author']); | |
| 1101 | - } | |
| 1102 | - | |
| 1103 | - // Validate character_count | |
| 1104 | - //todo: is this necessary? | |
| 1105 | - $params['character_count'] = $params['character_count']; | |
| 1106 | - | |
| 1107 | - // Validate our layout choice | |
| 1108 | - // Outside of the norm, I added some more simple terms to match the existing | |
| 1109 | - // So now I just run the switch to set it properly. | |
| 1110 | - $params['layout'] = gdsc_validate_layout_choice($params['layout']); | |
| 1111 | - | |
| 1112 | - // Validate our sorting choice | |
| 1113 | - $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); | |
| 1114 | - | |
| 1115 | - // Validate Listing width, used in the template widget-listing-listview.php | |
| 1116 | - // The context is in width=$listing_width% - So we need a positive number between 0 & 100 | |
| 1117 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); | |
| 1118 | - | |
| 1119 | - // Validate the checkboxes used on the widget | |
| 1120 | - $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); | |
| 1121 | - $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); | |
| 1122 | - $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); | |
| 1123 | - $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); | |
| 1124 | - $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); | |
| 1125 | - $params['with_pagination'] = gdsc_to_bool_val($params['with_pagination']); | |
| 1126 | - $params['top_pagination'] = gdsc_to_bool_val($params['top_pagination']); | |
| 1127 | - $params['bottom_pagination'] = gdsc_to_bool_val($params['bottom_pagination']); | |
| 1128 | - | |
| 1129 | - // Clean tags | |
| 1130 | -    if (!empty($params['tags'])) { | |
| 1131 | -        if (!is_array($params['tags'])) { | |
| 1132 | -            $comma = _x(',', 'tag delimiter'); | |
| 1133 | -            if ( ',' !== $comma ) { | |
| 1134 | - $params['tags'] = str_replace($comma, ',', $params['tags']); | |
| 1135 | - } | |
| 1136 | -            $params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,")); | |
| 1137 | -            $params['tags'] = array_map('trim', $params['tags']); | |
| 1138 | - } | |
| 1139 | -    } else { | |
| 1140 | - $params['tags'] = array(); | |
| 1141 | - } | |
| 1142 | - | |
| 1143 | - /** | |
| 1144 | - * End of validation | |
| 1145 | - */ | |
| 1146 | -    if (isset($atts['geodir_ajax'])) { | |
| 1147 | - $params['geodir_ajax'] = $atts['geodir_ajax']; | |
| 1148 | - unset($atts['geodir_ajax']); | |
| 1149 | - } | |
| 1150 | -    if (isset($atts['pageno'])) { | |
| 1151 | - $params['pageno'] = $atts['pageno']; | |
| 1152 | - unset($atts['pageno']); | |
| 1153 | - } | |
| 1154 | - | |
| 1155 | -    if ( !empty($atts['shortcode_content']) ) { | |
| 1156 | - $content = $atts['shortcode_content']; | |
| 1157 | - } | |
| 1158 | - $params['shortcode_content'] = trim($content); | |
| 1159 | - $atts['shortcode_content'] = trim($content); | |
| 1090 | + // Post_number needs to be a positive integer | |
| 1091 | +	if (!empty($atts['post_author'])) { | |
| 1092 | +		if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') { | |
| 1093 | + $params['post_author'] = $post->post_author; | |
| 1094 | +		} else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) { | |
| 1095 | + $params['post_author'] = absint($atts['post_author']); | |
| 1096 | +		} else { | |
| 1097 | + unset($params['post_author']); | |
| 1098 | + } | |
| 1099 | +	} else { | |
| 1100 | + unset($params['post_author']); | |
| 1101 | + } | |
| 1102 | + | |
| 1103 | + // Validate character_count | |
| 1104 | + //todo: is this necessary? | |
| 1105 | + $params['character_count'] = $params['character_count']; | |
| 1106 | + | |
| 1107 | + // Validate our layout choice | |
| 1108 | + // Outside of the norm, I added some more simple terms to match the existing | |
| 1109 | + // So now I just run the switch to set it properly. | |
| 1110 | + $params['layout'] = gdsc_validate_layout_choice($params['layout']); | |
| 1111 | + | |
| 1112 | + // Validate our sorting choice | |
| 1113 | + $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); | |
| 1114 | + | |
| 1115 | + // Validate Listing width, used in the template widget-listing-listview.php | |
| 1116 | + // The context is in width=$listing_width% - So we need a positive number between 0 & 100 | |
| 1117 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); | |
| 1118 | + | |
| 1119 | + // Validate the checkboxes used on the widget | |
| 1120 | + $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); | |
| 1121 | + $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); | |
| 1122 | + $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); | |
| 1123 | + $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); | |
| 1124 | + $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); | |
| 1125 | + $params['with_pagination'] = gdsc_to_bool_val($params['with_pagination']); | |
| 1126 | + $params['top_pagination'] = gdsc_to_bool_val($params['top_pagination']); | |
| 1127 | + $params['bottom_pagination'] = gdsc_to_bool_val($params['bottom_pagination']); | |
| 1128 | + | |
| 1129 | + // Clean tags | |
| 1130 | +	if (!empty($params['tags'])) { | |
| 1131 | +		if (!is_array($params['tags'])) { | |
| 1132 | +			$comma = _x(',', 'tag delimiter'); | |
| 1133 | +			if ( ',' !== $comma ) { | |
| 1134 | + $params['tags'] = str_replace($comma, ',', $params['tags']); | |
| 1135 | + } | |
| 1136 | +			$params['tags'] = explode(',', trim($params['tags'], " \n\t\r\0\x0B,")); | |
| 1137 | +			$params['tags'] = array_map('trim', $params['tags']); | |
| 1138 | + } | |
| 1139 | +	} else { | |
| 1140 | + $params['tags'] = array(); | |
| 1141 | + } | |
| 1142 | + | |
| 1143 | + /** | |
| 1144 | + * End of validation | |
| 1145 | + */ | |
| 1146 | +	if (isset($atts['geodir_ajax'])) { | |
| 1147 | + $params['geodir_ajax'] = $atts['geodir_ajax']; | |
| 1148 | + unset($atts['geodir_ajax']); | |
| 1149 | + } | |
| 1150 | +	if (isset($atts['pageno'])) { | |
| 1151 | + $params['pageno'] = $atts['pageno']; | |
| 1152 | + unset($atts['pageno']); | |
| 1153 | + } | |
| 1154 | + | |
| 1155 | +	if ( !empty($atts['shortcode_content']) ) { | |
| 1156 | + $content = $atts['shortcode_content']; | |
| 1157 | + } | |
| 1158 | + $params['shortcode_content'] = trim($content); | |
| 1159 | + $atts['shortcode_content'] = trim($content); | |
| 1160 | 1160 | |
| 1161 | - $params['shortcode_atts'] = $atts; | |
| 1161 | + $params['shortcode_atts'] = $atts; | |
| 1162 | 1162 | |
| 1163 | - $output = geodir_sc_gd_listings_output($params); | |
| 1163 | + $output = geodir_sc_gd_listings_output($params); | |
| 1164 | 1164 | |
| 1165 | - return $output; | |
| 1165 | + return $output; | |
| 1166 | 1166 | } | 
| 1167 | 1167 |  add_shortcode('gd_listings', 'geodir_sc_gd_listings'); | 
| 1168 | 1168 | |
| @@ -1202,56 +1202,56 @@ discard block | ||
| 1202 | 1202 | * @return string HTML content to display CPT categories. | 
| 1203 | 1203 | */ | 
| 1204 | 1204 |  function geodir_sc_cpt_categories_widget($atts, $content = '') { | 
| 1205 | - $defaults = array( | |
| 1206 | - 'title' => '', | |
| 1207 | - 'post_type' => '', // NULL for all | |
| 1208 | - 'hide_empty' => '', | |
| 1209 | - 'show_count' => '', | |
| 1210 | - 'hide_icon' => '', | |
| 1211 | - 'cpt_left' => '', | |
| 1212 | - 'sort_by' => 'count', | |
| 1213 | - 'max_count' => 'all', | |
| 1214 | - 'max_level' => '1', | |
| 1215 | - 'no_cpt_filter' => '', | |
| 1216 | - 'no_cat_filter' => '', | |
| 1217 | - 'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">', | |
| 1218 | - 'after_widget' => '</section>', | |
| 1219 | - 'before_title' => '<h3 class="widget-title">', | |
| 1220 | - 'after_title' => '</h3>', | |
| 1221 | - ); | |
| 1222 | - $params = shortcode_atts($defaults, $atts); | |
| 1223 | - | |
| 1224 | - /** | |
| 1225 | - * Validate our incoming params | |
| 1226 | - */ | |
| 1227 | - // Make sure we have an array | |
| 1228 | -    $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array(); | |
| 1229 | - | |
| 1230 | - // Validate the checkboxes used on the widget | |
| 1231 | - $params['hide_empty'] = gdsc_to_bool_val($params['hide_empty']); | |
| 1232 | - $params['show_count'] = gdsc_to_bool_val($params['show_count']); | |
| 1233 | - $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']); | |
| 1234 | - $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']); | |
| 1205 | + $defaults = array( | |
| 1206 | + 'title' => '', | |
| 1207 | + 'post_type' => '', // NULL for all | |
| 1208 | + 'hide_empty' => '', | |
| 1209 | + 'show_count' => '', | |
| 1210 | + 'hide_icon' => '', | |
| 1211 | + 'cpt_left' => '', | |
| 1212 | + 'sort_by' => 'count', | |
| 1213 | + 'max_count' => 'all', | |
| 1214 | + 'max_level' => '1', | |
| 1215 | + 'no_cpt_filter' => '', | |
| 1216 | + 'no_cat_filter' => '', | |
| 1217 | + 'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">', | |
| 1218 | + 'after_widget' => '</section>', | |
| 1219 | + 'before_title' => '<h3 class="widget-title">', | |
| 1220 | + 'after_title' => '</h3>', | |
| 1221 | + ); | |
| 1222 | + $params = shortcode_atts($defaults, $atts); | |
| 1235 | 1223 | |
| 1236 | -    if ($params['max_count'] != 'all') { | |
| 1237 | - $params['max_count'] = absint($params['max_count']); | |
| 1238 | - } | |
| 1224 | + /** | |
| 1225 | + * Validate our incoming params | |
| 1226 | + */ | |
| 1227 | + // Make sure we have an array | |
| 1228 | +	$params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array(); | |
| 1229 | + | |
| 1230 | + // Validate the checkboxes used on the widget | |
| 1231 | + $params['hide_empty'] = gdsc_to_bool_val($params['hide_empty']); | |
| 1232 | + $params['show_count'] = gdsc_to_bool_val($params['show_count']); | |
| 1233 | + $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']); | |
| 1234 | + $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']); | |
| 1235 | + | |
| 1236 | +	if ($params['max_count'] != 'all') { | |
| 1237 | + $params['max_count'] = absint($params['max_count']); | |
| 1238 | + } | |
| 1239 | 1239 | |
| 1240 | -    if ($params['max_level'] != 'all') { | |
| 1241 | - $params['max_level'] = absint($params['max_level']); | |
| 1242 | - } | |
| 1240 | +	if ($params['max_level'] != 'all') { | |
| 1241 | + $params['max_level'] = absint($params['max_level']); | |
| 1242 | + } | |
| 1243 | 1243 | |
| 1244 | - $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']); | |
| 1245 | - $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']); | |
| 1244 | + $params['no_cpt_filter'] = gdsc_to_bool_val($params['no_cpt_filter']); | |
| 1245 | + $params['no_cat_filter'] = gdsc_to_bool_val($params['no_cat_filter']); | |
| 1246 | 1246 | |
| 1247 | - $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count'; | |
| 1247 | + $params['sort_by'] = $params['sort_by'] == 'az' ? 'az' : 'count'; | |
| 1248 | 1248 | |
| 1249 | - ob_start(); | |
| 1250 | -    the_widget('geodir_cpt_categories_widget', $params, $params); | |
| 1251 | - $output = ob_get_contents(); | |
| 1252 | - ob_end_clean(); | |
| 1249 | + ob_start(); | |
| 1250 | +	the_widget('geodir_cpt_categories_widget', $params, $params); | |
| 1251 | + $output = ob_get_contents(); | |
| 1252 | + ob_end_clean(); | |
| 1253 | 1253 | |
| 1254 | - return $output; | |
| 1254 | + return $output; | |
| 1255 | 1255 | } | 
| 1256 | 1256 |  add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget'); | 
| 1257 | 1257 | |
| @@ -1266,7 +1266,7 @@ discard block | ||
| 1266 | 1266 | * @return string HTML code. | 
| 1267 | 1267 | */ | 
| 1268 | 1268 |  function geodir_sc_responsive_videos($atts, $content) { | 
| 1269 | - return '<div class="geodir-video-wrapper">'.$content.'</div>'; | |
| 1269 | + return '<div class="geodir-video-wrapper">'.$content.'</div>'; | |
| 1270 | 1270 | } | 
| 1271 | 1271 |  add_shortcode('gd_video', 'geodir_sc_responsive_videos'); | 
| 1272 | 1272 | ?> | 
| 1273 | 1273 | \ No newline at end of file | 
| @@ -16,22 +16,22 @@ discard block | ||
| 16 | 16 | */ | 
| 17 | 17 | function geodir_on_wp_loaded() | 
| 18 | 18 |  {
 | 
| 19 | - /** | |
| 20 | - * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. | |
| 21 | - * | |
| 22 | - * @since 1.0.0 | |
| 23 | - */ | |
| 24 | -    do_action('giodir_handle_request_plugins_loaded');
 | |
| 25 | - global $wpdb; | |
| 19 | + /** | |
| 20 | + * Called on the wp_loaded WP hook and used to send the send inquiry and send to friend forms. | |
| 21 | + * | |
| 22 | + * @since 1.0.0 | |
| 23 | + */ | |
| 24 | +	do_action('giodir_handle_request_plugins_loaded');
 | |
| 25 | + global $wpdb; | |
| 26 | 26 | |
| 27 | 27 | |
| 28 | -    if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
 | |
| 29 | - geodir_send_inquiry($_REQUEST); // function in custom_functions.php | |
| 28 | +	if (isset($_POST['sendact']) && $_POST['sendact'] == 'send_inqury') {
 | |
| 29 | + geodir_send_inquiry($_REQUEST); // function in custom_functions.php | |
| 30 | 30 | |
| 31 | -    } elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
 | |
| 32 | - geodir_send_friend($_REQUEST); // function in custom_functions.php | |
| 31 | +	} elseif (isset($_POST['sendact']) && $_POST['sendact'] == 'email_frnd') {
 | |
| 32 | + geodir_send_friend($_REQUEST); // function in custom_functions.php | |
| 33 | 33 | |
| 34 | - } | |
| 34 | + } | |
| 35 | 35 | |
| 36 | 36 | } | 
| 37 | 37 | |
| @@ -44,9 +44,9 @@ discard block | ||
| 44 | 44 | */ | 
| 45 | 45 | function geodir_on_wp() | 
| 46 | 46 |  {
 | 
| 47 | -    if(geodir_is_page('login')) {
 | |
| 48 | - geodir_user_signup(); | |
| 49 | - } | |
| 47 | +	if(geodir_is_page('login')) {
 | |
| 48 | + geodir_user_signup(); | |
| 49 | + } | |
| 50 | 50 | |
| 51 | 51 | } | 
| 52 | 52 | |
| @@ -59,47 +59,47 @@ discard block | ||
| 59 | 59 | */ | 
| 60 | 60 | function geodir_on_init() | 
| 61 | 61 |  {
 | 
| 62 | - /** | |
| 63 | - * Called on the wp_init WP hook at the start of the geodir_on_init() function. | |
| 64 | - * | |
| 65 | - * @since 1.0.0 | |
| 66 | - */ | |
| 67 | -    do_action('giodir_handle_request');
 | |
| 68 | - global $wpdb; | |
| 69 | - | |
| 70 | - | |
| 71 | - | |
| 72 | - | |
| 73 | -    if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
 | |
| 74 | - show_admin_bar(false); | |
| 75 | - } | |
| 76 | - | |
| 77 | - | |
| 78 | -    if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
 | |
| 79 | - /** | |
| 80 | - * Contains map marker functions. | |
| 81 | - * | |
| 82 | - * @since 1.0.0 | |
| 83 | - * @package GeoDirectory | |
| 84 | - */ | |
| 85 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); | |
| 86 | - die; | |
| 87 | - } | |
| 88 | - | |
| 89 | -    if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'ga') {
 | |
| 90 | -        if (isset($_REQUEST['ga_start'])) {
 | |
| 91 | - $ga_start = $_REQUEST['ga_start']; | |
| 92 | -        } else {
 | |
| 93 | - $ga_start = ''; | |
| 94 | - } | |
| 95 | -        if (isset($_REQUEST['ga_end'])) {
 | |
| 96 | - $ga_end = $_REQUEST['ga_end']; | |
| 97 | -        } else {
 | |
| 98 | - $ga_end = ''; | |
| 99 | - } | |
| 100 | - geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); | |
| 101 | - die; | |
| 102 | - } | |
| 62 | + /** | |
| 63 | + * Called on the wp_init WP hook at the start of the geodir_on_init() function. | |
| 64 | + * | |
| 65 | + * @since 1.0.0 | |
| 66 | + */ | |
| 67 | +	do_action('giodir_handle_request');
 | |
| 68 | + global $wpdb; | |
| 69 | + | |
| 70 | + | |
| 71 | + | |
| 72 | + | |
| 73 | +	if (get_option('geodir_allow_wpadmin') == '0' && is_user_logged_in() && !current_user_can('manage_options') && !class_exists('BuddyPress')) {
 | |
| 74 | + show_admin_bar(false); | |
| 75 | + } | |
| 76 | + | |
| 77 | + | |
| 78 | +	if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'get_markers') {
 | |
| 79 | + /** | |
| 80 | + * Contains map marker functions. | |
| 81 | + * | |
| 82 | + * @since 1.0.0 | |
| 83 | + * @package GeoDirectory | |
| 84 | + */ | |
| 85 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); | |
| 86 | + die; | |
| 87 | + } | |
| 88 | + | |
| 89 | +	if (isset($_REQUEST['ptype']) && $_REQUEST['ptype'] == 'ga') {
 | |
| 90 | +		if (isset($_REQUEST['ga_start'])) {
 | |
| 91 | + $ga_start = $_REQUEST['ga_start']; | |
| 92 | +		} else {
 | |
| 93 | + $ga_start = ''; | |
| 94 | + } | |
| 95 | +		if (isset($_REQUEST['ga_end'])) {
 | |
| 96 | + $ga_end = $_REQUEST['ga_end']; | |
| 97 | +		} else {
 | |
| 98 | + $ga_end = ''; | |
| 99 | + } | |
| 100 | + geodir_getGoogleAnalytics($_REQUEST['ga_page'], $ga_start, $ga_end); | |
| 101 | + die; | |
| 102 | + } | |
| 103 | 103 | |
| 104 | 104 | |
| 105 | 105 | } | 
| @@ -118,265 +118,265 @@ discard block | ||
| 118 | 118 | * @todo check if nonce is required here and if so add one. | 
| 119 | 119 | */ | 
| 120 | 120 |  function geodir_ajax_handler() {
 | 
| 121 | - global $wpdb, $gd_session; | |
| 121 | + global $wpdb, $gd_session; | |
| 122 | 122 | |
| 123 | -    if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
 | |
| 123 | +	if (isset($_REQUEST['gd_listing_view']) && $_REQUEST['gd_listing_view'] != '') {
 | |
| 124 | 124 |  		$gd_session->set('gd_listing_view', $_REQUEST['gd_listing_view']);
 | 
| 125 | - echo '1'; | |
| 126 | - } | |
| 127 | - | |
| 128 | -    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
 | |
| 129 | - if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) | |
| 130 | - geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); | |
| 131 | - else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) | |
| 132 | - geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); | |
| 133 | - } | |
| 134 | - | |
| 135 | -    if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
 | |
| 136 | -        if (current_user_can('manage_options')) {
 | |
| 137 | - /** | |
| 138 | - * Contains admin ajax handling functions. | |
| 139 | - * | |
| 140 | - * @since 1.0.0 | |
| 141 | - * @package GeoDirectory | |
| 142 | - */ | |
| 143 | - include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); | |
| 144 | -        } else {
 | |
| 145 | - wp_redirect(geodir_login_url()); | |
| 146 | - gd_die(); | |
| 147 | - } | |
| 148 | - } | |
| 149 | - | |
| 150 | -    if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
 | |
| 151 | -        if (current_user_can('manage_options')) {
 | |
| 152 | - switch ($_REQUEST['geodir_autofill']): | |
| 153 | - case "geodir_dummy_delete" : | |
| 154 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_delete_noncename')) | |
| 155 | - return; | |
| 156 | - | |
| 157 | - if (isset($_REQUEST['posttype'])) | |
| 158 | - /** | |
| 159 | - * Used to delete the dummy post data per post type. | |
| 160 | - * | |
| 161 | - * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. | |
| 162 | - * | |
| 163 | - * @since 1.0.0 | |
| 164 | - */ | |
| 165 | -                        do_action('geodir_delete_dummy_posts_' . $_REQUEST['posttype']);
 | |
| 166 | - break; | |
| 167 | - case "geodir_dummy_insert" : | |
| 168 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) | |
| 169 | - return; | |
| 170 | - | |
| 171 | - global $dummy_post_index, $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; | |
| 172 | - $dummy_post_index = $_REQUEST['insert_dummy_post_index']; | |
| 173 | - $city_bound_lat1 = $_REQUEST['city_bound_lat1']; | |
| 174 | - $city_bound_lng1 = $_REQUEST['city_bound_lng1']; | |
| 175 | - $city_bound_lat2 = $_REQUEST['city_bound_lat2']; | |
| 176 | - $city_bound_lng2 = $_REQUEST['city_bound_lng2']; | |
| 177 | - | |
| 178 | - if (isset($_REQUEST['posttype'])) | |
| 179 | - /** | |
| 180 | - * Used to insert the dummy post data per post type. | |
| 181 | - * | |
| 182 | - * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. | |
| 183 | - * | |
| 184 | - * @since 1.0.0 | |
| 185 | - */ | |
| 186 | -                        do_action('geodir_insert_dummy_posts_' . $_REQUEST['posttype']);
 | |
| 187 | - | |
| 188 | - break; | |
| 189 | - endswitch; | |
| 190 | -        } else {
 | |
| 191 | - wp_redirect(geodir_login_url()); | |
| 192 | - exit(); | |
| 193 | - } | |
| 194 | - } | |
| 195 | - | |
| 196 | -    if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
 | |
| 197 | - | |
| 198 | -        if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
 | |
| 199 | -            $template = locate_template(array("geodirectory/popup-forms.php"));
 | |
| 200 | -            if (!$template) {
 | |
| 201 | - $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; | |
| 202 | - } | |
| 203 | - require_once($template); | |
| 204 | - } | |
| 205 | - | |
| 206 | - gd_die(); | |
| 207 | - } | |
| 208 | - | |
| 209 | -    /*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
 | |
| 125 | + echo '1'; | |
| 126 | + } | |
| 127 | + | |
| 128 | +	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'category_ajax') {
 | |
| 129 | + if (isset($_REQUEST['main_catid']) && isset($_REQUEST['cat_tax']) && isset($_REQUEST['exclude'])) | |
| 130 | + geodir_addpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['main_catid'], '', '', '', $_REQUEST['exclude']); | |
| 131 | + else if (isset($_REQUEST['catpid']) && isset($_REQUEST['cat_tax'])) | |
| 132 | + geodir_editpost_categories_html($_REQUEST['cat_tax'], $_REQUEST['catpid']); | |
| 133 | + } | |
| 134 | + | |
| 135 | +	if ((isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'admin_ajax') || isset($_REQUEST['create_field']) || isset($_REQUEST['sort_create_field'])) {
 | |
| 136 | +		if (current_user_can('manage_options')) {
 | |
| 137 | + /** | |
| 138 | + * Contains admin ajax handling functions. | |
| 139 | + * | |
| 140 | + * @since 1.0.0 | |
| 141 | + * @package GeoDirectory | |
| 142 | + */ | |
| 143 | + include_once(geodir_plugin_path() . '/geodirectory-admin/geodir_admin_ajax.php'); | |
| 144 | +		} else {
 | |
| 145 | + wp_redirect(geodir_login_url()); | |
| 146 | + gd_die(); | |
| 147 | + } | |
| 148 | + } | |
| 149 | + | |
| 150 | +	if (isset($_REQUEST['geodir_autofill']) && $_REQUEST['geodir_autofill'] != '' && isset($_REQUEST['_wpnonce'])) {
 | |
| 151 | +		if (current_user_can('manage_options')) {
 | |
| 152 | + switch ($_REQUEST['geodir_autofill']): | |
| 153 | + case "geodir_dummy_delete" : | |
| 154 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_delete_noncename')) | |
| 155 | + return; | |
| 156 | + | |
| 157 | + if (isset($_REQUEST['posttype'])) | |
| 158 | + /** | |
| 159 | + * Used to delete the dummy post data per post type. | |
| 160 | + * | |
| 161 | + * Uses dynamic hook, geodir_delete_dummy_posts_$_REQUEST['posttype']. | |
| 162 | + * | |
| 163 | + * @since 1.0.0 | |
| 164 | + */ | |
| 165 | +						do_action('geodir_delete_dummy_posts_' . $_REQUEST['posttype']);
 | |
| 166 | + break; | |
| 167 | + case "geodir_dummy_insert" : | |
| 168 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir_dummy_posts_insert_noncename')) | |
| 169 | + return; | |
| 170 | + | |
| 171 | + global $dummy_post_index, $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2; | |
| 172 | + $dummy_post_index = $_REQUEST['insert_dummy_post_index']; | |
| 173 | + $city_bound_lat1 = $_REQUEST['city_bound_lat1']; | |
| 174 | + $city_bound_lng1 = $_REQUEST['city_bound_lng1']; | |
| 175 | + $city_bound_lat2 = $_REQUEST['city_bound_lat2']; | |
| 176 | + $city_bound_lng2 = $_REQUEST['city_bound_lng2']; | |
| 177 | + | |
| 178 | + if (isset($_REQUEST['posttype'])) | |
| 179 | + /** | |
| 180 | + * Used to insert the dummy post data per post type. | |
| 181 | + * | |
| 182 | + * Uses dynamic hook, geodir_insert_dummy_posts_$_REQUEST['posttype']. | |
| 183 | + * | |
| 184 | + * @since 1.0.0 | |
| 185 | + */ | |
| 186 | +						do_action('geodir_insert_dummy_posts_' . $_REQUEST['posttype']);
 | |
| 187 | + | |
| 188 | + break; | |
| 189 | + endswitch; | |
| 190 | +		} else {
 | |
| 191 | + wp_redirect(geodir_login_url()); | |
| 192 | + exit(); | |
| 193 | + } | |
| 194 | + } | |
| 195 | + | |
| 196 | +	if (isset($_REQUEST['popuptype']) && $_REQUEST['popuptype'] != '' && isset($_REQUEST['post_id']) && $_REQUEST['post_id'] != '') {
 | |
| 197 | + | |
| 198 | +		if ($_REQUEST['popuptype'] == 'b_send_inquiry' || $_REQUEST['popuptype'] == 'b_sendtofriend') {
 | |
| 199 | +			$template = locate_template(array("geodirectory/popup-forms.php"));
 | |
| 200 | +			if (!$template) {
 | |
| 201 | + $template = geodir_plugin_path() . '/geodirectory-templates/popup-forms.php'; | |
| 202 | + } | |
| 203 | + require_once($template); | |
| 204 | + } | |
| 205 | + | |
| 206 | + gd_die(); | |
| 207 | + } | |
| 208 | + | |
| 209 | +	/*if(isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'filter_ajax'){
 | |
| 210 | 210 | include_once ( geodir_plugin_path() . '/geodirectory-templates/advance-search-form.php'); | 
| 211 | 211 | }*/ | 
| 212 | 212 | |
| 213 | -    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
 | |
| 214 | - /** | |
| 215 | - * Contains map marker functions. | |
| 216 | - * | |
| 217 | - * @since 1.0.0 | |
| 218 | - * @package GeoDirectory | |
| 219 | - */ | |
| 220 | - include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); | |
| 221 | - } | |
| 222 | - | |
| 223 | -    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
 | |
| 224 | -        if (is_user_logged_in()) {
 | |
| 225 | - switch ($_REQUEST['ajax_action']): | |
| 226 | - case "add" : | |
| 227 | - geodir_add_to_favorite((int)$_REQUEST['pid']); | |
| 228 | - break; | |
| 229 | - case "remove" : | |
| 230 | - geodir_remove_from_favorite((int)$_REQUEST['pid']); | |
| 231 | - break; | |
| 232 | - endswitch; | |
| 233 | -        } else {
 | |
| 234 | - wp_redirect(geodir_login_url()); | |
| 235 | - exit(); | |
| 236 | - } | |
| 237 | - } | |
| 238 | - | |
| 239 | -    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
 | |
| 240 | - | |
| 241 | - $is_current_user_owner = true; | |
| 242 | -        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 243 | - $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); | |
| 244 | - } | |
| 245 | - | |
| 246 | -        $request = $gd_session->get('listing');
 | |
| 247 | - | |
| 248 | -        if (is_user_logged_in() && $is_current_user_owner) {
 | |
| 249 | - | |
| 250 | - switch ($_REQUEST['ajax_action']): | |
| 251 | - case "add": | |
| 252 | - case "update": | |
| 253 | - | |
| 254 | -                    if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
 | |
| 255 | - $last_id = geodir_save_listing(); | |
| 256 | - | |
| 257 | -                        if ($last_id) {
 | |
| 258 | - //$redirect_to = get_permalink( $last_id ); | |
| 259 | -                            $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
 | |
| 260 | - | |
| 261 | -                        } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 262 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 263 | -                            $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
 | |
| 264 | - } else | |
| 265 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 266 | - | |
| 267 | - wp_redirect($redirect_to); | |
| 268 | -                    } else {
 | |
| 269 | -                        $gd_session->un_set('listing');
 | |
| 270 | - wp_redirect(home_url()); | |
| 271 | - } | |
| 272 | - | |
| 273 | - break; | |
| 274 | - case "cancel" : | |
| 275 | - | |
| 276 | -                    $gd_session->un_set('listing');
 | |
| 277 | - | |
| 278 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) | |
| 279 | - wp_redirect(get_permalink($_REQUEST['pid'])); | |
| 280 | -                    else {
 | |
| 281 | - geodir_remove_temp_images(); | |
| 282 | -                        wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
 | |
| 283 | - } | |
| 284 | - | |
| 285 | - break; | |
| 286 | - | |
| 287 | - case "publish" : | |
| 288 | - | |
| 289 | -                    if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
 | |
| 290 | - | |
| 291 | -                        if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 292 | - $new_post = array(); | |
| 293 | - $new_post['ID'] = $_REQUEST['pid']; | |
| 294 | - | |
| 295 | - $lastid = wp_update_post($new_post); | |
| 296 | - | |
| 297 | -                            $gd_session->un_set('listing');
 | |
| 298 | - wp_redirect(get_permalink($lastid)); | |
| 299 | -                        } else {
 | |
| 300 | - $last_id = geodir_save_listing(); | |
| 301 | - | |
| 302 | -                            if ($last_id) {
 | |
| 303 | - //$redirect_to = get_permalink( $last_id ); | |
| 304 | -                                $redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
 | |
| 305 | -                            } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 306 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 307 | -                                $redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
 | |
| 308 | - } else | |
| 309 | - $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 310 | - | |
| 311 | -                            $gd_session->un_set('listing');
 | |
| 312 | - wp_redirect($redirect_to); | |
| 313 | - } | |
| 314 | -                    } else {
 | |
| 315 | -                        $gd_session->un_set('listing');
 | |
| 316 | - wp_redirect(home_url()); | |
| 317 | - } | |
| 318 | - | |
| 319 | - break; | |
| 320 | - case "delete" : | |
| 321 | -                    if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 322 | - global $current_user; | |
| 323 | - | |
| 324 | -                        if (get_option('geodir_disable_perm_delete')) {
 | |
| 325 | - $lastid = wp_trash_post($_REQUEST['pid']); | |
| 326 | -                        } else {
 | |
| 327 | - $lastid = wp_delete_post($_REQUEST['pid']); | |
| 328 | - } | |
| 329 | - | |
| 330 | - if ($lastid && !is_wp_error($lastid)) | |
| 331 | - wp_redirect($_SERVER['HTTP_REFERER']); | |
| 332 | - | |
| 333 | -                        //wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
 | |
| 334 | - } | |
| 335 | - break; | |
| 336 | - endswitch; | |
| 337 | - | |
| 338 | -            $gd_session->un_set('listing');
 | |
| 339 | -        } else {
 | |
| 340 | -            $gd_session->un_set('listing');
 | |
| 341 | - wp_redirect(geodir_login_url()); | |
| 342 | - exit(); | |
| 343 | - } | |
| 344 | - } | |
| 345 | - | |
| 346 | -    if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
 | |
| 347 | - /** | |
| 348 | - * Contains registration and login functions. | |
| 349 | - * @todo Fix the file path. | |
| 350 | - * | |
| 351 | - * @since 1.0.0 | |
| 352 | - * @package GeoDirectory | |
| 353 | - */ | |
| 354 | - include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); | |
| 355 | - } | |
| 356 | - | |
| 357 | -    if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
 | |
| 358 | -        $args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
 | |
| 359 | -        if (!empty($_REQUEST['parent_only'])) {
 | |
| 360 | - $args['parent'] = 0; | |
| 361 | - } | |
| 362 | - $terms_o = get_terms($args); | |
| 213 | +	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'map_ajax') {
 | |
| 214 | + /** | |
| 215 | + * Contains map marker functions. | |
| 216 | + * | |
| 217 | + * @since 1.0.0 | |
| 218 | + * @package GeoDirectory | |
| 219 | + */ | |
| 220 | + include_once(geodir_plugin_path() . '/geodirectory-functions/map-functions/get_markers.php'); | |
| 221 | + } | |
| 222 | + | |
| 223 | +	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'favorite') {
 | |
| 224 | +		if (is_user_logged_in()) {
 | |
| 225 | + switch ($_REQUEST['ajax_action']): | |
| 226 | + case "add" : | |
| 227 | + geodir_add_to_favorite((int)$_REQUEST['pid']); | |
| 228 | + break; | |
| 229 | + case "remove" : | |
| 230 | + geodir_remove_from_favorite((int)$_REQUEST['pid']); | |
| 231 | + break; | |
| 232 | + endswitch; | |
| 233 | +		} else {
 | |
| 234 | + wp_redirect(geodir_login_url()); | |
| 235 | + exit(); | |
| 236 | + } | |
| 237 | + } | |
| 238 | + | |
| 239 | +	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'add_listing') {
 | |
| 240 | + | |
| 241 | + $is_current_user_owner = true; | |
| 242 | +		if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 243 | + $is_current_user_owner = geodir_listing_belong_to_current_user((int)$_REQUEST['pid']); | |
| 244 | + } | |
| 245 | + | |
| 246 | +		$request = $gd_session->get('listing');
 | |
| 247 | + | |
| 248 | +		if (is_user_logged_in() && $is_current_user_owner) {
 | |
| 249 | + | |
| 250 | + switch ($_REQUEST['ajax_action']): | |
| 251 | + case "add": | |
| 252 | + case "update": | |
| 253 | + | |
| 254 | +					if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
 | |
| 255 | + $last_id = geodir_save_listing(); | |
| 256 | + | |
| 257 | +						if ($last_id) {
 | |
| 258 | + //$redirect_to = get_permalink( $last_id ); | |
| 259 | +							$redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
 | |
| 260 | + | |
| 261 | +						} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 262 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 263 | +							$redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
 | |
| 264 | + } else | |
| 265 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 266 | + | |
| 267 | + wp_redirect($redirect_to); | |
| 268 | +					} else {
 | |
| 269 | +						$gd_session->un_set('listing');
 | |
| 270 | + wp_redirect(home_url()); | |
| 271 | + } | |
| 272 | + | |
| 273 | + break; | |
| 274 | + case "cancel" : | |
| 275 | + | |
| 276 | +					$gd_session->un_set('listing');
 | |
| 277 | + | |
| 278 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '' && get_permalink($_REQUEST['pid'])) | |
| 279 | + wp_redirect(get_permalink($_REQUEST['pid'])); | |
| 280 | +					else {
 | |
| 281 | + geodir_remove_temp_images(); | |
| 282 | +						wp_redirect(geodir_getlink(get_permalink(geodir_add_listing_page_id()), array('listing_type' => $_REQUEST['listing_type'])));
 | |
| 283 | + } | |
| 284 | + | |
| 285 | + break; | |
| 286 | + | |
| 287 | + case "publish" : | |
| 288 | + | |
| 289 | +					if (isset($request['geodir_spamblocker']) && $request['geodir_spamblocker'] == '64' && isset($request['geodir_filled_by_spam_bot']) && $request['geodir_filled_by_spam_bot'] == '') {
 | |
| 290 | + | |
| 291 | +						if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 292 | + $new_post = array(); | |
| 293 | + $new_post['ID'] = $_REQUEST['pid']; | |
| 294 | + | |
| 295 | + $lastid = wp_update_post($new_post); | |
| 296 | + | |
| 297 | +							$gd_session->un_set('listing');
 | |
| 298 | + wp_redirect(get_permalink($lastid)); | |
| 299 | +						} else {
 | |
| 300 | + $last_id = geodir_save_listing(); | |
| 301 | + | |
| 302 | +							if ($last_id) {
 | |
| 303 | + //$redirect_to = get_permalink( $last_id ); | |
| 304 | +								$redirect_to = geodir_getlink(get_permalink(geodir_success_page_id()), array('pid' => $last_id));
 | |
| 305 | +							} elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 306 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 307 | +								$redirect_to = geodir_getlink($redirect_to, array('pid' => $post->pid), false);
 | |
| 308 | + } else | |
| 309 | + $redirect_to = get_permalink(geodir_add_listing_page_id()); | |
| 310 | + | |
| 311 | +							$gd_session->un_set('listing');
 | |
| 312 | + wp_redirect($redirect_to); | |
| 313 | + } | |
| 314 | +					} else {
 | |
| 315 | +						$gd_session->un_set('listing');
 | |
| 316 | + wp_redirect(home_url()); | |
| 317 | + } | |
| 318 | + | |
| 319 | + break; | |
| 320 | + case "delete" : | |
| 321 | +					if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
 | |
| 322 | + global $current_user; | |
| 323 | + | |
| 324 | +						if (get_option('geodir_disable_perm_delete')) {
 | |
| 325 | + $lastid = wp_trash_post($_REQUEST['pid']); | |
| 326 | +						} else {
 | |
| 327 | + $lastid = wp_delete_post($_REQUEST['pid']); | |
| 328 | + } | |
| 329 | + | |
| 330 | + if ($lastid && !is_wp_error($lastid)) | |
| 331 | + wp_redirect($_SERVER['HTTP_REFERER']); | |
| 332 | + | |
| 333 | +						//wp_redirect( geodir_getlink(get_author_posts_url($current_user->ID),array('geodir_dashbord'=>'true','stype'=>$post_type ),false) );
 | |
| 334 | + } | |
| 335 | + break; | |
| 336 | + endswitch; | |
| 337 | + | |
| 338 | +			$gd_session->un_set('listing');
 | |
| 339 | +		} else {
 | |
| 340 | +			$gd_session->un_set('listing');
 | |
| 341 | + wp_redirect(geodir_login_url()); | |
| 342 | + exit(); | |
| 343 | + } | |
| 344 | + } | |
| 345 | + | |
| 346 | +	if (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] == 'user_login') {
 | |
| 347 | + /** | |
| 348 | + * Contains registration and login functions. | |
| 349 | + * @todo Fix the file path. | |
| 350 | + * | |
| 351 | + * @since 1.0.0 | |
| 352 | + * @package GeoDirectory | |
| 353 | + */ | |
| 354 | + include_once(geodir_plugin_path() . '/geodirectory-functions/geodirectory_reg.php'); | |
| 355 | + } | |
| 356 | + | |
| 357 | +	if (isset($_REQUEST['ajax_action']) && $_REQUEST['ajax_action'] == 'geodir_get_term_list') {
 | |
| 358 | +		$args = array('taxonomy' => sanitize_text_field($_REQUEST['term']));
 | |
| 359 | +		if (!empty($_REQUEST['parent_only'])) {
 | |
| 360 | + $args['parent'] = 0; | |
| 361 | + } | |
| 362 | + $terms_o = get_terms($args); | |
| 363 | 363 | |
| 364 | - // Skip terms which has no listing | |
| 365 | -        if (!empty($terms_o)) {
 | |
| 366 | - $filter_terms = array(); | |
| 364 | + // Skip terms which has no listing | |
| 365 | +		if (!empty($terms_o)) {
 | |
| 366 | + $filter_terms = array(); | |
| 367 | 367 | |
| 368 | -            foreach ($terms_o as $term) {
 | |
| 369 | -                if (isset($term->count) && $term->count > 0) {
 | |
| 370 | - $filter_terms[] = $term; | |
| 371 | - } | |
| 372 | - } | |
| 373 | - $terms_o = $filter_terms; | |
| 374 | - } | |
| 368 | +			foreach ($terms_o as $term) {
 | |
| 369 | +				if (isset($term->count) && $term->count > 0) {
 | |
| 370 | + $filter_terms[] = $term; | |
| 371 | + } | |
| 372 | + } | |
| 373 | + $terms_o = $filter_terms; | |
| 374 | + } | |
| 375 | 375 | |
| 376 | - $terms = geodir_sort_terms($terms_o, 'count'); | |
| 377 | - geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); | |
| 378 | - exit(); | |
| 379 | - } | |
| 376 | + $terms = geodir_sort_terms($terms_o, 'count'); | |
| 377 | + geodir_helper_cat_list_output($terms, intval($_REQUEST['limit'])); | |
| 378 | + exit(); | |
| 379 | + } | |
| 380 | 380 | |
| 381 | - gd_die(); | |
| 381 | + gd_die(); | |
| 382 | 382 | } | 
| @@ -14,83 +14,83 @@ discard block | ||
| 14 | 14 | */ | 
| 15 | 15 | class geodir_popular_post_category extends WP_Widget | 
| 16 | 16 |  {
 | 
| 17 | - /** | |
| 18 | - * Register the popular post category widget. | |
| 19 | - * | |
| 20 | - * @since 1.0.0 | |
| 21 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. | |
| 22 | - */ | |
| 23 | -    public function __construct() {
 | |
| 24 | -        $widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
 | |
| 25 | - parent::__construct( | |
| 26 | - 'popular_post_category', // Base ID | |
| 27 | -            __('GD > Popular Post Category', 'geodirectory'), // Name
 | |
| 28 | - $widget_ops// Args | |
| 29 | - ); | |
| 30 | - } | |
| 31 | - | |
| 32 | - /** | |
| 33 | - * Front-end display content for popular post category widget. | |
| 34 | - * | |
| 35 | - * @since 1.0.0 | |
| 36 | - * @since 1.5.1 Declare function public. | |
| 37 | - * | |
| 38 | - * @param array $args Widget arguments. | |
| 39 | - * @param array $instance Saved values from database. | |
| 40 | - */ | |
| 41 | - public function widget($args, $instance) | |
| 42 | -    {
 | |
| 43 | - geodir_popular_post_category_output($args, $instance); | |
| 44 | - } | |
| 45 | - | |
| 46 | - /** | |
| 47 | - * Sanitize popular post category widget form values as they are saved. | |
| 48 | - * | |
| 49 | - * @since 1.0.0 | |
| 50 | - * @since 1.5.1 Declare function public. | |
| 51 | - * @since 1.5.1 Added default_post_type parameter. | |
| 52 | - * @since 1.6.9 Added parent_only parameter. | |
| 53 | - * | |
| 54 | - * @param array $new_instance Values just sent to be saved. | |
| 55 | - * @param array $old_instance Previously saved values from database. | |
| 56 | - * | |
| 57 | - * @return array Updated safe values to be saved. | |
| 58 | - */ | |
| 59 | - public function update($new_instance, $old_instance) | |
| 60 | -    {
 | |
| 61 | - //save the widget | |
| 62 | - $instance = $old_instance; | |
| 63 | - $instance['title'] = strip_tags($new_instance['title']); | |
| 64 | - $category_limit = (int)$new_instance['category_limit']; | |
| 65 | - $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15; | |
| 66 | - $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : ''; | |
| 67 | - $instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false; | |
| 68 | - return $instance; | |
| 69 | - } | |
| 70 | - | |
| 71 | - /** | |
| 72 | - * Back-end popular post category widget settings form. | |
| 73 | - * | |
| 74 | - * @since 1.0.0 | |
| 75 | - * @since 1.5.1 Declare function public. | |
| 76 | - * @since 1.5.1 Added option to set default post type. | |
| 77 | - * @since 1.6.9 Added option to show parent categories only. | |
| 78 | - * | |
| 79 | - * @param array $instance Previously saved values from database. | |
| 80 | - */ | |
| 81 | - public function form($instance) | |
| 82 | -    {
 | |
| 83 | - //widgetform in backend | |
| 84 | -        $instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
 | |
| 85 | - | |
| 86 | - $title = strip_tags($instance['title']); | |
| 87 | - $category_limit = (int)$instance['category_limit']; | |
| 88 | - $category_limit = $category_limit > 0 ? $category_limit : 15; | |
| 89 | - $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : ''; | |
| 90 | - $parent_only = !empty($instance['parent_only']) ? true: false; | |
| 17 | + /** | |
| 18 | + * Register the popular post category widget. | |
| 19 | + * | |
| 20 | + * @since 1.0.0 | |
| 21 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. | |
| 22 | + */ | |
| 23 | +	public function __construct() {
 | |
| 24 | +		$widget_ops = array('classname' => 'geodir_popular_post_category', 'description' => __('GD > Popular Post Category', 'geodirectory'));
 | |
| 25 | + parent::__construct( | |
| 26 | + 'popular_post_category', // Base ID | |
| 27 | +			__('GD > Popular Post Category', 'geodirectory'), // Name
 | |
| 28 | + $widget_ops// Args | |
| 29 | + ); | |
| 30 | + } | |
| 31 | + | |
| 32 | + /** | |
| 33 | + * Front-end display content for popular post category widget. | |
| 34 | + * | |
| 35 | + * @since 1.0.0 | |
| 36 | + * @since 1.5.1 Declare function public. | |
| 37 | + * | |
| 38 | + * @param array $args Widget arguments. | |
| 39 | + * @param array $instance Saved values from database. | |
| 40 | + */ | |
| 41 | + public function widget($args, $instance) | |
| 42 | +	{
 | |
| 43 | + geodir_popular_post_category_output($args, $instance); | |
| 44 | + } | |
| 45 | + | |
| 46 | + /** | |
| 47 | + * Sanitize popular post category widget form values as they are saved. | |
| 48 | + * | |
| 49 | + * @since 1.0.0 | |
| 50 | + * @since 1.5.1 Declare function public. | |
| 51 | + * @since 1.5.1 Added default_post_type parameter. | |
| 52 | + * @since 1.6.9 Added parent_only parameter. | |
| 53 | + * | |
| 54 | + * @param array $new_instance Values just sent to be saved. | |
| 55 | + * @param array $old_instance Previously saved values from database. | |
| 56 | + * | |
| 57 | + * @return array Updated safe values to be saved. | |
| 58 | + */ | |
| 59 | + public function update($new_instance, $old_instance) | |
| 60 | +	{
 | |
| 61 | + //save the widget | |
| 62 | + $instance = $old_instance; | |
| 63 | + $instance['title'] = strip_tags($new_instance['title']); | |
| 64 | + $category_limit = (int)$new_instance['category_limit']; | |
| 65 | + $instance['category_limit'] = $category_limit > 0 ? $category_limit : 15; | |
| 66 | + $instance['default_post_type'] = isset($new_instance['default_post_type']) ? $new_instance['default_post_type'] : ''; | |
| 67 | + $instance['parent_only'] = !empty($new_instance['parent_only']) ? true : false; | |
| 68 | + return $instance; | |
| 69 | + } | |
| 70 | + | |
| 71 | + /** | |
| 72 | + * Back-end popular post category widget settings form. | |
| 73 | + * | |
| 74 | + * @since 1.0.0 | |
| 75 | + * @since 1.5.1 Declare function public. | |
| 76 | + * @since 1.5.1 Added option to set default post type. | |
| 77 | + * @since 1.6.9 Added option to show parent categories only. | |
| 78 | + * | |
| 79 | + * @param array $instance Previously saved values from database. | |
| 80 | + */ | |
| 81 | + public function form($instance) | |
| 82 | +	{
 | |
| 83 | + //widgetform in backend | |
| 84 | +		$instance = wp_parse_args((array)$instance, array('title' => '', 'category_limit' => 15, 'default_post_type' => '', 'parent_only' => false));
 | |
| 85 | + | |
| 86 | + $title = strip_tags($instance['title']); | |
| 87 | + $category_limit = (int)$instance['category_limit']; | |
| 88 | + $category_limit = $category_limit > 0 ? $category_limit : 15; | |
| 89 | + $default_post_type = isset($instance['default_post_type']) ? $instance['default_post_type'] : ''; | |
| 90 | + $parent_only = !empty($instance['parent_only']) ? true: false; | |
| 91 | 91 | |
| 92 | -        $post_type_options = geodir_get_posttypes('options');
 | |
| 93 | - ?> | |
| 92 | +		$post_type_options = geodir_get_posttypes('options');
 | |
| 93 | + ?> | |
| 94 | 94 | <p> | 
| 95 | 95 |              <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory'); ?>
 | 
| 96 | 96 |                  <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo esc_attr($title); ?>"/>
 | 
| @@ -116,7 +116,7 @@ discard block | ||
| 116 | 116 |              <label for="<?php echo $this->get_field_id('parent_only'); ?>"><?php _e( 'Show parent categories only', 'geodirectory' ); ?></label>
 | 
| 117 | 117 | </p> | 
| 118 | 118 | <?php | 
| 119 | - } | |
| 119 | + } | |
| 120 | 120 | } // class geodir_popular_post_category | 
| 121 | 121 | |
| 122 | 122 |  register_widget('geodir_popular_post_category');
 | 
| @@ -130,40 +130,40 @@ discard block | ||
| 130 | 130 | class geodir_popular_postview extends WP_Widget | 
| 131 | 131 |  {
 | 
| 132 | 132 | |
| 133 | - /** | |
| 133 | + /** | |
| 134 | 134 | * Register the popular posts widget. | 
| 135 | 135 | * | 
| 136 | 136 | * @since 1.0.0 | 
| 137 | - * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. | |
| 137 | + * @since 1.5.1 Changed from PHP4 style constructors to PHP5 __construct. | |
| 138 | 138 | */ | 
| 139 | -    public function __construct() {
 | |
| 140 | -        $widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
 | |
| 141 | - parent::__construct( | |
| 142 | - 'popular_post_view', // Base ID | |
| 143 | -            __('GD > Popular Post View', 'geodirectory'), // Name
 | |
| 144 | - $widget_ops// Args | |
| 145 | - ); | |
| 146 | - } | |
| 139 | +	public function __construct() {
 | |
| 140 | +		$widget_ops = array('classname' => 'geodir_popular_post_view', 'description' => __('GD > Popular Post View', 'geodirectory'));
 | |
| 141 | + parent::__construct( | |
| 142 | + 'popular_post_view', // Base ID | |
| 143 | +			__('GD > Popular Post View', 'geodirectory'), // Name
 | |
| 144 | + $widget_ops// Args | |
| 145 | + ); | |
| 146 | + } | |
| 147 | 147 | |
| 148 | 148 | /** | 
| 149 | 149 | * Front-end display content for popular posts widget. | 
| 150 | 150 | * | 
| 151 | 151 | * @since 1.0.0 | 
| 152 | - * @since 1.5.1 Declare function public. | |
| 152 | + * @since 1.5.1 Declare function public. | |
| 153 | 153 | * | 
| 154 | 154 | * @param array $args Widget arguments. | 
| 155 | 155 | * @param array $instance Saved values from database. | 
| 156 | 156 | */ | 
| 157 | 157 | public function widget($args, $instance) | 
| 158 | -    {
 | |
| 159 | - geodir_popular_postview_output($args, $instance); | |
| 160 | - } | |
| 158 | +	{
 | |
| 159 | + geodir_popular_postview_output($args, $instance); | |
| 160 | + } | |
| 161 | 161 | |
| 162 | 162 | /** | 
| 163 | 163 | * Sanitize popular posts widget form values as they are saved. | 
| 164 | 164 | * | 
| 165 | 165 | * @since 1.0.0 | 
| 166 | - * @since 1.5.1 Declare function public. | |
| 166 | + * @since 1.5.1 Declare function public. | |
| 167 | 167 | * | 
| 168 | 168 | * @param array $new_instance Values just sent to be saved. | 
| 169 | 169 | * @param array $old_instance Previously saved values from database. | 
| @@ -171,99 +171,99 @@ discard block | ||
| 171 | 171 | * @return array Updated safe values to be saved. | 
| 172 | 172 | */ | 
| 173 | 173 | public function update($new_instance, $old_instance) | 
| 174 | -    {
 | |
| 175 | - //save the widget | |
| 176 | - $instance = $old_instance; | |
| 177 | - | |
| 178 | -        if ($new_instance['title'] == '') {
 | |
| 179 | - $title = geodir_ucwords(strip_tags($new_instance['category_title'])); | |
| 180 | - //$instance['title'] = $title; | |
| 181 | - } | |
| 182 | - $instance['title'] = strip_tags($new_instance['title']); | |
| 183 | - | |
| 184 | - $instance['post_type'] = strip_tags($new_instance['post_type']); | |
| 185 | - //$instance['category'] = strip_tags($new_instance['category']); | |
| 186 | - $instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : ''; | |
| 187 | - $instance['category_title'] = strip_tags($new_instance['category_title']); | |
| 188 | - $instance['post_number'] = strip_tags($new_instance['post_number']); | |
| 189 | - $instance['layout'] = strip_tags($new_instance['layout']); | |
| 190 | - $instance['listing_width'] = strip_tags($new_instance['listing_width']); | |
| 191 | - $instance['list_sort'] = strip_tags($new_instance['list_sort']); | |
| 192 | - $instance['character_count'] = $new_instance['character_count']; | |
| 193 | - if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') | |
| 194 | - $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); | |
| 195 | - else | |
| 196 | - $instance['add_location_filter'] = '0'; | |
| 197 | - | |
| 198 | - $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; | |
| 199 | - $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0; | |
| 200 | - $instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0; | |
| 201 | - $instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0; | |
| 202 | - $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0; | |
| 203 | - | |
| 204 | - return $instance; | |
| 205 | - } | |
| 174 | +	{
 | |
| 175 | + //save the widget | |
| 176 | + $instance = $old_instance; | |
| 177 | + | |
| 178 | +		if ($new_instance['title'] == '') {
 | |
| 179 | + $title = geodir_ucwords(strip_tags($new_instance['category_title'])); | |
| 180 | + //$instance['title'] = $title; | |
| 181 | + } | |
| 182 | + $instance['title'] = strip_tags($new_instance['title']); | |
| 183 | + | |
| 184 | + $instance['post_type'] = strip_tags($new_instance['post_type']); | |
| 185 | + //$instance['category'] = strip_tags($new_instance['category']); | |
| 186 | + $instance['category'] = isset($new_instance['category']) ? $new_instance['category'] : ''; | |
| 187 | + $instance['category_title'] = strip_tags($new_instance['category_title']); | |
| 188 | + $instance['post_number'] = strip_tags($new_instance['post_number']); | |
| 189 | + $instance['layout'] = strip_tags($new_instance['layout']); | |
| 190 | + $instance['listing_width'] = strip_tags($new_instance['listing_width']); | |
| 191 | + $instance['list_sort'] = strip_tags($new_instance['list_sort']); | |
| 192 | + $instance['character_count'] = $new_instance['character_count']; | |
| 193 | + if (isset($new_instance['add_location_filter']) && $new_instance['add_location_filter'] != '') | |
| 194 | + $instance['add_location_filter'] = strip_tags($new_instance['add_location_filter']); | |
| 195 | + else | |
| 196 | + $instance['add_location_filter'] = '0'; | |
| 197 | + | |
| 198 | + $instance['show_featured_only'] = isset($new_instance['show_featured_only']) && $new_instance['show_featured_only'] ? 1 : 0; | |
| 199 | + $instance['show_special_only'] = isset($new_instance['show_special_only']) && $new_instance['show_special_only'] ? 1 : 0; | |
| 200 | + $instance['with_pics_only'] = isset($new_instance['with_pics_only']) && $new_instance['with_pics_only'] ? 1 : 0; | |
| 201 | + $instance['with_videos_only'] = isset($new_instance['with_videos_only']) && $new_instance['with_videos_only'] ? 1 : 0; | |
| 202 | + $instance['use_viewing_post_type'] = isset($new_instance['use_viewing_post_type']) && $new_instance['use_viewing_post_type'] ? 1 : 0; | |
| 203 | + | |
| 204 | + return $instance; | |
| 205 | + } | |
| 206 | 206 | |
| 207 | 207 | /** | 
| 208 | 208 | * Back-end popular posts widget settings form. | 
| 209 | 209 | * | 
| 210 | 210 | * @since 1.0.0 | 
| 211 | - * @since 1.5.1 Declare function public. | |
| 211 | + * @since 1.5.1 Declare function public. | |
| 212 | 212 | * | 
| 213 | 213 | * @param array $instance Previously saved values from database. | 
| 214 | 214 | */ | 
| 215 | 215 | public function form($instance) | 
| 216 | -    {
 | |
| 217 | - //widgetform in backend | |
| 218 | - $instance = wp_parse_args((array)$instance, | |
| 219 | -            array('title' => '',
 | |
| 220 | - 'post_type' => '', | |
| 221 | - 'category' => array(), | |
| 222 | - 'category_title' => '', | |
| 223 | - 'list_sort' => '', | |
| 224 | - 'list_order' => '', | |
| 225 | - 'post_number' => '5', | |
| 226 | - 'layout' => 'gridview_onehalf', | |
| 227 | - 'listing_width' => '', | |
| 228 | - 'add_location_filter' => '1', | |
| 229 | - 'character_count' => '20', | |
| 230 | - 'show_featured_only' => '', | |
| 231 | - 'show_special_only' => '', | |
| 232 | - 'with_pics_only' => '', | |
| 233 | - 'with_videos_only' => '', | |
| 234 | - 'use_viewing_post_type' => '' | |
| 235 | - ) | |
| 236 | - ); | |
| 216 | +	{
 | |
| 217 | + //widgetform in backend | |
| 218 | + $instance = wp_parse_args((array)$instance, | |
| 219 | +			array('title' => '',
 | |
| 220 | + 'post_type' => '', | |
| 221 | + 'category' => array(), | |
| 222 | + 'category_title' => '', | |
| 223 | + 'list_sort' => '', | |
| 224 | + 'list_order' => '', | |
| 225 | + 'post_number' => '5', | |
| 226 | + 'layout' => 'gridview_onehalf', | |
| 227 | + 'listing_width' => '', | |
| 228 | + 'add_location_filter' => '1', | |
| 229 | + 'character_count' => '20', | |
| 230 | + 'show_featured_only' => '', | |
| 231 | + 'show_special_only' => '', | |
| 232 | + 'with_pics_only' => '', | |
| 233 | + 'with_videos_only' => '', | |
| 234 | + 'use_viewing_post_type' => '' | |
| 235 | + ) | |
| 236 | + ); | |
| 237 | 237 | |
| 238 | - $title = strip_tags($instance['title']); | |
| 238 | + $title = strip_tags($instance['title']); | |
| 239 | 239 | |
| 240 | - $post_type = strip_tags($instance['post_type']); | |
| 240 | + $post_type = strip_tags($instance['post_type']); | |
| 241 | 241 | |
| 242 | - $category = $instance['category']; | |
| 242 | + $category = $instance['category']; | |
| 243 | 243 | |
| 244 | - $category_title = strip_tags($instance['category_title']); | |
| 244 | + $category_title = strip_tags($instance['category_title']); | |
| 245 | 245 | |
| 246 | - $list_sort = strip_tags($instance['list_sort']); | |
| 246 | + $list_sort = strip_tags($instance['list_sort']); | |
| 247 | 247 | |
| 248 | - $list_order = strip_tags($instance['list_order']); | |
| 248 | + $list_order = strip_tags($instance['list_order']); | |
| 249 | 249 | |
| 250 | - $post_number = strip_tags($instance['post_number']); | |
| 250 | + $post_number = strip_tags($instance['post_number']); | |
| 251 | 251 | |
| 252 | - $layout = strip_tags($instance['layout']); | |
| 252 | + $layout = strip_tags($instance['layout']); | |
| 253 | 253 | |
| 254 | - $listing_width = strip_tags($instance['listing_width']); | |
| 254 | + $listing_width = strip_tags($instance['listing_width']); | |
| 255 | 255 | |
| 256 | - $add_location_filter = strip_tags($instance['add_location_filter']); | |
| 256 | + $add_location_filter = strip_tags($instance['add_location_filter']); | |
| 257 | 257 | |
| 258 | - $character_count = $instance['character_count']; | |
| 258 | + $character_count = $instance['character_count']; | |
| 259 | 259 | |
| 260 | - $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; | |
| 261 | - $show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false; | |
| 262 | - $with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false; | |
| 263 | - $with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false; | |
| 264 | - $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false; | |
| 260 | + $show_featured_only = isset($instance['show_featured_only']) && $instance['show_featured_only'] ? true : false; | |
| 261 | + $show_special_only = isset($instance['show_special_only']) && $instance['show_special_only'] ? true : false; | |
| 262 | + $with_pics_only = isset($instance['with_pics_only']) && $instance['with_pics_only'] ? true : false; | |
| 263 | + $with_videos_only = isset($instance['with_videos_only']) && $instance['with_videos_only'] ? true : false; | |
| 264 | + $use_viewing_post_type = isset($instance['use_viewing_post_type']) && $instance['use_viewing_post_type'] ? true : false; | |
| 265 | 265 | |
| 266 | - ?> | |
| 266 | + ?> | |
| 267 | 267 | |
| 268 | 268 | <p> | 
| 269 | 269 |              <label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:', 'geodirectory');?>
 | 
| @@ -298,9 +298,9 @@ discard block | ||
| 298 | 298 |                      <?php foreach ($postypes as $postypes_obj) { ?>
 | 
| 299 | 299 | |
| 300 | 300 |                          <option <?php if ($post_type == $postypes_obj) {
 | 
| 301 | - echo 'selected="selected"'; | |
| 302 | -                        } ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
 | |
| 303 | - echo ucfirst($extvalue[1]); ?></option> | |
| 301 | + echo 'selected="selected"'; | |
| 302 | +						} ?> value="<?php echo $postypes_obj; ?>"><?php $extvalue = explode('_', $postypes_obj);
 | |
| 303 | + echo ucfirst($extvalue[1]); ?></option> | |
| 304 | 304 | |
| 305 | 305 | <?php } ?> | 
| 306 | 306 | |
| @@ -315,30 +315,30 @@ discard block | ||
| 315 | 315 | |
| 316 | 316 | <?php | 
| 317 | 317 | |
| 318 | - $post_type = ($post_type != '') ? $post_type : 'gd_place'; | |
| 318 | + $post_type = ($post_type != '') ? $post_type : 'gd_place'; | |
| 319 | 319 | |
| 320 | - $all_postypes = geodir_get_posttypes(); | |
| 320 | + $all_postypes = geodir_get_posttypes(); | |
| 321 | 321 | |
| 322 | - if (!in_array($post_type, $all_postypes)) | |
| 323 | - $post_type = 'gd_place'; | |
| 322 | + if (!in_array($post_type, $all_postypes)) | |
| 323 | + $post_type = 'gd_place'; | |
| 324 | 324 | |
| 325 | - $category_taxonomy = geodir_get_taxonomies($post_type); | |
| 326 | -                $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
 | |
| 325 | + $category_taxonomy = geodir_get_taxonomies($post_type); | |
| 326 | +				$categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC'));
 | |
| 327 | 327 | |
| 328 | - ?> | |
| 328 | + ?> | |
| 329 | 329 | |
| 330 | 330 |                  <select multiple="multiple" class="widefat" name="<?php echo $this->get_field_name('category'); ?>[]"
 | 
| 331 | 331 | onchange="geodir_popular_widget_cat_title(this)"> | 
| 332 | 332 | |
| 333 | 333 |                      <option <?php if (!is_array($category) || (is_array($category) && in_array('0', $category))) {
 | 
| 334 | - echo 'selected="selected"'; | |
| 335 | -                    } ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
 | |
| 334 | + echo 'selected="selected"'; | |
| 335 | +					} ?> value="0"><?php _e('All', 'geodirectory'); ?></option>
 | |
| 336 | 336 |                      <?php foreach ($categories as $category_obj) {
 | 
| 337 | - $selected = ''; | |
| 338 | - if (is_array($category) && in_array($category_obj->term_id, $category)) | |
| 339 | - echo $selected = 'selected="selected"'; | |
| 337 | + $selected = ''; | |
| 338 | + if (is_array($category) && in_array($category_obj->term_id, $category)) | |
| 339 | + echo $selected = 'selected="selected"'; | |
| 340 | 340 | |
| 341 | - ?> | |
| 341 | + ?> | |
| 342 | 342 | |
| 343 | 343 | <option <?php echo $selected; ?> | 
| 344 | 344 | value="<?php echo $category_obj->term_id; ?>"><?php echo ucfirst($category_obj->name); ?></option> | 
| @@ -363,28 +363,28 @@ discard block | ||
| 363 | 363 |                          name="<?php echo $this->get_field_name('list_sort'); ?>">
 | 
| 364 | 364 | |
| 365 | 365 |                      <option <?php if ($list_sort == 'az') {
 | 
| 366 | - echo 'selected="selected"'; | |
| 367 | -                    } ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
 | |
| 366 | + echo 'selected="selected"'; | |
| 367 | +					} ?> value="az"><?php _e('A-Z', 'geodirectory'); ?></option>
 | |
| 368 | 368 | |
| 369 | 369 |                      <option <?php if ($list_sort == 'latest') {
 | 
| 370 | - echo 'selected="selected"'; | |
| 371 | -                    } ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
 | |
| 370 | + echo 'selected="selected"'; | |
| 371 | +					} ?> value="latest"><?php _e('Latest', 'geodirectory'); ?></option>
 | |
| 372 | 372 | |
| 373 | 373 |                      <option <?php if ($list_sort == 'featured') {
 | 
| 374 | - echo 'selected="selected"'; | |
| 375 | -                    } ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
 | |
| 374 | + echo 'selected="selected"'; | |
| 375 | +					} ?> value="featured"><?php _e('Featured', 'geodirectory'); ?></option>
 | |
| 376 | 376 | |
| 377 | 377 |                      <option <?php if ($list_sort == 'high_review') {
 | 
| 378 | - echo 'selected="selected"'; | |
| 379 | -                    } ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
 | |
| 378 | + echo 'selected="selected"'; | |
| 379 | +					} ?> value="high_review"><?php _e('Review', 'geodirectory'); ?></option>
 | |
| 380 | 380 | |
| 381 | 381 |                      <option <?php if ($list_sort == 'high_rating') {
 | 
| 382 | - echo 'selected="selected"'; | |
| 383 | -                    } ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
 | |
| 382 | + echo 'selected="selected"'; | |
| 383 | +					} ?> value="high_rating"><?php _e('Rating', 'geodirectory'); ?></option>
 | |
| 384 | 384 | |
| 385 | 385 |                      <option <?php if ($list_sort == 'random') {
 | 
| 386 | - echo 'selected="selected"'; | |
| 387 | -                    } ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
 | |
| 386 | + echo 'selected="selected"'; | |
| 387 | +					} ?> value="random"><?php _e('Random', 'geodirectory'); ?></option>
 | |
| 388 | 388 | |
| 389 | 389 | </select> | 
| 390 | 390 | </label> | 
| @@ -407,24 +407,24 @@ discard block | ||
| 407 | 407 |                  <select class="widefat" id="<?php echo $this->get_field_id('layout'); ?>"
 | 
| 408 | 408 |                          name="<?php echo $this->get_field_name('layout'); ?>">
 | 
| 409 | 409 |                      <option <?php if ($layout == 'gridview_onehalf') {
 | 
| 410 | - echo 'selected="selected"'; | |
| 411 | - } ?> | |
| 410 | + echo 'selected="selected"'; | |
| 411 | + } ?> | |
| 412 | 412 |                          value="gridview_onehalf"><?php _e('Grid View (Two Columns)', 'geodirectory'); ?></option>
 | 
| 413 | 413 |                      <option <?php if ($layout == 'gridview_onethird') {
 | 
| 414 | - echo 'selected="selected"'; | |
| 415 | - } ?> | |
| 414 | + echo 'selected="selected"'; | |
| 415 | + } ?> | |
| 416 | 416 |                          value="gridview_onethird"><?php _e('Grid View (Three Columns)', 'geodirectory'); ?></option>
 | 
| 417 | 417 |                      <option <?php if ($layout == 'gridview_onefourth') {
 | 
| 418 | - echo 'selected="selected"'; | |
| 419 | - } ?> | |
| 418 | + echo 'selected="selected"'; | |
| 419 | + } ?> | |
| 420 | 420 |                          value="gridview_onefourth"><?php _e('Grid View (Four Columns)', 'geodirectory'); ?></option>
 | 
| 421 | 421 |                      <option <?php if ($layout == 'gridview_onefifth') {
 | 
| 422 | - echo 'selected="selected"'; | |
| 423 | - } ?> | |
| 422 | + echo 'selected="selected"'; | |
| 423 | + } ?> | |
| 424 | 424 |                          value="gridview_onefifth"><?php _e('Grid View (Five Columns)', 'geodirectory'); ?></option>
 | 
| 425 | 425 |                      <option <?php if ($layout == 'list') {
 | 
| 426 | - echo 'selected="selected"'; | |
| 427 | -                    } ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
 | |
| 426 | + echo 'selected="selected"'; | |
| 427 | +					} ?> value="list"><?php _e('List view', 'geodirectory'); ?></option>
 | |
| 428 | 428 | |
| 429 | 429 | </select> | 
| 430 | 430 | </label> | 
| @@ -494,8 +494,8 @@ discard block | ||
| 494 | 494 |                  for="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"><?php _e('Use current viewing post type:', 'geodirectory'); ?>
 | 
| 495 | 495 |                  <input type="checkbox" id="<?php echo $this->get_field_id('use_viewing_post_type'); ?>"
 | 
| 496 | 496 |                         name="<?php echo $this->get_field_name('use_viewing_post_type'); ?>" <?php if ($use_viewing_post_type) {
 | 
| 497 | - echo 'checked="checked"'; | |
| 498 | - } ?> value="1"/> | |
| 497 | + echo 'checked="checked"'; | |
| 498 | + } ?> value="1"/> | |
| 499 | 499 | </label> | 
| 500 | 500 | </p> | 
| 501 | 501 | |
| @@ -539,7 +539,7 @@ discard block | ||
| 539 | 539 | </script> | 
| 540 | 540 | |
| 541 | 541 | <?php | 
| 542 | - } | |
| 542 | + } | |
| 543 | 543 | } // class geodir_popular_postview | 
| 544 | 544 | |
| 545 | 545 |  register_widget('geodir_popular_postview'); | 
| 546 | 546 | \ No newline at end of file |