@@ -7,33 +7,33 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | if (!function_exists('geodir_admin_panel')) {
|
| 10 | - /** |
|
| 11 | - * GeoDirectory Backend Admin Panel. |
|
| 12 | - * |
|
| 13 | - * Handles the display of the main GeoDirectory admin panel. |
|
| 14 | - * |
|
| 15 | - * @since 1.0.0 |
|
| 16 | - * @package GeoDirectory |
|
| 17 | - * @global string $current_tab Current tab in geodirectory settings. |
|
| 18 | - * @global object $geodirectory GeoDirectory plugin object. |
|
| 19 | - */ |
|
| 20 | - function geodir_admin_panel() |
|
| 21 | - {
|
|
| 22 | - global $geodirectory; |
|
| 23 | - global $current_tab; |
|
| 24 | - |
|
| 25 | - |
|
| 26 | - ?> |
|
| 10 | + /** |
|
| 11 | + * GeoDirectory Backend Admin Panel. |
|
| 12 | + * |
|
| 13 | + * Handles the display of the main GeoDirectory admin panel. |
|
| 14 | + * |
|
| 15 | + * @since 1.0.0 |
|
| 16 | + * @package GeoDirectory |
|
| 17 | + * @global string $current_tab Current tab in geodirectory settings. |
|
| 18 | + * @global object $geodirectory GeoDirectory plugin object. |
|
| 19 | + */ |
|
| 20 | + function geodir_admin_panel() |
|
| 21 | + {
|
|
| 22 | + global $geodirectory; |
|
| 23 | + global $current_tab; |
|
| 24 | + |
|
| 25 | + |
|
| 26 | + ?> |
|
| 27 | 27 | |
| 28 | 28 | <div id="gd-wrapper-main" class="wrap geodirectory"> |
| 29 | 29 | <?php |
| 30 | - /** |
|
| 31 | - * Called just after the opening wrapper div for the GD settings page in the admin area. |
|
| 32 | - * |
|
| 33 | - * @since 1.0.0 |
|
| 34 | - */ |
|
| 35 | - do_action('geodir_before_admin_panel');
|
|
| 36 | - ?> |
|
| 30 | + /** |
|
| 31 | + * Called just after the opening wrapper div for the GD settings page in the admin area. |
|
| 32 | + * |
|
| 33 | + * @since 1.0.0 |
|
| 34 | + */ |
|
| 35 | + do_action('geodir_before_admin_panel');
|
|
| 36 | + ?> |
|
| 37 | 37 | |
| 38 | 38 | <div class="gd-wrapper gd-wrapper-vr clearfix"> |
| 39 | 39 | |
@@ -44,75 +44,75 @@ discard block |
||
| 44 | 44 | alt="geo-logo" class="geo-logoalter"/> |
| 45 | 45 | <ul> |
| 46 | 46 | <?php |
| 47 | - $tabs = array(); |
|
| 48 | - /** |
|
| 49 | - * Filter the GD admin settings tabs on the left of the admin menu. |
|
| 50 | - * |
|
| 51 | - * @since 1.0.0 |
|
| 52 | - * @param array $tabs The array of tabs to display. |
|
| 53 | - */ |
|
| 54 | - $tabs = apply_filters('geodir_settings_tabs_array', $tabs);
|
|
| 55 | - update_option('geodir_tabs', $tabs);// Important to show settings menu dropdown
|
|
| 56 | - |
|
| 57 | - foreach ($tabs as $name => $args) : |
|
| 58 | - $label = $args['label']; |
|
| 59 | - |
|
| 60 | - |
|
| 61 | - $query_string = ''; |
|
| 62 | - if (isset($args['subtabs']) && !empty($args['subtabs'])): |
|
| 63 | - |
|
| 64 | - $subtabs = $args['subtabs']; |
|
| 65 | - |
|
| 66 | - $query_string = '&subtab=' . $subtabs[0]['subtab']; |
|
| 67 | - |
|
| 68 | - endif; |
|
| 69 | - |
|
| 70 | - |
|
| 71 | - $tab_link = admin_url('admin.php?page=geodirectory&tab=' . $name . $query_string);
|
|
| 72 | - |
|
| 73 | - if (isset($args['url']) && $args['url'] != '') {
|
|
| 74 | - $tab_link = $args['url']; |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - if (!empty($args['request'])) |
|
| 78 | - $tab_link = geodir_getlink($tab_link, $args['request']); |
|
| 79 | - |
|
| 80 | - if (isset($args['target']) && $args['target'] != '') {
|
|
| 81 | - $tab_target = " target='" . sanitize_text_field($args['target']) . "' "; |
|
| 82 | - } else |
|
| 83 | - $tab_target = ''; |
|
| 84 | - |
|
| 85 | - $tab_active = ''; |
|
| 86 | - if ($current_tab == $name) |
|
| 87 | - $tab_active = ' class="tab-active" '; |
|
| 88 | - /** |
|
| 89 | - * Called before the individual settings tabs are output. |
|
| 90 | - * |
|
| 91 | - * @since 1.0.0 |
|
| 92 | - * @param string $name The name of the settings tab. |
|
| 93 | - * @see 'geodir_after_settings_tabs' |
|
| 94 | - */ |
|
| 95 | - do_action('geodir_before_settings_tabs', $name);
|
|
| 96 | - echo '<li ' . $tab_active . ' ><a href="' . esc_url($tab_link) . '" ' . $tab_target . ' >' . $label . '</a></li>'; |
|
| 97 | - /** |
|
| 98 | - * Called after the individual settings tabs are output. |
|
| 99 | - * |
|
| 100 | - * @since 1.0.0 |
|
| 101 | - * @param string $name The name of the settings tab. |
|
| 102 | - * @see 'geodir_before_settings_tabs' |
|
| 103 | - */ |
|
| 104 | - do_action('geodir_after_settings_tabs', $name);
|
|
| 105 | - endforeach; |
|
| 106 | - |
|
| 107 | - /** |
|
| 108 | - * Called after the GD settings tabs have been output. |
|
| 109 | - * |
|
| 110 | - * Called before the closing `ul` so can be used to add new settings tab links. |
|
| 111 | - * |
|
| 112 | - * @since 1.0.0 |
|
| 113 | - */ |
|
| 114 | - do_action('geodir_settings_tabs');
|
|
| 115 | - ?> |
|
| 47 | + $tabs = array(); |
|
| 48 | + /** |
|
| 49 | + * Filter the GD admin settings tabs on the left of the admin menu. |
|
| 50 | + * |
|
| 51 | + * @since 1.0.0 |
|
| 52 | + * @param array $tabs The array of tabs to display. |
|
| 53 | + */ |
|
| 54 | + $tabs = apply_filters('geodir_settings_tabs_array', $tabs);
|
|
| 55 | + update_option('geodir_tabs', $tabs);// Important to show settings menu dropdown
|
|
| 56 | + |
|
| 57 | + foreach ($tabs as $name => $args) : |
|
| 58 | + $label = $args['label']; |
|
| 59 | + |
|
| 60 | + |
|
| 61 | + $query_string = ''; |
|
| 62 | + if (isset($args['subtabs']) && !empty($args['subtabs'])): |
|
| 63 | + |
|
| 64 | + $subtabs = $args['subtabs']; |
|
| 65 | + |
|
| 66 | + $query_string = '&subtab=' . $subtabs[0]['subtab']; |
|
| 67 | + |
|
| 68 | + endif; |
|
| 69 | + |
|
| 70 | + |
|
| 71 | + $tab_link = admin_url('admin.php?page=geodirectory&tab=' . $name . $query_string);
|
|
| 72 | + |
|
| 73 | + if (isset($args['url']) && $args['url'] != '') {
|
|
| 74 | + $tab_link = $args['url']; |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + if (!empty($args['request'])) |
|
| 78 | + $tab_link = geodir_getlink($tab_link, $args['request']); |
|
| 79 | + |
|
| 80 | + if (isset($args['target']) && $args['target'] != '') {
|
|
| 81 | + $tab_target = " target='" . sanitize_text_field($args['target']) . "' "; |
|
| 82 | + } else |
|
| 83 | + $tab_target = ''; |
|
| 84 | + |
|
| 85 | + $tab_active = ''; |
|
| 86 | + if ($current_tab == $name) |
|
| 87 | + $tab_active = ' class="tab-active" '; |
|
| 88 | + /** |
|
| 89 | + * Called before the individual settings tabs are output. |
|
| 90 | + * |
|
| 91 | + * @since 1.0.0 |
|
| 92 | + * @param string $name The name of the settings tab. |
|
| 93 | + * @see 'geodir_after_settings_tabs' |
|
| 94 | + */ |
|
| 95 | + do_action('geodir_before_settings_tabs', $name);
|
|
| 96 | + echo '<li ' . $tab_active . ' ><a href="' . esc_url($tab_link) . '" ' . $tab_target . ' >' . $label . '</a></li>'; |
|
| 97 | + /** |
|
| 98 | + * Called after the individual settings tabs are output. |
|
| 99 | + * |
|
| 100 | + * @since 1.0.0 |
|
| 101 | + * @param string $name The name of the settings tab. |
|
| 102 | + * @see 'geodir_before_settings_tabs' |
|
| 103 | + */ |
|
| 104 | + do_action('geodir_after_settings_tabs', $name);
|
|
| 105 | + endforeach; |
|
| 106 | + |
|
| 107 | + /** |
|
| 108 | + * Called after the GD settings tabs have been output. |
|
| 109 | + * |
|
| 110 | + * Called before the closing `ul` so can be used to add new settings tab links. |
|
| 111 | + * |
|
| 112 | + * @since 1.0.0 |
|
| 113 | + */ |
|
| 114 | + do_action('geodir_settings_tabs');
|
|
| 115 | + ?> |
|
| 116 | 116 | </ul> |
| 117 | 117 | </div> |
| 118 | 118 | <!--gd-left-nav ends here--> |
@@ -121,52 +121,52 @@ discard block |
||
| 121 | 121 | <div class="gd-tabs-main"> |
| 122 | 122 | |
| 123 | 123 | <?php |
| 124 | - unset($subtabs); |
|
| 125 | - if (isset($tabs[$current_tab]['subtabs'])) |
|
| 126 | - $subtabs = $tabs[$current_tab]['subtabs']; |
|
| 127 | - $form_action = ''; |
|
| 124 | + unset($subtabs); |
|
| 125 | + if (isset($tabs[$current_tab]['subtabs'])) |
|
| 126 | + $subtabs = $tabs[$current_tab]['subtabs']; |
|
| 127 | + $form_action = ''; |
|
| 128 | 128 | |
| 129 | - if (!empty($subtabs)): |
|
| 130 | - ?> |
|
| 129 | + if (!empty($subtabs)): |
|
| 130 | + ?> |
|
| 131 | 131 | <dl class="gd-tab-head"> |
| 132 | 132 | <?php |
| 133 | - foreach ($subtabs as $sub) {
|
|
| 134 | - $subtab_active = ''; |
|
| 135 | - if (isset($_REQUEST['subtab']) && $sub['subtab'] == $_REQUEST['subtab']) {
|
|
| 136 | - $subtab_active = 'class="gd-tab-active"'; |
|
| 137 | - $form_action = isset($sub['form_action']) ? $sub['form_action'] : ''; |
|
| 138 | - } |
|
| 139 | - |
|
| 140 | - $sub_tabs_link = admin_url() . 'admin.php?page=geodirectory&tab=' . $current_tab . '&subtab=' . $sub['subtab']; |
|
| 141 | - if (isset($sub['request']) && is_array($sub['request']) && !empty($sub['request'])) {
|
|
| 142 | - $sub_tabs_link = geodir_getlink($sub_tabs_link, $sub['request']); |
|
| 143 | - } |
|
| 144 | - echo '<dd ' . $subtab_active . ' id="claim_listing"><a href="' . esc_url($sub_tabs_link) . '" >' . sanitize_text_field($sub['label']) . '</a></dd>'; |
|
| 145 | - } |
|
| 146 | - ?> |
|
| 133 | + foreach ($subtabs as $sub) {
|
|
| 134 | + $subtab_active = ''; |
|
| 135 | + if (isset($_REQUEST['subtab']) && $sub['subtab'] == $_REQUEST['subtab']) {
|
|
| 136 | + $subtab_active = 'class="gd-tab-active"'; |
|
| 137 | + $form_action = isset($sub['form_action']) ? $sub['form_action'] : ''; |
|
| 138 | + } |
|
| 139 | + |
|
| 140 | + $sub_tabs_link = admin_url() . 'admin.php?page=geodirectory&tab=' . $current_tab . '&subtab=' . $sub['subtab']; |
|
| 141 | + if (isset($sub['request']) && is_array($sub['request']) && !empty($sub['request'])) {
|
|
| 142 | + $sub_tabs_link = geodir_getlink($sub_tabs_link, $sub['request']); |
|
| 143 | + } |
|
| 144 | + echo '<dd ' . $subtab_active . ' id="claim_listing"><a href="' . esc_url($sub_tabs_link) . '" >' . sanitize_text_field($sub['label']) . '</a></dd>'; |
|
| 145 | + } |
|
| 146 | + ?> |
|
| 147 | 147 | </dl> |
| 148 | 148 | |
| 149 | 149 | <?php endif; ?> |
| 150 | 150 | <div class="gd-tab-content <?php if (empty($subtabs)) {
|
| 151 | - echo "inner_contet_tabs"; |
|
| 152 | - } ?>"> |
|
| 151 | + echo "inner_contet_tabs"; |
|
| 152 | + } ?>"> |
|
| 153 | 153 | <form method="post" id="mainform" |
| 154 | 154 | class="geodir_optionform <?php echo $current_tab . ' '; ?><?php if (isset($sub['subtab'])) {
|
| 155 | - echo sanitize_text_field($sub['subtab']); |
|
| 156 | - } ?>" action="<?php echo $form_action; ?>" enctype="multipart/form-data"> |
|
| 155 | + echo sanitize_text_field($sub['subtab']); |
|
| 156 | + } ?>" action="<?php echo $form_action; ?>" enctype="multipart/form-data"> |
|
| 157 | 157 | <input type="hidden" class="active_tab" name="active_tab" |
| 158 | 158 | value="<?php if (isset($_REQUEST['active_tab'])) {
|
| 159 | - echo sanitize_text_field($_REQUEST['active_tab']); |
|
| 160 | - } ?>"/> |
|
| 159 | + echo sanitize_text_field($_REQUEST['active_tab']); |
|
| 160 | + } ?>"/> |
|
| 161 | 161 | <?php wp_nonce_field('geodir-settings', '_wpnonce', true, true); ?>
|
| 162 | 162 | <?php wp_nonce_field('geodir-settings-' . $current_tab, '_wpnonce-' . $current_tab, true, true); ?>
|
| 163 | 163 | <?php |
| 164 | - /** |
|
| 165 | - * Used to call the content of each GD settings tab page. |
|
| 166 | - * |
|
| 167 | - * @since 1.0.0 |
|
| 168 | - */ |
|
| 169 | - do_action('geodir_admin_option_form', $current_tab); ?>
|
|
| 164 | + /** |
|
| 165 | + * Used to call the content of each GD settings tab page. |
|
| 166 | + * |
|
| 167 | + * @since 1.0.0 |
|
| 168 | + */ |
|
| 169 | + do_action('geodir_admin_option_form', $current_tab); ?>
|
|
| 170 | 170 | </form> |
| 171 | 171 | </div> |
| 172 | 172 | |
@@ -267,7 +267,7 @@ discard block |
||
| 267 | 267 | </script> |
| 268 | 268 | <?php |
| 269 | 269 | |
| 270 | - } |
|
| 270 | + } |
|
| 271 | 271 | } |
| 272 | 272 | |
| 273 | 273 | |
@@ -283,48 +283,48 @@ discard block |
||
| 283 | 283 | function geodir_admin_option_form($tab_name) |
| 284 | 284 | {
|
| 285 | 285 | |
| 286 | - //echo $tab_name.'_array.php' ; |
|
| 287 | - global $geodir_settings, $is_default, $mapzoom; |
|
| 288 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $tab_name . '_array.php')) {
|
|
| 289 | - /** |
|
| 290 | - * Contains settings array for given tab. |
|
| 291 | - * |
|
| 292 | - * @since 1.0.0 |
|
| 293 | - * @package GeoDirectory |
|
| 294 | - */ |
|
| 295 | - include_once('option-pages/' . $tab_name . '_array.php');
|
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - $listing_type = isset($_REQUEST['listing_type']) ? $_REQUEST['listing_type'] : ''; |
|
| 299 | - |
|
| 300 | - switch ($tab_name) {
|
|
| 301 | - |
|
| 302 | - case 'general_settings': |
|
| 303 | - |
|
| 304 | - geodir_admin_fields($geodir_settings['general_settings']); |
|
| 305 | - /** |
|
| 306 | - * |
|
| 307 | - * Update Taxonomy Options * |
|
| 308 | - * |
|
| 309 | - **/ |
|
| 310 | - /*add_action('updated_option_place_prefix','update_listing_prefix');
|
|
| 286 | + //echo $tab_name.'_array.php' ; |
|
| 287 | + global $geodir_settings, $is_default, $mapzoom; |
|
| 288 | + if (file_exists(dirname(__FILE__) . '/option-pages/' . $tab_name . '_array.php')) {
|
|
| 289 | + /** |
|
| 290 | + * Contains settings array for given tab. |
|
| 291 | + * |
|
| 292 | + * @since 1.0.0 |
|
| 293 | + * @package GeoDirectory |
|
| 294 | + */ |
|
| 295 | + include_once('option-pages/' . $tab_name . '_array.php');
|
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + $listing_type = isset($_REQUEST['listing_type']) ? $_REQUEST['listing_type'] : ''; |
|
| 299 | + |
|
| 300 | + switch ($tab_name) {
|
|
| 301 | + |
|
| 302 | + case 'general_settings': |
|
| 303 | + |
|
| 304 | + geodir_admin_fields($geodir_settings['general_settings']); |
|
| 305 | + /** |
|
| 306 | + * |
|
| 307 | + * Update Taxonomy Options * |
|
| 308 | + * |
|
| 309 | + **/ |
|
| 310 | + /*add_action('updated_option_place_prefix','update_listing_prefix');
|
|
| 311 | 311 | function update_listing_prefix(){
|
| 312 | 312 | geodir_register_defaults(); |
| 313 | 313 | }*/ |
| 314 | 314 | |
| 315 | - if (isset($_REQUEST['active_tab']) && ($_REQUEST['active_tab'] == 'dummy_data_settings' || $_REQUEST['active_tab'] == 'csv_upload_settings')) |
|
| 316 | - $hide_save_button = "style='display:none;'"; |
|
| 317 | - else |
|
| 318 | - $hide_save_button = ''; |
|
| 315 | + if (isset($_REQUEST['active_tab']) && ($_REQUEST['active_tab'] == 'dummy_data_settings' || $_REQUEST['active_tab'] == 'csv_upload_settings')) |
|
| 316 | + $hide_save_button = "style='display:none;'"; |
|
| 317 | + else |
|
| 318 | + $hide_save_button = ''; |
|
| 319 | 319 | |
| 320 | - /** |
|
| 321 | - * Filter weather the default save button in the GD admin settings pages should be shown. |
|
| 322 | - * |
|
| 323 | - * @since 1.0.0 |
|
| 324 | - * @param string $hide_save_button The style element, either blank or: style='display:none;'. |
|
| 325 | - */ |
|
| 326 | - $hide_save_button = apply_filters('geodir_hide_save_button', $hide_save_button);
|
|
| 327 | - ?> |
|
| 320 | + /** |
|
| 321 | + * Filter weather the default save button in the GD admin settings pages should be shown. |
|
| 322 | + * |
|
| 323 | + * @since 1.0.0 |
|
| 324 | + * @param string $hide_save_button The style element, either blank or: style='display:none;'. |
|
| 325 | + */ |
|
| 326 | + $hide_save_button = apply_filters('geodir_hide_save_button', $hide_save_button);
|
|
| 327 | + ?> |
|
| 328 | 328 | |
| 329 | 329 | <p class="submit"> |
| 330 | 330 | <input <?php echo $hide_save_button;?> name="save" class="button-primary" type="submit" value="<?php _e('Save changes', 'geodirectory'); ?>" />
|
@@ -334,36 +334,36 @@ discard block |
||
| 334 | 334 | </div> |
| 335 | 335 | |
| 336 | 336 | <?php break; |
| 337 | - case 'design_settings' : |
|
| 338 | - geodir_admin_fields($geodir_settings['design_settings']); |
|
| 337 | + case 'design_settings' : |
|
| 338 | + geodir_admin_fields($geodir_settings['design_settings']); |
|
| 339 | 339 | |
| 340 | 340 | |
| 341 | 341 | |
| 342 | - ?> |
|
| 342 | + ?> |
|
| 343 | 343 | <p class="submit"> |
| 344 | 344 | <input name="save" class="button-primary" type="submit" value="<?php _e('Save changes', 'geodirectory'); ?>" />
|
| 345 | 345 | <input type="hidden" name="subtab" id="last_tab" /> |
| 346 | 346 | </p> |
| 347 | 347 | </div> |
| 348 | 348 | <?php break; |
| 349 | - case 'permalink_settings' : |
|
| 350 | - geodir_admin_fields($geodir_settings['permalink_settings']); ?> |
|
| 349 | + case 'permalink_settings' : |
|
| 350 | + geodir_admin_fields($geodir_settings['permalink_settings']); ?> |
|
| 351 | 351 | <p class="submit"> |
| 352 | 352 | <input name="save" class="button-primary" type="submit" value="<?php _e('Save changes', 'geodirectory'); ?>" />
|
| 353 | 353 | <input type="hidden" name="subtab" id="last_tab" /> |
| 354 | 354 | </p> |
| 355 | 355 | </div> |
| 356 | 356 | <?php break; |
| 357 | - case 'title_meta_settings' : |
|
| 358 | - geodir_admin_fields($geodir_settings['title_meta_settings']); ?> |
|
| 357 | + case 'title_meta_settings' : |
|
| 358 | + geodir_admin_fields($geodir_settings['title_meta_settings']); ?> |
|
| 359 | 359 | <p class="submit"> |
| 360 | 360 | <input name="save" class="button-primary" type="submit" value="<?php _e('Save changes', 'geodirectory'); ?>" />
|
| 361 | 361 | <input type="hidden" name="subtab" id="last_tab" /> |
| 362 | 362 | </p> |
| 363 | 363 | </div> |
| 364 | 364 | <?php break; |
| 365 | - case 'notifications_settings' : |
|
| 366 | - geodir_admin_fields($geodir_settings['notifications_settings']); ?> |
|
| 365 | + case 'notifications_settings' : |
|
| 366 | + geodir_admin_fields($geodir_settings['notifications_settings']); ?> |
|
| 367 | 367 | |
| 368 | 368 | <p class="submit"> |
| 369 | 369 | |
@@ -373,36 +373,36 @@ discard block |
||
| 373 | 373 | </div> |
| 374 | 374 | |
| 375 | 375 | <?php break; |
| 376 | - case 'default_location_settings' : |
|
| 377 | - ?> |
|
| 376 | + case 'default_location_settings' : |
|
| 377 | + ?> |
|
| 378 | 378 | <div class="inner_content_tab_main"> |
| 379 | 379 | <div class="gd-content-heading"> |
| 380 | 380 | <?php global $wpdb; |
| 381 | 381 | |
| 382 | 382 | |
| 383 | - $location_result = geodir_get_default_location(); |
|
| 383 | + $location_result = geodir_get_default_location(); |
|
| 384 | 384 | |
| 385 | - $prefix = ''; |
|
| 385 | + $prefix = ''; |
|
| 386 | 386 | |
| 387 | 387 | |
| 388 | - $lat = isset($location_result->city_latitude) ? $location_result->city_latitude : ''; |
|
| 389 | - $lng = isset($location_result->city_longitude) ? $location_result->city_longitude : ''; |
|
| 390 | - $city = isset($location_result->city) ? $location_result->city : ''; |
|
| 391 | - $region = isset($location_result->region) ? $location_result->region : ''; |
|
| 392 | - $country = isset($location_result->country) ? $location_result->country : ''; |
|
| 388 | + $lat = isset($location_result->city_latitude) ? $location_result->city_latitude : ''; |
|
| 389 | + $lng = isset($location_result->city_longitude) ? $location_result->city_longitude : ''; |
|
| 390 | + $city = isset($location_result->city) ? $location_result->city : ''; |
|
| 391 | + $region = isset($location_result->region) ? $location_result->region : ''; |
|
| 392 | + $country = isset($location_result->country) ? $location_result->country : ''; |
|
| 393 | 393 | |
| 394 | 394 | |
| 395 | - $map_title = __("Set Address On Map", 'geodirectory');
|
|
| 395 | + $map_title = __("Set Address On Map", 'geodirectory');
|
|
| 396 | 396 | |
| 397 | - ?> |
|
| 397 | + ?> |
|
| 398 | 398 | |
| 399 | 399 | <h3><?php _e('Set Default Location', 'geodirectory');?></h3>
|
| 400 | 400 | |
| 401 | 401 | <input type="hidden" name="add_location" value="location"> |
| 402 | 402 | |
| 403 | 403 | <input type="hidden" name="update_city" value="<?php if (isset($location_result->location_id)) {
|
| 404 | - echo $location_result->location_id; |
|
| 405 | - } ?>"> |
|
| 404 | + echo $location_result->location_id; |
|
| 405 | + } ?>"> |
|
| 406 | 406 | |
| 407 | 407 | <input type="hidden" name="address" id="<?php echo $prefix;?>address" value=""> |
| 408 | 408 | |
@@ -415,8 +415,8 @@ discard block |
||
| 415 | 415 | <input class="require" type="text" size="80" style="width:440px" |
| 416 | 416 | id="<?php echo $prefix;?>city" name="city" |
| 417 | 417 | value="<?php if (isset($location_result->city)) {
|
| 418 | - echo $location_result->city; |
|
| 419 | - } ?>"/> |
|
| 418 | + echo $location_result->city; |
|
| 419 | + } ?>"/> |
|
| 420 | 420 | |
| 421 | 421 | <div |
| 422 | 422 | class="gd-location_message_error"> <?php _e('This field is required.', 'geodirectory'); ?></div>
|
@@ -431,8 +431,8 @@ discard block |
||
| 431 | 431 | <input class="require" type="text" size="80" style="width:440px" |
| 432 | 432 | id="<?php echo $prefix;?>region" name="region" |
| 433 | 433 | value="<?php if (isset($location_result->region)) {
|
| 434 | - echo $location_result->region; |
|
| 435 | - } ?>"/> |
|
| 434 | + echo $location_result->region; |
|
| 435 | + } ?>"/> |
|
| 436 | 436 | |
| 437 | 437 | <div |
| 438 | 438 | class="gd-location_message_error"> <?php _e('This field is required.', 'geodirectory'); ?></div>
|
@@ -446,8 +446,8 @@ discard block |
||
| 446 | 446 | <div class="gtd-formfeild required" style="padding-top:10px;"> |
| 447 | 447 | <?php |
| 448 | 448 | |
| 449 | - $country_result = isset($location_result->country) ? $location_result->country : ''; |
|
| 450 | - ?> |
|
| 449 | + $country_result = isset($location_result->country) ? $location_result->country : ''; |
|
| 450 | + ?> |
|
| 451 | 451 | <select id="<?php echo $prefix ?>country" class="chosen_select" |
| 452 | 452 | data-location_type="country" name="<?php echo $prefix ?>country" |
| 453 | 453 | data-placeholder="<?php _e('Choose a country.', 'geodirectory');?>"
|
@@ -470,12 +470,12 @@ discard block |
||
| 470 | 470 | scope="row"><?php _e('Set Location on Map', 'geodirectory');?></th>
|
| 471 | 471 | <td class="forminp"> |
| 472 | 472 | <?php |
| 473 | - /** |
|
| 474 | - * Contains add listing page map functions. |
|
| 475 | - * |
|
| 476 | - * @since 1.0.0 |
|
| 477 | - */ |
|
| 478 | - include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");?> |
|
| 473 | + /** |
|
| 474 | + * Contains add listing page map functions. |
|
| 475 | + * |
|
| 476 | + * @since 1.0.0 |
|
| 477 | + */ |
|
| 478 | + include(geodir_plugin_path() . "/geodirectory-functions/map-functions/map_on_add_listing_page.php");?> |
|
| 479 | 479 | </td> |
| 480 | 480 | </tr> |
| 481 | 481 | <tr valign="top" class="single_select_page"> |
@@ -485,8 +485,8 @@ discard block |
||
| 485 | 485 | <input type="text" class="require" size="80" style="width:440px" |
| 486 | 486 | id="<?php echo $prefix;?>latitude" name="latitude" |
| 487 | 487 | value="<?php if (isset($location_result->city_latitude)) {
|
| 488 | - echo $location_result->city_latitude; |
|
| 489 | - } ?>"/> |
|
| 488 | + echo $location_result->city_latitude; |
|
| 489 | + } ?>"/> |
|
| 490 | 490 | |
| 491 | 491 | <div |
| 492 | 492 | class="gd-location_message_error"><?php _e('This field is required.', 'geodirectory'); ?></div>
|
@@ -502,8 +502,8 @@ discard block |
||
| 502 | 502 | <input type="text" class="require" size="80" style="width:440px" |
| 503 | 503 | id="<?php echo $prefix;?>longitude" name="longitude" |
| 504 | 504 | value="<?php if (isset($location_result->city_longitude)) {
|
| 505 | - echo $location_result->city_longitude; |
|
| 506 | - } ?>"/> |
|
| 505 | + echo $location_result->city_longitude; |
|
| 506 | + } ?>"/> |
|
| 507 | 507 | |
| 508 | 508 | <div |
| 509 | 509 | class="gd-location_message_error"><?php _e('This field is required.', 'geodirectory'); ?></div>
|
@@ -535,22 +535,22 @@ discard block |
||
| 535 | 535 | </div> |
| 536 | 536 | </div> |
| 537 | 537 | <?php break; |
| 538 | - case $listing_type . '_fields_settings' : |
|
| 538 | + case $listing_type . '_fields_settings' : |
|
| 539 | 539 | |
| 540 | - geodir_custom_post_type_form(); |
|
| 540 | + geodir_custom_post_type_form(); |
|
| 541 | 541 | |
| 542 | - break; |
|
| 543 | - case 'tools_settings' : |
|
| 544 | - geodir_diagnostic_tools_setting_page(); |
|
| 545 | - break; |
|
| 546 | - case 'compatibility_settings' : |
|
| 547 | - geodir_theme_compatibility_setting_page(); |
|
| 548 | - break; |
|
| 542 | + break; |
|
| 543 | + case 'tools_settings' : |
|
| 544 | + geodir_diagnostic_tools_setting_page(); |
|
| 545 | + break; |
|
| 546 | + case 'compatibility_settings' : |
|
| 547 | + geodir_theme_compatibility_setting_page(); |
|
| 548 | + break; |
|
| 549 | 549 | case 'import_export' : |
| 550 | - geodir_import_export_page(); |
|
| 551 | - break; |
|
| 550 | + geodir_import_export_page(); |
|
| 551 | + break; |
|
| 552 | 552 | |
| 553 | - }// end of switch |
|
| 553 | + }// end of switch |
|
| 554 | 554 | } |
| 555 | 555 | |
| 556 | 556 | |
@@ -590,170 +590,170 @@ discard block |
||
| 590 | 590 | function geodir_update_options_compatibility_settings() |
| 591 | 591 | {
|
| 592 | 592 | |
| 593 | - global $wpdb; |
|
| 593 | + global $wpdb; |
|
| 594 | 594 | |
| 595 | 595 | |
| 596 | - $theme_settings = array(); |
|
| 596 | + $theme_settings = array(); |
|
| 597 | 597 | |
| 598 | - $theme_settings['geodir_wrapper_open_id'] = $_POST['geodir_wrapper_open_id']; |
|
| 599 | - $theme_settings['geodir_wrapper_open_class'] = $_POST['geodir_wrapper_open_class']; |
|
| 600 | - $theme_settings['geodir_wrapper_open_replace'] = stripslashes($_POST['geodir_wrapper_open_replace']); |
|
| 598 | + $theme_settings['geodir_wrapper_open_id'] = $_POST['geodir_wrapper_open_id']; |
|
| 599 | + $theme_settings['geodir_wrapper_open_class'] = $_POST['geodir_wrapper_open_class']; |
|
| 600 | + $theme_settings['geodir_wrapper_open_replace'] = stripslashes($_POST['geodir_wrapper_open_replace']); |
|
| 601 | 601 | |
| 602 | - $theme_settings['geodir_wrapper_close_replace'] = stripslashes($_POST['geodir_wrapper_close_replace']); |
|
| 602 | + $theme_settings['geodir_wrapper_close_replace'] = stripslashes($_POST['geodir_wrapper_close_replace']); |
|
| 603 | 603 | |
| 604 | - $theme_settings['geodir_wrapper_content_open_id'] = $_POST['geodir_wrapper_content_open_id']; |
|
| 605 | - $theme_settings['geodir_wrapper_content_open_class'] = $_POST['geodir_wrapper_content_open_class']; |
|
| 606 | - $theme_settings['geodir_wrapper_content_open_replace'] = stripslashes($_POST['geodir_wrapper_content_open_replace']); |
|
| 604 | + $theme_settings['geodir_wrapper_content_open_id'] = $_POST['geodir_wrapper_content_open_id']; |
|
| 605 | + $theme_settings['geodir_wrapper_content_open_class'] = $_POST['geodir_wrapper_content_open_class']; |
|
| 606 | + $theme_settings['geodir_wrapper_content_open_replace'] = stripslashes($_POST['geodir_wrapper_content_open_replace']); |
|
| 607 | 607 | |
| 608 | - $theme_settings['geodir_wrapper_content_close_replace'] = stripslashes($_POST['geodir_wrapper_content_close_replace']); |
|
| 608 | + $theme_settings['geodir_wrapper_content_close_replace'] = stripslashes($_POST['geodir_wrapper_content_close_replace']); |
|
| 609 | 609 | |
| 610 | - $theme_settings['geodir_article_open_id'] = $_POST['geodir_article_open_id']; |
|
| 611 | - $theme_settings['geodir_article_open_class'] = $_POST['geodir_article_open_class']; |
|
| 612 | - $theme_settings['geodir_article_open_replace'] = stripslashes($_POST['geodir_article_open_replace']); |
|
| 610 | + $theme_settings['geodir_article_open_id'] = $_POST['geodir_article_open_id']; |
|
| 611 | + $theme_settings['geodir_article_open_class'] = $_POST['geodir_article_open_class']; |
|
| 612 | + $theme_settings['geodir_article_open_replace'] = stripslashes($_POST['geodir_article_open_replace']); |
|
| 613 | 613 | |
| 614 | - $theme_settings['geodir_article_close_replace'] = stripslashes($_POST['geodir_article_close_replace']); |
|
| 614 | + $theme_settings['geodir_article_close_replace'] = stripslashes($_POST['geodir_article_close_replace']); |
|
| 615 | 615 | |
| 616 | - $theme_settings['geodir_sidebar_right_open_id'] = $_POST['geodir_sidebar_right_open_id']; |
|
| 617 | - $theme_settings['geodir_sidebar_right_open_class'] = $_POST['geodir_sidebar_right_open_class']; |
|
| 618 | - $theme_settings['geodir_sidebar_right_open_replace'] = stripslashes($_POST['geodir_sidebar_right_open_replace']); |
|
| 616 | + $theme_settings['geodir_sidebar_right_open_id'] = $_POST['geodir_sidebar_right_open_id']; |
|
| 617 | + $theme_settings['geodir_sidebar_right_open_class'] = $_POST['geodir_sidebar_right_open_class']; |
|
| 618 | + $theme_settings['geodir_sidebar_right_open_replace'] = stripslashes($_POST['geodir_sidebar_right_open_replace']); |
|
| 619 | 619 | |
| 620 | - $theme_settings['geodir_sidebar_right_close_replace'] = stripslashes($_POST['geodir_sidebar_right_close_replace']); |
|
| 620 | + $theme_settings['geodir_sidebar_right_close_replace'] = stripslashes($_POST['geodir_sidebar_right_close_replace']); |
|
| 621 | 621 | |
| 622 | - $theme_settings['geodir_sidebar_left_open_id'] = $_POST['geodir_sidebar_left_open_id']; |
|
| 623 | - $theme_settings['geodir_sidebar_left_open_class'] = $_POST['geodir_sidebar_left_open_class']; |
|
| 624 | - $theme_settings['geodir_sidebar_left_open_replace'] = stripslashes($_POST['geodir_sidebar_left_open_replace']); |
|
| 622 | + $theme_settings['geodir_sidebar_left_open_id'] = $_POST['geodir_sidebar_left_open_id']; |
|
| 623 | + $theme_settings['geodir_sidebar_left_open_class'] = $_POST['geodir_sidebar_left_open_class']; |
|
| 624 | + $theme_settings['geodir_sidebar_left_open_replace'] = stripslashes($_POST['geodir_sidebar_left_open_replace']); |
|
| 625 | 625 | |
| 626 | - $theme_settings['geodir_sidebar_left_close_replace'] = stripslashes($_POST['geodir_sidebar_left_close_replace']); |
|
| 626 | + $theme_settings['geodir_sidebar_left_close_replace'] = stripslashes($_POST['geodir_sidebar_left_close_replace']); |
|
| 627 | 627 | |
| 628 | - $theme_settings['geodir_main_content_open_id'] = $_POST['geodir_main_content_open_id']; |
|
| 629 | - $theme_settings['geodir_main_content_open_class'] = $_POST['geodir_main_content_open_class']; |
|
| 630 | - $theme_settings['geodir_main_content_open_replace'] = stripslashes($_POST['geodir_main_content_open_replace']); |
|
| 628 | + $theme_settings['geodir_main_content_open_id'] = $_POST['geodir_main_content_open_id']; |
|
| 629 | + $theme_settings['geodir_main_content_open_class'] = $_POST['geodir_main_content_open_class']; |
|
| 630 | + $theme_settings['geodir_main_content_open_replace'] = stripslashes($_POST['geodir_main_content_open_replace']); |
|
| 631 | 631 | |
| 632 | - $theme_settings['geodir_main_content_close_replace'] = stripslashes($_POST['geodir_main_content_close_replace']); |
|
| 632 | + $theme_settings['geodir_main_content_close_replace'] = stripslashes($_POST['geodir_main_content_close_replace']); |
|
| 633 | 633 | |
| 634 | 634 | // Other Actions |
| 635 | - $theme_settings['geodir_top_content_add'] = stripslashes($_POST['geodir_top_content_add']); |
|
| 636 | - $theme_settings['geodir_before_main_content_add'] = stripslashes($_POST['geodir_before_main_content_add']); |
|
| 635 | + $theme_settings['geodir_top_content_add'] = stripslashes($_POST['geodir_top_content_add']); |
|
| 636 | + $theme_settings['geodir_before_main_content_add'] = stripslashes($_POST['geodir_before_main_content_add']); |
|
| 637 | 637 | |
| 638 | 638 | // Filters |
| 639 | - $theme_settings['geodir_full_page_class_filter'] = stripslashes($_POST['geodir_full_page_class_filter']); |
|
| 640 | - $theme_settings['geodir_before_widget_filter'] = stripslashes($_POST['geodir_before_widget_filter']); |
|
| 641 | - $theme_settings['geodir_after_widget_filter'] = stripslashes($_POST['geodir_after_widget_filter']); |
|
| 642 | - $theme_settings['geodir_before_title_filter'] = stripslashes($_POST['geodir_before_title_filter']); |
|
| 643 | - $theme_settings['geodir_after_title_filter'] = stripslashes($_POST['geodir_after_title_filter']); |
|
| 644 | - $theme_settings['geodir_menu_li_class_filter'] = stripslashes($_POST['geodir_menu_li_class_filter']); |
|
| 645 | - $theme_settings['geodir_sub_menu_ul_class_filter'] = stripslashes($_POST['geodir_sub_menu_ul_class_filter']); |
|
| 646 | - $theme_settings['geodir_sub_menu_li_class_filter'] = stripslashes($_POST['geodir_sub_menu_li_class_filter']); |
|
| 647 | - $theme_settings['geodir_menu_a_class_filter'] = stripslashes($_POST['geodir_menu_a_class_filter']); |
|
| 648 | - $theme_settings['geodir_sub_menu_a_class_filter'] = stripslashes($_POST['geodir_sub_menu_a_class_filter']); |
|
| 639 | + $theme_settings['geodir_full_page_class_filter'] = stripslashes($_POST['geodir_full_page_class_filter']); |
|
| 640 | + $theme_settings['geodir_before_widget_filter'] = stripslashes($_POST['geodir_before_widget_filter']); |
|
| 641 | + $theme_settings['geodir_after_widget_filter'] = stripslashes($_POST['geodir_after_widget_filter']); |
|
| 642 | + $theme_settings['geodir_before_title_filter'] = stripslashes($_POST['geodir_before_title_filter']); |
|
| 643 | + $theme_settings['geodir_after_title_filter'] = stripslashes($_POST['geodir_after_title_filter']); |
|
| 644 | + $theme_settings['geodir_menu_li_class_filter'] = stripslashes($_POST['geodir_menu_li_class_filter']); |
|
| 645 | + $theme_settings['geodir_sub_menu_ul_class_filter'] = stripslashes($_POST['geodir_sub_menu_ul_class_filter']); |
|
| 646 | + $theme_settings['geodir_sub_menu_li_class_filter'] = stripslashes($_POST['geodir_sub_menu_li_class_filter']); |
|
| 647 | + $theme_settings['geodir_menu_a_class_filter'] = stripslashes($_POST['geodir_menu_a_class_filter']); |
|
| 648 | + $theme_settings['geodir_sub_menu_a_class_filter'] = stripslashes($_POST['geodir_sub_menu_a_class_filter']); |
|
| 649 | 649 | //location manager filters |
| 650 | - $theme_settings['geodir_location_switcher_menu_li_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_li_class_filter']); |
|
| 651 | - $theme_settings['geodir_location_switcher_menu_a_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_a_class_filter']); |
|
| 652 | - $theme_settings['geodir_location_switcher_menu_sub_ul_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_sub_ul_class_filter']); |
|
| 653 | - $theme_settings['geodir_location_switcher_menu_sub_li_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_sub_li_class_filter']); |
|
| 650 | + $theme_settings['geodir_location_switcher_menu_li_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_li_class_filter']); |
|
| 651 | + $theme_settings['geodir_location_switcher_menu_a_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_a_class_filter']); |
|
| 652 | + $theme_settings['geodir_location_switcher_menu_sub_ul_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_sub_ul_class_filter']); |
|
| 653 | + $theme_settings['geodir_location_switcher_menu_sub_li_class_filter'] = stripslashes($_POST['geodir_location_switcher_menu_sub_li_class_filter']); |
|
| 654 | 654 | |
| 655 | 655 | |
| 656 | 656 | // theme required css |
| 657 | - $theme_settings['geodir_theme_compat_css'] = stripslashes($_POST['geodir_theme_compat_css']); |
|
| 657 | + $theme_settings['geodir_theme_compat_css'] = stripslashes($_POST['geodir_theme_compat_css']); |
|
| 658 | 658 | |
| 659 | 659 | // theme required js |
| 660 | - $theme_settings['geodir_theme_compat_js'] = stripslashes($_POST['geodir_theme_compat_js']); |
|
| 660 | + $theme_settings['geodir_theme_compat_js'] = stripslashes($_POST['geodir_theme_compat_js']); |
|
| 661 | 661 | |
| 662 | 662 | // theme compat name |
| 663 | - $theme_settings['gd_theme_compat'] = $_POST['gd_theme_compat']; |
|
| 664 | - if ($theme_settings['gd_theme_compat'] == '') {
|
|
| 665 | - update_option('gd_theme_compat', '');
|
|
| 666 | - update_option('theme_compatibility_setting', '');
|
|
| 667 | - return; |
|
| 668 | - } |
|
| 663 | + $theme_settings['gd_theme_compat'] = $_POST['gd_theme_compat']; |
|
| 664 | + if ($theme_settings['gd_theme_compat'] == '') {
|
|
| 665 | + update_option('gd_theme_compat', '');
|
|
| 666 | + update_option('theme_compatibility_setting', '');
|
|
| 667 | + return; |
|
| 668 | + } |
|
| 669 | 669 | |
| 670 | 670 | // theme default options |
| 671 | - $theme_settings['geodir_theme_compat_default_options'] = ''; |
|
| 671 | + $theme_settings['geodir_theme_compat_default_options'] = ''; |
|
| 672 | 672 | |
| 673 | 673 | |
| 674 | 674 | //suported theme code |
| 675 | - $theme_settings['geodir_theme_compat_code'] = false; |
|
| 676 | - |
|
| 677 | - $theme = wp_get_theme(); |
|
| 678 | - |
|
| 679 | - if ($theme->parent()) {
|
|
| 680 | - $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 681 | - } else {
|
|
| 682 | - $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 683 | - } |
|
| 684 | - |
|
| 685 | - if (in_array($theme_name, array('Avada', 'Enfold', 'X', 'Divi', 'Genesis', 'Jupiter', 'Multi_News'))) {// list of themes that have php files
|
|
| 686 | - $theme_settings['geodir_theme_compat_code'] = $theme_name; |
|
| 687 | - } |
|
| 688 | - |
|
| 689 | - |
|
| 690 | - $theme_name = $theme_name . "_custom"; |
|
| 691 | - $theme_arr = get_option('gd_theme_compats');
|
|
| 692 | - update_option('gd_theme_compat', $theme_name);
|
|
| 693 | - /** |
|
| 694 | - * Called before the theme compatibility settings are saved to the DB. |
|
| 695 | - * |
|
| 696 | - * @since 1.4.0 |
|
| 697 | - * @param array $theme_settings {
|
|
| 698 | - * Attributes of the theme compatibility settings array. |
|
| 699 | - * |
|
| 700 | - * @type string $geodir_wrapper_open_id Geodir wrapper open html id. |
|
| 701 | - * @type string $geodir_wrapper_open_class Geodir wrapper open html class. |
|
| 702 | - * @type string $geodir_wrapper_open_replace Geodir wrapper open content replace. |
|
| 703 | - * @type string $geodir_wrapper_close_replace Geodir wrapper close content replace. |
|
| 704 | - * @type string $geodir_wrapper_content_open_id Geodir wrapper content open html id. |
|
| 705 | - * @type string $geodir_wrapper_content_open_class Geodir wrapper content open html class. |
|
| 706 | - * @type string $geodir_wrapper_content_open_replace Geodir wrapper content open content replace. |
|
| 707 | - * @type string $geodir_wrapper_content_close_replace Geodir wrapper content close content replace. |
|
| 708 | - * @type string $geodir_article_open_id Geodir article open html id. |
|
| 709 | - * @type string $geodir_article_open_class Geodir article open html class. |
|
| 710 | - * @type string $geodir_article_open_replace Geodir article open content replace. |
|
| 711 | - * @type string $geodir_article_close_replace Geodir article close content replace. |
|
| 712 | - * @type string $geodir_sidebar_right_open_id Geodir sidebar right open html id. |
|
| 713 | - * @type string $geodir_sidebar_right_open_class Geodir sidebar right open html class. |
|
| 714 | - * @type string $geodir_sidebar_right_open_replace Geodir sidebar right open content replace. |
|
| 715 | - * @type string $geodir_sidebar_right_close_replace Geodir sidebar right close content replace. |
|
| 716 | - * @type string $geodir_sidebar_left_open_id Geodir sidebar left open html id. |
|
| 717 | - * @type string $geodir_sidebar_left_open_class Geodir sidebar left open html class. |
|
| 718 | - * @type string $geodir_sidebar_left_open_replace Geodir sidebar left open content replace. |
|
| 719 | - * @type string $geodir_sidebar_left_close_replace Geodir sidebar left close content replace. |
|
| 720 | - * @type string $geodir_main_content_open_id Geodir main content open html id. |
|
| 721 | - * @type string $geodir_main_content_open_class Geodir main content open html class. |
|
| 722 | - * @type string $geodir_main_content_open_replace Geodir main content open content replace. |
|
| 723 | - * @type string $geodir_main_content_close_replace Geodir main content close content replace. |
|
| 724 | - * @type string $geodir_top_content_add Geodir top content add. |
|
| 725 | - * @type string $geodir_before_main_content_add Geodir before main content add. |
|
| 726 | - * @type string $geodir_full_page_class_filter Geodir full page class filter. |
|
| 727 | - * @type string $geodir_before_widget_filter Geodir before widget filter. |
|
| 728 | - * @type string $geodir_after_widget_filter Geodir after widget filter. |
|
| 729 | - * @type string $geodir_before_title_filter Geodir before title filter. |
|
| 730 | - * @type string $geodir_after_title_filter Geodir after title filter. |
|
| 731 | - * @type string $geodir_menu_li_class_filter Geodir menu li class filter. |
|
| 732 | - * @type string $geodir_sub_menu_ul_class_filter Geodir sub menu ul class filter. |
|
| 733 | - * @type string $geodir_sub_menu_li_class_filter Geodir sub menu li class filter. |
|
| 734 | - * @type string $geodir_menu_a_class_filter Geodir menu a class filter. |
|
| 735 | - * @type string $geodir_sub_menu_a_class_filter Geodir sub menu a class filter. |
|
| 736 | - * @type string $geodir_location_switcher_menu_li_class_filter Geodir location switcher menu li class filter. |
|
| 737 | - * @type string $geodir_location_switcher_menu_a_class_filter Geodir location switcher menu a class filter. |
|
| 738 | - * @type string $geodir_location_switcher_menu_sub_ul_class_filter Geodir location switcher menu sub ul class filter. |
|
| 739 | - * @type string $geodir_location_switcher_menu_sub_li_class_filter Geodir location switcher menu sub li class filter. |
|
| 740 | - * @type string $geodir_theme_compat_css Geodir theme compatibility css. |
|
| 741 | - * @type string $geodir_theme_compat_js Geodir theme compatibility js. |
|
| 742 | - * @type string $gd_theme_compat Gd theme compatibility. |
|
| 743 | - * @type string $geodir_theme_compat_default_options Geodir theme compatibility default options. |
|
| 744 | - * @type bool $geodir_theme_compat_code Geodir theme compatibility code Ex: 'Avada. |
|
| 745 | - * |
|
| 746 | - * } |
|
| 747 | - */ |
|
| 748 | - do_action('gd_compat_save_settings', $theme_settings);
|
|
| 675 | + $theme_settings['geodir_theme_compat_code'] = false; |
|
| 676 | + |
|
| 677 | + $theme = wp_get_theme(); |
|
| 678 | + |
|
| 679 | + if ($theme->parent()) {
|
|
| 680 | + $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 681 | + } else {
|
|
| 682 | + $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 683 | + } |
|
| 684 | + |
|
| 685 | + if (in_array($theme_name, array('Avada', 'Enfold', 'X', 'Divi', 'Genesis', 'Jupiter', 'Multi_News'))) {// list of themes that have php files
|
|
| 686 | + $theme_settings['geodir_theme_compat_code'] = $theme_name; |
|
| 687 | + } |
|
| 688 | + |
|
| 689 | + |
|
| 690 | + $theme_name = $theme_name . "_custom"; |
|
| 691 | + $theme_arr = get_option('gd_theme_compats');
|
|
| 692 | + update_option('gd_theme_compat', $theme_name);
|
|
| 693 | + /** |
|
| 694 | + * Called before the theme compatibility settings are saved to the DB. |
|
| 695 | + * |
|
| 696 | + * @since 1.4.0 |
|
| 697 | + * @param array $theme_settings {
|
|
| 698 | + * Attributes of the theme compatibility settings array. |
|
| 699 | + * |
|
| 700 | + * @type string $geodir_wrapper_open_id Geodir wrapper open html id. |
|
| 701 | + * @type string $geodir_wrapper_open_class Geodir wrapper open html class. |
|
| 702 | + * @type string $geodir_wrapper_open_replace Geodir wrapper open content replace. |
|
| 703 | + * @type string $geodir_wrapper_close_replace Geodir wrapper close content replace. |
|
| 704 | + * @type string $geodir_wrapper_content_open_id Geodir wrapper content open html id. |
|
| 705 | + * @type string $geodir_wrapper_content_open_class Geodir wrapper content open html class. |
|
| 706 | + * @type string $geodir_wrapper_content_open_replace Geodir wrapper content open content replace. |
|
| 707 | + * @type string $geodir_wrapper_content_close_replace Geodir wrapper content close content replace. |
|
| 708 | + * @type string $geodir_article_open_id Geodir article open html id. |
|
| 709 | + * @type string $geodir_article_open_class Geodir article open html class. |
|
| 710 | + * @type string $geodir_article_open_replace Geodir article open content replace. |
|
| 711 | + * @type string $geodir_article_close_replace Geodir article close content replace. |
|
| 712 | + * @type string $geodir_sidebar_right_open_id Geodir sidebar right open html id. |
|
| 713 | + * @type string $geodir_sidebar_right_open_class Geodir sidebar right open html class. |
|
| 714 | + * @type string $geodir_sidebar_right_open_replace Geodir sidebar right open content replace. |
|
| 715 | + * @type string $geodir_sidebar_right_close_replace Geodir sidebar right close content replace. |
|
| 716 | + * @type string $geodir_sidebar_left_open_id Geodir sidebar left open html id. |
|
| 717 | + * @type string $geodir_sidebar_left_open_class Geodir sidebar left open html class. |
|
| 718 | + * @type string $geodir_sidebar_left_open_replace Geodir sidebar left open content replace. |
|
| 719 | + * @type string $geodir_sidebar_left_close_replace Geodir sidebar left close content replace. |
|
| 720 | + * @type string $geodir_main_content_open_id Geodir main content open html id. |
|
| 721 | + * @type string $geodir_main_content_open_class Geodir main content open html class. |
|
| 722 | + * @type string $geodir_main_content_open_replace Geodir main content open content replace. |
|
| 723 | + * @type string $geodir_main_content_close_replace Geodir main content close content replace. |
|
| 724 | + * @type string $geodir_top_content_add Geodir top content add. |
|
| 725 | + * @type string $geodir_before_main_content_add Geodir before main content add. |
|
| 726 | + * @type string $geodir_full_page_class_filter Geodir full page class filter. |
|
| 727 | + * @type string $geodir_before_widget_filter Geodir before widget filter. |
|
| 728 | + * @type string $geodir_after_widget_filter Geodir after widget filter. |
|
| 729 | + * @type string $geodir_before_title_filter Geodir before title filter. |
|
| 730 | + * @type string $geodir_after_title_filter Geodir after title filter. |
|
| 731 | + * @type string $geodir_menu_li_class_filter Geodir menu li class filter. |
|
| 732 | + * @type string $geodir_sub_menu_ul_class_filter Geodir sub menu ul class filter. |
|
| 733 | + * @type string $geodir_sub_menu_li_class_filter Geodir sub menu li class filter. |
|
| 734 | + * @type string $geodir_menu_a_class_filter Geodir menu a class filter. |
|
| 735 | + * @type string $geodir_sub_menu_a_class_filter Geodir sub menu a class filter. |
|
| 736 | + * @type string $geodir_location_switcher_menu_li_class_filter Geodir location switcher menu li class filter. |
|
| 737 | + * @type string $geodir_location_switcher_menu_a_class_filter Geodir location switcher menu a class filter. |
|
| 738 | + * @type string $geodir_location_switcher_menu_sub_ul_class_filter Geodir location switcher menu sub ul class filter. |
|
| 739 | + * @type string $geodir_location_switcher_menu_sub_li_class_filter Geodir location switcher menu sub li class filter. |
|
| 740 | + * @type string $geodir_theme_compat_css Geodir theme compatibility css. |
|
| 741 | + * @type string $geodir_theme_compat_js Geodir theme compatibility js. |
|
| 742 | + * @type string $gd_theme_compat Gd theme compatibility. |
|
| 743 | + * @type string $geodir_theme_compat_default_options Geodir theme compatibility default options. |
|
| 744 | + * @type bool $geodir_theme_compat_code Geodir theme compatibility code Ex: 'Avada. |
|
| 745 | + * |
|
| 746 | + * } |
|
| 747 | + */ |
|
| 748 | + do_action('gd_compat_save_settings', $theme_settings);
|
|
| 749 | 749 | |
| 750 | 750 | //if($_POST['gd_theme_compat'])== |
| 751 | - $theme_arr[$theme_name] = $theme_settings; |
|
| 752 | - update_option('gd_theme_compats', $theme_arr);
|
|
| 751 | + $theme_arr[$theme_name] = $theme_settings; |
|
| 752 | + update_option('gd_theme_compats', $theme_arr);
|
|
| 753 | 753 | |
| 754 | 754 | |
| 755 | 755 | //print_r($theme_settings);exit; |
| 756 | - update_option('theme_compatibility_setting', $theme_settings);
|
|
| 756 | + update_option('theme_compatibility_setting', $theme_settings);
|
|
| 757 | 757 | |
| 758 | 758 | } |
| 759 | 759 | |
@@ -766,12 +766,12 @@ discard block |
||
| 766 | 766 | */ |
| 767 | 767 | function geodir_theme_compatibility_setting_page() |
| 768 | 768 | {
|
| 769 | - global $wpdb; |
|
| 770 | - $tc = get_option('theme_compatibility_setting');
|
|
| 771 | - //print_r($tc); |
|
| 772 | - //print_r(wp_get_theme()); |
|
| 769 | + global $wpdb; |
|
| 770 | + $tc = get_option('theme_compatibility_setting');
|
|
| 771 | + //print_r($tc); |
|
| 772 | + //print_r(wp_get_theme()); |
|
| 773 | 773 | |
| 774 | - ?> |
|
| 774 | + ?> |
|
| 775 | 775 | <div class="inner_content_tab_main"> |
| 776 | 776 | <div class="gd-content-heading"> |
| 777 | 777 | |
@@ -813,21 +813,21 @@ discard block |
||
| 813 | 813 | <option value=""><?php _e('Select Theme', 'geodirectory');?></option>
|
| 814 | 814 | <option value="custom"><?php _e('Custom', 'geodirectory');?></option>
|
| 815 | 815 | <?php |
| 816 | - $theme_arr = get_option('gd_theme_compats');
|
|
| 817 | - $theme_active = get_option('gd_theme_compat');
|
|
| 818 | - if (is_array($theme_arr)) {
|
|
| 819 | - foreach ($theme_arr as $key => $theme) {
|
|
| 820 | - $sel = ''; |
|
| 821 | - if ($theme_active == $key) {
|
|
| 822 | - $sel = "selected"; |
|
| 823 | - } |
|
| 824 | - echo "<option $sel>$key</option>"; |
|
| 825 | - } |
|
| 816 | + $theme_arr = get_option('gd_theme_compats');
|
|
| 817 | + $theme_active = get_option('gd_theme_compat');
|
|
| 818 | + if (is_array($theme_arr)) {
|
|
| 819 | + foreach ($theme_arr as $key => $theme) {
|
|
| 820 | + $sel = ''; |
|
| 821 | + if ($theme_active == $key) {
|
|
| 822 | + $sel = "selected"; |
|
| 823 | + } |
|
| 824 | + echo "<option $sel>$key</option>"; |
|
| 825 | + } |
|
| 826 | 826 | |
| 827 | 827 | |
| 828 | - } |
|
| 828 | + } |
|
| 829 | 829 | |
| 830 | - ?> |
|
| 830 | + ?> |
|
| 831 | 831 | </select> |
| 832 | 832 | <button onclick="gd_comp_export();" type="button" |
| 833 | 833 | class="button-primary"><?php _e('Export', 'geodirectory');?></button>
|
@@ -936,11 +936,11 @@ discard block |
||
| 936 | 936 | <small>geodir_wrapper_open</small> |
| 937 | 937 | </td> |
| 938 | 938 | <td><input value="<?php if (isset($tc['geodir_wrapper_open_id'])) {
|
| 939 | - echo $tc['geodir_wrapper_open_id']; |
|
| 940 | - }?>" type="text" name="geodir_wrapper_open_id" placeholder="geodir-wrapper"/></td> |
|
| 939 | + echo $tc['geodir_wrapper_open_id']; |
|
| 940 | + }?>" type="text" name="geodir_wrapper_open_id" placeholder="geodir-wrapper"/></td> |
|
| 941 | 941 | <td><input value="<?php if (isset($tc['geodir_wrapper_open_class'])) {
|
| 942 | - echo $tc['geodir_wrapper_open_class']; |
|
| 943 | - }?>" type="text" name="geodir_wrapper_open_class" placeholder=""/></td> |
|
| 942 | + echo $tc['geodir_wrapper_open_class']; |
|
| 943 | + }?>" type="text" name="geodir_wrapper_open_class" placeholder=""/></td> |
|
| 944 | 944 | </tr> |
| 945 | 945 | |
| 946 | 946 | <tr class="gd-theme-comp-out"> |
@@ -948,8 +948,8 @@ discard block |
||
| 948 | 948 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 949 | 949 | <textarea name="geodir_wrapper_open_replace" |
| 950 | 950 | placeholder='<div id="[id]" class="[class]">'><?php if (isset($tc['geodir_wrapper_open_replace'])) {
|
| 951 | - echo $tc['geodir_wrapper_open_replace']; |
|
| 952 | - }?></textarea> |
|
| 951 | + echo $tc['geodir_wrapper_open_replace']; |
|
| 952 | + }?></textarea> |
|
| 953 | 953 | </td> |
| 954 | 954 | </tr> |
| 955 | 955 | |
@@ -969,8 +969,8 @@ discard block |
||
| 969 | 969 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 970 | 970 | <textarea name="geodir_wrapper_close_replace" |
| 971 | 971 | placeholder='</div><!-- wrapper ends here-->'><?php if (isset($tc['geodir_wrapper_close_replace'])) {
|
| 972 | - echo $tc['geodir_wrapper_close_replace']; |
|
| 973 | - }?></textarea> |
|
| 972 | + echo $tc['geodir_wrapper_close_replace']; |
|
| 973 | + }?></textarea> |
|
| 974 | 974 | </td> |
| 975 | 975 | </tr> |
| 976 | 976 | |
@@ -980,12 +980,12 @@ discard block |
||
| 980 | 980 | <small>geodir_wrapper_content_open</small> |
| 981 | 981 | </td> |
| 982 | 982 | <td><input value="<?php if (isset($tc['geodir_wrapper_content_open_id'])) {
|
| 983 | - echo $tc['geodir_wrapper_content_open_id']; |
|
| 984 | - }?>" type="text" name="geodir_wrapper_content_open_id" placeholder="geodir-wrapper-content"/> |
|
| 983 | + echo $tc['geodir_wrapper_content_open_id']; |
|
| 984 | + }?>" type="text" name="geodir_wrapper_content_open_id" placeholder="geodir-wrapper-content"/> |
|
| 985 | 985 | </td> |
| 986 | 986 | <td><input value="<?php if (isset($tc['geodir_wrapper_content_open_class'])) {
|
| 987 | - echo $tc['geodir_wrapper_content_open_class']; |
|
| 988 | - }?>" type="text" name="geodir_wrapper_content_open_class" placeholder=""/></td> |
|
| 987 | + echo $tc['geodir_wrapper_content_open_class']; |
|
| 988 | + }?>" type="text" name="geodir_wrapper_content_open_class" placeholder=""/></td> |
|
| 989 | 989 | </tr> |
| 990 | 990 | |
| 991 | 991 | <tr class="gd-theme-comp-out"> |
@@ -993,8 +993,8 @@ discard block |
||
| 993 | 993 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 994 | 994 | <textarea name="geodir_wrapper_content_open_replace" |
| 995 | 995 | placeholder='<div id="[id]" class="[class]" role="main" [width_css]>'><?php if (isset($tc['geodir_wrapper_content_open_replace'])) {
|
| 996 | - echo $tc['geodir_wrapper_content_open_replace']; |
|
| 997 | - }?></textarea> |
|
| 996 | + echo $tc['geodir_wrapper_content_open_replace']; |
|
| 997 | + }?></textarea> |
|
| 998 | 998 | </td> |
| 999 | 999 | </tr> |
| 1000 | 1000 | |
@@ -1014,8 +1014,8 @@ discard block |
||
| 1014 | 1014 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1015 | 1015 | <textarea name="geodir_wrapper_content_close_replace" |
| 1016 | 1016 | placeholder='</div><!-- content ends here-->'><?php if (isset($tc['geodir_wrapper_content_close_replace'])) {
|
| 1017 | - echo $tc['geodir_wrapper_content_close_replace']; |
|
| 1018 | - }?></textarea> |
|
| 1017 | + echo $tc['geodir_wrapper_content_close_replace']; |
|
| 1018 | + }?></textarea> |
|
| 1019 | 1019 | </td> |
| 1020 | 1020 | </tr> |
| 1021 | 1021 | |
@@ -1024,11 +1024,11 @@ discard block |
||
| 1024 | 1024 | <small>geodir_article_open</small> |
| 1025 | 1025 | </td> |
| 1026 | 1026 | <td><input value="<?php if (isset($tc['geodir_article_open_id'])) {
|
| 1027 | - echo $tc['geodir_article_open_id']; |
|
| 1028 | - }?>" type="text" name="geodir_article_open_id" placeholder="geodir-wrapper-content"/></td> |
|
| 1027 | + echo $tc['geodir_article_open_id']; |
|
| 1028 | + }?>" type="text" name="geodir_article_open_id" placeholder="geodir-wrapper-content"/></td> |
|
| 1029 | 1029 | <td><input value="<?php if (isset($tc['geodir_article_open_class'])) {
|
| 1030 | - echo $tc['geodir_article_open_class']; |
|
| 1031 | - }?>" type="text" name="geodir_article_open_class" placeholder=""/></td> |
|
| 1030 | + echo $tc['geodir_article_open_class']; |
|
| 1031 | + }?>" type="text" name="geodir_article_open_class" placeholder=""/></td> |
|
| 1032 | 1032 | </tr> |
| 1033 | 1033 | |
| 1034 | 1034 | <tr class="gd-theme-comp-out"> |
@@ -1036,8 +1036,8 @@ discard block |
||
| 1036 | 1036 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1037 | 1037 | <textarea name="geodir_article_open_replace" |
| 1038 | 1038 | placeholder='<article id="[id]" class="[class]" itemscope itemtype="[itemtype]">'><?php if (isset($tc['geodir_article_open_replace'])) {
|
| 1039 | - echo $tc['geodir_article_open_replace']; |
|
| 1040 | - }?></textarea> |
|
| 1039 | + echo $tc['geodir_article_open_replace']; |
|
| 1040 | + }?></textarea> |
|
| 1041 | 1041 | </td> |
| 1042 | 1042 | </tr> |
| 1043 | 1043 | |
@@ -1056,8 +1056,8 @@ discard block |
||
| 1056 | 1056 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1057 | 1057 | <textarea name="geodir_article_close_replace" |
| 1058 | 1058 | placeholder='</article><!-- article ends here-->'><?php if (isset($tc['geodir_article_close_replace'])) {
|
| 1059 | - echo $tc['geodir_article_close_replace']; |
|
| 1060 | - }?></textarea> |
|
| 1059 | + echo $tc['geodir_article_close_replace']; |
|
| 1060 | + }?></textarea> |
|
| 1061 | 1061 | </td> |
| 1062 | 1062 | </tr> |
| 1063 | 1063 | |
@@ -1066,11 +1066,11 @@ discard block |
||
| 1066 | 1066 | <small>geodir_sidebar_right_open</small> |
| 1067 | 1067 | </td> |
| 1068 | 1068 | <td><input value="<?php if (isset($tc['geodir_sidebar_right_open_id'])) {
|
| 1069 | - echo $tc['geodir_sidebar_right_open_id']; |
|
| 1070 | - }?>" type="text" name="geodir_sidebar_right_open_id" placeholder="geodir-sidebar-right"/></td> |
|
| 1069 | + echo $tc['geodir_sidebar_right_open_id']; |
|
| 1070 | + }?>" type="text" name="geodir_sidebar_right_open_id" placeholder="geodir-sidebar-right"/></td> |
|
| 1071 | 1071 | <td><input value="<?php if (isset($tc['geodir_sidebar_right_open_class'])) {
|
| 1072 | - echo $tc['geodir_sidebar_right_open_class']; |
|
| 1073 | - }?>" type="text" name="geodir_sidebar_right_open_class" |
|
| 1072 | + echo $tc['geodir_sidebar_right_open_class']; |
|
| 1073 | + }?>" type="text" name="geodir_sidebar_right_open_class" |
|
| 1074 | 1074 | placeholder="geodir-sidebar-right geodir-listings-sidebar-right"/></td> |
| 1075 | 1075 | </tr> |
| 1076 | 1076 | |
@@ -1079,8 +1079,8 @@ discard block |
||
| 1079 | 1079 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1080 | 1080 | <textarea name="geodir_sidebar_right_open_replace" |
| 1081 | 1081 | placeholder='<aside id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>'><?php if (isset($tc['geodir_sidebar_right_open_replace'])) {
|
| 1082 | - echo $tc['geodir_sidebar_right_open_replace']; |
|
| 1083 | - }?></textarea> |
|
| 1082 | + echo $tc['geodir_sidebar_right_open_replace']; |
|
| 1083 | + }?></textarea> |
|
| 1084 | 1084 | </td> |
| 1085 | 1085 | </tr> |
| 1086 | 1086 | |
@@ -1099,8 +1099,8 @@ discard block |
||
| 1099 | 1099 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1100 | 1100 | <textarea name="geodir_sidebar_right_close_replace" |
| 1101 | 1101 | placeholder='</aside><!-- sidebar ends here-->'><?php if (isset($tc['geodir_sidebar_right_close_replace'])) {
|
| 1102 | - echo $tc['geodir_sidebar_right_close_replace']; |
|
| 1103 | - }?></textarea> |
|
| 1102 | + echo $tc['geodir_sidebar_right_close_replace']; |
|
| 1103 | + }?></textarea> |
|
| 1104 | 1104 | </td> |
| 1105 | 1105 | </tr> |
| 1106 | 1106 | |
@@ -1110,11 +1110,11 @@ discard block |
||
| 1110 | 1110 | <small>geodir_sidebar_left_open</small> |
| 1111 | 1111 | </td> |
| 1112 | 1112 | <td><input value="<?php if (isset($tc['geodir_sidebar_left_open_id'])) {
|
| 1113 | - echo $tc['geodir_sidebar_left_open_id']; |
|
| 1114 | - }?>" type="text" name="geodir_sidebar_left_open_id" placeholder="geodir-sidebar-left"/></td> |
|
| 1113 | + echo $tc['geodir_sidebar_left_open_id']; |
|
| 1114 | + }?>" type="text" name="geodir_sidebar_left_open_id" placeholder="geodir-sidebar-left"/></td> |
|
| 1115 | 1115 | <td><input value="<?php if (isset($tc['geodir_sidebar_left_open_class'])) {
|
| 1116 | - echo $tc['geodir_sidebar_left_open_class']; |
|
| 1117 | - }?>" type="text" name="geodir_sidebar_left_open_class" |
|
| 1116 | + echo $tc['geodir_sidebar_left_open_class']; |
|
| 1117 | + }?>" type="text" name="geodir_sidebar_left_open_class" |
|
| 1118 | 1118 | placeholder="geodir-sidebar-left geodir-listings-sidebar-left"/></td> |
| 1119 | 1119 | </tr> |
| 1120 | 1120 | |
@@ -1123,8 +1123,8 @@ discard block |
||
| 1123 | 1123 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1124 | 1124 | <textarea name="geodir_sidebar_left_open_replace" |
| 1125 | 1125 | placeholder='<aside id="[id]" class="[class]" role="complementary" itemscope itemtype="[itemtype]" [width_css]>'><?php if (isset($tc['geodir_sidebar_left_open_replace'])) {
|
| 1126 | - echo $tc['geodir_sidebar_left_open_replace']; |
|
| 1127 | - }?></textarea> |
|
| 1126 | + echo $tc['geodir_sidebar_left_open_replace']; |
|
| 1127 | + }?></textarea> |
|
| 1128 | 1128 | </td> |
| 1129 | 1129 | </tr> |
| 1130 | 1130 | |
@@ -1143,8 +1143,8 @@ discard block |
||
| 1143 | 1143 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1144 | 1144 | <textarea name="geodir_sidebar_left_close_replace" |
| 1145 | 1145 | placeholder='</aside><!-- sidebar ends here-->'><?php if (isset($tc['geodir_sidebar_left_close_replace'])) {
|
| 1146 | - echo $tc['geodir_sidebar_left_close_replace']; |
|
| 1147 | - }?></textarea> |
|
| 1146 | + echo $tc['geodir_sidebar_left_close_replace']; |
|
| 1147 | + }?></textarea> |
|
| 1148 | 1148 | </td> |
| 1149 | 1149 | </tr> |
| 1150 | 1150 | |
@@ -1153,11 +1153,11 @@ discard block |
||
| 1153 | 1153 | <small>geodir_main_content_open</small> |
| 1154 | 1154 | </td> |
| 1155 | 1155 | <td><input value="<?php if (isset($tc['geodir_main_content_open_id'])) {
|
| 1156 | - echo $tc['geodir_main_content_open_id']; |
|
| 1157 | - }?>" type="text" name="geodir_main_content_open_id" placeholder="geodir-main-content"/></td> |
|
| 1156 | + echo $tc['geodir_main_content_open_id']; |
|
| 1157 | + }?>" type="text" name="geodir_main_content_open_id" placeholder="geodir-main-content"/></td> |
|
| 1158 | 1158 | <td><input value="<?php if (isset($tc['geodir_main_content_open_class'])) {
|
| 1159 | - echo $tc['geodir_main_content_open_class']; |
|
| 1160 | - }?>" type="text" name="geodir_main_content_open_class" placeholder="CURRENT-PAGE-page"/></td> |
|
| 1159 | + echo $tc['geodir_main_content_open_class']; |
|
| 1160 | + }?>" type="text" name="geodir_main_content_open_class" placeholder="CURRENT-PAGE-page"/></td> |
|
| 1161 | 1161 | </tr> |
| 1162 | 1162 | |
| 1163 | 1163 | <tr class="gd-theme-comp-out"> |
@@ -1165,8 +1165,8 @@ discard block |
||
| 1165 | 1165 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1166 | 1166 | <textarea name="geodir_main_content_open_replace" |
| 1167 | 1167 | placeholder='<main id="[id]" class="[class]" role="main">'><?php if (isset($tc['geodir_main_content_open_replace'])) {
|
| 1168 | - echo $tc['geodir_main_content_open_replace']; |
|
| 1169 | - }?></textarea> |
|
| 1168 | + echo $tc['geodir_main_content_open_replace']; |
|
| 1169 | + }?></textarea> |
|
| 1170 | 1170 | </td> |
| 1171 | 1171 | </tr> |
| 1172 | 1172 | |
@@ -1185,8 +1185,8 @@ discard block |
||
| 1185 | 1185 | <span><?php _e('Output:', 'geodirectory');?></span>
|
| 1186 | 1186 | <textarea name="geodir_main_content_close_replace" |
| 1187 | 1187 | placeholder='</main><!-- main ends here-->'><?php if (isset($tc['geodir_main_content_close_replace'])) {
|
| 1188 | - echo $tc['geodir_main_content_close_replace']; |
|
| 1189 | - }?></textarea> |
|
| 1188 | + echo $tc['geodir_main_content_close_replace']; |
|
| 1189 | + }?></textarea> |
|
| 1190 | 1190 | </td> |
| 1191 | 1191 | </tr> |
| 1192 | 1192 | |
@@ -1210,8 +1210,8 @@ discard block |
||
| 1210 | 1210 | </td> |
| 1211 | 1211 | <td><textarea name="geodir_top_content_add" |
| 1212 | 1212 | placeholder=''><?php if (isset($tc['geodir_top_content_add'])) {
|
| 1213 | - echo $tc['geodir_top_content_add']; |
|
| 1214 | - }?></textarea></td> |
|
| 1213 | + echo $tc['geodir_top_content_add']; |
|
| 1214 | + }?></textarea></td> |
|
| 1215 | 1215 | </tr> |
| 1216 | 1216 | |
| 1217 | 1217 | <tr> |
@@ -1220,8 +1220,8 @@ discard block |
||
| 1220 | 1220 | </td> |
| 1221 | 1221 | <td><textarea name="geodir_before_main_content_add" |
| 1222 | 1222 | placeholder=''><?php if (isset($tc['geodir_before_main_content_add'])) {
|
| 1223 | - echo $tc['geodir_before_main_content_add']; |
|
| 1224 | - }?></textarea></td> |
|
| 1223 | + echo $tc['geodir_before_main_content_add']; |
|
| 1224 | + }?></textarea></td> |
|
| 1225 | 1225 | </tr> |
| 1226 | 1226 | |
| 1227 | 1227 | |
@@ -1244,8 +1244,8 @@ discard block |
||
| 1244 | 1244 | </td> |
| 1245 | 1245 | <td><textarea name="geodir_full_page_class_filter" |
| 1246 | 1246 | placeholder='geodir_full_page clearfix'><?php if (isset($tc['geodir_full_page_class_filter'])) {
|
| 1247 | - echo $tc['geodir_full_page_class_filter']; |
|
| 1248 | - }?></textarea></td> |
|
| 1247 | + echo $tc['geodir_full_page_class_filter']; |
|
| 1248 | + }?></textarea></td> |
|
| 1249 | 1249 | </tr> |
| 1250 | 1250 | |
| 1251 | 1251 | <tr> |
@@ -1254,8 +1254,8 @@ discard block |
||
| 1254 | 1254 | </td> |
| 1255 | 1255 | <td><textarea name="geodir_before_widget_filter" |
| 1256 | 1256 | placeholder='<section id="%1$s" class="widget geodir-widget %2$s">'><?php if (isset($tc['geodir_before_widget_filter'])) {
|
| 1257 | - echo $tc['geodir_before_widget_filter']; |
|
| 1258 | - }?></textarea></td> |
|
| 1257 | + echo $tc['geodir_before_widget_filter']; |
|
| 1258 | + }?></textarea></td> |
|
| 1259 | 1259 | </tr> |
| 1260 | 1260 | |
| 1261 | 1261 | <tr> |
@@ -1264,8 +1264,8 @@ discard block |
||
| 1264 | 1264 | </td> |
| 1265 | 1265 | <td><textarea name="geodir_after_widget_filter" |
| 1266 | 1266 | placeholder='</section>'><?php if (isset($tc['geodir_after_widget_filter'])) {
|
| 1267 | - echo $tc['geodir_after_widget_filter']; |
|
| 1268 | - }?></textarea></td> |
|
| 1267 | + echo $tc['geodir_after_widget_filter']; |
|
| 1268 | + }?></textarea></td> |
|
| 1269 | 1269 | </tr> |
| 1270 | 1270 | |
| 1271 | 1271 | <tr> |
@@ -1274,8 +1274,8 @@ discard block |
||
| 1274 | 1274 | </td> |
| 1275 | 1275 | <td><textarea name="geodir_before_title_filter" |
| 1276 | 1276 | placeholder='<h3 class="widget-title">'><?php if (isset($tc['geodir_before_title_filter'])) {
|
| 1277 | - echo $tc['geodir_before_title_filter']; |
|
| 1278 | - }?></textarea></td> |
|
| 1277 | + echo $tc['geodir_before_title_filter']; |
|
| 1278 | + }?></textarea></td> |
|
| 1279 | 1279 | </tr> |
| 1280 | 1280 | |
| 1281 | 1281 | <tr> |
@@ -1284,8 +1284,8 @@ discard block |
||
| 1284 | 1284 | </td> |
| 1285 | 1285 | <td><textarea name="geodir_after_title_filter" |
| 1286 | 1286 | placeholder='</h3>'><?php if (isset($tc['geodir_after_title_filter'])) {
|
| 1287 | - echo $tc['geodir_after_title_filter']; |
|
| 1288 | - }?></textarea></td> |
|
| 1287 | + echo $tc['geodir_after_title_filter']; |
|
| 1288 | + }?></textarea></td> |
|
| 1289 | 1289 | </tr> |
| 1290 | 1290 | |
| 1291 | 1291 | <tr> |
@@ -1294,8 +1294,8 @@ discard block |
||
| 1294 | 1294 | </td> |
| 1295 | 1295 | <td><textarea name="geodir_menu_li_class_filter" |
| 1296 | 1296 | placeholder='menu-item'><?php if (isset($tc['geodir_menu_li_class_filter'])) {
|
| 1297 | - echo $tc['geodir_menu_li_class_filter']; |
|
| 1298 | - }?></textarea></td> |
|
| 1297 | + echo $tc['geodir_menu_li_class_filter']; |
|
| 1298 | + }?></textarea></td> |
|
| 1299 | 1299 | </tr> |
| 1300 | 1300 | |
| 1301 | 1301 | <tr> |
@@ -1304,8 +1304,8 @@ discard block |
||
| 1304 | 1304 | </td> |
| 1305 | 1305 | <td><textarea name="geodir_sub_menu_ul_class_filter" |
| 1306 | 1306 | placeholder='sub-menu'><?php if (isset($tc['geodir_sub_menu_ul_class_filter'])) {
|
| 1307 | - echo $tc['geodir_sub_menu_ul_class_filter']; |
|
| 1308 | - }?></textarea></td> |
|
| 1307 | + echo $tc['geodir_sub_menu_ul_class_filter']; |
|
| 1308 | + }?></textarea></td> |
|
| 1309 | 1309 | </tr> |
| 1310 | 1310 | |
| 1311 | 1311 | <tr> |
@@ -1314,8 +1314,8 @@ discard block |
||
| 1314 | 1314 | </td> |
| 1315 | 1315 | <td><textarea name="geodir_sub_menu_li_class_filter" |
| 1316 | 1316 | placeholder='menu-item'><?php if (isset($tc['geodir_sub_menu_li_class_filter'])) {
|
| 1317 | - echo $tc['geodir_sub_menu_li_class_filter']; |
|
| 1318 | - }?></textarea></td> |
|
| 1317 | + echo $tc['geodir_sub_menu_li_class_filter']; |
|
| 1318 | + }?></textarea></td> |
|
| 1319 | 1319 | </tr> |
| 1320 | 1320 | |
| 1321 | 1321 | <tr> |
@@ -1324,8 +1324,8 @@ discard block |
||
| 1324 | 1324 | </td> |
| 1325 | 1325 | <td><textarea name="geodir_menu_a_class_filter" |
| 1326 | 1326 | placeholder=''><?php if (isset($tc['geodir_menu_a_class_filter'])) {
|
| 1327 | - echo $tc['geodir_menu_a_class_filter']; |
|
| 1328 | - }?></textarea></td> |
|
| 1327 | + echo $tc['geodir_menu_a_class_filter']; |
|
| 1328 | + }?></textarea></td> |
|
| 1329 | 1329 | </tr> |
| 1330 | 1330 | |
| 1331 | 1331 | <tr> |
@@ -1334,8 +1334,8 @@ discard block |
||
| 1334 | 1334 | </td> |
| 1335 | 1335 | <td><textarea name="geodir_sub_menu_a_class_filter" |
| 1336 | 1336 | placeholder=''><?php if (isset($tc['geodir_sub_menu_a_class_filter'])) {
|
| 1337 | - echo $tc['geodir_sub_menu_a_class_filter']; |
|
| 1338 | - }?></textarea></td> |
|
| 1337 | + echo $tc['geodir_sub_menu_a_class_filter']; |
|
| 1338 | + }?></textarea></td> |
|
| 1339 | 1339 | </tr> |
| 1340 | 1340 | |
| 1341 | 1341 | |
@@ -1345,8 +1345,8 @@ discard block |
||
| 1345 | 1345 | </td> |
| 1346 | 1346 | <td><textarea name="geodir_location_switcher_menu_li_class_filter" |
| 1347 | 1347 | placeholder='menu-item menu-item-type-social menu-item-type-social gd-location-switcher'><?php if (isset($tc['geodir_location_switcher_menu_li_class_filter'])) {
|
| 1348 | - echo $tc['geodir_location_switcher_menu_li_class_filter']; |
|
| 1349 | - }?></textarea></td> |
|
| 1348 | + echo $tc['geodir_location_switcher_menu_li_class_filter']; |
|
| 1349 | + }?></textarea></td> |
|
| 1350 | 1350 | </tr> |
| 1351 | 1351 | |
| 1352 | 1352 | <tr> |
@@ -1355,8 +1355,8 @@ discard block |
||
| 1355 | 1355 | </td> |
| 1356 | 1356 | <td><textarea name="geodir_location_switcher_menu_a_class_filter" |
| 1357 | 1357 | placeholder=''><?php if (isset($tc['geodir_location_switcher_menu_a_class_filter'])) {
|
| 1358 | - echo $tc['geodir_location_switcher_menu_a_class_filter']; |
|
| 1359 | - }?></textarea></td> |
|
| 1358 | + echo $tc['geodir_location_switcher_menu_a_class_filter']; |
|
| 1359 | + }?></textarea></td> |
|
| 1360 | 1360 | </tr> |
| 1361 | 1361 | |
| 1362 | 1362 | <tr> |
@@ -1365,8 +1365,8 @@ discard block |
||
| 1365 | 1365 | </td> |
| 1366 | 1366 | <td><textarea name="geodir_location_switcher_menu_sub_ul_class_filter" |
| 1367 | 1367 | placeholder='sub-menu'><?php if (isset($tc['geodir_location_switcher_menu_sub_ul_class_filter'])) {
|
| 1368 | - echo $tc['geodir_location_switcher_menu_sub_ul_class_filter']; |
|
| 1369 | - }?></textarea></td> |
|
| 1368 | + echo $tc['geodir_location_switcher_menu_sub_ul_class_filter']; |
|
| 1369 | + }?></textarea></td> |
|
| 1370 | 1370 | </tr> |
| 1371 | 1371 | |
| 1372 | 1372 | <tr> |
@@ -1375,21 +1375,21 @@ discard block |
||
| 1375 | 1375 | </td> |
| 1376 | 1376 | <td><textarea name="geodir_location_switcher_menu_sub_li_class_filter" |
| 1377 | 1377 | placeholder='menu-item gd-location-switcher-menu-item'><?php if (isset($tc['geodir_location_switcher_menu_sub_li_class_filter'])) {
|
| 1378 | - echo $tc['geodir_location_switcher_menu_sub_li_class_filter']; |
|
| 1379 | - }?></textarea></td> |
|
| 1378 | + echo $tc['geodir_location_switcher_menu_sub_li_class_filter']; |
|
| 1379 | + }?></textarea></td> |
|
| 1380 | 1380 | </tr> |
| 1381 | 1381 | |
| 1382 | 1382 | |
| 1383 | 1383 | |
| 1384 | 1384 | <?php |
| 1385 | - /** |
|
| 1386 | - * Allows more filter setting to be added to theme compatibility settings page. |
|
| 1387 | - * |
|
| 1388 | - * Called after the last setting in "Other filters" section of theme compatibility settings. |
|
| 1389 | - * |
|
| 1390 | - * @since 1.4.0 |
|
| 1391 | - */ |
|
| 1392 | - do_action('gd_compat_other_filters');?>
|
|
| 1385 | + /** |
|
| 1386 | + * Allows more filter setting to be added to theme compatibility settings page. |
|
| 1387 | + * |
|
| 1388 | + * Called after the last setting in "Other filters" section of theme compatibility settings. |
|
| 1389 | + * |
|
| 1390 | + * @since 1.4.0 |
|
| 1391 | + */ |
|
| 1392 | + do_action('gd_compat_other_filters');?>
|
|
| 1393 | 1393 | |
| 1394 | 1394 | </tbody> |
| 1395 | 1395 | </table> |
@@ -1402,8 +1402,8 @@ discard block |
||
| 1402 | 1402 | <tr> |
| 1403 | 1403 | <td><textarea name="geodir_theme_compat_css" |
| 1404 | 1404 | placeholder=''><?php if (isset($tc['geodir_theme_compat_css'])) {
|
| 1405 | - echo $tc['geodir_theme_compat_css']; |
|
| 1406 | - }?></textarea></td> |
|
| 1405 | + echo $tc['geodir_theme_compat_css']; |
|
| 1406 | + }?></textarea></td> |
|
| 1407 | 1407 | </tr> |
| 1408 | 1408 | |
| 1409 | 1409 | |
@@ -1417,8 +1417,8 @@ discard block |
||
| 1417 | 1417 | <tr> |
| 1418 | 1418 | <td><textarea name="geodir_theme_compat_js" |
| 1419 | 1419 | placeholder=''><?php if (isset($tc['geodir_theme_compat_js'])) {
|
| 1420 | - echo $tc['geodir_theme_compat_js']; |
|
| 1421 | - }?></textarea></td> |
|
| 1420 | + echo $tc['geodir_theme_compat_js']; |
|
| 1421 | + }?></textarea></td> |
|
| 1422 | 1422 | </tr> |
| 1423 | 1423 | |
| 1424 | 1424 | |
@@ -1445,23 +1445,23 @@ discard block |
||
| 1445 | 1445 | */ |
| 1446 | 1446 | function geodir_custom_post_type_form() |
| 1447 | 1447 | {
|
| 1448 | - $listing_type = ($_REQUEST['listing_type'] != '') ? $_REQUEST['listing_type'] : 'gd_place'; |
|
| 1448 | + $listing_type = ($_REQUEST['listing_type'] != '') ? $_REQUEST['listing_type'] : 'gd_place'; |
|
| 1449 | 1449 | |
| 1450 | - $sub_tab = ($_REQUEST['subtab'] != '') ? $_REQUEST['subtab'] : ''; |
|
| 1450 | + $sub_tab = ($_REQUEST['subtab'] != '') ? $_REQUEST['subtab'] : ''; |
|
| 1451 | 1451 | |
| 1452 | 1452 | |
| 1453 | - ?> |
|
| 1453 | + ?> |
|
| 1454 | 1454 | |
| 1455 | 1455 | <div class="gd-content-heading"> |
| 1456 | 1456 | <?php |
| 1457 | - /** |
|
| 1458 | - * Filter custom fields panel heading. |
|
| 1459 | - * |
|
| 1460 | - * @since 1.0.0 |
|
| 1461 | - * @param string $sub_tab Sub tab name. |
|
| 1462 | - * @param string $listing_type Post type. |
|
| 1463 | - */ |
|
| 1464 | - ?> |
|
| 1457 | + /** |
|
| 1458 | + * Filter custom fields panel heading. |
|
| 1459 | + * |
|
| 1460 | + * @since 1.0.0 |
|
| 1461 | + * @param string $sub_tab Sub tab name. |
|
| 1462 | + * @param string $listing_type Post type. |
|
| 1463 | + */ |
|
| 1464 | + ?> |
|
| 1465 | 1465 | <h3><?php echo apply_filters('geodir_custom_fields_panel_head', '', $sub_tab, $listing_type);?></h3>
|
| 1466 | 1466 | </div> |
| 1467 | 1467 | <div id="container_general" class="clearfix"> |
@@ -1469,25 +1469,25 @@ discard block |
||
| 1469 | 1469 | |
| 1470 | 1470 | <div class="side-sortables" id="geodir-available-fields"> |
| 1471 | 1471 | <?php |
| 1472 | - /** |
|
| 1473 | - * Filter custom field available fields heading. |
|
| 1474 | - * |
|
| 1475 | - * @since 1.0.0 |
|
| 1476 | - * @param string $sub_tab Sub tab name. |
|
| 1477 | - * @param string $listing_type Post type. |
|
| 1478 | - */ |
|
| 1479 | - ?> |
|
| 1472 | + /** |
|
| 1473 | + * Filter custom field available fields heading. |
|
| 1474 | + * |
|
| 1475 | + * @since 1.0.0 |
|
| 1476 | + * @param string $sub_tab Sub tab name. |
|
| 1477 | + * @param string $listing_type Post type. |
|
| 1478 | + */ |
|
| 1479 | + ?> |
|
| 1480 | 1480 | <h3 class="hndle"><span><?php echo apply_filters('geodir_cf_panel_available_fields_head', '', $sub_tab, $listing_type);?>
|
| 1481 | 1481 | </span></h3> |
| 1482 | 1482 | <?php |
| 1483 | - /** |
|
| 1484 | - * Filter custom field available fields note text. |
|
| 1485 | - * |
|
| 1486 | - * @since 1.0.0 |
|
| 1487 | - * @param string $sub_tab Sub tab name. |
|
| 1488 | - * @param string $listing_type Post type. |
|
| 1489 | - */ |
|
| 1490 | - ?> |
|
| 1483 | + /** |
|
| 1484 | + * Filter custom field available fields note text. |
|
| 1485 | + * |
|
| 1486 | + * @since 1.0.0 |
|
| 1487 | + * @param string $sub_tab Sub tab name. |
|
| 1488 | + * @param string $listing_type Post type. |
|
| 1489 | + */ |
|
| 1490 | + ?> |
|
| 1491 | 1491 | <p><?php echo apply_filters('geodir_cf_panel_available_fields_note', '', $sub_tab, $listing_type);?></p>
|
| 1492 | 1492 | |
| 1493 | 1493 | <div class="inside"> |
@@ -1495,13 +1495,13 @@ discard block |
||
| 1495 | 1495 | <div id="gt-form-builder-tab" class="gt-tabs-panel"> |
| 1496 | 1496 | |
| 1497 | 1497 | <?php |
| 1498 | - /** |
|
| 1499 | - * Adds the available fields to the custom fields settings page per post type. |
|
| 1500 | - * |
|
| 1501 | - * @since 1.0.0 |
|
| 1502 | - * @param string $sub_tab The current settings tab name. |
|
| 1503 | - */ |
|
| 1504 | - do_action('geodir_manage_available_fields', $sub_tab); ?>
|
|
| 1498 | + /** |
|
| 1499 | + * Adds the available fields to the custom fields settings page per post type. |
|
| 1500 | + * |
|
| 1501 | + * @since 1.0.0 |
|
| 1502 | + * @param string $sub_tab The current settings tab name. |
|
| 1503 | + */ |
|
| 1504 | + do_action('geodir_manage_available_fields', $sub_tab); ?>
|
|
| 1505 | 1505 | |
| 1506 | 1506 | <div style="clear:both"></div> |
| 1507 | 1507 | </div> |
@@ -1514,25 +1514,25 @@ discard block |
||
| 1514 | 1514 | <div class="side-sortables" id="geodir-selected-fields"> |
| 1515 | 1515 | <h3 class="hndle"> |
| 1516 | 1516 | <?php |
| 1517 | - /** |
|
| 1518 | - * Filter custom field selected fields heading. |
|
| 1519 | - * |
|
| 1520 | - * @since 1.0.0 |
|
| 1521 | - * @param string $sub_tab Sub tab name. |
|
| 1522 | - * @param string $listing_type Post type. |
|
| 1523 | - */ |
|
| 1524 | - ?> |
|
| 1517 | + /** |
|
| 1518 | + * Filter custom field selected fields heading. |
|
| 1519 | + * |
|
| 1520 | + * @since 1.0.0 |
|
| 1521 | + * @param string $sub_tab Sub tab name. |
|
| 1522 | + * @param string $listing_type Post type. |
|
| 1523 | + */ |
|
| 1524 | + ?> |
|
| 1525 | 1525 | <span><?php echo apply_filters('geodir_cf_panel_selected_fields_head', '', $sub_tab, $listing_type);?></span>
|
| 1526 | 1526 | </h3> |
| 1527 | 1527 | <?php |
| 1528 | - /** |
|
| 1529 | - * Filter custom field selected fields note text. |
|
| 1530 | - * |
|
| 1531 | - * @since 1.0.0 |
|
| 1532 | - * @param string $sub_tab Sub tab name. |
|
| 1533 | - * @param string $listing_type Post type. |
|
| 1534 | - */ |
|
| 1535 | - ?> |
|
| 1528 | + /** |
|
| 1529 | + * Filter custom field selected fields note text. |
|
| 1530 | + * |
|
| 1531 | + * @since 1.0.0 |
|
| 1532 | + * @param string $sub_tab Sub tab name. |
|
| 1533 | + * @param string $listing_type Post type. |
|
| 1534 | + */ |
|
| 1535 | + ?> |
|
| 1536 | 1536 | <p><?php echo apply_filters('geodir_cf_panel_selected_fields_note', '', $sub_tab, $listing_type);?></p>
|
| 1537 | 1537 | |
| 1538 | 1538 | <div class="inside"> |
@@ -1540,13 +1540,13 @@ discard block |
||
| 1540 | 1540 | <div id="gt-form-builder-tab" class="gt-tabs-panel"> |
| 1541 | 1541 | <div class="field_row_main"> |
| 1542 | 1542 | <?php |
| 1543 | - /** |
|
| 1544 | - * Adds the selected fields and setting to the custom fields settings page per post type. |
|
| 1545 | - * |
|
| 1546 | - * @since 1.0.0 |
|
| 1547 | - * @param string $sub_tab The current settings tab name. |
|
| 1548 | - */ |
|
| 1549 | - do_action('geodir_manage_selected_fields', $sub_tab); ?>
|
|
| 1543 | + /** |
|
| 1544 | + * Adds the selected fields and setting to the custom fields settings page per post type. |
|
| 1545 | + * |
|
| 1546 | + * @since 1.0.0 |
|
| 1547 | + * @param string $sub_tab The current settings tab name. |
|
| 1548 | + */ |
|
| 1549 | + do_action('geodir_manage_selected_fields', $sub_tab); ?>
|
|
| 1550 | 1550 | </div> |
| 1551 | 1551 | <div style="clear:both"></div> |
| 1552 | 1552 | </div> |
@@ -1569,7 +1569,7 @@ discard block |
||
| 1569 | 1569 | */ |
| 1570 | 1570 | function geodir_diagnostic_tools_setting_page() |
| 1571 | 1571 | {
|
| 1572 | - ?> |
|
| 1572 | + ?> |
|
| 1573 | 1573 | <div class="inner_content_tab_main"> |
| 1574 | 1574 | <div class="gd-content-heading"> |
| 1575 | 1575 | |
@@ -1671,13 +1671,13 @@ discard block |
||
| 1671 | 1671 | </td> |
| 1672 | 1672 | </tr> |
| 1673 | 1673 | <?php |
| 1674 | - /** |
|
| 1675 | - * Allows you to add more setting to the GD>Tools settings page. |
|
| 1676 | - * |
|
| 1677 | - * Called after the last setting on the GD>Tools page. |
|
| 1678 | - * @since 1.0.0 |
|
| 1679 | - */ |
|
| 1680 | - do_action('geodir_diagnostic_tool');?>
|
|
| 1674 | + /** |
|
| 1675 | + * Allows you to add more setting to the GD>Tools settings page. |
|
| 1676 | + * |
|
| 1677 | + * Called after the last setting on the GD>Tools page. |
|
| 1678 | + * @since 1.0.0 |
|
| 1679 | + */ |
|
| 1680 | + do_action('geodir_diagnostic_tool');?>
|
|
| 1681 | 1681 | |
| 1682 | 1682 | </tbody> |
| 1683 | 1683 | </table> |
@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Custom functions |
|
| 4 | - * |
|
| 5 | - * @since 1.0.0 |
|
| 6 | - * @package GeoDirectory |
|
| 7 | - */ |
|
| 3 | + * Custom functions |
|
| 4 | + * |
|
| 5 | + * @since 1.0.0 |
|
| 6 | + * @package GeoDirectory |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Front end listing view template selection. |
@@ -17,7 +17,7 @@ discard block |
||
| 17 | 17 | * @global object $gd_session GeoDirectory Session object. |
| 18 | 18 | */ |
| 19 | 19 | function geodir_list_view_select() {
|
| 20 | - global $gd_session; |
|
| 20 | + global $gd_session; |
|
| 21 | 21 | ?> |
| 22 | 22 | <script type="text/javascript"> |
| 23 | 23 | function geodir_list_view_select(list) {
|
@@ -86,63 +86,63 @@ discard block |
||
| 86 | 86 | */ |
| 87 | 87 | function geodir_max_excerpt($charlength) |
| 88 | 88 | {
|
| 89 | - global $post; |
|
| 90 | - if ($charlength == '0') {
|
|
| 91 | - return; |
|
| 92 | - } |
|
| 93 | - $out = ''; |
|
| 89 | + global $post; |
|
| 90 | + if ($charlength == '0') {
|
|
| 91 | + return; |
|
| 92 | + } |
|
| 93 | + $out = ''; |
|
| 94 | 94 | |
| 95 | 95 | $temp_post = $post; |
| 96 | 96 | $excerpt = get_the_excerpt(); |
| 97 | 97 | |
| 98 | - $charlength++; |
|
| 99 | - $excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
|
|
| 100 | - if (mb_strlen($excerpt) > $charlength) {
|
|
| 101 | - if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 102 | - $excut = -(mb_strlen($excerpt_more)); |
|
| 103 | - $subex = mb_substr($excerpt, 0, $excut); |
|
| 104 | - if ($charlength > 0 && mb_strlen($subex) > $charlength) {
|
|
| 105 | - $subex = mb_substr($subex, 0, $charlength); |
|
| 106 | - } |
|
| 107 | - $out .= $subex; |
|
| 108 | - } else {
|
|
| 109 | - $subex = mb_substr($excerpt, 0, $charlength - 5); |
|
| 110 | - $exwords = explode(' ', $subex);
|
|
| 111 | - $excut = -(mb_strlen($exwords[count($exwords) - 1])); |
|
| 112 | - if ($excut < 0) {
|
|
| 113 | - $out .= mb_substr($subex, 0, $excut); |
|
| 114 | - } else {
|
|
| 115 | - $out .= $subex; |
|
| 116 | - } |
|
| 117 | - } |
|
| 118 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 119 | - /** |
|
| 120 | - * Filter excerpt read more text. |
|
| 121 | - * |
|
| 122 | - * @since 1.0.0 |
|
| 123 | - */ |
|
| 124 | - $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
|
|
| 125 | - $out .= '</a>'; |
|
| 126 | - |
|
| 127 | - } else {
|
|
| 128 | - if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 129 | - $excut = -(mb_strlen($excerpt_more)); |
|
| 130 | - $out .= mb_substr($excerpt, 0, $excut); |
|
| 131 | - $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 132 | - /** |
|
| 133 | - * Filter excerpt read more text. |
|
| 134 | - * |
|
| 135 | - * @since 1.0.0 |
|
| 136 | - */ |
|
| 137 | - $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
|
|
| 138 | - $out .= '</a>'; |
|
| 139 | - } else {
|
|
| 140 | - $out .= $excerpt; |
|
| 141 | - } |
|
| 142 | - } |
|
| 98 | + $charlength++; |
|
| 99 | + $excerpt_more = function_exists('geodirf_excerpt_more') ? geodirf_excerpt_more('') : geodir_excerpt_more('');
|
|
| 100 | + if (mb_strlen($excerpt) > $charlength) {
|
|
| 101 | + if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 102 | + $excut = -(mb_strlen($excerpt_more)); |
|
| 103 | + $subex = mb_substr($excerpt, 0, $excut); |
|
| 104 | + if ($charlength > 0 && mb_strlen($subex) > $charlength) {
|
|
| 105 | + $subex = mb_substr($subex, 0, $charlength); |
|
| 106 | + } |
|
| 107 | + $out .= $subex; |
|
| 108 | + } else {
|
|
| 109 | + $subex = mb_substr($excerpt, 0, $charlength - 5); |
|
| 110 | + $exwords = explode(' ', $subex);
|
|
| 111 | + $excut = -(mb_strlen($exwords[count($exwords) - 1])); |
|
| 112 | + if ($excut < 0) {
|
|
| 113 | + $out .= mb_substr($subex, 0, $excut); |
|
| 114 | + } else {
|
|
| 115 | + $out .= $subex; |
|
| 116 | + } |
|
| 117 | + } |
|
| 118 | + $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 119 | + /** |
|
| 120 | + * Filter excerpt read more text. |
|
| 121 | + * |
|
| 122 | + * @since 1.0.0 |
|
| 123 | + */ |
|
| 124 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
|
|
| 125 | + $out .= '</a>'; |
|
| 126 | + |
|
| 127 | + } else {
|
|
| 128 | + if (mb_strlen($excerpt_more) > 0 && mb_strpos($excerpt, $excerpt_more) !== false) {
|
|
| 129 | + $excut = -(mb_strlen($excerpt_more)); |
|
| 130 | + $out .= mb_substr($excerpt, 0, $excut); |
|
| 131 | + $out .= ' <a class="excerpt-read-more" href="' . get_permalink() . '" title="' . get_the_title() . '">'; |
|
| 132 | + /** |
|
| 133 | + * Filter excerpt read more text. |
|
| 134 | + * |
|
| 135 | + * @since 1.0.0 |
|
| 136 | + */ |
|
| 137 | + $out .= apply_filters('geodir_max_excerpt_end', __('Read more [...]', 'geodirectory'));
|
|
| 138 | + $out .= '</a>'; |
|
| 139 | + } else {
|
|
| 140 | + $out .= $excerpt; |
|
| 141 | + } |
|
| 142 | + } |
|
| 143 | 143 | $post = $temp_post; |
| 144 | 144 | |
| 145 | - return $out; |
|
| 145 | + return $out; |
|
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
@@ -157,34 +157,34 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | function geodir_post_package_info($package_info, $post = '', $post_type = '') |
| 159 | 159 | {
|
| 160 | - $package_info['pid'] = 0; |
|
| 161 | - $package_info['days'] = 0; |
|
| 162 | - $package_info['amount'] = 0; |
|
| 163 | - $package_info['is_featured'] = 0; |
|
| 164 | - $package_info['image_limit'] = ''; |
|
| 165 | - $package_info['google_analytics'] = 1; |
|
| 166 | - $package_info['sendtofriend'] = 1; |
|
| 167 | - |
|
| 168 | - /** |
|
| 169 | - * Filter listing package info. |
|
| 170 | - * |
|
| 171 | - * @since 1.0.0 |
|
| 172 | - * @param array $package_info {
|
|
| 173 | - * Attributes of the package_info. |
|
| 174 | - * |
|
| 175 | - * @type int $pid Package ID. Default 0. |
|
| 176 | - * @type int $days Package validity in Days. Default 0. |
|
| 177 | - * @type int $amount Package amount. Default 0. |
|
| 178 | - * @type int $is_featured Is this featured package? Default 0. |
|
| 179 | - * @type string $image_limit Image limit for this package. Default "". |
|
| 180 | - * @type int $google_analytics Add analytics to this package. Default 1. |
|
| 181 | - * @type int $sendtofriend Send to friend. Default 1. |
|
| 182 | - * |
|
| 183 | - * } |
|
| 184 | - * @param object|string $post The post object. |
|
| 185 | - * @param string $post_type The post type. |
|
| 186 | - */ |
|
| 187 | - return (object)apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
|
|
| 160 | + $package_info['pid'] = 0; |
|
| 161 | + $package_info['days'] = 0; |
|
| 162 | + $package_info['amount'] = 0; |
|
| 163 | + $package_info['is_featured'] = 0; |
|
| 164 | + $package_info['image_limit'] = ''; |
|
| 165 | + $package_info['google_analytics'] = 1; |
|
| 166 | + $package_info['sendtofriend'] = 1; |
|
| 167 | + |
|
| 168 | + /** |
|
| 169 | + * Filter listing package info. |
|
| 170 | + * |
|
| 171 | + * @since 1.0.0 |
|
| 172 | + * @param array $package_info {
|
|
| 173 | + * Attributes of the package_info. |
|
| 174 | + * |
|
| 175 | + * @type int $pid Package ID. Default 0. |
|
| 176 | + * @type int $days Package validity in Days. Default 0. |
|
| 177 | + * @type int $amount Package amount. Default 0. |
|
| 178 | + * @type int $is_featured Is this featured package? Default 0. |
|
| 179 | + * @type string $image_limit Image limit for this package. Default "". |
|
| 180 | + * @type int $google_analytics Add analytics to this package. Default 1. |
|
| 181 | + * @type int $sendtofriend Send to friend. Default 1. |
|
| 182 | + * |
|
| 183 | + * } |
|
| 184 | + * @param object|string $post The post object. |
|
| 185 | + * @param string $post_type The post type. |
|
| 186 | + */ |
|
| 187 | + return (object)apply_filters('geodir_post_package_info', $package_info, $post, $post_type);
|
|
| 188 | 188 | |
| 189 | 189 | } |
| 190 | 190 | |
@@ -212,127 +212,127 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | function geodir_send_inquiry($request) |
| 214 | 214 | {
|
| 215 | - global $wpdb; |
|
| 215 | + global $wpdb; |
|
| 216 | 216 | |
| 217 | - // strip slashes from text |
|
| 218 | - $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 217 | + // strip slashes from text |
|
| 218 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 219 | 219 | |
| 220 | - $yourname = $request['inq_name']; |
|
| 221 | - $youremail = $request['inq_email']; |
|
| 222 | - $inq_phone = $request['inq_phone']; |
|
| 223 | - $frnd_comments = $request['inq_msg']; |
|
| 224 | - $pid = $request['pid']; |
|
| 220 | + $yourname = $request['inq_name']; |
|
| 221 | + $youremail = $request['inq_email']; |
|
| 222 | + $inq_phone = $request['inq_phone']; |
|
| 223 | + $frnd_comments = $request['inq_msg']; |
|
| 224 | + $pid = $request['pid']; |
|
| 225 | 225 | |
| 226 | - $author_id = ''; |
|
| 227 | - $post_title = ''; |
|
| 226 | + $author_id = ''; |
|
| 227 | + $post_title = ''; |
|
| 228 | 228 | |
| 229 | - if ($request['pid']) {
|
|
| 229 | + if ($request['pid']) {
|
|
| 230 | 230 | |
| 231 | - $productinfosql = $wpdb->prepare( |
|
| 232 | - "select ID,post_author,post_title from $wpdb->posts where ID =%d", |
|
| 233 | - array($request['pid']) |
|
| 234 | - ); |
|
| 235 | - $productinfo = $wpdb->get_row($productinfosql); |
|
| 231 | + $productinfosql = $wpdb->prepare( |
|
| 232 | + "select ID,post_author,post_title from $wpdb->posts where ID =%d", |
|
| 233 | + array($request['pid']) |
|
| 234 | + ); |
|
| 235 | + $productinfo = $wpdb->get_row($productinfosql); |
|
| 236 | 236 | |
| 237 | - $author_id = $productinfo->post_author; |
|
| 238 | - $post_title = $productinfo->post_title; |
|
| 239 | - } |
|
| 237 | + $author_id = $productinfo->post_author; |
|
| 238 | + $post_title = $productinfo->post_title; |
|
| 239 | + } |
|
| 240 | 240 | |
| 241 | - $post_title = '<a href="' . get_permalink($pid) . '">' . $post_title . '</a>'; |
|
| 241 | + $post_title = '<a href="' . get_permalink($pid) . '">' . $post_title . '</a>'; |
|
| 242 | 242 | |
| 243 | - $user_info = get_userdata($author_id); |
|
| 244 | - $to_email = geodir_get_post_meta($pid, 'geodir_email', true); |
|
| 245 | - $to_name = geodir_get_client_name($author_id); |
|
| 243 | + $user_info = get_userdata($author_id); |
|
| 244 | + $to_email = geodir_get_post_meta($pid, 'geodir_email', true); |
|
| 245 | + $to_name = geodir_get_client_name($author_id); |
|
| 246 | 246 | |
| 247 | - if ($to_email == '') {
|
|
| 248 | - $to_email = get_option('admin_email');
|
|
| 249 | - } |
|
| 247 | + if ($to_email == '') {
|
|
| 248 | + $to_email = get_option('admin_email');
|
|
| 249 | + } |
|
| 250 | 250 | |
| 251 | - /** |
|
| 252 | - * Called after the send enquiry var have been set but before the email has been sent. |
|
| 253 | - * |
|
| 254 | - * @since 1.0.0 |
|
| 255 | - * @param array $request {
|
|
| 256 | - * The submitted form fields as an array. |
|
| 257 | - * |
|
| 258 | - * @type string $sendact Enquiry type. Default "send_inqury". |
|
| 259 | - * @type string $pid Post ID. |
|
| 260 | - * @type string $inq_name Sender name. |
|
| 261 | - * @type string $inq_email Sender mail. |
|
| 262 | - * @type string $inq_phone Sender phone. |
|
| 263 | - * @type string $inq_msg Email message. |
|
| 264 | - * |
|
| 265 | - * } |
|
| 266 | - * @param string $type The form type, default: `Enquiry`. |
|
| 267 | - */ |
|
| 268 | - do_action('geodir_after_send_enquiry', $request, 'Enquiry');
|
|
| 269 | - |
|
| 270 | - $client_message = $frnd_comments; |
|
| 271 | - $client_message .= '<br>' . __('From :', 'geodirectory') . ' ' . $yourname . '<br>' . __('Phone :', 'geodirectory') . ' ' . $inq_phone . '<br>' . __('Email :', 'geodirectory') . ' ' . $youremail . '<br><br>' . __('Sent from', 'geodirectory') . ' - <b><a href="' . trailingslashit(home_url()) . '">' . get_option('blogname') . '</a></b>.';
|
|
| 272 | - /** |
|
| 273 | - * Filter client message text. |
|
| 274 | - * |
|
| 275 | - * @since 1.0.0 |
|
| 276 | - * @param string $client_message Client message text. |
|
| 277 | - */ |
|
| 278 | - $client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
|
|
| 279 | - |
|
| 280 | - /** |
|
| 281 | - * Called before the send enquiry email is sent. |
|
| 282 | - * |
|
| 283 | - * @since 1.0.0 |
|
| 284 | - * @param array $request {
|
|
| 285 | - * The submitted form fields as an array. |
|
| 286 | - * |
|
| 287 | - * @type string $sendact Enquiry type. Default "send_inqury". |
|
| 288 | - * @type string $pid Post ID. |
|
| 289 | - * @type string $inq_name Sender name. |
|
| 290 | - * @type string $inq_email Sender mail. |
|
| 291 | - * @type string $inq_phone Sender phone. |
|
| 292 | - * @type string $inq_msg Email message. |
|
| 293 | - * |
|
| 294 | - * } |
|
| 295 | - */ |
|
| 296 | - do_action('geodir_before_send_enquiry_email', $request);
|
|
| 297 | - if ($to_email) {
|
|
| 298 | - // strip slashes message |
|
| 299 | - $client_message = stripslashes_deep($client_message); |
|
| 300 | - |
|
| 301 | - geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']);//To client email |
|
| 302 | - } |
|
| 251 | + /** |
|
| 252 | + * Called after the send enquiry var have been set but before the email has been sent. |
|
| 253 | + * |
|
| 254 | + * @since 1.0.0 |
|
| 255 | + * @param array $request {
|
|
| 256 | + * The submitted form fields as an array. |
|
| 257 | + * |
|
| 258 | + * @type string $sendact Enquiry type. Default "send_inqury". |
|
| 259 | + * @type string $pid Post ID. |
|
| 260 | + * @type string $inq_name Sender name. |
|
| 261 | + * @type string $inq_email Sender mail. |
|
| 262 | + * @type string $inq_phone Sender phone. |
|
| 263 | + * @type string $inq_msg Email message. |
|
| 264 | + * |
|
| 265 | + * } |
|
| 266 | + * @param string $type The form type, default: `Enquiry`. |
|
| 267 | + */ |
|
| 268 | + do_action('geodir_after_send_enquiry', $request, 'Enquiry');
|
|
| 303 | 269 | |
| 304 | - /** |
|
| 305 | - * Called after the send enquiry email is sent. |
|
| 306 | - * |
|
| 307 | - * @since 1.0.0 |
|
| 308 | - * @param array $request {
|
|
| 309 | - * The submitted form fields as an array. |
|
| 310 | - * |
|
| 311 | - * @type string $sendact Enquiry type. Default "send_inqury". |
|
| 312 | - * @type string $pid Post ID. |
|
| 313 | - * @type string $inq_name Sender name. |
|
| 314 | - * @type string $inq_email Sender mail. |
|
| 315 | - * @type string $inq_phone Sender phone. |
|
| 316 | - * @type string $inq_msg Email message. |
|
| 317 | - * |
|
| 318 | - * } |
|
| 319 | - */ |
|
| 320 | - do_action('geodir_after_send_enquiry_email', $request);
|
|
| 321 | - $url = get_permalink($pid); |
|
| 322 | - if (strstr($url, '?')) {
|
|
| 323 | - $url = $url . "&send_inquiry=success"; |
|
| 324 | - } else {
|
|
| 325 | - $url = $url . "?send_inquiry=success"; |
|
| 326 | - } |
|
| 327 | - /** |
|
| 328 | - * Filter redirect url after the send enquiry email is sent. |
|
| 329 | - * |
|
| 330 | - * @since 1.0.0 |
|
| 331 | - * @param string $url Redirect url. |
|
| 332 | - */ |
|
| 333 | - $url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
|
|
| 334 | - wp_redirect($url); |
|
| 335 | - exit; |
|
| 270 | + $client_message = $frnd_comments; |
|
| 271 | + $client_message .= '<br>' . __('From :', 'geodirectory') . ' ' . $yourname . '<br>' . __('Phone :', 'geodirectory') . ' ' . $inq_phone . '<br>' . __('Email :', 'geodirectory') . ' ' . $youremail . '<br><br>' . __('Sent from', 'geodirectory') . ' - <b><a href="' . trailingslashit(home_url()) . '">' . get_option('blogname') . '</a></b>.';
|
|
| 272 | + /** |
|
| 273 | + * Filter client message text. |
|
| 274 | + * |
|
| 275 | + * @since 1.0.0 |
|
| 276 | + * @param string $client_message Client message text. |
|
| 277 | + */ |
|
| 278 | + $client_message = apply_filters('geodir_inquiry_email_msg', $client_message);
|
|
| 279 | + |
|
| 280 | + /** |
|
| 281 | + * Called before the send enquiry email is sent. |
|
| 282 | + * |
|
| 283 | + * @since 1.0.0 |
|
| 284 | + * @param array $request {
|
|
| 285 | + * The submitted form fields as an array. |
|
| 286 | + * |
|
| 287 | + * @type string $sendact Enquiry type. Default "send_inqury". |
|
| 288 | + * @type string $pid Post ID. |
|
| 289 | + * @type string $inq_name Sender name. |
|
| 290 | + * @type string $inq_email Sender mail. |
|
| 291 | + * @type string $inq_phone Sender phone. |
|
| 292 | + * @type string $inq_msg Email message. |
|
| 293 | + * |
|
| 294 | + * } |
|
| 295 | + */ |
|
| 296 | + do_action('geodir_before_send_enquiry_email', $request);
|
|
| 297 | + if ($to_email) {
|
|
| 298 | + // strip slashes message |
|
| 299 | + $client_message = stripslashes_deep($client_message); |
|
| 300 | + |
|
| 301 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, '', $client_message, $extra = '', 'send_enquiry', $request['pid']);//To client email |
|
| 302 | + } |
|
| 303 | + |
|
| 304 | + /** |
|
| 305 | + * Called after the send enquiry email is sent. |
|
| 306 | + * |
|
| 307 | + * @since 1.0.0 |
|
| 308 | + * @param array $request {
|
|
| 309 | + * The submitted form fields as an array. |
|
| 310 | + * |
|
| 311 | + * @type string $sendact Enquiry type. Default "send_inqury". |
|
| 312 | + * @type string $pid Post ID. |
|
| 313 | + * @type string $inq_name Sender name. |
|
| 314 | + * @type string $inq_email Sender mail. |
|
| 315 | + * @type string $inq_phone Sender phone. |
|
| 316 | + * @type string $inq_msg Email message. |
|
| 317 | + * |
|
| 318 | + * } |
|
| 319 | + */ |
|
| 320 | + do_action('geodir_after_send_enquiry_email', $request);
|
|
| 321 | + $url = get_permalink($pid); |
|
| 322 | + if (strstr($url, '?')) {
|
|
| 323 | + $url = $url . "&send_inquiry=success"; |
|
| 324 | + } else {
|
|
| 325 | + $url = $url . "?send_inquiry=success"; |
|
| 326 | + } |
|
| 327 | + /** |
|
| 328 | + * Filter redirect url after the send enquiry email is sent. |
|
| 329 | + * |
|
| 330 | + * @since 1.0.0 |
|
| 331 | + * @param string $url Redirect url. |
|
| 332 | + */ |
|
| 333 | + $url = apply_filters('geodir_send_enquiry_after_submit_redirect', $url);
|
|
| 334 | + wp_redirect($url); |
|
| 335 | + exit; |
|
| 336 | 336 | |
| 337 | 337 | } |
| 338 | 338 | |
@@ -361,85 +361,85 @@ discard block |
||
| 361 | 361 | */ |
| 362 | 362 | function geodir_send_friend($request) |
| 363 | 363 | {
|
| 364 | - global $wpdb; |
|
| 365 | - |
|
| 366 | - // strip slashes from text |
|
| 367 | - $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 368 | - |
|
| 369 | - $yourname = $request['yourname']; |
|
| 370 | - $youremail = $request['youremail']; |
|
| 371 | - $frnd_subject = $request['frnd_subject']; |
|
| 372 | - $frnd_comments = $request['frnd_comments']; |
|
| 373 | - $pid = $request['pid']; |
|
| 374 | - $to_email = $request['to_email']; |
|
| 375 | - $to_name = $request['to_name']; |
|
| 376 | - if ($request['pid']) {
|
|
| 377 | - $productinfosql = $wpdb->prepare( |
|
| 378 | - "select ID,post_title from $wpdb->posts where ID =%d", |
|
| 379 | - array($request['pid']) |
|
| 380 | - ); |
|
| 381 | - $productinfo = $wpdb->get_results($productinfosql); |
|
| 382 | - foreach ($productinfo as $productinfoObj) {
|
|
| 383 | - $post_title = $productinfoObj->post_title; |
|
| 384 | - } |
|
| 385 | - } |
|
| 364 | + global $wpdb; |
|
| 365 | + |
|
| 366 | + // strip slashes from text |
|
| 367 | + $request = !empty($request) ? stripslashes_deep($request) : $request; |
|
| 368 | + |
|
| 369 | + $yourname = $request['yourname']; |
|
| 370 | + $youremail = $request['youremail']; |
|
| 371 | + $frnd_subject = $request['frnd_subject']; |
|
| 372 | + $frnd_comments = $request['frnd_comments']; |
|
| 373 | + $pid = $request['pid']; |
|
| 374 | + $to_email = $request['to_email']; |
|
| 375 | + $to_name = $request['to_name']; |
|
| 376 | + if ($request['pid']) {
|
|
| 377 | + $productinfosql = $wpdb->prepare( |
|
| 378 | + "select ID,post_title from $wpdb->posts where ID =%d", |
|
| 379 | + array($request['pid']) |
|
| 380 | + ); |
|
| 381 | + $productinfo = $wpdb->get_results($productinfosql); |
|
| 382 | + foreach ($productinfo as $productinfoObj) {
|
|
| 383 | + $post_title = $productinfoObj->post_title; |
|
| 384 | + } |
|
| 385 | + } |
|
| 386 | 386 | |
| 387 | - /** |
|
| 388 | - * Called before the send to friend email is sent. |
|
| 389 | - * |
|
| 390 | - * @since 1.0.0 |
|
| 391 | - * @param array $request {
|
|
| 392 | - * The submitted form fields as an array. |
|
| 393 | - * |
|
| 394 | - * @type string $sendact Enquiry type. Default "email_frnd". |
|
| 395 | - * @type string $pid Post ID. |
|
| 396 | - * @type string $to_name Friend name. |
|
| 397 | - * @type string $to_email Friend email. |
|
| 398 | - * @type string $yourname Sender name. |
|
| 399 | - * @type string $youremail Sender email. |
|
| 400 | - * @type string $frnd_subject Email subject. |
|
| 401 | - * @type string $frnd_comments Email Message. |
|
| 402 | - * |
|
| 403 | - * } |
|
| 404 | - */ |
|
| 405 | - do_action('geodir_before_send_to_friend_email', $request);
|
|
| 406 | - geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']);//To client email |
|
| 407 | - |
|
| 408 | - /** |
|
| 409 | - * Called after the send to friend email is sent. |
|
| 410 | - * |
|
| 411 | - * @since 1.0.0 |
|
| 412 | - * @param array $request {
|
|
| 413 | - * The submitted form fields as an array. |
|
| 414 | - * |
|
| 415 | - * @type string $sendact Enquiry type. Default "email_frnd". |
|
| 416 | - * @type string $pid Post ID. |
|
| 417 | - * @type string $to_name Friend name. |
|
| 418 | - * @type string $to_email Friend email. |
|
| 419 | - * @type string $yourname Sender name. |
|
| 420 | - * @type string $youremail Sender email. |
|
| 421 | - * @type string $frnd_subject Email subject. |
|
| 422 | - * @type string $frnd_comments Email Message. |
|
| 423 | - * |
|
| 424 | - * } |
|
| 425 | - */ |
|
| 426 | - do_action('geodir_after_send_to_friend_email', $request);
|
|
| 427 | - |
|
| 428 | - $url = get_permalink($pid); |
|
| 429 | - if (strstr($url, '?')) {
|
|
| 430 | - $url = $url . "&sendtofrnd=success"; |
|
| 431 | - } else {
|
|
| 432 | - $url = $url . "?sendtofrnd=success"; |
|
| 433 | - } |
|
| 434 | - /** |
|
| 435 | - * Filter redirect url after the send to friend email is sent. |
|
| 436 | - * |
|
| 437 | - * @since 1.0.0 |
|
| 438 | - * @param string $url Redirect url. |
|
| 439 | - */ |
|
| 440 | - $url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
|
|
| 441 | - wp_redirect($url); |
|
| 442 | - exit; |
|
| 387 | + /** |
|
| 388 | + * Called before the send to friend email is sent. |
|
| 389 | + * |
|
| 390 | + * @since 1.0.0 |
|
| 391 | + * @param array $request {
|
|
| 392 | + * The submitted form fields as an array. |
|
| 393 | + * |
|
| 394 | + * @type string $sendact Enquiry type. Default "email_frnd". |
|
| 395 | + * @type string $pid Post ID. |
|
| 396 | + * @type string $to_name Friend name. |
|
| 397 | + * @type string $to_email Friend email. |
|
| 398 | + * @type string $yourname Sender name. |
|
| 399 | + * @type string $youremail Sender email. |
|
| 400 | + * @type string $frnd_subject Email subject. |
|
| 401 | + * @type string $frnd_comments Email Message. |
|
| 402 | + * |
|
| 403 | + * } |
|
| 404 | + */ |
|
| 405 | + do_action('geodir_before_send_to_friend_email', $request);
|
|
| 406 | + geodir_sendEmail($youremail, $yourname, $to_email, $to_name, $frnd_subject, $frnd_comments, $extra = '', 'send_friend', $request['pid']);//To client email |
|
| 407 | + |
|
| 408 | + /** |
|
| 409 | + * Called after the send to friend email is sent. |
|
| 410 | + * |
|
| 411 | + * @since 1.0.0 |
|
| 412 | + * @param array $request {
|
|
| 413 | + * The submitted form fields as an array. |
|
| 414 | + * |
|
| 415 | + * @type string $sendact Enquiry type. Default "email_frnd". |
|
| 416 | + * @type string $pid Post ID. |
|
| 417 | + * @type string $to_name Friend name. |
|
| 418 | + * @type string $to_email Friend email. |
|
| 419 | + * @type string $yourname Sender name. |
|
| 420 | + * @type string $youremail Sender email. |
|
| 421 | + * @type string $frnd_subject Email subject. |
|
| 422 | + * @type string $frnd_comments Email Message. |
|
| 423 | + * |
|
| 424 | + * } |
|
| 425 | + */ |
|
| 426 | + do_action('geodir_after_send_to_friend_email', $request);
|
|
| 427 | + |
|
| 428 | + $url = get_permalink($pid); |
|
| 429 | + if (strstr($url, '?')) {
|
|
| 430 | + $url = $url . "&sendtofrnd=success"; |
|
| 431 | + } else {
|
|
| 432 | + $url = $url . "?sendtofrnd=success"; |
|
| 433 | + } |
|
| 434 | + /** |
|
| 435 | + * Filter redirect url after the send to friend email is sent. |
|
| 436 | + * |
|
| 437 | + * @since 1.0.0 |
|
| 438 | + * @param string $url Redirect url. |
|
| 439 | + */ |
|
| 440 | + $url = apply_filters('geodir_send_to_friend_after_submit_redirect', $url);
|
|
| 441 | + wp_redirect($url); |
|
| 442 | + exit; |
|
| 443 | 443 | } |
| 444 | 444 | |
| 445 | 445 | /** |
@@ -453,28 +453,28 @@ discard block |
||
| 453 | 453 | */ |
| 454 | 454 | function geodir_before_tab_content($hash_key) |
| 455 | 455 | {
|
| 456 | - switch ($hash_key) {
|
|
| 457 | - case 'post_info' : |
|
| 458 | - echo '<div class="geodir-company_info field-group">'; |
|
| 459 | - break; |
|
| 460 | - case 'post_images' : |
|
| 461 | - /** |
|
| 462 | - * Filter post gallery HTML id. |
|
| 463 | - * |
|
| 464 | - * @since 1.0.0 |
|
| 465 | - */ |
|
| 466 | - echo ' <div id="' . apply_filters('geodir_post_gallery_id', 'geodir-post-gallery') . '" class="clearfix" >';
|
|
| 467 | - break; |
|
| 468 | - case 'reviews' : |
|
| 469 | - echo '<div id="reviews-wrap" class="clearfix"> '; |
|
| 470 | - break; |
|
| 471 | - case 'post_video': |
|
| 472 | - echo ' <div id="post_video-wrap" class="clearfix">'; |
|
| 473 | - break; |
|
| 474 | - case 'special_offers': |
|
| 475 | - echo '<div id="special_offers-wrap" class="clearfix">'; |
|
| 476 | - break; |
|
| 477 | - } |
|
| 456 | + switch ($hash_key) {
|
|
| 457 | + case 'post_info' : |
|
| 458 | + echo '<div class="geodir-company_info field-group">'; |
|
| 459 | + break; |
|
| 460 | + case 'post_images' : |
|
| 461 | + /** |
|
| 462 | + * Filter post gallery HTML id. |
|
| 463 | + * |
|
| 464 | + * @since 1.0.0 |
|
| 465 | + */ |
|
| 466 | + echo ' <div id="' . apply_filters('geodir_post_gallery_id', 'geodir-post-gallery') . '" class="clearfix" >';
|
|
| 467 | + break; |
|
| 468 | + case 'reviews' : |
|
| 469 | + echo '<div id="reviews-wrap" class="clearfix"> '; |
|
| 470 | + break; |
|
| 471 | + case 'post_video': |
|
| 472 | + echo ' <div id="post_video-wrap" class="clearfix">'; |
|
| 473 | + break; |
|
| 474 | + case 'special_offers': |
|
| 475 | + echo '<div id="special_offers-wrap" class="clearfix">'; |
|
| 476 | + break; |
|
| 477 | + } |
|
| 478 | 478 | } |
| 479 | 479 | |
| 480 | 480 | /** |
@@ -488,23 +488,23 @@ discard block |
||
| 488 | 488 | */ |
| 489 | 489 | function geodir_after_tab_content($hash_key) |
| 490 | 490 | {
|
| 491 | - switch ($hash_key) {
|
|
| 492 | - case 'post_info' : |
|
| 493 | - echo '</div>'; |
|
| 494 | - break; |
|
| 495 | - case 'post_images' : |
|
| 496 | - echo '</div>'; |
|
| 497 | - break; |
|
| 498 | - case 'reviews' : |
|
| 499 | - echo '</div>'; |
|
| 500 | - break; |
|
| 501 | - case 'post_video': |
|
| 502 | - echo '</div>'; |
|
| 503 | - break; |
|
| 504 | - case 'special_offers': |
|
| 505 | - echo '</div>'; |
|
| 506 | - break; |
|
| 507 | - } |
|
| 491 | + switch ($hash_key) {
|
|
| 492 | + case 'post_info' : |
|
| 493 | + echo '</div>'; |
|
| 494 | + break; |
|
| 495 | + case 'post_images' : |
|
| 496 | + echo '</div>'; |
|
| 497 | + break; |
|
| 498 | + case 'reviews' : |
|
| 499 | + echo '</div>'; |
|
| 500 | + break; |
|
| 501 | + case 'post_video': |
|
| 502 | + echo '</div>'; |
|
| 503 | + break; |
|
| 504 | + case 'special_offers': |
|
| 505 | + echo '</div>'; |
|
| 506 | + break; |
|
| 507 | + } |
|
| 508 | 508 | } |
| 509 | 509 | |
| 510 | 510 | |
@@ -520,21 +520,21 @@ discard block |
||
| 520 | 520 | function geodir_get_posts_default_sort($post_type) |
| 521 | 521 | {
|
| 522 | 522 | |
| 523 | - global $wpdb; |
|
| 523 | + global $wpdb; |
|
| 524 | 524 | |
| 525 | - if ($post_type != '') {
|
|
| 525 | + if ($post_type != '') {
|
|
| 526 | 526 | |
| 527 | - $all_postypes = geodir_get_posttypes(); |
|
| 527 | + $all_postypes = geodir_get_posttypes(); |
|
| 528 | 528 | |
| 529 | - if (!in_array($post_type, $all_postypes)) |
|
| 530 | - return false; |
|
| 529 | + if (!in_array($post_type, $all_postypes)) |
|
| 530 | + return false; |
|
| 531 | 531 | |
| 532 | - $sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type= %s and is_active=%d and is_default=%d", array($post_type, 1, 1)));
|
|
| 532 | + $sort_field_info = $wpdb->get_var($wpdb->prepare("select default_order from " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " where post_type= %s and is_active=%d and is_default=%d", array($post_type, 1, 1)));
|
|
| 533 | 533 | |
| 534 | - if (!empty($sort_field_info)) |
|
| 535 | - return $sort_field_info; |
|
| 534 | + if (!empty($sort_field_info)) |
|
| 535 | + return $sort_field_info; |
|
| 536 | 536 | |
| 537 | - } |
|
| 537 | + } |
|
| 538 | 538 | |
| 539 | 539 | } |
| 540 | 540 | |
@@ -549,24 +549,24 @@ discard block |
||
| 549 | 549 | * @return bool|mixed|void Returns sort results, when the post type is valid. Otherwise returns false. |
| 550 | 550 | */ |
| 551 | 551 | function geodir_get_sort_options($post_type) {
|
| 552 | - global $wpdb; |
|
| 553 | - |
|
| 554 | - if ($post_type != '') {
|
|
| 555 | - $all_postypes = geodir_get_posttypes(); |
|
| 556 | - |
|
| 557 | - if (!in_array($post_type, $all_postypes)) |
|
| 558 | - return false; |
|
| 559 | - |
|
| 560 | - $sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array($post_type, 1)));
|
|
| 561 | - /** |
|
| 562 | - * Filter post sort options. |
|
| 563 | - * |
|
| 564 | - * @since 1.0.0 |
|
| 565 | - * @param array $sort_field_info Unfiltered sort field array. |
|
| 566 | - * @param string $post_type Post type. |
|
| 567 | - */ |
|
| 568 | - return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
|
|
| 569 | - } |
|
| 552 | + global $wpdb; |
|
| 553 | + |
|
| 554 | + if ($post_type != '') {
|
|
| 555 | + $all_postypes = geodir_get_posttypes(); |
|
| 556 | + |
|
| 557 | + if (!in_array($post_type, $all_postypes)) |
|
| 558 | + return false; |
|
| 559 | + |
|
| 560 | + $sort_field_info = $wpdb->get_results($wpdb->prepare("SELECT * FROM " . GEODIR_CUSTOM_SORT_FIELDS_TABLE . " WHERE post_type=%s AND is_active=%d AND (sort_asc=1 || sort_desc=1 || field_type='random') AND field_type != 'address' ORDER BY sort_order ASC", array($post_type, 1)));
|
|
| 561 | + /** |
|
| 562 | + * Filter post sort options. |
|
| 563 | + * |
|
| 564 | + * @since 1.0.0 |
|
| 565 | + * @param array $sort_field_info Unfiltered sort field array. |
|
| 566 | + * @param string $post_type Post type. |
|
| 567 | + */ |
|
| 568 | + return apply_filters('geodir_get_sort_options', $sort_field_info, $post_type);
|
|
| 569 | + } |
|
| 570 | 570 | |
| 571 | 571 | } |
| 572 | 572 | |
@@ -580,7 +580,7 @@ discard block |
||
| 580 | 580 | */ |
| 581 | 581 | function geodir_display_sort_options() |
| 582 | 582 | {
|
| 583 | - global $wp_query; |
|
| 583 | + global $wp_query; |
|
| 584 | 584 | |
| 585 | 585 | /** |
| 586 | 586 | * On search pages there should be no sort options, sorting is done by search criteria. |
@@ -591,57 +591,57 @@ discard block |
||
| 591 | 591 | return; |
| 592 | 592 | } |
| 593 | 593 | |
| 594 | - $sort_by = ''; |
|
| 594 | + $sort_by = ''; |
|
| 595 | 595 | |
| 596 | - if (isset($_REQUEST['sort_by'])) $sort_by = $_REQUEST['sort_by']; |
|
| 596 | + if (isset($_REQUEST['sort_by'])) $sort_by = $_REQUEST['sort_by']; |
|
| 597 | 597 | |
| 598 | - $gd_post_type = geodir_get_current_posttype(); |
|
| 598 | + $gd_post_type = geodir_get_current_posttype(); |
|
| 599 | 599 | |
| 600 | - $sort_options = geodir_get_sort_options($gd_post_type); |
|
| 600 | + $sort_options = geodir_get_sort_options($gd_post_type); |
|
| 601 | 601 | |
| 602 | 602 | |
| 603 | - $sort_field_options = ''; |
|
| 603 | + $sort_field_options = ''; |
|
| 604 | 604 | |
| 605 | - if (!empty($sort_options)) {
|
|
| 606 | - foreach ($sort_options as $sort) {
|
|
| 605 | + if (!empty($sort_options)) {
|
|
| 606 | + foreach ($sort_options as $sort) {
|
|
| 607 | 607 | $sort = stripslashes_deep($sort); // strip slashes |
| 608 | 608 | |
| 609 | - $label = __($sort->site_title, 'geodirectory'); |
|
| 609 | + $label = __($sort->site_title, 'geodirectory'); |
|
| 610 | 610 | |
| 611 | - if ($sort->field_type == 'random') {
|
|
| 612 | - $key = $sort->field_type; |
|
| 613 | - ($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 614 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
|
|
| 615 | - } |
|
| 611 | + if ($sort->field_type == 'random') {
|
|
| 612 | + $key = $sort->field_type; |
|
| 613 | + ($sort_by == $key || ($sort->is_default == '1' && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 614 | + $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
|
|
| 615 | + } |
|
| 616 | 616 | |
| 617 | - if ($sort->htmlvar_name == 'comment_count') {
|
|
| 618 | - $sort->htmlvar_name = 'rating_count'; |
|
| 619 | - } |
|
| 617 | + if ($sort->htmlvar_name == 'comment_count') {
|
|
| 618 | + $sort->htmlvar_name = 'rating_count'; |
|
| 619 | + } |
|
| 620 | 620 | |
| 621 | - if ($sort->sort_asc) {
|
|
| 622 | - $key = $sort->htmlvar_name . '_asc'; |
|
| 623 | - $label = $sort->site_title; |
|
| 624 | - if ($sort->asc_title) |
|
| 625 | - $label = $sort->asc_title; |
|
| 626 | - ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 627 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
|
|
| 628 | - } |
|
| 621 | + if ($sort->sort_asc) {
|
|
| 622 | + $key = $sort->htmlvar_name . '_asc'; |
|
| 623 | + $label = $sort->site_title; |
|
| 624 | + if ($sort->asc_title) |
|
| 625 | + $label = $sort->asc_title; |
|
| 626 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 627 | + $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
|
|
| 628 | + } |
|
| 629 | 629 | |
| 630 | - if ($sort->sort_desc) {
|
|
| 631 | - $key = $sort->htmlvar_name . '_desc'; |
|
| 632 | - $label = $sort->site_title; |
|
| 633 | - if ($sort->desc_title) |
|
| 634 | - $label = $sort->desc_title; |
|
| 635 | - ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 636 | - $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
|
|
| 637 | - } |
|
| 630 | + if ($sort->sort_desc) {
|
|
| 631 | + $key = $sort->htmlvar_name . '_desc'; |
|
| 632 | + $label = $sort->site_title; |
|
| 633 | + if ($sort->desc_title) |
|
| 634 | + $label = $sort->desc_title; |
|
| 635 | + ($sort_by == $key || ($sort->is_default == '1' && $sort->default_order == $key && !isset($_REQUEST['sort_by']))) ? $selected = 'selected="selected"' : $selected = ''; |
|
| 636 | + $sort_field_options .= '<option ' . $selected . ' value="' . esc_url( add_query_arg('sort_by', $key) ) . '">' . __($label, 'geodirectory') . '</option>';
|
|
| 637 | + } |
|
| 638 | 638 | |
| 639 | - } |
|
| 640 | - } |
|
| 639 | + } |
|
| 640 | + } |
|
| 641 | 641 | |
| 642 | - if ($sort_field_options != '') {
|
|
| 642 | + if ($sort_field_options != '') {
|
|
| 643 | 643 | |
| 644 | - ?> |
|
| 644 | + ?> |
|
| 645 | 645 | |
| 646 | 646 | <div class="geodir-tax-sort"> |
| 647 | 647 | |
@@ -650,14 +650,14 @@ discard block |
||
| 650 | 650 | <option |
| 651 | 651 | value="<?php echo esc_url( add_query_arg('sort_by', '') );?>" <?php if ($sort_by == '') echo 'selected="selected"';?>><?php _e('Sort By', 'geodirectory');?></option><?php
|
| 652 | 652 | |
| 653 | - echo $sort_field_options;?> |
|
| 653 | + echo $sort_field_options;?> |
|
| 654 | 654 | |
| 655 | 655 | </select> |
| 656 | 656 | |
| 657 | 657 | </div> |
| 658 | 658 | <?php |
| 659 | 659 | |
| 660 | - } |
|
| 660 | + } |
|
| 661 | 661 | |
| 662 | 662 | } |
| 663 | 663 | |
@@ -677,10 +677,10 @@ discard block |
||
| 677 | 677 | function geodir_advance_customfields_heading($title, $field_type) |
| 678 | 678 | {
|
| 679 | 679 | |
| 680 | - if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
|
|
| 681 | - $title = ''; |
|
| 682 | - } |
|
| 683 | - return $title; |
|
| 680 | + if (in_array($field_type, array('multiselect', 'textarea', 'taxonomy'))) {
|
|
| 681 | + $title = ''; |
|
| 682 | + } |
|
| 683 | + return $title; |
|
| 684 | 684 | } |
| 685 | 685 | |
| 686 | 686 | |
@@ -697,69 +697,69 @@ discard block |
||
| 697 | 697 | * @return string Returns related posts html. |
| 698 | 698 | */ |
| 699 | 699 | function geodir_related_posts_display($request) {
|
| 700 | - if (!empty($request)) {
|
|
| 701 | - $before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : ''; |
|
| 702 | - $after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : ''; |
|
| 703 | - |
|
| 704 | - $title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
|
|
| 705 | - $post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5'; |
|
| 706 | - $relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category'; |
|
| 707 | - $layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf'; |
|
| 708 | - $add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0'; |
|
| 709 | - $listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : ''; |
|
| 710 | - $list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest'; |
|
| 711 | - $character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : ''; |
|
| 712 | - |
|
| 713 | - global $wpdb, $post, $gd_session; |
|
| 714 | - $origi_post = $post; |
|
| 715 | - $post_type = ''; |
|
| 716 | - $post_id = ''; |
|
| 717 | - $category_taxonomy = ''; |
|
| 718 | - $tax_field = 'id'; |
|
| 719 | - $category = array(); |
|
| 720 | - |
|
| 721 | - if (isset($_REQUEST['backandedit'])) {
|
|
| 722 | - $post = (object)$gd_session->get('listing');
|
|
| 723 | - $post_type = $post->listing_type; |
|
| 724 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 725 | - $post_id = $_REQUEST['pid']; |
|
| 726 | - } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 727 | - $post = geodir_get_post_info($_REQUEST['pid']); |
|
| 728 | - $post_type = $post->post_type; |
|
| 729 | - $post_id = $_REQUEST['pid']; |
|
| 730 | - } elseif (isset($post->post_type) && $post->post_type != '') {
|
|
| 731 | - $post_type = $post->post_type; |
|
| 732 | - $post_id = $post->ID; |
|
| 733 | - } |
|
| 700 | + if (!empty($request)) {
|
|
| 701 | + $before_title = (isset($request['before_title']) && !empty($request['before_title'])) ? $request['before_title'] : ''; |
|
| 702 | + $after_title = (isset($request['after_title']) && !empty($request['after_title'])) ? $request['after_title'] : ''; |
|
| 703 | + |
|
| 704 | + $title = (isset($request['title']) && !empty($request['title'])) ? $request['title'] : __('Related Listings', 'geodirectory');
|
|
| 705 | + $post_number = (isset($request['post_number']) && !empty($request['post_number'])) ? $request['post_number'] : '5'; |
|
| 706 | + $relate_to = (isset($request['relate_to']) && !empty($request['relate_to'])) ? $request['relate_to'] : 'category'; |
|
| 707 | + $layout = (isset($request['layout']) && !empty($request['layout'])) ? $request['layout'] : 'gridview_onehalf'; |
|
| 708 | + $add_location_filter = (isset($request['add_location_filter']) && !empty($request['add_location_filter'])) ? $request['add_location_filter'] : '0'; |
|
| 709 | + $listing_width = (isset($request['listing_width']) && !empty($request['listing_width'])) ? $request['listing_width'] : ''; |
|
| 710 | + $list_sort = (isset($request['list_sort']) && !empty($request['list_sort'])) ? $request['list_sort'] : 'latest'; |
|
| 711 | + $character_count = (isset($request['character_count']) && !empty($request['character_count'])) ? $request['character_count'] : ''; |
|
| 712 | + |
|
| 713 | + global $wpdb, $post, $gd_session; |
|
| 714 | + $origi_post = $post; |
|
| 715 | + $post_type = ''; |
|
| 716 | + $post_id = ''; |
|
| 717 | + $category_taxonomy = ''; |
|
| 718 | + $tax_field = 'id'; |
|
| 719 | + $category = array(); |
|
| 720 | + |
|
| 721 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 722 | + $post = (object)$gd_session->get('listing');
|
|
| 723 | + $post_type = $post->listing_type; |
|
| 724 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 725 | + $post_id = $_REQUEST['pid']; |
|
| 726 | + } elseif (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 727 | + $post = geodir_get_post_info($_REQUEST['pid']); |
|
| 728 | + $post_type = $post->post_type; |
|
| 729 | + $post_id = $_REQUEST['pid']; |
|
| 730 | + } elseif (isset($post->post_type) && $post->post_type != '') {
|
|
| 731 | + $post_type = $post->post_type; |
|
| 732 | + $post_id = $post->ID; |
|
| 733 | + } |
|
| 734 | 734 | |
| 735 | - if ($relate_to == 'category') {
|
|
| 735 | + if ($relate_to == 'category') {
|
|
| 736 | 736 | |
| 737 | - $category_taxonomy = $post_type . $relate_to; |
|
| 738 | - if (isset($post->$category_taxonomy) && $post->$category_taxonomy != '') |
|
| 739 | - $category = explode(',', trim($post->$category_taxonomy, ','));
|
|
| 737 | + $category_taxonomy = $post_type . $relate_to; |
|
| 738 | + if (isset($post->$category_taxonomy) && $post->$category_taxonomy != '') |
|
| 739 | + $category = explode(',', trim($post->$category_taxonomy, ','));
|
|
| 740 | 740 | |
| 741 | - } elseif ($relate_to == 'tags') {
|
|
| 741 | + } elseif ($relate_to == 'tags') {
|
|
| 742 | 742 | |
| 743 | - $category_taxonomy = $post_type . '_' . $relate_to; |
|
| 744 | - if ($post->post_tags != '') |
|
| 745 | - $category = explode(',', trim($post->post_tags, ','));
|
|
| 746 | - $tax_field = 'name'; |
|
| 747 | - } |
|
| 743 | + $category_taxonomy = $post_type . '_' . $relate_to; |
|
| 744 | + if ($post->post_tags != '') |
|
| 745 | + $category = explode(',', trim($post->post_tags, ','));
|
|
| 746 | + $tax_field = 'name'; |
|
| 747 | + } |
|
| 748 | 748 | |
| 749 | - /* --- return false in invalid request --- */ |
|
| 750 | - if (empty($category)) |
|
| 751 | - return false; |
|
| 749 | + /* --- return false in invalid request --- */ |
|
| 750 | + if (empty($category)) |
|
| 751 | + return false; |
|
| 752 | 752 | |
| 753 | - $all_postypes = geodir_get_posttypes(); |
|
| 753 | + $all_postypes = geodir_get_posttypes(); |
|
| 754 | 754 | |
| 755 | - if (!in_array($post_type, $all_postypes)) |
|
| 756 | - return false; |
|
| 755 | + if (!in_array($post_type, $all_postypes)) |
|
| 756 | + return false; |
|
| 757 | 757 | |
| 758 | - /* --- return false in invalid request --- */ |
|
| 758 | + /* --- return false in invalid request --- */ |
|
| 759 | 759 | |
| 760 | - $location_url = ''; |
|
| 761 | - if ($add_location_filter != '0') {
|
|
| 762 | - $location_url = array(); |
|
| 760 | + $location_url = ''; |
|
| 761 | + if ($add_location_filter != '0') {
|
|
| 762 | + $location_url = array(); |
|
| 763 | 763 | $geodir_show_location_url = get_option('geodir_show_location_url');
|
| 764 | 764 | |
| 765 | 765 | $gd_city = get_query_var('gd_city');
|
@@ -767,13 +767,13 @@ discard block |
||
| 767 | 767 | if ($gd_city) {
|
| 768 | 768 | $gd_country = get_query_var('gd_country');
|
| 769 | 769 | $gd_region = get_query_var('gd_region');
|
| 770 | - } else {
|
|
| 771 | - $location = geodir_get_default_location(); |
|
| 770 | + } else {
|
|
| 771 | + $location = geodir_get_default_location(); |
|
| 772 | 772 | |
| 773 | 773 | $gd_country = isset($location->country_slug) ? $location->country_slug : ''; |
| 774 | 774 | $gd_region = isset($location->region_slug) ? $location->region_slug : ''; |
| 775 | 775 | $gd_city = isset($location->city_slug) ? $location->city_slug : ''; |
| 776 | - } |
|
| 776 | + } |
|
| 777 | 777 | |
| 778 | 778 | if ($geodir_show_location_url == 'all') {
|
| 779 | 779 | $location_url[] = $gd_country; |
@@ -786,92 +786,92 @@ discard block |
||
| 786 | 786 | |
| 787 | 787 | $location_url[] = $gd_city; |
| 788 | 788 | |
| 789 | - $location_url = implode('/', $location_url);
|
|
| 790 | - } |
|
| 789 | + $location_url = implode('/', $location_url);
|
|
| 790 | + } |
|
| 791 | 791 | |
| 792 | 792 | |
| 793 | - if (!empty($category)) {
|
|
| 794 | - global $geodir_add_location_url; |
|
| 795 | - $geodir_add_location_url = '0'; |
|
| 796 | - if ($add_location_filter != '0') {
|
|
| 797 | - $geodir_add_location_url = '1'; |
|
| 798 | - } |
|
| 799 | - $viewall_url = get_term_link((int)$category[0], $post_type . $category_taxonomy); |
|
| 800 | - $geodir_add_location_url = NULL; |
|
| 801 | - } |
|
| 802 | - ob_start(); |
|
| 803 | - ?> |
|
| 793 | + if (!empty($category)) {
|
|
| 794 | + global $geodir_add_location_url; |
|
| 795 | + $geodir_add_location_url = '0'; |
|
| 796 | + if ($add_location_filter != '0') {
|
|
| 797 | + $geodir_add_location_url = '1'; |
|
| 798 | + } |
|
| 799 | + $viewall_url = get_term_link((int)$category[0], $post_type . $category_taxonomy); |
|
| 800 | + $geodir_add_location_url = NULL; |
|
| 801 | + } |
|
| 802 | + ob_start(); |
|
| 803 | + ?> |
|
| 804 | 804 | |
| 805 | 805 | |
| 806 | 806 | <div class="geodir_locations geodir_location_listing"> |
| 807 | 807 | |
| 808 | 808 | <?php |
| 809 | - if (isset($request['is_widget']) && $request['is_widget'] == '1') {
|
|
| 810 | - /** geodir_before_title filter Documented in geodirectory_widgets.php */ |
|
| 811 | - $before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
|
|
| 812 | - /** geodir_after_title filter Documented in geodirectory_widgets.php */ |
|
| 813 | - $after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
|
|
| 814 | - ?> |
|
| 809 | + if (isset($request['is_widget']) && $request['is_widget'] == '1') {
|
|
| 810 | + /** geodir_before_title filter Documented in geodirectory_widgets.php */ |
|
| 811 | + $before_title = isset($before_title) ? $before_title : apply_filters('geodir_before_title', '<h3 class="widget-title">');
|
|
| 812 | + /** geodir_after_title filter Documented in geodirectory_widgets.php */ |
|
| 813 | + $after_title = isset($after_title) ? $after_title : apply_filters('geodir_after_title', '</h3>');
|
|
| 814 | + ?> |
|
| 815 | 815 | <div class="location_list_heading clearfix"> |
| 816 | 816 | <?php echo $before_title . $title . $after_title; ?> |
| 817 | 817 | </div> |
| 818 | 818 | <?php |
| 819 | - } |
|
| 820 | - $query_args = array( |
|
| 821 | - 'posts_per_page' => $post_number, |
|
| 822 | - 'is_geodir_loop' => true, |
|
| 823 | - 'gd_location' => ($add_location_filter) ? true : false, |
|
| 824 | - 'post_type' => $post_type, |
|
| 825 | - 'order_by' => $list_sort, |
|
| 826 | - 'post__not_in' => array($post_id), |
|
| 827 | - 'excerpt_length' => $character_count, |
|
| 828 | - ); |
|
| 819 | + } |
|
| 820 | + $query_args = array( |
|
| 821 | + 'posts_per_page' => $post_number, |
|
| 822 | + 'is_geodir_loop' => true, |
|
| 823 | + 'gd_location' => ($add_location_filter) ? true : false, |
|
| 824 | + 'post_type' => $post_type, |
|
| 825 | + 'order_by' => $list_sort, |
|
| 826 | + 'post__not_in' => array($post_id), |
|
| 827 | + 'excerpt_length' => $character_count, |
|
| 828 | + ); |
|
| 829 | 829 | |
| 830 | - $tax_query = array('taxonomy' => $category_taxonomy,
|
|
| 831 | - 'field' => $tax_field, |
|
| 832 | - 'terms' => $category |
|
| 833 | - ); |
|
| 830 | + $tax_query = array('taxonomy' => $category_taxonomy,
|
|
| 831 | + 'field' => $tax_field, |
|
| 832 | + 'terms' => $category |
|
| 833 | + ); |
|
| 834 | 834 | |
| 835 | - $query_args['tax_query'] = array($tax_query); |
|
| 835 | + $query_args['tax_query'] = array($tax_query); |
|
| 836 | 836 | |
| 837 | 837 | |
| 838 | - global $gridview_columns, $post; |
|
| 838 | + global $gridview_columns, $post; |
|
| 839 | 839 | |
| 840 | 840 | |
| 841 | - query_posts($query_args); |
|
| 841 | + query_posts($query_args); |
|
| 842 | 842 | |
| 843 | - if (strstr($layout, 'gridview')) {
|
|
| 844 | - $listing_view_exp = explode('_', $layout);
|
|
| 845 | - $gridview_columns = $layout; |
|
| 846 | - $layout = $listing_view_exp[0]; |
|
| 847 | - } else if ($layout == 'list') {
|
|
| 848 | - $gridview_columns = ''; |
|
| 849 | - } |
|
| 850 | - $related_posts = true; |
|
| 851 | - |
|
| 852 | - /** |
|
| 853 | - * Filters related listing listview template. |
|
| 854 | - * |
|
| 855 | - * @since 1.0.0 |
|
| 856 | - */ |
|
| 857 | - $template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
|
|
| 858 | - |
|
| 859 | - /** |
|
| 860 | - * Includes related listing listview template. |
|
| 861 | - * |
|
| 862 | - * @since 1.0.0 |
|
| 863 | - */ |
|
| 864 | - include($template); |
|
| 865 | - |
|
| 866 | - wp_reset_query(); |
|
| 867 | - $post = $origi_post; |
|
| 868 | - ?> |
|
| 843 | + if (strstr($layout, 'gridview')) {
|
|
| 844 | + $listing_view_exp = explode('_', $layout);
|
|
| 845 | + $gridview_columns = $layout; |
|
| 846 | + $layout = $listing_view_exp[0]; |
|
| 847 | + } else if ($layout == 'list') {
|
|
| 848 | + $gridview_columns = ''; |
|
| 849 | + } |
|
| 850 | + $related_posts = true; |
|
| 851 | + |
|
| 852 | + /** |
|
| 853 | + * Filters related listing listview template. |
|
| 854 | + * |
|
| 855 | + * @since 1.0.0 |
|
| 856 | + */ |
|
| 857 | + $template = apply_filters("geodir_template_part-related-listing-listview", geodir_locate_template('listing-listview'));
|
|
| 858 | + |
|
| 859 | + /** |
|
| 860 | + * Includes related listing listview template. |
|
| 861 | + * |
|
| 862 | + * @since 1.0.0 |
|
| 863 | + */ |
|
| 864 | + include($template); |
|
| 865 | + |
|
| 866 | + wp_reset_query(); |
|
| 867 | + $post = $origi_post; |
|
| 868 | + ?> |
|
| 869 | 869 | |
| 870 | 870 | </div> |
| 871 | 871 | <?php |
| 872 | - return $html = ob_get_clean(); |
|
| 872 | + return $html = ob_get_clean(); |
|
| 873 | 873 | |
| 874 | - } |
|
| 874 | + } |
|
| 875 | 875 | |
| 876 | 876 | } |
| 877 | 877 | |
@@ -887,17 +887,17 @@ discard block |
||
| 887 | 887 | */ |
| 888 | 888 | function geodir_category_count_script() |
| 889 | 889 | {
|
| 890 | - global $geodir_post_category_str; |
|
| 890 | + global $geodir_post_category_str; |
|
| 891 | 891 | |
| 892 | - if (!empty($geodir_post_category_str)) {
|
|
| 893 | - $geodir_post_category_str = serialize($geodir_post_category_str); |
|
| 894 | - } |
|
| 892 | + if (!empty($geodir_post_category_str)) {
|
|
| 893 | + $geodir_post_category_str = serialize($geodir_post_category_str); |
|
| 894 | + } |
|
| 895 | 895 | |
| 896 | - $all_var['post_category_array'] = html_entity_decode((string)$geodir_post_category_str, ENT_QUOTES, 'UTF-8'); |
|
| 897 | - $script = "var post_category_array = " . json_encode($all_var) . ';'; |
|
| 898 | - echo '<script>'; |
|
| 899 | - echo $script; |
|
| 900 | - echo '</script>'; |
|
| 896 | + $all_var['post_category_array'] = html_entity_decode((string)$geodir_post_category_str, ENT_QUOTES, 'UTF-8'); |
|
| 897 | + $script = "var post_category_array = " . json_encode($all_var) . ';'; |
|
| 898 | + echo '<script>'; |
|
| 899 | + echo $script; |
|
| 900 | + echo '</script>'; |
|
| 901 | 901 | |
| 902 | 902 | } |
| 903 | 903 | |
@@ -910,16 +910,16 @@ discard block |
||
| 910 | 910 | */ |
| 911 | 911 | function geodir_get_map_default_language() |
| 912 | 912 | {
|
| 913 | - $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 914 | - if (empty($geodir_default_map_language)) |
|
| 915 | - $geodir_default_map_language = 'en'; |
|
| 916 | - /** |
|
| 917 | - * Filter default map language. |
|
| 918 | - * |
|
| 919 | - * @since 1.0.0 |
|
| 920 | - * @param string $geodir_default_map_language Default map language. |
|
| 921 | - */ |
|
| 922 | - return apply_filters('geodir_default_map_language', $geodir_default_map_language);
|
|
| 913 | + $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 914 | + if (empty($geodir_default_map_language)) |
|
| 915 | + $geodir_default_map_language = 'en'; |
|
| 916 | + /** |
|
| 917 | + * Filter default map language. |
|
| 918 | + * |
|
| 919 | + * @since 1.0.0 |
|
| 920 | + * @param string $geodir_default_map_language Default map language. |
|
| 921 | + */ |
|
| 922 | + return apply_filters('geodir_default_map_language', $geodir_default_map_language);
|
|
| 923 | 923 | } |
| 924 | 924 | |
| 925 | 925 | |
@@ -936,12 +936,12 @@ discard block |
||
| 936 | 936 | */ |
| 937 | 937 | function geodir_add_meta_keywords() |
| 938 | 938 | {
|
| 939 | - global $wp, $post, $wp_query, $wpdb, $geodir_addon_list; |
|
| 939 | + global $wp, $post, $wp_query, $wpdb, $geodir_addon_list; |
|
| 940 | 940 | |
| 941 | - $is_geodir_page = geodir_is_geodir_page(); |
|
| 942 | - if (!$is_geodir_page) {
|
|
| 943 | - return; |
|
| 944 | - }// if non GD page, bail |
|
| 941 | + $is_geodir_page = geodir_is_geodir_page(); |
|
| 942 | + if (!$is_geodir_page) {
|
|
| 943 | + return; |
|
| 944 | + }// if non GD page, bail |
|
| 945 | 945 | |
| 946 | 946 | $use_gd_meta = true; |
| 947 | 947 | if (class_exists('WPSEO_Frontend') || class_exists('All_in_One_SEO_Pack')) {
|
@@ -956,182 +956,182 @@ discard block |
||
| 956 | 956 | return; |
| 957 | 957 | }// bail if Yoast Wordpress SEO or All_in_One_SEO_Pack active. |
| 958 | 958 | |
| 959 | - $current_term = $wp_query->get_queried_object(); |
|
| 959 | + $current_term = $wp_query->get_queried_object(); |
|
| 960 | 960 | |
| 961 | - $all_postypes = geodir_get_posttypes(); |
|
| 961 | + $all_postypes = geodir_get_posttypes(); |
|
| 962 | 962 | |
| 963 | - $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 963 | + $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 964 | 964 | |
| 965 | - $meta_desc = ''; |
|
| 966 | - $meta_key = ''; |
|
| 967 | - if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
|
|
| 968 | - /** |
|
| 969 | - * Filter SEO meta location description. |
|
| 970 | - * |
|
| 971 | - * @since 1.0.0 |
|
| 972 | - */ |
|
| 973 | - $meta_desc = apply_filters('geodir_seo_meta_location_description', '');
|
|
| 974 | - $meta_desc .= ''; |
|
| 975 | - } |
|
| 976 | - if (have_posts() && is_single() OR is_page()) {
|
|
| 977 | - while (have_posts()) {
|
|
| 978 | - the_post(); |
|
| 979 | - |
|
| 980 | - if (has_excerpt()) {
|
|
| 981 | - $out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt())); |
|
| 982 | - if (empty($out_excerpt)) {
|
|
| 983 | - $out_excerpt = strip_tags(do_shortcode(get_the_excerpt())); |
|
| 984 | - } |
|
| 985 | - $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
|
|
| 986 | - } else {
|
|
| 987 | - $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
|
|
| 988 | - $out_excerpt = strip_tags(strip_shortcodes($out_excerpt)); |
|
| 989 | - if (empty($out_excerpt)) {
|
|
| 990 | - $out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content |
|
| 991 | - } |
|
| 992 | - $out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-'); |
|
| 993 | - } |
|
| 965 | + $meta_desc = ''; |
|
| 966 | + $meta_key = ''; |
|
| 967 | + if (isset($current_term->ID) && $current_term->ID == geodir_location_page_id()) {
|
|
| 968 | + /** |
|
| 969 | + * Filter SEO meta location description. |
|
| 970 | + * |
|
| 971 | + * @since 1.0.0 |
|
| 972 | + */ |
|
| 973 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', '');
|
|
| 974 | + $meta_desc .= ''; |
|
| 975 | + } |
|
| 976 | + if (have_posts() && is_single() OR is_page()) {
|
|
| 977 | + while (have_posts()) {
|
|
| 978 | + the_post(); |
|
| 979 | + |
|
| 980 | + if (has_excerpt()) {
|
|
| 981 | + $out_excerpt = strip_tags(strip_shortcodes(get_the_excerpt())); |
|
| 982 | + if (empty($out_excerpt)) {
|
|
| 983 | + $out_excerpt = strip_tags(do_shortcode(get_the_excerpt())); |
|
| 984 | + } |
|
| 985 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $out_excerpt);
|
|
| 986 | + } else {
|
|
| 987 | + $out_excerpt = str_replace(array("\r\n", "\r", "\n"), "", $post->post_content);
|
|
| 988 | + $out_excerpt = strip_tags(strip_shortcodes($out_excerpt)); |
|
| 989 | + if (empty($out_excerpt)) {
|
|
| 990 | + $out_excerpt = strip_tags(do_shortcode($out_excerpt)); // parse short code from content |
|
| 991 | + } |
|
| 992 | + $out_excerpt = trim(wp_trim_words($out_excerpt, 35, ''), '.!?,;:-'); |
|
| 993 | + } |
|
| 994 | 994 | |
| 995 | - $meta_desc .= $out_excerpt; |
|
| 996 | - } |
|
| 997 | - } elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 998 | - if (is_category()) {
|
|
| 999 | - $meta_desc .= __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE));
|
|
| 1000 | - } elseif (is_tag()) {
|
|
| 1001 | - $meta_desc .= __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE));
|
|
| 1002 | - } |
|
| 1003 | - } elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 1004 | - $meta_desc .= isset($current_term->description) ? $current_term->description : ''; |
|
| 1005 | - } |
|
| 995 | + $meta_desc .= $out_excerpt; |
|
| 996 | + } |
|
| 997 | + } elseif ((is_category() || is_tag()) && isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 998 | + if (is_category()) {
|
|
| 999 | + $meta_desc .= __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE));
|
|
| 1000 | + } elseif (is_tag()) {
|
|
| 1001 | + $meta_desc .= __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE));
|
|
| 1002 | + } |
|
| 1003 | + } elseif (isset($current_term->taxonomy) && in_array($current_term->taxonomy, $geodir_taxonomies)) {
|
|
| 1004 | + $meta_desc .= isset($current_term->description) ? $current_term->description : ''; |
|
| 1005 | + } |
|
| 1006 | 1006 | |
| 1007 | 1007 | |
| 1008 | - $geodir_post_type = geodir_get_current_posttype(); |
|
| 1009 | - $geodir_post_type_info = get_post_type_object($geodir_post_type); |
|
| 1010 | - $geodir_is_page_listing = geodir_is_page('listing') ? true : false;
|
|
| 1011 | - |
|
| 1012 | - $category_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
| 1013 | - $tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true); |
|
| 1014 | - |
|
| 1015 | - $geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false; |
|
| 1016 | - $geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false; |
|
| 1017 | - |
|
| 1018 | - $geodir_is_search = geodir_is_page('search') ? true : false;
|
|
| 1019 | - $geodir_is_location = geodir_is_page('location') ? true : false;
|
|
| 1020 | - $geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
| 1021 | - $godir_location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1022 | - $gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : NULL; |
|
| 1023 | - $gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : NULL; |
|
| 1024 | - $gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : NULL; |
|
| 1025 | - $replace_location = __('Everywhere', 'geodirectory');
|
|
| 1026 | - $location_id = NULL; |
|
| 1027 | - if ($geodir_location_manager) {
|
|
| 1028 | - $sql = $wpdb->prepare("SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
|
|
| 1029 | - $location_id = (int)$wpdb->get_var($sql); |
|
| 1030 | - $location_type = geodir_what_is_current_location(); |
|
| 1031 | - if ($location_type == 'city') {
|
|
| 1032 | - $replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
|
|
| 1033 | - } elseif ($location_type == 'region') {
|
|
| 1034 | - $replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
|
|
| 1035 | - } elseif ($location_type == 'country') {
|
|
| 1036 | - $replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
|
|
| 1037 | - $replace_location = __($replace_location, 'geodirectory'); |
|
| 1038 | - } |
|
| 1039 | - $country = get_query_var('gd_country');
|
|
| 1040 | - $region = get_query_var('gd_region');
|
|
| 1041 | - $city = get_query_var('gd_city');
|
|
| 1042 | - $current_location = ''; |
|
| 1043 | - if ($country != '') {
|
|
| 1044 | - $current_location = get_actual_location_name('country', $country, true);
|
|
| 1045 | - } |
|
| 1046 | - if ($region != '') {
|
|
| 1047 | - $current_location = get_actual_location_name('region', $region);
|
|
| 1048 | - } |
|
| 1049 | - if ($city != '') {
|
|
| 1050 | - $current_location = get_actual_location_name('city', $city);
|
|
| 1051 | - } |
|
| 1052 | - $replace_location = $current_location != '' ? $current_location : $replace_location; |
|
| 1053 | - } |
|
| 1008 | + $geodir_post_type = geodir_get_current_posttype(); |
|
| 1009 | + $geodir_post_type_info = get_post_type_object($geodir_post_type); |
|
| 1010 | + $geodir_is_page_listing = geodir_is_page('listing') ? true : false;
|
|
| 1011 | + |
|
| 1012 | + $category_taxonomy = geodir_get_taxonomies($geodir_post_type); |
|
| 1013 | + $tag_taxonomy = geodir_get_taxonomies($geodir_post_type, true); |
|
| 1014 | + |
|
| 1015 | + $geodir_is_category = isset($category_taxonomy[0]) && get_query_var($category_taxonomy[0]) ? get_query_var($category_taxonomy[0]) : false; |
|
| 1016 | + $geodir_is_tag = isset($tag_taxonomy[0]) && get_query_var($tag_taxonomy[0]) ? true : false; |
|
| 1017 | + |
|
| 1018 | + $geodir_is_search = geodir_is_page('search') ? true : false;
|
|
| 1019 | + $geodir_is_location = geodir_is_page('location') ? true : false;
|
|
| 1020 | + $geodir_location_manager = isset($geodir_addon_list['geodir_location_manager']) && $geodir_addon_list['geodir_location_manager'] = 'yes' ? true : false; |
|
| 1021 | + $godir_location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1022 | + $gd_city = $geodir_location_manager && isset($godir_location_terms['gd_city']) ? $godir_location_terms['gd_city'] : NULL; |
|
| 1023 | + $gd_region = $geodir_location_manager && isset($godir_location_terms['gd_region']) ? $godir_location_terms['gd_region'] : NULL; |
|
| 1024 | + $gd_country = $geodir_location_manager && isset($godir_location_terms['gd_country']) ? $godir_location_terms['gd_country'] : NULL; |
|
| 1025 | + $replace_location = __('Everywhere', 'geodirectory');
|
|
| 1026 | + $location_id = NULL; |
|
| 1027 | + if ($geodir_location_manager) {
|
|
| 1028 | + $sql = $wpdb->prepare("SELECT location_id FROM " . POST_LOCATION_TABLE . " WHERE city_slug=%s ORDER BY location_id ASC LIMIT 1", array($gd_city));
|
|
| 1029 | + $location_id = (int)$wpdb->get_var($sql); |
|
| 1030 | + $location_type = geodir_what_is_current_location(); |
|
| 1031 | + if ($location_type == 'city') {
|
|
| 1032 | + $replace_location = geodir_get_current_location(array('what' => 'city', 'echo' => false));
|
|
| 1033 | + } elseif ($location_type == 'region') {
|
|
| 1034 | + $replace_location = geodir_get_current_location(array('what' => 'region', 'echo' => false));
|
|
| 1035 | + } elseif ($location_type == 'country') {
|
|
| 1036 | + $replace_location = geodir_get_current_location(array('what' => 'country', 'echo' => false));
|
|
| 1037 | + $replace_location = __($replace_location, 'geodirectory'); |
|
| 1038 | + } |
|
| 1039 | + $country = get_query_var('gd_country');
|
|
| 1040 | + $region = get_query_var('gd_region');
|
|
| 1041 | + $city = get_query_var('gd_city');
|
|
| 1042 | + $current_location = ''; |
|
| 1043 | + if ($country != '') {
|
|
| 1044 | + $current_location = get_actual_location_name('country', $country, true);
|
|
| 1045 | + } |
|
| 1046 | + if ($region != '') {
|
|
| 1047 | + $current_location = get_actual_location_name('region', $region);
|
|
| 1048 | + } |
|
| 1049 | + if ($city != '') {
|
|
| 1050 | + $current_location = get_actual_location_name('city', $city);
|
|
| 1051 | + } |
|
| 1052 | + $replace_location = $current_location != '' ? $current_location : $replace_location; |
|
| 1053 | + } |
|
| 1054 | 1054 | |
| 1055 | - $geodir_meta_keys = ''; |
|
| 1056 | - $geodir_meta_desc = ''; |
|
| 1057 | - if ($is_geodir_page && !empty($geodir_post_type_info)) {
|
|
| 1058 | - if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
|
|
| 1059 | - $geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys; |
|
| 1060 | - |
|
| 1061 | - $geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
| 1062 | - $geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc; |
|
| 1063 | - |
|
| 1064 | - if ($geodir_is_category) {
|
|
| 1065 | - $category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : NULL;
|
|
| 1066 | - if (isset($category->term_id) && !empty($category->term_id)) {
|
|
| 1067 | - $category_id = $category->term_id; |
|
| 1068 | - $category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type); |
|
| 1069 | - if ($location_id) {
|
|
| 1070 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id; |
|
| 1071 | - $cat_loc_option = get_option($option_name); |
|
| 1072 | - |
|
| 1073 | - $gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false; |
|
| 1074 | - if (!$gd_cat_loc_default) {
|
|
| 1075 | - $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id; |
|
| 1076 | - $option = get_option($option_name); |
|
| 1077 | - $category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc; |
|
| 1078 | - } |
|
| 1079 | - } |
|
| 1080 | - $geodir_meta_desc = __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE)) . '. ' . $category_desc;
|
|
| 1081 | - } |
|
| 1082 | - } else if ($geodir_is_tag) {
|
|
| 1083 | - $geodir_meta_desc = __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE)) . '. ' . $geodir_meta_desc;
|
|
| 1084 | - } |
|
| 1085 | - } |
|
| 1086 | - } |
|
| 1055 | + $geodir_meta_keys = ''; |
|
| 1056 | + $geodir_meta_desc = ''; |
|
| 1057 | + if ($is_geodir_page && !empty($geodir_post_type_info)) {
|
|
| 1058 | + if ($geodir_is_page_listing || $geodir_is_search || geodir_is_page('add-listing')) {
|
|
| 1059 | + $geodir_meta_keys = isset($geodir_post_type_info->seo['meta_keyword']) && $geodir_post_type_info->seo['meta_keyword'] != '' ? $geodir_post_type_info->seo['meta_keyword'] : $geodir_meta_keys; |
|
| 1060 | + |
|
| 1061 | + $geodir_meta_desc = isset($geodir_post_type_info->description) ? $geodir_post_type_info->description : $geodir_meta_desc; |
|
| 1062 | + $geodir_meta_desc = isset($geodir_post_type_info->seo['meta_description']) && $geodir_post_type_info->seo['meta_description'] != '' ? $geodir_post_type_info->seo['meta_description'] : $geodir_meta_desc; |
|
| 1063 | + |
|
| 1064 | + if ($geodir_is_category) {
|
|
| 1065 | + $category = $geodir_is_category ? get_term_by('slug', $geodir_is_category, $category_taxonomy[0]) : NULL;
|
|
| 1066 | + if (isset($category->term_id) && !empty($category->term_id)) {
|
|
| 1067 | + $category_id = $category->term_id; |
|
| 1068 | + $category_desc = trim($category->description) != '' ? trim($category->description) : get_tax_meta($category_id, 'ct_cat_top_desc', false, $geodir_post_type); |
|
| 1069 | + if ($location_id) {
|
|
| 1070 | + $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id; |
|
| 1071 | + $cat_loc_option = get_option($option_name); |
|
| 1072 | + |
|
| 1073 | + $gd_cat_loc_default = !empty($cat_loc_option) && isset($cat_loc_option['gd_cat_loc_default']) && $cat_loc_option['gd_cat_loc_default'] > 0 ? true : false; |
|
| 1074 | + if (!$gd_cat_loc_default) {
|
|
| 1075 | + $option_name = 'geodir_cat_loc_' . $geodir_post_type . '_' . $category_id . '_' . $location_id; |
|
| 1076 | + $option = get_option($option_name); |
|
| 1077 | + $category_desc = isset($option['gd_cat_loc_desc']) && trim($option['gd_cat_loc_desc']) != '' ? trim($option['gd_cat_loc_desc']) : $category_desc; |
|
| 1078 | + } |
|
| 1079 | + } |
|
| 1080 | + $geodir_meta_desc = __("Posts related to Category:", 'geodirectory') . " " . ucfirst(single_cat_title("", FALSE)) . '. ' . $category_desc;
|
|
| 1081 | + } |
|
| 1082 | + } else if ($geodir_is_tag) {
|
|
| 1083 | + $geodir_meta_desc = __("Posts related to Tag:", 'geodirectory') . " " . ucfirst(single_tag_title("", FALSE)) . '. ' . $geodir_meta_desc;
|
|
| 1084 | + } |
|
| 1085 | + } |
|
| 1086 | + } |
|
| 1087 | 1087 | |
| 1088 | 1088 | |
| 1089 | - $gd_page = ''; |
|
| 1090 | - if(geodir_is_page('home')){
|
|
| 1091 | - $gd_page = 'home'; |
|
| 1092 | - $meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
|
|
| 1093 | - } |
|
| 1094 | - elseif(geodir_is_page('detail')){
|
|
| 1095 | - $gd_page = 'detail'; |
|
| 1096 | - $meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
|
|
| 1097 | - } |
|
| 1098 | - elseif(geodir_is_page('pt')){
|
|
| 1099 | - $gd_page = 'pt'; |
|
| 1100 | - $meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
|
|
| 1101 | - } |
|
| 1102 | - elseif(geodir_is_page('listing')){
|
|
| 1103 | - $gd_page = 'listing'; |
|
| 1104 | - $meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
|
|
| 1105 | - } |
|
| 1106 | - elseif(geodir_is_page('location')){
|
|
| 1107 | - $gd_page = 'location'; |
|
| 1108 | - $meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
|
|
| 1109 | - $meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
|
|
| 1089 | + $gd_page = ''; |
|
| 1090 | + if(geodir_is_page('home')){
|
|
| 1091 | + $gd_page = 'home'; |
|
| 1092 | + $meta_desc = (get_option('geodir_meta_desc_homepage')) ? get_option('geodir_meta_desc_homepage') : $meta_desc;
|
|
| 1093 | + } |
|
| 1094 | + elseif(geodir_is_page('detail')){
|
|
| 1095 | + $gd_page = 'detail'; |
|
| 1096 | + $meta_desc = (get_option('geodir_meta_desc_detail')) ? get_option('geodir_meta_desc_detail') : $meta_desc;
|
|
| 1097 | + } |
|
| 1098 | + elseif(geodir_is_page('pt')){
|
|
| 1099 | + $gd_page = 'pt'; |
|
| 1100 | + $meta_desc = (get_option('geodir_meta_desc_pt')) ? get_option('geodir_meta_desc_pt') : $meta_desc;
|
|
| 1101 | + } |
|
| 1102 | + elseif(geodir_is_page('listing')){
|
|
| 1103 | + $gd_page = 'listing'; |
|
| 1104 | + $meta_desc = (get_option('geodir_meta_desc_listing')) ? get_option('geodir_meta_desc_listing') : $meta_desc;
|
|
| 1105 | + } |
|
| 1106 | + elseif(geodir_is_page('location')){
|
|
| 1107 | + $gd_page = 'location'; |
|
| 1108 | + $meta_desc = (get_option('geodir_meta_desc_location')) ? get_option('geodir_meta_desc_location') : $meta_desc;
|
|
| 1109 | + $meta_desc = apply_filters('geodir_seo_meta_location_description', $meta_desc);
|
|
| 1110 | 1110 | |
| 1111 | - } |
|
| 1112 | - elseif(geodir_is_page('search')){
|
|
| 1113 | - $gd_page = 'search'; |
|
| 1114 | - $meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
|
|
| 1115 | - } |
|
| 1116 | - elseif(geodir_is_page('add-listing')){
|
|
| 1117 | - $gd_page = 'add-listing'; |
|
| 1118 | - $meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
|
|
| 1119 | - } |
|
| 1120 | - elseif(geodir_is_page('author')){
|
|
| 1121 | - $gd_page = 'author'; |
|
| 1122 | - $meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
|
|
| 1123 | - } |
|
| 1124 | - elseif(geodir_is_page('login')){
|
|
| 1125 | - $gd_page = 'login'; |
|
| 1126 | - $meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
|
|
| 1127 | - } |
|
| 1128 | - elseif(geodir_is_page('listing-success')){
|
|
| 1129 | - $gd_page = 'listing-success'; |
|
| 1130 | - $meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
|
|
| 1131 | - } |
|
| 1111 | + } |
|
| 1112 | + elseif(geodir_is_page('search')){
|
|
| 1113 | + $gd_page = 'search'; |
|
| 1114 | + $meta_desc = (get_option('geodir_meta_desc_search')) ? get_option('geodir_meta_desc_search') : $meta_desc;
|
|
| 1115 | + } |
|
| 1116 | + elseif(geodir_is_page('add-listing')){
|
|
| 1117 | + $gd_page = 'add-listing'; |
|
| 1118 | + $meta_desc = (get_option('geodir_meta_desc_add-listing')) ? get_option('geodir_meta_desc_add-listing') : $meta_desc;
|
|
| 1119 | + } |
|
| 1120 | + elseif(geodir_is_page('author')){
|
|
| 1121 | + $gd_page = 'author'; |
|
| 1122 | + $meta_desc = (get_option('geodir_meta_desc_author')) ? get_option('geodir_meta_desc_author') : $meta_desc;
|
|
| 1123 | + } |
|
| 1124 | + elseif(geodir_is_page('login')){
|
|
| 1125 | + $gd_page = 'login'; |
|
| 1126 | + $meta_desc = (get_option('geodir_meta_desc_login')) ? get_option('geodir_meta_desc_login') : $meta_desc;
|
|
| 1127 | + } |
|
| 1128 | + elseif(geodir_is_page('listing-success')){
|
|
| 1129 | + $gd_page = 'listing-success'; |
|
| 1130 | + $meta_desc = (get_option('geodir_meta_desc_listing-success')) ? get_option('geodir_meta_desc_listing-success') : $meta_desc;
|
|
| 1131 | + } |
|
| 1132 | 1132 | |
| 1133 | 1133 | |
| 1134 | - /* |
|
| 1134 | + /* |
|
| 1135 | 1135 | $geodir_meta_desc = $geodir_meta_desc != '' ? $geodir_meta_desc : $meta_desc; |
| 1136 | 1136 | if ($geodir_meta_desc != '') {
|
| 1137 | 1137 | $geodir_meta_desc = strip_tags($geodir_meta_desc); |
@@ -1144,74 +1144,74 @@ discard block |
||
| 1144 | 1144 | */ |
| 1145 | 1145 | |
| 1146 | 1146 | |
| 1147 | - if ($meta_desc) {
|
|
| 1148 | - $meta_desc = stripslashes_deep($meta_desc); |
|
| 1149 | - /** |
|
| 1150 | - * Filter page description to replace variables. |
|
| 1151 | - * |
|
| 1152 | - * @since 1.5.4 |
|
| 1153 | - * @param string $title The page description including variables. |
|
| 1154 | - * @param string $gd_page The GeoDirectory page type if any. |
|
| 1155 | - */ |
|
| 1156 | - $meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'),$gd_page,'');
|
|
| 1157 | - |
|
| 1158 | - /** |
|
| 1159 | - * Filter SEO meta description. |
|
| 1160 | - * |
|
| 1161 | - * @since 1.0.0 |
|
| 1162 | - * @param string $meta_desc Meta description content. |
|
| 1163 | - */ |
|
| 1164 | - echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc);
|
|
| 1165 | - } |
|
| 1147 | + if ($meta_desc) {
|
|
| 1148 | + $meta_desc = stripslashes_deep($meta_desc); |
|
| 1149 | + /** |
|
| 1150 | + * Filter page description to replace variables. |
|
| 1151 | + * |
|
| 1152 | + * @since 1.5.4 |
|
| 1153 | + * @param string $title The page description including variables. |
|
| 1154 | + * @param string $gd_page The GeoDirectory page type if any. |
|
| 1155 | + */ |
|
| 1156 | + $meta_desc = apply_filters('geodir_seo_meta_description_pre', __($meta_desc, 'geodirectory'),$gd_page,'');
|
|
| 1157 | + |
|
| 1158 | + /** |
|
| 1159 | + * Filter SEO meta description. |
|
| 1160 | + * |
|
| 1161 | + * @since 1.0.0 |
|
| 1162 | + * @param string $meta_desc Meta description content. |
|
| 1163 | + */ |
|
| 1164 | + echo apply_filters('geodir_seo_meta_description', '<meta name="description" content="' . $meta_desc . '" />', $meta_desc);
|
|
| 1165 | + } |
|
| 1166 | 1166 | |
| 1167 | - // meta keywords |
|
| 1168 | - if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
|
|
| 1169 | - $place_tags = wp_get_post_terms($post->ID, $post->post_type . '_tags', array("fields" => "names"));
|
|
| 1170 | - $place_cats = wp_get_post_terms($post->ID, $post->post_type . 'category', array("fields" => "names"));
|
|
| 1171 | - |
|
| 1172 | - $meta_key .= implode(", ", array_merge((array)$place_cats, (array)$place_tags));
|
|
| 1173 | - } else {
|
|
| 1174 | - $posttags = get_the_tags(); |
|
| 1175 | - if ($posttags) {
|
|
| 1176 | - foreach ($posttags as $tag) {
|
|
| 1177 | - $meta_key .= $tag->name . ' '; |
|
| 1178 | - } |
|
| 1179 | - } else {
|
|
| 1180 | - $tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 1181 | - $xt = 1; |
|
| 1167 | + // meta keywords |
|
| 1168 | + if (isset($post->post_type) && in_array($post->post_type, $all_postypes)) {
|
|
| 1169 | + $place_tags = wp_get_post_terms($post->ID, $post->post_type . '_tags', array("fields" => "names"));
|
|
| 1170 | + $place_cats = wp_get_post_terms($post->ID, $post->post_type . 'category', array("fields" => "names"));
|
|
| 1171 | + |
|
| 1172 | + $meta_key .= implode(", ", array_merge((array)$place_cats, (array)$place_tags));
|
|
| 1173 | + } else {
|
|
| 1174 | + $posttags = get_the_tags(); |
|
| 1175 | + if ($posttags) {
|
|
| 1176 | + foreach ($posttags as $tag) {
|
|
| 1177 | + $meta_key .= $tag->name . ' '; |
|
| 1178 | + } |
|
| 1179 | + } else {
|
|
| 1180 | + $tags = get_tags(array('orderby' => 'count', 'order' => 'DESC'));
|
|
| 1181 | + $xt = 1; |
|
| 1182 | 1182 | |
| 1183 | - foreach ($tags as $tag) {
|
|
| 1184 | - if ($xt <= 20) {
|
|
| 1185 | - $meta_key .= $tag->name . ", "; |
|
| 1186 | - } |
|
| 1183 | + foreach ($tags as $tag) {
|
|
| 1184 | + if ($xt <= 20) {
|
|
| 1185 | + $meta_key .= $tag->name . ", "; |
|
| 1186 | + } |
|
| 1187 | 1187 | |
| 1188 | - $xt++; |
|
| 1189 | - } |
|
| 1190 | - } |
|
| 1191 | - } |
|
| 1188 | + $xt++; |
|
| 1189 | + } |
|
| 1190 | + } |
|
| 1191 | + } |
|
| 1192 | 1192 | |
| 1193 | - $meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key; |
|
| 1194 | - $geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys) : $meta_key; |
|
| 1195 | - if ($geodir_meta_keys != '') {
|
|
| 1196 | - $geodir_meta_keys = strip_tags($geodir_meta_keys); |
|
| 1197 | - $geodir_meta_keys = esc_html($geodir_meta_keys); |
|
| 1198 | - $geodir_meta_keys = geodir_strtolower($geodir_meta_keys); |
|
| 1199 | - $geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, ''); |
|
| 1200 | - $geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
|
|
| 1193 | + $meta_key = $meta_key != '' ? rtrim(trim($meta_key), ",") : $meta_key; |
|
| 1194 | + $geodir_meta_keys = $geodir_meta_keys != '' ? ($meta_key != '' ? $meta_key . ', ' . $geodir_meta_keys : $geodir_meta_keys) : $meta_key; |
|
| 1195 | + if ($geodir_meta_keys != '') {
|
|
| 1196 | + $geodir_meta_keys = strip_tags($geodir_meta_keys); |
|
| 1197 | + $geodir_meta_keys = esc_html($geodir_meta_keys); |
|
| 1198 | + $geodir_meta_keys = geodir_strtolower($geodir_meta_keys); |
|
| 1199 | + $geodir_meta_keys = wp_html_excerpt($geodir_meta_keys, 1000, ''); |
|
| 1200 | + $geodir_meta_keys = str_replace('%location%', $replace_location, $geodir_meta_keys);
|
|
| 1201 | 1201 | |
| 1202 | - $meta_key = rtrim(trim($geodir_meta_keys), ","); |
|
| 1203 | - } |
|
| 1202 | + $meta_key = rtrim(trim($geodir_meta_keys), ","); |
|
| 1203 | + } |
|
| 1204 | 1204 | |
| 1205 | - if ($meta_key) {
|
|
| 1206 | - $meta_key = stripslashes_deep($meta_key); |
|
| 1207 | - /** |
|
| 1208 | - * Filter SEO meta keywords. |
|
| 1209 | - * |
|
| 1210 | - * @since 1.0.0 |
|
| 1211 | - * @param string $meta_desc Meta keywords. |
|
| 1212 | - */ |
|
| 1213 | - echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key);
|
|
| 1214 | - } |
|
| 1205 | + if ($meta_key) {
|
|
| 1206 | + $meta_key = stripslashes_deep($meta_key); |
|
| 1207 | + /** |
|
| 1208 | + * Filter SEO meta keywords. |
|
| 1209 | + * |
|
| 1210 | + * @since 1.0.0 |
|
| 1211 | + * @param string $meta_desc Meta keywords. |
|
| 1212 | + */ |
|
| 1213 | + echo apply_filters('geodir_seo_meta_keywords', '<meta name="keywords" content="' . $meta_key . '" />', $meta_key);
|
|
| 1214 | + } |
|
| 1215 | 1215 | |
| 1216 | 1216 | } |
| 1217 | 1217 | |
@@ -1226,14 +1226,14 @@ discard block |
||
| 1226 | 1226 | */ |
| 1227 | 1227 | function geodir_detail_page_tabs_key_value_array() |
| 1228 | 1228 | {
|
| 1229 | - $geodir_detail_page_tabs_key_value_array = array(); |
|
| 1229 | + $geodir_detail_page_tabs_key_value_array = array(); |
|
| 1230 | 1230 | |
| 1231 | - $geodir_detail_page_tabs_array = geodir_detail_page_tabs_array(); |
|
| 1231 | + $geodir_detail_page_tabs_array = geodir_detail_page_tabs_array(); |
|
| 1232 | 1232 | |
| 1233 | - foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
|
|
| 1234 | - $geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text']; |
|
| 1235 | - } |
|
| 1236 | - return $geodir_detail_page_tabs_key_value_array; |
|
| 1233 | + foreach ($geodir_detail_page_tabs_array as $key => $tabs_obj) {
|
|
| 1234 | + $geodir_detail_page_tabs_key_value_array[$key] = $tabs_obj['heading_text']; |
|
| 1235 | + } |
|
| 1236 | + return $geodir_detail_page_tabs_key_value_array; |
|
| 1237 | 1237 | } |
| 1238 | 1238 | |
| 1239 | 1239 | /** |
@@ -1246,73 +1246,73 @@ discard block |
||
| 1246 | 1246 | function geodir_detail_page_tabs_array() |
| 1247 | 1247 | {
|
| 1248 | 1248 | |
| 1249 | - $arr_tabs = array(); |
|
| 1250 | - /** |
|
| 1251 | - * Filter detail page tab display. |
|
| 1252 | - * |
|
| 1253 | - * @since 1.0.0 |
|
| 1254 | - */ |
|
| 1255 | - $arr_tabs['post_profile'] = array( |
|
| 1256 | - 'heading_text' => __('Profile', 'geodirectory'),
|
|
| 1257 | - 'is_active_tab' => true, |
|
| 1258 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
|
|
| 1259 | - 'tab_content' => '' |
|
| 1260 | - ); |
|
| 1261 | - $arr_tabs['post_info'] = array( |
|
| 1262 | - 'heading_text' => __('More Info', 'geodirectory'),
|
|
| 1263 | - 'is_active_tab' => false, |
|
| 1264 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
|
|
| 1265 | - 'tab_content' => '' |
|
| 1266 | - ); |
|
| 1267 | - |
|
| 1268 | - $arr_tabs['post_images'] = array( |
|
| 1269 | - 'heading_text' => __('Photo', 'geodirectory'),
|
|
| 1270 | - 'is_active_tab' => false, |
|
| 1271 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
|
|
| 1272 | - 'tab_content' => '' |
|
| 1273 | - ); |
|
| 1274 | - |
|
| 1275 | - $arr_tabs['post_video'] = array( |
|
| 1276 | - 'heading_text' => __('Video', 'geodirectory'),
|
|
| 1277 | - 'is_active_tab' => false, |
|
| 1278 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
|
|
| 1279 | - 'tab_content' => '' |
|
| 1280 | - ); |
|
| 1281 | - |
|
| 1282 | - $arr_tabs['special_offers'] = array( |
|
| 1283 | - 'heading_text' => __('Special Offers', 'geodirectory'),
|
|
| 1284 | - 'is_active_tab' => false, |
|
| 1285 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
|
|
| 1286 | - 'tab_content' => '' |
|
| 1287 | - ); |
|
| 1288 | - |
|
| 1289 | - $arr_tabs['post_map'] = array( |
|
| 1290 | - 'heading_text' => __('Map', 'geodirectory'),
|
|
| 1291 | - 'is_active_tab' => false, |
|
| 1292 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
|
|
| 1293 | - 'tab_content' => '' |
|
| 1294 | - ); |
|
| 1295 | - |
|
| 1296 | - $arr_tabs['reviews'] = array( |
|
| 1297 | - 'heading_text' => __('Reviews', 'geodirectory'),
|
|
| 1298 | - 'is_active_tab' => false, |
|
| 1299 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
|
|
| 1300 | - 'tab_content' => 'review display' |
|
| 1301 | - ); |
|
| 1302 | - |
|
| 1303 | - $arr_tabs['related_listing'] = array( |
|
| 1304 | - 'heading_text' => __('Related Listing', 'geodirectory'),
|
|
| 1305 | - 'is_active_tab' => false, |
|
| 1306 | - 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
|
|
| 1307 | - 'tab_content' => '' |
|
| 1308 | - ); |
|
| 1309 | - |
|
| 1310 | - /** |
|
| 1311 | - * Filter the tabs array. |
|
| 1312 | - * |
|
| 1313 | - * @since 1.0.0 |
|
| 1314 | - */ |
|
| 1315 | - return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
|
|
| 1249 | + $arr_tabs = array(); |
|
| 1250 | + /** |
|
| 1251 | + * Filter detail page tab display. |
|
| 1252 | + * |
|
| 1253 | + * @since 1.0.0 |
|
| 1254 | + */ |
|
| 1255 | + $arr_tabs['post_profile'] = array( |
|
| 1256 | + 'heading_text' => __('Profile', 'geodirectory'),
|
|
| 1257 | + 'is_active_tab' => true, |
|
| 1258 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_profile'),
|
|
| 1259 | + 'tab_content' => '' |
|
| 1260 | + ); |
|
| 1261 | + $arr_tabs['post_info'] = array( |
|
| 1262 | + 'heading_text' => __('More Info', 'geodirectory'),
|
|
| 1263 | + 'is_active_tab' => false, |
|
| 1264 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_info'),
|
|
| 1265 | + 'tab_content' => '' |
|
| 1266 | + ); |
|
| 1267 | + |
|
| 1268 | + $arr_tabs['post_images'] = array( |
|
| 1269 | + 'heading_text' => __('Photo', 'geodirectory'),
|
|
| 1270 | + 'is_active_tab' => false, |
|
| 1271 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_images'),
|
|
| 1272 | + 'tab_content' => '' |
|
| 1273 | + ); |
|
| 1274 | + |
|
| 1275 | + $arr_tabs['post_video'] = array( |
|
| 1276 | + 'heading_text' => __('Video', 'geodirectory'),
|
|
| 1277 | + 'is_active_tab' => false, |
|
| 1278 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_video'),
|
|
| 1279 | + 'tab_content' => '' |
|
| 1280 | + ); |
|
| 1281 | + |
|
| 1282 | + $arr_tabs['special_offers'] = array( |
|
| 1283 | + 'heading_text' => __('Special Offers', 'geodirectory'),
|
|
| 1284 | + 'is_active_tab' => false, |
|
| 1285 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'special_offers'),
|
|
| 1286 | + 'tab_content' => '' |
|
| 1287 | + ); |
|
| 1288 | + |
|
| 1289 | + $arr_tabs['post_map'] = array( |
|
| 1290 | + 'heading_text' => __('Map', 'geodirectory'),
|
|
| 1291 | + 'is_active_tab' => false, |
|
| 1292 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'post_map'),
|
|
| 1293 | + 'tab_content' => '' |
|
| 1294 | + ); |
|
| 1295 | + |
|
| 1296 | + $arr_tabs['reviews'] = array( |
|
| 1297 | + 'heading_text' => __('Reviews', 'geodirectory'),
|
|
| 1298 | + 'is_active_tab' => false, |
|
| 1299 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'reviews'),
|
|
| 1300 | + 'tab_content' => 'review display' |
|
| 1301 | + ); |
|
| 1302 | + |
|
| 1303 | + $arr_tabs['related_listing'] = array( |
|
| 1304 | + 'heading_text' => __('Related Listing', 'geodirectory'),
|
|
| 1305 | + 'is_active_tab' => false, |
|
| 1306 | + 'is_display' => apply_filters('geodir_detail_page_tab_is_display', true, 'related_listing'),
|
|
| 1307 | + 'tab_content' => '' |
|
| 1308 | + ); |
|
| 1309 | + |
|
| 1310 | + /** |
|
| 1311 | + * Filter the tabs array. |
|
| 1312 | + * |
|
| 1313 | + * @since 1.0.0 |
|
| 1314 | + */ |
|
| 1315 | + return apply_filters('geodir_detail_page_tab_list_extend', $arr_tabs);
|
|
| 1316 | 1316 | |
| 1317 | 1317 | |
| 1318 | 1318 | } |
@@ -1329,15 +1329,15 @@ discard block |
||
| 1329 | 1329 | {
|
| 1330 | 1330 | |
| 1331 | 1331 | |
| 1332 | - $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1333 | - $tabs_array = geodir_detail_page_tabs_array(); |
|
| 1334 | - if (!empty($tabs_excluded)) {
|
|
| 1335 | - foreach ($tabs_excluded as $tab) {
|
|
| 1336 | - if (array_key_exists($tab, $tabs_array)) |
|
| 1337 | - unset($tabs_array[$tab]); |
|
| 1338 | - } |
|
| 1339 | - } |
|
| 1340 | - return $tabs_array; |
|
| 1332 | + $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1333 | + $tabs_array = geodir_detail_page_tabs_array(); |
|
| 1334 | + if (!empty($tabs_excluded)) {
|
|
| 1335 | + foreach ($tabs_excluded as $tab) {
|
|
| 1336 | + if (array_key_exists($tab, $tabs_array)) |
|
| 1337 | + unset($tabs_array[$tab]); |
|
| 1338 | + } |
|
| 1339 | + } |
|
| 1340 | + return $tabs_array; |
|
| 1341 | 1341 | |
| 1342 | 1342 | } |
| 1343 | 1343 | |
@@ -1357,132 +1357,132 @@ discard block |
||
| 1357 | 1357 | function geodir_show_detail_page_tabs() |
| 1358 | 1358 | {
|
| 1359 | 1359 | |
| 1360 | - global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1360 | + global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1361 | 1361 | |
| 1362 | - $post_id = !empty($post) && isset($post->ID) ? (int)$post->ID : 0; |
|
| 1363 | - $request_post_id = !empty($_REQUEST['p']) ? (int)$_REQUEST['p'] : 0; |
|
| 1364 | - $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend |
|
| 1362 | + $post_id = !empty($post) && isset($post->ID) ? (int)$post->ID : 0; |
|
| 1363 | + $request_post_id = !empty($_REQUEST['p']) ? (int)$_REQUEST['p'] : 0; |
|
| 1364 | + $is_backend_preview = (is_single() && !empty($_REQUEST['post_type']) && !empty($_REQUEST['preview']) && !empty($_REQUEST['p'])) && is_super_admin() ? true : false; // skip if preview from backend |
|
| 1365 | 1365 | |
| 1366 | - if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
|
|
| 1367 | - $post = geodir_get_post_info($request_post_id); |
|
| 1368 | - setup_postdata($post); |
|
| 1369 | - } |
|
| 1366 | + if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
|
|
| 1367 | + $post = geodir_get_post_info($request_post_id); |
|
| 1368 | + setup_postdata($post); |
|
| 1369 | + } |
|
| 1370 | 1370 | |
| 1371 | - $geodir_post_detail_fields = geodir_show_listing_info('detail');
|
|
| 1371 | + $geodir_post_detail_fields = geodir_show_listing_info('detail');
|
|
| 1372 | 1372 | |
| 1373 | - if (geodir_is_page('detail')) {
|
|
| 1373 | + if (geodir_is_page('detail')) {
|
|
| 1374 | 1374 | |
| 1375 | - $video = geodir_get_video($post->ID); |
|
| 1376 | - $special_offers = geodir_get_special_offers($post->ID); |
|
| 1377 | - $related_listing_array = array(); |
|
| 1378 | - if (get_option('geodir_add_related_listing_posttypes'))
|
|
| 1379 | - $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 1375 | + $video = geodir_get_video($post->ID); |
|
| 1376 | + $special_offers = geodir_get_special_offers($post->ID); |
|
| 1377 | + $related_listing_array = array(); |
|
| 1378 | + if (get_option('geodir_add_related_listing_posttypes'))
|
|
| 1379 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 1380 | 1380 | |
| 1381 | - $related_listing = ''; |
|
| 1382 | - if (in_array($post->post_type, $related_listing_array)) {
|
|
| 1383 | - $request = array('post_number' => get_option('geodir_related_post_count'),
|
|
| 1384 | - 'relate_to' => get_option('geodir_related_post_relate_to'),
|
|
| 1385 | - 'layout' => get_option('geodir_related_post_listing_view'),
|
|
| 1386 | - 'add_location_filter' => get_option('geodir_related_post_location_filter'),
|
|
| 1387 | - 'list_sort' => get_option('geodir_related_post_sortby'),
|
|
| 1388 | - 'character_count' => get_option('geodir_related_post_excerpt'));
|
|
| 1381 | + $related_listing = ''; |
|
| 1382 | + if (in_array($post->post_type, $related_listing_array)) {
|
|
| 1383 | + $request = array('post_number' => get_option('geodir_related_post_count'),
|
|
| 1384 | + 'relate_to' => get_option('geodir_related_post_relate_to'),
|
|
| 1385 | + 'layout' => get_option('geodir_related_post_listing_view'),
|
|
| 1386 | + 'add_location_filter' => get_option('geodir_related_post_location_filter'),
|
|
| 1387 | + 'list_sort' => get_option('geodir_related_post_sortby'),
|
|
| 1388 | + 'character_count' => get_option('geodir_related_post_excerpt'));
|
|
| 1389 | 1389 | |
| 1390 | - $related_listing = geodir_related_posts_display($request); |
|
| 1391 | - } |
|
| 1390 | + $related_listing = geodir_related_posts_display($request); |
|
| 1391 | + } |
|
| 1392 | 1392 | |
| 1393 | - $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
| 1394 | - $thumb_image = ''; |
|
| 1395 | - if (!empty($post_images)) {
|
|
| 1396 | - foreach ($post_images as $image) {
|
|
| 1397 | - $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
| 1398 | - $thumb_image .= '<a href="' . $image->src . '" title="'.$caption.'">'; |
|
| 1399 | - $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
| 1400 | - $thumb_image .= '</a>'; |
|
| 1401 | - } |
|
| 1402 | - } |
|
| 1393 | + $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
| 1394 | + $thumb_image = ''; |
|
| 1395 | + if (!empty($post_images)) {
|
|
| 1396 | + foreach ($post_images as $image) {
|
|
| 1397 | + $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
| 1398 | + $thumb_image .= '<a href="' . $image->src . '" title="'.$caption.'">'; |
|
| 1399 | + $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
| 1400 | + $thumb_image .= '</a>'; |
|
| 1401 | + } |
|
| 1402 | + } |
|
| 1403 | 1403 | |
| 1404 | - $map_args = array(); |
|
| 1405 | - $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
|
| 1406 | - $map_args['width'] = '600'; |
|
| 1407 | - $map_args['height'] = '300'; |
|
| 1408 | - if ($post->post_mapzoom) {
|
|
| 1409 | - $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
| 1410 | - } |
|
| 1411 | - $map_args['autozoom'] = false; |
|
| 1412 | - $map_args['child_collapse'] = '0'; |
|
| 1413 | - $map_args['enable_cat_filters'] = false; |
|
| 1414 | - $map_args['enable_text_search'] = false; |
|
| 1415 | - $map_args['enable_post_type_filters'] = false; |
|
| 1416 | - $map_args['enable_location_filters'] = false; |
|
| 1417 | - $map_args['enable_jason_on_load'] = true; |
|
| 1418 | - $map_args['enable_map_direction'] = true; |
|
| 1419 | - $map_args['map_class_name'] = 'geodir-map-detail-page'; |
|
| 1420 | - $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
| 1421 | - |
|
| 1422 | - |
|
| 1423 | - } elseif (geodir_is_page('preview')) {
|
|
| 1424 | - |
|
| 1425 | - $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
| 1426 | - $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
| 1427 | - |
|
| 1428 | - if (isset($post->post_images)) |
|
| 1429 | - $post->post_images = trim($post->post_images, ","); |
|
| 1430 | - |
|
| 1431 | - if (isset($post->post_images) && !empty($post->post_images)) |
|
| 1432 | - $post_images = explode(",", $post->post_images);
|
|
| 1433 | - |
|
| 1434 | - $thumb_image = ''; |
|
| 1435 | - if (!empty($post_images)) {
|
|
| 1436 | - foreach ($post_images as $image) {
|
|
| 1437 | - if ($image != '') {
|
|
| 1438 | - $thumb_image .= '<a href="' . $image . '">'; |
|
| 1439 | - $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
|
|
| 1440 | - $thumb_image .= '</a>'; |
|
| 1441 | - } |
|
| 1442 | - } |
|
| 1443 | - } |
|
| 1404 | + $map_args = array(); |
|
| 1405 | + $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
|
| 1406 | + $map_args['width'] = '600'; |
|
| 1407 | + $map_args['height'] = '300'; |
|
| 1408 | + if ($post->post_mapzoom) {
|
|
| 1409 | + $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
| 1410 | + } |
|
| 1411 | + $map_args['autozoom'] = false; |
|
| 1412 | + $map_args['child_collapse'] = '0'; |
|
| 1413 | + $map_args['enable_cat_filters'] = false; |
|
| 1414 | + $map_args['enable_text_search'] = false; |
|
| 1415 | + $map_args['enable_post_type_filters'] = false; |
|
| 1416 | + $map_args['enable_location_filters'] = false; |
|
| 1417 | + $map_args['enable_jason_on_load'] = true; |
|
| 1418 | + $map_args['enable_map_direction'] = true; |
|
| 1419 | + $map_args['map_class_name'] = 'geodir-map-detail-page'; |
|
| 1420 | + $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
| 1421 | + |
|
| 1422 | + |
|
| 1423 | + } elseif (geodir_is_page('preview')) {
|
|
| 1424 | + |
|
| 1425 | + $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
| 1426 | + $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
| 1427 | + |
|
| 1428 | + if (isset($post->post_images)) |
|
| 1429 | + $post->post_images = trim($post->post_images, ","); |
|
| 1430 | + |
|
| 1431 | + if (isset($post->post_images) && !empty($post->post_images)) |
|
| 1432 | + $post_images = explode(",", $post->post_images);
|
|
| 1433 | + |
|
| 1434 | + $thumb_image = ''; |
|
| 1435 | + if (!empty($post_images)) {
|
|
| 1436 | + foreach ($post_images as $image) {
|
|
| 1437 | + if ($image != '') {
|
|
| 1438 | + $thumb_image .= '<a href="' . $image . '">'; |
|
| 1439 | + $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
|
|
| 1440 | + $thumb_image .= '</a>'; |
|
| 1441 | + } |
|
| 1442 | + } |
|
| 1443 | + } |
|
| 1444 | 1444 | |
| 1445 | - global $map_jason; |
|
| 1446 | - $map_jason[] = $post->marker_json; |
|
| 1445 | + global $map_jason; |
|
| 1446 | + $map_jason[] = $post->marker_json; |
|
| 1447 | 1447 | |
| 1448 | - $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
| 1449 | - $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
| 1450 | - $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
| 1451 | - $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
| 1452 | - if (!$mapzoom) {
|
|
| 1453 | - $mapzoom = 12; |
|
| 1454 | - } |
|
| 1448 | + $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
| 1449 | + $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
| 1450 | + $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
| 1451 | + $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
| 1452 | + if (!$mapzoom) {
|
|
| 1453 | + $mapzoom = 12; |
|
| 1454 | + } |
|
| 1455 | 1455 | |
| 1456 | - $map_args = array(); |
|
| 1457 | - $map_args['map_canvas_name'] = 'preview_map_canvas'; |
|
| 1458 | - $map_args['width'] = '950'; |
|
| 1459 | - $map_args['height'] = '300'; |
|
| 1460 | - $map_args['child_collapse'] = '0'; |
|
| 1461 | - $map_args['maptype'] = $mapview; |
|
| 1462 | - $map_args['autozoom'] = false; |
|
| 1463 | - $map_args['zoom'] = "$mapzoom"; |
|
| 1464 | - $map_args['latitude'] = $address_latitude; |
|
| 1465 | - $map_args['longitude'] = $address_longitude; |
|
| 1466 | - $map_args['enable_cat_filters'] = false; |
|
| 1467 | - $map_args['enable_text_search'] = false; |
|
| 1468 | - $map_args['enable_post_type_filters'] = false; |
|
| 1469 | - $map_args['enable_location_filters'] = false; |
|
| 1470 | - $map_args['enable_jason_on_load'] = true; |
|
| 1471 | - $map_args['enable_map_direction'] = true; |
|
| 1472 | - $map_args['map_class_name'] = 'geodir-map-preview-page'; |
|
| 1456 | + $map_args = array(); |
|
| 1457 | + $map_args['map_canvas_name'] = 'preview_map_canvas'; |
|
| 1458 | + $map_args['width'] = '950'; |
|
| 1459 | + $map_args['height'] = '300'; |
|
| 1460 | + $map_args['child_collapse'] = '0'; |
|
| 1461 | + $map_args['maptype'] = $mapview; |
|
| 1462 | + $map_args['autozoom'] = false; |
|
| 1463 | + $map_args['zoom'] = "$mapzoom"; |
|
| 1464 | + $map_args['latitude'] = $address_latitude; |
|
| 1465 | + $map_args['longitude'] = $address_longitude; |
|
| 1466 | + $map_args['enable_cat_filters'] = false; |
|
| 1467 | + $map_args['enable_text_search'] = false; |
|
| 1468 | + $map_args['enable_post_type_filters'] = false; |
|
| 1469 | + $map_args['enable_location_filters'] = false; |
|
| 1470 | + $map_args['enable_jason_on_load'] = true; |
|
| 1471 | + $map_args['enable_map_direction'] = true; |
|
| 1472 | + $map_args['map_class_name'] = 'geodir-map-preview-page'; |
|
| 1473 | 1473 | |
| 1474 | - } |
|
| 1474 | + } |
|
| 1475 | 1475 | |
| 1476 | 1476 | |
| 1477 | - $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
| 1477 | + $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
| 1478 | 1478 | |
| 1479 | - $active_tab_name = ''; |
|
| 1480 | - foreach($arr_detail_page_tabs as $tabs){
|
|
| 1481 | - if(isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && isset($tabs['heading_text']) && $tabs['heading_text']){
|
|
| 1482 | - $active_tab_name = __($tabs['heading_text'],'geodirectory'); |
|
| 1483 | - } |
|
| 1484 | - } |
|
| 1485 | - ?> |
|
| 1479 | + $active_tab_name = ''; |
|
| 1480 | + foreach($arr_detail_page_tabs as $tabs){
|
|
| 1481 | + if(isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && isset($tabs['heading_text']) && $tabs['heading_text']){
|
|
| 1482 | + $active_tab_name = __($tabs['heading_text'],'geodirectory'); |
|
| 1483 | + } |
|
| 1484 | + } |
|
| 1485 | + ?> |
|
| 1486 | 1486 | |
| 1487 | 1487 | <div class="geodir-tabs" id="gd-tabs" style="position:relative;"> |
| 1488 | 1488 | |
@@ -1494,19 +1494,19 @@ discard block |
||
| 1494 | 1494 | |
| 1495 | 1495 | <dl class="geodir-tab-head"> |
| 1496 | 1496 | <?php |
| 1497 | - /** |
|
| 1498 | - * Called before the details page tab list headings, inside the `dl` tag. |
|
| 1499 | - * |
|
| 1500 | - * @since 1.0.0 |
|
| 1501 | - * @see 'geodir_after_tab_list' |
|
| 1502 | - */ |
|
| 1503 | - do_action('geodir_before_tab_list'); ?>
|
|
| 1497 | + /** |
|
| 1498 | + * Called before the details page tab list headings, inside the `dl` tag. |
|
| 1499 | + * |
|
| 1500 | + * @since 1.0.0 |
|
| 1501 | + * @see 'geodir_after_tab_list' |
|
| 1502 | + */ |
|
| 1503 | + do_action('geodir_before_tab_list'); ?>
|
|
| 1504 | 1504 | <?php |
| 1505 | 1505 | |
| 1506 | 1506 | |
| 1507 | - foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
|
|
| 1508 | - if ($detail_page_tab['is_display']) {
|
|
| 1509 | - ?> |
|
| 1507 | + foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
|
|
| 1508 | + if ($detail_page_tab['is_display']) {
|
|
| 1509 | + ?> |
|
| 1510 | 1510 | <dt></dt> <!-- added to comply with validation --> |
| 1511 | 1511 | <dd <?php if ($detail_page_tab['is_active_tab']){ ?>class="geodir-tab-active"<?php }?> >
|
| 1512 | 1512 | <a data-tab="#<?php echo $tab_index;?>" |
@@ -1514,134 +1514,134 @@ discard block |
||
| 1514 | 1514 | </dd> |
| 1515 | 1515 | |
| 1516 | 1516 | <?php |
| 1517 | - ob_start() // start tab content buffering |
|
| 1518 | - ?> |
|
| 1517 | + ob_start() // start tab content buffering |
|
| 1518 | + ?> |
|
| 1519 | 1519 | <li id="<?php echo $tab_index;?>Tab" <?php if ($tab_index == 'post_profile') {
|
| 1520 | - //echo 'itemprop="description"'; |
|
| 1521 | - }?>> |
|
| 1520 | + //echo 'itemprop="description"'; |
|
| 1521 | + }?>> |
|
| 1522 | 1522 | <div id="<?php echo $tab_index;?>" class="hash-offset"></div> |
| 1523 | 1523 | <?php |
| 1524 | - /** |
|
| 1525 | - * Called before the details tab content is output per tab. |
|
| 1526 | - * |
|
| 1527 | - * @since 1.0.0 |
|
| 1528 | - * @param string $tab_index The tab name ID. |
|
| 1529 | - */ |
|
| 1530 | - do_action('geodir_before_tab_content', $tab_index);
|
|
| 1531 | - |
|
| 1532 | - /** |
|
| 1533 | - * Called before the details tab content is output per tab. |
|
| 1534 | - * |
|
| 1535 | - * Uses dynamic hook name: geodir_before_$tab_index_tab_content |
|
| 1536 | - * |
|
| 1537 | - * @since 1.0.0 |
|
| 1538 | - * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
|
| 1539 | - */ |
|
| 1540 | - do_action('geodir_before_' . $tab_index . '_tab_content');
|
|
| 1541 | - /// write a code to generate content of each tab |
|
| 1542 | - switch ($tab_index) {
|
|
| 1543 | - case 'post_profile': |
|
| 1544 | - /** |
|
| 1545 | - * Called before the listing description content on the details page tab. |
|
| 1546 | - * |
|
| 1547 | - * @since 1.0.0 |
|
| 1548 | - */ |
|
| 1549 | - do_action('geodir_before_description_on_listing_detail');
|
|
| 1550 | - if (geodir_is_page('detail')) {
|
|
| 1551 | - the_content(); |
|
| 1552 | - } else {
|
|
| 1553 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1554 | - echo apply_filters('the_content', stripslashes($post->post_desc));
|
|
| 1555 | - } |
|
| 1556 | - |
|
| 1557 | - /** |
|
| 1558 | - * Called after the listing description content on the details page tab. |
|
| 1559 | - * |
|
| 1560 | - * @since 1.0.0 |
|
| 1561 | - */ |
|
| 1562 | - do_action('geodir_after_description_on_listing_detail');
|
|
| 1563 | - break; |
|
| 1564 | - case 'post_info': |
|
| 1565 | - echo $geodir_post_detail_fields; |
|
| 1566 | - break; |
|
| 1567 | - case 'post_images': |
|
| 1568 | - echo $thumb_image; |
|
| 1569 | - break; |
|
| 1570 | - case 'post_video': |
|
| 1571 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1572 | - echo apply_filters('the_content', stripslashes($video));// we apply the_content filter so oembed works also;
|
|
| 1573 | - break; |
|
| 1574 | - case 'special_offers': |
|
| 1575 | - echo wpautop(stripslashes($special_offers)); |
|
| 1576 | - |
|
| 1577 | - break; |
|
| 1578 | - case 'post_map': |
|
| 1579 | - geodir_draw_map($map_args); |
|
| 1580 | - break; |
|
| 1581 | - case 'reviews': |
|
| 1582 | - comments_template(); |
|
| 1583 | - break; |
|
| 1584 | - case 'related_listing': |
|
| 1585 | - echo $related_listing; |
|
| 1586 | - break; |
|
| 1587 | - default: {
|
|
| 1588 | - if ((isset($post->$tab_index) || (!isset($post->$tab_index) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
|
|
| 1589 | - echo $detail_page_tab['tab_content']; |
|
| 1590 | - } |
|
| 1591 | - } |
|
| 1592 | - break; |
|
| 1593 | - } |
|
| 1594 | - |
|
| 1595 | - /** |
|
| 1596 | - * Called after the details tab content is output per tab. |
|
| 1597 | - * |
|
| 1598 | - * @since 1.0.0 |
|
| 1599 | - */ |
|
| 1600 | - do_action('geodir_after_tab_content', $tab_index);
|
|
| 1601 | - |
|
| 1602 | - /** |
|
| 1603 | - * Called after the details tab content is output per tab. |
|
| 1604 | - * |
|
| 1605 | - * Uses dynamic hook name: geodir_after_$tab_index_tab_content |
|
| 1606 | - * |
|
| 1607 | - * @since 1.0.0 |
|
| 1608 | - * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
|
| 1609 | - */ |
|
| 1610 | - do_action('geodir_after_' . $tab_index . '_tab_content');
|
|
| 1611 | - ?> </li> |
|
| 1524 | + /** |
|
| 1525 | + * Called before the details tab content is output per tab. |
|
| 1526 | + * |
|
| 1527 | + * @since 1.0.0 |
|
| 1528 | + * @param string $tab_index The tab name ID. |
|
| 1529 | + */ |
|
| 1530 | + do_action('geodir_before_tab_content', $tab_index);
|
|
| 1531 | + |
|
| 1532 | + /** |
|
| 1533 | + * Called before the details tab content is output per tab. |
|
| 1534 | + * |
|
| 1535 | + * Uses dynamic hook name: geodir_before_$tab_index_tab_content |
|
| 1536 | + * |
|
| 1537 | + * @since 1.0.0 |
|
| 1538 | + * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
|
| 1539 | + */ |
|
| 1540 | + do_action('geodir_before_' . $tab_index . '_tab_content');
|
|
| 1541 | + /// write a code to generate content of each tab |
|
| 1542 | + switch ($tab_index) {
|
|
| 1543 | + case 'post_profile': |
|
| 1544 | + /** |
|
| 1545 | + * Called before the listing description content on the details page tab. |
|
| 1546 | + * |
|
| 1547 | + * @since 1.0.0 |
|
| 1548 | + */ |
|
| 1549 | + do_action('geodir_before_description_on_listing_detail');
|
|
| 1550 | + if (geodir_is_page('detail')) {
|
|
| 1551 | + the_content(); |
|
| 1552 | + } else {
|
|
| 1553 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1554 | + echo apply_filters('the_content', stripslashes($post->post_desc));
|
|
| 1555 | + } |
|
| 1556 | + |
|
| 1557 | + /** |
|
| 1558 | + * Called after the listing description content on the details page tab. |
|
| 1559 | + * |
|
| 1560 | + * @since 1.0.0 |
|
| 1561 | + */ |
|
| 1562 | + do_action('geodir_after_description_on_listing_detail');
|
|
| 1563 | + break; |
|
| 1564 | + case 'post_info': |
|
| 1565 | + echo $geodir_post_detail_fields; |
|
| 1566 | + break; |
|
| 1567 | + case 'post_images': |
|
| 1568 | + echo $thumb_image; |
|
| 1569 | + break; |
|
| 1570 | + case 'post_video': |
|
| 1571 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1572 | + echo apply_filters('the_content', stripslashes($video));// we apply the_content filter so oembed works also;
|
|
| 1573 | + break; |
|
| 1574 | + case 'special_offers': |
|
| 1575 | + echo wpautop(stripslashes($special_offers)); |
|
| 1576 | + |
|
| 1577 | + break; |
|
| 1578 | + case 'post_map': |
|
| 1579 | + geodir_draw_map($map_args); |
|
| 1580 | + break; |
|
| 1581 | + case 'reviews': |
|
| 1582 | + comments_template(); |
|
| 1583 | + break; |
|
| 1584 | + case 'related_listing': |
|
| 1585 | + echo $related_listing; |
|
| 1586 | + break; |
|
| 1587 | + default: {
|
|
| 1588 | + if ((isset($post->$tab_index) || (!isset($post->$tab_index) && (strpos($tab_index, 'gd_tab_') !== false || $tab_index == 'link_business'))) && !empty($detail_page_tab['tab_content'])) {
|
|
| 1589 | + echo $detail_page_tab['tab_content']; |
|
| 1590 | + } |
|
| 1591 | + } |
|
| 1592 | + break; |
|
| 1593 | + } |
|
| 1594 | + |
|
| 1595 | + /** |
|
| 1596 | + * Called after the details tab content is output per tab. |
|
| 1597 | + * |
|
| 1598 | + * @since 1.0.0 |
|
| 1599 | + */ |
|
| 1600 | + do_action('geodir_after_tab_content', $tab_index);
|
|
| 1601 | + |
|
| 1602 | + /** |
|
| 1603 | + * Called after the details tab content is output per tab. |
|
| 1604 | + * |
|
| 1605 | + * Uses dynamic hook name: geodir_after_$tab_index_tab_content |
|
| 1606 | + * |
|
| 1607 | + * @since 1.0.0 |
|
| 1608 | + * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
|
| 1609 | + */ |
|
| 1610 | + do_action('geodir_after_' . $tab_index . '_tab_content');
|
|
| 1611 | + ?> </li> |
|
| 1612 | 1612 | <?php |
| 1613 | - /** |
|
| 1614 | - * Filter the current tab content. |
|
| 1615 | - * |
|
| 1616 | - * @since 1.0.0 |
|
| 1617 | - */ |
|
| 1618 | - $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean());
|
|
| 1619 | - } // end of if for is_display |
|
| 1620 | - }// end of foreach |
|
| 1621 | - |
|
| 1622 | - /** |
|
| 1623 | - * Called after the details page tab list headings, inside the `dl` tag. |
|
| 1624 | - * |
|
| 1625 | - * @since 1.0.0 |
|
| 1626 | - * @see 'geodir_before_tab_list' |
|
| 1627 | - */ |
|
| 1628 | - do_action('geodir_after_tab_list');
|
|
| 1629 | - ?> |
|
| 1613 | + /** |
|
| 1614 | + * Filter the current tab content. |
|
| 1615 | + * |
|
| 1616 | + * @since 1.0.0 |
|
| 1617 | + */ |
|
| 1618 | + $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean());
|
|
| 1619 | + } // end of if for is_display |
|
| 1620 | + }// end of foreach |
|
| 1621 | + |
|
| 1622 | + /** |
|
| 1623 | + * Called after the details page tab list headings, inside the `dl` tag. |
|
| 1624 | + * |
|
| 1625 | + * @since 1.0.0 |
|
| 1626 | + * @see 'geodir_before_tab_list' |
|
| 1627 | + */ |
|
| 1628 | + do_action('geodir_after_tab_list');
|
|
| 1629 | + ?> |
|
| 1630 | 1630 | </dl> |
| 1631 | 1631 | <ul class="geodir-tabs-content entry-content" style="position:relative;"> |
| 1632 | 1632 | <?php |
| 1633 | - foreach ($arr_detail_page_tabs as $detail_page_tab) {
|
|
| 1634 | - if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
|
|
| 1635 | - echo $detail_page_tab['tab_content']; |
|
| 1636 | - }// end of if |
|
| 1637 | - }// end of foreach |
|
| 1638 | - |
|
| 1639 | - /** |
|
| 1640 | - * Called after all the tab content is output in `li` tags, called before the closing `ul` tag. |
|
| 1641 | - * |
|
| 1642 | - * @since 1.0.0 |
|
| 1643 | - */ |
|
| 1644 | - do_action('geodir_add_tab_content'); ?>
|
|
| 1633 | + foreach ($arr_detail_page_tabs as $detail_page_tab) {
|
|
| 1634 | + if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
|
|
| 1635 | + echo $detail_page_tab['tab_content']; |
|
| 1636 | + }// end of if |
|
| 1637 | + }// end of foreach |
|
| 1638 | + |
|
| 1639 | + /** |
|
| 1640 | + * Called after all the tab content is output in `li` tags, called before the closing `ul` tag. |
|
| 1641 | + * |
|
| 1642 | + * @since 1.0.0 |
|
| 1643 | + */ |
|
| 1644 | + do_action('geodir_add_tab_content'); ?>
|
|
| 1645 | 1645 | </ul> |
| 1646 | 1646 | <!--gd-tabs-content ul end--> |
| 1647 | 1647 | </div> |
@@ -1678,120 +1678,120 @@ discard block |
||
| 1678 | 1678 | */ |
| 1679 | 1679 | function geodir_exif($file) |
| 1680 | 1680 | {
|
| 1681 | - if (empty($file) || !is_array($file)) {
|
|
| 1682 | - return $file; |
|
| 1683 | - } |
|
| 1681 | + if (empty($file) || !is_array($file)) {
|
|
| 1682 | + return $file; |
|
| 1683 | + } |
|
| 1684 | 1684 | |
| 1685 | - $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
| 1686 | - if (!($file_path && file_exists($file_path))) {
|
|
| 1687 | - return $file; |
|
| 1688 | - } |
|
| 1689 | - $file['file'] = $file_path; |
|
| 1685 | + $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
| 1686 | + if (!($file_path && file_exists($file_path))) {
|
|
| 1687 | + return $file; |
|
| 1688 | + } |
|
| 1689 | + $file['file'] = $file_path; |
|
| 1690 | 1690 | |
| 1691 | - if (!file_is_valid_image($file_path)) {
|
|
| 1692 | - return $file; // Bail if file is not an image. |
|
| 1693 | - } |
|
| 1691 | + if (!file_is_valid_image($file_path)) {
|
|
| 1692 | + return $file; // Bail if file is not an image. |
|
| 1693 | + } |
|
| 1694 | 1694 | |
| 1695 | - if (!function_exists('wp_get_image_editor') || !function_exists('exif_read_data')) {
|
|
| 1696 | - return $file; |
|
| 1697 | - } |
|
| 1695 | + if (!function_exists('wp_get_image_editor') || !function_exists('exif_read_data')) {
|
|
| 1696 | + return $file; |
|
| 1697 | + } |
|
| 1698 | 1698 | |
| 1699 | - $exif = exif_read_data($file_path); |
|
| 1699 | + $exif = exif_read_data($file_path); |
|
| 1700 | 1700 | |
| 1701 | - $rotate = false; |
|
| 1702 | - $flip = false; |
|
| 1703 | - $modify = false; |
|
| 1704 | - $orientation = 0; |
|
| 1705 | - if (!empty($exif) && isset($exif['Orientation'])) {
|
|
| 1706 | - switch ((int)$exif['Orientation']) {
|
|
| 1707 | - case 1: |
|
| 1708 | - // do nothing |
|
| 1709 | - break; |
|
| 1710 | - case 2: |
|
| 1711 | - $flip = array(false, true); |
|
| 1712 | - $modify = true; |
|
| 1713 | - break; |
|
| 1714 | - case 3: |
|
| 1715 | - $orientation = -180; |
|
| 1716 | - $rotate = true; |
|
| 1717 | - $modify = true; |
|
| 1718 | - break; |
|
| 1719 | - case 4: |
|
| 1720 | - $flip = array(true, false); |
|
| 1721 | - $modify = true; |
|
| 1722 | - break; |
|
| 1723 | - case 5: |
|
| 1724 | - $orientation = -90; |
|
| 1725 | - $rotate = true; |
|
| 1726 | - $flip = array(false, true); |
|
| 1727 | - $modify = true; |
|
| 1728 | - break; |
|
| 1729 | - case 6: |
|
| 1730 | - $orientation = -90; |
|
| 1731 | - $rotate = true; |
|
| 1732 | - $modify = true; |
|
| 1733 | - break; |
|
| 1734 | - case 7: |
|
| 1735 | - $orientation = -270; |
|
| 1736 | - $rotate = true; |
|
| 1737 | - $flip = array(false, true); |
|
| 1738 | - $modify = true; |
|
| 1739 | - break; |
|
| 1740 | - case 8: |
|
| 1741 | - case 9: |
|
| 1742 | - $orientation = -270; |
|
| 1743 | - $rotate = true; |
|
| 1744 | - $modify = true; |
|
| 1745 | - break; |
|
| 1746 | - default: |
|
| 1747 | - $orientation = 0; |
|
| 1748 | - $rotate = true; |
|
| 1749 | - $modify = true; |
|
| 1750 | - break; |
|
| 1751 | - } |
|
| 1752 | - } |
|
| 1701 | + $rotate = false; |
|
| 1702 | + $flip = false; |
|
| 1703 | + $modify = false; |
|
| 1704 | + $orientation = 0; |
|
| 1705 | + if (!empty($exif) && isset($exif['Orientation'])) {
|
|
| 1706 | + switch ((int)$exif['Orientation']) {
|
|
| 1707 | + case 1: |
|
| 1708 | + // do nothing |
|
| 1709 | + break; |
|
| 1710 | + case 2: |
|
| 1711 | + $flip = array(false, true); |
|
| 1712 | + $modify = true; |
|
| 1713 | + break; |
|
| 1714 | + case 3: |
|
| 1715 | + $orientation = -180; |
|
| 1716 | + $rotate = true; |
|
| 1717 | + $modify = true; |
|
| 1718 | + break; |
|
| 1719 | + case 4: |
|
| 1720 | + $flip = array(true, false); |
|
| 1721 | + $modify = true; |
|
| 1722 | + break; |
|
| 1723 | + case 5: |
|
| 1724 | + $orientation = -90; |
|
| 1725 | + $rotate = true; |
|
| 1726 | + $flip = array(false, true); |
|
| 1727 | + $modify = true; |
|
| 1728 | + break; |
|
| 1729 | + case 6: |
|
| 1730 | + $orientation = -90; |
|
| 1731 | + $rotate = true; |
|
| 1732 | + $modify = true; |
|
| 1733 | + break; |
|
| 1734 | + case 7: |
|
| 1735 | + $orientation = -270; |
|
| 1736 | + $rotate = true; |
|
| 1737 | + $flip = array(false, true); |
|
| 1738 | + $modify = true; |
|
| 1739 | + break; |
|
| 1740 | + case 8: |
|
| 1741 | + case 9: |
|
| 1742 | + $orientation = -270; |
|
| 1743 | + $rotate = true; |
|
| 1744 | + $modify = true; |
|
| 1745 | + break; |
|
| 1746 | + default: |
|
| 1747 | + $orientation = 0; |
|
| 1748 | + $rotate = true; |
|
| 1749 | + $modify = true; |
|
| 1750 | + break; |
|
| 1751 | + } |
|
| 1752 | + } |
|
| 1753 | 1753 | |
| 1754 | - $mime_type = $file['type']; |
|
| 1755 | - $quality = null; |
|
| 1756 | - /** |
|
| 1757 | - * Filter the image quality. |
|
| 1758 | - * |
|
| 1759 | - * @since 1.5.7 |
|
| 1760 | - * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
|
| 1761 | - * @param string $quality Image mime type. |
|
| 1762 | - */ |
|
| 1763 | - $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
|
|
| 1764 | - if ($quality !== null) {
|
|
| 1765 | - $modify = true; |
|
| 1766 | - } |
|
| 1754 | + $mime_type = $file['type']; |
|
| 1755 | + $quality = null; |
|
| 1756 | + /** |
|
| 1757 | + * Filter the image quality. |
|
| 1758 | + * |
|
| 1759 | + * @since 1.5.7 |
|
| 1760 | + * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
|
| 1761 | + * @param string $quality Image mime type. |
|
| 1762 | + */ |
|
| 1763 | + $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
|
|
| 1764 | + if ($quality !== null) {
|
|
| 1765 | + $modify = true; |
|
| 1766 | + } |
|
| 1767 | 1767 | |
| 1768 | - if (!$modify) {
|
|
| 1769 | - return $file; // no change |
|
| 1770 | - } |
|
| 1768 | + if (!$modify) {
|
|
| 1769 | + return $file; // no change |
|
| 1770 | + } |
|
| 1771 | 1771 | |
| 1772 | - $image = wp_get_image_editor($file_path); |
|
| 1773 | - if (!is_wp_error($image)) {
|
|
| 1774 | - if ($rotate) {
|
|
| 1775 | - $image->rotate($orientation); |
|
| 1776 | - } |
|
| 1772 | + $image = wp_get_image_editor($file_path); |
|
| 1773 | + if (!is_wp_error($image)) {
|
|
| 1774 | + if ($rotate) {
|
|
| 1775 | + $image->rotate($orientation); |
|
| 1776 | + } |
|
| 1777 | 1777 | |
| 1778 | - if (!empty($flip)) {
|
|
| 1779 | - $image->flip($flip[0], $flip[1]); |
|
| 1780 | - } |
|
| 1778 | + if (!empty($flip)) {
|
|
| 1779 | + $image->flip($flip[0], $flip[1]); |
|
| 1780 | + } |
|
| 1781 | 1781 | |
| 1782 | - if ($quality !== null) {
|
|
| 1783 | - $image->set_quality((int)$quality); |
|
| 1784 | - } |
|
| 1782 | + if ($quality !== null) {
|
|
| 1783 | + $image->set_quality((int)$quality); |
|
| 1784 | + } |
|
| 1785 | 1785 | |
| 1786 | - $result = $image->save($file_path); |
|
| 1787 | - if (!is_wp_error($result)) {
|
|
| 1788 | - $file['file'] = $result['path']; |
|
| 1789 | - $file['tmp_name'] = $result['path']; |
|
| 1790 | - } |
|
| 1791 | - } |
|
| 1786 | + $result = $image->save($file_path); |
|
| 1787 | + if (!is_wp_error($result)) {
|
|
| 1788 | + $file['file'] = $result['path']; |
|
| 1789 | + $file['tmp_name'] = $result['path']; |
|
| 1790 | + } |
|
| 1791 | + } |
|
| 1792 | 1792 | |
| 1793 | - // The image orientation is fixed, pass it back for further processing |
|
| 1794 | - return $file; |
|
| 1793 | + // The image orientation is fixed, pass it back for further processing |
|
| 1794 | + return $file; |
|
| 1795 | 1795 | } |
| 1796 | 1796 | |
| 1797 | 1797 | /** |
@@ -1810,138 +1810,138 @@ discard block |
||
| 1810 | 1810 | * @return string Returns the recent reviews html. |
| 1811 | 1811 | */ |
| 1812 | 1812 | function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
|
| 1813 | - global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session; |
|
| 1814 | - $tablecomments = $wpdb->comments; |
|
| 1815 | - $tableposts = $wpdb->posts; |
|
| 1816 | - |
|
| 1817 | - $comments_echo = ''; |
|
| 1818 | - $city_filter = ''; |
|
| 1819 | - $region_filter = ''; |
|
| 1820 | - $country_filter = ''; |
|
| 1821 | - |
|
| 1822 | - if ($gd_session->get('gd_multi_location')) {
|
|
| 1823 | - if ($gd_ses_country = $gd_session->get('gd_country')) {
|
|
| 1824 | - $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
|
|
| 1825 | - } |
|
| 1813 | + global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session; |
|
| 1814 | + $tablecomments = $wpdb->comments; |
|
| 1815 | + $tableposts = $wpdb->posts; |
|
| 1816 | + |
|
| 1817 | + $comments_echo = ''; |
|
| 1818 | + $city_filter = ''; |
|
| 1819 | + $region_filter = ''; |
|
| 1820 | + $country_filter = ''; |
|
| 1821 | + |
|
| 1822 | + if ($gd_session->get('gd_multi_location')) {
|
|
| 1823 | + if ($gd_ses_country = $gd_session->get('gd_country')) {
|
|
| 1824 | + $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
|
|
| 1825 | + } |
|
| 1826 | 1826 | |
| 1827 | - if ($gd_ses_region = $gd_session->get('gd_region')) {
|
|
| 1828 | - $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
|
|
| 1829 | - } |
|
| 1827 | + if ($gd_ses_region = $gd_session->get('gd_region')) {
|
|
| 1828 | + $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
|
|
| 1829 | + } |
|
| 1830 | 1830 | |
| 1831 | - if ($gd_ses_city = $gd_session->get('gd_city')) {
|
|
| 1832 | - $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
|
|
| 1833 | - } |
|
| 1834 | - } |
|
| 1831 | + if ($gd_ses_city = $gd_session->get('gd_city')) {
|
|
| 1832 | + $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
|
|
| 1833 | + } |
|
| 1834 | + } |
|
| 1835 | 1835 | |
| 1836 | - $review_table = GEODIR_REVIEW_TABLE; |
|
| 1837 | - $request = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments"; |
|
| 1838 | - |
|
| 1839 | - $comments = $wpdb->get_results($request); |
|
| 1840 | - |
|
| 1841 | - foreach ($comments as $comment) {
|
|
| 1842 | - // Set the extra comment info needed. |
|
| 1843 | - $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
|
|
| 1844 | - //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"; |
|
| 1845 | - $comment->comment_content = $comment_extra->comment_content; |
|
| 1846 | - $comment->comment_author = $comment_extra->comment_author; |
|
| 1847 | - $comment->comment_author_email = $comment_extra->comment_author_email; |
|
| 1848 | - |
|
| 1849 | - $comment_id = ''; |
|
| 1850 | - $comment_id = $comment->comment_ID; |
|
| 1851 | - $comment_content = strip_tags($comment->comment_content); |
|
| 1852 | - |
|
| 1853 | - $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
|
|
| 1854 | - |
|
| 1855 | - $permalink = get_permalink($comment->ID) . "#comment-" . $comment->comment_ID; |
|
| 1856 | - $comment_author_email = $comment->comment_author_email; |
|
| 1857 | - $comment_post_ID = $comment->post_id; |
|
| 1858 | - |
|
| 1859 | - $na = true; |
|
| 1860 | - if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
|
|
| 1861 | - $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false); |
|
| 1862 | - if ($comment_post_ID == $comment_post_ID2) {
|
|
| 1863 | - } else {
|
|
| 1864 | - $na = false; |
|
| 1865 | - } |
|
| 1866 | - } |
|
| 1836 | + $review_table = GEODIR_REVIEW_TABLE; |
|
| 1837 | + $request = "SELECT r.id as ID, r.post_type, r.comment_id as comment_ID, r.post_date as comment_date,r.overall_rating, r.user_id, r.post_id FROM $review_table as r WHERE r.post_status = 1 AND r.status =1 AND r.overall_rating>=1 $country_filter $region_filter $city_filter ORDER BY r.post_date DESC, r.id DESC LIMIT $no_comments"; |
|
| 1838 | + |
|
| 1839 | + $comments = $wpdb->get_results($request); |
|
| 1840 | + |
|
| 1841 | + foreach ($comments as $comment) {
|
|
| 1842 | + // Set the extra comment info needed. |
|
| 1843 | + $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
|
|
| 1844 | + //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"; |
|
| 1845 | + $comment->comment_content = $comment_extra->comment_content; |
|
| 1846 | + $comment->comment_author = $comment_extra->comment_author; |
|
| 1847 | + $comment->comment_author_email = $comment_extra->comment_author_email; |
|
| 1848 | + |
|
| 1849 | + $comment_id = ''; |
|
| 1850 | + $comment_id = $comment->comment_ID; |
|
| 1851 | + $comment_content = strip_tags($comment->comment_content); |
|
| 1852 | + |
|
| 1853 | + $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
|
|
| 1854 | + |
|
| 1855 | + $permalink = get_permalink($comment->ID) . "#comment-" . $comment->comment_ID; |
|
| 1856 | + $comment_author_email = $comment->comment_author_email; |
|
| 1857 | + $comment_post_ID = $comment->post_id; |
|
| 1858 | + |
|
| 1859 | + $na = true; |
|
| 1860 | + if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
|
|
| 1861 | + $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false); |
|
| 1862 | + if ($comment_post_ID == $comment_post_ID2) {
|
|
| 1863 | + } else {
|
|
| 1864 | + $na = false; |
|
| 1865 | + } |
|
| 1866 | + } |
|
| 1867 | 1867 | |
| 1868 | - $post_title = get_the_title($comment_post_ID); |
|
| 1869 | - $permalink = get_permalink($comment_post_ID); |
|
| 1870 | - $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
| 1871 | - $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __('Read more', 'geodirectory') . '</a>';
|
|
| 1868 | + $post_title = get_the_title($comment_post_ID); |
|
| 1869 | + $permalink = get_permalink($comment_post_ID); |
|
| 1870 | + $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
| 1871 | + $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __('Read more', 'geodirectory') . '</a>';
|
|
| 1872 | 1872 | |
| 1873 | - $comment_content_length = strlen($comment_content); |
|
| 1874 | - if ($comment_content_length > $comment_lenth) {
|
|
| 1875 | - $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth) . '... ' . $read_more; |
|
| 1876 | - } else {
|
|
| 1877 | - $comment_excerpt = $comment_content; |
|
| 1878 | - } |
|
| 1873 | + $comment_content_length = strlen($comment_content); |
|
| 1874 | + if ($comment_content_length > $comment_lenth) {
|
|
| 1875 | + $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth) . '... ' . $read_more; |
|
| 1876 | + } else {
|
|
| 1877 | + $comment_excerpt = $comment_content; |
|
| 1878 | + } |
|
| 1879 | 1879 | |
| 1880 | - if ($comment->user_id) {
|
|
| 1881 | - $user_profile_url = get_author_posts_url($comment->user_id); |
|
| 1882 | - } else {
|
|
| 1883 | - $user_profile_url = ''; |
|
| 1884 | - } |
|
| 1880 | + if ($comment->user_id) {
|
|
| 1881 | + $user_profile_url = get_author_posts_url($comment->user_id); |
|
| 1882 | + } else {
|
|
| 1883 | + $user_profile_url = ''; |
|
| 1884 | + } |
|
| 1885 | 1885 | |
| 1886 | - if ($comment_id && $na) {
|
|
| 1887 | - $comments_echo .= '<li class="clearfix">'; |
|
| 1888 | - $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
| 1889 | - if (function_exists('get_avatar')) {
|
|
| 1890 | - if (!isset($comment->comment_type)) {
|
|
| 1891 | - if ($user_profile_url) {
|
|
| 1892 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1893 | - } |
|
| 1894 | - $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1895 | - if ($user_profile_url) {
|
|
| 1896 | - $comments_echo .= '</a>'; |
|
| 1897 | - } |
|
| 1898 | - } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
|
|
| 1899 | - if ($user_profile_url) {
|
|
| 1900 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1901 | - } |
|
| 1902 | - $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1903 | - } |
|
| 1904 | - } elseif (function_exists('gravatar')) {
|
|
| 1905 | - if ($user_profile_url) {
|
|
| 1906 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1907 | - } |
|
| 1908 | - $comments_echo .= "<img src=\""; |
|
| 1909 | - if ('' == $comment->comment_type) {
|
|
| 1910 | - $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1911 | - if ($user_profile_url) {
|
|
| 1912 | - $comments_echo .= '</a>'; |
|
| 1913 | - } |
|
| 1914 | - } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
|
|
| 1915 | - if ($user_profile_url) {
|
|
| 1916 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1917 | - } |
|
| 1918 | - $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1919 | - if ($user_profile_url) {
|
|
| 1920 | - $comments_echo .= '</a>'; |
|
| 1921 | - } |
|
| 1922 | - } |
|
| 1923 | - $comments_echo .= "\" alt=\"\" class=\"avatar\" />"; |
|
| 1924 | - } |
|
| 1886 | + if ($comment_id && $na) {
|
|
| 1887 | + $comments_echo .= '<li class="clearfix">'; |
|
| 1888 | + $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
| 1889 | + if (function_exists('get_avatar')) {
|
|
| 1890 | + if (!isset($comment->comment_type)) {
|
|
| 1891 | + if ($user_profile_url) {
|
|
| 1892 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1893 | + } |
|
| 1894 | + $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1895 | + if ($user_profile_url) {
|
|
| 1896 | + $comments_echo .= '</a>'; |
|
| 1897 | + } |
|
| 1898 | + } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
|
|
| 1899 | + if ($user_profile_url) {
|
|
| 1900 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1901 | + } |
|
| 1902 | + $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1903 | + } |
|
| 1904 | + } elseif (function_exists('gravatar')) {
|
|
| 1905 | + if ($user_profile_url) {
|
|
| 1906 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1907 | + } |
|
| 1908 | + $comments_echo .= "<img src=\""; |
|
| 1909 | + if ('' == $comment->comment_type) {
|
|
| 1910 | + $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1911 | + if ($user_profile_url) {
|
|
| 1912 | + $comments_echo .= '</a>'; |
|
| 1913 | + } |
|
| 1914 | + } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
|
|
| 1915 | + if ($user_profile_url) {
|
|
| 1916 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1917 | + } |
|
| 1918 | + $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1919 | + if ($user_profile_url) {
|
|
| 1920 | + $comments_echo .= '</a>'; |
|
| 1921 | + } |
|
| 1922 | + } |
|
| 1923 | + $comments_echo .= "\" alt=\"\" class=\"avatar\" />"; |
|
| 1924 | + } |
|
| 1925 | 1925 | |
| 1926 | - $comments_echo .= "</span>\n"; |
|
| 1927 | - |
|
| 1928 | - $comments_echo .= '<span class="geodir_reviewer_content">'; |
|
| 1929 | - if($comment->user_id){$comments_echo .= '<a href="'.get_author_posts_url( $comment->user_id ).'">';}
|
|
| 1930 | - $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
| 1931 | - if($comment->user_id){$comments_echo .= '</a>';}
|
|
| 1932 | - $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __('reviewed', 'geodirectory') . '</span> ';
|
|
| 1933 | - $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
| 1934 | - $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
| 1935 | - $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
| 1936 | - //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
|
|
| 1937 | - $comments_echo .= '</p>'; |
|
| 1938 | - |
|
| 1939 | - $comments_echo .= "</span>\n"; |
|
| 1940 | - $comments_echo .= '</li>'; |
|
| 1941 | - } |
|
| 1942 | - } |
|
| 1926 | + $comments_echo .= "</span>\n"; |
|
| 1927 | + |
|
| 1928 | + $comments_echo .= '<span class="geodir_reviewer_content">'; |
|
| 1929 | + if($comment->user_id){$comments_echo .= '<a href="'.get_author_posts_url( $comment->user_id ).'">';}
|
|
| 1930 | + $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
| 1931 | + if($comment->user_id){$comments_echo .= '</a>';}
|
|
| 1932 | + $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __('reviewed', 'geodirectory') . '</span> ';
|
|
| 1933 | + $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
| 1934 | + $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
| 1935 | + $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
| 1936 | + //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
|
|
| 1937 | + $comments_echo .= '</p>'; |
|
| 1938 | + |
|
| 1939 | + $comments_echo .= "</span>\n"; |
|
| 1940 | + $comments_echo .= '</li>'; |
|
| 1941 | + } |
|
| 1942 | + } |
|
| 1943 | 1943 | |
| 1944 | - return $comments_echo; |
|
| 1944 | + return $comments_echo; |
|
| 1945 | 1945 | } |
| 1946 | 1946 | |
| 1947 | 1947 | /** |
@@ -1953,29 +1953,29 @@ discard block |
||
| 1953 | 1953 | */ |
| 1954 | 1954 | function geodir_home_map_cats_key_value_array() |
| 1955 | 1955 | {
|
| 1956 | - $post_types = geodir_get_posttypes('object');
|
|
| 1956 | + $post_types = geodir_get_posttypes('object');
|
|
| 1957 | 1957 | |
| 1958 | - $return = array(); |
|
| 1959 | - if (!empty($post_types)) {
|
|
| 1960 | - foreach ($post_types as $key => $post_type) {
|
|
| 1961 | - $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
| 1962 | - $post_type_name = sprintf(__('%s Categories', 'geodirectory'),$cpt_name);
|
|
| 1963 | - $taxonomies = geodir_get_taxonomies($key); |
|
| 1964 | - $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : NULL; |
|
| 1965 | - $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : NULL; |
|
| 1958 | + $return = array(); |
|
| 1959 | + if (!empty($post_types)) {
|
|
| 1960 | + foreach ($post_types as $key => $post_type) {
|
|
| 1961 | + $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
| 1962 | + $post_type_name = sprintf(__('%s Categories', 'geodirectory'),$cpt_name);
|
|
| 1963 | + $taxonomies = geodir_get_taxonomies($key); |
|
| 1964 | + $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : NULL; |
|
| 1965 | + $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : NULL; |
|
| 1966 | 1966 | |
| 1967 | - if (!empty($cat_terms)) {
|
|
| 1968 | - $return['optgroup_start-' . $key] = $post_type_name; |
|
| 1967 | + if (!empty($cat_terms)) {
|
|
| 1968 | + $return['optgroup_start-' . $key] = $post_type_name; |
|
| 1969 | 1969 | |
| 1970 | - foreach ($cat_terms as $cat_term) {
|
|
| 1971 | - $return[$key . '_' . $cat_term->term_id] = $cat_term->name; |
|
| 1972 | - } |
|
| 1970 | + foreach ($cat_terms as $cat_term) {
|
|
| 1971 | + $return[$key . '_' . $cat_term->term_id] = $cat_term->name; |
|
| 1972 | + } |
|
| 1973 | 1973 | |
| 1974 | - $return['optgroup_end-' . $key] = $post_type_name; |
|
| 1975 | - } |
|
| 1976 | - } |
|
| 1977 | - } |
|
| 1978 | - return $return; |
|
| 1974 | + $return['optgroup_end-' . $key] = $post_type_name; |
|
| 1975 | + } |
|
| 1976 | + } |
|
| 1977 | + } |
|
| 1978 | + return $return; |
|
| 1979 | 1979 | } |
| 1980 | 1980 | |
| 1981 | 1981 | /** |
@@ -1987,7 +1987,7 @@ discard block |
||
| 1987 | 1987 | */ |
| 1988 | 1988 | function geodir_twitter_tweet_button() |
| 1989 | 1989 | {
|
| 1990 | - ?> |
|
| 1990 | + ?> |
|
| 1991 | 1991 | <a href="http://twitter.com/share" |
| 1992 | 1992 | class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
|
| 1993 | 1993 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
@@ -2005,11 +2005,11 @@ discard block |
||
| 2005 | 2005 | */ |
| 2006 | 2006 | function geodir_fb_like_button() |
| 2007 | 2007 | {
|
| 2008 | - global $post; |
|
| 2009 | - ?> |
|
| 2008 | + global $post; |
|
| 2009 | + ?> |
|
| 2010 | 2010 | <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
|
| 2011 | - echo 'allowtransparency="true"'; |
|
| 2012 | - } ?> class="facebook" |
|
| 2011 | + echo 'allowtransparency="true"'; |
|
| 2012 | + } ?> class="facebook" |
|
| 2013 | 2013 | src="//www.facebook.com/plugins/like.php?href=<?php echo urlencode(get_permalink($post->ID)); ?>&layout=button_count&show_faces=false&width=100&action=like&colorscheme=light" |
| 2014 | 2014 | style="border:none; overflow:hidden; width:100px; height:20px"></iframe> |
| 2015 | 2015 | <?php |
@@ -2025,7 +2025,7 @@ discard block |
||
| 2025 | 2025 | */ |
| 2026 | 2026 | function geodir_google_plus_button() |
| 2027 | 2027 | {
|
| 2028 | - ?> |
|
| 2028 | + ?> |
|
| 2029 | 2029 | <div id="plusone-div" class="g-plusone" data-size="medium"></div> |
| 2030 | 2030 | <script type="text/javascript"> |
| 2031 | 2031 | (function () {
|
@@ -2051,8 +2051,8 @@ discard block |
||
| 2051 | 2051 | */ |
| 2052 | 2052 | function geodir_share_this_button_code() |
| 2053 | 2053 | {
|
| 2054 | - global $post; |
|
| 2055 | - ?> |
|
| 2054 | + global $post; |
|
| 2055 | + ?> |
|
| 2056 | 2056 | <div class="addthis_toolbox addthis_default_style"> |
| 2057 | 2057 | <span id='st_sharethis'></span> |
| 2058 | 2058 | <script type="text/javascript">var switchTo5x = false;</script> |
@@ -20,468 +20,468 @@ discard block |
||
| 20 | 20 | function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '') |
| 21 | 21 | {
|
| 22 | 22 | |
| 23 | - $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
|
| 24 | - if (!empty($post_cat_ids)) |
|
| 25 | - $post_cat_array = explode(",", trim($post_cat_ids, ","));
|
|
| 26 | - |
|
| 27 | - if (!isset($default_cat) || empty($default_cat)) {
|
|
| 28 | - $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
|
| 29 | - }else{
|
|
| 30 | - if(!is_int($default_cat)){
|
|
| 31 | - $category = get_term_by('name', $default_cat, $taxonomy);
|
|
| 32 | - if(isset($category->term_id)){
|
|
| 33 | - $default_cat = $category->term_id; |
|
| 34 | - } |
|
| 35 | - } |
|
| 23 | + $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
|
| 24 | + if (!empty($post_cat_ids)) |
|
| 25 | + $post_cat_array = explode(",", trim($post_cat_ids, ","));
|
|
| 26 | + |
|
| 27 | + if (!isset($default_cat) || empty($default_cat)) {
|
|
| 28 | + $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
|
| 29 | + }else{
|
|
| 30 | + if(!is_int($default_cat)){
|
|
| 31 | + $category = get_term_by('name', $default_cat, $taxonomy);
|
|
| 32 | + if(isset($category->term_id)){
|
|
| 33 | + $default_cat = $category->term_id; |
|
| 34 | + } |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - } |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | 39 | |
| 40 | - geodir_save_post_meta($post_id, 'default_category', $default_cat); |
|
| 40 | + geodir_save_post_meta($post_id, 'default_category', $default_cat); |
|
| 41 | 41 | |
| 42 | - if (isset($category_str) && empty($category_str)) {
|
|
| 42 | + if (isset($category_str) && empty($category_str)) {
|
|
| 43 | 43 | |
| 44 | - $post_cat_str = ''; |
|
| 45 | - $post_categories = array(); |
|
| 46 | - if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
|
|
| 47 | - $post_cat_str = implode(",y:#", $post_cat_array);
|
|
| 48 | - $post_cat_str .= ",y:"; |
|
| 49 | - $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
|
|
| 50 | - } |
|
| 51 | - $post_categories[$taxonomy] = $post_cat_str; |
|
| 52 | - $category_str = $post_categories; |
|
| 53 | - } |
|
| 44 | + $post_cat_str = ''; |
|
| 45 | + $post_categories = array(); |
|
| 46 | + if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
|
|
| 47 | + $post_cat_str = implode(",y:#", $post_cat_array);
|
|
| 48 | + $post_cat_str .= ",y:"; |
|
| 49 | + $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
|
|
| 50 | + } |
|
| 51 | + $post_categories[$taxonomy] = $post_cat_str; |
|
| 52 | + $category_str = $post_categories; |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - $change_cat_str = $category_str[$taxonomy]; |
|
| 55 | + $change_cat_str = $category_str[$taxonomy]; |
|
| 56 | 56 | |
| 57 | - $default_pos = strpos($change_cat_str, 'd:'); |
|
| 57 | + $default_pos = strpos($change_cat_str, 'd:'); |
|
| 58 | 58 | |
| 59 | - if ($default_pos === false) {
|
|
| 59 | + if ($default_pos === false) {
|
|
| 60 | 60 | |
| 61 | - $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
| 61 | + $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
| 62 | 62 | |
| 63 | - } |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | - $category_str[$taxonomy] = $change_cat_str; |
|
| 65 | + $category_str[$taxonomy] = $change_cat_str; |
|
| 66 | 66 | |
| 67 | - update_post_meta($post_id, 'post_categories', $category_str); |
|
| 67 | + update_post_meta($post_id, 'post_categories', $category_str); |
|
| 68 | 68 | |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | |
| 72 | 72 | if (!function_exists('geodir_save_listing')) {
|
| 73 | - /** |
|
| 74 | - * Saves listing in the database using given information. |
|
| 75 | - * |
|
| 76 | - * @since 1.0.0 |
|
| 77 | - * @since 1.5.4 New parameter $wp_error added. |
|
| 78 | - * @package GeoDirectory |
|
| 79 | - * @global object $wpdb WordPress Database object. |
|
| 80 | - * @global object $post The current post object. |
|
| 81 | - * @global object $current_user Current user object. |
|
| 73 | + /** |
|
| 74 | + * Saves listing in the database using given information. |
|
| 75 | + * |
|
| 76 | + * @since 1.0.0 |
|
| 77 | + * @since 1.5.4 New parameter $wp_error added. |
|
| 78 | + * @package GeoDirectory |
|
| 79 | + * @global object $wpdb WordPress Database object. |
|
| 80 | + * @global object $post The current post object. |
|
| 81 | + * @global object $current_user Current user object. |
|
| 82 | 82 | * @global object $gd_session GeoDirectory Session object. |
| 83 | - * @param array $request_info {
|
|
| 84 | - * Array of request info arguments. |
|
| 85 | - * |
|
| 86 | - * @type string $action Ajax action name. |
|
| 87 | - * @type string $geodir_ajax Ajax type. |
|
| 88 | - * @type string $ajax_action Ajax action. |
|
| 89 | - * @type string $listing_type Listing type. |
|
| 90 | - * @type string $pid Default Post ID. |
|
| 91 | - * @type string $preview Todo Desc needed. |
|
| 92 | - * @type string $add_listing_page_id Add listing page ID. |
|
| 93 | - * @type string $post_title Listing title. |
|
| 94 | - * @type string $post_desc Listing Description. |
|
| 95 | - * @type string $post_tags Listing tags. |
|
| 96 | - * @type array $cat_limit Category limit. |
|
| 97 | - * @type array $post_category Category IDs. |
|
| 98 | - * @type array $post_category_str Category string. |
|
| 99 | - * @type string $post_default_category Default category ID. |
|
| 100 | - * @type string $post_address Listing address. |
|
| 101 | - * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
| 102 | - * @type string $post_country Listing country. |
|
| 103 | - * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
| 104 | - * @type string $post_region Listing region. |
|
| 105 | - * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
| 106 | - * @type string $post_city Listing city. |
|
| 107 | - * @type string $post_zip Listing zip. |
|
| 108 | - * @type string $post_latitude Listing latitude. |
|
| 109 | - * @type string $post_longitude Listing longitude. |
|
| 110 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 111 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 112 | - * @type string $geodir_timing Business timing info. |
|
| 113 | - * @type string $geodir_contact Contact number. |
|
| 114 | - * @type string $geodir_email Business contact email. |
|
| 115 | - * @type string $geodir_website Business website. |
|
| 116 | - * @type string $geodir_twitter Twitter link. |
|
| 117 | - * @type string $geodir_facebook Facebook link. |
|
| 118 | - * @type string $geodir_video Video link. |
|
| 119 | - * @type string $geodir_special_offers Speacial offers. |
|
| 120 | - * @type string $post_images Post image urls. |
|
| 121 | - * @type string $post_imagesimage_limit Post images limit. |
|
| 122 | - * @type string $post_imagestotImg Todo Desc needed. |
|
| 123 | - * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
| 124 | - * @type string $geodir_spamblocker Todo Desc needed. |
|
| 125 | - * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
| 126 | - * |
|
| 127 | - * } |
|
| 128 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 129 | - * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
| 130 | - * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
| 131 | - */ |
|
| 132 | - function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
| 133 | - {
|
|
| 134 | - global $wpdb, $current_user, $gd_session; |
|
| 135 | - |
|
| 136 | - $last_post_id = ''; |
|
| 137 | - |
|
| 138 | - if ($gd_session->get('listing') && !$dummy) {
|
|
| 139 | - $request_info = array(); |
|
| 140 | - $request_session = $gd_session->get('listing');
|
|
| 141 | - $request_info = array_merge($_REQUEST, $request_session); |
|
| 142 | - } else if (!$gd_session->get('listing') && !$dummy) {
|
|
| 143 | - global $post; |
|
| 144 | - $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 145 | - $request_info['post_title'] = $request_info['post_title']; |
|
| 146 | - $request_info['listing_type'] = $post->post_type; |
|
| 147 | - $request_info['post_desc'] = $request_info['content']; |
|
| 148 | - } else if (!$dummy) {
|
|
| 149 | - return false; |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - /** |
|
| 153 | - * Filter the request_info array. |
|
| 154 | - * |
|
| 155 | - * You can use this filter to modify request_info array. |
|
| 156 | - * |
|
| 157 | - * @since 1.0.0 |
|
| 158 | - * @package GeoDirectory |
|
| 159 | - * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 160 | - */ |
|
| 161 | - $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 162 | - |
|
| 163 | - // Check if we need to save post location as new location |
|
| 164 | - $location_result = geodir_get_default_location(); |
|
| 165 | - |
|
| 166 | - if ($location_result->location_id > 0) {
|
|
| 167 | - if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 168 | - $request_info['post_location'] = array( |
|
| 169 | - 'city' => $request_info['post_city'], |
|
| 170 | - 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 171 | - 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 172 | - 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 173 | - 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 174 | - ); |
|
| 175 | - |
|
| 176 | - $post_location_info = $request_info['post_location']; |
|
| 177 | - |
|
| 178 | - if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 179 | - $post_location_id = $location_id; |
|
| 180 | - } |
|
| 181 | - } else {
|
|
| 182 | - $post_location_id = $location_result->location_id; |
|
| 183 | - } |
|
| 184 | - } else {
|
|
| 185 | - $post_location_id = $location_result->location_id; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - if ($dummy) {
|
|
| 189 | - $post_status = 'publish'; |
|
| 190 | - } else {
|
|
| 191 | - $post_status = geodir_new_post_default_status(); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 195 | - $post_status = get_post_status($request_info['pid']); |
|
| 196 | - } |
|
| 197 | - |
|
| 198 | - /* fix change of slug on every title edit */ |
|
| 199 | - if (!isset($request_info['post_name'])) {
|
|
| 200 | - $request_info['post_name'] = $request_info['post_title']; |
|
| 201 | - |
|
| 202 | - if (!empty($request_info['pid'])) {
|
|
| 203 | - $post_info = get_post($request_info['pid']); |
|
| 204 | - |
|
| 205 | - if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 206 | - $request_info['post_name'] = $post_info->post_name; |
|
| 207 | - } |
|
| 208 | - } |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - $post = array( |
|
| 212 | - 'post_content' => $request_info['post_desc'], |
|
| 213 | - 'post_status' => $post_status, |
|
| 214 | - 'post_title' => $request_info['post_title'], |
|
| 215 | - 'post_name' => $request_info['post_name'], |
|
| 216 | - 'post_type' => $request_info['listing_type'] |
|
| 217 | - ); |
|
| 218 | - |
|
| 219 | - /** |
|
| 220 | - * Called before a listing is saved to the database. |
|
| 221 | - * |
|
| 222 | - * @since 1.0.0 |
|
| 223 | - * @param object $post The post object. |
|
| 224 | - */ |
|
| 225 | - do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 83 | + * @param array $request_info {
|
|
| 84 | + * Array of request info arguments. |
|
| 85 | + * |
|
| 86 | + * @type string $action Ajax action name. |
|
| 87 | + * @type string $geodir_ajax Ajax type. |
|
| 88 | + * @type string $ajax_action Ajax action. |
|
| 89 | + * @type string $listing_type Listing type. |
|
| 90 | + * @type string $pid Default Post ID. |
|
| 91 | + * @type string $preview Todo Desc needed. |
|
| 92 | + * @type string $add_listing_page_id Add listing page ID. |
|
| 93 | + * @type string $post_title Listing title. |
|
| 94 | + * @type string $post_desc Listing Description. |
|
| 95 | + * @type string $post_tags Listing tags. |
|
| 96 | + * @type array $cat_limit Category limit. |
|
| 97 | + * @type array $post_category Category IDs. |
|
| 98 | + * @type array $post_category_str Category string. |
|
| 99 | + * @type string $post_default_category Default category ID. |
|
| 100 | + * @type string $post_address Listing address. |
|
| 101 | + * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
| 102 | + * @type string $post_country Listing country. |
|
| 103 | + * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
| 104 | + * @type string $post_region Listing region. |
|
| 105 | + * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
| 106 | + * @type string $post_city Listing city. |
|
| 107 | + * @type string $post_zip Listing zip. |
|
| 108 | + * @type string $post_latitude Listing latitude. |
|
| 109 | + * @type string $post_longitude Listing longitude. |
|
| 110 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 111 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 112 | + * @type string $geodir_timing Business timing info. |
|
| 113 | + * @type string $geodir_contact Contact number. |
|
| 114 | + * @type string $geodir_email Business contact email. |
|
| 115 | + * @type string $geodir_website Business website. |
|
| 116 | + * @type string $geodir_twitter Twitter link. |
|
| 117 | + * @type string $geodir_facebook Facebook link. |
|
| 118 | + * @type string $geodir_video Video link. |
|
| 119 | + * @type string $geodir_special_offers Speacial offers. |
|
| 120 | + * @type string $post_images Post image urls. |
|
| 121 | + * @type string $post_imagesimage_limit Post images limit. |
|
| 122 | + * @type string $post_imagestotImg Todo Desc needed. |
|
| 123 | + * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
| 124 | + * @type string $geodir_spamblocker Todo Desc needed. |
|
| 125 | + * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
| 126 | + * |
|
| 127 | + * } |
|
| 128 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 129 | + * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
| 130 | + * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
| 131 | + */ |
|
| 132 | + function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
| 133 | + {
|
|
| 134 | + global $wpdb, $current_user, $gd_session; |
|
| 135 | + |
|
| 136 | + $last_post_id = ''; |
|
| 137 | + |
|
| 138 | + if ($gd_session->get('listing') && !$dummy) {
|
|
| 139 | + $request_info = array(); |
|
| 140 | + $request_session = $gd_session->get('listing');
|
|
| 141 | + $request_info = array_merge($_REQUEST, $request_session); |
|
| 142 | + } else if (!$gd_session->get('listing') && !$dummy) {
|
|
| 143 | + global $post; |
|
| 144 | + $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 145 | + $request_info['post_title'] = $request_info['post_title']; |
|
| 146 | + $request_info['listing_type'] = $post->post_type; |
|
| 147 | + $request_info['post_desc'] = $request_info['content']; |
|
| 148 | + } else if (!$dummy) {
|
|
| 149 | + return false; |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + /** |
|
| 153 | + * Filter the request_info array. |
|
| 154 | + * |
|
| 155 | + * You can use this filter to modify request_info array. |
|
| 156 | + * |
|
| 157 | + * @since 1.0.0 |
|
| 158 | + * @package GeoDirectory |
|
| 159 | + * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 160 | + */ |
|
| 161 | + $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 162 | + |
|
| 163 | + // Check if we need to save post location as new location |
|
| 164 | + $location_result = geodir_get_default_location(); |
|
| 165 | + |
|
| 166 | + if ($location_result->location_id > 0) {
|
|
| 167 | + if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 168 | + $request_info['post_location'] = array( |
|
| 169 | + 'city' => $request_info['post_city'], |
|
| 170 | + 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 171 | + 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 172 | + 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 173 | + 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 174 | + ); |
|
| 175 | + |
|
| 176 | + $post_location_info = $request_info['post_location']; |
|
| 177 | + |
|
| 178 | + if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 179 | + $post_location_id = $location_id; |
|
| 180 | + } |
|
| 181 | + } else {
|
|
| 182 | + $post_location_id = $location_result->location_id; |
|
| 183 | + } |
|
| 184 | + } else {
|
|
| 185 | + $post_location_id = $location_result->location_id; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + if ($dummy) {
|
|
| 189 | + $post_status = 'publish'; |
|
| 190 | + } else {
|
|
| 191 | + $post_status = geodir_new_post_default_status(); |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 195 | + $post_status = get_post_status($request_info['pid']); |
|
| 196 | + } |
|
| 226 | 197 | |
| 227 | - $send_post_submit_mail = false; |
|
| 198 | + /* fix change of slug on every title edit */ |
|
| 199 | + if (!isset($request_info['post_name'])) {
|
|
| 200 | + $request_info['post_name'] = $request_info['post_title']; |
|
| 201 | + |
|
| 202 | + if (!empty($request_info['pid'])) {
|
|
| 203 | + $post_info = get_post($request_info['pid']); |
|
| 204 | + |
|
| 205 | + if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 206 | + $request_info['post_name'] = $post_info->post_name; |
|
| 207 | + } |
|
| 208 | + } |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + $post = array( |
|
| 212 | + 'post_content' => $request_info['post_desc'], |
|
| 213 | + 'post_status' => $post_status, |
|
| 214 | + 'post_title' => $request_info['post_title'], |
|
| 215 | + 'post_name' => $request_info['post_name'], |
|
| 216 | + 'post_type' => $request_info['listing_type'] |
|
| 217 | + ); |
|
| 218 | + |
|
| 219 | + /** |
|
| 220 | + * Called before a listing is saved to the database. |
|
| 221 | + * |
|
| 222 | + * @since 1.0.0 |
|
| 223 | + * @param object $post The post object. |
|
| 224 | + */ |
|
| 225 | + do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 226 | + |
|
| 227 | + $send_post_submit_mail = false; |
|
| 228 | + |
|
| 229 | + // unhook this function so it doesn't loop infinitely |
|
| 230 | + remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 231 | + |
|
| 232 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 233 | + $post['ID'] = $request_info['pid']; |
|
| 234 | + |
|
| 235 | + $last_post_id = wp_update_post($post, $wp_error); |
|
| 236 | + } else {
|
|
| 237 | + $last_post_id = wp_insert_post($post, $wp_error); |
|
| 238 | + |
|
| 239 | + if (!$dummy && $last_post_id) {
|
|
| 240 | + $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
| 241 | + //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 242 | + } |
|
| 243 | + } |
|
| 228 | 244 | |
| 229 | - // unhook this function so it doesn't loop infinitely |
|
| 230 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 245 | + if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 246 | + return $last_post_id; // Return WP_Error on save failure. |
|
| 247 | + } |
|
| 231 | 248 | |
| 232 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 233 | - $post['ID'] = $request_info['pid']; |
|
| 249 | + if (!$last_post_id) {
|
|
| 250 | + return false; // Save failure. |
|
| 251 | + } |
|
| 234 | 252 | |
| 235 | - $last_post_id = wp_update_post($post, $wp_error); |
|
| 236 | - } else {
|
|
| 237 | - $last_post_id = wp_insert_post($post, $wp_error); |
|
| 253 | + // re-hook this function |
|
| 254 | + add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 238 | 255 | |
| 239 | - if (!$dummy && $last_post_id) {
|
|
| 240 | - $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
| 241 | - //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 242 | - } |
|
| 243 | - } |
|
| 256 | + $post_tags = ''; |
|
| 257 | + if (!isset($request_info['post_tags'])) {
|
|
| 244 | 258 | |
| 245 | - if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 246 | - return $last_post_id; // Return WP_Error on save failure. |
|
| 247 | - } |
|
| 259 | + $post_type = $request_info['listing_type']; |
|
| 260 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 248 | 261 | |
| 249 | - if (!$last_post_id) {
|
|
| 250 | - return false; // Save failure. |
|
| 251 | - } |
|
| 262 | + } |
|
| 252 | 263 | |
| 253 | - // re-hook this function |
|
| 254 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 264 | + $gd_post_info = array( |
|
| 265 | + "post_title" => $request_info['post_title'], |
|
| 266 | + "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 267 | + "post_status" => $post_status, |
|
| 268 | + "post_location_id" => $post_location_id, |
|
| 269 | + "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 270 | + "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 271 | + "submit_time" => time(), |
|
| 272 | + "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 273 | + ); |
|
| 255 | 274 | |
| 256 | - $post_tags = ''; |
|
| 257 | - if (!isset($request_info['post_tags'])) {
|
|
| 275 | + $payment_info = array(); |
|
| 276 | + $package_info = array(); |
|
| 258 | 277 | |
| 259 | - $post_type = $request_info['listing_type']; |
|
| 260 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 278 | + $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 261 | 279 | |
| 262 | - } |
|
| 280 | + $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 263 | 281 | |
| 264 | - $gd_post_info = array( |
|
| 265 | - "post_title" => $request_info['post_title'], |
|
| 266 | - "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 267 | - "post_status" => $post_status, |
|
| 268 | - "post_location_id" => $post_location_id, |
|
| 269 | - "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 270 | - "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 271 | - "submit_time" => time(), |
|
| 272 | - "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 273 | - ); |
|
| 282 | + if (!empty($package_info) && !$post_package_id) {
|
|
| 283 | + if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 284 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 285 | + } else {
|
|
| 286 | + $payment_info['expire_date'] = 'Never'; |
|
| 287 | + } |
|
| 274 | 288 | |
| 275 | - $payment_info = array(); |
|
| 276 | - $package_info = array(); |
|
| 289 | + $payment_info['package_id'] = $package_info['pid']; |
|
| 290 | + $payment_info['alive_days'] = $package_info['days']; |
|
| 291 | + $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 277 | 292 | |
| 278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 293 | + $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 294 | + } |
|
| 279 | 295 | |
| 280 | - $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 296 | + $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 281 | 297 | |
| 282 | - if (!empty($package_info) && !$post_package_id) {
|
|
| 283 | - if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 284 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 285 | - } else {
|
|
| 286 | - $payment_info['expire_date'] = 'Never'; |
|
| 287 | - } |
|
| 298 | + foreach ($custom_metaboxes as $key => $val): |
|
| 288 | 299 | |
| 289 | - $payment_info['package_id'] = $package_info['pid']; |
|
| 290 | - $payment_info['alive_days'] = $package_info['days']; |
|
| 291 | - $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 300 | + $name = $val['name']; |
|
| 301 | + $type = $val['type']; |
|
| 302 | + $extrafields = $val['extra_fields']; |
|
| 292 | 303 | |
| 293 | - $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 294 | - } |
|
| 304 | + if (trim($type) == 'address') {
|
|
| 305 | + $prefix = $name . '_'; |
|
| 306 | + $address = $prefix . 'address'; |
|
| 295 | 307 | |
| 296 | - $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 308 | + if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 309 | + $gd_post_info[$address] = $request_info[$address]; |
|
| 310 | + } |
|
| 297 | 311 | |
| 298 | - foreach ($custom_metaboxes as $key => $val): |
|
| 312 | + if ($extrafields != '') {
|
|
| 313 | + $extrafields = unserialize($extrafields); |
|
| 299 | 314 | |
| 300 | - $name = $val['name']; |
|
| 301 | - $type = $val['type']; |
|
| 302 | - $extrafields = $val['extra_fields']; |
|
| 303 | 315 | |
| 304 | - if (trim($type) == 'address') {
|
|
| 305 | - $prefix = $name . '_'; |
|
| 306 | - $address = $prefix . 'address'; |
|
| 316 | + if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 307 | 317 | |
| 308 | - if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 309 | - $gd_post_info[$address] = $request_info[$address]; |
|
| 310 | - } |
|
| 318 | + $location_result = geodir_get_default_location(); |
|
| 311 | 319 | |
| 312 | - if ($extrafields != '') {
|
|
| 313 | - $extrafields = unserialize($extrafields); |
|
| 320 | + $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | + $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | + $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 314 | 323 | |
| 324 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 315 | 325 | |
| 316 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 326 | + } else {
|
|
| 317 | 327 | |
| 318 | - $location_result = geodir_get_default_location(); |
|
| 328 | + $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | + $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | + $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 319 | 331 | |
| 320 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 332 | + //----------set post locations when import dummy data------- |
|
| 333 | + $location_result = geodir_get_default_location(); |
|
| 323 | 334 | |
| 324 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 335 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 336 | + //----------------------------------------------------------------- |
|
| 325 | 337 | |
| 326 | - } else {
|
|
| 338 | + } |
|
| 327 | 339 | |
| 328 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 331 | 340 | |
| 332 | - //----------set post locations when import dummy data------- |
|
| 333 | - $location_result = geodir_get_default_location(); |
|
| 341 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | + $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 343 | + } |
|
| 334 | 344 | |
| 335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 336 | - //----------------------------------------------------------------- |
|
| 337 | 345 | |
| 338 | - } |
|
| 346 | + if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 339 | 347 | |
| 348 | + if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | + $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 350 | + } |
|
| 340 | 351 | |
| 341 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 343 | - } |
|
| 352 | + if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | + $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 354 | + } |
|
| 344 | 355 | |
| 356 | + if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | + $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 358 | + } |
|
| 345 | 359 | |
| 346 | - if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 360 | + if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | + $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 362 | + } |
|
| 347 | 363 | |
| 348 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 350 | - } |
|
| 364 | + } |
|
| 351 | 365 | |
| 352 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 354 | - } |
|
| 366 | + // show lat lng |
|
| 367 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | + $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 369 | + } |
|
| 370 | + } |
|
| 355 | 371 | |
| 356 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 358 | - } |
|
| 372 | + } elseif (trim($type) == 'file') {
|
|
| 373 | + if (isset($request_info[$name])) {
|
|
| 374 | + $request_files = array(); |
|
| 375 | + if ($request_info[$name] != '') |
|
| 376 | + $request_files = explode(",", $request_info[$name]);
|
|
| 359 | 377 | |
| 360 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 362 | - } |
|
| 378 | + $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 379 | + geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 363 | 380 | |
| 364 | - } |
|
| 381 | + } |
|
| 382 | + } elseif (trim($type) == 'datepicker') {
|
|
| 383 | + $datetime = ''; |
|
| 384 | + if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 385 | + $date_format = geodir_default_date_format(); |
|
| 386 | + if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 387 | + $extra_fields = unserialize($val['extra_fields']); |
|
| 388 | + $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 389 | + } |
|
| 365 | 390 | |
| 366 | - // show lat lng |
|
| 367 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 369 | - } |
|
| 370 | - } |
|
| 391 | + $search = array('dd', 'mm', 'yy');
|
|
| 392 | + $replace = array('d', 'm', 'Y');
|
|
| 371 | 393 | |
| 372 | - } elseif (trim($type) == 'file') {
|
|
| 373 | - if (isset($request_info[$name])) {
|
|
| 374 | - $request_files = array(); |
|
| 375 | - if ($request_info[$name] != '') |
|
| 376 | - $request_files = explode(",", $request_info[$name]);
|
|
| 394 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 377 | 395 | |
| 378 | - $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 379 | - geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 396 | + $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; // PHP doesn't work well with dd/mm/yyyy format
|
|
| 380 | 397 | |
| 381 | - } |
|
| 382 | - } elseif (trim($type) == 'datepicker') {
|
|
| 383 | - $datetime = ''; |
|
| 384 | - if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 385 | - $date_format = geodir_default_date_format(); |
|
| 386 | - if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 387 | - $extra_fields = unserialize($val['extra_fields']); |
|
| 388 | - $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 389 | - } |
|
| 398 | + $datetime = date("Y-m-d", strtotime($post_htmlvar_value));
|
|
| 399 | + } |
|
| 400 | + $gd_post_info[$name] = $datetime; |
|
| 401 | + } else if ($type == 'multiselect') {
|
|
| 402 | + if (isset($request_info[$name])) {
|
|
| 403 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 404 | + } else {
|
|
| 405 | + if (isset($request_info['gd_field_' . $name])) {
|
|
| 406 | + $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 407 | + } |
|
| 408 | + } |
|
| 409 | + } else if (isset($request_info[$name])) {
|
|
| 410 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 411 | + } |
|
| 390 | 412 | |
| 391 | - $search = array('dd', 'mm', 'yy');
|
|
| 392 | - $replace = array('d', 'm', 'Y');
|
|
| 413 | + endforeach; |
|
| 393 | 414 | |
| 394 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 415 | + if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 416 | + $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 417 | + } |
|
| 395 | 418 | |
| 396 | - $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name]; // PHP doesn't work well with dd/mm/yyyy format
|
|
| 419 | + // Save post detail info in detail table |
|
| 420 | + if (!empty($gd_post_info)) {
|
|
| 421 | + geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 422 | + } |
|
| 397 | 423 | |
| 398 | - $datetime = date("Y-m-d", strtotime($post_htmlvar_value));
|
|
| 399 | - } |
|
| 400 | - $gd_post_info[$name] = $datetime; |
|
| 401 | - } else if ($type == 'multiselect') {
|
|
| 402 | - if (isset($request_info[$name])) {
|
|
| 403 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 404 | - } else {
|
|
| 405 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 406 | - $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 407 | - } |
|
| 408 | - } |
|
| 409 | - } else if (isset($request_info[$name])) {
|
|
| 410 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 411 | - } |
|
| 412 | 424 | |
| 413 | - endforeach; |
|
| 425 | + // Set categories to the listing |
|
| 426 | + if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 427 | + $post_category = array(); |
|
| 414 | 428 | |
| 415 | - if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 416 | - $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 417 | - } |
|
| 429 | + foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 418 | 430 | |
| 419 | - // Save post detail info in detail table |
|
| 420 | - if (!empty($gd_post_info)) {
|
|
| 421 | - geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 422 | - } |
|
| 431 | + if ($dummy) |
|
| 432 | + $post_category = $cat; |
|
| 433 | + else {
|
|
| 423 | 434 | |
| 435 | + if (!is_array($cat) && strstr($cat, ',')) |
|
| 436 | + $cat = explode(',', $cat);
|
|
| 424 | 437 | |
| 425 | - // Set categories to the listing |
|
| 426 | - if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 427 | - $post_category = array(); |
|
| 438 | + if (!empty($cat) && is_array($cat)) |
|
| 439 | + $post_category = array_map('intval', $cat);
|
|
| 440 | + } |
|
| 428 | 441 | |
| 429 | - foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 442 | + wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 443 | + } |
|
| 430 | 444 | |
| 431 | - if ($dummy) |
|
| 432 | - $post_category = $cat; |
|
| 433 | - else {
|
|
| 445 | + $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 434 | 446 | |
| 435 | - if (!is_array($cat) && strstr($cat, ',')) |
|
| 436 | - $cat = explode(',', $cat);
|
|
| 447 | + $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 448 | + geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 437 | 449 | |
| 438 | - if (!empty($cat) && is_array($cat)) |
|
| 439 | - $post_category = array_map('intval', $cat);
|
|
| 440 | - } |
|
| 450 | + } |
|
| 441 | 451 | |
| 442 | - wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 443 | - } |
|
| 452 | + $post_tags = ''; |
|
| 453 | + // Set tags to the listing |
|
| 454 | + if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 455 | + $post_tags = explode(",", $request_info['post_tags']);
|
|
| 456 | + } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 457 | + if ($dummy) |
|
| 458 | + $post_tags = $request_info['post_tags']; |
|
| 459 | + } else {
|
|
| 460 | + if ($dummy) |
|
| 461 | + $post_tags = array($request_info['post_title']); |
|
| 462 | + } |
|
| 444 | 463 | |
| 445 | - $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 464 | + if (is_array($post_tags)) {
|
|
| 465 | + $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 466 | + wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 467 | + } |
|
| 446 | 468 | |
| 447 | - $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 448 | - geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 449 | - |
|
| 450 | - } |
|
| 451 | 469 | |
| 452 | - $post_tags = ''; |
|
| 453 | - // Set tags to the listing |
|
| 454 | - if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 455 | - $post_tags = explode(",", $request_info['post_tags']);
|
|
| 456 | - } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 457 | - if ($dummy) |
|
| 458 | - $post_tags = $request_info['post_tags']; |
|
| 459 | - } else {
|
|
| 460 | - if ($dummy) |
|
| 461 | - $post_tags = array($request_info['post_title']); |
|
| 462 | - } |
|
| 470 | + // Insert attechment |
|
| 463 | 471 | |
| 464 | - if (is_array($post_tags)) {
|
|
| 465 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 466 | - wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 467 | - } |
|
| 468 | - |
|
| 469 | - |
|
| 470 | - // Insert attechment |
|
| 472 | + if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 473 | + if (!$dummy) {
|
|
| 474 | + $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 475 | + $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 476 | + geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 477 | + } else{
|
|
| 478 | + geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 479 | + } |
|
| 471 | 480 | |
| 472 | - if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 473 | - if (!$dummy) {
|
|
| 474 | - $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 475 | - $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 476 | - geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 477 | - } else{
|
|
| 478 | - geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 479 | - } |
|
| 480 | 481 | |
| 482 | + } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 481 | 483 | |
| 482 | - } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 483 | - |
|
| 484 | - /* Delete Attachments |
|
| 484 | + /* Delete Attachments |
|
| 485 | 485 | $postcurr_images = geodir_get_images($last_post_id); |
| 486 | 486 | |
| 487 | 487 | $wpdb->query( |
@@ -497,34 +497,34 @@ discard block |
||
| 497 | 497 | geodir_save_post_info($last_post_id, $gd_post_featured_img); |
| 498 | 498 | */ |
| 499 | 499 | |
| 500 | - } |
|
| 500 | + } |
|
| 501 | 501 | |
| 502 | - geodir_remove_temp_images(); |
|
| 503 | - geodir_set_wp_featured_image($last_post_id); |
|
| 502 | + geodir_remove_temp_images(); |
|
| 503 | + geodir_set_wp_featured_image($last_post_id); |
|
| 504 | 504 | |
| 505 | - /** |
|
| 506 | - * Called after a listing is saved to the database and before any email have been sent. |
|
| 507 | - * |
|
| 508 | - * @since 1.0.0 |
|
| 509 | - * @param int $last_post_id The saved post ID. |
|
| 510 | - * @param array $request_info The post details in an array. |
|
| 511 | - * @see 'geodir_after_save_listinginfo' |
|
| 512 | - */ |
|
| 513 | - do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 505 | + /** |
|
| 506 | + * Called after a listing is saved to the database and before any email have been sent. |
|
| 507 | + * |
|
| 508 | + * @since 1.0.0 |
|
| 509 | + * @param int $last_post_id The saved post ID. |
|
| 510 | + * @param array $request_info The post details in an array. |
|
| 511 | + * @see 'geodir_after_save_listinginfo' |
|
| 512 | + */ |
|
| 513 | + do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 514 | 514 | |
| 515 | - //die; |
|
| 515 | + //die; |
|
| 516 | 516 | |
| 517 | - if ($send_post_submit_mail) { // if new post send out email
|
|
| 518 | - $to_name = geodir_get_client_name($current_user->ID); |
|
| 519 | - geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 520 | - } |
|
| 521 | - /* |
|
| 517 | + if ($send_post_submit_mail) { // if new post send out email
|
|
| 518 | + $to_name = geodir_get_client_name($current_user->ID); |
|
| 519 | + geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 520 | + } |
|
| 521 | + /* |
|
| 522 | 522 | * Unset the session so we don't loop. |
| 523 | 523 | */ |
| 524 | - $gd_session->un_set('listing');
|
|
| 525 | - return $last_post_id; |
|
| 524 | + $gd_session->un_set('listing');
|
|
| 525 | + return $last_post_id; |
|
| 526 | 526 | |
| 527 | - } |
|
| 527 | + } |
|
| 528 | 528 | |
| 529 | 529 | } |
| 530 | 530 | |
@@ -543,586 +543,586 @@ discard block |
||
| 543 | 543 | function geodir_get_post_info($post_id = '') |
| 544 | 544 | {
|
| 545 | 545 | |
| 546 | - global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 546 | + global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 547 | 547 | |
| 548 | - if ($post_id == '' && !empty($post)) |
|
| 549 | - $post_id = $post->ID; |
|
| 548 | + if ($post_id == '' && !empty($post)) |
|
| 549 | + $post_id = $post->ID; |
|
| 550 | 550 | |
| 551 | - $post_type = get_post_type($post_id); |
|
| 551 | + $post_type = get_post_type($post_id); |
|
| 552 | 552 | |
| 553 | - $all_postypes = geodir_get_posttypes(); |
|
| 553 | + $all_postypes = geodir_get_posttypes(); |
|
| 554 | 554 | |
| 555 | - if (!in_array($post_type, $all_postypes)) |
|
| 556 | - return false; |
|
| 555 | + if (!in_array($post_type, $all_postypes)) |
|
| 556 | + return false; |
|
| 557 | 557 | |
| 558 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 558 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 559 | 559 | |
| 560 | - /** |
|
| 561 | - * Apply Filter to change Post info |
|
| 562 | - * |
|
| 563 | - * You can use this filter to change Post info. |
|
| 564 | - * |
|
| 565 | - * @since 1.0.0 |
|
| 566 | - * @package GeoDirectory |
|
| 567 | - */ |
|
| 568 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 560 | + /** |
|
| 561 | + * Apply Filter to change Post info |
|
| 562 | + * |
|
| 563 | + * You can use this filter to change Post info. |
|
| 564 | + * |
|
| 565 | + * @since 1.0.0 |
|
| 566 | + * @package GeoDirectory |
|
| 567 | + */ |
|
| 568 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 569 | 569 | WHERE p.ID = pd.post_id |
| 570 | 570 | AND post_id = " . $post_id); |
| 571 | 571 | |
| 572 | - $post_detail = $wpdb->get_row($query); |
|
| 572 | + $post_detail = $wpdb->get_row($query); |
|
| 573 | 573 | |
| 574 | - return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 574 | + return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 575 | 575 | |
| 576 | 576 | } |
| 577 | 577 | |
| 578 | 578 | |
| 579 | 579 | if (!function_exists('geodir_save_post_info')) {
|
| 580 | - /** |
|
| 581 | - * Saves post detail info in detail table. |
|
| 582 | - * |
|
| 583 | - * @since 1.0.0 |
|
| 584 | - * @package GeoDirectory |
|
| 585 | - * @global object $wpdb WordPress Database object. |
|
| 586 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 587 | - * @param int $post_id The post ID. |
|
| 588 | - * @param array $postinfo_array {
|
|
| 589 | - * Post info that needs to be saved in detail table. |
|
| 590 | - * |
|
| 591 | - * @type string $post_title Listing title. |
|
| 592 | - * @type string $post_tags Listing tags. |
|
| 593 | - * @type string $post_status Listing post status. |
|
| 594 | - * @type string $post_location_id Listing location ID. |
|
| 595 | - * @type string $claimed Todo Desc needed. |
|
| 596 | - * @type string $businesses Todo Desc needed. |
|
| 597 | - * @type int $submit_time Submitted time in unix timestamp. |
|
| 598 | - * @type string $submit_ip Submitted IP. |
|
| 599 | - * @type string $expire_date Listing expiration date. |
|
| 600 | - * @type int $package_id Listing package ID. |
|
| 601 | - * @type int $alive_days Todo Desc needed. |
|
| 602 | - * @type int $is_featured Is this a featured listing?. |
|
| 603 | - * @type string $post_address Listing address. |
|
| 604 | - * @type string $post_city Listing city. |
|
| 605 | - * @type string $post_region Listing region. |
|
| 606 | - * @type string $post_country Listing country. |
|
| 607 | - * @type string $post_locations Listing locations. |
|
| 608 | - * @type string $post_zip Listing zip. |
|
| 609 | - * @type string $post_latitude Listing latitude. |
|
| 610 | - * @type string $post_longitude Listing longitude. |
|
| 611 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 612 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 613 | - * @type string $geodir_timing Business timing info. |
|
| 614 | - * @type string $geodir_contact Contact number. |
|
| 615 | - * @type string $geodir_email Business contact email. |
|
| 616 | - * @type string $geodir_website Business website. |
|
| 617 | - * @type string $geodir_twitter Twitter link. |
|
| 618 | - * @type string $geodir_facebook Facebook link. |
|
| 619 | - * @type string $geodir_video Video link. |
|
| 620 | - * @type string $geodir_special_offers Speacial offers. |
|
| 621 | - * |
|
| 622 | - * } |
|
| 623 | - * @return bool |
|
| 624 | - */ |
|
| 625 | - function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 626 | - {
|
|
| 627 | - global $wpdb, $plugin_prefix; |
|
| 628 | - |
|
| 629 | - $post_type = get_post_type($post_id); |
|
| 630 | - |
|
| 631 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 632 | - |
|
| 633 | - /** |
|
| 634 | - * Filter to change Post info |
|
| 635 | - * |
|
| 636 | - * You can use this filter to change Post info. |
|
| 637 | - * |
|
| 638 | - * @since 1.0.0 |
|
| 639 | - * @package GeoDirectory |
|
| 640 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 641 | - * @param int $post_id The post ID. |
|
| 642 | - */ |
|
| 580 | + /** |
|
| 581 | + * Saves post detail info in detail table. |
|
| 582 | + * |
|
| 583 | + * @since 1.0.0 |
|
| 584 | + * @package GeoDirectory |
|
| 585 | + * @global object $wpdb WordPress Database object. |
|
| 586 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 587 | + * @param int $post_id The post ID. |
|
| 588 | + * @param array $postinfo_array {
|
|
| 589 | + * Post info that needs to be saved in detail table. |
|
| 590 | + * |
|
| 591 | + * @type string $post_title Listing title. |
|
| 592 | + * @type string $post_tags Listing tags. |
|
| 593 | + * @type string $post_status Listing post status. |
|
| 594 | + * @type string $post_location_id Listing location ID. |
|
| 595 | + * @type string $claimed Todo Desc needed. |
|
| 596 | + * @type string $businesses Todo Desc needed. |
|
| 597 | + * @type int $submit_time Submitted time in unix timestamp. |
|
| 598 | + * @type string $submit_ip Submitted IP. |
|
| 599 | + * @type string $expire_date Listing expiration date. |
|
| 600 | + * @type int $package_id Listing package ID. |
|
| 601 | + * @type int $alive_days Todo Desc needed. |
|
| 602 | + * @type int $is_featured Is this a featured listing?. |
|
| 603 | + * @type string $post_address Listing address. |
|
| 604 | + * @type string $post_city Listing city. |
|
| 605 | + * @type string $post_region Listing region. |
|
| 606 | + * @type string $post_country Listing country. |
|
| 607 | + * @type string $post_locations Listing locations. |
|
| 608 | + * @type string $post_zip Listing zip. |
|
| 609 | + * @type string $post_latitude Listing latitude. |
|
| 610 | + * @type string $post_longitude Listing longitude. |
|
| 611 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 612 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 613 | + * @type string $geodir_timing Business timing info. |
|
| 614 | + * @type string $geodir_contact Contact number. |
|
| 615 | + * @type string $geodir_email Business contact email. |
|
| 616 | + * @type string $geodir_website Business website. |
|
| 617 | + * @type string $geodir_twitter Twitter link. |
|
| 618 | + * @type string $geodir_facebook Facebook link. |
|
| 619 | + * @type string $geodir_video Video link. |
|
| 620 | + * @type string $geodir_special_offers Speacial offers. |
|
| 621 | + * |
|
| 622 | + * } |
|
| 623 | + * @return bool |
|
| 624 | + */ |
|
| 625 | + function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 626 | + {
|
|
| 627 | + global $wpdb, $plugin_prefix; |
|
| 628 | + |
|
| 629 | + $post_type = get_post_type($post_id); |
|
| 630 | + |
|
| 631 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 632 | + |
|
| 633 | + /** |
|
| 634 | + * Filter to change Post info |
|
| 635 | + * |
|
| 636 | + * You can use this filter to change Post info. |
|
| 637 | + * |
|
| 638 | + * @since 1.0.0 |
|
| 639 | + * @package GeoDirectory |
|
| 640 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 641 | + * @param int $post_id The post ID. |
|
| 642 | + */ |
|
| 643 | + |
|
| 644 | + $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 645 | + |
|
| 646 | + if (!empty($postmeta) && $post_id) {
|
|
| 647 | + $post_meta_set_query = ''; |
|
| 648 | + |
|
| 649 | + foreach ($postmeta as $mkey => $mval) {
|
|
| 650 | + if (geodir_column_exist($table, $mkey)) {
|
|
| 651 | + if (is_array($mval)) {
|
|
| 652 | + $mval = implode(",", $mval);
|
|
| 653 | + } |
|
| 654 | + |
|
| 655 | + $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 656 | + } |
|
| 657 | + } |
|
| 643 | 658 | |
| 644 | - $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 659 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 645 | 660 | |
| 646 | - if (!empty($postmeta) && $post_id) {
|
|
| 647 | - $post_meta_set_query = ''; |
|
| 661 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 648 | 662 | |
| 649 | - foreach ($postmeta as $mkey => $mval) {
|
|
| 650 | - if (geodir_column_exist($table, $mkey)) {
|
|
| 651 | - if (is_array($mval)) {
|
|
| 652 | - $mval = implode(",", $mval);
|
|
| 653 | - } |
|
| 663 | + /** |
|
| 664 | + * Called before saving the listing info. |
|
| 665 | + * |
|
| 666 | + * @since 1.0.0 |
|
| 667 | + * @package GeoDirectory |
|
| 668 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 669 | + * @param int $post_id The post ID. |
|
| 670 | + */ |
|
| 671 | + do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 654 | 672 | |
| 655 | - $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 656 | - } |
|
| 657 | - } |
|
| 673 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 658 | 674 | |
| 659 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 675 | + $wpdb->query( |
|
| 676 | + $wpdb->prepare( |
|
| 677 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 678 | + array($post_id) |
|
| 679 | + ) |
|
| 680 | + ); |
|
| 660 | 681 | |
| 661 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 662 | 682 | |
| 663 | - /** |
|
| 664 | - * Called before saving the listing info. |
|
| 665 | - * |
|
| 666 | - * @since 1.0.0 |
|
| 667 | - * @package GeoDirectory |
|
| 668 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 669 | - * @param int $post_id The post ID. |
|
| 670 | - */ |
|
| 671 | - do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 683 | + } else {
|
|
| 672 | 684 | |
| 673 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 685 | + $wpdb->query( |
|
| 686 | + $wpdb->prepare( |
|
| 687 | + "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 688 | + array($post_id) |
|
| 689 | + ) |
|
| 690 | + ); |
|
| 674 | 691 | |
| 675 | - $wpdb->query( |
|
| 676 | - $wpdb->prepare( |
|
| 677 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 678 | - array($post_id) |
|
| 679 | - ) |
|
| 680 | - ); |
|
| 692 | + } |
|
| 681 | 693 | |
| 694 | + /** |
|
| 695 | + * Called after saving the listing info. |
|
| 696 | + * |
|
| 697 | + * @since 1.0.0 |
|
| 698 | + * @package GeoDirectory |
|
| 699 | + * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 700 | + * @param int $post_id The post ID. |
|
| 701 | + * @see 'geodir_after_save_listing' |
|
| 702 | + */ |
|
| 703 | + do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 704 | + |
|
| 705 | + return true; |
|
| 706 | + } else |
|
| 707 | + return false; |
|
| 682 | 708 | |
| 683 | - } else {
|
|
| 709 | + } |
|
| 710 | +} |
|
| 684 | 711 | |
| 685 | - $wpdb->query( |
|
| 686 | - $wpdb->prepare( |
|
| 687 | - "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 688 | - array($post_id) |
|
| 689 | - ) |
|
| 690 | - ); |
|
| 691 | 712 | |
| 692 | - } |
|
| 713 | +if (!function_exists('geodir_save_post_meta')) {
|
|
| 714 | + /** |
|
| 715 | + * Save or update post custom fields. |
|
| 716 | + * |
|
| 717 | + * @since 1.0.0 |
|
| 718 | + * @package GeoDirectory |
|
| 719 | + * @global object $wpdb WordPress Database object. |
|
| 720 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 721 | + * @param int $post_id The post ID. |
|
| 722 | + * @param string $postmeta Detail table column name. |
|
| 723 | + * @param string $meta_value Detail table column value. |
|
| 724 | + * @return void|bool |
|
| 725 | + */ |
|
| 726 | + function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 727 | + {
|
|
| 728 | + |
|
| 729 | + global $wpdb, $plugin_prefix; |
|
| 730 | + |
|
| 731 | + $post_type = get_post_type($post_id); |
|
| 732 | + |
|
| 733 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 734 | + |
|
| 735 | + if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 736 | + |
|
| 737 | + if (is_array($meta_value)) {
|
|
| 738 | + $meta_value = implode(",", $meta_value);
|
|
| 739 | + } |
|
| 693 | 740 | |
| 694 | - /** |
|
| 695 | - * Called after saving the listing info. |
|
| 696 | - * |
|
| 697 | - * @since 1.0.0 |
|
| 698 | - * @package GeoDirectory |
|
| 699 | - * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 700 | - * @param int $post_id The post ID. |
|
| 701 | - * @see 'geodir_after_save_listing' |
|
| 702 | - */ |
|
| 703 | - do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 741 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 704 | 742 | |
| 705 | - return true; |
|
| 706 | - } else |
|
| 707 | - return false; |
|
| 743 | + $wpdb->query( |
|
| 744 | + $wpdb->prepare( |
|
| 745 | + "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 746 | + array($post_id) |
|
| 747 | + ) |
|
| 748 | + ); |
|
| 708 | 749 | |
| 709 | - } |
|
| 710 | -} |
|
| 750 | + } else {
|
|
| 711 | 751 | |
| 752 | + $wpdb->query( |
|
| 753 | + $wpdb->prepare( |
|
| 754 | + "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 755 | + array($post_id) |
|
| 756 | + ) |
|
| 757 | + ); |
|
| 758 | + } |
|
| 712 | 759 | |
| 713 | -if (!function_exists('geodir_save_post_meta')) {
|
|
| 714 | - /** |
|
| 715 | - * Save or update post custom fields. |
|
| 716 | - * |
|
| 717 | - * @since 1.0.0 |
|
| 718 | - * @package GeoDirectory |
|
| 719 | - * @global object $wpdb WordPress Database object. |
|
| 720 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 721 | - * @param int $post_id The post ID. |
|
| 722 | - * @param string $postmeta Detail table column name. |
|
| 723 | - * @param string $meta_value Detail table column value. |
|
| 724 | - * @return void|bool |
|
| 725 | - */ |
|
| 726 | - function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 727 | - {
|
|
| 728 | - |
|
| 729 | - global $wpdb, $plugin_prefix; |
|
| 730 | - |
|
| 731 | - $post_type = get_post_type($post_id); |
|
| 732 | - |
|
| 733 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 734 | - |
|
| 735 | - if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 736 | - |
|
| 737 | - if (is_array($meta_value)) {
|
|
| 738 | - $meta_value = implode(",", $meta_value);
|
|
| 739 | - } |
|
| 740 | - |
|
| 741 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 742 | - |
|
| 743 | - $wpdb->query( |
|
| 744 | - $wpdb->prepare( |
|
| 745 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 746 | - array($post_id) |
|
| 747 | - ) |
|
| 748 | - ); |
|
| 749 | - |
|
| 750 | - } else {
|
|
| 751 | - |
|
| 752 | - $wpdb->query( |
|
| 753 | - $wpdb->prepare( |
|
| 754 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 755 | - array($post_id) |
|
| 756 | - ) |
|
| 757 | - ); |
|
| 758 | - } |
|
| 759 | - |
|
| 760 | - |
|
| 761 | - } else |
|
| 762 | - return false; |
|
| 763 | - } |
|
| 760 | + |
|
| 761 | + } else |
|
| 762 | + return false; |
|
| 763 | + } |
|
| 764 | 764 | } |
| 765 | 765 | |
| 766 | 766 | if (!function_exists('geodir_delete_post_meta')) {
|
| 767 | - /** |
|
| 768 | - * Delete post custom fields. |
|
| 769 | - * |
|
| 770 | - * @since 1.0.0 |
|
| 771 | - * @package GeoDirectory |
|
| 772 | - * @global object $wpdb WordPress Database object. |
|
| 773 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 774 | - * @param int $post_id The post ID. |
|
| 775 | - * @param string $postmeta Detail table column name. |
|
| 776 | - * @todo check if this is depreciated |
|
| 777 | - * @todo Fix unknown variable mval |
|
| 778 | - * @return bool |
|
| 779 | - */ |
|
| 780 | - function geodir_delete_post_meta($post_id, $postmeta) |
|
| 781 | - {
|
|
| 782 | - |
|
| 783 | - global $wpdb, $plugin_prefix; |
|
| 784 | - |
|
| 785 | - $post_type = get_post_type($post_id); |
|
| 786 | - |
|
| 787 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 788 | - |
|
| 789 | - if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 790 | - $post_meta_set_query = ''; |
|
| 791 | - |
|
| 792 | - foreach ($postmeta as $mkey) {
|
|
| 793 | - if ($mval != '') |
|
| 794 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 795 | - } |
|
| 796 | - |
|
| 797 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 798 | - |
|
| 799 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 800 | - |
|
| 801 | - $wpdb->query( |
|
| 802 | - $wpdb->prepare( |
|
| 803 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 804 | - array($post_id) |
|
| 805 | - ) |
|
| 806 | - ); |
|
| 807 | - |
|
| 808 | - return true; |
|
| 809 | - } |
|
| 810 | - |
|
| 811 | - } elseif ($postmeta != '' && $post_id) {
|
|
| 812 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 813 | - |
|
| 814 | - $wpdb->query( |
|
| 815 | - $wpdb->prepare( |
|
| 816 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 817 | - array($post_id) |
|
| 818 | - ) |
|
| 819 | - ); |
|
| 820 | - |
|
| 821 | - return true; |
|
| 822 | - } |
|
| 823 | - |
|
| 824 | - } else |
|
| 825 | - return false; |
|
| 826 | - } |
|
| 767 | + /** |
|
| 768 | + * Delete post custom fields. |
|
| 769 | + * |
|
| 770 | + * @since 1.0.0 |
|
| 771 | + * @package GeoDirectory |
|
| 772 | + * @global object $wpdb WordPress Database object. |
|
| 773 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 774 | + * @param int $post_id The post ID. |
|
| 775 | + * @param string $postmeta Detail table column name. |
|
| 776 | + * @todo check if this is depreciated |
|
| 777 | + * @todo Fix unknown variable mval |
|
| 778 | + * @return bool |
|
| 779 | + */ |
|
| 780 | + function geodir_delete_post_meta($post_id, $postmeta) |
|
| 781 | + {
|
|
| 782 | + |
|
| 783 | + global $wpdb, $plugin_prefix; |
|
| 784 | + |
|
| 785 | + $post_type = get_post_type($post_id); |
|
| 786 | + |
|
| 787 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 788 | + |
|
| 789 | + if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 790 | + $post_meta_set_query = ''; |
|
| 791 | + |
|
| 792 | + foreach ($postmeta as $mkey) {
|
|
| 793 | + if ($mval != '') |
|
| 794 | + $post_meta_set_query .= $mkey . " = '', "; |
|
| 795 | + } |
|
| 796 | + |
|
| 797 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 798 | + |
|
| 799 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 800 | + |
|
| 801 | + $wpdb->query( |
|
| 802 | + $wpdb->prepare( |
|
| 803 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 804 | + array($post_id) |
|
| 805 | + ) |
|
| 806 | + ); |
|
| 807 | + |
|
| 808 | + return true; |
|
| 809 | + } |
|
| 810 | + |
|
| 811 | + } elseif ($postmeta != '' && $post_id) {
|
|
| 812 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 813 | + |
|
| 814 | + $wpdb->query( |
|
| 815 | + $wpdb->prepare( |
|
| 816 | + "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 817 | + array($post_id) |
|
| 818 | + ) |
|
| 819 | + ); |
|
| 820 | + |
|
| 821 | + return true; |
|
| 822 | + } |
|
| 823 | + |
|
| 824 | + } else |
|
| 825 | + return false; |
|
| 826 | + } |
|
| 827 | 827 | } |
| 828 | 828 | |
| 829 | 829 | |
| 830 | 830 | if (!function_exists('geodir_get_post_meta')) {
|
| 831 | - /** |
|
| 832 | - * Get post custom meta. |
|
| 833 | - * |
|
| 834 | - * @since 1.0.0 |
|
| 835 | - * @package GeoDirectory |
|
| 836 | - * @global object $wpdb WordPress Database object. |
|
| 837 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 838 | - * @param int $post_id The post ID. |
|
| 839 | - * @param string $meta_key The meta key to retrieve. |
|
| 840 | - * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 841 | - * @todo single variable not yet implemented. |
|
| 842 | - * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 843 | - */ |
|
| 844 | - function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 845 | - {
|
|
| 846 | - if (!$post_id) {
|
|
| 847 | - return false; |
|
| 848 | - } |
|
| 849 | - global $wpdb, $plugin_prefix; |
|
| 850 | - |
|
| 851 | - $all_postypes = geodir_get_posttypes(); |
|
| 852 | - |
|
| 853 | - $post_type = get_post_type($post_id); |
|
| 854 | - |
|
| 855 | - if (!in_array($post_type, $all_postypes)) |
|
| 856 | - return false; |
|
| 857 | - |
|
| 858 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 859 | - |
|
| 860 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 861 | - |
|
| 862 | - if ($meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 863 | - $meta_value = maybe_serialize($meta_value); |
|
| 864 | - return $meta_value; |
|
| 865 | - } else |
|
| 866 | - return false; |
|
| 867 | - |
|
| 868 | - } else |
|
| 869 | - return false; |
|
| 870 | - } |
|
| 831 | + /** |
|
| 832 | + * Get post custom meta. |
|
| 833 | + * |
|
| 834 | + * @since 1.0.0 |
|
| 835 | + * @package GeoDirectory |
|
| 836 | + * @global object $wpdb WordPress Database object. |
|
| 837 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 838 | + * @param int $post_id The post ID. |
|
| 839 | + * @param string $meta_key The meta key to retrieve. |
|
| 840 | + * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 841 | + * @todo single variable not yet implemented. |
|
| 842 | + * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 843 | + */ |
|
| 844 | + function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 845 | + {
|
|
| 846 | + if (!$post_id) {
|
|
| 847 | + return false; |
|
| 848 | + } |
|
| 849 | + global $wpdb, $plugin_prefix; |
|
| 850 | + |
|
| 851 | + $all_postypes = geodir_get_posttypes(); |
|
| 852 | + |
|
| 853 | + $post_type = get_post_type($post_id); |
|
| 854 | + |
|
| 855 | + if (!in_array($post_type, $all_postypes)) |
|
| 856 | + return false; |
|
| 857 | + |
|
| 858 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 859 | + |
|
| 860 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 861 | + |
|
| 862 | + if ($meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 863 | + $meta_value = maybe_serialize($meta_value); |
|
| 864 | + return $meta_value; |
|
| 865 | + } else |
|
| 866 | + return false; |
|
| 867 | + |
|
| 868 | + } else |
|
| 869 | + return false; |
|
| 870 | + } |
|
| 871 | 871 | } |
| 872 | 872 | |
| 873 | 873 | |
| 874 | 874 | if (!function_exists('geodir_save_post_images')) {
|
| 875 | - /** |
|
| 876 | - * Save post attachments. |
|
| 877 | - * |
|
| 878 | - * @since 1.0.0 |
|
| 879 | - * @package GeoDirectory |
|
| 880 | - * @global object $wpdb WordPress Database object. |
|
| 881 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 882 | - * @global object $current_user Current user object. |
|
| 883 | - * @param int $post_id The post ID. |
|
| 884 | - * @param array $post_image Post image urls as an array. |
|
| 885 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 886 | - */ |
|
| 887 | - function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 888 | - {
|
|
| 875 | + /** |
|
| 876 | + * Save post attachments. |
|
| 877 | + * |
|
| 878 | + * @since 1.0.0 |
|
| 879 | + * @package GeoDirectory |
|
| 880 | + * @global object $wpdb WordPress Database object. |
|
| 881 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 882 | + * @global object $current_user Current user object. |
|
| 883 | + * @param int $post_id The post ID. |
|
| 884 | + * @param array $post_image Post image urls as an array. |
|
| 885 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 886 | + */ |
|
| 887 | + function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 888 | + {
|
|
| 889 | 889 | |
| 890 | 890 | |
| 891 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 891 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 892 | 892 | |
| 893 | - $post_type = get_post_type($post_id); |
|
| 893 | + $post_type = get_post_type($post_id); |
|
| 894 | 894 | |
| 895 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 895 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 896 | 896 | |
| 897 | - $post_images = geodir_get_images($post_id); |
|
| 897 | + $post_images = geodir_get_images($post_id); |
|
| 898 | 898 | |
| 899 | - $wpdb->query( |
|
| 900 | - $wpdb->prepare( |
|
| 901 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 902 | - array($post_id) |
|
| 903 | - ) |
|
| 904 | - ); |
|
| 899 | + $wpdb->query( |
|
| 900 | + $wpdb->prepare( |
|
| 901 | + "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 902 | + array($post_id) |
|
| 903 | + ) |
|
| 904 | + ); |
|
| 905 | 905 | |
| 906 | - $invalid_files = $post_images; |
|
| 907 | - $valid_file_ids = array(); |
|
| 908 | - $valid_files_condition = ''; |
|
| 909 | - $geodir_uploaddir = ''; |
|
| 906 | + $invalid_files = $post_images; |
|
| 907 | + $valid_file_ids = array(); |
|
| 908 | + $valid_files_condition = ''; |
|
| 909 | + $geodir_uploaddir = ''; |
|
| 910 | 910 | |
| 911 | - $remove_files = array(); |
|
| 911 | + $remove_files = array(); |
|
| 912 | 912 | |
| 913 | - if (!empty($post_image)) {
|
|
| 913 | + if (!empty($post_image)) {
|
|
| 914 | 914 | |
| 915 | - $uploads = wp_upload_dir(); |
|
| 916 | - $uploads_dir = $uploads['path']; |
|
| 915 | + $uploads = wp_upload_dir(); |
|
| 916 | + $uploads_dir = $uploads['path']; |
|
| 917 | 917 | |
| 918 | - $geodir_uploadpath = $uploads['path']; |
|
| 919 | - $geodir_uploadurl = $uploads['url']; |
|
| 920 | - $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 918 | + $geodir_uploadpath = $uploads['path']; |
|
| 919 | + $geodir_uploadurl = $uploads['url']; |
|
| 920 | + $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 921 | 921 | |
| 922 | - $invalid_files = array(); |
|
| 923 | - $postcurr_images = array(); |
|
| 922 | + $invalid_files = array(); |
|
| 923 | + $postcurr_images = array(); |
|
| 924 | 924 | |
| 925 | - for ($m = 0; $m < count($post_image); $m++) {
|
|
| 926 | - $menu_order = $m + 1; |
|
| 925 | + for ($m = 0; $m < count($post_image); $m++) {
|
|
| 926 | + $menu_order = $m + 1; |
|
| 927 | 927 | |
| 928 | - $file_path = ''; |
|
| 929 | - /* --------- start ------- */ |
|
| 928 | + $file_path = ''; |
|
| 929 | + /* --------- start ------- */ |
|
| 930 | 930 | |
| 931 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 931 | + $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 932 | 932 | |
| 933 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 933 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 934 | 934 | |
| 935 | 935 | |
| 936 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 936 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 937 | 937 | |
| 938 | - /* --------- end ------- */ |
|
| 939 | - $curr_img_url = $post_image[$m]; |
|
| 938 | + /* --------- end ------- */ |
|
| 939 | + $curr_img_url = $post_image[$m]; |
|
| 940 | 940 | |
| 941 | - $image_name_arr = explode('/', $curr_img_url);
|
|
| 941 | + $image_name_arr = explode('/', $curr_img_url);
|
|
| 942 | 942 | |
| 943 | - $count_image_name_arr = count($image_name_arr) - 2; |
|
| 943 | + $count_image_name_arr = count($image_name_arr) - 2; |
|
| 944 | 944 | |
| 945 | - $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 945 | + $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 946 | 946 | |
| 947 | - $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 947 | + $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 948 | 948 | |
| 949 | - $filename = end($image_name_arr); |
|
| 950 | - if (strpos($filename, '?') !== false) {
|
|
| 951 | - list($filename) = explode('?', $filename);
|
|
| 952 | - } |
|
| 949 | + $filename = end($image_name_arr); |
|
| 950 | + if (strpos($filename, '?') !== false) {
|
|
| 951 | + list($filename) = explode('?', $filename);
|
|
| 952 | + } |
|
| 953 | 953 | |
| 954 | - $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 955 | - $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 954 | + $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 955 | + $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 956 | 956 | |
| 957 | - $img_name_arr = explode('.', $filename);
|
|
| 957 | + $img_name_arr = explode('.', $filename);
|
|
| 958 | 958 | |
| 959 | - $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 960 | - if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 961 | - $new_img_name_arr = $img_name_arr; |
|
| 962 | - if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 963 | - unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 964 | - $file_title = implode('.', $new_img_name_arr);
|
|
| 965 | - } |
|
| 966 | - } |
|
| 967 | - $file_title = sanitize_file_name($file_title); |
|
| 968 | - $file_name = sanitize_file_name($filename); |
|
| 959 | + $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 960 | + if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 961 | + $new_img_name_arr = $img_name_arr; |
|
| 962 | + if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 963 | + unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 964 | + $file_title = implode('.', $new_img_name_arr);
|
|
| 965 | + } |
|
| 966 | + } |
|
| 967 | + $file_title = sanitize_file_name($file_title); |
|
| 968 | + $file_name = sanitize_file_name($filename); |
|
| 969 | 969 | |
| 970 | - $arr_file_type = wp_check_filetype($filename); |
|
| 970 | + $arr_file_type = wp_check_filetype($filename); |
|
| 971 | 971 | |
| 972 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 972 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 973 | 973 | |
| 974 | - // Set an array containing a list of acceptable formats |
|
| 975 | - $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 974 | + // Set an array containing a list of acceptable formats |
|
| 975 | + $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 976 | 976 | |
| 977 | - // If the uploaded file is the right format |
|
| 978 | - if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 979 | - if (!function_exists('wp_handle_upload')) {
|
|
| 980 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 981 | - } |
|
| 977 | + // If the uploaded file is the right format |
|
| 978 | + if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 979 | + if (!function_exists('wp_handle_upload')) {
|
|
| 980 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 981 | + } |
|
| 982 | 982 | |
| 983 | - if (!is_dir($geodir_uploadpath)) {
|
|
| 984 | - mkdir($geodir_uploadpath); |
|
| 985 | - } |
|
| 983 | + if (!is_dir($geodir_uploadpath)) {
|
|
| 984 | + mkdir($geodir_uploadpath); |
|
| 985 | + } |
|
| 986 | 986 | |
| 987 | - $external_img = false; |
|
| 988 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 989 | - } else {
|
|
| 990 | - $external_img = true; |
|
| 991 | - } |
|
| 987 | + $external_img = false; |
|
| 988 | + if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 989 | + } else {
|
|
| 990 | + $external_img = true; |
|
| 991 | + } |
|
| 992 | 992 | |
| 993 | - if ($dummy || $external_img) {
|
|
| 994 | - $uploaded_file = array(); |
|
| 995 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 993 | + if ($dummy || $external_img) {
|
|
| 994 | + $uploaded_file = array(); |
|
| 995 | + $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 996 | 996 | |
| 997 | - if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 998 | - $new_name = basename($uploaded['file']); |
|
| 999 | - $uploaded_file = $uploaded; |
|
| 1000 | - }else{
|
|
| 1001 | - print_r($uploaded);exit; |
|
| 1002 | - } |
|
| 1003 | - $external_img = false; |
|
| 1004 | - } else {
|
|
| 1005 | - $new_name = $post_id . '_' . $file_name; |
|
| 997 | + if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 998 | + $new_name = basename($uploaded['file']); |
|
| 999 | + $uploaded_file = $uploaded; |
|
| 1000 | + }else{
|
|
| 1001 | + print_r($uploaded);exit; |
|
| 1002 | + } |
|
| 1003 | + $external_img = false; |
|
| 1004 | + } else {
|
|
| 1005 | + $new_name = $post_id . '_' . $file_name; |
|
| 1006 | 1006 | |
| 1007 | - if ($curr_img_dir == $sub_dir) {
|
|
| 1008 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1009 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1010 | - } else {
|
|
| 1011 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1012 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1013 | - } |
|
| 1007 | + if ($curr_img_dir == $sub_dir) {
|
|
| 1008 | + $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1009 | + $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1010 | + } else {
|
|
| 1011 | + $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1012 | + $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1013 | + } |
|
| 1014 | 1014 | |
| 1015 | - $uploaded_file = ''; |
|
| 1015 | + $uploaded_file = ''; |
|
| 1016 | 1016 | |
| 1017 | - if (file_exists($img_path)) {
|
|
| 1018 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1019 | - $file_path = ''; |
|
| 1020 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1021 | - $uploaded_file = true; |
|
| 1022 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1023 | - } |
|
| 1017 | + if (file_exists($img_path)) {
|
|
| 1018 | + $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1019 | + $file_path = ''; |
|
| 1020 | + } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1021 | + $uploaded_file = true; |
|
| 1022 | + $file_path = $curr_img_dir . '/' . $filename; |
|
| 1023 | + } |
|
| 1024 | 1024 | |
| 1025 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1026 | - unlink($img_path); |
|
| 1027 | - } |
|
| 1025 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1026 | + unlink($img_path); |
|
| 1027 | + } |
|
| 1028 | 1028 | |
| 1029 | - if (!empty($uploaded_file)) {
|
|
| 1030 | - if (!isset($file_path) || !$file_path) {
|
|
| 1031 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1032 | - } |
|
| 1029 | + if (!empty($uploaded_file)) {
|
|
| 1030 | + if (!isset($file_path) || !$file_path) {
|
|
| 1031 | + $file_path = $sub_dir . '/' . $new_name; |
|
| 1032 | + } |
|
| 1033 | 1033 | |
| 1034 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1034 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1035 | 1035 | |
| 1036 | - if ($menu_order == 1) {
|
|
| 1036 | + if ($menu_order == 1) {
|
|
| 1037 | 1037 | |
| 1038 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1038 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1039 | 1039 | |
| 1040 | - } |
|
| 1040 | + } |
|
| 1041 | 1041 | |
| 1042 | - // Set up options array to add this file as an attachment |
|
| 1043 | - $attachment = array(); |
|
| 1044 | - $attachment['post_id'] = $post_id; |
|
| 1045 | - $attachment['title'] = $file_title; |
|
| 1046 | - $attachment['content'] = ''; |
|
| 1047 | - $attachment['file'] = $file_path; |
|
| 1048 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 1049 | - $attachment['menu_order'] = $menu_order; |
|
| 1050 | - $attachment['is_featured'] = 0; |
|
| 1042 | + // Set up options array to add this file as an attachment |
|
| 1043 | + $attachment = array(); |
|
| 1044 | + $attachment['post_id'] = $post_id; |
|
| 1045 | + $attachment['title'] = $file_title; |
|
| 1046 | + $attachment['content'] = ''; |
|
| 1047 | + $attachment['file'] = $file_path; |
|
| 1048 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 1049 | + $attachment['menu_order'] = $menu_order; |
|
| 1050 | + $attachment['is_featured'] = 0; |
|
| 1051 | 1051 | |
| 1052 | - $attachment_set = ''; |
|
| 1052 | + $attachment_set = ''; |
|
| 1053 | 1053 | |
| 1054 | - foreach ($attachment as $key => $val) {
|
|
| 1055 | - if ($val != '') |
|
| 1056 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1057 | - } |
|
| 1054 | + foreach ($attachment as $key => $val) {
|
|
| 1055 | + if ($val != '') |
|
| 1056 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1057 | + } |
|
| 1058 | 1058 | |
| 1059 | - $attachment_set = trim($attachment_set, ", "); |
|
| 1059 | + $attachment_set = trim($attachment_set, ", "); |
|
| 1060 | + |
|
| 1061 | + $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1060 | 1062 | |
| 1061 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1063 | + $valid_file_ids[] = $wpdb->insert_id; |
|
| 1064 | + } |
|
| 1062 | 1065 | |
| 1063 | - $valid_file_ids[] = $wpdb->insert_id; |
|
| 1064 | - } |
|
| 1066 | + } |
|
| 1065 | 1067 | |
| 1066 | - } |
|
| 1067 | 1068 | |
| 1069 | + } else {
|
|
| 1070 | + $valid_file_ids[] = $find_image; |
|
| 1068 | 1071 | |
| 1069 | - } else {
|
|
| 1070 | - $valid_file_ids[] = $find_image; |
|
| 1071 | - |
|
| 1072 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1072 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1073 | 1073 | |
| 1074 | - $wpdb->query( |
|
| 1075 | - $wpdb->prepare( |
|
| 1076 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1077 | - array($menu_order, $split_img_path[1], $post_id) |
|
| 1078 | - ) |
|
| 1079 | - ); |
|
| 1074 | + $wpdb->query( |
|
| 1075 | + $wpdb->prepare( |
|
| 1076 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1077 | + array($menu_order, $split_img_path[1], $post_id) |
|
| 1078 | + ) |
|
| 1079 | + ); |
|
| 1080 | 1080 | |
| 1081 | - if ($menu_order == 1) |
|
| 1082 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1081 | + if ($menu_order == 1) |
|
| 1082 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1083 | 1083 | |
| 1084 | - } |
|
| 1084 | + } |
|
| 1085 | 1085 | |
| 1086 | 1086 | |
| 1087 | - } |
|
| 1087 | + } |
|
| 1088 | 1088 | |
| 1089 | - if (!empty($valid_file_ids)) {
|
|
| 1089 | + if (!empty($valid_file_ids)) {
|
|
| 1090 | 1090 | |
| 1091 | - $remove_files = $valid_file_ids; |
|
| 1091 | + $remove_files = $valid_file_ids; |
|
| 1092 | 1092 | |
| 1093 | - $remove_files_length = count($remove_files); |
|
| 1094 | - $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1095 | - $format = implode(',', $remove_files_format);
|
|
| 1096 | - $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1093 | + $remove_files_length = count($remove_files); |
|
| 1094 | + $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1095 | + $format = implode(',', $remove_files_format);
|
|
| 1096 | + $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1097 | 1097 | |
| 1098 | - } |
|
| 1098 | + } |
|
| 1099 | 1099 | |
| 1100 | - //Get and remove all old images of post from database to set by new order |
|
| 1100 | + //Get and remove all old images of post from database to set by new order |
|
| 1101 | 1101 | |
| 1102 | - if (!empty($post_images)) {
|
|
| 1102 | + if (!empty($post_images)) {
|
|
| 1103 | 1103 | |
| 1104 | - foreach ($post_images as $img) {
|
|
| 1104 | + foreach ($post_images as $img) {
|
|
| 1105 | 1105 | |
| 1106 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1106 | + if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1107 | 1107 | |
| 1108 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1108 | + $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1109 | 1109 | |
| 1110 | - } |
|
| 1110 | + } |
|
| 1111 | 1111 | |
| 1112 | - } |
|
| 1112 | + } |
|
| 1113 | 1113 | |
| 1114 | - } |
|
| 1114 | + } |
|
| 1115 | 1115 | |
| 1116 | - $invalid_files = (object)$invalid_files; |
|
| 1117 | - } |
|
| 1116 | + $invalid_files = (object)$invalid_files; |
|
| 1117 | + } |
|
| 1118 | 1118 | |
| 1119 | - $remove_files[] = $post_id; |
|
| 1119 | + $remove_files[] = $post_id; |
|
| 1120 | 1120 | |
| 1121 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1121 | + $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1122 | 1122 | |
| 1123 | - if (!empty($invalid_files)) |
|
| 1124 | - geodir_remove_attachments($invalid_files); |
|
| 1125 | - } |
|
| 1123 | + if (!empty($invalid_files)) |
|
| 1124 | + geodir_remove_attachments($invalid_files); |
|
| 1125 | + } |
|
| 1126 | 1126 | |
| 1127 | 1127 | } |
| 1128 | 1128 | |
@@ -1136,12 +1136,12 @@ discard block |
||
| 1136 | 1136 | function geodir_remove_temp_images() |
| 1137 | 1137 | {
|
| 1138 | 1138 | |
| 1139 | - global $current_user; |
|
| 1139 | + global $current_user; |
|
| 1140 | 1140 | |
| 1141 | - $uploads = wp_upload_dir(); |
|
| 1142 | - $uploads_dir = $uploads['path']; |
|
| 1141 | + $uploads = wp_upload_dir(); |
|
| 1142 | + $uploads_dir = $uploads['path']; |
|
| 1143 | 1143 | |
| 1144 | - /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1144 | + /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1145 | 1145 | |
| 1146 | 1146 | $dirPath = $uploads_dir.'/temp_'.$current_user->data->ID; |
| 1147 | 1147 | if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
|
@@ -1158,8 +1158,8 @@ discard block |
||
| 1158 | 1158 | rmdir($dirPath); |
| 1159 | 1159 | } */ |
| 1160 | 1160 | |
| 1161 | - $dirname = $uploads_dir . '/temp_' . $current_user->data->ID; |
|
| 1162 | - geodir_delete_directory($dirname); |
|
| 1161 | + $dirname = $uploads_dir . '/temp_' . $current_user->data->ID; |
|
| 1162 | + geodir_delete_directory($dirname); |
|
| 1163 | 1163 | } |
| 1164 | 1164 | |
| 1165 | 1165 | |
@@ -1173,109 +1173,109 @@ discard block |
||
| 1173 | 1173 | */ |
| 1174 | 1174 | function geodir_delete_directory($dirname) |
| 1175 | 1175 | {
|
| 1176 | - $dir_handle = ''; |
|
| 1177 | - if (is_dir($dirname)) |
|
| 1178 | - $dir_handle = opendir($dirname); |
|
| 1179 | - if (!$dir_handle) |
|
| 1180 | - return false; |
|
| 1181 | - while ($file = readdir($dir_handle)) {
|
|
| 1182 | - if ($file != "." && $file != "..") {
|
|
| 1183 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | - unlink($dirname . "/" . $file); |
|
| 1185 | - else |
|
| 1186 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1187 | - } |
|
| 1188 | - } |
|
| 1189 | - closedir($dir_handle); |
|
| 1190 | - rmdir($dirname); |
|
| 1191 | - return true; |
|
| 1176 | + $dir_handle = ''; |
|
| 1177 | + if (is_dir($dirname)) |
|
| 1178 | + $dir_handle = opendir($dirname); |
|
| 1179 | + if (!$dir_handle) |
|
| 1180 | + return false; |
|
| 1181 | + while ($file = readdir($dir_handle)) {
|
|
| 1182 | + if ($file != "." && $file != "..") {
|
|
| 1183 | + if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | + unlink($dirname . "/" . $file); |
|
| 1185 | + else |
|
| 1186 | + geodir_delete_directory($dirname . '/' . $file); |
|
| 1187 | + } |
|
| 1188 | + } |
|
| 1189 | + closedir($dir_handle); |
|
| 1190 | + rmdir($dirname); |
|
| 1191 | + return true; |
|
| 1192 | 1192 | |
| 1193 | 1193 | } |
| 1194 | 1194 | |
| 1195 | 1195 | |
| 1196 | 1196 | if (!function_exists('geodir_remove_attachments')) {
|
| 1197 | - /** |
|
| 1198 | - * Remove post attachments. |
|
| 1199 | - * |
|
| 1200 | - * @since 1.0.0 |
|
| 1201 | - * @package GeoDirectory |
|
| 1202 | - * @param array $postcurr_images Array of image objects. |
|
| 1203 | - */ |
|
| 1204 | - function geodir_remove_attachments($postcurr_images = array()) |
|
| 1205 | - {
|
|
| 1206 | - // Unlink all past images of post |
|
| 1207 | - if (!empty($postcurr_images)) {
|
|
| 1208 | - |
|
| 1209 | - $uploads = wp_upload_dir(); |
|
| 1210 | - $uploads_dir = $uploads['path']; |
|
| 1211 | - |
|
| 1212 | - foreach ($postcurr_images as $postimg) {
|
|
| 1213 | - $image_name_arr = explode('/', $postimg->src);
|
|
| 1214 | - $filename = end($image_name_arr); |
|
| 1215 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | - unlink($uploads_dir . '/' . $filename); |
|
| 1217 | - } |
|
| 1218 | - |
|
| 1219 | - } // endif |
|
| 1220 | - // Unlink all past images of post end |
|
| 1221 | - } |
|
| 1197 | + /** |
|
| 1198 | + * Remove post attachments. |
|
| 1199 | + * |
|
| 1200 | + * @since 1.0.0 |
|
| 1201 | + * @package GeoDirectory |
|
| 1202 | + * @param array $postcurr_images Array of image objects. |
|
| 1203 | + */ |
|
| 1204 | + function geodir_remove_attachments($postcurr_images = array()) |
|
| 1205 | + {
|
|
| 1206 | + // Unlink all past images of post |
|
| 1207 | + if (!empty($postcurr_images)) {
|
|
| 1208 | + |
|
| 1209 | + $uploads = wp_upload_dir(); |
|
| 1210 | + $uploads_dir = $uploads['path']; |
|
| 1211 | + |
|
| 1212 | + foreach ($postcurr_images as $postimg) {
|
|
| 1213 | + $image_name_arr = explode('/', $postimg->src);
|
|
| 1214 | + $filename = end($image_name_arr); |
|
| 1215 | + if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | + unlink($uploads_dir . '/' . $filename); |
|
| 1217 | + } |
|
| 1218 | + |
|
| 1219 | + } // endif |
|
| 1220 | + // Unlink all past images of post end |
|
| 1221 | + } |
|
| 1222 | 1222 | } |
| 1223 | 1223 | |
| 1224 | 1224 | if (!function_exists('geodir_get_featured_image')) {
|
| 1225 | - /** |
|
| 1226 | - * Gets the post featured image. |
|
| 1227 | - * |
|
| 1228 | - * @since 1.0.0 |
|
| 1229 | - * @package GeoDirectory |
|
| 1230 | - * @global object $wpdb WordPress Database object. |
|
| 1231 | - * @global object $post The current post object. |
|
| 1232 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1233 | - * @param int|string $post_id The post ID. |
|
| 1234 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1235 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1236 | - * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1237 | - * @return bool|object Image details as an object. |
|
| 1238 | - */ |
|
| 1239 | - function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1240 | - {
|
|
| 1241 | - global $wpdb, $plugin_prefix, $post; |
|
| 1242 | - |
|
| 1243 | - if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1244 | - $post_type = $post->post_type; |
|
| 1245 | - } else {
|
|
| 1246 | - $post_type = get_post_type($post_id); |
|
| 1247 | - } |
|
| 1248 | - |
|
| 1249 | - if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1250 | - return false;// if not a GD CPT return; |
|
| 1251 | - } |
|
| 1252 | - |
|
| 1253 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1254 | - |
|
| 1255 | - if (!$file) {
|
|
| 1256 | - if (isset($post->featured_image)) {
|
|
| 1257 | - $file = $post->featured_image; |
|
| 1258 | - } else {
|
|
| 1259 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1260 | - } |
|
| 1261 | - } |
|
| 1262 | - |
|
| 1263 | - if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1264 | - $img_arr = array(); |
|
| 1265 | - |
|
| 1266 | - $file_info = pathinfo($file); |
|
| 1267 | - $sub_dir = ''; |
|
| 1268 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1269 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1270 | - |
|
| 1271 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1272 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1273 | - $uploads_path = $uploads['path']; |
|
| 1274 | - |
|
| 1275 | - $file_name = $file_info['basename']; |
|
| 1276 | - |
|
| 1277 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1278 | - /* |
|
| 1225 | + /** |
|
| 1226 | + * Gets the post featured image. |
|
| 1227 | + * |
|
| 1228 | + * @since 1.0.0 |
|
| 1229 | + * @package GeoDirectory |
|
| 1230 | + * @global object $wpdb WordPress Database object. |
|
| 1231 | + * @global object $post The current post object. |
|
| 1232 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1233 | + * @param int|string $post_id The post ID. |
|
| 1234 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1235 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1236 | + * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1237 | + * @return bool|object Image details as an object. |
|
| 1238 | + */ |
|
| 1239 | + function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1240 | + {
|
|
| 1241 | + global $wpdb, $plugin_prefix, $post; |
|
| 1242 | + |
|
| 1243 | + if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1244 | + $post_type = $post->post_type; |
|
| 1245 | + } else {
|
|
| 1246 | + $post_type = get_post_type($post_id); |
|
| 1247 | + } |
|
| 1248 | + |
|
| 1249 | + if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1250 | + return false;// if not a GD CPT return; |
|
| 1251 | + } |
|
| 1252 | + |
|
| 1253 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1254 | + |
|
| 1255 | + if (!$file) {
|
|
| 1256 | + if (isset($post->featured_image)) {
|
|
| 1257 | + $file = $post->featured_image; |
|
| 1258 | + } else {
|
|
| 1259 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1260 | + } |
|
| 1261 | + } |
|
| 1262 | + |
|
| 1263 | + if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1264 | + $img_arr = array(); |
|
| 1265 | + |
|
| 1266 | + $file_info = pathinfo($file); |
|
| 1267 | + $sub_dir = ''; |
|
| 1268 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1269 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1270 | + |
|
| 1271 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1272 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1273 | + $uploads_path = $uploads['path']; |
|
| 1274 | + |
|
| 1275 | + $file_name = $file_info['basename']; |
|
| 1276 | + |
|
| 1277 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1278 | + /* |
|
| 1279 | 1279 | * Allows the filter of image src for such things as CDN change. |
| 1280 | 1280 | * |
| 1281 | 1281 | * @since 1.5.7 |
@@ -1284,158 +1284,158 @@ discard block |
||
| 1284 | 1284 | * @param string $uploads_url The server upload directory url. |
| 1285 | 1285 | * @param string $uploads_baseurl The uploads dir base url. |
| 1286 | 1286 | */ |
| 1287 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1288 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1289 | - $width = 0; |
|
| 1290 | - $height = 0; |
|
| 1291 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1292 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1293 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1294 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1295 | - } |
|
| 1296 | - $img_arr['width'] = $width; |
|
| 1297 | - $img_arr['height'] = $height; |
|
| 1298 | - $img_arr['title'] = ''; |
|
| 1299 | - } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1300 | - foreach ($post_images as $image) {
|
|
| 1301 | - return $image; |
|
| 1302 | - } |
|
| 1303 | - } else if ($no_image) {
|
|
| 1304 | - $img_arr = array(); |
|
| 1305 | - |
|
| 1306 | - $default_img = ''; |
|
| 1307 | - if (isset($post->default_category) && $post->default_category) {
|
|
| 1308 | - $default_cat = $post->default_category; |
|
| 1309 | - } else {
|
|
| 1310 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1311 | - } |
|
| 1312 | - |
|
| 1313 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1314 | - $default_img = $default_catimg['src']; |
|
| 1315 | - elseif ($no_image) {
|
|
| 1316 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1317 | - } |
|
| 1318 | - |
|
| 1319 | - if (!empty($default_img)) {
|
|
| 1320 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1321 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1322 | - $uploads_path = $uploads['path']; |
|
| 1323 | - |
|
| 1324 | - $img_arr = array(); |
|
| 1325 | - |
|
| 1326 | - $file_info = pathinfo($default_img); |
|
| 1327 | - |
|
| 1328 | - $file_name = $file_info['basename']; |
|
| 1329 | - |
|
| 1330 | - $img_arr['src'] = $default_img; |
|
| 1331 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1332 | - |
|
| 1333 | - $width = 0; |
|
| 1334 | - $height = 0; |
|
| 1335 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1336 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1337 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1338 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1339 | - } |
|
| 1340 | - $img_arr['width'] = $width; |
|
| 1341 | - $img_arr['height'] = $height; |
|
| 1342 | - |
|
| 1343 | - $img_arr['title'] = ''; // add the title to the array |
|
| 1344 | - } |
|
| 1345 | - } |
|
| 1346 | - |
|
| 1347 | - if (!empty($img_arr)) |
|
| 1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | - else |
|
| 1350 | - return false; |
|
| 1351 | - } |
|
| 1287 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1288 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1289 | + $width = 0; |
|
| 1290 | + $height = 0; |
|
| 1291 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1292 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1293 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1294 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1295 | + } |
|
| 1296 | + $img_arr['width'] = $width; |
|
| 1297 | + $img_arr['height'] = $height; |
|
| 1298 | + $img_arr['title'] = ''; |
|
| 1299 | + } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1300 | + foreach ($post_images as $image) {
|
|
| 1301 | + return $image; |
|
| 1302 | + } |
|
| 1303 | + } else if ($no_image) {
|
|
| 1304 | + $img_arr = array(); |
|
| 1305 | + |
|
| 1306 | + $default_img = ''; |
|
| 1307 | + if (isset($post->default_category) && $post->default_category) {
|
|
| 1308 | + $default_cat = $post->default_category; |
|
| 1309 | + } else {
|
|
| 1310 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1311 | + } |
|
| 1312 | + |
|
| 1313 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1314 | + $default_img = $default_catimg['src']; |
|
| 1315 | + elseif ($no_image) {
|
|
| 1316 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1317 | + } |
|
| 1318 | + |
|
| 1319 | + if (!empty($default_img)) {
|
|
| 1320 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1321 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1322 | + $uploads_path = $uploads['path']; |
|
| 1323 | + |
|
| 1324 | + $img_arr = array(); |
|
| 1325 | + |
|
| 1326 | + $file_info = pathinfo($default_img); |
|
| 1327 | + |
|
| 1328 | + $file_name = $file_info['basename']; |
|
| 1329 | + |
|
| 1330 | + $img_arr['src'] = $default_img; |
|
| 1331 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1332 | + |
|
| 1333 | + $width = 0; |
|
| 1334 | + $height = 0; |
|
| 1335 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1336 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1337 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1338 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1339 | + } |
|
| 1340 | + $img_arr['width'] = $width; |
|
| 1341 | + $img_arr['height'] = $height; |
|
| 1342 | + |
|
| 1343 | + $img_arr['title'] = ''; // add the title to the array |
|
| 1344 | + } |
|
| 1345 | + } |
|
| 1346 | + |
|
| 1347 | + if (!empty($img_arr)) |
|
| 1348 | + return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | + else |
|
| 1350 | + return false; |
|
| 1351 | + } |
|
| 1352 | 1352 | } |
| 1353 | 1353 | |
| 1354 | 1354 | if (!function_exists('geodir_show_featured_image')) {
|
| 1355 | - /** |
|
| 1356 | - * Gets the post featured image. |
|
| 1357 | - * |
|
| 1358 | - * @since 1.0.0 |
|
| 1359 | - * @package GeoDirectory |
|
| 1360 | - * @param int|string $post_id The post ID. |
|
| 1361 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1362 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1363 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1364 | - * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1365 | - * @return bool|string Returns image html. |
|
| 1366 | - */ |
|
| 1367 | - function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1368 | - {
|
|
| 1369 | - $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1370 | - |
|
| 1371 | - $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1372 | - |
|
| 1373 | - if (!empty($html) && $echo) {
|
|
| 1374 | - echo $html; |
|
| 1375 | - } elseif (!empty($html)) {
|
|
| 1376 | - return $html; |
|
| 1377 | - } else |
|
| 1378 | - return false; |
|
| 1379 | - } |
|
| 1355 | + /** |
|
| 1356 | + * Gets the post featured image. |
|
| 1357 | + * |
|
| 1358 | + * @since 1.0.0 |
|
| 1359 | + * @package GeoDirectory |
|
| 1360 | + * @param int|string $post_id The post ID. |
|
| 1361 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1362 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1363 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1364 | + * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1365 | + * @return bool|string Returns image html. |
|
| 1366 | + */ |
|
| 1367 | + function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1368 | + {
|
|
| 1369 | + $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1370 | + |
|
| 1371 | + $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1372 | + |
|
| 1373 | + if (!empty($html) && $echo) {
|
|
| 1374 | + echo $html; |
|
| 1375 | + } elseif (!empty($html)) {
|
|
| 1376 | + return $html; |
|
| 1377 | + } else |
|
| 1378 | + return false; |
|
| 1379 | + } |
|
| 1380 | 1380 | } |
| 1381 | 1381 | |
| 1382 | 1382 | if (!function_exists('geodir_get_images')) {
|
| 1383 | - /** |
|
| 1384 | - * Gets the post images. |
|
| 1385 | - * |
|
| 1386 | - * @since 1.0.0 |
|
| 1387 | - * @package GeoDirectory |
|
| 1388 | - * @global object $wpdb WordPress Database object. |
|
| 1389 | - * @param int $post_id The post ID. |
|
| 1390 | - * @param string $img_size Optional. Thumbnail size. |
|
| 1391 | - * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1392 | - * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1393 | - * @param int|string $limit Optional. Number of images. |
|
| 1394 | - * @return array|bool Returns images as an array. Each item is an object. |
|
| 1395 | - */ |
|
| 1396 | - function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1397 | - {
|
|
| 1398 | - global $wpdb; |
|
| 1399 | - if ($limit) {
|
|
| 1400 | - $limit_q = " LIMIT $limit "; |
|
| 1401 | - } else {
|
|
| 1402 | - $limit_q = ''; |
|
| 1403 | - } |
|
| 1404 | - $not_featured = ''; |
|
| 1405 | - $sub_dir = ''; |
|
| 1406 | - if (!$add_featured) |
|
| 1407 | - $not_featured = " AND is_featured = 0 "; |
|
| 1408 | - |
|
| 1409 | - $arrImages = $wpdb->get_results( |
|
| 1410 | - $wpdb->prepare( |
|
| 1411 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1412 | - array('%image%', $post_id)
|
|
| 1413 | - ) |
|
| 1414 | - ); |
|
| 1415 | - |
|
| 1416 | - $counter = 0; |
|
| 1417 | - $return_arr = array(); |
|
| 1418 | - |
|
| 1419 | - if (!empty($arrImages)) {
|
|
| 1420 | - foreach ($arrImages as $attechment) {
|
|
| 1421 | - |
|
| 1422 | - $img_arr = array(); |
|
| 1423 | - $img_arr['id'] = $attechment->ID; |
|
| 1424 | - $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1425 | - |
|
| 1426 | - $file_info = pathinfo($attechment->file); |
|
| 1427 | - |
|
| 1428 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1429 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1430 | - |
|
| 1431 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1432 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1433 | - $uploads_path = $uploads['path']; |
|
| 1434 | - |
|
| 1435 | - $file_name = $file_info['basename']; |
|
| 1436 | - |
|
| 1437 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1438 | - /* |
|
| 1383 | + /** |
|
| 1384 | + * Gets the post images. |
|
| 1385 | + * |
|
| 1386 | + * @since 1.0.0 |
|
| 1387 | + * @package GeoDirectory |
|
| 1388 | + * @global object $wpdb WordPress Database object. |
|
| 1389 | + * @param int $post_id The post ID. |
|
| 1390 | + * @param string $img_size Optional. Thumbnail size. |
|
| 1391 | + * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1392 | + * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1393 | + * @param int|string $limit Optional. Number of images. |
|
| 1394 | + * @return array|bool Returns images as an array. Each item is an object. |
|
| 1395 | + */ |
|
| 1396 | + function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1397 | + {
|
|
| 1398 | + global $wpdb; |
|
| 1399 | + if ($limit) {
|
|
| 1400 | + $limit_q = " LIMIT $limit "; |
|
| 1401 | + } else {
|
|
| 1402 | + $limit_q = ''; |
|
| 1403 | + } |
|
| 1404 | + $not_featured = ''; |
|
| 1405 | + $sub_dir = ''; |
|
| 1406 | + if (!$add_featured) |
|
| 1407 | + $not_featured = " AND is_featured = 0 "; |
|
| 1408 | + |
|
| 1409 | + $arrImages = $wpdb->get_results( |
|
| 1410 | + $wpdb->prepare( |
|
| 1411 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1412 | + array('%image%', $post_id)
|
|
| 1413 | + ) |
|
| 1414 | + ); |
|
| 1415 | + |
|
| 1416 | + $counter = 0; |
|
| 1417 | + $return_arr = array(); |
|
| 1418 | + |
|
| 1419 | + if (!empty($arrImages)) {
|
|
| 1420 | + foreach ($arrImages as $attechment) {
|
|
| 1421 | + |
|
| 1422 | + $img_arr = array(); |
|
| 1423 | + $img_arr['id'] = $attechment->ID; |
|
| 1424 | + $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1425 | + |
|
| 1426 | + $file_info = pathinfo($attechment->file); |
|
| 1427 | + |
|
| 1428 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1429 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1430 | + |
|
| 1431 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1432 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1433 | + $uploads_path = $uploads['path']; |
|
| 1434 | + |
|
| 1435 | + $file_name = $file_info['basename']; |
|
| 1436 | + |
|
| 1437 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1438 | + /* |
|
| 1439 | 1439 | * Allows the filter of image src for such things as CDN change. |
| 1440 | 1440 | * |
| 1441 | 1441 | * @since 1.5.7 |
@@ -1444,515 +1444,515 @@ discard block |
||
| 1444 | 1444 | * @param string $uploads_url The server upload directory url. |
| 1445 | 1445 | * @param string $uploads_baseurl The uploads dir base url. |
| 1446 | 1446 | */ |
| 1447 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1448 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1449 | - $width = 0; |
|
| 1450 | - $height = 0; |
|
| 1451 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1452 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1453 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1454 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1455 | - } |
|
| 1456 | - $img_arr['width'] = $width; |
|
| 1457 | - $img_arr['height'] = $height; |
|
| 1458 | - |
|
| 1459 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1460 | - $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1461 | - $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1462 | - $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1463 | - $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1464 | - |
|
| 1465 | - $return_arr[] = (object)$img_arr; |
|
| 1466 | - |
|
| 1467 | - $counter++; |
|
| 1468 | - } |
|
| 1469 | - return (object)$return_arr; |
|
| 1470 | - } else if ($no_images) {
|
|
| 1471 | - $default_img = ''; |
|
| 1472 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1473 | - $post_type = get_post_type($post_id); |
|
| 1474 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1475 | - $default_img = $default_catimg['src']; |
|
| 1476 | - elseif ($no_images) {
|
|
| 1477 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1478 | - } |
|
| 1479 | - |
|
| 1480 | - if (!empty($default_img)) {
|
|
| 1481 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1447 | + $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1448 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1449 | + $width = 0; |
|
| 1450 | + $height = 0; |
|
| 1451 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1452 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1453 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1454 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1455 | + } |
|
| 1456 | + $img_arr['width'] = $width; |
|
| 1457 | + $img_arr['height'] = $height; |
|
| 1458 | + |
|
| 1459 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1460 | + $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1461 | + $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1462 | + $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1463 | + $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1464 | + |
|
| 1465 | + $return_arr[] = (object)$img_arr; |
|
| 1466 | + |
|
| 1467 | + $counter++; |
|
| 1468 | + } |
|
| 1469 | + return (object)$return_arr; |
|
| 1470 | + } else if ($no_images) {
|
|
| 1471 | + $default_img = ''; |
|
| 1472 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1473 | + $post_type = get_post_type($post_id); |
|
| 1474 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1475 | + $default_img = $default_catimg['src']; |
|
| 1476 | + elseif ($no_images) {
|
|
| 1477 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1478 | + } |
|
| 1479 | + |
|
| 1480 | + if (!empty($default_img)) {
|
|
| 1481 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1482 | 1482 | |
| 1483 | - $image_path = $default_img; |
|
| 1484 | - if (!path_is_absolute($image_path)) {
|
|
| 1485 | - $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1486 | - } |
|
| 1487 | - |
|
| 1488 | - $file_info = pathinfo($default_img); |
|
| 1489 | - $file_name = $file_info['basename']; |
|
| 1490 | - |
|
| 1491 | - $width = ''; |
|
| 1492 | - $height = ''; |
|
| 1493 | - if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1494 | - $imagesize = getimagesize($image_path); |
|
| 1495 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1496 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1497 | - } |
|
| 1483 | + $image_path = $default_img; |
|
| 1484 | + if (!path_is_absolute($image_path)) {
|
|
| 1485 | + $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1486 | + } |
|
| 1487 | + |
|
| 1488 | + $file_info = pathinfo($default_img); |
|
| 1489 | + $file_name = $file_info['basename']; |
|
| 1490 | + |
|
| 1491 | + $width = ''; |
|
| 1492 | + $height = ''; |
|
| 1493 | + if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1494 | + $imagesize = getimagesize($image_path); |
|
| 1495 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1496 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1497 | + } |
|
| 1498 | 1498 | |
| 1499 | - $img_arr = array(); |
|
| 1500 | - $img_arr['src'] = $default_img; |
|
| 1501 | - $img_arr['path'] = $image_path; |
|
| 1502 | - $img_arr['width'] = $width; |
|
| 1503 | - $img_arr['height'] = $height; |
|
| 1504 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1505 | - $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1506 | - $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1507 | - |
|
| 1508 | - $return_arr[] = (object)$img_arr; |
|
| 1509 | - |
|
| 1510 | - return $return_arr; |
|
| 1511 | - } else |
|
| 1512 | - return false; |
|
| 1513 | - } |
|
| 1514 | - } |
|
| 1499 | + $img_arr = array(); |
|
| 1500 | + $img_arr['src'] = $default_img; |
|
| 1501 | + $img_arr['path'] = $image_path; |
|
| 1502 | + $img_arr['width'] = $width; |
|
| 1503 | + $img_arr['height'] = $height; |
|
| 1504 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1505 | + $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1506 | + $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1507 | + |
|
| 1508 | + $return_arr[] = (object)$img_arr; |
|
| 1509 | + |
|
| 1510 | + return $return_arr; |
|
| 1511 | + } else |
|
| 1512 | + return false; |
|
| 1513 | + } |
|
| 1514 | + } |
|
| 1515 | 1515 | } |
| 1516 | 1516 | |
| 1517 | 1517 | if (!function_exists('geodir_show_image')) {
|
| 1518 | - /** |
|
| 1519 | - * Show image using image details. |
|
| 1520 | - * |
|
| 1521 | - * @since 1.0.0 |
|
| 1522 | - * @package GeoDirectory |
|
| 1523 | - * @param array|object $request Image info either as an array or object. |
|
| 1524 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1525 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1526 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1527 | - * @return bool|string Returns image html. |
|
| 1528 | - */ |
|
| 1529 | - function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1530 | - {
|
|
| 1531 | - $image = new stdClass(); |
|
| 1532 | - |
|
| 1533 | - $html = ''; |
|
| 1534 | - if (!empty($request)) {
|
|
| 1535 | - if (!is_object($request)){
|
|
| 1536 | - $request = (object)$request; |
|
| 1537 | - } |
|
| 1538 | - |
|
| 1539 | - if (isset($request->src) && !isset($request->path)) {
|
|
| 1540 | - $request->path = $request->src; |
|
| 1541 | - } |
|
| 1542 | - |
|
| 1543 | - /* |
|
| 1518 | + /** |
|
| 1519 | + * Show image using image details. |
|
| 1520 | + * |
|
| 1521 | + * @since 1.0.0 |
|
| 1522 | + * @package GeoDirectory |
|
| 1523 | + * @param array|object $request Image info either as an array or object. |
|
| 1524 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1525 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1526 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1527 | + * @return bool|string Returns image html. |
|
| 1528 | + */ |
|
| 1529 | + function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1530 | + {
|
|
| 1531 | + $image = new stdClass(); |
|
| 1532 | + |
|
| 1533 | + $html = ''; |
|
| 1534 | + if (!empty($request)) {
|
|
| 1535 | + if (!is_object($request)){
|
|
| 1536 | + $request = (object)$request; |
|
| 1537 | + } |
|
| 1538 | + |
|
| 1539 | + if (isset($request->src) && !isset($request->path)) {
|
|
| 1540 | + $request->path = $request->src; |
|
| 1541 | + } |
|
| 1542 | + |
|
| 1543 | + /* |
|
| 1544 | 1544 | * getimagesize() works faster from path than url so we try and get path if we can. |
| 1545 | 1545 | */ |
| 1546 | - $upload_dir = wp_upload_dir(); |
|
| 1547 | - $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1548 | - $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1549 | - if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1550 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1551 | - } |
|
| 1546 | + $upload_dir = wp_upload_dir(); |
|
| 1547 | + $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1548 | + $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1549 | + if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1550 | + $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1551 | + } |
|
| 1552 | 1552 | |
| 1553 | - $width = 0; |
|
| 1554 | - $height = 0; |
|
| 1555 | - if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1556 | - $imagesize = getimagesize($request->path); |
|
| 1557 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1558 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1559 | - } |
|
| 1560 | - |
|
| 1561 | - $image->src = $request->src; |
|
| 1562 | - $image->width = $width; |
|
| 1563 | - $image->height = $height; |
|
| 1564 | - |
|
| 1565 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1566 | - |
|
| 1567 | - if (!is_wp_error($max_size)) {
|
|
| 1568 | - if ($image->width) {
|
|
| 1569 | - if ($image->height >= $image->width) {
|
|
| 1570 | - $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1571 | - } else if ($image->width < ($max_size->h)) {
|
|
| 1572 | - $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1573 | - } else |
|
| 1574 | - $width_per = 100; |
|
| 1575 | - } |
|
| 1576 | - |
|
| 1577 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1578 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1579 | - } else {
|
|
| 1580 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1581 | - } |
|
| 1582 | - } |
|
| 1583 | - } |
|
| 1584 | - |
|
| 1585 | - if (!empty($html) && $echo) {
|
|
| 1586 | - echo $html; |
|
| 1587 | - } elseif (!empty($html)) {
|
|
| 1588 | - return $html; |
|
| 1589 | - } else |
|
| 1590 | - return false; |
|
| 1591 | - } |
|
| 1592 | -} |
|
| 1553 | + $width = 0; |
|
| 1554 | + $height = 0; |
|
| 1555 | + if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1556 | + $imagesize = getimagesize($request->path); |
|
| 1557 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1558 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1559 | + } |
|
| 1593 | 1560 | |
| 1594 | -if (!function_exists('geodir_set_post_terms')) {
|
|
| 1595 | - /** |
|
| 1596 | - * Set post Categories. |
|
| 1597 | - * |
|
| 1598 | - * @since 1.0.0 |
|
| 1599 | - * @package GeoDirectory |
|
| 1600 | - * @global object $wpdb WordPress Database object. |
|
| 1601 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1602 | - * @param int $post_id The post ID. |
|
| 1603 | - * @param array $terms An array of term objects. |
|
| 1604 | - * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1605 | - * @param string $taxonomy Taxonomy slug. |
|
| 1606 | - */ |
|
| 1607 | - function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1608 | - {
|
|
| 1609 | - global $wpdb, $plugin_prefix; |
|
| 1561 | + $image->src = $request->src; |
|
| 1562 | + $image->width = $width; |
|
| 1563 | + $image->height = $height; |
|
| 1610 | 1564 | |
| 1611 | - $post_type = get_post_type($post_id); |
|
| 1565 | + $max_size = (object)geodir_get_imagesize($size); |
|
| 1612 | 1566 | |
| 1613 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1567 | + if (!is_wp_error($max_size)) {
|
|
| 1568 | + if ($image->width) {
|
|
| 1569 | + if ($image->height >= $image->width) {
|
|
| 1570 | + $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1571 | + } else if ($image->width < ($max_size->h)) {
|
|
| 1572 | + $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1573 | + } else |
|
| 1574 | + $width_per = 100; |
|
| 1575 | + } |
|
| 1614 | 1576 | |
| 1615 | - if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1577 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1578 | + $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1579 | + } else {
|
|
| 1580 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1581 | + } |
|
| 1582 | + } |
|
| 1583 | + } |
|
| 1584 | + |
|
| 1585 | + if (!empty($html) && $echo) {
|
|
| 1586 | + echo $html; |
|
| 1587 | + } elseif (!empty($html)) {
|
|
| 1588 | + return $html; |
|
| 1589 | + } else |
|
| 1590 | + return false; |
|
| 1591 | + } |
|
| 1592 | +} |
|
| 1616 | 1593 | |
| 1617 | - if (strstr($taxonomy, 'tag')) {
|
|
| 1618 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1619 | - geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1620 | - } |
|
| 1621 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1622 | - $srcharr = array('"', '\\');
|
|
| 1623 | - $replarr = array(""", '');
|
|
| 1594 | +if (!function_exists('geodir_set_post_terms')) {
|
|
| 1595 | + /** |
|
| 1596 | + * Set post Categories. |
|
| 1597 | + * |
|
| 1598 | + * @since 1.0.0 |
|
| 1599 | + * @package GeoDirectory |
|
| 1600 | + * @global object $wpdb WordPress Database object. |
|
| 1601 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1602 | + * @param int $post_id The post ID. |
|
| 1603 | + * @param array $terms An array of term objects. |
|
| 1604 | + * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1605 | + * @param string $taxonomy Taxonomy slug. |
|
| 1606 | + */ |
|
| 1607 | + function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1608 | + {
|
|
| 1609 | + global $wpdb, $plugin_prefix; |
|
| 1610 | + |
|
| 1611 | + $post_type = get_post_type($post_id); |
|
| 1612 | + |
|
| 1613 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1614 | + |
|
| 1615 | + if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1616 | + |
|
| 1617 | + if (strstr($taxonomy, 'tag')) {
|
|
| 1618 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1619 | + geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1620 | + } |
|
| 1621 | + } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1622 | + $srcharr = array('"', '\\');
|
|
| 1623 | + $replarr = array(""", '');
|
|
| 1624 | 1624 | |
| 1625 | - $post_obj = get_post($post_id); |
|
| 1625 | + $post_obj = get_post($post_id); |
|
| 1626 | 1626 | |
| 1627 | - $cat_ids = array('0');
|
|
| 1628 | - if (is_array($tt_ids)) |
|
| 1629 | - $cat_ids = $tt_ids; |
|
| 1627 | + $cat_ids = array('0');
|
|
| 1628 | + if (is_array($tt_ids)) |
|
| 1629 | + $cat_ids = $tt_ids; |
|
| 1630 | 1630 | |
| 1631 | 1631 | |
| 1632 | - if (!empty($cat_ids)) {
|
|
| 1633 | - $cat_ids_array = $cat_ids; |
|
| 1634 | - $cat_ids_length = count($cat_ids_array); |
|
| 1635 | - $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1636 | - $format = implode(',', $cat_ids_format);
|
|
| 1632 | + if (!empty($cat_ids)) {
|
|
| 1633 | + $cat_ids_array = $cat_ids; |
|
| 1634 | + $cat_ids_length = count($cat_ids_array); |
|
| 1635 | + $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1636 | + $format = implode(',', $cat_ids_format);
|
|
| 1637 | 1637 | |
| 1638 | - $cat_ids_array_del = $cat_ids_array; |
|
| 1639 | - $cat_ids_array_del[] = $post_id; |
|
| 1638 | + $cat_ids_array_del = $cat_ids_array; |
|
| 1639 | + $cat_ids_array_del[] = $post_id; |
|
| 1640 | 1640 | |
| 1641 | - $wpdb->get_var( |
|
| 1642 | - $wpdb->prepare( |
|
| 1643 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1644 | - $cat_ids_array_del |
|
| 1645 | - ) |
|
| 1646 | - ); |
|
| 1641 | + $wpdb->get_var( |
|
| 1642 | + $wpdb->prepare( |
|
| 1643 | + "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1644 | + $cat_ids_array_del |
|
| 1645 | + ) |
|
| 1646 | + ); |
|
| 1647 | 1647 | |
| 1648 | 1648 | |
| 1649 | - $post_term = $wpdb->get_col( |
|
| 1650 | - $wpdb->prepare( |
|
| 1651 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1652 | - $cat_ids_array |
|
| 1653 | - ) |
|
| 1654 | - ); |
|
| 1649 | + $post_term = $wpdb->get_col( |
|
| 1650 | + $wpdb->prepare( |
|
| 1651 | + "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1652 | + $cat_ids_array |
|
| 1653 | + ) |
|
| 1654 | + ); |
|
| 1655 | 1655 | |
| 1656 | - } |
|
| 1656 | + } |
|
| 1657 | 1657 | |
| 1658 | - $post_marker_json = ''; |
|
| 1658 | + $post_marker_json = ''; |
|
| 1659 | 1659 | |
| 1660 | - if (!empty($post_term)): |
|
| 1660 | + if (!empty($post_term)): |
|
| 1661 | 1661 | |
| 1662 | - foreach ($post_term as $cat_id): |
|
| 1662 | + foreach ($post_term as $cat_id): |
|
| 1663 | 1663 | |
| 1664 | - $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1665 | - $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1664 | + $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1665 | + $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1666 | 1666 | |
| 1667 | - $post_title = $post_obj->title; |
|
| 1668 | - $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1667 | + $post_title = $post_obj->title; |
|
| 1668 | + $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1669 | 1669 | |
| 1670 | - $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1671 | - $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1670 | + $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1671 | + $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1672 | 1672 | |
| 1673 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1674 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1673 | + $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1674 | + $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1675 | 1675 | |
| 1676 | - $json = '{';
|
|
| 1677 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1678 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1679 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1680 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1681 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1682 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1683 | - $json .= '}'; |
|
| 1676 | + $json = '{';
|
|
| 1677 | + $json .= '"id":"' . $post_id . '",'; |
|
| 1678 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1679 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 1680 | + $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1681 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 1682 | + $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1683 | + $json .= '}'; |
|
| 1684 | 1684 | |
| 1685 | 1685 | |
| 1686 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1687 | - $post_marker_json = $json; |
|
| 1686 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1687 | + $post_marker_json = $json; |
|
| 1688 | 1688 | |
| 1689 | 1689 | |
| 1690 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1690 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1691 | 1691 | |
| 1692 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1692 | + $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1693 | 1693 | post_title = %s, |
| 1694 | 1694 | json = %s |
| 1695 | 1695 | WHERE post_id = %d AND cat_id = %d ", |
| 1696 | - array($post_title, $json, $post_id, $cat_id)); |
|
| 1696 | + array($post_title, $json, $post_id, $cat_id)); |
|
| 1697 | 1697 | |
| 1698 | - } else {
|
|
| 1698 | + } else {
|
|
| 1699 | 1699 | |
| 1700 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1700 | + $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1701 | 1701 | post_id = %d, |
| 1702 | 1702 | post_title = %s, |
| 1703 | 1703 | cat_id = %d, |
| 1704 | 1704 | json = %s", |
| 1705 | - array($post_id, $post_title, $cat_id, $json)); |
|
| 1705 | + array($post_id, $post_title, $cat_id, $json)); |
|
| 1706 | 1706 | |
| 1707 | - } |
|
| 1707 | + } |
|
| 1708 | 1708 | |
| 1709 | - $wpdb->query($json_query); |
|
| 1709 | + $wpdb->query($json_query); |
|
| 1710 | 1710 | |
| 1711 | - endforeach; |
|
| 1711 | + endforeach; |
|
| 1712 | 1712 | |
| 1713 | - endif; |
|
| 1713 | + endif; |
|
| 1714 | 1714 | |
| 1715 | - if (!empty($post_term) && is_array($post_term)) {
|
|
| 1716 | - $categories = implode(',', $post_term);
|
|
| 1715 | + if (!empty($post_term) && is_array($post_term)) {
|
|
| 1716 | + $categories = implode(',', $post_term);
|
|
| 1717 | 1717 | |
| 1718 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1718 | + if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1719 | 1719 | |
| 1720 | - if (empty($post_marker_json)) |
|
| 1721 | - $post_marker_json = isset($json) ? $json : ''; |
|
| 1720 | + if (empty($post_marker_json)) |
|
| 1721 | + $post_marker_json = isset($json) ? $json : ''; |
|
| 1722 | 1722 | |
| 1723 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1723 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1724 | 1724 | |
| 1725 | - $wpdb->query( |
|
| 1726 | - $wpdb->prepare( |
|
| 1727 | - "UPDATE " . $table . " SET |
|
| 1725 | + $wpdb->query( |
|
| 1726 | + $wpdb->prepare( |
|
| 1727 | + "UPDATE " . $table . " SET |
|
| 1728 | 1728 | " . $taxonomy . " = %s, |
| 1729 | 1729 | marker_json = %s |
| 1730 | 1730 | where post_id = %d", |
| 1731 | - array($categories, $post_marker_json, $post_id) |
|
| 1732 | - ) |
|
| 1733 | - ); |
|
| 1731 | + array($categories, $post_marker_json, $post_id) |
|
| 1732 | + ) |
|
| 1733 | + ); |
|
| 1734 | 1734 | |
| 1735 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1735 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1736 | 1736 | |
| 1737 | - $categories = trim($categories, ','); |
|
| 1737 | + $categories = trim($categories, ','); |
|
| 1738 | 1738 | |
| 1739 | - if ($categories) {
|
|
| 1739 | + if ($categories) {
|
|
| 1740 | 1740 | |
| 1741 | - $categories = explode(',', $categories);
|
|
| 1741 | + $categories = explode(',', $categories);
|
|
| 1742 | 1742 | |
| 1743 | - $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1743 | + $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1744 | 1744 | |
| 1745 | - if (!in_array($default_category, $categories)) {
|
|
| 1745 | + if (!in_array($default_category, $categories)) {
|
|
| 1746 | 1746 | |
| 1747 | - $wpdb->query( |
|
| 1748 | - $wpdb->prepare( |
|
| 1749 | - "UPDATE " . $table . " SET |
|
| 1747 | + $wpdb->query( |
|
| 1748 | + $wpdb->prepare( |
|
| 1749 | + "UPDATE " . $table . " SET |
|
| 1750 | 1750 | default_category = %s |
| 1751 | 1751 | where post_id = %d", |
| 1752 | - array($categories[0], $post_id) |
|
| 1753 | - ) |
|
| 1754 | - ); |
|
| 1752 | + array($categories[0], $post_id) |
|
| 1753 | + ) |
|
| 1754 | + ); |
|
| 1755 | 1755 | |
| 1756 | - $default_category = $categories[0]; |
|
| 1756 | + $default_category = $categories[0]; |
|
| 1757 | 1757 | |
| 1758 | - } |
|
| 1758 | + } |
|
| 1759 | 1759 | |
| 1760 | - if ($default_category == '') |
|
| 1761 | - $default_category = $categories[0]; |
|
| 1760 | + if ($default_category == '') |
|
| 1761 | + $default_category = $categories[0]; |
|
| 1762 | 1762 | |
| 1763 | - geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1763 | + geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1764 | 1764 | |
| 1765 | - } |
|
| 1765 | + } |
|
| 1766 | 1766 | |
| 1767 | - } |
|
| 1767 | + } |
|
| 1768 | 1768 | |
| 1769 | 1769 | |
| 1770 | - } else {
|
|
| 1770 | + } else {
|
|
| 1771 | 1771 | |
| 1772 | - $wpdb->query( |
|
| 1773 | - $wpdb->prepare( |
|
| 1774 | - "INSERT INTO " . $table . " SET |
|
| 1772 | + $wpdb->query( |
|
| 1773 | + $wpdb->prepare( |
|
| 1774 | + "INSERT INTO " . $table . " SET |
|
| 1775 | 1775 | post_id = %d, |
| 1776 | 1776 | " . $taxonomy . " = %s, |
| 1777 | 1777 | marker_json = %s ", |
| 1778 | 1778 | |
| 1779 | - array($post_id, $categories, $post_marker_json) |
|
| 1780 | - ) |
|
| 1781 | - ); |
|
| 1782 | - } |
|
| 1783 | - } |
|
| 1784 | - } |
|
| 1785 | - } |
|
| 1786 | - } |
|
| 1779 | + array($post_id, $categories, $post_marker_json) |
|
| 1780 | + ) |
|
| 1781 | + ); |
|
| 1782 | + } |
|
| 1783 | + } |
|
| 1784 | + } |
|
| 1785 | + } |
|
| 1786 | + } |
|
| 1787 | 1787 | } |
| 1788 | 1788 | |
| 1789 | 1789 | if (!function_exists('geodir_get_infowindow_html')) {
|
| 1790 | - /** |
|
| 1791 | - * Set post Map Marker info html. |
|
| 1792 | - * |
|
| 1793 | - * @since 1.0.0 |
|
| 1794 | - * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1795 | - * @package GeoDirectory |
|
| 1796 | - * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1797 | - * @global object $gd_session GeoDirectory Session object. |
|
| 1798 | - * @param object $postinfo_obj The post details object. |
|
| 1799 | - * @param string $post_preview Is this a post preview?. |
|
| 1800 | - * @return mixed|string|void |
|
| 1801 | - */ |
|
| 1802 | - function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1803 | - {
|
|
| 1804 | - global $preview, $gd_session; |
|
| 1805 | - $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1806 | - $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1807 | - |
|
| 1808 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1809 | - $ID = ''; |
|
| 1810 | - $plink = ''; |
|
| 1811 | - |
|
| 1812 | - if (isset($postinfo_obj->pid)) {
|
|
| 1813 | - $ID = $postinfo_obj->pid; |
|
| 1814 | - $plink = get_permalink($ID); |
|
| 1815 | - } |
|
| 1816 | - |
|
| 1817 | - $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1818 | - $lat = $postinfo_obj->post_latitude; |
|
| 1819 | - $lng = $postinfo_obj->post_longitude; |
|
| 1820 | - $address = str_replace($srcharr, $replarr, ($postinfo_obj->post_address)); |
|
| 1821 | - $contact = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_contact)); |
|
| 1822 | - $timing = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_timing)); |
|
| 1823 | - } else {
|
|
| 1824 | - $ID = $postinfo_obj->post_id; |
|
| 1825 | - $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1826 | - $plink = get_permalink($ID); |
|
| 1827 | - $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1828 | - $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1829 | - $address = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'post_address', true), ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1830 | - $contact = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'geodir_contact', true), ENT_COMPAT, 'UTF-8')); |
|
| 1831 | - $timing = str_replace($srcharr, $replarr, (geodir_get_post_meta($ID, 'geodir_timing', true))); |
|
| 1832 | - } |
|
| 1833 | - |
|
| 1834 | - // filter field as per price package |
|
| 1835 | - global $geodir_addon_list; |
|
| 1836 | - if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
|
|
| 1837 | - $post_type = get_post_type($ID); |
|
| 1838 | - $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1839 | - $field_name = 'geodir_contact'; |
|
| 1840 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1841 | - $contact = ''; |
|
| 1842 | - } |
|
| 1843 | - |
|
| 1844 | - $field_name = 'geodir_timing'; |
|
| 1845 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1846 | - $timing = ''; |
|
| 1847 | - } |
|
| 1848 | - } |
|
| 1849 | - |
|
| 1850 | - if ($lat && $lng) {
|
|
| 1851 | - ob_start(); ?> |
|
| 1790 | + /** |
|
| 1791 | + * Set post Map Marker info html. |
|
| 1792 | + * |
|
| 1793 | + * @since 1.0.0 |
|
| 1794 | + * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1795 | + * @package GeoDirectory |
|
| 1796 | + * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1797 | + * @global object $gd_session GeoDirectory Session object. |
|
| 1798 | + * @param object $postinfo_obj The post details object. |
|
| 1799 | + * @param string $post_preview Is this a post preview?. |
|
| 1800 | + * @return mixed|string|void |
|
| 1801 | + */ |
|
| 1802 | + function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1803 | + {
|
|
| 1804 | + global $preview, $gd_session; |
|
| 1805 | + $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1806 | + $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1807 | + |
|
| 1808 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1809 | + $ID = ''; |
|
| 1810 | + $plink = ''; |
|
| 1811 | + |
|
| 1812 | + if (isset($postinfo_obj->pid)) {
|
|
| 1813 | + $ID = $postinfo_obj->pid; |
|
| 1814 | + $plink = get_permalink($ID); |
|
| 1815 | + } |
|
| 1816 | + |
|
| 1817 | + $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1818 | + $lat = $postinfo_obj->post_latitude; |
|
| 1819 | + $lng = $postinfo_obj->post_longitude; |
|
| 1820 | + $address = str_replace($srcharr, $replarr, ($postinfo_obj->post_address)); |
|
| 1821 | + $contact = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_contact)); |
|
| 1822 | + $timing = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_timing)); |
|
| 1823 | + } else {
|
|
| 1824 | + $ID = $postinfo_obj->post_id; |
|
| 1825 | + $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1826 | + $plink = get_permalink($ID); |
|
| 1827 | + $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1828 | + $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1829 | + $address = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'post_address', true), ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1830 | + $contact = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'geodir_contact', true), ENT_COMPAT, 'UTF-8')); |
|
| 1831 | + $timing = str_replace($srcharr, $replarr, (geodir_get_post_meta($ID, 'geodir_timing', true))); |
|
| 1832 | + } |
|
| 1833 | + |
|
| 1834 | + // filter field as per price package |
|
| 1835 | + global $geodir_addon_list; |
|
| 1836 | + if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
|
|
| 1837 | + $post_type = get_post_type($ID); |
|
| 1838 | + $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1839 | + $field_name = 'geodir_contact'; |
|
| 1840 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1841 | + $contact = ''; |
|
| 1842 | + } |
|
| 1843 | + |
|
| 1844 | + $field_name = 'geodir_timing'; |
|
| 1845 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1846 | + $timing = ''; |
|
| 1847 | + } |
|
| 1848 | + } |
|
| 1849 | + |
|
| 1850 | + if ($lat && $lng) {
|
|
| 1851 | + ob_start(); ?> |
|
| 1852 | 1852 | <div class="gd-bubble" style=""> |
| 1853 | 1853 | <div class="gd-bubble-inside"> |
| 1854 | 1854 | <?php |
| 1855 | - $comment_count = ''; |
|
| 1856 | - $rating_star = ''; |
|
| 1857 | - if ($ID != '') {
|
|
| 1858 | - $rating_star = ''; |
|
| 1859 | - $comment_count = geodir_get_review_count_total($ID); |
|
| 1860 | - |
|
| 1861 | - if (!$preview) {
|
|
| 1862 | - $post_avgratings = geodir_get_post_rating($ID); |
|
| 1863 | - |
|
| 1864 | - $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1865 | - |
|
| 1866 | - /** |
|
| 1867 | - * Filter to change rating stars |
|
| 1868 | - * |
|
| 1869 | - * You can use this filter to change Rating stars. |
|
| 1870 | - * |
|
| 1871 | - * @since 1.0.0 |
|
| 1872 | - * @package GeoDirectory |
|
| 1873 | - * @param string $rating_star Rating stars. |
|
| 1874 | - * @param float $post_avgratings Average ratings of the post. |
|
| 1875 | - * @param int $ID The post ID. |
|
| 1876 | - */ |
|
| 1877 | - $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1878 | - } |
|
| 1879 | - } |
|
| 1880 | - ?> |
|
| 1855 | + $comment_count = ''; |
|
| 1856 | + $rating_star = ''; |
|
| 1857 | + if ($ID != '') {
|
|
| 1858 | + $rating_star = ''; |
|
| 1859 | + $comment_count = geodir_get_review_count_total($ID); |
|
| 1860 | + |
|
| 1861 | + if (!$preview) {
|
|
| 1862 | + $post_avgratings = geodir_get_post_rating($ID); |
|
| 1863 | + |
|
| 1864 | + $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1865 | + |
|
| 1866 | + /** |
|
| 1867 | + * Filter to change rating stars |
|
| 1868 | + * |
|
| 1869 | + * You can use this filter to change Rating stars. |
|
| 1870 | + * |
|
| 1871 | + * @since 1.0.0 |
|
| 1872 | + * @package GeoDirectory |
|
| 1873 | + * @param string $rating_star Rating stars. |
|
| 1874 | + * @param float $post_avgratings Average ratings of the post. |
|
| 1875 | + * @param int $ID The post ID. |
|
| 1876 | + */ |
|
| 1877 | + $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1878 | + } |
|
| 1879 | + } |
|
| 1880 | + ?> |
|
| 1881 | 1881 | <div class="geodir-bubble_desc"> |
| 1882 | 1882 | <h4> |
| 1883 | 1883 | <a href="<?php if ($plink != '') {
|
| 1884 | - echo $plink; |
|
| 1885 | - } else {
|
|
| 1886 | - echo 'javascript:void(0);'; |
|
| 1887 | - } ?>"><?php echo $title; ?></a> |
|
| 1884 | + echo $plink; |
|
| 1885 | + } else {
|
|
| 1886 | + echo 'javascript:void(0);'; |
|
| 1887 | + } ?>"><?php echo $title; ?></a> |
|
| 1888 | 1888 | </h4> |
| 1889 | 1889 | <?php |
| 1890 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1891 | - $post_images = array(); |
|
| 1892 | - if (!empty($postinfo_obj->post_images)) {
|
|
| 1893 | - $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1894 | - } |
|
| 1895 | - |
|
| 1896 | - if (!empty($post_images)) {
|
|
| 1897 | - ?> |
|
| 1890 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1891 | + $post_images = array(); |
|
| 1892 | + if (!empty($postinfo_obj->post_images)) {
|
|
| 1893 | + $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1894 | + } |
|
| 1895 | + |
|
| 1896 | + if (!empty($post_images)) {
|
|
| 1897 | + ?> |
|
| 1898 | 1898 | <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
|
| 1899 | - echo $plink; |
|
| 1900 | - } else {
|
|
| 1901 | - echo 'javascript:void(0);'; |
|
| 1902 | - } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1899 | + echo $plink; |
|
| 1900 | + } else {
|
|
| 1901 | + echo 'javascript:void(0);'; |
|
| 1902 | + } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1903 | 1903 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1904 | 1904 | <?php |
| 1905 | - }else{
|
|
| 1906 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1907 | - } |
|
| 1908 | - } else {
|
|
| 1909 | - if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1910 | - ?> |
|
| 1905 | + }else{
|
|
| 1906 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1907 | + } |
|
| 1908 | + } else {
|
|
| 1909 | + if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1910 | + ?> |
|
| 1911 | 1911 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1912 | 1912 | <?php |
| 1913 | - }else{
|
|
| 1914 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1915 | - } |
|
| 1916 | - } |
|
| 1917 | - ?> |
|
| 1913 | + }else{
|
|
| 1914 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1915 | + } |
|
| 1916 | + } |
|
| 1917 | + ?> |
|
| 1918 | 1918 | <div class="geodir-bubble-meta-side"> |
| 1919 | 1919 | <?php |
| 1920 | - /** |
|
| 1921 | - * Fires before the meta info in the map info window. |
|
| 1922 | - * |
|
| 1923 | - * This can be used to add more info to the map info window before the normal meta info. |
|
| 1924 | - * |
|
| 1925 | - * @since 1.5.4 |
|
| 1926 | - * @param int $ID The post id. |
|
| 1927 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1928 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1929 | - */ |
|
| 1930 | - do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1931 | - ?> |
|
| 1920 | + /** |
|
| 1921 | + * Fires before the meta info in the map info window. |
|
| 1922 | + * |
|
| 1923 | + * This can be used to add more info to the map info window before the normal meta info. |
|
| 1924 | + * |
|
| 1925 | + * @since 1.5.4 |
|
| 1926 | + * @param int $ID The post id. |
|
| 1927 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1928 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1929 | + */ |
|
| 1930 | + do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1931 | + ?> |
|
| 1932 | 1932 | <span class="geodir_address"><i class="fa fa-home"></i> <?php echo $address; ?></span> |
| 1933 | 1933 | <?php if ($contact) { ?><span class="geodir_contact"><i
|
| 1934 | 1934 | class="fa fa-phone"></i> <?php echo $contact; ?></span><?php } ?> |
| 1935 | 1935 | <?php if ($timing) { ?><span class="geodir_timing"><i
|
| 1936 | 1936 | class="fa fa-clock-o"></i> <?php echo $timing; ?></span><?php } |
| 1937 | 1937 | |
| 1938 | - /** |
|
| 1939 | - * Fires after the meta info in the map info window. |
|
| 1940 | - * |
|
| 1941 | - * This can be used to add more info to the map info window after the normal meta info. |
|
| 1942 | - * |
|
| 1943 | - * @since 1.4.2 |
|
| 1944 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1945 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1946 | - */ |
|
| 1947 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1948 | - ?> |
|
| 1938 | + /** |
|
| 1939 | + * Fires after the meta info in the map info window. |
|
| 1940 | + * |
|
| 1941 | + * This can be used to add more info to the map info window after the normal meta info. |
|
| 1942 | + * |
|
| 1943 | + * @since 1.4.2 |
|
| 1944 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1945 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1946 | + */ |
|
| 1947 | + do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1948 | + ?> |
|
| 1949 | 1949 | </div> |
| 1950 | 1950 | <?php |
| 1951 | 1951 | |
| 1952 | - if ($ID) {
|
|
| 1952 | + if ($ID) {
|
|
| 1953 | 1953 | |
| 1954 | - $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1955 | - ?> |
|
| 1954 | + $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1955 | + ?> |
|
| 1956 | 1956 | <div class="geodir-bubble-meta-fade"></div> |
| 1957 | 1957 | |
| 1958 | 1958 | <div class="geodir-bubble-meta-bottom"> |
@@ -1972,69 +1972,69 @@ discard block |
||
| 1972 | 1972 | </div> |
| 1973 | 1973 | </div> |
| 1974 | 1974 | <?php |
| 1975 | - $html = ob_get_clean(); |
|
| 1976 | - /** |
|
| 1977 | - * Filter to change infowindow html |
|
| 1978 | - * |
|
| 1979 | - * You can use this filter to change infowindow html. |
|
| 1980 | - * |
|
| 1981 | - * @since 1.0.0 |
|
| 1982 | - * @package GeoDirectory |
|
| 1983 | - * @param string $html Infowindow html. |
|
| 1984 | - * @param object $postinfo_obj The Post object. |
|
| 1985 | - * @param bool|string $post_preview Is this a post preview? |
|
| 1986 | - */ |
|
| 1987 | - $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 1988 | - return $html; |
|
| 1989 | - } |
|
| 1990 | - } |
|
| 1975 | + $html = ob_get_clean(); |
|
| 1976 | + /** |
|
| 1977 | + * Filter to change infowindow html |
|
| 1978 | + * |
|
| 1979 | + * You can use this filter to change infowindow html. |
|
| 1980 | + * |
|
| 1981 | + * @since 1.0.0 |
|
| 1982 | + * @package GeoDirectory |
|
| 1983 | + * @param string $html Infowindow html. |
|
| 1984 | + * @param object $postinfo_obj The Post object. |
|
| 1985 | + * @param bool|string $post_preview Is this a post preview? |
|
| 1986 | + */ |
|
| 1987 | + $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 1988 | + return $html; |
|
| 1989 | + } |
|
| 1990 | + } |
|
| 1991 | 1991 | } |
| 1992 | 1992 | |
| 1993 | 1993 | |
| 1994 | 1994 | if (!function_exists('geodir_new_post_default_status')) {
|
| 1995 | - /** |
|
| 1996 | - * Default post status for new posts. |
|
| 1997 | - * |
|
| 1998 | - * @since 1.0.0 |
|
| 1999 | - * @package GeoDirectory |
|
| 2000 | - * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2001 | - */ |
|
| 2002 | - function geodir_new_post_default_status() |
|
| 2003 | - {
|
|
| 2004 | - if (get_option('geodir_new_post_default_status'))
|
|
| 2005 | - return get_option('geodir_new_post_default_status');
|
|
| 2006 | - else |
|
| 2007 | - return 'publish'; |
|
| 2008 | - |
|
| 2009 | - } |
|
| 1995 | + /** |
|
| 1996 | + * Default post status for new posts. |
|
| 1997 | + * |
|
| 1998 | + * @since 1.0.0 |
|
| 1999 | + * @package GeoDirectory |
|
| 2000 | + * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2001 | + */ |
|
| 2002 | + function geodir_new_post_default_status() |
|
| 2003 | + {
|
|
| 2004 | + if (get_option('geodir_new_post_default_status'))
|
|
| 2005 | + return get_option('geodir_new_post_default_status');
|
|
| 2006 | + else |
|
| 2007 | + return 'publish'; |
|
| 2008 | + |
|
| 2009 | + } |
|
| 2010 | 2010 | } |
| 2011 | 2011 | |
| 2012 | 2012 | if (!function_exists('geodir_change_post_status')) {
|
| 2013 | - /** |
|
| 2014 | - * Change post status of a post. |
|
| 2015 | - * |
|
| 2016 | - * @global object $wpdb WordPress Database object. |
|
| 2017 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2018 | - * @param int|string $post_id The post ID. |
|
| 2019 | - * @param string $status New post status. Ex: draft, publish etc. |
|
| 2020 | - */ |
|
| 2021 | - function geodir_change_post_status($post_id = '', $status = '') |
|
| 2022 | - {
|
|
| 2023 | - global $wpdb, $plugin_prefix; |
|
| 2024 | - |
|
| 2025 | - $post_type = get_post_type($post_id); |
|
| 2026 | - |
|
| 2027 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2028 | - |
|
| 2029 | - $wpdb->query( |
|
| 2030 | - $wpdb->prepare( |
|
| 2031 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2032 | - array($status, $post_id) |
|
| 2033 | - ) |
|
| 2034 | - ); |
|
| 2035 | - |
|
| 2036 | - |
|
| 2037 | - } |
|
| 2013 | + /** |
|
| 2014 | + * Change post status of a post. |
|
| 2015 | + * |
|
| 2016 | + * @global object $wpdb WordPress Database object. |
|
| 2017 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2018 | + * @param int|string $post_id The post ID. |
|
| 2019 | + * @param string $status New post status. Ex: draft, publish etc. |
|
| 2020 | + */ |
|
| 2021 | + function geodir_change_post_status($post_id = '', $status = '') |
|
| 2022 | + {
|
|
| 2023 | + global $wpdb, $plugin_prefix; |
|
| 2024 | + |
|
| 2025 | + $post_type = get_post_type($post_id); |
|
| 2026 | + |
|
| 2027 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2028 | + |
|
| 2029 | + $wpdb->query( |
|
| 2030 | + $wpdb->prepare( |
|
| 2031 | + "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2032 | + array($status, $post_id) |
|
| 2033 | + ) |
|
| 2034 | + ); |
|
| 2035 | + |
|
| 2036 | + |
|
| 2037 | + } |
|
| 2038 | 2038 | } |
| 2039 | 2039 | |
| 2040 | 2040 | /** |
@@ -2048,13 +2048,13 @@ discard block |
||
| 2048 | 2048 | */ |
| 2049 | 2049 | function geodir_set_post_status($pid, $status) |
| 2050 | 2050 | {
|
| 2051 | - if ($pid) {
|
|
| 2052 | - global $wpdb; |
|
| 2053 | - $my_post = array(); |
|
| 2054 | - $my_post['post_status'] = $status; |
|
| 2055 | - $my_post['ID'] = $pid; |
|
| 2056 | - $last_postid = wp_update_post($my_post); |
|
| 2057 | - } |
|
| 2051 | + if ($pid) {
|
|
| 2052 | + global $wpdb; |
|
| 2053 | + $my_post = array(); |
|
| 2054 | + $my_post['post_status'] = $status; |
|
| 2055 | + $my_post['ID'] = $pid; |
|
| 2056 | + $last_postid = wp_update_post($my_post); |
|
| 2057 | + } |
|
| 2058 | 2058 | } |
| 2059 | 2059 | |
| 2060 | 2060 | |
@@ -2070,384 +2070,384 @@ discard block |
||
| 2070 | 2070 | */ |
| 2071 | 2071 | function geodir_update_poststatus($new_status, $old_status, $post) |
| 2072 | 2072 | {
|
| 2073 | - global $wpdb; |
|
| 2073 | + global $wpdb; |
|
| 2074 | 2074 | |
| 2075 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 2075 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 2076 | 2076 | |
| 2077 | - if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2077 | + if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2078 | 2078 | |
| 2079 | - geodir_change_post_status($post->ID, $new_status); |
|
| 2080 | - } |
|
| 2079 | + geodir_change_post_status($post->ID, $new_status); |
|
| 2080 | + } |
|
| 2081 | 2081 | } |
| 2082 | 2082 | |
| 2083 | 2083 | |
| 2084 | 2084 | if (!function_exists('geodir_update_listing_info')) {
|
| 2085 | - /** |
|
| 2086 | - * Update post info. |
|
| 2087 | - * |
|
| 2088 | - * @since 1.0.0 |
|
| 2089 | - * @package GeoDirectory |
|
| 2090 | - * @global object $wpdb WordPress Database object. |
|
| 2091 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2092 | - * @param int $updatingpost The updating post ID. |
|
| 2093 | - * @param int $temppost The temporary post ID. |
|
| 2094 | - * @todo fix post_id variable |
|
| 2095 | - */ |
|
| 2096 | - function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2097 | - {
|
|
| 2098 | - |
|
| 2099 | - global $wpdb, $plugin_prefix; |
|
| 2100 | - |
|
| 2101 | - $post_type = get_post_type($post_id); |
|
| 2102 | - |
|
| 2103 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2104 | - |
|
| 2105 | - $wpdb->query( |
|
| 2106 | - $wpdb->prepare( |
|
| 2107 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2108 | - array($updatingpost, $temppost) |
|
| 2109 | - ) |
|
| 2110 | - ); |
|
| 2111 | - |
|
| 2112 | - $wpdb->query( |
|
| 2113 | - $wpdb->prepare( |
|
| 2114 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2115 | - array($updatingpost, $temppost) |
|
| 2116 | - ) |
|
| 2117 | - ); |
|
| 2118 | - |
|
| 2119 | - /* Update Attachments*/ |
|
| 2120 | - |
|
| 2121 | - $wpdb->query( |
|
| 2122 | - $wpdb->prepare( |
|
| 2123 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2124 | - array($updatingpost, $temppost) |
|
| 2125 | - ) |
|
| 2126 | - ); |
|
| 2127 | - |
|
| 2128 | - } |
|
| 2085 | + /** |
|
| 2086 | + * Update post info. |
|
| 2087 | + * |
|
| 2088 | + * @since 1.0.0 |
|
| 2089 | + * @package GeoDirectory |
|
| 2090 | + * @global object $wpdb WordPress Database object. |
|
| 2091 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2092 | + * @param int $updatingpost The updating post ID. |
|
| 2093 | + * @param int $temppost The temporary post ID. |
|
| 2094 | + * @todo fix post_id variable |
|
| 2095 | + */ |
|
| 2096 | + function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2097 | + {
|
|
| 2098 | + |
|
| 2099 | + global $wpdb, $plugin_prefix; |
|
| 2100 | + |
|
| 2101 | + $post_type = get_post_type($post_id); |
|
| 2102 | + |
|
| 2103 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2104 | + |
|
| 2105 | + $wpdb->query( |
|
| 2106 | + $wpdb->prepare( |
|
| 2107 | + "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2108 | + array($updatingpost, $temppost) |
|
| 2109 | + ) |
|
| 2110 | + ); |
|
| 2111 | + |
|
| 2112 | + $wpdb->query( |
|
| 2113 | + $wpdb->prepare( |
|
| 2114 | + "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2115 | + array($updatingpost, $temppost) |
|
| 2116 | + ) |
|
| 2117 | + ); |
|
| 2118 | + |
|
| 2119 | + /* Update Attachments*/ |
|
| 2120 | + |
|
| 2121 | + $wpdb->query( |
|
| 2122 | + $wpdb->prepare( |
|
| 2123 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2124 | + array($updatingpost, $temppost) |
|
| 2125 | + ) |
|
| 2126 | + ); |
|
| 2127 | + |
|
| 2128 | + } |
|
| 2129 | 2129 | } |
| 2130 | 2130 | |
| 2131 | 2131 | |
| 2132 | 2132 | if (!function_exists('geodir_delete_listing_info')) {
|
| 2133 | - /** |
|
| 2134 | - * Delete Listing info from details table for the given post id. |
|
| 2135 | - * |
|
| 2136 | - * @since 1.0.0 |
|
| 2137 | - * @package GeoDirectory |
|
| 2138 | - * @global object $wpdb WordPress Database object. |
|
| 2139 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2140 | - * @param int $deleted_postid The post ID. |
|
| 2141 | - * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2142 | - * @return bool|void |
|
| 2143 | - */ |
|
| 2144 | - function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2145 | - {
|
|
| 2146 | - global $wpdb, $plugin_prefix; |
|
| 2147 | - |
|
| 2148 | - // check for multisite deletions |
|
| 2149 | - if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2150 | - } else {
|
|
| 2151 | - return; |
|
| 2152 | - } |
|
| 2153 | - |
|
| 2154 | - $post_type = get_post_type($deleted_postid); |
|
| 2155 | - |
|
| 2156 | - $all_postypes = geodir_get_posttypes(); |
|
| 2157 | - |
|
| 2158 | - if (!in_array($post_type, $all_postypes)) |
|
| 2159 | - return false; |
|
| 2160 | - |
|
| 2161 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2162 | - |
|
| 2163 | - /* Delete custom post meta*/ |
|
| 2164 | - $wpdb->query( |
|
| 2165 | - $wpdb->prepare( |
|
| 2166 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2167 | - array($deleted_postid) |
|
| 2168 | - ) |
|
| 2169 | - ); |
|
| 2170 | - |
|
| 2171 | - /* Delete post map icons*/ |
|
| 2172 | - |
|
| 2173 | - $wpdb->query( |
|
| 2174 | - $wpdb->prepare( |
|
| 2175 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2176 | - array($deleted_postid) |
|
| 2177 | - ) |
|
| 2178 | - ); |
|
| 2179 | - |
|
| 2180 | - /* Delete Attachments*/ |
|
| 2181 | - $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2182 | - |
|
| 2183 | - $wpdb->query( |
|
| 2184 | - $wpdb->prepare( |
|
| 2185 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2186 | - array($deleted_postid) |
|
| 2187 | - ) |
|
| 2188 | - ); |
|
| 2189 | - geodir_remove_attachments($postcurr_images); |
|
| 2190 | - |
|
| 2191 | - } |
|
| 2133 | + /** |
|
| 2134 | + * Delete Listing info from details table for the given post id. |
|
| 2135 | + * |
|
| 2136 | + * @since 1.0.0 |
|
| 2137 | + * @package GeoDirectory |
|
| 2138 | + * @global object $wpdb WordPress Database object. |
|
| 2139 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2140 | + * @param int $deleted_postid The post ID. |
|
| 2141 | + * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2142 | + * @return bool|void |
|
| 2143 | + */ |
|
| 2144 | + function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2145 | + {
|
|
| 2146 | + global $wpdb, $plugin_prefix; |
|
| 2147 | + |
|
| 2148 | + // check for multisite deletions |
|
| 2149 | + if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2150 | + } else {
|
|
| 2151 | + return; |
|
| 2152 | + } |
|
| 2153 | + |
|
| 2154 | + $post_type = get_post_type($deleted_postid); |
|
| 2155 | + |
|
| 2156 | + $all_postypes = geodir_get_posttypes(); |
|
| 2157 | + |
|
| 2158 | + if (!in_array($post_type, $all_postypes)) |
|
| 2159 | + return false; |
|
| 2160 | + |
|
| 2161 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2162 | + |
|
| 2163 | + /* Delete custom post meta*/ |
|
| 2164 | + $wpdb->query( |
|
| 2165 | + $wpdb->prepare( |
|
| 2166 | + "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2167 | + array($deleted_postid) |
|
| 2168 | + ) |
|
| 2169 | + ); |
|
| 2170 | + |
|
| 2171 | + /* Delete post map icons*/ |
|
| 2172 | + |
|
| 2173 | + $wpdb->query( |
|
| 2174 | + $wpdb->prepare( |
|
| 2175 | + "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2176 | + array($deleted_postid) |
|
| 2177 | + ) |
|
| 2178 | + ); |
|
| 2179 | + |
|
| 2180 | + /* Delete Attachments*/ |
|
| 2181 | + $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2182 | + |
|
| 2183 | + $wpdb->query( |
|
| 2184 | + $wpdb->prepare( |
|
| 2185 | + "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2186 | + array($deleted_postid) |
|
| 2187 | + ) |
|
| 2188 | + ); |
|
| 2189 | + geodir_remove_attachments($postcurr_images); |
|
| 2190 | + |
|
| 2191 | + } |
|
| 2192 | 2192 | } |
| 2193 | 2193 | |
| 2194 | 2194 | |
| 2195 | 2195 | if (!function_exists('geodir_add_to_favorite')) {
|
| 2196 | - /** |
|
| 2197 | - * This function would add listing to favorite listing. |
|
| 2198 | - * |
|
| 2199 | - * @since 1.0.0 |
|
| 2200 | - * @package GeoDirectory |
|
| 2201 | - * @global object $current_user Current user object. |
|
| 2202 | - * @param int $post_id The post ID. |
|
| 2203 | - */ |
|
| 2204 | - function geodir_add_to_favorite($post_id) |
|
| 2205 | - {
|
|
| 2206 | - |
|
| 2207 | - global $current_user; |
|
| 2208 | - |
|
| 2209 | - /** |
|
| 2210 | - * Filter to modify "Unfavorite" text |
|
| 2211 | - * |
|
| 2212 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2213 | - * |
|
| 2214 | - * @since 1.0.0 |
|
| 2215 | - * @package GeoDirectory |
|
| 2216 | - */ |
|
| 2217 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2218 | - |
|
| 2219 | - /** |
|
| 2220 | - * Filter to modify "Remove from Favorites" text |
|
| 2221 | - * |
|
| 2222 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2223 | - * |
|
| 2224 | - * @since 1.0.0 |
|
| 2225 | - * @package GeoDirectory |
|
| 2226 | - */ |
|
| 2227 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2228 | - |
|
| 2229 | - /** |
|
| 2230 | - * Filter to modify "fa fa-heart" icon |
|
| 2231 | - * |
|
| 2232 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2233 | - * |
|
| 2234 | - * @since 1.0.0 |
|
| 2235 | - * @package GeoDirectory |
|
| 2236 | - */ |
|
| 2237 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2238 | - |
|
| 2239 | - $user_meta_data = array(); |
|
| 2240 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2241 | - |
|
| 2242 | - if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2243 | - $user_meta_data[] = $post_id; |
|
| 2244 | - } |
|
| 2245 | - |
|
| 2246 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2247 | - |
|
| 2248 | - /** |
|
| 2249 | - * Called before adding the post from favourites. |
|
| 2250 | - * |
|
| 2251 | - * @since 1.0.0 |
|
| 2252 | - * @package GeoDirectory |
|
| 2253 | - * @param int $post_id The post ID. |
|
| 2254 | - */ |
|
| 2255 | - do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2256 | - |
|
| 2257 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2196 | + /** |
|
| 2197 | + * This function would add listing to favorite listing. |
|
| 2198 | + * |
|
| 2199 | + * @since 1.0.0 |
|
| 2200 | + * @package GeoDirectory |
|
| 2201 | + * @global object $current_user Current user object. |
|
| 2202 | + * @param int $post_id The post ID. |
|
| 2203 | + */ |
|
| 2204 | + function geodir_add_to_favorite($post_id) |
|
| 2205 | + {
|
|
| 2206 | + |
|
| 2207 | + global $current_user; |
|
| 2208 | + |
|
| 2209 | + /** |
|
| 2210 | + * Filter to modify "Unfavorite" text |
|
| 2211 | + * |
|
| 2212 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2213 | + * |
|
| 2214 | + * @since 1.0.0 |
|
| 2215 | + * @package GeoDirectory |
|
| 2216 | + */ |
|
| 2217 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2218 | + |
|
| 2219 | + /** |
|
| 2220 | + * Filter to modify "Remove from Favorites" text |
|
| 2221 | + * |
|
| 2222 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2223 | + * |
|
| 2224 | + * @since 1.0.0 |
|
| 2225 | + * @package GeoDirectory |
|
| 2226 | + */ |
|
| 2227 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2228 | + |
|
| 2229 | + /** |
|
| 2230 | + * Filter to modify "fa fa-heart" icon |
|
| 2231 | + * |
|
| 2232 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2233 | + * |
|
| 2234 | + * @since 1.0.0 |
|
| 2235 | + * @package GeoDirectory |
|
| 2236 | + */ |
|
| 2237 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2238 | + |
|
| 2239 | + $user_meta_data = array(); |
|
| 2240 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2241 | + |
|
| 2242 | + if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2243 | + $user_meta_data[] = $post_id; |
|
| 2244 | + } |
|
| 2245 | + |
|
| 2246 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2247 | + |
|
| 2248 | + /** |
|
| 2249 | + * Called before adding the post from favourites. |
|
| 2250 | + * |
|
| 2251 | + * @since 1.0.0 |
|
| 2252 | + * @package GeoDirectory |
|
| 2253 | + * @param int $post_id The post ID. |
|
| 2254 | + */ |
|
| 2255 | + do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2256 | + |
|
| 2257 | + echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2258 | + |
|
| 2259 | + /** |
|
| 2260 | + * Called after adding the post from favourites. |
|
| 2261 | + * |
|
| 2262 | + * @since 1.0.0 |
|
| 2263 | + * @package GeoDirectory |
|
| 2264 | + * @param int $post_id The post ID. |
|
| 2265 | + */ |
|
| 2266 | + do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2258 | 2267 | |
| 2259 | - /** |
|
| 2260 | - * Called after adding the post from favourites. |
|
| 2261 | - * |
|
| 2262 | - * @since 1.0.0 |
|
| 2263 | - * @package GeoDirectory |
|
| 2264 | - * @param int $post_id The post ID. |
|
| 2265 | - */ |
|
| 2266 | - do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2267 | - |
|
| 2268 | - } |
|
| 2268 | + } |
|
| 2269 | 2269 | } |
| 2270 | 2270 | |
| 2271 | 2271 | if (!function_exists('geodir_remove_from_favorite')) {
|
| 2272 | - /** |
|
| 2273 | - * This function would remove the favourited property earlier. |
|
| 2274 | - * |
|
| 2275 | - * @since 1.0.0 |
|
| 2276 | - * @package GeoDirectory |
|
| 2277 | - * @global object $current_user Current user object. |
|
| 2278 | - * @param int $post_id The post ID. |
|
| 2279 | - */ |
|
| 2280 | - function geodir_remove_from_favorite($post_id) |
|
| 2281 | - {
|
|
| 2282 | - global $current_user; |
|
| 2283 | - |
|
| 2284 | - /** |
|
| 2285 | - * Filter to modify "Add to Favorites" text |
|
| 2286 | - * |
|
| 2287 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2288 | - * |
|
| 2289 | - * @since 1.0.0 |
|
| 2290 | - * @package GeoDirectory |
|
| 2291 | - */ |
|
| 2292 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2293 | - |
|
| 2294 | - /** |
|
| 2295 | - * Filter to modify "Favourite" text |
|
| 2296 | - * |
|
| 2297 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2298 | - * |
|
| 2299 | - * @since 1.0.0 |
|
| 2300 | - * @package GeoDirectory |
|
| 2301 | - */ |
|
| 2302 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2303 | - |
|
| 2304 | - /** |
|
| 2305 | - * Filter to modify "fa fa-heart" icon |
|
| 2306 | - * |
|
| 2307 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2308 | - * |
|
| 2309 | - * @since 1.0.0 |
|
| 2310 | - * @package GeoDirectory |
|
| 2311 | - */ |
|
| 2312 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2313 | - |
|
| 2314 | - $user_meta_data = array(); |
|
| 2315 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2316 | - |
|
| 2317 | - if (!empty($user_meta_data)) {
|
|
| 2272 | + /** |
|
| 2273 | + * This function would remove the favourited property earlier. |
|
| 2274 | + * |
|
| 2275 | + * @since 1.0.0 |
|
| 2276 | + * @package GeoDirectory |
|
| 2277 | + * @global object $current_user Current user object. |
|
| 2278 | + * @param int $post_id The post ID. |
|
| 2279 | + */ |
|
| 2280 | + function geodir_remove_from_favorite($post_id) |
|
| 2281 | + {
|
|
| 2282 | + global $current_user; |
|
| 2283 | + |
|
| 2284 | + /** |
|
| 2285 | + * Filter to modify "Add to Favorites" text |
|
| 2286 | + * |
|
| 2287 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2288 | + * |
|
| 2289 | + * @since 1.0.0 |
|
| 2290 | + * @package GeoDirectory |
|
| 2291 | + */ |
|
| 2292 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2293 | + |
|
| 2294 | + /** |
|
| 2295 | + * Filter to modify "Favourite" text |
|
| 2296 | + * |
|
| 2297 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2298 | + * |
|
| 2299 | + * @since 1.0.0 |
|
| 2300 | + * @package GeoDirectory |
|
| 2301 | + */ |
|
| 2302 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2303 | + |
|
| 2304 | + /** |
|
| 2305 | + * Filter to modify "fa fa-heart" icon |
|
| 2306 | + * |
|
| 2307 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2308 | + * |
|
| 2309 | + * @since 1.0.0 |
|
| 2310 | + * @package GeoDirectory |
|
| 2311 | + */ |
|
| 2312 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2313 | + |
|
| 2314 | + $user_meta_data = array(); |
|
| 2315 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2316 | + |
|
| 2317 | + if (!empty($user_meta_data)) {
|
|
| 2318 | + |
|
| 2319 | + if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2320 | + unset($user_meta_data[$key]); |
|
| 2321 | + } |
|
| 2318 | 2322 | |
| 2319 | - if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2320 | - unset($user_meta_data[$key]); |
|
| 2321 | - } |
|
| 2323 | + } |
|
| 2322 | 2324 | |
| 2323 | - } |
|
| 2325 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2324 | 2326 | |
| 2325 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2327 | + /** |
|
| 2328 | + * Called before removing the post from favourites. |
|
| 2329 | + * |
|
| 2330 | + * @since 1.0.0 |
|
| 2331 | + * @package GeoDirectory |
|
| 2332 | + * @param int $post_id The post ID. |
|
| 2333 | + */ |
|
| 2334 | + do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2326 | 2335 | |
| 2327 | - /** |
|
| 2328 | - * Called before removing the post from favourites. |
|
| 2329 | - * |
|
| 2330 | - * @since 1.0.0 |
|
| 2331 | - * @package GeoDirectory |
|
| 2332 | - * @param int $post_id The post ID. |
|
| 2333 | - */ |
|
| 2334 | - do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2336 | + echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2335 | 2337 | |
| 2336 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2338 | + /** |
|
| 2339 | + * Called after removing the post from favourites. |
|
| 2340 | + * |
|
| 2341 | + * @since 1.0.0 |
|
| 2342 | + * @package GeoDirectory |
|
| 2343 | + * @param int $post_id The post ID. |
|
| 2344 | + */ |
|
| 2345 | + do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2337 | 2346 | |
| 2338 | - /** |
|
| 2339 | - * Called after removing the post from favourites. |
|
| 2340 | - * |
|
| 2341 | - * @since 1.0.0 |
|
| 2342 | - * @package GeoDirectory |
|
| 2343 | - * @param int $post_id The post ID. |
|
| 2344 | - */ |
|
| 2345 | - do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2346 | - |
|
| 2347 | - } |
|
| 2347 | + } |
|
| 2348 | 2348 | } |
| 2349 | 2349 | |
| 2350 | 2350 | if (!function_exists('geodir_favourite_html')) {
|
| 2351 | - /** |
|
| 2352 | - * This function would display the html content for add to favorite or remove from favorite. |
|
| 2353 | - * |
|
| 2354 | - * @since 1.0.0 |
|
| 2355 | - * @package GeoDirectory |
|
| 2356 | - * @global object $current_user Current user object. |
|
| 2357 | - * @global object $post The current post object. |
|
| 2358 | - * @param int $user_id The user ID. |
|
| 2359 | - * @param int $post_id The post ID. |
|
| 2360 | - */ |
|
| 2361 | - function geodir_favourite_html($user_id, $post_id) |
|
| 2362 | - {
|
|
| 2363 | - |
|
| 2364 | - global $current_user, $post; |
|
| 2365 | - |
|
| 2366 | - /** |
|
| 2367 | - * Filter to modify "Add to Favorites" text |
|
| 2368 | - * |
|
| 2369 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2370 | - * |
|
| 2371 | - * @since 1.0.0 |
|
| 2372 | - * @package GeoDirectory |
|
| 2373 | - */ |
|
| 2374 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2375 | - |
|
| 2376 | - /** |
|
| 2377 | - * Filter to modify "Favourite" text |
|
| 2378 | - * |
|
| 2379 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2380 | - * |
|
| 2381 | - * @since 1.0.0 |
|
| 2382 | - * @package GeoDirectory |
|
| 2383 | - */ |
|
| 2384 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2385 | - |
|
| 2386 | - /** |
|
| 2387 | - * Filter to modify "Unfavorite" text |
|
| 2388 | - * |
|
| 2389 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2390 | - * |
|
| 2391 | - * @since 1.0.0 |
|
| 2392 | - * @package GeoDirectory |
|
| 2393 | - */ |
|
| 2394 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2395 | - |
|
| 2396 | - /** |
|
| 2397 | - * Filter to modify "Remove from Favorites" text |
|
| 2398 | - * |
|
| 2399 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2400 | - * |
|
| 2401 | - * @since 1.0.0 |
|
| 2402 | - * @package GeoDirectory |
|
| 2403 | - */ |
|
| 2404 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2405 | - |
|
| 2406 | - /** |
|
| 2407 | - * Filter to modify "fa fa-heart" icon |
|
| 2408 | - * |
|
| 2409 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2410 | - * |
|
| 2411 | - * @since 1.0.0 |
|
| 2412 | - * @package GeoDirectory |
|
| 2413 | - */ |
|
| 2414 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2415 | - |
|
| 2416 | - /** |
|
| 2417 | - * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2418 | - * |
|
| 2419 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2420 | - * |
|
| 2421 | - * @since 1.0.0 |
|
| 2422 | - * @package GeoDirectory |
|
| 2423 | - */ |
|
| 2424 | - $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2425 | - |
|
| 2426 | - $user_meta_data = ''; |
|
| 2427 | - if (isset($current_user->data->ID)) |
|
| 2428 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2429 | - |
|
| 2430 | - if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2431 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2351 | + /** |
|
| 2352 | + * This function would display the html content for add to favorite or remove from favorite. |
|
| 2353 | + * |
|
| 2354 | + * @since 1.0.0 |
|
| 2355 | + * @package GeoDirectory |
|
| 2356 | + * @global object $current_user Current user object. |
|
| 2357 | + * @global object $post The current post object. |
|
| 2358 | + * @param int $user_id The user ID. |
|
| 2359 | + * @param int $post_id The post ID. |
|
| 2360 | + */ |
|
| 2361 | + function geodir_favourite_html($user_id, $post_id) |
|
| 2362 | + {
|
|
| 2363 | + |
|
| 2364 | + global $current_user, $post; |
|
| 2365 | + |
|
| 2366 | + /** |
|
| 2367 | + * Filter to modify "Add to Favorites" text |
|
| 2368 | + * |
|
| 2369 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2370 | + * |
|
| 2371 | + * @since 1.0.0 |
|
| 2372 | + * @package GeoDirectory |
|
| 2373 | + */ |
|
| 2374 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2375 | + |
|
| 2376 | + /** |
|
| 2377 | + * Filter to modify "Favourite" text |
|
| 2378 | + * |
|
| 2379 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2380 | + * |
|
| 2381 | + * @since 1.0.0 |
|
| 2382 | + * @package GeoDirectory |
|
| 2383 | + */ |
|
| 2384 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2385 | + |
|
| 2386 | + /** |
|
| 2387 | + * Filter to modify "Unfavorite" text |
|
| 2388 | + * |
|
| 2389 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2390 | + * |
|
| 2391 | + * @since 1.0.0 |
|
| 2392 | + * @package GeoDirectory |
|
| 2393 | + */ |
|
| 2394 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2395 | + |
|
| 2396 | + /** |
|
| 2397 | + * Filter to modify "Remove from Favorites" text |
|
| 2398 | + * |
|
| 2399 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2400 | + * |
|
| 2401 | + * @since 1.0.0 |
|
| 2402 | + * @package GeoDirectory |
|
| 2403 | + */ |
|
| 2404 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2405 | + |
|
| 2406 | + /** |
|
| 2407 | + * Filter to modify "fa fa-heart" icon |
|
| 2408 | + * |
|
| 2409 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2410 | + * |
|
| 2411 | + * @since 1.0.0 |
|
| 2412 | + * @package GeoDirectory |
|
| 2413 | + */ |
|
| 2414 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2415 | + |
|
| 2416 | + /** |
|
| 2417 | + * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2418 | + * |
|
| 2419 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2420 | + * |
|
| 2421 | + * @since 1.0.0 |
|
| 2422 | + * @package GeoDirectory |
|
| 2423 | + */ |
|
| 2424 | + $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2425 | + |
|
| 2426 | + $user_meta_data = ''; |
|
| 2427 | + if (isset($current_user->data->ID)) |
|
| 2428 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2429 | + |
|
| 2430 | + if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2431 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2432 | 2432 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2433 | 2433 | onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
| 2434 | 2434 | title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
| 2435 | 2435 | </a> </span><?php |
| 2436 | 2436 | |
| 2437 | - } else {
|
|
| 2437 | + } else {
|
|
| 2438 | 2438 | |
| 2439 | - if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2440 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2441 | - } else |
|
| 2442 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2439 | + if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2440 | + $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2441 | + } else |
|
| 2442 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2443 | 2443 | |
| 2444 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2444 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2445 | 2445 | href="javascript:void(0);" |
| 2446 | 2446 | onclick="<?php echo $script_text;?>" |
| 2447 | 2447 | title="<?php echo $add_favourite_text;?>"><i |
| 2448 | 2448 | class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
| 2449 | 2449 | <?php } |
| 2450 | - } |
|
| 2450 | + } |
|
| 2451 | 2451 | } |
| 2452 | 2452 | |
| 2453 | 2453 | |
@@ -2464,54 +2464,54 @@ discard block |
||
| 2464 | 2464 | function geodir_get_cat_postcount($term = array()) |
| 2465 | 2465 | {
|
| 2466 | 2466 | |
| 2467 | - if (!empty($term)) {
|
|
| 2467 | + if (!empty($term)) {
|
|
| 2468 | 2468 | |
| 2469 | - global $wpdb, $plugin_prefix; |
|
| 2469 | + global $wpdb, $plugin_prefix; |
|
| 2470 | 2470 | |
| 2471 | - $where = ''; |
|
| 2472 | - $join = ''; |
|
| 2473 | - if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2474 | - $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2471 | + $where = ''; |
|
| 2472 | + $join = ''; |
|
| 2473 | + if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2474 | + $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2475 | 2475 | |
| 2476 | - $post_type = $taxonomy_obj->object_type[0]; |
|
| 2476 | + $post_type = $taxonomy_obj->object_type[0]; |
|
| 2477 | 2477 | |
| 2478 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2478 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2479 | 2479 | |
| 2480 | - /** |
|
| 2481 | - * Filter to modify the 'join' query |
|
| 2482 | - * |
|
| 2483 | - * @since 1.0.0 |
|
| 2484 | - * @package GeoDirectory |
|
| 2485 | - * @param object|array $term category / term object that need to be processed. |
|
| 2486 | - * @param string $join The join query. |
|
| 2487 | - */ |
|
| 2488 | - $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2480 | + /** |
|
| 2481 | + * Filter to modify the 'join' query |
|
| 2482 | + * |
|
| 2483 | + * @since 1.0.0 |
|
| 2484 | + * @package GeoDirectory |
|
| 2485 | + * @param object|array $term category / term object that need to be processed. |
|
| 2486 | + * @param string $join The join query. |
|
| 2487 | + */ |
|
| 2488 | + $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2489 | 2489 | |
| 2490 | - /** |
|
| 2491 | - * Filter to modify the 'where' query |
|
| 2492 | - * |
|
| 2493 | - * @since 1.0.0 |
|
| 2494 | - * @package GeoDirectory |
|
| 2495 | - * @param object|array $term category / term object that need to be processed. |
|
| 2496 | - * @param string $where The where query. |
|
| 2497 | - */ |
|
| 2498 | - $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2490 | + /** |
|
| 2491 | + * Filter to modify the 'where' query |
|
| 2492 | + * |
|
| 2493 | + * @since 1.0.0 |
|
| 2494 | + * @package GeoDirectory |
|
| 2495 | + * @param object|array $term category / term object that need to be processed. |
|
| 2496 | + * @param string $where The where query. |
|
| 2497 | + */ |
|
| 2498 | + $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2499 | 2499 | |
| 2500 | - $count_query = "SELECT count(post_id) FROM |
|
| 2500 | + $count_query = "SELECT count(post_id) FROM |
|
| 2501 | 2501 | " . $table . " as pd " . $join . " |
| 2502 | 2502 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
| 2503 | 2503 | |
| 2504 | - $cat_post_count = $wpdb->get_var($count_query); |
|
| 2505 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2506 | - $cat_post_count = 0; |
|
| 2504 | + $cat_post_count = $wpdb->get_var($count_query); |
|
| 2505 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2506 | + $cat_post_count = 0; |
|
| 2507 | 2507 | |
| 2508 | - return $cat_post_count; |
|
| 2508 | + return $cat_post_count; |
|
| 2509 | 2509 | |
| 2510 | - } else |
|
| 2510 | + } else |
|
| 2511 | 2511 | |
| 2512 | - return $term->count; |
|
| 2513 | - } |
|
| 2514 | - return false; |
|
| 2512 | + return $term->count; |
|
| 2513 | + } |
|
| 2514 | + return false; |
|
| 2515 | 2515 | |
| 2516 | 2516 | } |
| 2517 | 2517 | |
@@ -2524,17 +2524,17 @@ discard block |
||
| 2524 | 2524 | */ |
| 2525 | 2525 | function geodir_allow_post_type_frontend() |
| 2526 | 2526 | {
|
| 2527 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2527 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2528 | 2528 | |
| 2529 | - if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2530 | - && !empty($geodir_allow_posttype_frontend) |
|
| 2531 | - && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2532 | - ) {
|
|
| 2529 | + if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2530 | + && !empty($geodir_allow_posttype_frontend) |
|
| 2531 | + && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2532 | + ) {
|
|
| 2533 | 2533 | |
| 2534 | - wp_redirect(home_url()); |
|
| 2535 | - exit; |
|
| 2534 | + wp_redirect(home_url()); |
|
| 2535 | + exit; |
|
| 2536 | 2536 | |
| 2537 | - } |
|
| 2537 | + } |
|
| 2538 | 2538 | |
| 2539 | 2539 | } |
| 2540 | 2540 | |
@@ -2551,20 +2551,20 @@ discard block |
||
| 2551 | 2551 | */ |
| 2552 | 2552 | function geodir_excerpt_length($length) |
| 2553 | 2553 | {
|
| 2554 | - global $wp_query, $geodir_is_widget_listing; |
|
| 2554 | + global $wp_query, $geodir_is_widget_listing; |
|
| 2555 | 2555 | if ($geodir_is_widget_listing) {
|
| 2556 | 2556 | return $length; |
| 2557 | 2557 | } |
| 2558 | 2558 | |
| 2559 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2560 | - $length = get_option('geodir_desc_word_limit');
|
|
| 2561 | - elseif (get_query_var('excerpt_length'))
|
|
| 2562 | - $length = get_query_var('excerpt_length');
|
|
| 2559 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2560 | + $length = get_option('geodir_desc_word_limit');
|
|
| 2561 | + elseif (get_query_var('excerpt_length'))
|
|
| 2562 | + $length = get_query_var('excerpt_length');
|
|
| 2563 | 2563 | |
| 2564 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2565 | - $length = get_option('geodir_author_desc_word_limit');
|
|
| 2564 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2565 | + $length = get_option('geodir_author_desc_word_limit');
|
|
| 2566 | 2566 | |
| 2567 | - return $length; |
|
| 2567 | + return $length; |
|
| 2568 | 2568 | } |
| 2569 | 2569 | |
| 2570 | 2570 | /** |
@@ -2579,13 +2579,13 @@ discard block |
||
| 2579 | 2579 | */ |
| 2580 | 2580 | function geodir_excerpt_more($more) |
| 2581 | 2581 | {
|
| 2582 | - global $post; |
|
| 2583 | - $all_postypes = geodir_get_posttypes(); |
|
| 2584 | - if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2585 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2586 | - } |
|
| 2582 | + global $post; |
|
| 2583 | + $all_postypes = geodir_get_posttypes(); |
|
| 2584 | + if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2585 | + return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2586 | + } |
|
| 2587 | 2587 | |
| 2588 | - return $more; |
|
| 2588 | + return $more; |
|
| 2589 | 2589 | } |
| 2590 | 2590 | |
| 2591 | 2591 | |
@@ -2602,63 +2602,63 @@ discard block |
||
| 2602 | 2602 | */ |
| 2603 | 2603 | function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy) |
| 2604 | 2604 | {
|
| 2605 | - global $plugin_prefix, $wpdb; |
|
| 2605 | + global $plugin_prefix, $wpdb; |
|
| 2606 | 2606 | |
| 2607 | - $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2607 | + $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2608 | 2608 | |
| 2609 | - if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2609 | + if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2610 | 2610 | |
| 2611 | - $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2612 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2611 | + $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2612 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2613 | 2613 | |
| 2614 | - $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2615 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2614 | + $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2615 | + $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2616 | 2616 | |
| 2617 | - $posts = $wpdb->get_results( |
|
| 2618 | - $wpdb->prepare( |
|
| 2619 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2620 | - array($term_id, $taxonomy) |
|
| 2621 | - ) |
|
| 2622 | - ); |
|
| 2617 | + $posts = $wpdb->get_results( |
|
| 2618 | + $wpdb->prepare( |
|
| 2619 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2620 | + array($term_id, $taxonomy) |
|
| 2621 | + ) |
|
| 2622 | + ); |
|
| 2623 | 2623 | |
| 2624 | - if (!empty($posts)): |
|
| 2625 | - foreach ($posts as $post_obj) {
|
|
| 2624 | + if (!empty($posts)): |
|
| 2625 | + foreach ($posts as $post_obj) {
|
|
| 2626 | 2626 | |
| 2627 | - $lat = $post_obj->post_latitude; |
|
| 2628 | - $lng = $post_obj->post_longitude; |
|
| 2627 | + $lat = $post_obj->post_latitude; |
|
| 2628 | + $lng = $post_obj->post_longitude; |
|
| 2629 | 2629 | |
| 2630 | - $json = '{';
|
|
| 2631 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2632 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2633 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2634 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2635 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2636 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2637 | - $json .= '}'; |
|
| 2630 | + $json = '{';
|
|
| 2631 | + $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2632 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2633 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 2634 | + $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2635 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 2636 | + $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2637 | + $json .= '}'; |
|
| 2638 | 2638 | |
| 2639 | - if ($post_obj->default_category == $term_id) {
|
|
| 2639 | + if ($post_obj->default_category == $term_id) {
|
|
| 2640 | 2640 | |
| 2641 | - $wpdb->query( |
|
| 2642 | - $wpdb->prepare( |
|
| 2643 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2644 | - array($json, $post_obj->post_id) |
|
| 2645 | - ) |
|
| 2646 | - ); |
|
| 2647 | - } |
|
| 2641 | + $wpdb->query( |
|
| 2642 | + $wpdb->prepare( |
|
| 2643 | + "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2644 | + array($json, $post_obj->post_id) |
|
| 2645 | + ) |
|
| 2646 | + ); |
|
| 2647 | + } |
|
| 2648 | 2648 | |
| 2649 | - $wpdb->query( |
|
| 2650 | - $wpdb->prepare( |
|
| 2651 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2652 | - array($json, $post_obj->post_id, $term_id) |
|
| 2653 | - ) |
|
| 2654 | - ); |
|
| 2649 | + $wpdb->query( |
|
| 2650 | + $wpdb->prepare( |
|
| 2651 | + "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2652 | + array($json, $post_obj->post_id, $term_id) |
|
| 2653 | + ) |
|
| 2654 | + ); |
|
| 2655 | 2655 | |
| 2656 | - } |
|
| 2656 | + } |
|
| 2657 | 2657 | |
| 2658 | 2658 | |
| 2659 | - endif; |
|
| 2659 | + endif; |
|
| 2660 | 2660 | |
| 2661 | - } |
|
| 2661 | + } |
|
| 2662 | 2662 | |
| 2663 | 2663 | } |
| 2664 | 2664 | |
@@ -2672,14 +2672,14 @@ discard block |
||
| 2672 | 2672 | */ |
| 2673 | 2673 | function geodir_get_listing_author($listing_id = '') |
| 2674 | 2674 | {
|
| 2675 | - if ($listing_id == '') {
|
|
| 2676 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2677 | - $listing_id = $_REQUEST['pid']; |
|
| 2678 | - } |
|
| 2679 | - } |
|
| 2680 | - $listing = get_post(strip_tags($listing_id)); |
|
| 2681 | - $listing_author_id = $listing->post_author; |
|
| 2682 | - return $listing_author_id; |
|
| 2675 | + if ($listing_id == '') {
|
|
| 2676 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2677 | + $listing_id = $_REQUEST['pid']; |
|
| 2678 | + } |
|
| 2679 | + } |
|
| 2680 | + $listing = get_post(strip_tags($listing_id)); |
|
| 2681 | + $listing_author_id = $listing->post_author; |
|
| 2682 | + return $listing_author_id; |
|
| 2683 | 2683 | } |
| 2684 | 2684 | |
| 2685 | 2685 | |
@@ -2694,11 +2694,11 @@ discard block |
||
| 2694 | 2694 | */ |
| 2695 | 2695 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
| 2696 | 2696 | {
|
| 2697 | - $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2698 | - if ($listing_author_id == $user_id) |
|
| 2699 | - return true; |
|
| 2700 | - else |
|
| 2701 | - return false; |
|
| 2697 | + $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2698 | + if ($listing_author_id == $user_id) |
|
| 2699 | + return true; |
|
| 2700 | + else |
|
| 2701 | + return false; |
|
| 2702 | 2702 | |
| 2703 | 2703 | } |
| 2704 | 2704 | |
@@ -2714,17 +2714,17 @@ discard block |
||
| 2714 | 2714 | */ |
| 2715 | 2715 | function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true) |
| 2716 | 2716 | {
|
| 2717 | - global $current_user; |
|
| 2718 | - if ($exclude_admin) {
|
|
| 2719 | - foreach ($current_user->caps as $key => $caps) {
|
|
| 2720 | - if (geodir_strtolower($key) == 'administrator') {
|
|
| 2721 | - return true; |
|
| 2722 | - break; |
|
| 2723 | - } |
|
| 2724 | - } |
|
| 2725 | - } |
|
| 2726 | - |
|
| 2727 | - return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2717 | + global $current_user; |
|
| 2718 | + if ($exclude_admin) {
|
|
| 2719 | + foreach ($current_user->caps as $key => $caps) {
|
|
| 2720 | + if (geodir_strtolower($key) == 'administrator') {
|
|
| 2721 | + return true; |
|
| 2722 | + break; |
|
| 2723 | + } |
|
| 2724 | + } |
|
| 2725 | + } |
|
| 2726 | + |
|
| 2727 | + return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2728 | 2728 | } |
| 2729 | 2729 | |
| 2730 | 2730 | |
@@ -2740,17 +2740,17 @@ discard block |
||
| 2740 | 2740 | function geodir_only_supportable_attachments_remove($file) |
| 2741 | 2741 | {
|
| 2742 | 2742 | |
| 2743 | - global $wpdb; |
|
| 2743 | + global $wpdb; |
|
| 2744 | 2744 | |
| 2745 | - $matches = array(); |
|
| 2745 | + $matches = array(); |
|
| 2746 | 2746 | |
| 2747 | - $pattern = '/-\d+x\d+\./'; |
|
| 2748 | - preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2747 | + $pattern = '/-\d+x\d+\./'; |
|
| 2748 | + preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2749 | 2749 | |
| 2750 | - if (empty($matches)) |
|
| 2751 | - return ''; |
|
| 2752 | - else |
|
| 2753 | - return $file; |
|
| 2750 | + if (empty($matches)) |
|
| 2751 | + return ''; |
|
| 2752 | + else |
|
| 2753 | + return $file; |
|
| 2754 | 2754 | |
| 2755 | 2755 | } |
| 2756 | 2756 | |
@@ -2767,78 +2767,78 @@ discard block |
||
| 2767 | 2767 | function geodir_set_wp_featured_image($post_id) |
| 2768 | 2768 | {
|
| 2769 | 2769 | |
| 2770 | - global $wpdb, $plugin_prefix; |
|
| 2771 | - $uploads = wp_upload_dir(); |
|
| 2770 | + global $wpdb, $plugin_prefix; |
|
| 2771 | + $uploads = wp_upload_dir(); |
|
| 2772 | 2772 | // print_r($uploads ) ; |
| 2773 | - $post_first_image = $wpdb->get_results( |
|
| 2774 | - $wpdb->prepare( |
|
| 2775 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2776 | - ) |
|
| 2777 | - ); |
|
| 2778 | - |
|
| 2779 | - $old_attachment_name = ''; |
|
| 2780 | - $post_thumbnail_id = ''; |
|
| 2781 | - if (has_post_thumbnail($post_id)) {
|
|
| 2773 | + $post_first_image = $wpdb->get_results( |
|
| 2774 | + $wpdb->prepare( |
|
| 2775 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2776 | + ) |
|
| 2777 | + ); |
|
| 2782 | 2778 | |
| 2783 | - if (has_post_thumbnail($post_id)) {
|
|
| 2779 | + $old_attachment_name = ''; |
|
| 2780 | + $post_thumbnail_id = ''; |
|
| 2781 | + if (has_post_thumbnail($post_id)) {
|
|
| 2784 | 2782 | |
| 2785 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2783 | + if (has_post_thumbnail($post_id)) {
|
|
| 2786 | 2784 | |
| 2787 | - $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2785 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2788 | 2786 | |
| 2789 | - } |
|
| 2790 | - } |
|
| 2787 | + $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2791 | 2788 | |
| 2792 | - if (!empty($post_first_image)) {
|
|
| 2789 | + } |
|
| 2790 | + } |
|
| 2793 | 2791 | |
| 2794 | - $post_type = get_post_type($post_id); |
|
| 2792 | + if (!empty($post_first_image)) {
|
|
| 2795 | 2793 | |
| 2796 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2794 | + $post_type = get_post_type($post_id); |
|
| 2797 | 2795 | |
| 2798 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2796 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2799 | 2797 | |
| 2800 | - $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2798 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2801 | 2799 | |
| 2802 | - if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2800 | + $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2803 | 2801 | |
| 2804 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2802 | + if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2805 | 2803 | |
| 2806 | - add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2804 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2807 | 2805 | |
| 2808 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2806 | + add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2809 | 2807 | |
| 2810 | - } |
|
| 2811 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2808 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2812 | 2809 | |
| 2813 | - $attachment = array( |
|
| 2814 | - 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2815 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2816 | - 'post_parent' => $post_id, |
|
| 2817 | - 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2818 | - 'post_content' => '' |
|
| 2819 | - ); |
|
| 2810 | + } |
|
| 2811 | + $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2812 | + |
|
| 2813 | + $attachment = array( |
|
| 2814 | + 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2815 | + 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2816 | + 'post_parent' => $post_id, |
|
| 2817 | + 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2818 | + 'post_content' => '' |
|
| 2819 | + ); |
|
| 2820 | 2820 | |
| 2821 | 2821 | |
| 2822 | - $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2822 | + $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2823 | 2823 | |
| 2824 | - if (!is_wp_error($id)) {
|
|
| 2824 | + if (!is_wp_error($id)) {
|
|
| 2825 | 2825 | |
| 2826 | - set_post_thumbnail($post_id, $id); |
|
| 2826 | + set_post_thumbnail($post_id, $id); |
|
| 2827 | 2827 | |
| 2828 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2829 | - wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2828 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2829 | + wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2830 | 2830 | |
| 2831 | - } |
|
| 2831 | + } |
|
| 2832 | 2832 | |
| 2833 | - } |
|
| 2833 | + } |
|
| 2834 | 2834 | |
| 2835 | - } else {
|
|
| 2836 | - //set_post_thumbnail($post_id,-1); |
|
| 2835 | + } else {
|
|
| 2836 | + //set_post_thumbnail($post_id,-1); |
|
| 2837 | 2837 | |
| 2838 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2839 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2838 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2839 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2840 | 2840 | |
| 2841 | - } |
|
| 2841 | + } |
|
| 2842 | 2842 | } |
| 2843 | 2843 | |
| 2844 | 2844 | |
@@ -2853,53 +2853,53 @@ discard block |
||
| 2853 | 2853 | */ |
| 2854 | 2854 | function gd_copy_original_translation() |
| 2855 | 2855 | {
|
| 2856 | - if (function_exists('icl_object_id')) {
|
|
| 2857 | - global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2858 | - $post_id = absint($_POST['post_id']); |
|
| 2859 | - $upload_dir = wp_upload_dir(); |
|
| 2860 | - $post_type = get_post_type($_POST['post_id']); |
|
| 2861 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2862 | - |
|
| 2863 | - $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2864 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2865 | - array($post_id) |
|
| 2866 | - ) |
|
| 2867 | - , ARRAY_A); |
|
| 2868 | - |
|
| 2869 | - $arrImages = $wpdb->get_results( |
|
| 2870 | - $wpdb->prepare( |
|
| 2871 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2872 | - array('%image%', $post_id)
|
|
| 2873 | - ) |
|
| 2874 | - ); |
|
| 2875 | - if ($arrImages) {
|
|
| 2876 | - $image_arr = array(); |
|
| 2877 | - foreach ($arrImages as $img) {
|
|
| 2878 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2879 | - } |
|
| 2880 | - $comma_separated = implode(",", $image_arr);
|
|
| 2881 | - $post_arr[0]['post_images'] = $comma_separated; |
|
| 2882 | - } |
|
| 2883 | - |
|
| 2884 | - |
|
| 2885 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2886 | - $cat_arr = array_filter(explode(",", $cats));
|
|
| 2887 | - $trans_cat = array(); |
|
| 2888 | - foreach ($cat_arr as $cat) {
|
|
| 2889 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2890 | - } |
|
| 2891 | - |
|
| 2892 | - |
|
| 2893 | - $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2856 | + if (function_exists('icl_object_id')) {
|
|
| 2857 | + global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2858 | + $post_id = absint($_POST['post_id']); |
|
| 2859 | + $upload_dir = wp_upload_dir(); |
|
| 2860 | + $post_type = get_post_type($_POST['post_id']); |
|
| 2861 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2862 | + |
|
| 2863 | + $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2864 | + "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2865 | + array($post_id) |
|
| 2866 | + ) |
|
| 2867 | + , ARRAY_A); |
|
| 2868 | + |
|
| 2869 | + $arrImages = $wpdb->get_results( |
|
| 2870 | + $wpdb->prepare( |
|
| 2871 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2872 | + array('%image%', $post_id)
|
|
| 2873 | + ) |
|
| 2874 | + ); |
|
| 2875 | + if ($arrImages) {
|
|
| 2876 | + $image_arr = array(); |
|
| 2877 | + foreach ($arrImages as $img) {
|
|
| 2878 | + $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2879 | + } |
|
| 2880 | + $comma_separated = implode(",", $image_arr);
|
|
| 2881 | + $post_arr[0]['post_images'] = $comma_separated; |
|
| 2882 | + } |
|
| 2883 | + |
|
| 2884 | + |
|
| 2885 | + $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2886 | + $cat_arr = array_filter(explode(",", $cats));
|
|
| 2887 | + $trans_cat = array(); |
|
| 2888 | + foreach ($cat_arr as $cat) {
|
|
| 2889 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2890 | + } |
|
| 2891 | + |
|
| 2892 | + |
|
| 2893 | + $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2894 | 2894 | //print_r($image_arr); |
| 2895 | - //print_r($arrImages); |
|
| 2896 | - //echo $_REQUEST['lang']; |
|
| 2895 | + //print_r($arrImages); |
|
| 2896 | + //echo $_REQUEST['lang']; |
|
| 2897 | 2897 | //print_r($post_arr); |
| 2898 | 2898 | //print_r($trans_cat); |
| 2899 | - echo json_encode($post_arr[0]); |
|
| 2899 | + echo json_encode($post_arr[0]); |
|
| 2900 | 2900 | |
| 2901 | - } |
|
| 2902 | - die(); |
|
| 2901 | + } |
|
| 2902 | + die(); |
|
| 2903 | 2903 | } |
| 2904 | 2904 | |
| 2905 | 2905 | |
@@ -2919,54 +2919,54 @@ discard block |
||
| 2919 | 2919 | function geodir_get_custom_fields_type($listing_type = '') |
| 2920 | 2920 | {
|
| 2921 | 2921 | |
| 2922 | - global $wpdb; |
|
| 2922 | + global $wpdb; |
|
| 2923 | 2923 | |
| 2924 | - if ($listing_type == '') |
|
| 2925 | - $listing_type = 'gd_place'; |
|
| 2924 | + if ($listing_type == '') |
|
| 2925 | + $listing_type = 'gd_place'; |
|
| 2926 | 2926 | |
| 2927 | - $fields_info = array(); |
|
| 2927 | + $fields_info = array(); |
|
| 2928 | 2928 | |
| 2929 | - $get_data = $wpdb->get_results( |
|
| 2930 | - $wpdb->prepare( |
|
| 2931 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2932 | - array($listing_type) |
|
| 2933 | - ) |
|
| 2934 | - ); |
|
| 2929 | + $get_data = $wpdb->get_results( |
|
| 2930 | + $wpdb->prepare( |
|
| 2931 | + "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2932 | + array($listing_type) |
|
| 2933 | + ) |
|
| 2934 | + ); |
|
| 2935 | 2935 | |
| 2936 | - if (!empty($get_data)) {
|
|
| 2936 | + if (!empty($get_data)) {
|
|
| 2937 | 2937 | |
| 2938 | - foreach ($get_data as $data) {
|
|
| 2938 | + foreach ($get_data as $data) {
|
|
| 2939 | 2939 | |
| 2940 | - if ($data->field_type == 'address') {
|
|
| 2940 | + if ($data->field_type == 'address') {
|
|
| 2941 | 2941 | |
| 2942 | - $extra_fields = unserialize($data->extra_fields); |
|
| 2942 | + $extra_fields = unserialize($data->extra_fields); |
|
| 2943 | 2943 | |
| 2944 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2944 | + $prefix = $data->htmlvar_name . '_'; |
|
| 2945 | 2945 | |
| 2946 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2946 | + $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2947 | 2947 | |
| 2948 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2949 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2948 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2949 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2950 | 2950 | |
| 2951 | - } else {
|
|
| 2951 | + } else {
|
|
| 2952 | 2952 | |
| 2953 | - $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2953 | + $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2954 | 2954 | |
| 2955 | - } |
|
| 2955 | + } |
|
| 2956 | 2956 | |
| 2957 | - } |
|
| 2957 | + } |
|
| 2958 | 2958 | |
| 2959 | - } |
|
| 2959 | + } |
|
| 2960 | 2960 | |
| 2961 | - /** |
|
| 2962 | - * Filter to modify custom fields info using listing post type. |
|
| 2963 | - * |
|
| 2964 | - * @since 1.0.0 |
|
| 2965 | - * @package GeoDirectory |
|
| 2966 | - * @return array $fields_info Custom fields info. |
|
| 2967 | - * @param string $listing_type The listing post type. |
|
| 2968 | - */ |
|
| 2969 | - return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 2961 | + /** |
|
| 2962 | + * Filter to modify custom fields info using listing post type. |
|
| 2963 | + * |
|
| 2964 | + * @since 1.0.0 |
|
| 2965 | + * @package GeoDirectory |
|
| 2966 | + * @return array $fields_info Custom fields info. |
|
| 2967 | + * @param string $listing_type The listing post type. |
|
| 2968 | + */ |
|
| 2969 | + return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 2970 | 2970 | } |
| 2971 | 2971 | |
| 2972 | 2972 | |
@@ -2981,58 +2981,58 @@ discard block |
||
| 2981 | 2981 | */ |
| 2982 | 2982 | function geodir_function_post_updated($post_ID, $post_after, $post_before) |
| 2983 | 2983 | {
|
| 2984 | - $post_type = get_post_type($post_ID); |
|
| 2984 | + $post_type = get_post_type($post_ID); |
|
| 2985 | 2985 | |
| 2986 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 2987 | - // send notification to client when post moves from draft to publish |
|
| 2988 | - if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
|
|
| 2989 | - $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 2990 | - $post_author_data = get_userdata($post_author_id); |
|
| 2986 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 2987 | + // send notification to client when post moves from draft to publish |
|
| 2988 | + if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
|
|
| 2989 | + $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 2990 | + $post_author_data = get_userdata($post_author_id); |
|
| 2991 | 2991 | |
| 2992 | - $to_name = geodir_get_client_name($post_author_id); |
|
| 2992 | + $to_name = geodir_get_client_name($post_author_id); |
|
| 2993 | 2993 | |
| 2994 | - $from_email = geodir_get_site_email_id(); |
|
| 2995 | - $from_name = get_site_emailName(); |
|
| 2996 | - $to_email = $post_author_data->user_email; |
|
| 2994 | + $from_email = geodir_get_site_email_id(); |
|
| 2995 | + $from_name = get_site_emailName(); |
|
| 2996 | + $to_email = $post_author_data->user_email; |
|
| 2997 | 2997 | |
| 2998 | - if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 2999 | - $to_email = $post_author_data->user_email; |
|
| 3000 | - } |
|
| 2998 | + if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 2999 | + $to_email = $post_author_data->user_email; |
|
| 3000 | + } |
|
| 3001 | 3001 | |
| 3002 | - $message_type = 'listing_published'; |
|
| 3002 | + $message_type = 'listing_published'; |
|
| 3003 | 3003 | |
| 3004 | - if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3005 | - update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3006 | - } |
|
| 3004 | + if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3005 | + update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3006 | + } |
|
| 3007 | 3007 | |
| 3008 | - if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3009 | - update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
|
|
| 3010 | - } |
|
| 3008 | + if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3009 | + update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
|
|
| 3010 | + } |
|
| 3011 | 3011 | |
| 3012 | - /** |
|
| 3013 | - * Called before sending the email when listing gets published. |
|
| 3014 | - * |
|
| 3015 | - * @since 1.0.0 |
|
| 3016 | - * @package GeoDirectory |
|
| 3017 | - * @param object $post_after The post object after update. |
|
| 3018 | - * @param object $post_before The post object before update. |
|
| 3019 | - */ |
|
| 3020 | - do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3021 | - if (is_email($to_email)) {
|
|
| 3022 | - geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3023 | - } |
|
| 3012 | + /** |
|
| 3013 | + * Called before sending the email when listing gets published. |
|
| 3014 | + * |
|
| 3015 | + * @since 1.0.0 |
|
| 3016 | + * @package GeoDirectory |
|
| 3017 | + * @param object $post_after The post object after update. |
|
| 3018 | + * @param object $post_before The post object before update. |
|
| 3019 | + */ |
|
| 3020 | + do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3021 | + if (is_email($to_email)) {
|
|
| 3022 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3023 | + } |
|
| 3024 | 3024 | |
| 3025 | - /** |
|
| 3026 | - * Called after sending the email when listing gets published. |
|
| 3027 | - * |
|
| 3028 | - * @since 1.0.0 |
|
| 3029 | - * @package GeoDirectory |
|
| 3030 | - * @param object $post_after The post object after update. |
|
| 3031 | - * @param object $post_before The post object before update. |
|
| 3032 | - */ |
|
| 3033 | - do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3034 | - } |
|
| 3035 | - } |
|
| 3025 | + /** |
|
| 3026 | + * Called after sending the email when listing gets published. |
|
| 3027 | + * |
|
| 3028 | + * @since 1.0.0 |
|
| 3029 | + * @package GeoDirectory |
|
| 3030 | + * @param object $post_after The post object after update. |
|
| 3031 | + * @param object $post_before The post object before update. |
|
| 3032 | + */ |
|
| 3033 | + do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3034 | + } |
|
| 3035 | + } |
|
| 3036 | 3036 | } |
| 3037 | 3037 | |
| 3038 | 3038 | add_action('wp_head', 'geodir_fb_like_thumbnail');
|
@@ -3046,14 +3046,14 @@ discard block |
||
| 3046 | 3046 | */ |
| 3047 | 3047 | function geodir_fb_like_thumbnail(){
|
| 3048 | 3048 | |
| 3049 | - // return if not a single post |
|
| 3050 | - if(!is_single()){return;}
|
|
| 3049 | + // return if not a single post |
|
| 3050 | + if(!is_single()){return;}
|
|
| 3051 | 3051 | |
| 3052 | - global $post; |
|
| 3053 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3054 | - $upload_dir = wp_upload_dir(); |
|
| 3055 | - $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3056 | - echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3052 | + global $post; |
|
| 3053 | + if(isset($post->featured_image) && $post->featured_image){
|
|
| 3054 | + $upload_dir = wp_upload_dir(); |
|
| 3055 | + $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3056 | + echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3057 | 3057 | |
| 3058 | - } |
|
| 3058 | + } |
|
| 3059 | 3059 | } |
| 3060 | 3060 | \ No newline at end of file |
@@ -26,11 +26,11 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | if (!isset($default_cat) || empty($default_cat)) {
|
| 28 | 28 | $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
| 29 | - }else{
|
|
| 30 | - if(!is_int($default_cat)){
|
|
| 29 | + } else {
|
|
| 30 | + if (!is_int($default_cat)) {
|
|
| 31 | 31 | $category = get_term_by('name', $default_cat, $taxonomy);
|
| 32 | - if(isset($category->term_id)){
|
|
| 33 | - $default_cat = $category->term_id; |
|
| 32 | + if (isset($category->term_id)) {
|
|
| 33 | + $default_cat = $category->term_id; |
|
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | $send_post_submit_mail = false; |
| 228 | 228 | |
| 229 | 229 | // unhook this function so it doesn't loop infinitely |
| 230 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 230 | + remove_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 231 | 231 | |
| 232 | 232 | if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
| 233 | 233 | $post['ID'] = $request_info['pid']; |
@@ -251,7 +251,7 @@ discard block |
||
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | // re-hook this function |
| 254 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 254 | + add_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 255 | 255 | |
| 256 | 256 | $post_tags = ''; |
| 257 | 257 | if (!isset($request_info['post_tags'])) {
|
@@ -275,7 +275,7 @@ discard block |
||
| 275 | 275 | $payment_info = array(); |
| 276 | 276 | $package_info = array(); |
| 277 | 277 | |
| 278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 278 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
| 279 | 279 | |
| 280 | 280 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
| 281 | 281 | |
@@ -474,7 +474,7 @@ discard block |
||
| 474 | 474 | $tmpimgArr = trim($request_info['post_images'], ","); |
| 475 | 475 | $tmpimgArr = explode(",", $tmpimgArr);
|
| 476 | 476 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
| 477 | - } else{
|
|
| 477 | + } else {
|
|
| 478 | 478 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
| 479 | 479 | } |
| 480 | 480 | |
@@ -658,7 +658,7 @@ discard block |
||
| 658 | 658 | |
| 659 | 659 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
| 660 | 660 | |
| 661 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 661 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query); // escape %
|
|
| 662 | 662 | |
| 663 | 663 | /** |
| 664 | 664 | * Called before saving the listing info. |
@@ -928,7 +928,7 @@ discard block |
||
| 928 | 928 | $file_path = ''; |
| 929 | 929 | /* --------- start ------- */ |
| 930 | 930 | |
| 931 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 931 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
|
|
| 932 | 932 | |
| 933 | 933 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 934 | 934 | |
@@ -985,20 +985,20 @@ discard block |
||
| 985 | 985 | } |
| 986 | 986 | |
| 987 | 987 | $external_img = false; |
| 988 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 988 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
|
|
| 989 | 989 | } else {
|
| 990 | 990 | $external_img = true; |
| 991 | 991 | } |
| 992 | 992 | |
| 993 | 993 | if ($dummy || $external_img) {
|
| 994 | 994 | $uploaded_file = array(); |
| 995 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 995 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
| 996 | 996 | |
| 997 | 997 | if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
| 998 | 998 | $new_name = basename($uploaded['file']); |
| 999 | 999 | $uploaded_file = $uploaded; |
| 1000 | - }else{
|
|
| 1001 | - print_r($uploaded);exit; |
|
| 1000 | + } else {
|
|
| 1001 | + print_r($uploaded); exit; |
|
| 1002 | 1002 | } |
| 1003 | 1003 | $external_img = false; |
| 1004 | 1004 | } else {
|
@@ -1031,7 +1031,7 @@ discard block |
||
| 1031 | 1031 | $file_path = $sub_dir . '/' . $new_name; |
| 1032 | 1032 | } |
| 1033 | 1033 | |
| 1034 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1034 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'] . $file_path);
|
|
| 1035 | 1035 | |
| 1036 | 1036 | if ($menu_order == 1) {
|
| 1037 | 1037 | |
@@ -1069,7 +1069,7 @@ discard block |
||
| 1069 | 1069 | } else {
|
| 1070 | 1070 | $valid_file_ids[] = $find_image; |
| 1071 | 1071 | |
| 1072 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1072 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
|
|
| 1073 | 1073 | |
| 1074 | 1074 | $wpdb->query( |
| 1075 | 1075 | $wpdb->prepare( |
@@ -1103,9 +1103,9 @@ discard block |
||
| 1103 | 1103 | |
| 1104 | 1104 | foreach ($post_images as $img) {
|
| 1105 | 1105 | |
| 1106 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1106 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
|
|
| 1107 | 1107 | |
| 1108 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1108 | + $invalid_files[] = (object) array('src' => $img->src);
|
|
| 1109 | 1109 | |
| 1110 | 1110 | } |
| 1111 | 1111 | |
@@ -1113,7 +1113,7 @@ discard block |
||
| 1113 | 1113 | |
| 1114 | 1114 | } |
| 1115 | 1115 | |
| 1116 | - $invalid_files = (object)$invalid_files; |
|
| 1116 | + $invalid_files = (object) $invalid_files; |
|
| 1117 | 1117 | } |
| 1118 | 1118 | |
| 1119 | 1119 | $remove_files[] = $post_id; |
@@ -1247,7 +1247,7 @@ discard block |
||
| 1247 | 1247 | } |
| 1248 | 1248 | |
| 1249 | 1249 | if (!in_array($post_type, geodir_get_posttypes())) {
|
| 1250 | - return false;// if not a GD CPT return; |
|
| 1250 | + return false; // if not a GD CPT return; |
|
| 1251 | 1251 | } |
| 1252 | 1252 | |
| 1253 | 1253 | $table = $plugin_prefix . $post_type . '_detail'; |
@@ -1284,7 +1284,7 @@ discard block |
||
| 1284 | 1284 | * @param string $uploads_url The server upload directory url. |
| 1285 | 1285 | * @param string $uploads_baseurl The uploads dir base url. |
| 1286 | 1286 | */ |
| 1287 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1287 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url . '/' . $file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1288 | 1288 | $img_arr['path'] = $uploads_path . '/' . $file_name; |
| 1289 | 1289 | $width = 0; |
| 1290 | 1290 | $height = 0; |
@@ -1345,7 +1345,7 @@ discard block |
||
| 1345 | 1345 | } |
| 1346 | 1346 | |
| 1347 | 1347 | if (!empty($img_arr)) |
| 1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1348 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | 1349 | else |
| 1350 | 1350 | return false; |
| 1351 | 1351 | } |
@@ -1444,7 +1444,7 @@ discard block |
||
| 1444 | 1444 | * @param string $uploads_url The server upload directory url. |
| 1445 | 1445 | * @param string $uploads_baseurl The uploads dir base url. |
| 1446 | 1446 | */ |
| 1447 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1447 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url . '/' . $file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1448 | 1448 | $img_arr['path'] = $uploads_path . '/' . $file_name; |
| 1449 | 1449 | $width = 0; |
| 1450 | 1450 | $height = 0; |
@@ -1462,11 +1462,11 @@ discard block |
||
| 1462 | 1462 | $img_arr['content'] = $attechment->content; // add the description to the array |
| 1463 | 1463 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
| 1464 | 1464 | |
| 1465 | - $return_arr[] = (object)$img_arr; |
|
| 1465 | + $return_arr[] = (object) $img_arr; |
|
| 1466 | 1466 | |
| 1467 | 1467 | $counter++; |
| 1468 | 1468 | } |
| 1469 | - return (object)$return_arr; |
|
| 1469 | + return (object) $return_arr; |
|
| 1470 | 1470 | } else if ($no_images) {
|
| 1471 | 1471 | $default_img = ''; |
| 1472 | 1472 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1505,7 +1505,7 @@ discard block |
||
| 1505 | 1505 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
| 1506 | 1506 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
| 1507 | 1507 | |
| 1508 | - $return_arr[] = (object)$img_arr; |
|
| 1508 | + $return_arr[] = (object) $img_arr; |
|
| 1509 | 1509 | |
| 1510 | 1510 | return $return_arr; |
| 1511 | 1511 | } else |
@@ -1532,8 +1532,8 @@ discard block |
||
| 1532 | 1532 | |
| 1533 | 1533 | $html = ''; |
| 1534 | 1534 | if (!empty($request)) {
|
| 1535 | - if (!is_object($request)){
|
|
| 1536 | - $request = (object)$request; |
|
| 1535 | + if (!is_object($request)) {
|
|
| 1536 | + $request = (object) $request; |
|
| 1537 | 1537 | } |
| 1538 | 1538 | |
| 1539 | 1539 | if (isset($request->src) && !isset($request->path)) {
|
@@ -1547,7 +1547,7 @@ discard block |
||
| 1547 | 1547 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
| 1548 | 1548 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
| 1549 | 1549 | if (strpos($img_no_http, $upload_no_http) !== false) {
|
| 1550 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1550 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
| 1551 | 1551 | } |
| 1552 | 1552 | |
| 1553 | 1553 | $width = 0; |
@@ -1562,7 +1562,7 @@ discard block |
||
| 1562 | 1562 | $image->width = $width; |
| 1563 | 1563 | $image->height = $height; |
| 1564 | 1564 | |
| 1565 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1565 | + $max_size = (object) geodir_get_imagesize($size); |
|
| 1566 | 1566 | |
| 1567 | 1567 | if (!is_wp_error($max_size)) {
|
| 1568 | 1568 | if ($image->width) {
|
@@ -1574,7 +1574,7 @@ discard block |
||
| 1574 | 1574 | $width_per = 100; |
| 1575 | 1575 | } |
| 1576 | 1576 | |
| 1577 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1577 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
|
|
| 1578 | 1578 | $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
| 1579 | 1579 | } else {
|
| 1580 | 1580 | $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
@@ -1902,7 +1902,7 @@ discard block |
||
| 1902 | 1902 | } ?>"><img alt="bubble image" style="max-height:50px;" |
| 1903 | 1903 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1904 | 1904 | <?php |
| 1905 | - }else{
|
|
| 1905 | + } else {
|
|
| 1906 | 1906 | echo '<div class="geodir-bubble_image"></div>'; |
| 1907 | 1907 | } |
| 1908 | 1908 | } else {
|
@@ -1910,7 +1910,7 @@ discard block |
||
| 1910 | 1910 | ?> |
| 1911 | 1911 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1912 | 1912 | <?php |
| 1913 | - }else{
|
|
| 1913 | + } else {
|
|
| 1914 | 1914 | echo '<div class="geodir-bubble_image"></div>'; |
| 1915 | 1915 | } |
| 1916 | 1916 | } |
@@ -1944,7 +1944,7 @@ discard block |
||
| 1944 | 1944 | * @param object $postinfo_obj The posts info as an object. |
| 1945 | 1945 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
| 1946 | 1946 | */ |
| 1947 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1947 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
|
|
| 1948 | 1948 | ?> |
| 1949 | 1949 | </div> |
| 1950 | 1950 | <?php |
@@ -1956,10 +1956,10 @@ discard block |
||
| 1956 | 1956 | <div class="geodir-bubble-meta-fade"></div> |
| 1957 | 1957 | |
| 1958 | 1958 | <div class="geodir-bubble-meta-bottom"> |
| 1959 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
| 1959 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
| 1960 | 1960 | |
| 1961 | 1961 | <span |
| 1962 | - class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
| 1962 | + class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
| 1963 | 1963 | <span class="geodir-bubble-reviews"><a href="<?php echo get_comments_link($ID); ?>" |
| 1964 | 1964 | class="geodir-pcomments"><i class="fa fa-comments"></i> |
| 1965 | 1965 | <?php echo get_comments_number($ID); ?> |
@@ -2254,7 +2254,7 @@ discard block |
||
| 2254 | 2254 | */ |
| 2255 | 2255 | do_action('geodir_before_add_from_favorite', $post_id);
|
| 2256 | 2256 | |
| 2257 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2257 | + echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="' . $favourite_icon . '"></i> ' . $unfavourite_text . '</a>'; |
|
| 2258 | 2258 | |
| 2259 | 2259 | /** |
| 2260 | 2260 | * Called after adding the post from favourites. |
@@ -2333,7 +2333,7 @@ discard block |
||
| 2333 | 2333 | */ |
| 2334 | 2334 | do_action('geodir_before_remove_from_favorite', $post_id);
|
| 2335 | 2335 | |
| 2336 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2336 | + echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="' . $favourite_icon . '"></i> ' . $favourite_text . '</a>'; |
|
| 2337 | 2337 | |
| 2338 | 2338 | /** |
| 2339 | 2339 | * Called after removing the post from favourites. |
@@ -2428,10 +2428,10 @@ discard block |
||
| 2428 | 2428 | $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
| 2429 | 2429 | |
| 2430 | 2430 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
| 2431 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2431 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
| 2432 | 2432 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2433 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
| 2434 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
| 2433 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
| 2434 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
| 2435 | 2435 | </a> </span><?php |
| 2436 | 2436 | |
| 2437 | 2437 | } else {
|
@@ -2441,11 +2441,11 @@ discard block |
||
| 2441 | 2441 | } else |
| 2442 | 2442 | $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
| 2443 | 2443 | |
| 2444 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2444 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
| 2445 | 2445 | href="javascript:void(0);" |
| 2446 | - onclick="<?php echo $script_text;?>" |
|
| 2447 | - title="<?php echo $add_favourite_text;?>"><i |
|
| 2448 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
| 2446 | + onclick="<?php echo $script_text; ?>" |
|
| 2447 | + title="<?php echo $add_favourite_text; ?>"><i |
|
| 2448 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
| 2449 | 2449 | <?php } |
| 2450 | 2450 | } |
| 2451 | 2451 | } |
@@ -3044,15 +3044,15 @@ discard block |
||
| 3044 | 3044 | * @since 1.4.9 |
| 3045 | 3045 | * @package GeoDirectory |
| 3046 | 3046 | */ |
| 3047 | -function geodir_fb_like_thumbnail(){
|
|
| 3047 | +function geodir_fb_like_thumbnail() {
|
|
| 3048 | 3048 | |
| 3049 | 3049 | // return if not a single post |
| 3050 | - if(!is_single()){return;}
|
|
| 3050 | + if (!is_single()) {return; }
|
|
| 3051 | 3051 | |
| 3052 | 3052 | global $post; |
| 3053 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3053 | + if (isset($post->featured_image) && $post->featured_image) {
|
|
| 3054 | 3054 | $upload_dir = wp_upload_dir(); |
| 3055 | - $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3055 | + $thumb = $upload_dir['baseurl'] . $post->featured_image; |
|
| 3056 | 3056 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
| 3057 | 3057 | |
| 3058 | 3058 | } |
@@ -21,12 +21,13 @@ discard block |
||
| 21 | 21 | {
|
| 22 | 22 | |
| 23 | 23 | $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
| 24 | - if (!empty($post_cat_ids)) |
|
| 25 | - $post_cat_array = explode(",", trim($post_cat_ids, ","));
|
|
| 24 | + if (!empty($post_cat_ids)) { |
|
| 25 | + $post_cat_array = explode(",", trim($post_cat_ids, ",")); |
|
| 26 | + } |
|
| 26 | 27 | |
| 27 | 28 | if (!isset($default_cat) || empty($default_cat)) {
|
| 28 | 29 | $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
| 29 | - }else{
|
|
| 30 | + } else{
|
|
| 30 | 31 | if(!is_int($default_cat)){
|
| 31 | 32 | $category = get_term_by('name', $default_cat, $taxonomy);
|
| 32 | 33 | if(isset($category->term_id)){
|
@@ -372,8 +373,9 @@ discard block |
||
| 372 | 373 | } elseif (trim($type) == 'file') {
|
| 373 | 374 | if (isset($request_info[$name])) {
|
| 374 | 375 | $request_files = array(); |
| 375 | - if ($request_info[$name] != '') |
|
| 376 | - $request_files = explode(",", $request_info[$name]);
|
|
| 376 | + if ($request_info[$name] != '') { |
|
| 377 | + $request_files = explode(",", $request_info[$name]); |
|
| 378 | + } |
|
| 377 | 379 | |
| 378 | 380 | $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
| 379 | 381 | geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
@@ -428,15 +430,17 @@ discard block |
||
| 428 | 430 | |
| 429 | 431 | foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
| 430 | 432 | |
| 431 | - if ($dummy) |
|
| 432 | - $post_category = $cat; |
|
| 433 | - else {
|
|
| 433 | + if ($dummy) { |
|
| 434 | + $post_category = $cat; |
|
| 435 | + } else {
|
|
| 434 | 436 | |
| 435 | - if (!is_array($cat) && strstr($cat, ',')) |
|
| 436 | - $cat = explode(',', $cat);
|
|
| 437 | + if (!is_array($cat) && strstr($cat, ',')) { |
|
| 438 | + $cat = explode(',', $cat); |
|
| 439 | + } |
|
| 437 | 440 | |
| 438 | - if (!empty($cat) && is_array($cat)) |
|
| 439 | - $post_category = array_map('intval', $cat);
|
|
| 441 | + if (!empty($cat) && is_array($cat)) { |
|
| 442 | + $post_category = array_map('intval', $cat); |
|
| 443 | + } |
|
| 440 | 444 | } |
| 441 | 445 | |
| 442 | 446 | wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
@@ -454,11 +458,13 @@ discard block |
||
| 454 | 458 | if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
| 455 | 459 | $post_tags = explode(",", $request_info['post_tags']);
|
| 456 | 460 | } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
| 457 | - if ($dummy) |
|
| 458 | - $post_tags = $request_info['post_tags']; |
|
| 461 | + if ($dummy) { |
|
| 462 | + $post_tags = $request_info['post_tags']; |
|
| 463 | + } |
|
| 459 | 464 | } else {
|
| 460 | - if ($dummy) |
|
| 461 | - $post_tags = array($request_info['post_title']); |
|
| 465 | + if ($dummy) { |
|
| 466 | + $post_tags = array($request_info['post_title']); |
|
| 467 | + } |
|
| 462 | 468 | } |
| 463 | 469 | |
| 464 | 470 | if (is_array($post_tags)) {
|
@@ -545,15 +551,17 @@ discard block |
||
| 545 | 551 | |
| 546 | 552 | global $wpdb, $plugin_prefix, $post, $post_info; |
| 547 | 553 | |
| 548 | - if ($post_id == '' && !empty($post)) |
|
| 549 | - $post_id = $post->ID; |
|
| 554 | + if ($post_id == '' && !empty($post)) { |
|
| 555 | + $post_id = $post->ID; |
|
| 556 | + } |
|
| 550 | 557 | |
| 551 | 558 | $post_type = get_post_type($post_id); |
| 552 | 559 | |
| 553 | 560 | $all_postypes = geodir_get_posttypes(); |
| 554 | 561 | |
| 555 | - if (!in_array($post_type, $all_postypes)) |
|
| 556 | - return false; |
|
| 562 | + if (!in_array($post_type, $all_postypes)) { |
|
| 563 | + return false; |
|
| 564 | + } |
|
| 557 | 565 | |
| 558 | 566 | $table = $plugin_prefix . $post_type . '_detail'; |
| 559 | 567 | |
@@ -703,8 +711,9 @@ discard block |
||
| 703 | 711 | do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
| 704 | 712 | |
| 705 | 713 | return true; |
| 706 | - } else |
|
| 707 | - return false; |
|
| 714 | + } else { |
|
| 715 | + return false; |
|
| 716 | + } |
|
| 708 | 717 | |
| 709 | 718 | } |
| 710 | 719 | } |
@@ -758,8 +767,9 @@ discard block |
||
| 758 | 767 | } |
| 759 | 768 | |
| 760 | 769 | |
| 761 | - } else |
|
| 762 | - return false; |
|
| 770 | + } else { |
|
| 771 | + return false; |
|
| 772 | + } |
|
| 763 | 773 | } |
| 764 | 774 | } |
| 765 | 775 | |
@@ -790,8 +800,9 @@ discard block |
||
| 790 | 800 | $post_meta_set_query = ''; |
| 791 | 801 | |
| 792 | 802 | foreach ($postmeta as $mkey) {
|
| 793 | - if ($mval != '') |
|
| 794 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 803 | + if ($mval != '') { |
|
| 804 | + $post_meta_set_query .= $mkey . " = '', "; |
|
| 805 | + } |
|
| 795 | 806 | } |
| 796 | 807 | |
| 797 | 808 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
@@ -821,8 +832,9 @@ discard block |
||
| 821 | 832 | return true; |
| 822 | 833 | } |
| 823 | 834 | |
| 824 | - } else |
|
| 825 | - return false; |
|
| 835 | + } else { |
|
| 836 | + return false; |
|
| 837 | + } |
|
| 826 | 838 | } |
| 827 | 839 | } |
| 828 | 840 | |
@@ -852,8 +864,9 @@ discard block |
||
| 852 | 864 | |
| 853 | 865 | $post_type = get_post_type($post_id); |
| 854 | 866 | |
| 855 | - if (!in_array($post_type, $all_postypes)) |
|
| 856 | - return false; |
|
| 867 | + if (!in_array($post_type, $all_postypes)) { |
|
| 868 | + return false; |
|
| 869 | + } |
|
| 857 | 870 | |
| 858 | 871 | $table = $plugin_prefix . $post_type . '_detail'; |
| 859 | 872 | |
@@ -862,11 +875,13 @@ discard block |
||
| 862 | 875 | if ($meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)))) {
|
| 863 | 876 | $meta_value = maybe_serialize($meta_value); |
| 864 | 877 | return $meta_value; |
| 865 | - } else |
|
| 866 | - return false; |
|
| 878 | + } else { |
|
| 879 | + return false; |
|
| 880 | + } |
|
| 867 | 881 | |
| 868 | - } else |
|
| 869 | - return false; |
|
| 882 | + } else { |
|
| 883 | + return false; |
|
| 884 | + } |
|
| 870 | 885 | } |
| 871 | 886 | } |
| 872 | 887 | |
@@ -997,7 +1012,7 @@ discard block |
||
| 997 | 1012 | if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
| 998 | 1013 | $new_name = basename($uploaded['file']); |
| 999 | 1014 | $uploaded_file = $uploaded; |
| 1000 | - }else{
|
|
| 1015 | + } else{
|
|
| 1001 | 1016 | print_r($uploaded);exit; |
| 1002 | 1017 | } |
| 1003 | 1018 | $external_img = false; |
@@ -1022,8 +1037,9 @@ discard block |
||
| 1022 | 1037 | $file_path = $curr_img_dir . '/' . $filename; |
| 1023 | 1038 | } |
| 1024 | 1039 | |
| 1025 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1026 | - unlink($img_path); |
|
| 1040 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) { |
|
| 1041 | + unlink($img_path); |
|
| 1042 | + } |
|
| 1027 | 1043 | } |
| 1028 | 1044 | |
| 1029 | 1045 | if (!empty($uploaded_file)) {
|
@@ -1052,8 +1068,9 @@ discard block |
||
| 1052 | 1068 | $attachment_set = ''; |
| 1053 | 1069 | |
| 1054 | 1070 | foreach ($attachment as $key => $val) {
|
| 1055 | - if ($val != '') |
|
| 1056 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1071 | + if ($val != '') { |
|
| 1072 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1073 | + } |
|
| 1057 | 1074 | } |
| 1058 | 1075 | |
| 1059 | 1076 | $attachment_set = trim($attachment_set, ", "); |
@@ -1078,8 +1095,9 @@ discard block |
||
| 1078 | 1095 | ) |
| 1079 | 1096 | ); |
| 1080 | 1097 | |
| 1081 | - if ($menu_order == 1) |
|
| 1082 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1098 | + if ($menu_order == 1) { |
|
| 1099 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id))); |
|
| 1100 | + } |
|
| 1083 | 1101 | |
| 1084 | 1102 | } |
| 1085 | 1103 | |
@@ -1120,8 +1138,9 @@ discard block |
||
| 1120 | 1138 | |
| 1121 | 1139 | $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
| 1122 | 1140 | |
| 1123 | - if (!empty($invalid_files)) |
|
| 1124 | - geodir_remove_attachments($invalid_files); |
|
| 1141 | + if (!empty($invalid_files)) { |
|
| 1142 | + geodir_remove_attachments($invalid_files); |
|
| 1143 | + } |
|
| 1125 | 1144 | } |
| 1126 | 1145 | |
| 1127 | 1146 | } |
@@ -1174,16 +1193,19 @@ discard block |
||
| 1174 | 1193 | function geodir_delete_directory($dirname) |
| 1175 | 1194 | {
|
| 1176 | 1195 | $dir_handle = ''; |
| 1177 | - if (is_dir($dirname)) |
|
| 1178 | - $dir_handle = opendir($dirname); |
|
| 1179 | - if (!$dir_handle) |
|
| 1180 | - return false; |
|
| 1196 | + if (is_dir($dirname)) { |
|
| 1197 | + $dir_handle = opendir($dirname); |
|
| 1198 | + } |
|
| 1199 | + if (!$dir_handle) { |
|
| 1200 | + return false; |
|
| 1201 | + } |
|
| 1181 | 1202 | while ($file = readdir($dir_handle)) {
|
| 1182 | 1203 | if ($file != "." && $file != "..") {
|
| 1183 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1184 | - unlink($dirname . "/" . $file); |
|
| 1185 | - else |
|
| 1186 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1204 | + if (!is_dir($dirname . "/" . $file)) { |
|
| 1205 | + unlink($dirname . "/" . $file); |
|
| 1206 | + } else { |
|
| 1207 | + geodir_delete_directory($dirname . '/' . $file); |
|
| 1208 | + } |
|
| 1187 | 1209 | } |
| 1188 | 1210 | } |
| 1189 | 1211 | closedir($dir_handle); |
@@ -1212,8 +1234,9 @@ discard block |
||
| 1212 | 1234 | foreach ($postcurr_images as $postimg) {
|
| 1213 | 1235 | $image_name_arr = explode('/', $postimg->src);
|
| 1214 | 1236 | $filename = end($image_name_arr); |
| 1215 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1216 | - unlink($uploads_dir . '/' . $filename); |
|
| 1237 | + if (file_exists($uploads_dir . '/' . $filename)) { |
|
| 1238 | + unlink($uploads_dir . '/' . $filename); |
|
| 1239 | + } |
|
| 1217 | 1240 | } |
| 1218 | 1241 | |
| 1219 | 1242 | } // endif |
@@ -1265,8 +1288,9 @@ discard block |
||
| 1265 | 1288 | |
| 1266 | 1289 | $file_info = pathinfo($file); |
| 1267 | 1290 | $sub_dir = ''; |
| 1268 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1269 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1291 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
| 1292 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1293 | + } |
|
| 1270 | 1294 | |
| 1271 | 1295 | $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
| 1272 | 1296 | $uploads_baseurl = $uploads['baseurl']; |
@@ -1310,9 +1334,9 @@ discard block |
||
| 1310 | 1334 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
| 1311 | 1335 | } |
| 1312 | 1336 | |
| 1313 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1314 | - $default_img = $default_catimg['src']; |
|
| 1315 | - elseif ($no_image) {
|
|
| 1337 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) { |
|
| 1338 | + $default_img = $default_catimg['src']; |
|
| 1339 | + } elseif ($no_image) {
|
|
| 1316 | 1340 | $default_img = get_option('geodir_listing_no_img');
|
| 1317 | 1341 | } |
| 1318 | 1342 | |
@@ -1344,10 +1368,13 @@ discard block |
||
| 1344 | 1368 | } |
| 1345 | 1369 | } |
| 1346 | 1370 | |
| 1347 | - if (!empty($img_arr)) |
|
| 1348 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1349 | - else |
|
| 1350 | - return false; |
|
| 1371 | + if (!empty($img_arr)) { |
|
| 1372 | + return (object)$img_arr; |
|
| 1373 | + } |
|
| 1374 | + //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1375 | + else { |
|
| 1376 | + return false; |
|
| 1377 | + } |
|
| 1351 | 1378 | } |
| 1352 | 1379 | } |
| 1353 | 1380 | |
@@ -1374,8 +1401,9 @@ discard block |
||
| 1374 | 1401 | echo $html; |
| 1375 | 1402 | } elseif (!empty($html)) {
|
| 1376 | 1403 | return $html; |
| 1377 | - } else |
|
| 1378 | - return false; |
|
| 1404 | + } else { |
|
| 1405 | + return false; |
|
| 1406 | + } |
|
| 1379 | 1407 | } |
| 1380 | 1408 | } |
| 1381 | 1409 | |
@@ -1403,8 +1431,9 @@ discard block |
||
| 1403 | 1431 | } |
| 1404 | 1432 | $not_featured = ''; |
| 1405 | 1433 | $sub_dir = ''; |
| 1406 | - if (!$add_featured) |
|
| 1407 | - $not_featured = " AND is_featured = 0 "; |
|
| 1434 | + if (!$add_featured) { |
|
| 1435 | + $not_featured = " AND is_featured = 0 "; |
|
| 1436 | + } |
|
| 1408 | 1437 | |
| 1409 | 1438 | $arrImages = $wpdb->get_results( |
| 1410 | 1439 | $wpdb->prepare( |
@@ -1425,8 +1454,9 @@ discard block |
||
| 1425 | 1454 | |
| 1426 | 1455 | $file_info = pathinfo($attechment->file); |
| 1427 | 1456 | |
| 1428 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1429 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1457 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') { |
|
| 1458 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1459 | + } |
|
| 1430 | 1460 | |
| 1431 | 1461 | $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
| 1432 | 1462 | $uploads_baseurl = $uploads['baseurl']; |
@@ -1471,9 +1501,9 @@ discard block |
||
| 1471 | 1501 | $default_img = ''; |
| 1472 | 1502 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
| 1473 | 1503 | $post_type = get_post_type($post_id); |
| 1474 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1475 | - $default_img = $default_catimg['src']; |
|
| 1476 | - elseif ($no_images) {
|
|
| 1504 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) { |
|
| 1505 | + $default_img = $default_catimg['src']; |
|
| 1506 | + } elseif ($no_images) {
|
|
| 1477 | 1507 | $default_img = get_option('geodir_listing_no_img');
|
| 1478 | 1508 | } |
| 1479 | 1509 | |
@@ -1508,8 +1538,9 @@ discard block |
||
| 1508 | 1538 | $return_arr[] = (object)$img_arr; |
| 1509 | 1539 | |
| 1510 | 1540 | return $return_arr; |
| 1511 | - } else |
|
| 1512 | - return false; |
|
| 1541 | + } else { |
|
| 1542 | + return false; |
|
| 1543 | + } |
|
| 1513 | 1544 | } |
| 1514 | 1545 | } |
| 1515 | 1546 | } |
@@ -1570,8 +1601,9 @@ discard block |
||
| 1570 | 1601 | $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
| 1571 | 1602 | } else if ($image->width < ($max_size->h)) {
|
| 1572 | 1603 | $width_per = round((($image->width / $max_size->w) * 100), 2); |
| 1573 | - } else |
|
| 1574 | - $width_per = 100; |
|
| 1604 | + } else { |
|
| 1605 | + $width_per = 100; |
|
| 1606 | + } |
|
| 1575 | 1607 | } |
| 1576 | 1608 | |
| 1577 | 1609 | if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
@@ -1586,8 +1618,9 @@ discard block |
||
| 1586 | 1618 | echo $html; |
| 1587 | 1619 | } elseif (!empty($html)) {
|
| 1588 | 1620 | return $html; |
| 1589 | - } else |
|
| 1590 | - return false; |
|
| 1621 | + } else { |
|
| 1622 | + return false; |
|
| 1623 | + } |
|
| 1591 | 1624 | } |
| 1592 | 1625 | } |
| 1593 | 1626 | |
@@ -1625,8 +1658,9 @@ discard block |
||
| 1625 | 1658 | $post_obj = get_post($post_id); |
| 1626 | 1659 | |
| 1627 | 1660 | $cat_ids = array('0');
|
| 1628 | - if (is_array($tt_ids)) |
|
| 1629 | - $cat_ids = $tt_ids; |
|
| 1661 | + if (is_array($tt_ids)) { |
|
| 1662 | + $cat_ids = $tt_ids; |
|
| 1663 | + } |
|
| 1630 | 1664 | |
| 1631 | 1665 | |
| 1632 | 1666 | if (!empty($cat_ids)) {
|
@@ -1683,8 +1717,9 @@ discard block |
||
| 1683 | 1717 | $json .= '}'; |
| 1684 | 1718 | |
| 1685 | 1719 | |
| 1686 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1687 | - $post_marker_json = $json; |
|
| 1720 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) { |
|
| 1721 | + $post_marker_json = $json; |
|
| 1722 | + } |
|
| 1688 | 1723 | |
| 1689 | 1724 | |
| 1690 | 1725 | if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
@@ -1715,10 +1750,13 @@ discard block |
||
| 1715 | 1750 | if (!empty($post_term) && is_array($post_term)) {
|
| 1716 | 1751 | $categories = implode(',', $post_term);
|
| 1717 | 1752 | |
| 1718 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1753 | + if ($categories != '' && $categories != 0) { |
|
| 1754 | + $categories = ',' . $categories . ','; |
|
| 1755 | + } |
|
| 1719 | 1756 | |
| 1720 | - if (empty($post_marker_json)) |
|
| 1721 | - $post_marker_json = isset($json) ? $json : ''; |
|
| 1757 | + if (empty($post_marker_json)) { |
|
| 1758 | + $post_marker_json = isset($json) ? $json : ''; |
|
| 1759 | + } |
|
| 1722 | 1760 | |
| 1723 | 1761 | if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
| 1724 | 1762 | |
@@ -1757,8 +1795,9 @@ discard block |
||
| 1757 | 1795 | |
| 1758 | 1796 | } |
| 1759 | 1797 | |
| 1760 | - if ($default_category == '') |
|
| 1761 | - $default_category = $categories[0]; |
|
| 1798 | + if ($default_category == '') { |
|
| 1799 | + $default_category = $categories[0]; |
|
| 1800 | + } |
|
| 1762 | 1801 | |
| 1763 | 1802 | geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
| 1764 | 1803 | |
@@ -1902,7 +1941,7 @@ discard block |
||
| 1902 | 1941 | } ?>"><img alt="bubble image" style="max-height:50px;" |
| 1903 | 1942 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1904 | 1943 | <?php |
| 1905 | - }else{
|
|
| 1944 | + } else{
|
|
| 1906 | 1945 | echo '<div class="geodir-bubble_image"></div>'; |
| 1907 | 1946 | } |
| 1908 | 1947 | } else {
|
@@ -1910,7 +1949,7 @@ discard block |
||
| 1910 | 1949 | ?> |
| 1911 | 1950 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1912 | 1951 | <?php |
| 1913 | - }else{
|
|
| 1952 | + } else{
|
|
| 1914 | 1953 | echo '<div class="geodir-bubble_image"></div>'; |
| 1915 | 1954 | } |
| 1916 | 1955 | } |
@@ -2001,10 +2040,11 @@ discard block |
||
| 2001 | 2040 | */ |
| 2002 | 2041 | function geodir_new_post_default_status() |
| 2003 | 2042 | {
|
| 2004 | - if (get_option('geodir_new_post_default_status'))
|
|
| 2005 | - return get_option('geodir_new_post_default_status');
|
|
| 2006 | - else |
|
| 2007 | - return 'publish'; |
|
| 2043 | + if (get_option('geodir_new_post_default_status')) { |
|
| 2044 | + return get_option('geodir_new_post_default_status'); |
|
| 2045 | + } else { |
|
| 2046 | + return 'publish'; |
|
| 2047 | + } |
|
| 2008 | 2048 | |
| 2009 | 2049 | } |
| 2010 | 2050 | } |
@@ -2155,8 +2195,9 @@ discard block |
||
| 2155 | 2195 | |
| 2156 | 2196 | $all_postypes = geodir_get_posttypes(); |
| 2157 | 2197 | |
| 2158 | - if (!in_array($post_type, $all_postypes)) |
|
| 2159 | - return false; |
|
| 2198 | + if (!in_array($post_type, $all_postypes)) { |
|
| 2199 | + return false; |
|
| 2200 | + } |
|
| 2160 | 2201 | |
| 2161 | 2202 | $table = $plugin_prefix . $post_type . '_detail'; |
| 2162 | 2203 | |
@@ -2424,8 +2465,9 @@ discard block |
||
| 2424 | 2465 | $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
| 2425 | 2466 | |
| 2426 | 2467 | $user_meta_data = ''; |
| 2427 | - if (isset($current_user->data->ID)) |
|
| 2428 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2468 | + if (isset($current_user->data->ID)) { |
|
| 2469 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2470 | + } |
|
| 2429 | 2471 | |
| 2430 | 2472 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
| 2431 | 2473 | ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
@@ -2438,8 +2480,9 @@ discard block |
||
| 2438 | 2480 | |
| 2439 | 2481 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
| 2440 | 2482 | $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
| 2441 | - } else |
|
| 2442 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2483 | + } else { |
|
| 2484 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')'; |
|
| 2485 | + } |
|
| 2443 | 2486 | |
| 2444 | 2487 | ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
| 2445 | 2488 | href="javascript:void(0);" |
@@ -2502,14 +2545,16 @@ discard block |
||
| 2502 | 2545 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
| 2503 | 2546 | |
| 2504 | 2547 | $cat_post_count = $wpdb->get_var($count_query); |
| 2505 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2506 | - $cat_post_count = 0; |
|
| 2548 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) { |
|
| 2549 | + $cat_post_count = 0; |
|
| 2550 | + } |
|
| 2507 | 2551 | |
| 2508 | 2552 | return $cat_post_count; |
| 2509 | 2553 | |
| 2510 | - } else |
|
| 2511 | - |
|
| 2512 | - return $term->count; |
|
| 2554 | + } else { |
|
| 2555 | + |
|
| 2556 | + return $term->count; |
|
| 2557 | + } |
|
| 2513 | 2558 | } |
| 2514 | 2559 | return false; |
| 2515 | 2560 | |
@@ -2556,13 +2601,15 @@ discard block |
||
| 2556 | 2601 | return $length; |
| 2557 | 2602 | } |
| 2558 | 2603 | |
| 2559 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2560 | - $length = get_option('geodir_desc_word_limit');
|
|
| 2561 | - elseif (get_query_var('excerpt_length'))
|
|
| 2562 | - $length = get_query_var('excerpt_length');
|
|
| 2604 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit')) { |
|
| 2605 | + $length = get_option('geodir_desc_word_limit'); |
|
| 2606 | + } elseif (get_query_var('excerpt_length')) { |
|
| 2607 | + $length = get_query_var('excerpt_length'); |
|
| 2608 | + } |
|
| 2563 | 2609 | |
| 2564 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2565 | - $length = get_option('geodir_author_desc_word_limit');
|
|
| 2610 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit')) { |
|
| 2611 | + $length = get_option('geodir_author_desc_word_limit'); |
|
| 2612 | + } |
|
| 2566 | 2613 | |
| 2567 | 2614 | return $length; |
| 2568 | 2615 | } |
@@ -2695,10 +2742,11 @@ discard block |
||
| 2695 | 2742 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
| 2696 | 2743 | {
|
| 2697 | 2744 | $listing_author_id = geodir_get_listing_author($listing_id); |
| 2698 | - if ($listing_author_id == $user_id) |
|
| 2699 | - return true; |
|
| 2700 | - else |
|
| 2701 | - return false; |
|
| 2745 | + if ($listing_author_id == $user_id) { |
|
| 2746 | + return true; |
|
| 2747 | + } else { |
|
| 2748 | + return false; |
|
| 2749 | + } |
|
| 2702 | 2750 | |
| 2703 | 2751 | } |
| 2704 | 2752 | |
@@ -2747,10 +2795,11 @@ discard block |
||
| 2747 | 2795 | $pattern = '/-\d+x\d+\./'; |
| 2748 | 2796 | preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
| 2749 | 2797 | |
| 2750 | - if (empty($matches)) |
|
| 2751 | - return ''; |
|
| 2752 | - else |
|
| 2753 | - return $file; |
|
| 2798 | + if (empty($matches)) { |
|
| 2799 | + return ''; |
|
| 2800 | + } else { |
|
| 2801 | + return $file; |
|
| 2802 | + } |
|
| 2754 | 2803 | |
| 2755 | 2804 | } |
| 2756 | 2805 | |
@@ -2835,8 +2884,9 @@ discard block |
||
| 2835 | 2884 | } else {
|
| 2836 | 2885 | //set_post_thumbnail($post_id,-1); |
| 2837 | 2886 | |
| 2838 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2839 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2887 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) { |
|
| 2888 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2889 | + } |
|
| 2840 | 2890 | |
| 2841 | 2891 | } |
| 2842 | 2892 | } |
@@ -2921,8 +2971,9 @@ discard block |
||
| 2921 | 2971 | |
| 2922 | 2972 | global $wpdb; |
| 2923 | 2973 | |
| 2924 | - if ($listing_type == '') |
|
| 2925 | - $listing_type = 'gd_place'; |
|
| 2974 | + if ($listing_type == '') { |
|
| 2975 | + $listing_type = 'gd_place'; |
|
| 2976 | + } |
|
| 2926 | 2977 | |
| 2927 | 2978 | $fields_info = array(); |
| 2928 | 2979 | |
@@ -2945,8 +2996,9 @@ discard block |
||
| 2945 | 2996 | |
| 2946 | 2997 | $fields_info[$prefix . 'address'] = $data->field_type; |
| 2947 | 2998 | |
| 2948 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2949 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2999 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) { |
|
| 3000 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 3001 | + } |
|
| 2950 | 3002 | |
| 2951 | 3003 | } else {
|
| 2952 | 3004 | |