@@ -1,9 +1,9 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Translate language string stored in database. Ex: Custom Fields |
|
4 | - * |
|
5 | - * @package GeoDirectory |
|
6 | - * @since 1.4.2 |
|
7 | - */ |
|
3 | + * Translate language string stored in database. Ex: Custom Fields |
|
4 | + * |
|
5 | + * @package GeoDirectory |
|
6 | + * @since 1.4.2 |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | // Language keys |
@@ -28,30 +28,30 @@ discard block |
||
28 | 28 | * CHECK FOR OLD COMPATIBILITY PACKS AND DISABLE IF THEY ARE ACTIVE |
29 | 29 | */ |
30 | 30 | if (is_admin()) { |
31 | - /** |
|
32 | - * Include WordPress core file so we can use core functions to check for active plugins. |
|
33 | - */ |
|
34 | - include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
31 | + /** |
|
32 | + * Include WordPress core file so we can use core functions to check for active plugins. |
|
33 | + */ |
|
34 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
35 | 35 | |
36 | - if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) { |
|
37 | - deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php'); |
|
38 | - } |
|
36 | + if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) { |
|
37 | + deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php'); |
|
38 | + } |
|
39 | 39 | |
40 | - if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) { |
|
41 | - deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php'); |
|
42 | - } |
|
40 | + if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) { |
|
41 | + deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php'); |
|
42 | + } |
|
43 | 43 | |
44 | - if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) { |
|
45 | - deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php'); |
|
46 | - } |
|
44 | + if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) { |
|
45 | + deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php'); |
|
46 | + } |
|
47 | 47 | |
48 | - if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) { |
|
49 | - deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php'); |
|
50 | - } |
|
48 | + if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) { |
|
49 | + deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php'); |
|
50 | + } |
|
51 | 51 | |
52 | - if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) { |
|
53 | - deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php'); |
|
54 | - } |
|
52 | + if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) { |
|
53 | + deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php'); |
|
54 | + } |
|
55 | 55 | |
56 | 56 | } |
57 | 57 | |
@@ -98,11 +98,11 @@ discard block |
||
98 | 98 | |
99 | 99 | |
100 | 100 | if ($_SERVER['REQUEST_URI'] == '' || $_SERVER['REQUEST_URI'] == '/') { |
101 | - /** |
|
102 | - * This tries to disable cache on homepage as it can be very dynamic. |
|
103 | - */ |
|
104 | - define('DONOTCACHEPAGE', TRUE); |
|
105 | - $_SERVER['DONOTCACHEPAGE']= TRUE; |
|
101 | + /** |
|
102 | + * This tries to disable cache on homepage as it can be very dynamic. |
|
103 | + */ |
|
104 | + define('DONOTCACHEPAGE', TRUE); |
|
105 | + $_SERVER['DONOTCACHEPAGE']= TRUE; |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | |
@@ -124,19 +124,19 @@ discard block |
||
124 | 124 | * @package GeoDirectory |
125 | 125 | */ |
126 | 126 | function geodir_error_log($log){ |
127 | - /* |
|
127 | + /* |
|
128 | 128 | * A filter to override the WP_DEBUG setting for function geodir_error_log(). |
129 | 129 | * |
130 | 130 | * @since 1.5.7 |
131 | 131 | */ |
132 | - $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
133 | - if ( true === $should_log ) { |
|
134 | - if ( is_array( $log ) || is_object( $log ) ) { |
|
135 | - error_log( print_r( $log, true ) ); |
|
136 | - } else { |
|
137 | - error_log( $log ); |
|
138 | - } |
|
139 | - } |
|
132 | + $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
133 | + if ( true === $should_log ) { |
|
134 | + if ( is_array( $log ) || is_object( $log ) ) { |
|
135 | + error_log( print_r( $log, true ) ); |
|
136 | + } else { |
|
137 | + error_log( $log ); |
|
138 | + } |
|
139 | + } |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -176,61 +176,61 @@ discard block |
||
176 | 176 | */ |
177 | 177 | if (is_admin()) { |
178 | 178 | |
179 | - /** |
|
180 | - * Include functions used in admin area only. |
|
181 | - * |
|
182 | - * @since 1.0.0 |
|
183 | - */ |
|
184 | - require_once('geodirectory-admin/admin_functions.php'); |
|
185 | - /** |
|
186 | - * Most actions/hooks used in admin area only are called from here. |
|
187 | - * |
|
188 | - * @since 1.0.0 |
|
189 | - */ |
|
190 | - require_once('geodirectory-admin/admin_hooks_actions.php'); |
|
191 | - /** |
|
192 | - * Most admin JS and CSS is called from here. |
|
193 | - * |
|
194 | - * @since 1.0.0 |
|
195 | - */ |
|
196 | - require_once('geodirectory-admin/admin_template_tags.php'); |
|
197 | - /** |
|
198 | - * Include any functions needed for upgrades. |
|
199 | - * |
|
200 | - * @since 1.0.0 |
|
201 | - */ |
|
202 | - require_once(geodir_plugin_path() . '/upgrade.php'); |
|
203 | - if (get_option('geodir_installed') != 1) { |
|
204 | - /** |
|
205 | - * Define language constants, here as they are not loaded yet. |
|
206 | - * |
|
207 | - * @since 1.0.0 |
|
208 | - */ |
|
209 | - require_once(geodir_plugin_path() . '/language.php'); |
|
210 | - /** |
|
211 | - * Include the plugin install file that sets up the databases and any options on first run. |
|
212 | - * |
|
213 | - * @since 1.0.0 |
|
214 | - */ |
|
215 | - require_once('geodirectory-admin/admin_install.php'); |
|
216 | - register_activation_hook(__FILE__, 'geodir_activation'); |
|
217 | - } |
|
218 | - register_deactivation_hook(__FILE__, 'geodir_deactivation'); |
|
219 | - register_uninstall_hook(__FILE__, 'geodir_uninstall'); |
|
220 | - |
|
221 | - /* |
|
179 | + /** |
|
180 | + * Include functions used in admin area only. |
|
181 | + * |
|
182 | + * @since 1.0.0 |
|
183 | + */ |
|
184 | + require_once('geodirectory-admin/admin_functions.php'); |
|
185 | + /** |
|
186 | + * Most actions/hooks used in admin area only are called from here. |
|
187 | + * |
|
188 | + * @since 1.0.0 |
|
189 | + */ |
|
190 | + require_once('geodirectory-admin/admin_hooks_actions.php'); |
|
191 | + /** |
|
192 | + * Most admin JS and CSS is called from here. |
|
193 | + * |
|
194 | + * @since 1.0.0 |
|
195 | + */ |
|
196 | + require_once('geodirectory-admin/admin_template_tags.php'); |
|
197 | + /** |
|
198 | + * Include any functions needed for upgrades. |
|
199 | + * |
|
200 | + * @since 1.0.0 |
|
201 | + */ |
|
202 | + require_once(geodir_plugin_path() . '/upgrade.php'); |
|
203 | + if (get_option('geodir_installed') != 1) { |
|
204 | + /** |
|
205 | + * Define language constants, here as they are not loaded yet. |
|
206 | + * |
|
207 | + * @since 1.0.0 |
|
208 | + */ |
|
209 | + require_once(geodir_plugin_path() . '/language.php'); |
|
210 | + /** |
|
211 | + * Include the plugin install file that sets up the databases and any options on first run. |
|
212 | + * |
|
213 | + * @since 1.0.0 |
|
214 | + */ |
|
215 | + require_once('geodirectory-admin/admin_install.php'); |
|
216 | + register_activation_hook(__FILE__, 'geodir_activation'); |
|
217 | + } |
|
218 | + register_deactivation_hook(__FILE__, 'geodir_deactivation'); |
|
219 | + register_uninstall_hook(__FILE__, 'geodir_uninstall'); |
|
220 | + |
|
221 | + /* |
|
222 | 222 | * Show a upgrade warning message if applicable. |
223 | 223 | * |
224 | 224 | * @since 1.5.6 |
225 | 225 | */ |
226 | - global $pagenow; |
|
226 | + global $pagenow; |
|
227 | 227 | if ( 'plugins.php' === $pagenow ) |
228 | - { |
|
229 | - // Better update message |
|
230 | - $file = basename( __FILE__ ); |
|
231 | - $folder = basename( dirname( __FILE__ ) ); |
|
232 | - $hook = "in_plugin_update_message-{$folder}/{$file}"; |
|
233 | - add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
234 | - } |
|
228 | + { |
|
229 | + // Better update message |
|
230 | + $file = basename( __FILE__ ); |
|
231 | + $folder = basename( dirname( __FILE__ ) ); |
|
232 | + $hook = "in_plugin_update_message-{$folder}/{$file}"; |
|
233 | + add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
234 | + } |
|
235 | 235 | |
236 | 236 | } |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | /** |
82 | 82 | * Define constants |
83 | 83 | */ |
84 | -if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
84 | +if (!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path(__FILE__)); |
|
85 | 85 | |
86 | 86 | /* |
87 | 87 | * Declare database table names. All since version 1.0.0 |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | * This tries to disable cache on homepage as it can be very dynamic. |
107 | 107 | */ |
108 | 108 | define('DONOTCACHEPAGE', TRUE); |
109 | - $_SERVER['DONOTCACHEPAGE']= TRUE; |
|
109 | + $_SERVER['DONOTCACHEPAGE'] = TRUE; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | |
@@ -116,7 +116,7 @@ discard block |
||
116 | 116 | if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
117 | 117 | |
118 | 118 | // Load geodirectory plugin textdomain. |
119 | -add_action( 'plugins_loaded', 'geodir_load_textdomain' ); |
|
119 | +add_action('plugins_loaded', 'geodir_load_textdomain'); |
|
120 | 120 | |
121 | 121 | /* |
122 | 122 | * A function to log GD errors no matter the type given. |
@@ -127,18 +127,18 @@ discard block |
||
127 | 127 | * @param mixed $log The thing that should be logged. |
128 | 128 | * @package GeoDirectory |
129 | 129 | */ |
130 | -function geodir_error_log($log){ |
|
130 | +function geodir_error_log($log) { |
|
131 | 131 | /* |
132 | 132 | * A filter to override the WP_DEBUG setting for function geodir_error_log(). |
133 | 133 | * |
134 | 134 | * @since 1.5.7 |
135 | 135 | */ |
136 | - $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
137 | - if ( true === $should_log ) { |
|
138 | - if ( is_array( $log ) || is_object( $log ) ) { |
|
139 | - error_log( print_r( $log, true ) ); |
|
136 | + $should_log = apply_filters('geodir_log_errors', WP_DEBUG); |
|
137 | + if (true === $should_log) { |
|
138 | + if (is_array($log) || is_object($log)) { |
|
139 | + error_log(print_r($log, true)); |
|
140 | 140 | } else { |
141 | - error_log( $log ); |
|
141 | + error_log($log); |
|
142 | 142 | } |
143 | 143 | } |
144 | 144 | } |
@@ -228,13 +228,13 @@ discard block |
||
228 | 228 | * @since 1.5.6 |
229 | 229 | */ |
230 | 230 | global $pagenow; |
231 | - if ( 'plugins.php' === $pagenow ) |
|
231 | + if ('plugins.php' === $pagenow) |
|
232 | 232 | { |
233 | 233 | // Better update message |
234 | - $file = basename( __FILE__ ); |
|
235 | - $folder = basename( dirname( __FILE__ ) ); |
|
234 | + $file = basename(__FILE__); |
|
235 | + $folder = basename(dirname(__FILE__)); |
|
236 | 236 | $hook = "in_plugin_update_message-{$folder}/{$file}"; |
237 | - add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
237 | + add_action($hook, 'geodire_admin_upgrade_notice', 20, 2); |
|
238 | 238 | } |
239 | 239 | |
240 | 240 | } |
@@ -76,29 +76,45 @@ discard block |
||
76 | 76 | /** |
77 | 77 | * Do not store any revisions (except the one autosave per post). |
78 | 78 | */ |
79 | -if (!defined('WP_POST_REVISIONS')) define('WP_POST_REVISIONS', 0); |
|
79 | +if (!defined('WP_POST_REVISIONS')) { |
|
80 | + define('WP_POST_REVISIONS', 0); |
|
81 | +} |
|
80 | 82 | |
81 | 83 | /** |
82 | 84 | * Define constants |
83 | 85 | */ |
84 | -if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
86 | +if(!defined('GEODIRECTORY_PLUGIN_DIR')) { |
|
87 | + define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
88 | +} |
|
85 | 89 | |
86 | 90 | /* |
87 | 91 | * Declare database table names. All since version 1.0.0 |
88 | 92 | */ |
89 | 93 | |
90 | 94 | /** Define the database name for the countries table. */ |
91 | -if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries'); |
|
95 | +if (!defined('GEODIR_COUNTRIES_TABLE')) { |
|
96 | + define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries'); |
|
97 | +} |
|
92 | 98 | /** Define the database name for the custom fields table. */ |
93 | -if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields'); |
|
99 | +if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) { |
|
100 | + define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields'); |
|
101 | +} |
|
94 | 102 | /** Define the database name for the icons table. */ |
95 | -if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon'); |
|
103 | +if (!defined('GEODIR_ICON_TABLE')) { |
|
104 | + define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon'); |
|
105 | +} |
|
96 | 106 | /** Define the database name for the attachments table. */ |
97 | -if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments'); |
|
107 | +if (!defined('GEODIR_ATTACHMENT_TABLE')) { |
|
108 | + define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments'); |
|
109 | +} |
|
98 | 110 | /** Define the database name for the review table. */ |
99 | -if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review'); |
|
111 | +if (!defined('GEODIR_REVIEW_TABLE')) { |
|
112 | + define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review'); |
|
113 | +} |
|
100 | 114 | /** Define the database name for the custom sort fields table. */ |
101 | -if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields'); |
|
115 | +if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) { |
|
116 | + define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields'); |
|
117 | +} |
|
102 | 118 | |
103 | 119 | |
104 | 120 | if ($_SERVER['REQUEST_URI'] == '' || $_SERVER['REQUEST_URI'] == '/') { |
@@ -113,7 +129,9 @@ discard block |
||
113 | 129 | /* |
114 | 130 | * Localisation items. |
115 | 131 | */ |
116 | -if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
|
132 | +if (!defined('GEODIRECTORY_TEXTDOMAIN')) { |
|
133 | + define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
|
134 | +} |
|
117 | 135 | |
118 | 136 | // Load geodirectory plugin textdomain. |
119 | 137 | add_action( 'plugins_loaded', 'geodir_load_textdomain' ); |
@@ -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,48 +32,48 @@ 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 | - ###### MAIN CONTENT ###### |
|
66 | - |
|
67 | - /** This action is documented in geodirectory-templates/add-listing.php */ |
|
68 | - do_action('geodir_add_listing_page_mandatory'); |
|
69 | - /** This action is documented in geodirectory-templates/add-listing.php */ |
|
70 | - do_action('geodir_add_listing_form'); |
|
71 | - } |
|
72 | - $output = ob_get_contents(); |
|
73 | - |
|
74 | - ob_end_clean(); |
|
75 | - |
|
76 | - 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 | + ###### MAIN CONTENT ###### |
|
66 | + |
|
67 | + /** This action is documented in geodirectory-templates/add-listing.php */ |
|
68 | + do_action('geodir_add_listing_page_mandatory'); |
|
69 | + /** This action is documented in geodirectory-templates/add-listing.php */ |
|
70 | + do_action('geodir_add_listing_form'); |
|
71 | + } |
|
72 | + $output = ob_get_contents(); |
|
73 | + |
|
74 | + ob_end_clean(); |
|
75 | + |
|
76 | + return $output; |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -101,136 +101,136 @@ discard block |
||
101 | 101 | */ |
102 | 102 | function geodir_sc_home_map($atts) |
103 | 103 | { |
104 | - ob_start(); |
|
105 | - $defaults = array( |
|
106 | - 'width' => '960', |
|
107 | - 'height' => '425', |
|
108 | - 'maptype' => 'ROADMAP', |
|
109 | - 'zoom' => '13', |
|
110 | - 'autozoom' => '', |
|
111 | - 'child_collapse' => '0', |
|
112 | - 'scrollwheel' => '0', |
|
104 | + ob_start(); |
|
105 | + $defaults = array( |
|
106 | + 'width' => '960', |
|
107 | + 'height' => '425', |
|
108 | + 'maptype' => 'ROADMAP', |
|
109 | + 'zoom' => '13', |
|
110 | + 'autozoom' => '', |
|
111 | + 'child_collapse' => '0', |
|
112 | + 'scrollwheel' => '0', |
|
113 | 113 | 'marker_cluster' => false, |
114 | - 'latitude' => '', |
|
115 | - 'longitude' => '' |
|
116 | - ); |
|
117 | - |
|
118 | - $params = shortcode_atts($defaults, $atts); |
|
119 | - |
|
120 | - $params = gdsc_validate_map_args($params); |
|
121 | - |
|
122 | - $map_args = array( |
|
123 | - 'map_canvas_name' => 'gd_home_map', |
|
124 | - 'latitude' => $params['latitude'], |
|
125 | - 'longitude' => $params['longitude'], |
|
126 | - |
|
127 | - /** |
|
128 | - * Filter the widget width of the map on home/listings page. |
|
129 | - * |
|
130 | - * @since 1.0.0 |
|
131 | - * @param mixed(string|int|float) $params['width'] The map width. |
|
132 | - */ |
|
133 | - 'width' => apply_filters('widget_width', $params['width']), |
|
134 | - /** |
|
135 | - * Filter the widget height of the map on home/listings page. |
|
136 | - * |
|
137 | - * @since 1.0.0 |
|
138 | - * @param mixed(string|int|float) $params['height'] The map height. |
|
139 | - */ |
|
140 | - 'height' => apply_filters('widget_heigh', $params['height']), |
|
141 | - /** |
|
142 | - * Filter the widget maptype of the map on home/listings page. |
|
143 | - * |
|
144 | - * @since 1.0.0 |
|
114 | + 'latitude' => '', |
|
115 | + 'longitude' => '' |
|
116 | + ); |
|
117 | + |
|
118 | + $params = shortcode_atts($defaults, $atts); |
|
119 | + |
|
120 | + $params = gdsc_validate_map_args($params); |
|
121 | + |
|
122 | + $map_args = array( |
|
123 | + 'map_canvas_name' => 'gd_home_map', |
|
124 | + 'latitude' => $params['latitude'], |
|
125 | + 'longitude' => $params['longitude'], |
|
126 | + |
|
127 | + /** |
|
128 | + * Filter the widget width of the map on home/listings page. |
|
129 | + * |
|
130 | + * @since 1.0.0 |
|
131 | + * @param mixed(string|int|float) $params['width'] The map width. |
|
132 | + */ |
|
133 | + 'width' => apply_filters('widget_width', $params['width']), |
|
134 | + /** |
|
135 | + * Filter the widget height of the map on home/listings page. |
|
136 | + * |
|
137 | + * @since 1.0.0 |
|
138 | + * @param mixed(string|int|float) $params['height'] The map height. |
|
139 | + */ |
|
140 | + 'height' => apply_filters('widget_heigh', $params['height']), |
|
141 | + /** |
|
142 | + * Filter the widget maptype of the map on home/listings page. |
|
143 | + * |
|
144 | + * @since 1.0.0 |
|
145 | 145 | * @since 1.5.2 Added TERRAIN map type. |
146 | - * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN. |
|
147 | - */ |
|
148 | - 'maptype' => apply_filters('widget_maptype', $params['maptype']), |
|
149 | - /** |
|
150 | - * Filter the widget scrollwheel value of the map on home/listings page. |
|
151 | - * |
|
152 | - * Should the scrollwheel zoom the map or not. |
|
153 | - * |
|
154 | - * @since 1.0.0 |
|
155 | - * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not. |
|
156 | - */ |
|
157 | - 'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']), |
|
158 | - /** |
|
159 | - * Filter the widget zoom level of the map on home/listings page. |
|
160 | - * |
|
161 | - * @since 1.0.0 |
|
162 | - * @param int $params['zoom'] The zoom level of the map. Between 1-19. |
|
163 | - */ |
|
164 | - 'zoom' => apply_filters('widget_zoom', $params['zoom']), |
|
165 | - /** |
|
166 | - * Filter the widget auto zoom value of the map on home/listings page. |
|
167 | - * |
|
168 | - * If the map should autozoom to fit the markers shown. |
|
169 | - * |
|
170 | - * @since 1.0.0 |
|
171 | - * @param bool $params['autozoom'] True if the map should autozoom, false if not. |
|
172 | - */ |
|
173 | - 'autozoom' => apply_filters('widget_autozoom', $params['autozoom']), |
|
174 | - /** |
|
175 | - * Filter the widget child_collapse value of the map on home/listings page. |
|
176 | - * |
|
177 | - * If the map should auto collapse the child categories if the category bar is present. |
|
178 | - * |
|
179 | - * @since 1.0.0 |
|
180 | - * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not. |
|
181 | - */ |
|
182 | - 'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']), |
|
183 | - 'enable_cat_filters' => true, |
|
184 | - 'enable_text_search' => true, |
|
185 | - 'enable_post_type_filters' => true, |
|
186 | - /** |
|
187 | - * Filter the widget enable_location_filters value of the map on home/listings page. |
|
188 | - * |
|
189 | - * This is used when the location addon is used. |
|
190 | - * |
|
191 | - * @since 1.0.0 |
|
192 | - * @param bool $val True if location filters should be used, false if not. |
|
193 | - */ |
|
194 | - 'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false), |
|
195 | - 'enable_jason_on_load' => false, |
|
196 | - 'enable_marker_cluster' => false, |
|
197 | - 'enable_map_resize_button' => true, |
|
198 | - 'map_class_name' => 'geodir-map-home-page', |
|
199 | - 'is_geodir_home_map_widget' => true, |
|
200 | - ); |
|
146 | + * @param string $params['maptype'] The map type. Can be ROADMAP | SATELLITE | HYBRID | TERRAIN. |
|
147 | + */ |
|
148 | + 'maptype' => apply_filters('widget_maptype', $params['maptype']), |
|
149 | + /** |
|
150 | + * Filter the widget scrollwheel value of the map on home/listings page. |
|
151 | + * |
|
152 | + * Should the scrollwheel zoom the map or not. |
|
153 | + * |
|
154 | + * @since 1.0.0 |
|
155 | + * @param bool $params['scrollwheel'] True to allow scroll wheel to scroll map or false if not. |
|
156 | + */ |
|
157 | + 'scrollwheel' => apply_filters('widget_scrollwheel', $params['scrollwheel']), |
|
158 | + /** |
|
159 | + * Filter the widget zoom level of the map on home/listings page. |
|
160 | + * |
|
161 | + * @since 1.0.0 |
|
162 | + * @param int $params['zoom'] The zoom level of the map. Between 1-19. |
|
163 | + */ |
|
164 | + 'zoom' => apply_filters('widget_zoom', $params['zoom']), |
|
165 | + /** |
|
166 | + * Filter the widget auto zoom value of the map on home/listings page. |
|
167 | + * |
|
168 | + * If the map should autozoom to fit the markers shown. |
|
169 | + * |
|
170 | + * @since 1.0.0 |
|
171 | + * @param bool $params['autozoom'] True if the map should autozoom, false if not. |
|
172 | + */ |
|
173 | + 'autozoom' => apply_filters('widget_autozoom', $params['autozoom']), |
|
174 | + /** |
|
175 | + * Filter the widget child_collapse value of the map on home/listings page. |
|
176 | + * |
|
177 | + * If the map should auto collapse the child categories if the category bar is present. |
|
178 | + * |
|
179 | + * @since 1.0.0 |
|
180 | + * @param bool $params['child_collapse'] True if the map should collapse the categories, false if not. |
|
181 | + */ |
|
182 | + 'child_collapse' => apply_filters('widget_child_collapse', $params['child_collapse']), |
|
183 | + 'enable_cat_filters' => true, |
|
184 | + 'enable_text_search' => true, |
|
185 | + 'enable_post_type_filters' => true, |
|
186 | + /** |
|
187 | + * Filter the widget enable_location_filters value of the map on home/listings page. |
|
188 | + * |
|
189 | + * This is used when the location addon is used. |
|
190 | + * |
|
191 | + * @since 1.0.0 |
|
192 | + * @param bool $val True if location filters should be used, false if not. |
|
193 | + */ |
|
194 | + 'enable_location_filters' => apply_filters('geodir_home_map_enable_location_filters', false), |
|
195 | + 'enable_jason_on_load' => false, |
|
196 | + 'enable_marker_cluster' => false, |
|
197 | + 'enable_map_resize_button' => true, |
|
198 | + 'map_class_name' => 'geodir-map-home-page', |
|
199 | + 'is_geodir_home_map_widget' => true, |
|
200 | + ); |
|
201 | 201 | |
202 | 202 | // Add marker cluster |
203 | 203 | if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) { |
204 | - $map_args['enable_marker_cluster'] = true; |
|
205 | - if(get_option('geodir_marker_cluster_type')) { |
|
206 | - if ($map_args['autozoom']) { |
|
207 | - $map_args['enable_marker_cluster_no_reposition'] = false; |
|
208 | - } else { |
|
209 | - $map_args['enable_marker_cluster_no_reposition'] = true; |
|
210 | - } |
|
204 | + $map_args['enable_marker_cluster'] = true; |
|
205 | + if(get_option('geodir_marker_cluster_type')) { |
|
206 | + if ($map_args['autozoom']) { |
|
207 | + $map_args['enable_marker_cluster_no_reposition'] = false; |
|
208 | + } else { |
|
209 | + $map_args['enable_marker_cluster_no_reposition'] = true; |
|
210 | + } |
|
211 | 211 | |
212 | - $map_args['enable_marker_cluster_server'] = true ; |
|
212 | + $map_args['enable_marker_cluster_server'] = true ; |
|
213 | 213 | |
214 | - } |
|
214 | + } |
|
215 | 215 | } else { |
216 | 216 | $map_args['enable_marker_cluster'] = false; |
217 | 217 | } |
218 | 218 | |
219 | - // if lat and long set in shortcode, hack it so the map is not repositioned |
|
220 | - if(!empty($params['latitude']) && !empty($params['longitude']) ){ |
|
221 | - $map_args['enable_marker_cluster_no_reposition'] = true; |
|
222 | - } |
|
219 | + // if lat and long set in shortcode, hack it so the map is not repositioned |
|
220 | + if(!empty($params['latitude']) && !empty($params['longitude']) ){ |
|
221 | + $map_args['enable_marker_cluster_no_reposition'] = true; |
|
222 | + } |
|
223 | 223 | |
224 | 224 | |
225 | - geodir_draw_map($map_args); |
|
225 | + geodir_draw_map($map_args); |
|
226 | 226 | |
227 | - add_action('wp_footer', 'geodir_home_map_add_script', 100); |
|
227 | + add_action('wp_footer', 'geodir_home_map_add_script', 100); |
|
228 | 228 | |
229 | - $output = ob_get_contents(); |
|
229 | + $output = ob_get_contents(); |
|
230 | 230 | |
231 | - ob_end_clean(); |
|
231 | + ob_end_clean(); |
|
232 | 232 | |
233 | - return $output; |
|
233 | + return $output; |
|
234 | 234 | } |
235 | 235 | add_shortcode('gd_homepage_map', 'geodir_sc_home_map'); |
236 | 236 | |
@@ -264,77 +264,77 @@ discard block |
||
264 | 264 | */ |
265 | 265 | function geodir_sc_listing_map($atts) |
266 | 266 | { |
267 | - ob_start(); |
|
268 | - add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array |
|
269 | - |
|
270 | - add_action('the_post', 'create_list_jsondata'); // Add marker in json array |
|
271 | - |
|
272 | - add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers |
|
273 | - |
|
274 | - $defaults = array( |
|
275 | - 'width' => '294', |
|
276 | - 'height' => '370', |
|
277 | - 'zoom' => '13', |
|
278 | - 'autozoom' => '', |
|
279 | - 'sticky' => '', |
|
280 | - 'showall' => '0', |
|
281 | - 'scrollwheel' => '0', |
|
282 | - 'maptype' => 'ROADMAP', |
|
283 | - 'child_collapse' => 0, |
|
267 | + ob_start(); |
|
268 | + add_action('wp_head', 'init_listing_map_script'); // Initialize the map object and marker array |
|
269 | + |
|
270 | + add_action('the_post', 'create_list_jsondata'); // Add marker in json array |
|
271 | + |
|
272 | + add_action('wp_footer', 'show_listing_widget_map'); // Show map for listings with markers |
|
273 | + |
|
274 | + $defaults = array( |
|
275 | + 'width' => '294', |
|
276 | + 'height' => '370', |
|
277 | + 'zoom' => '13', |
|
278 | + 'autozoom' => '', |
|
279 | + 'sticky' => '', |
|
280 | + 'showall' => '0', |
|
281 | + 'scrollwheel' => '0', |
|
282 | + 'maptype' => 'ROADMAP', |
|
283 | + 'child_collapse' => 0, |
|
284 | 284 | 'marker_cluster' => false |
285 | - ); |
|
286 | - |
|
287 | - $params = shortcode_atts($defaults, $atts); |
|
288 | - |
|
289 | - $params = gdsc_validate_map_args($params); |
|
290 | - |
|
291 | - $map_args = array( |
|
292 | - 'map_canvas_name' => 'gd_listing_map', |
|
293 | - 'width' => $params['width'], |
|
294 | - 'height' => $params['height'], |
|
295 | - 'zoom' => $params['zoom'], |
|
296 | - 'autozoom' => $params['autozoom'], |
|
297 | - 'sticky' => $params['sticky'], |
|
298 | - 'showall' => $params['showall'], |
|
299 | - 'scrollwheel' => $params['scrollwheel'], |
|
300 | - 'child_collapse' => 0, |
|
301 | - 'enable_cat_filters' => false, |
|
302 | - 'enable_text_search' => false, |
|
303 | - 'enable_post_type_filters' => false, |
|
304 | - 'enable_location_filters' => false, |
|
305 | - 'enable_jason_on_load' => true, |
|
306 | - ); |
|
307 | - |
|
308 | - if (is_single()) { |
|
309 | - |
|
310 | - global $post; |
|
311 | - $map_default_lat = $address_latitude = $post->post_latitude; |
|
312 | - $map_default_lng = $address_longitude = $post->post_longitude; |
|
313 | - $mapview = $post->post_mapview; |
|
314 | - $map_args['zoom'] = $post->post_mapzoom; |
|
315 | - $map_args['map_class_name'] = 'geodir-map-listing-page-single'; |
|
316 | - |
|
317 | - } else { |
|
318 | - $default_location = geodir_get_default_location(); |
|
319 | - |
|
320 | - $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; |
|
321 | - $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; |
|
322 | - $map_args['map_class_name'] = 'geodir-map-listing-page'; |
|
323 | - } |
|
324 | - |
|
325 | - if (empty($mapview)) { |
|
326 | - $mapview = 'ROADMAP'; |
|
327 | - } |
|
328 | - |
|
329 | - // Set default map options |
|
330 | - $map_args['ajax_url'] = geodir_get_ajax_url(); |
|
331 | - $map_args['latitude'] = $map_default_lat; |
|
332 | - $map_args['longitude'] = $map_default_lng; |
|
333 | - $map_args['streetViewControl'] = true; |
|
334 | - $map_args['maptype'] = $mapview; |
|
335 | - $map_args['showPreview'] = '0'; |
|
336 | - $map_args['maxZoom'] = 21; |
|
337 | - $map_args['bubble_size'] = 'small'; |
|
285 | + ); |
|
286 | + |
|
287 | + $params = shortcode_atts($defaults, $atts); |
|
288 | + |
|
289 | + $params = gdsc_validate_map_args($params); |
|
290 | + |
|
291 | + $map_args = array( |
|
292 | + 'map_canvas_name' => 'gd_listing_map', |
|
293 | + 'width' => $params['width'], |
|
294 | + 'height' => $params['height'], |
|
295 | + 'zoom' => $params['zoom'], |
|
296 | + 'autozoom' => $params['autozoom'], |
|
297 | + 'sticky' => $params['sticky'], |
|
298 | + 'showall' => $params['showall'], |
|
299 | + 'scrollwheel' => $params['scrollwheel'], |
|
300 | + 'child_collapse' => 0, |
|
301 | + 'enable_cat_filters' => false, |
|
302 | + 'enable_text_search' => false, |
|
303 | + 'enable_post_type_filters' => false, |
|
304 | + 'enable_location_filters' => false, |
|
305 | + 'enable_jason_on_load' => true, |
|
306 | + ); |
|
307 | + |
|
308 | + if (is_single()) { |
|
309 | + |
|
310 | + global $post; |
|
311 | + $map_default_lat = $address_latitude = $post->post_latitude; |
|
312 | + $map_default_lng = $address_longitude = $post->post_longitude; |
|
313 | + $mapview = $post->post_mapview; |
|
314 | + $map_args['zoom'] = $post->post_mapzoom; |
|
315 | + $map_args['map_class_name'] = 'geodir-map-listing-page-single'; |
|
316 | + |
|
317 | + } else { |
|
318 | + $default_location = geodir_get_default_location(); |
|
319 | + |
|
320 | + $map_default_lat = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; |
|
321 | + $map_default_lng = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; |
|
322 | + $map_args['map_class_name'] = 'geodir-map-listing-page'; |
|
323 | + } |
|
324 | + |
|
325 | + if (empty($mapview)) { |
|
326 | + $mapview = 'ROADMAP'; |
|
327 | + } |
|
328 | + |
|
329 | + // Set default map options |
|
330 | + $map_args['ajax_url'] = geodir_get_ajax_url(); |
|
331 | + $map_args['latitude'] = $map_default_lat; |
|
332 | + $map_args['longitude'] = $map_default_lng; |
|
333 | + $map_args['streetViewControl'] = true; |
|
334 | + $map_args['maptype'] = $mapview; |
|
335 | + $map_args['showPreview'] = '0'; |
|
336 | + $map_args['maxZoom'] = 21; |
|
337 | + $map_args['bubble_size'] = 'small'; |
|
338 | 338 | |
339 | 339 | // Add marker cluster |
340 | 340 | if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) { |
@@ -343,13 +343,13 @@ discard block |
||
343 | 343 | $map_args['enable_marker_cluster'] = false; |
344 | 344 | } |
345 | 345 | |
346 | - geodir_draw_map($map_args); |
|
346 | + geodir_draw_map($map_args); |
|
347 | 347 | |
348 | - $output = ob_get_contents(); |
|
348 | + $output = ob_get_contents(); |
|
349 | 349 | |
350 | - ob_end_clean(); |
|
350 | + ob_end_clean(); |
|
351 | 351 | |
352 | - return $output; |
|
352 | + return $output; |
|
353 | 353 | } |
354 | 354 | |
355 | 355 | add_shortcode('gd_listing_slider', 'geodir_sc_listing_slider'); |
@@ -382,120 +382,120 @@ discard block |
||
382 | 382 | */ |
383 | 383 | function geodir_sc_listing_slider($atts) |
384 | 384 | { |
385 | - ob_start(); |
|
386 | - $defaults = array( |
|
387 | - 'post_type' => 'gd_place', |
|
388 | - 'category' => '0', |
|
389 | - 'post_number' => '5', |
|
390 | - 'slideshow' => '0', |
|
391 | - 'animation_loop' => 0, |
|
392 | - 'direction_nav' => 0, |
|
393 | - 'slideshow_speed' => 5000, |
|
394 | - 'animation_speed' => 600, |
|
395 | - 'animation' => 'slide', |
|
396 | - 'order_by' => 'latest', |
|
397 | - 'show_title' => '', |
|
398 | - 'show_featured_only' => '', |
|
399 | - 'title' => '', |
|
400 | - ); |
|
401 | - |
|
402 | - $params = shortcode_atts($defaults, $atts); |
|
403 | - |
|
404 | - |
|
405 | - /* |
|
385 | + ob_start(); |
|
386 | + $defaults = array( |
|
387 | + 'post_type' => 'gd_place', |
|
388 | + 'category' => '0', |
|
389 | + 'post_number' => '5', |
|
390 | + 'slideshow' => '0', |
|
391 | + 'animation_loop' => 0, |
|
392 | + 'direction_nav' => 0, |
|
393 | + 'slideshow_speed' => 5000, |
|
394 | + 'animation_speed' => 600, |
|
395 | + 'animation' => 'slide', |
|
396 | + 'order_by' => 'latest', |
|
397 | + 'show_title' => '', |
|
398 | + 'show_featured_only' => '', |
|
399 | + 'title' => '', |
|
400 | + ); |
|
401 | + |
|
402 | + $params = shortcode_atts($defaults, $atts); |
|
403 | + |
|
404 | + |
|
405 | + /* |
|
406 | 406 | * |
407 | 407 | * Now we begin the validation of the attributes. |
408 | 408 | */ |
409 | - // Check we have a valid post_type |
|
410 | - if (!(gdsc_is_post_type_valid($params['post_type']))) { |
|
411 | - $params['post_type'] = 'gd_place'; |
|
412 | - } |
|
413 | - |
|
414 | - // Check we have a valid sort_order |
|
415 | - $params['order_by'] = gdsc_validate_sort_choice($params['order_by']); |
|
416 | - |
|
417 | - // Match the chosen animation to our options |
|
418 | - $animation_list = array('slide', 'fade'); |
|
419 | - if (!(in_array($params['animation'], $animation_list))) { |
|
420 | - $params['animation'] = 'slide'; |
|
421 | - } |
|
422 | - |
|
423 | - // Post_number needs to be a positive integer |
|
424 | - $params['post_number'] = absint($params['post_number']); |
|
425 | - if (0 == $params['post_number']) { |
|
426 | - $params['post_number'] = 1; |
|
427 | - } |
|
428 | - |
|
429 | - // Manage the entered categories |
|
430 | - if (0 != $params['category'] || '' != $params['category']) { |
|
431 | - $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']); |
|
432 | - } |
|
433 | - // Convert show_title to a bool |
|
434 | - $params['show_title'] = intval(gdsc_to_bool_val($params['show_title'])); |
|
435 | - |
|
436 | - // Convert show_featured_only to a bool |
|
437 | - $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only'])); |
|
438 | - |
|
439 | - /* |
|
409 | + // Check we have a valid post_type |
|
410 | + if (!(gdsc_is_post_type_valid($params['post_type']))) { |
|
411 | + $params['post_type'] = 'gd_place'; |
|
412 | + } |
|
413 | + |
|
414 | + // Check we have a valid sort_order |
|
415 | + $params['order_by'] = gdsc_validate_sort_choice($params['order_by']); |
|
416 | + |
|
417 | + // Match the chosen animation to our options |
|
418 | + $animation_list = array('slide', 'fade'); |
|
419 | + if (!(in_array($params['animation'], $animation_list))) { |
|
420 | + $params['animation'] = 'slide'; |
|
421 | + } |
|
422 | + |
|
423 | + // Post_number needs to be a positive integer |
|
424 | + $params['post_number'] = absint($params['post_number']); |
|
425 | + if (0 == $params['post_number']) { |
|
426 | + $params['post_number'] = 1; |
|
427 | + } |
|
428 | + |
|
429 | + // Manage the entered categories |
|
430 | + if (0 != $params['category'] || '' != $params['category']) { |
|
431 | + $params['category'] = gdsc_manage_category_choice($params['post_type'], $params['category']); |
|
432 | + } |
|
433 | + // Convert show_title to a bool |
|
434 | + $params['show_title'] = intval(gdsc_to_bool_val($params['show_title'])); |
|
435 | + |
|
436 | + // Convert show_featured_only to a bool |
|
437 | + $params['show_featured_only'] = intval(gdsc_to_bool_val($params['show_featured_only'])); |
|
438 | + |
|
439 | + /* |
|
440 | 440 | * Hopefully all attributes are now valid, and safe to pass forward |
441 | 441 | */ |
442 | 442 | |
443 | - // redeclare vars after validation |
|
444 | - |
|
445 | - if (isset($params['direction_nav'])) { |
|
446 | - $params['directionNav'] = $params['direction_nav']; |
|
447 | - } |
|
448 | - if (isset($params['animation_loop'])) { |
|
449 | - $params['animationLoop'] = $params['animation_loop']; |
|
450 | - } |
|
451 | - if (isset($params['slideshow_speed'])) { |
|
452 | - $params['slideshowSpeed'] = $params['slideshow_speed']; |
|
453 | - } |
|
454 | - if (isset($params['animation_speed'])) { |
|
455 | - $params['animationSpeed'] = $params['animation_speed']; |
|
456 | - } |
|
457 | - if (isset($params['order_by'])) { |
|
458 | - $params['list_sort'] = $params['order_by']; |
|
459 | - } |
|
460 | - |
|
461 | - $query_args = array( |
|
462 | - 'post_number' => $params['post_number'], |
|
463 | - 'is_geodir_loop' => true, |
|
464 | - 'post_type' => $params['post_type'], |
|
465 | - 'order_by' => $params['order_by'] |
|
466 | - ); |
|
467 | - |
|
468 | - if (1 == $params['show_featured_only']) { |
|
469 | - $query_args['show_featured_only'] = 1; |
|
470 | - } |
|
471 | - |
|
472 | - if (0 != $params['category'] && '' != $params['category']) { |
|
473 | - $category_taxonomy = geodir_get_taxonomies($params['post_type']); |
|
474 | - $tax_query = array( |
|
475 | - 'taxonomy' => $category_taxonomy[0], |
|
476 | - 'field' => 'id', |
|
477 | - 'terms' => $params['category'], |
|
478 | - ); |
|
479 | - |
|
480 | - $query_args['tax_query'] = array($tax_query); |
|
481 | - } |
|
482 | - |
|
483 | - $defaults = array( |
|
484 | - 'before_widget' => '', |
|
485 | - 'after_widget' => '', |
|
486 | - 'before_title' => '', |
|
487 | - 'after_title' => '', |
|
488 | - ); |
|
489 | - |
|
490 | - $query_args = array_merge($query_args, $params); |
|
491 | - |
|
492 | - geodir_listing_slider_widget_output($defaults, $query_args); |
|
493 | - |
|
494 | - $output = ob_get_contents(); |
|
495 | - |
|
496 | - ob_end_clean(); |
|
497 | - |
|
498 | - return $output; |
|
443 | + // redeclare vars after validation |
|
444 | + |
|
445 | + if (isset($params['direction_nav'])) { |
|
446 | + $params['directionNav'] = $params['direction_nav']; |
|
447 | + } |
|
448 | + if (isset($params['animation_loop'])) { |
|
449 | + $params['animationLoop'] = $params['animation_loop']; |
|
450 | + } |
|
451 | + if (isset($params['slideshow_speed'])) { |
|
452 | + $params['slideshowSpeed'] = $params['slideshow_speed']; |
|
453 | + } |
|
454 | + if (isset($params['animation_speed'])) { |
|
455 | + $params['animationSpeed'] = $params['animation_speed']; |
|
456 | + } |
|
457 | + if (isset($params['order_by'])) { |
|
458 | + $params['list_sort'] = $params['order_by']; |
|
459 | + } |
|
460 | + |
|
461 | + $query_args = array( |
|
462 | + 'post_number' => $params['post_number'], |
|
463 | + 'is_geodir_loop' => true, |
|
464 | + 'post_type' => $params['post_type'], |
|
465 | + 'order_by' => $params['order_by'] |
|
466 | + ); |
|
467 | + |
|
468 | + if (1 == $params['show_featured_only']) { |
|
469 | + $query_args['show_featured_only'] = 1; |
|
470 | + } |
|
471 | + |
|
472 | + if (0 != $params['category'] && '' != $params['category']) { |
|
473 | + $category_taxonomy = geodir_get_taxonomies($params['post_type']); |
|
474 | + $tax_query = array( |
|
475 | + 'taxonomy' => $category_taxonomy[0], |
|
476 | + 'field' => 'id', |
|
477 | + 'terms' => $params['category'], |
|
478 | + ); |
|
479 | + |
|
480 | + $query_args['tax_query'] = array($tax_query); |
|
481 | + } |
|
482 | + |
|
483 | + $defaults = array( |
|
484 | + 'before_widget' => '', |
|
485 | + 'after_widget' => '', |
|
486 | + 'before_title' => '', |
|
487 | + 'after_title' => '', |
|
488 | + ); |
|
489 | + |
|
490 | + $query_args = array_merge($query_args, $params); |
|
491 | + |
|
492 | + geodir_listing_slider_widget_output($defaults, $query_args); |
|
493 | + |
|
494 | + $output = ob_get_contents(); |
|
495 | + |
|
496 | + ob_end_clean(); |
|
497 | + |
|
498 | + return $output; |
|
499 | 499 | } |
500 | 500 | |
501 | 501 | add_shortcode('gd_login_box', 'geodir_sc_login_box'); |
@@ -519,22 +519,22 @@ discard block |
||
519 | 519 | */ |
520 | 520 | function geodir_sc_login_box($atts) |
521 | 521 | { |
522 | - ob_start(); |
|
522 | + ob_start(); |
|
523 | 523 | |
524 | - $defaults = array( |
|
525 | - 'before_widget' => '', |
|
526 | - 'after_widget' => '', |
|
527 | - 'before_title' => '', |
|
528 | - 'after_title' => '', |
|
529 | - ); |
|
524 | + $defaults = array( |
|
525 | + 'before_widget' => '', |
|
526 | + 'after_widget' => '', |
|
527 | + 'before_title' => '', |
|
528 | + 'after_title' => '', |
|
529 | + ); |
|
530 | 530 | |
531 | - geodir_loginwidget_output($defaults, $defaults); |
|
531 | + geodir_loginwidget_output($defaults, $defaults); |
|
532 | 532 | |
533 | - $output = ob_get_contents(); |
|
533 | + $output = ob_get_contents(); |
|
534 | 534 | |
535 | - ob_end_clean(); |
|
535 | + ob_end_clean(); |
|
536 | 536 | |
537 | - return $output; |
|
537 | + return $output; |
|
538 | 538 | } |
539 | 539 | |
540 | 540 | add_shortcode('gd_popular_post_category', 'geodir_sc_popular_post_category'); |
@@ -563,28 +563,28 @@ discard block |
||
563 | 563 | */ |
564 | 564 | function geodir_sc_popular_post_category($atts) |
565 | 565 | { |
566 | - ob_start(); |
|
567 | - global $geodir_post_category_str; |
|
568 | - $defaults = array( |
|
569 | - 'category_limit' => 15, |
|
570 | - 'before_widget' => '', |
|
571 | - 'after_widget' => '', |
|
572 | - 'before_title' => '', |
|
573 | - 'after_title' => '', |
|
574 | - 'title' => '', |
|
566 | + ob_start(); |
|
567 | + global $geodir_post_category_str; |
|
568 | + $defaults = array( |
|
569 | + 'category_limit' => 15, |
|
570 | + 'before_widget' => '', |
|
571 | + 'after_widget' => '', |
|
572 | + 'before_title' => '', |
|
573 | + 'after_title' => '', |
|
574 | + 'title' => '', |
|
575 | 575 | 'default_post_type' => '', |
576 | - ); |
|
576 | + ); |
|
577 | 577 | |
578 | - $params = shortcode_atts($defaults, $atts, 'popular_post_category'); |
|
579 | - $params['category_limit'] = absint($params['category_limit']); |
|
578 | + $params = shortcode_atts($defaults, $atts, 'popular_post_category'); |
|
579 | + $params['category_limit'] = absint($params['category_limit']); |
|
580 | 580 | $params['default_post_type'] = gdsc_is_post_type_valid($params['default_post_type']) ? $params['default_post_type'] : ''; |
581 | - geodir_popular_post_category_output($params, $params); |
|
581 | + geodir_popular_post_category_output($params, $params); |
|
582 | 582 | |
583 | - $output = ob_get_contents(); |
|
583 | + $output = ob_get_contents(); |
|
584 | 584 | |
585 | - ob_end_clean(); |
|
585 | + ob_end_clean(); |
|
586 | 586 | |
587 | - return $output; |
|
587 | + return $output; |
|
588 | 588 | } |
589 | 589 | |
590 | 590 | add_shortcode('gd_popular_post_view', 'geodir_sc_popular_post_view'); |
@@ -624,97 +624,97 @@ discard block |
||
624 | 624 | */ |
625 | 625 | function geodir_sc_popular_post_view($atts) |
626 | 626 | { |
627 | - ob_start(); |
|
628 | - $defaults = array( |
|
629 | - 'post_type' => 'gd_place', |
|
630 | - 'category' => '0', |
|
631 | - 'post_number' => '5', |
|
632 | - 'layout' => 'gridview_onehalf', |
|
633 | - 'add_location_filter' => '0', |
|
634 | - 'list_sort' => 'latest', |
|
635 | - 'use_viewing_post_type' => '1', |
|
636 | - 'character_count' => '20', |
|
637 | - 'listing_width' => '', |
|
638 | - 'show_featured_only' => '0', |
|
639 | - 'show_special_only' => '0', |
|
640 | - 'with_pics_only' => '0', |
|
641 | - 'with_videos_only' => '0', |
|
642 | - 'before_widget' => '', |
|
643 | - 'after_widget' => '', |
|
644 | - 'before_title' => '<h3 class="widget-title">', |
|
645 | - 'after_title' => '</h3>', |
|
646 | - 'title' => '', |
|
647 | - 'category_title' => '', |
|
648 | - ); |
|
649 | - |
|
650 | - $params = shortcode_atts($defaults, $atts); |
|
651 | - |
|
652 | - /** |
|
653 | - * Validate our incoming params |
|
654 | - */ |
|
627 | + ob_start(); |
|
628 | + $defaults = array( |
|
629 | + 'post_type' => 'gd_place', |
|
630 | + 'category' => '0', |
|
631 | + 'post_number' => '5', |
|
632 | + 'layout' => 'gridview_onehalf', |
|
633 | + 'add_location_filter' => '0', |
|
634 | + 'list_sort' => 'latest', |
|
635 | + 'use_viewing_post_type' => '1', |
|
636 | + 'character_count' => '20', |
|
637 | + 'listing_width' => '', |
|
638 | + 'show_featured_only' => '0', |
|
639 | + 'show_special_only' => '0', |
|
640 | + 'with_pics_only' => '0', |
|
641 | + 'with_videos_only' => '0', |
|
642 | + 'before_widget' => '', |
|
643 | + 'after_widget' => '', |
|
644 | + 'before_title' => '<h3 class="widget-title">', |
|
645 | + 'after_title' => '</h3>', |
|
646 | + 'title' => '', |
|
647 | + 'category_title' => '', |
|
648 | + ); |
|
655 | 649 | |
656 | - // Validate the selected post type, default to gd_place on fail |
|
657 | - if (!(gdsc_is_post_type_valid($params['post_type']))) { |
|
658 | - $params['post_type'] = 'gd_place'; |
|
659 | - } |
|
660 | - |
|
661 | - // Validate the selected category/ies - Grab the current list based on post_type |
|
662 | - $category_taxonomy = geodir_get_taxonomies($params['post_type']); |
|
663 | - $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); |
|
664 | - |
|
665 | - // Make sure we have an array |
|
666 | - if (!(is_array($params['category']))) { |
|
667 | - $params['category'] = explode(',', $params['category']); |
|
668 | - } |
|
669 | - |
|
670 | - // Array_intersect returns only the items in $params['category'] that are also in our category list |
|
671 | - // Otherwise it becomes empty and later on that will mean "All" |
|
672 | - $params['category'] = array_intersect($params['category'], $categories); |
|
673 | - |
|
674 | - // Post_number needs to be a positive integer |
|
675 | - $params['post_number'] = absint($params['post_number']); |
|
676 | - if (0 == $params['post_number']) { |
|
677 | - $params['post_number'] = 1; |
|
678 | - } |
|
679 | - |
|
680 | - // Validate our layout choice |
|
681 | - // Outside of the norm, I added some more simple terms to match the existing |
|
682 | - // So now I just run the switch to set it properly. |
|
683 | - $params['layout'] = gdsc_validate_layout_choice($params['layout']); |
|
684 | - |
|
685 | - // Validate our sorting choice |
|
686 | - $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); |
|
687 | - |
|
688 | - // Validate character_count |
|
689 | - $params['character_count'] = absint($params['character_count']); |
|
690 | - if (20 > $params['character_count']) { |
|
691 | - $params['character_count'] = 20; |
|
692 | - } |
|
693 | - |
|
694 | - // Validate Listing width, used in the template widget-listing-listview.php |
|
695 | - // The context is in width=$listing_width% - So we need a positive number between 0 & 100 |
|
696 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
697 | - |
|
698 | - // Validate the checkboxes used on the widget |
|
699 | - $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
|
700 | - $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); |
|
701 | - $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); |
|
702 | - $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); |
|
703 | - $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); |
|
704 | - $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']); |
|
705 | - |
|
706 | - /** |
|
707 | - * End of validation |
|
708 | - */ |
|
650 | + $params = shortcode_atts($defaults, $atts); |
|
651 | + |
|
652 | + /** |
|
653 | + * Validate our incoming params |
|
654 | + */ |
|
655 | + |
|
656 | + // Validate the selected post type, default to gd_place on fail |
|
657 | + if (!(gdsc_is_post_type_valid($params['post_type']))) { |
|
658 | + $params['post_type'] = 'gd_place'; |
|
659 | + } |
|
709 | 660 | |
710 | - geodir_popular_postview_output($params, $params); |
|
661 | + // Validate the selected category/ies - Grab the current list based on post_type |
|
662 | + $category_taxonomy = geodir_get_taxonomies($params['post_type']); |
|
663 | + $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); |
|
711 | 664 | |
665 | + // Make sure we have an array |
|
666 | + if (!(is_array($params['category']))) { |
|
667 | + $params['category'] = explode(',', $params['category']); |
|
668 | + } |
|
669 | + |
|
670 | + // Array_intersect returns only the items in $params['category'] that are also in our category list |
|
671 | + // Otherwise it becomes empty and later on that will mean "All" |
|
672 | + $params['category'] = array_intersect($params['category'], $categories); |
|
673 | + |
|
674 | + // Post_number needs to be a positive integer |
|
675 | + $params['post_number'] = absint($params['post_number']); |
|
676 | + if (0 == $params['post_number']) { |
|
677 | + $params['post_number'] = 1; |
|
678 | + } |
|
712 | 679 | |
713 | - $output = ob_get_contents(); |
|
680 | + // Validate our layout choice |
|
681 | + // Outside of the norm, I added some more simple terms to match the existing |
|
682 | + // So now I just run the switch to set it properly. |
|
683 | + $params['layout'] = gdsc_validate_layout_choice($params['layout']); |
|
714 | 684 | |
715 | - ob_end_clean(); |
|
685 | + // Validate our sorting choice |
|
686 | + $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); |
|
716 | 687 | |
717 | - return $output; |
|
688 | + // Validate character_count |
|
689 | + $params['character_count'] = absint($params['character_count']); |
|
690 | + if (20 > $params['character_count']) { |
|
691 | + $params['character_count'] = 20; |
|
692 | + } |
|
693 | + |
|
694 | + // Validate Listing width, used in the template widget-listing-listview.php |
|
695 | + // The context is in width=$listing_width% - So we need a positive number between 0 & 100 |
|
696 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
697 | + |
|
698 | + // Validate the checkboxes used on the widget |
|
699 | + $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
|
700 | + $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); |
|
701 | + $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); |
|
702 | + $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); |
|
703 | + $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); |
|
704 | + $params['use_viewing_post_type'] = gdsc_to_bool_val($params['use_viewing_post_type']); |
|
705 | + |
|
706 | + /** |
|
707 | + * End of validation |
|
708 | + */ |
|
709 | + |
|
710 | + geodir_popular_postview_output($params, $params); |
|
711 | + |
|
712 | + |
|
713 | + $output = ob_get_contents(); |
|
714 | + |
|
715 | + ob_end_clean(); |
|
716 | + |
|
717 | + return $output; |
|
718 | 718 | } |
719 | 719 | |
720 | 720 | add_shortcode('gd_recent_reviews', 'geodir_sc_recent_reviews'); |
@@ -736,37 +736,37 @@ discard block |
||
736 | 736 | * @return string Recent reviews HTML. |
737 | 737 | */ |
738 | 738 | function geodir_sc_recent_reviews($atts) { |
739 | - ob_start(); |
|
740 | - $defaults = array( |
|
739 | + ob_start(); |
|
740 | + $defaults = array( |
|
741 | 741 | 'title' => '', |
742 | 742 | 'count' => 5, |
743 | - ); |
|
743 | + ); |
|
744 | 744 | |
745 | - $params = shortcode_atts($defaults, $atts); |
|
745 | + $params = shortcode_atts($defaults, $atts); |
|
746 | 746 | |
747 | - $count = absint($params['count']); |
|
748 | - if (0 == $count) { |
|
749 | - $count = 1; |
|
750 | - } |
|
747 | + $count = absint($params['count']); |
|
748 | + if (0 == $count) { |
|
749 | + $count = 1; |
|
750 | + } |
|
751 | 751 | |
752 | 752 | $title = !empty($params['title']) ? __($params['title'], 'geodirectory') : ''; |
753 | 753 | |
754 | - $comments_li = geodir_get_recent_reviews(30, $count, 100, false); |
|
754 | + $comments_li = geodir_get_recent_reviews(30, $count, 100, false); |
|
755 | 755 | |
756 | - if ($comments_li) { |
|
757 | - if ($title != '') { ?> |
|
756 | + if ($comments_li) { |
|
757 | + if ($title != '') { ?> |
|
758 | 758 | <h3 class="geodir-sc-recent-reviews-title widget-title"><?php echo $title; ?></h3> |
759 | 759 | <?php } ?> |
760 | 760 | <div class="geodir_sc_recent_reviews_section"> |
761 | 761 | <ul class="geodir_sc_recent_reviews"><?php echo $comments_li; ?></ul> |
762 | 762 | </div> |
763 | 763 | <?php |
764 | - } |
|
765 | - $output = ob_get_contents(); |
|
764 | + } |
|
765 | + $output = ob_get_contents(); |
|
766 | 766 | |
767 | - ob_end_clean(); |
|
767 | + ob_end_clean(); |
|
768 | 768 | |
769 | - return $output; |
|
769 | + return $output; |
|
770 | 770 | } |
771 | 771 | |
772 | 772 | add_shortcode('gd_related_listings', 'geodir_sc_related_listings'); |
@@ -796,64 +796,64 @@ discard block |
||
796 | 796 | */ |
797 | 797 | function geodir_sc_related_listings($atts) |
798 | 798 | { |
799 | - ob_start(); |
|
800 | - $defaults = array( |
|
801 | - 'post_number' => 5, |
|
802 | - 'relate_to' => 'category', |
|
803 | - 'layout' => 'gridview_onehalf', |
|
804 | - 'add_location_filter' => 0, |
|
805 | - 'listing_width' => '', |
|
806 | - 'list_sort' => 'latest', |
|
807 | - 'character_count' => 20, |
|
808 | - 'is_widget' => 1, |
|
809 | - 'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>', |
|
810 | - ); |
|
811 | - // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet. |
|
812 | - |
|
813 | - $params = shortcode_atts($defaults, $atts); |
|
814 | - |
|
815 | - /** |
|
816 | - * Begin validating parameters |
|
817 | - */ |
|
799 | + ob_start(); |
|
800 | + $defaults = array( |
|
801 | + 'post_number' => 5, |
|
802 | + 'relate_to' => 'category', |
|
803 | + 'layout' => 'gridview_onehalf', |
|
804 | + 'add_location_filter' => 0, |
|
805 | + 'listing_width' => '', |
|
806 | + 'list_sort' => 'latest', |
|
807 | + 'character_count' => 20, |
|
808 | + 'is_widget' => 1, |
|
809 | + 'before_title' => '<style type="text/css">.geodir_category_list_view li{margin:0px!important}</style>', |
|
810 | + ); |
|
811 | + // The "before_title" code is an ugly & terrible hack. But it works for now. I should enqueue a new stylesheet. |
|
812 | + |
|
813 | + $params = shortcode_atts($defaults, $atts); |
|
814 | + |
|
815 | + /** |
|
816 | + * Begin validating parameters |
|
817 | + */ |
|
818 | 818 | |
819 | - // Validate that post_number is a number and is 1 or higher |
|
820 | - $params['post_number'] = absint($params['post_number']); |
|
821 | - if (0 === $params['post_number']) { |
|
822 | - $params['post_number'] = 1; |
|
823 | - } |
|
819 | + // Validate that post_number is a number and is 1 or higher |
|
820 | + $params['post_number'] = absint($params['post_number']); |
|
821 | + if (0 === $params['post_number']) { |
|
822 | + $params['post_number'] = 1; |
|
823 | + } |
|
824 | 824 | |
825 | - // Validate relate_to - only category or tags |
|
826 | - $params['relate_to'] = geodir_strtolower($params['relate_to']); |
|
827 | - if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) { |
|
828 | - $params['relate_to'] = 'category'; |
|
829 | - } |
|
825 | + // Validate relate_to - only category or tags |
|
826 | + $params['relate_to'] = geodir_strtolower($params['relate_to']); |
|
827 | + if ('category' != $params['relate_to'] && 'tags' != $params['relate_to']) { |
|
828 | + $params['relate_to'] = 'category'; |
|
829 | + } |
|
830 | 830 | |
831 | - // Validate layout selection |
|
832 | - $params['layout'] = gdsc_validate_layout_choice($params['layout']); |
|
831 | + // Validate layout selection |
|
832 | + $params['layout'] = gdsc_validate_layout_choice($params['layout']); |
|
833 | 833 | |
834 | - // Validate sorting option |
|
835 | - $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); |
|
834 | + // Validate sorting option |
|
835 | + $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); |
|
836 | 836 | |
837 | - // Validate add_location_filter |
|
838 | - $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
|
837 | + // Validate add_location_filter |
|
838 | + $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
|
839 | 839 | |
840 | - // Validate listing_width |
|
841 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
840 | + // Validate listing_width |
|
841 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
842 | 842 | |
843 | - // Validate character_count |
|
844 | - $params['character_count'] = absint($params['character_count']); |
|
845 | - if (20 > $params['character_count']) { |
|
846 | - $params['character_count'] = 20; |
|
847 | - } |
|
843 | + // Validate character_count |
|
844 | + $params['character_count'] = absint($params['character_count']); |
|
845 | + if (20 > $params['character_count']) { |
|
846 | + $params['character_count'] = 20; |
|
847 | + } |
|
848 | 848 | |
849 | - if ($related_display = geodir_related_posts_display($params)) { |
|
850 | - echo $related_display; |
|
851 | - } |
|
852 | - $output = ob_get_contents(); |
|
849 | + if ($related_display = geodir_related_posts_display($params)) { |
|
850 | + echo $related_display; |
|
851 | + } |
|
852 | + $output = ob_get_contents(); |
|
853 | 853 | |
854 | - ob_end_clean(); |
|
854 | + ob_end_clean(); |
|
855 | 855 | |
856 | - return $output; |
|
856 | + return $output; |
|
857 | 857 | } |
858 | 858 | |
859 | 859 | /** |
@@ -877,12 +877,12 @@ discard block |
||
877 | 877 | * @return string Advanced search widget HTML. |
878 | 878 | */ |
879 | 879 | function geodir_sc_advanced_search($atts) { |
880 | - $defaults = array( |
|
880 | + $defaults = array( |
|
881 | 881 | 'title' => '', |
882 | 882 | 'before_widget' => '<section id="geodir_advanced_search-1" class="widget geodir-widget geodir_advanced_search_widget">', |
883 | - 'after_widget' => '</section>', |
|
884 | - 'before_title' => '<h3 class="widget-title">', |
|
885 | - 'after_title' => '</h3>', |
|
883 | + 'after_widget' => '</section>', |
|
884 | + 'before_title' => '<h3 class="widget-title">', |
|
885 | + 'after_title' => '</h3>', |
|
886 | 886 | 'show_adv_search' => 'default' |
887 | 887 | ); |
888 | 888 | |
@@ -906,9 +906,9 @@ discard block |
||
906 | 906 | the_widget('geodir_advance_search_widget', $params, $params ); |
907 | 907 | |
908 | 908 | $output = ob_get_contents(); |
909 | - ob_end_clean(); |
|
909 | + ob_end_clean(); |
|
910 | 910 | |
911 | - return $output; |
|
911 | + return $output; |
|
912 | 912 | } |
913 | 913 | add_shortcode('gd_advanced_search', 'geodir_sc_advanced_search'); |
914 | 914 | |
@@ -954,48 +954,48 @@ discard block |
||
954 | 954 | 'add_location_filter' => '1', |
955 | 955 | 'tab_layout' => 'bestof-tabs-on-top', |
956 | 956 | 'before_widget' => '<section id="bestof_widget-1" class="widget geodir-widget geodir_bestof_widget geodir_sc_bestof_widget">', |
957 | - 'after_widget' => '</section>', |
|
958 | - 'before_title' => '<h3 class="widget-title">', |
|
959 | - 'after_title' => '</h3>', |
|
957 | + 'after_widget' => '</section>', |
|
958 | + 'before_title' => '<h3 class="widget-title">', |
|
959 | + 'after_title' => '</h3>', |
|
960 | 960 | ); |
961 | 961 | $params = shortcode_atts($defaults, $atts); |
962 | 962 | |
963 | - /** |
|
964 | - * Validate our incoming params |
|
965 | - */ |
|
963 | + /** |
|
964 | + * Validate our incoming params |
|
965 | + */ |
|
966 | 966 | |
967 | - // Validate the selected post type, default to gd_place on fail |
|
968 | - if (!(gdsc_is_post_type_valid($params['post_type']))) { |
|
969 | - $params['post_type'] = 'gd_place'; |
|
970 | - } |
|
967 | + // Validate the selected post type, default to gd_place on fail |
|
968 | + if (!(gdsc_is_post_type_valid($params['post_type']))) { |
|
969 | + $params['post_type'] = 'gd_place'; |
|
970 | + } |
|
971 | 971 | |
972 | 972 | // Post limit needs to be a positive integer |
973 | - $params['post_limit'] = absint($params['post_limit']); |
|
974 | - if (0 == $params['post_limit']) { |
|
975 | - $params['post_limit'] = 5; |
|
976 | - } |
|
973 | + $params['post_limit'] = absint($params['post_limit']); |
|
974 | + if (0 == $params['post_limit']) { |
|
975 | + $params['post_limit'] = 5; |
|
976 | + } |
|
977 | 977 | |
978 | 978 | // Category limit needs to be a positive integer |
979 | - $params['categ_limit'] = absint($params['categ_limit']); |
|
980 | - if (0 == $params['categ_limit']) { |
|
981 | - $params['categ_limit'] = 3; |
|
982 | - } |
|
979 | + $params['categ_limit'] = absint($params['categ_limit']); |
|
980 | + if (0 == $params['categ_limit']) { |
|
981 | + $params['categ_limit'] = 3; |
|
982 | + } |
|
983 | 983 | |
984 | 984 | // Tab layout validation |
985 | - $params['tab_layout'] = $params['tab_layout']; |
|
986 | - if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) { |
|
987 | - $params['tab_layout'] = 'bestof-tabs-on-top'; |
|
988 | - } |
|
985 | + $params['tab_layout'] = $params['tab_layout']; |
|
986 | + if (!in_array($params['tab_layout'], array('bestof-tabs-on-top', 'bestof-tabs-on-left', 'bestof-tabs-as-dropdown'))) { |
|
987 | + $params['tab_layout'] = 'bestof-tabs-on-top'; |
|
988 | + } |
|
989 | 989 | |
990 | 990 | // Validate character_count |
991 | - $params['character_count'] = $params['character_count']; |
|
991 | + $params['character_count'] = $params['character_count']; |
|
992 | 992 | |
993 | 993 | ob_start(); |
994 | 994 | the_widget('geodir_bestof_widget', $params, $params); |
995 | - $output = ob_get_contents(); |
|
996 | - ob_end_clean(); |
|
995 | + $output = ob_get_contents(); |
|
996 | + ob_end_clean(); |
|
997 | 997 | |
998 | - return $output; |
|
998 | + return $output; |
|
999 | 999 | } |
1000 | 1000 | add_shortcode('gd_bestof_widget', 'geodir_sc_bestof_widget'); |
1001 | 1001 | |
@@ -1041,105 +1041,105 @@ discard block |
||
1041 | 1041 | * @return string HTML content to display geodirectory listings. |
1042 | 1042 | */ |
1043 | 1043 | function geodir_sc_gd_listings($atts, $content = '') { |
1044 | - global $post; |
|
1044 | + global $post; |
|
1045 | 1045 | |
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 | - ); |
|
1066 | - $params = shortcode_atts($defaults, $atts); |
|
1067 | - |
|
1068 | - $params['title'] = wp_strip_all_tags($params['title']); |
|
1069 | - $params['post_type'] = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place'; |
|
1070 | - |
|
1071 | - // Validate the selected category/ies - Grab the current list based on post_type |
|
1072 | - $category_taxonomy = geodir_get_taxonomies($params['post_type']); |
|
1073 | - $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); |
|
1074 | - |
|
1075 | - // Make sure we have an array |
|
1076 | - if (!(is_array($params['category']))) { |
|
1077 | - $params['category'] = explode(',', $params['category']); |
|
1078 | - } |
|
1079 | - |
|
1080 | - // Array_intersect returns only the items in $params['category'] that are also in our category list |
|
1081 | - // Otherwise it becomes empty and later on that will mean "All" |
|
1082 | - $params['category'] = array_intersect($params['category'], $categories); |
|
1083 | - |
|
1084 | - // Post_number needs to be a positive integer |
|
1085 | - $params['post_number'] = absint($params['post_number']); |
|
1086 | - $params['post_number'] = $params['post_number'] > 0 ? $params['post_number'] : 10; |
|
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 | + ); |
|
1066 | + $params = shortcode_atts($defaults, $atts); |
|
1067 | + |
|
1068 | + $params['title'] = wp_strip_all_tags($params['title']); |
|
1069 | + $params['post_type'] = gdsc_is_post_type_valid($params['post_type']) ? $params['post_type'] : 'gd_place'; |
|
1070 | + |
|
1071 | + // Validate the selected category/ies - Grab the current list based on post_type |
|
1072 | + $category_taxonomy = geodir_get_taxonomies($params['post_type']); |
|
1073 | + $categories = get_terms($category_taxonomy, array('orderby' => 'count', 'order' => 'DESC', 'fields' => 'ids')); |
|
1074 | + |
|
1075 | + // Make sure we have an array |
|
1076 | + if (!(is_array($params['category']))) { |
|
1077 | + $params['category'] = explode(',', $params['category']); |
|
1078 | + } |
|
1079 | + |
|
1080 | + // Array_intersect returns only the items in $params['category'] that are also in our category list |
|
1081 | + // Otherwise it becomes empty and later on that will mean "All" |
|
1082 | + $params['category'] = array_intersect($params['category'], $categories); |
|
1083 | + |
|
1084 | + // Post_number needs to be a positive integer |
|
1085 | + $params['post_number'] = absint($params['post_number']); |
|
1086 | + $params['post_number'] = $params['post_number'] > 0 ? $params['post_number'] : 10; |
|
1087 | 1087 | |
1088 | - // Post_number needs to be a positive integer |
|
1089 | - if (!empty($atts['post_author'])) { |
|
1090 | - if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') { |
|
1091 | - $params['post_author'] = $post->post_author; |
|
1092 | - } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) { |
|
1093 | - $params['post_author'] = absint($atts['post_author']); |
|
1094 | - } else { |
|
1095 | - unset($params['post_author']); |
|
1096 | - } |
|
1097 | - } else { |
|
1098 | - unset($params['post_author']); |
|
1099 | - } |
|
1100 | - |
|
1101 | - // Validate character_count |
|
1102 | - //todo: is this necessary? |
|
1103 | - $params['character_count'] = $params['character_count']; |
|
1104 | - |
|
1105 | - // Validate our layout choice |
|
1106 | - // Outside of the norm, I added some more simple terms to match the existing |
|
1107 | - // So now I just run the switch to set it properly. |
|
1108 | - $params['layout'] = gdsc_validate_layout_choice($params['layout']); |
|
1109 | - |
|
1110 | - // Validate our sorting choice |
|
1111 | - $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); |
|
1112 | - |
|
1113 | - // Validate Listing width, used in the template widget-listing-listview.php |
|
1114 | - // The context is in width=$listing_width% - So we need a positive number between 0 & 100 |
|
1115 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
1116 | - |
|
1117 | - // Validate the checkboxes used on the widget |
|
1118 | - $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
|
1119 | - $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); |
|
1120 | - $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); |
|
1121 | - $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); |
|
1122 | - $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); |
|
1123 | - $params['with_pagination'] = gdsc_to_bool_val($params['with_pagination']); |
|
1124 | - $params['top_pagination'] = gdsc_to_bool_val($params['top_pagination']); |
|
1125 | - $params['bottom_pagination'] = gdsc_to_bool_val($params['bottom_pagination']); |
|
1126 | - |
|
1127 | - /** |
|
1128 | - * End of validation |
|
1129 | - */ |
|
1130 | - if (isset($atts['geodir_ajax'])) { |
|
1131 | - $params['geodir_ajax'] = $atts['geodir_ajax']; |
|
1132 | - unset($atts['geodir_ajax']); |
|
1133 | - } |
|
1134 | - if (isset($atts['pageno'])) { |
|
1135 | - $params['pageno'] = $atts['pageno']; |
|
1136 | - unset($atts['pageno']); |
|
1137 | - } |
|
1138 | - $params['shortcode_atts'] = $atts; |
|
1139 | - |
|
1140 | - $output = geodir_sc_gd_listings_output($params); |
|
1141 | - |
|
1142 | - return $output; |
|
1088 | + // Post_number needs to be a positive integer |
|
1089 | + if (!empty($atts['post_author'])) { |
|
1090 | + if ($atts['post_author'] == 'current' && !empty($post) && isset($post->post_author) && $post->post_type != 'page') { |
|
1091 | + $params['post_author'] = $post->post_author; |
|
1092 | + } else if ($atts['post_author'] != 'current' && absint($atts['post_author']) > 0) { |
|
1093 | + $params['post_author'] = absint($atts['post_author']); |
|
1094 | + } else { |
|
1095 | + unset($params['post_author']); |
|
1096 | + } |
|
1097 | + } else { |
|
1098 | + unset($params['post_author']); |
|
1099 | + } |
|
1100 | + |
|
1101 | + // Validate character_count |
|
1102 | + //todo: is this necessary? |
|
1103 | + $params['character_count'] = $params['character_count']; |
|
1104 | + |
|
1105 | + // Validate our layout choice |
|
1106 | + // Outside of the norm, I added some more simple terms to match the existing |
|
1107 | + // So now I just run the switch to set it properly. |
|
1108 | + $params['layout'] = gdsc_validate_layout_choice($params['layout']); |
|
1109 | + |
|
1110 | + // Validate our sorting choice |
|
1111 | + $params['list_sort'] = gdsc_validate_sort_choice($params['list_sort']); |
|
1112 | + |
|
1113 | + // Validate Listing width, used in the template widget-listing-listview.php |
|
1114 | + // The context is in width=$listing_width% - So we need a positive number between 0 & 100 |
|
1115 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
1116 | + |
|
1117 | + // Validate the checkboxes used on the widget |
|
1118 | + $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
|
1119 | + $params['show_featured_only'] = gdsc_to_bool_val($params['show_featured_only']); |
|
1120 | + $params['show_special_only'] = gdsc_to_bool_val($params['show_special_only']); |
|
1121 | + $params['with_pics_only'] = gdsc_to_bool_val($params['with_pics_only']); |
|
1122 | + $params['with_videos_only'] = gdsc_to_bool_val($params['with_videos_only']); |
|
1123 | + $params['with_pagination'] = gdsc_to_bool_val($params['with_pagination']); |
|
1124 | + $params['top_pagination'] = gdsc_to_bool_val($params['top_pagination']); |
|
1125 | + $params['bottom_pagination'] = gdsc_to_bool_val($params['bottom_pagination']); |
|
1126 | + |
|
1127 | + /** |
|
1128 | + * End of validation |
|
1129 | + */ |
|
1130 | + if (isset($atts['geodir_ajax'])) { |
|
1131 | + $params['geodir_ajax'] = $atts['geodir_ajax']; |
|
1132 | + unset($atts['geodir_ajax']); |
|
1133 | + } |
|
1134 | + if (isset($atts['pageno'])) { |
|
1135 | + $params['pageno'] = $atts['pageno']; |
|
1136 | + unset($atts['pageno']); |
|
1137 | + } |
|
1138 | + $params['shortcode_atts'] = $atts; |
|
1139 | + |
|
1140 | + $output = geodir_sc_gd_listings_output($params); |
|
1141 | + |
|
1142 | + return $output; |
|
1143 | 1143 | } |
1144 | 1144 | add_shortcode('gd_listings', 'geodir_sc_gd_listings'); |
1145 | 1145 | |
@@ -1187,23 +1187,23 @@ discard block |
||
1187 | 1187 | 'max_count' => 'all', |
1188 | 1188 | 'max_level' => '1', |
1189 | 1189 | 'before_widget' => '<section id="geodir_cpt_categories_widget-1" class="widget geodir-widget geodir_cpt_categories_widget geodir_sc_cpt_categories_widget">', |
1190 | - 'after_widget' => '</section>', |
|
1191 | - 'before_title' => '<h3 class="widget-title">', |
|
1192 | - 'after_title' => '</h3>', |
|
1190 | + 'after_widget' => '</section>', |
|
1191 | + 'before_title' => '<h3 class="widget-title">', |
|
1192 | + 'after_title' => '</h3>', |
|
1193 | 1193 | ); |
1194 | 1194 | $params = shortcode_atts($defaults, $atts); |
1195 | 1195 | |
1196 | - /** |
|
1197 | - * Validate our incoming params |
|
1198 | - */ |
|
1196 | + /** |
|
1197 | + * Validate our incoming params |
|
1198 | + */ |
|
1199 | 1199 | // Make sure we have an array |
1200 | - $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array(); |
|
1200 | + $params['post_type'] = !is_array($params['post_type']) && trim($params['post_type']) != '' ? explode(',', trim($params['post_type'])) : array(); |
|
1201 | 1201 | |
1202 | 1202 | // Validate the checkboxes used on the widget |
1203 | - $params['hide_empty'] = gdsc_to_bool_val($params['hide_empty']); |
|
1204 | - $params['show_count'] = gdsc_to_bool_val($params['show_count']); |
|
1205 | - $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']); |
|
1206 | - $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']); |
|
1203 | + $params['hide_empty'] = gdsc_to_bool_val($params['hide_empty']); |
|
1204 | + $params['show_count'] = gdsc_to_bool_val($params['show_count']); |
|
1205 | + $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']); |
|
1206 | + $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']); |
|
1207 | 1207 | |
1208 | 1208 | if ($params['max_count'] != 'all') { |
1209 | 1209 | $params['max_count'] = absint($params['max_count']); |
@@ -1217,10 +1217,10 @@ discard block |
||
1217 | 1217 | |
1218 | 1218 | ob_start(); |
1219 | 1219 | the_widget('geodir_cpt_categories_widget', $params, $params); |
1220 | - $output = ob_get_contents(); |
|
1221 | - ob_end_clean(); |
|
1220 | + $output = ob_get_contents(); |
|
1221 | + ob_end_clean(); |
|
1222 | 1222 | |
1223 | - return $output; |
|
1223 | + return $output; |
|
1224 | 1224 | } |
1225 | 1225 | add_shortcode('gd_cpt_categories', 'geodir_sc_cpt_categories_widget'); |
1226 | 1226 | ?> |
1227 | 1227 | \ No newline at end of file |
@@ -202,14 +202,14 @@ discard block |
||
202 | 202 | // Add marker cluster |
203 | 203 | if (isset($params['marker_cluster']) && gdsc_to_bool_val($params['marker_cluster']) && defined('GDCLUSTER_VERSION')) { |
204 | 204 | $map_args['enable_marker_cluster'] = true; |
205 | - if(get_option('geodir_marker_cluster_type')) { |
|
205 | + if (get_option('geodir_marker_cluster_type')) { |
|
206 | 206 | if ($map_args['autozoom']) { |
207 | 207 | $map_args['enable_marker_cluster_no_reposition'] = false; |
208 | 208 | } else { |
209 | 209 | $map_args['enable_marker_cluster_no_reposition'] = true; |
210 | 210 | } |
211 | 211 | |
212 | - $map_args['enable_marker_cluster_server'] = true ; |
|
212 | + $map_args['enable_marker_cluster_server'] = true; |
|
213 | 213 | |
214 | 214 | } |
215 | 215 | } else { |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | } |
218 | 218 | |
219 | 219 | // if lat and long set in shortcode, hack it so the map is not repositioned |
220 | - if(!empty($params['latitude']) && !empty($params['longitude']) ){ |
|
220 | + if (!empty($params['latitude']) && !empty($params['longitude'])) { |
|
221 | 221 | $map_args['enable_marker_cluster_no_reposition'] = true; |
222 | 222 | } |
223 | 223 | |
@@ -890,7 +890,7 @@ discard block |
||
890 | 890 | |
891 | 891 | $show_adv_search = isset($params['show_adv_search']) && in_array($params['show_adv_search'], array('default', 'always', 'searched')) ? $params['show_adv_search'] : ''; |
892 | 892 | |
893 | - if ($show_adv_search != '' ) { |
|
893 | + if ($show_adv_search != '') { |
|
894 | 894 | $show_adv_class = 'geodir-advance-search-' . $show_adv_search . ' '; |
895 | 895 | if ($show_adv_search == 'searched' && geodir_is_page('search')) { |
896 | 896 | $show_adv_search = 'search'; |
@@ -903,7 +903,7 @@ discard block |
||
903 | 903 | ob_start(); |
904 | 904 | |
905 | 905 | //geodir_get_template_part('listing', 'filter-form'); |
906 | - the_widget('geodir_advance_search_widget', $params, $params ); |
|
906 | + the_widget('geodir_advance_search_widget', $params, $params); |
|
907 | 907 | |
908 | 908 | $output = ob_get_contents(); |
909 | 909 | ob_end_clean(); |
@@ -1100,7 +1100,7 @@ discard block |
||
1100 | 1100 | |
1101 | 1101 | // Validate character_count |
1102 | 1102 | //todo: is this necessary? |
1103 | - $params['character_count'] = $params['character_count']; |
|
1103 | + $params['character_count'] = $params['character_count']; |
|
1104 | 1104 | |
1105 | 1105 | // Validate our layout choice |
1106 | 1106 | // Outside of the norm, I added some more simple terms to match the existing |
@@ -1112,7 +1112,7 @@ discard block |
||
1112 | 1112 | |
1113 | 1113 | // Validate Listing width, used in the template widget-listing-listview.php |
1114 | 1114 | // The context is in width=$listing_width% - So we need a positive number between 0 & 100 |
1115 | - $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
1115 | + $params['listing_width'] = gdsc_validate_listing_width($params['listing_width']); |
|
1116 | 1116 | |
1117 | 1117 | // Validate the checkboxes used on the widget |
1118 | 1118 | $params['add_location_filter'] = gdsc_to_bool_val($params['add_location_filter']); |
@@ -1135,7 +1135,7 @@ discard block |
||
1135 | 1135 | $params['pageno'] = $atts['pageno']; |
1136 | 1136 | unset($atts['pageno']); |
1137 | 1137 | } |
1138 | - $params['shortcode_atts'] = $atts; |
|
1138 | + $params['shortcode_atts'] = $atts; |
|
1139 | 1139 | |
1140 | 1140 | $output = geodir_sc_gd_listings_output($params); |
1141 | 1141 | |
@@ -1202,8 +1202,8 @@ discard block |
||
1202 | 1202 | // Validate the checkboxes used on the widget |
1203 | 1203 | $params['hide_empty'] = gdsc_to_bool_val($params['hide_empty']); |
1204 | 1204 | $params['show_count'] = gdsc_to_bool_val($params['show_count']); |
1205 | - $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']); |
|
1206 | - $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']); |
|
1205 | + $params['hide_icon'] = gdsc_to_bool_val($params['hide_icon']); |
|
1206 | + $params['cpt_left'] = gdsc_to_bool_val($params['cpt_left']); |
|
1207 | 1207 | |
1208 | 1208 | if ($params['max_count'] != 'all') { |
1209 | 1209 | $params['max_count'] = absint($params['max_count']); |
@@ -1,14 +1,14 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Template for the success page after submitting a listing |
|
4 | - * |
|
5 | - * You can make most changes via hooks or see the link below for info on how to replace the template in your theme. |
|
6 | - * |
|
7 | - * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ |
|
8 | - * @since 1.0.0 |
|
9 | - * @package GeoDirectory |
|
10 | - * @deprecated 1.4.2 listing-success.php |
|
11 | - */ |
|
3 | + * Template for the success page after submitting a listing |
|
4 | + * |
|
5 | + * You can make most changes via hooks or see the link below for info on how to replace the template in your theme. |
|
6 | + * |
|
7 | + * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ |
|
8 | + * @since 1.0.0 |
|
9 | + * @package GeoDirectory |
|
10 | + * @deprecated 1.4.2 listing-success.php |
|
11 | + */ |
|
12 | 12 | get_header(); |
13 | 13 | |
14 | 14 | /** |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Function includes, this file calls all the separate function files |
|
4 | - * |
|
5 | - * @since 1.0.0 |
|
6 | - * @package GeoDirectory |
|
7 | - */ |
|
3 | + * Function includes, this file calls all the separate function files |
|
4 | + * |
|
5 | + * @since 1.0.0 |
|
6 | + * @package GeoDirectory |
|
7 | + */ |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Contains class & functions for geodirectory session usage. |
@@ -1,13 +1,13 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Template for the locations page |
|
4 | - * |
|
5 | - * You can make most changes via hooks or see the link below for info on how to replace the template in your theme. |
|
6 | - * |
|
7 | - * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ |
|
8 | - * @since 1.0.0 |
|
9 | - * @package GeoDirectory |
|
10 | - */ |
|
3 | + * Template for the locations page |
|
4 | + * |
|
5 | + * You can make most changes via hooks or see the link below for info on how to replace the template in your theme. |
|
6 | + * |
|
7 | + * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ |
|
8 | + * @since 1.0.0 |
|
9 | + * @package GeoDirectory |
|
10 | + */ |
|
11 | 11 | // get header |
12 | 12 | get_header(); |
13 | 13 |
@@ -1,28 +1,28 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Divi theme compatibility functions. |
|
4 | - * |
|
5 | - * This file lets the GeoDirectory Plugin use the Divi theme HTML wrappers to fit and work perfectly. |
|
6 | - * |
|
7 | - * @since 1.0.0 |
|
8 | - * @package GeoDirectory |
|
9 | - */ |
|
3 | + * Divi theme compatibility functions. |
|
4 | + * |
|
5 | + * This file lets the GeoDirectory Plugin use the Divi theme HTML wrappers to fit and work perfectly. |
|
6 | + * |
|
7 | + * @since 1.0.0 |
|
8 | + * @package GeoDirectory |
|
9 | + */ |
|
10 | 10 | add_filter('body_class', 'geodir_divi_signup_body_class', 999); |
11 | 11 | /** |
12 | - * replace divi body class on signup page. |
|
13 | - * |
|
14 | - * @since 1.0.0 |
|
15 | - * @package GeoDirectory |
|
16 | - * @param $classes |
|
17 | - * @return array|mixed |
|
18 | - */ |
|
12 | + * replace divi body class on signup page. |
|
13 | + * |
|
14 | + * @since 1.0.0 |
|
15 | + * @package GeoDirectory |
|
16 | + * @param $classes |
|
17 | + * @return array|mixed |
|
18 | + */ |
|
19 | 19 | function geodir_divi_signup_body_class($classes) |
20 | 20 | { |
21 | - if (geodir_is_page('login')) { |
|
22 | - $classes = str_replace('et_right_sidebar', 'et_full_width_page', $classes); |
|
23 | - $classes[] = 'divi-gd-signup'; |
|
24 | - } |
|
25 | - return $classes; |
|
21 | + if (geodir_is_page('login')) { |
|
22 | + $classes = str_replace('et_right_sidebar', 'et_full_width_page', $classes); |
|
23 | + $classes[] = 'divi-gd-signup'; |
|
24 | + } |
|
25 | + return $classes; |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | add_action('geodir_wrapper_close', 'geodir_divi_action_wrapper_close', 11); |
@@ -34,8 +34,8 @@ discard block |
||
34 | 34 | */ |
35 | 35 | function geodir_divi_action_wrapper_close() |
36 | 36 | { |
37 | - if (geodir_is_page('login')) { |
|
38 | - // We need to close extra divs generated by WRAPPER BEFORE MAIN CONTENT (below) because there is no sidebar on this page |
|
39 | - echo '</div></div>'; |
|
40 | - } |
|
37 | + if (geodir_is_page('login')) { |
|
38 | + // We need to close extra divs generated by WRAPPER BEFORE MAIN CONTENT (below) because there is no sidebar on this page |
|
39 | + echo '</div></div>'; |
|
40 | + } |
|
41 | 41 | } |
42 | 42 | \ No newline at end of file |
@@ -1,11 +1,11 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Permalink tab settings. |
|
4 | - * |
|
5 | - * @since 1.0.0 |
|
6 | - * @package GeoDirectory |
|
7 | - * @global array $geodir_settings Geodirectory settings array. |
|
8 | - */ |
|
3 | + * Permalink tab settings. |
|
4 | + * |
|
5 | + * @since 1.0.0 |
|
6 | + * @package GeoDirectory |
|
7 | + * @global array $geodir_settings Geodirectory settings array. |
|
8 | + */ |
|
9 | 9 | global $geodir_settings; |
10 | 10 | |
11 | 11 | /** |
@@ -16,184 +16,184 @@ discard block |
||
16 | 16 | */ |
17 | 17 | $geodir_settings['permalink_settings'] = apply_filters('geodir_permalink_settings', array( |
18 | 18 | |
19 | - /* Listing Permalink Settings start */ |
|
20 | - array('name' => __('Permalink', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set permalink', 'id' => 'geodir_permalink_settings '), |
|
21 | - |
|
22 | - |
|
23 | - array('name' => __('Listing Detail Permalink Settings', 'geodirectory'), |
|
24 | - 'type' => 'sectionstart', |
|
25 | - 'desc' => '', |
|
26 | - 'id' => 'geodir_permalink'), |
|
27 | - |
|
28 | - array( |
|
29 | - 'name' => __('Add location in urls', 'geodirectory'), |
|
30 | - 'desc' => __('Add location slug in listing urls', 'geodirectory'), |
|
31 | - 'id' => 'geodir_add_location_url', |
|
32 | - 'type' => 'checkbox', |
|
33 | - 'std' => '1', |
|
34 | - 'checkboxgroup' => 'start' |
|
35 | - ), |
|
36 | - |
|
37 | - array( |
|
38 | - 'name' => __('Add full location in listing urls', 'geodirectory'), |
|
39 | - 'desc' => __('Add full location info with country, region and city slug in listing urls', 'geodirectory'), |
|
40 | - 'id' => 'geodir_show_location_url', |
|
41 | - 'type' => 'radio', |
|
42 | - 'value' => 'all', |
|
43 | - 'std' => 'all', |
|
44 | - 'radiogroup' => '' |
|
45 | - ), |
|
46 | - |
|
47 | - array( |
|
48 | - 'name' => __('Add country and city slug in listing urls', 'geodirectory'), |
|
49 | - 'desc' => __('Add country and city slug in listing urls (/country/city/)', 'geodirectory'), |
|
50 | - 'id' => 'geodir_show_location_url', |
|
51 | - 'type' => 'radio', |
|
52 | - 'std' => 'all', |
|
53 | - 'value' => 'country_city', |
|
54 | - 'radiogroup' => '' |
|
55 | - ), |
|
56 | - array( |
|
57 | - 'name' => __('Add region and city slug in listing urls', 'geodirectory'), |
|
58 | - 'desc' => __('Add region and city slug in listing urls (/region/city/)', 'geodirectory'), |
|
59 | - 'id' => 'geodir_show_location_url', |
|
60 | - 'type' => 'radio', |
|
61 | - 'std' => 'all', |
|
62 | - 'value' => 'region_city', |
|
63 | - 'radiogroup' => '' |
|
64 | - ), |
|
65 | - array( |
|
66 | - 'name' => __('Add only city in listing urls', 'geodirectory'), |
|
67 | - 'desc' => __('Add city slug in listing urls', 'geodirectory'), |
|
68 | - 'id' => 'geodir_show_location_url', |
|
69 | - 'type' => 'radio', |
|
70 | - 'std' => 'all', |
|
71 | - 'value' => 'city', |
|
72 | - 'radiogroup' => 'end' |
|
73 | - ), |
|
74 | - |
|
75 | - |
|
76 | - |
|
77 | - array( |
|
78 | - 'name' => __('Add category in listing urls', 'geodirectory'), |
|
79 | - 'desc' => __('Add requested category slugs in listing urls', 'geodirectory'), |
|
80 | - 'id' => 'geodir_add_categories_url', |
|
81 | - 'type' => 'checkbox', |
|
82 | - 'std' => '1', |
|
83 | - ), |
|
84 | - |
|
85 | - array( |
|
86 | - 'name' => __('Listing url prefix', 'geodirectory'), |
|
87 | - 'desc' => __('Listing prefix to show in url', 'geodirectory'), |
|
88 | - 'id' => 'geodir_listing_prefix', |
|
89 | - 'type' => 'text', |
|
90 | - 'css' => 'min-width:300px;', |
|
91 | - 'std' => 'places' |
|
92 | - ), |
|
93 | - |
|
94 | - array( |
|
95 | - 'name' => __('Location url prefix', 'geodirectory'), |
|
96 | - 'desc' => __('Depreciated, now uses the location page slug', 'geodirectory'), |
|
97 | - 'id' => 'geodir_location_prefix', |
|
98 | - 'type' => 'text', |
|
99 | - 'css' => 'min-width:300px;', |
|
100 | - 'std' => 'location' // Default value to show home top section |
|
101 | - ), |
|
102 | - |
|
103 | - array( |
|
104 | - 'name' => __('Location and category url separator', 'geodirectory'), |
|
105 | - 'desc' => __('Separator to show between location and category url slugs in listing urls', 'geodirectory'), |
|
106 | - 'id' => 'geodir_listingurl_separator', |
|
107 | - 'type' => 'text', |
|
108 | - 'css' => 'min-width:300px;', |
|
109 | - 'std' => 'C' // Default value to show home top section |
|
110 | - ), |
|
111 | - |
|
112 | - array( |
|
113 | - 'name' => __('Listing detail url separator', 'geodirectory'), |
|
114 | - 'desc' => __('Separator to show before listing slug in listing detail urls', 'geodirectory'), |
|
115 | - 'id' => 'geodir_detailurl_separator', |
|
116 | - 'type' => 'text', |
|
117 | - 'css' => 'min-width:300px;', |
|
118 | - 'std' => 'info' // Default value to show home top section |
|
119 | - ), |
|
120 | - |
|
121 | - |
|
122 | - array('type' => 'sectionend', 'id' => 'geodir_permalink'), |
|
123 | - |
|
124 | - array('name' => __('GeoDirectory Pages', 'geodirectory'), |
|
125 | - 'type' => 'sectionstart', |
|
126 | - 'desc' => '', |
|
127 | - 'id' => 'geodir_pages'), |
|
128 | - |
|
129 | - array( |
|
130 | - 'name' => __('GD Home page', 'geodirectory'), |
|
131 | - 'desc' => __('Select the page to use for the GD homepage (you must also set this page in Settings>Reading>Front page for it to work)', 'geodirectory'), |
|
132 | - 'id' => 'geodir_home_page', |
|
133 | - 'type' => 'single_select_page', |
|
134 | - 'class' => 'chosen_select' |
|
135 | - ), |
|
136 | - |
|
137 | - array( |
|
138 | - 'name' => __('Add listing page', 'geodirectory'), |
|
139 | - 'desc' => __('Select the page to use for adding listings', 'geodirectory'), |
|
140 | - 'id' => 'geodir_add_listing_page', |
|
141 | - 'type' => 'single_select_page', |
|
142 | - 'class' => 'chosen_select' |
|
143 | - ), |
|
144 | - |
|
145 | - array( |
|
146 | - 'name' => __('Listing preview page', 'geodirectory'), |
|
147 | - 'desc' => __('Select the page to use for listing preview', 'geodirectory'), |
|
148 | - 'id' => 'geodir_preview_page', |
|
149 | - 'type' => 'single_select_page', |
|
150 | - 'class' => 'chosen_select' |
|
151 | - ), |
|
152 | - |
|
153 | - array( |
|
154 | - 'name' => __('Listing success page', 'geodirectory'), |
|
155 | - 'desc' => __('Select the page to use for listing success', 'geodirectory'), |
|
156 | - 'id' => 'geodir_success_page', |
|
157 | - 'type' => 'single_select_page', |
|
158 | - 'class' => 'chosen_select' |
|
159 | - ), |
|
160 | - |
|
161 | - array( |
|
162 | - 'name' => __('Location page', 'geodirectory'), |
|
163 | - 'desc' => __('Select the page to use for locations', 'geodirectory'), |
|
164 | - 'id' => 'geodir_location_page', |
|
165 | - 'type' => 'single_select_page', |
|
166 | - 'class' => 'chosen_select' |
|
167 | - ), |
|
168 | - |
|
169 | - array( |
|
170 | - 'name' => __('Terms and Conditions page', 'geodirectory'), |
|
171 | - 'desc' => __('Select the page to use for Terms and Conditions (if enabled)', 'geodirectory'), |
|
172 | - 'id' => 'geodir_term_condition_page', |
|
173 | - 'type' => 'single_select_page', |
|
174 | - 'class' => 'chosen_select' |
|
175 | - ), |
|
176 | - |
|
177 | - array( |
|
178 | - 'name' => __('Info page', 'geodirectory'), |
|
179 | - 'desc' => __('Select the page to use for Gd general Info', 'geodirectory'), |
|
180 | - 'id' => 'geodir_info_page', |
|
181 | - 'type' => 'single_select_page', |
|
182 | - 'class' => 'chosen_select' |
|
183 | - ), |
|
184 | - |
|
185 | - array( |
|
186 | - 'name' => __('Login page', 'geodirectory'), |
|
187 | - 'desc' => __('Select the page to use for Login / Register', 'geodirectory'), |
|
188 | - 'id' => 'geodir_login_page', |
|
189 | - 'type' => 'single_select_page', |
|
190 | - 'class' => 'chosen_select' |
|
191 | - ), |
|
192 | - |
|
193 | - |
|
194 | - array('type' => 'sectionend', 'id' => 'geodir_pages'), |
|
195 | - |
|
196 | - /* Listing Detail Permalink Settings End */ |
|
19 | + /* Listing Permalink Settings start */ |
|
20 | + array('name' => __('Permalink', 'geodirectory'), 'type' => 'no_tabs', 'desc' => 'Settings to set permalink', 'id' => 'geodir_permalink_settings '), |
|
21 | + |
|
22 | + |
|
23 | + array('name' => __('Listing Detail Permalink Settings', 'geodirectory'), |
|
24 | + 'type' => 'sectionstart', |
|
25 | + 'desc' => '', |
|
26 | + 'id' => 'geodir_permalink'), |
|
27 | + |
|
28 | + array( |
|
29 | + 'name' => __('Add location in urls', 'geodirectory'), |
|
30 | + 'desc' => __('Add location slug in listing urls', 'geodirectory'), |
|
31 | + 'id' => 'geodir_add_location_url', |
|
32 | + 'type' => 'checkbox', |
|
33 | + 'std' => '1', |
|
34 | + 'checkboxgroup' => 'start' |
|
35 | + ), |
|
36 | + |
|
37 | + array( |
|
38 | + 'name' => __('Add full location in listing urls', 'geodirectory'), |
|
39 | + 'desc' => __('Add full location info with country, region and city slug in listing urls', 'geodirectory'), |
|
40 | + 'id' => 'geodir_show_location_url', |
|
41 | + 'type' => 'radio', |
|
42 | + 'value' => 'all', |
|
43 | + 'std' => 'all', |
|
44 | + 'radiogroup' => '' |
|
45 | + ), |
|
46 | + |
|
47 | + array( |
|
48 | + 'name' => __('Add country and city slug in listing urls', 'geodirectory'), |
|
49 | + 'desc' => __('Add country and city slug in listing urls (/country/city/)', 'geodirectory'), |
|
50 | + 'id' => 'geodir_show_location_url', |
|
51 | + 'type' => 'radio', |
|
52 | + 'std' => 'all', |
|
53 | + 'value' => 'country_city', |
|
54 | + 'radiogroup' => '' |
|
55 | + ), |
|
56 | + array( |
|
57 | + 'name' => __('Add region and city slug in listing urls', 'geodirectory'), |
|
58 | + 'desc' => __('Add region and city slug in listing urls (/region/city/)', 'geodirectory'), |
|
59 | + 'id' => 'geodir_show_location_url', |
|
60 | + 'type' => 'radio', |
|
61 | + 'std' => 'all', |
|
62 | + 'value' => 'region_city', |
|
63 | + 'radiogroup' => '' |
|
64 | + ), |
|
65 | + array( |
|
66 | + 'name' => __('Add only city in listing urls', 'geodirectory'), |
|
67 | + 'desc' => __('Add city slug in listing urls', 'geodirectory'), |
|
68 | + 'id' => 'geodir_show_location_url', |
|
69 | + 'type' => 'radio', |
|
70 | + 'std' => 'all', |
|
71 | + 'value' => 'city', |
|
72 | + 'radiogroup' => 'end' |
|
73 | + ), |
|
74 | + |
|
75 | + |
|
76 | + |
|
77 | + array( |
|
78 | + 'name' => __('Add category in listing urls', 'geodirectory'), |
|
79 | + 'desc' => __('Add requested category slugs in listing urls', 'geodirectory'), |
|
80 | + 'id' => 'geodir_add_categories_url', |
|
81 | + 'type' => 'checkbox', |
|
82 | + 'std' => '1', |
|
83 | + ), |
|
84 | + |
|
85 | + array( |
|
86 | + 'name' => __('Listing url prefix', 'geodirectory'), |
|
87 | + 'desc' => __('Listing prefix to show in url', 'geodirectory'), |
|
88 | + 'id' => 'geodir_listing_prefix', |
|
89 | + 'type' => 'text', |
|
90 | + 'css' => 'min-width:300px;', |
|
91 | + 'std' => 'places' |
|
92 | + ), |
|
93 | + |
|
94 | + array( |
|
95 | + 'name' => __('Location url prefix', 'geodirectory'), |
|
96 | + 'desc' => __('Depreciated, now uses the location page slug', 'geodirectory'), |
|
97 | + 'id' => 'geodir_location_prefix', |
|
98 | + 'type' => 'text', |
|
99 | + 'css' => 'min-width:300px;', |
|
100 | + 'std' => 'location' // Default value to show home top section |
|
101 | + ), |
|
102 | + |
|
103 | + array( |
|
104 | + 'name' => __('Location and category url separator', 'geodirectory'), |
|
105 | + 'desc' => __('Separator to show between location and category url slugs in listing urls', 'geodirectory'), |
|
106 | + 'id' => 'geodir_listingurl_separator', |
|
107 | + 'type' => 'text', |
|
108 | + 'css' => 'min-width:300px;', |
|
109 | + 'std' => 'C' // Default value to show home top section |
|
110 | + ), |
|
111 | + |
|
112 | + array( |
|
113 | + 'name' => __('Listing detail url separator', 'geodirectory'), |
|
114 | + 'desc' => __('Separator to show before listing slug in listing detail urls', 'geodirectory'), |
|
115 | + 'id' => 'geodir_detailurl_separator', |
|
116 | + 'type' => 'text', |
|
117 | + 'css' => 'min-width:300px;', |
|
118 | + 'std' => 'info' // Default value to show home top section |
|
119 | + ), |
|
120 | + |
|
121 | + |
|
122 | + array('type' => 'sectionend', 'id' => 'geodir_permalink'), |
|
123 | + |
|
124 | + array('name' => __('GeoDirectory Pages', 'geodirectory'), |
|
125 | + 'type' => 'sectionstart', |
|
126 | + 'desc' => '', |
|
127 | + 'id' => 'geodir_pages'), |
|
128 | + |
|
129 | + array( |
|
130 | + 'name' => __('GD Home page', 'geodirectory'), |
|
131 | + 'desc' => __('Select the page to use for the GD homepage (you must also set this page in Settings>Reading>Front page for it to work)', 'geodirectory'), |
|
132 | + 'id' => 'geodir_home_page', |
|
133 | + 'type' => 'single_select_page', |
|
134 | + 'class' => 'chosen_select' |
|
135 | + ), |
|
136 | + |
|
137 | + array( |
|
138 | + 'name' => __('Add listing page', 'geodirectory'), |
|
139 | + 'desc' => __('Select the page to use for adding listings', 'geodirectory'), |
|
140 | + 'id' => 'geodir_add_listing_page', |
|
141 | + 'type' => 'single_select_page', |
|
142 | + 'class' => 'chosen_select' |
|
143 | + ), |
|
144 | + |
|
145 | + array( |
|
146 | + 'name' => __('Listing preview page', 'geodirectory'), |
|
147 | + 'desc' => __('Select the page to use for listing preview', 'geodirectory'), |
|
148 | + 'id' => 'geodir_preview_page', |
|
149 | + 'type' => 'single_select_page', |
|
150 | + 'class' => 'chosen_select' |
|
151 | + ), |
|
152 | + |
|
153 | + array( |
|
154 | + 'name' => __('Listing success page', 'geodirectory'), |
|
155 | + 'desc' => __('Select the page to use for listing success', 'geodirectory'), |
|
156 | + 'id' => 'geodir_success_page', |
|
157 | + 'type' => 'single_select_page', |
|
158 | + 'class' => 'chosen_select' |
|
159 | + ), |
|
160 | + |
|
161 | + array( |
|
162 | + 'name' => __('Location page', 'geodirectory'), |
|
163 | + 'desc' => __('Select the page to use for locations', 'geodirectory'), |
|
164 | + 'id' => 'geodir_location_page', |
|
165 | + 'type' => 'single_select_page', |
|
166 | + 'class' => 'chosen_select' |
|
167 | + ), |
|
168 | + |
|
169 | + array( |
|
170 | + 'name' => __('Terms and Conditions page', 'geodirectory'), |
|
171 | + 'desc' => __('Select the page to use for Terms and Conditions (if enabled)', 'geodirectory'), |
|
172 | + 'id' => 'geodir_term_condition_page', |
|
173 | + 'type' => 'single_select_page', |
|
174 | + 'class' => 'chosen_select' |
|
175 | + ), |
|
176 | + |
|
177 | + array( |
|
178 | + 'name' => __('Info page', 'geodirectory'), |
|
179 | + 'desc' => __('Select the page to use for Gd general Info', 'geodirectory'), |
|
180 | + 'id' => 'geodir_info_page', |
|
181 | + 'type' => 'single_select_page', |
|
182 | + 'class' => 'chosen_select' |
|
183 | + ), |
|
184 | + |
|
185 | + array( |
|
186 | + 'name' => __('Login page', 'geodirectory'), |
|
187 | + 'desc' => __('Select the page to use for Login / Register', 'geodirectory'), |
|
188 | + 'id' => 'geodir_login_page', |
|
189 | + 'type' => 'single_select_page', |
|
190 | + 'class' => 'chosen_select' |
|
191 | + ), |
|
192 | + |
|
193 | + |
|
194 | + array('type' => 'sectionend', 'id' => 'geodir_pages'), |
|
195 | + |
|
196 | + /* Listing Detail Permalink Settings End */ |
|
197 | 197 | |
198 | 198 | |
199 | 199 | )); // End Design settings |
@@ -1,13 +1,13 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Template for the details (post) page |
|
4 | - * |
|
5 | - * You can make most changes via hooks or see the link below for info on how to replace the template in your theme. |
|
6 | - * |
|
7 | - * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ |
|
8 | - * @since 1.0.0 |
|
9 | - * @package GeoDirectory |
|
10 | - */ |
|
3 | + * Template for the details (post) page |
|
4 | + * |
|
5 | + * You can make most changes via hooks or see the link below for info on how to replace the template in your theme. |
|
6 | + * |
|
7 | + * @link http://docs.wpgeodirectory.com/customizing-geodirectory-templates/ |
|
8 | + * @since 1.0.0 |
|
9 | + * @package GeoDirectory |
|
10 | + */ |
|
11 | 11 | |
12 | 12 | header("X-XSS-Protection: 0"); // IE requirement |
13 | 13 | // call header |
@@ -33,12 +33,12 @@ discard block |
||
33 | 33 | |
34 | 34 | ###### SIDEBAR ON LEFT ###### |
35 | 35 | if (get_option('geodir_detail_sidebar_left_section')) { |
36 | - /** |
|
37 | - * Adds the details page sidebar to the details template page. |
|
38 | - * |
|
39 | - * @since 1.1.0 |
|
40 | - */ |
|
41 | - do_action('geodir_detail_sidebar'); |
|
36 | + /** |
|
37 | + * Adds the details page sidebar to the details template page. |
|
38 | + * |
|
39 | + * @since 1.1.0 |
|
40 | + */ |
|
41 | + do_action('geodir_detail_sidebar'); |
|
42 | 42 | } |
43 | 43 | |
44 | 44 | ###### MAIN CONTENT WRAPPERS OPEN ###### |
@@ -63,26 +63,26 @@ discard block |
||
63 | 63 | ###### MAIN CONTENT ###### |
64 | 64 | // this call the main page content |
65 | 65 | if (have_posts() && !$preview) { |
66 | - the_post(); |
|
67 | - global $post, $post_images; |
|
68 | - /** |
|
69 | - * Calls the details page main content on the details template page. |
|
70 | - * |
|
71 | - * @since 1.1.0 |
|
72 | - * @param object $post The current post object. |
|
73 | - */ |
|
74 | - do_action('geodir_details_main_content', $post); |
|
66 | + the_post(); |
|
67 | + global $post, $post_images; |
|
68 | + /** |
|
69 | + * Calls the details page main content on the details template page. |
|
70 | + * |
|
71 | + * @since 1.1.0 |
|
72 | + * @param object $post The current post object. |
|
73 | + */ |
|
74 | + do_action('geodir_details_main_content', $post); |
|
75 | 75 | } elseif ($preview) { |
76 | - /** |
|
77 | - * Called on the details page if the page is being previewed. |
|
78 | - * |
|
79 | - * This sets the value of `$post` to the preview values before the main content is called. |
|
80 | - * |
|
81 | - * @since 1.1.0 |
|
82 | - */ |
|
83 | - do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values |
|
84 | - /** This action is documented in geodirectory-templates/listing-detail.php */ |
|
85 | - do_action('geodir_details_main_content', $post); |
|
76 | + /** |
|
77 | + * Called on the details page if the page is being previewed. |
|
78 | + * |
|
79 | + * This sets the value of `$post` to the preview values before the main content is called. |
|
80 | + * |
|
81 | + * @since 1.1.0 |
|
82 | + */ |
|
83 | + do_action('geodir_action_geodir_set_preview_post'); // set the $post to the preview values |
|
84 | + /** This action is documented in geodirectory-templates/listing-detail.php */ |
|
85 | + do_action('geodir_details_main_content', $post); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | |
@@ -104,8 +104,8 @@ discard block |
||
104 | 104 | |
105 | 105 | ###### SIDEBAR ON RIGHT ###### |
106 | 106 | if (!get_option('geodir_detail_sidebar_left_section')) { |
107 | - /** This action is documented in geodirectory-templates/listing-detail.php */ |
|
108 | - do_action('geodir_detail_sidebar'); |
|
107 | + /** This action is documented in geodirectory-templates/listing-detail.php */ |
|
108 | + do_action('geodir_detail_sidebar'); |
|
109 | 109 | } |
110 | 110 | |
111 | 111 |