@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Creates custom fields |
|
| 4 | - * |
|
| 5 | - * @since 1.0.0 |
|
| 6 | - * @package GeoDirectory |
|
| 7 | - */ |
|
| 3 | + * Creates custom fields |
|
| 4 | + * |
|
| 5 | + * @since 1.0.0 |
|
| 6 | + * @package GeoDirectory |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | $data_type = isset($_REQUEST['data_type']) ? sanitize_text_field($_REQUEST['data_type']) : ''; |
| 10 | 10 | $field_type = isset($_REQUEST['field_type']) ? sanitize_text_field($_REQUEST['field_type']) : ''; |
@@ -15,100 +15,100 @@ discard block |
||
| 15 | 15 | |
| 16 | 16 | $field_ids = array(); |
| 17 | 17 | if (!empty($_REQUEST['licontainer']) && is_array($_REQUEST['licontainer'])) { |
| 18 | - foreach ($_REQUEST['licontainer'] as $lic_id) { |
|
| 19 | - $field_ids[] = sanitize_text_field($lic_id); |
|
| 20 | - } |
|
| 18 | + foreach ($_REQUEST['licontainer'] as $lic_id) { |
|
| 19 | + $field_ids[] = sanitize_text_field($lic_id); |
|
| 20 | + } |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | /* ------- check nonce field ------- */ |
| 24 | 24 | if (isset($_REQUEST['update']) && $_REQUEST['update'] == "update" && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') { |
| 25 | - echo godir_set_field_order($field_ids); |
|
| 25 | + echo godir_set_field_order($field_ids); |
|
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | if (isset($_REQUEST['update']) && $_REQUEST['update'] == "update" && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') { |
| 29 | - $response = godir_set_sort_field_order($field_ids); |
|
| 30 | - if (is_array($response)) { |
|
| 31 | - wp_send_json($response); |
|
| 32 | - } else { |
|
| 33 | - echo $response; |
|
| 34 | - } |
|
| 29 | + $response = godir_set_sort_field_order($field_ids); |
|
| 30 | + if (is_array($response)) { |
|
| 31 | + wp_send_json($response); |
|
| 32 | + } else { |
|
| 33 | + echo $response; |
|
| 34 | + } |
|
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | /* ---- Show field form in admin ---- */ |
| 38 | 38 | if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') { |
| 39 | - geodir_custom_field_adminhtml($field_type, $field_id, $field_action); |
|
| 39 | + geodir_custom_field_adminhtml($field_type, $field_id, $field_action); |
|
| 40 | 40 | } |
| 41 | 41 | |
| 42 | 42 | if ($field_type != '' && $field_id != '' && $field_action == 'new' && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') { |
| 43 | - geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action); |
|
| 43 | + geodir_custom_sort_field_adminhtml($field_type, $field_id, $field_action); |
|
| 44 | 44 | } |
| 45 | 45 | |
| 46 | 46 | /* ---- Delete field ---- */ |
| 47 | 47 | if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') { |
| 48 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 49 | - return; |
|
| 48 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 49 | + return; |
|
| 50 | 50 | |
| 51 | - echo geodir_custom_field_delete($field_id); |
|
| 51 | + echo geodir_custom_field_delete($field_id); |
|
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | if ($field_id != '' && $field_action == 'delete' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') { |
| 55 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 56 | - return; |
|
| 55 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 56 | + return; |
|
| 57 | 57 | |
| 58 | - echo geodir_custom_sort_field_delete($field_id); |
|
| 58 | + echo geodir_custom_sort_field_delete($field_id); |
|
| 59 | 59 | } |
| 60 | 60 | |
| 61 | 61 | /* ---- Save field ---- */ |
| 62 | 62 | if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'custom_fields') { |
| 63 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 64 | - return; |
|
| 65 | - |
|
| 66 | - foreach ($_REQUEST as $pkey => $pval) { |
|
| 67 | - if (is_array($_REQUEST[$pkey])) { |
|
| 68 | - $tags = 'skip_field'; |
|
| 69 | - } else { |
|
| 70 | - $tags = ''; |
|
| 71 | - } |
|
| 72 | - |
|
| 73 | - if ($tags != 'skip_field') { |
|
| 74 | - $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags); |
|
| 75 | - } |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - $return = geodir_custom_field_save($_REQUEST); |
|
| 79 | - |
|
| 80 | - if (is_int($return)) { |
|
| 81 | - $lastid = $return; |
|
| 82 | - geodir_custom_field_adminhtml($field_type, $lastid, 'submit'); |
|
| 83 | - } else { |
|
| 84 | - echo $return; |
|
| 85 | - } |
|
| 63 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 64 | + return; |
|
| 65 | + |
|
| 66 | + foreach ($_REQUEST as $pkey => $pval) { |
|
| 67 | + if (is_array($_REQUEST[$pkey])) { |
|
| 68 | + $tags = 'skip_field'; |
|
| 69 | + } else { |
|
| 70 | + $tags = ''; |
|
| 71 | + } |
|
| 72 | + |
|
| 73 | + if ($tags != 'skip_field') { |
|
| 74 | + $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags); |
|
| 75 | + } |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + $return = geodir_custom_field_save($_REQUEST); |
|
| 79 | + |
|
| 80 | + if (is_int($return)) { |
|
| 81 | + $lastid = $return; |
|
| 82 | + geodir_custom_field_adminhtml($field_type, $lastid, 'submit'); |
|
| 83 | + } else { |
|
| 84 | + echo $return; |
|
| 85 | + } |
|
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | /* ---- Save sort field ---- */ |
| 89 | 89 | if ($field_id != '' && $field_action == 'submit' && isset($_REQUEST['_wpnonce']) && isset($_REQUEST['create_field']) && isset($_REQUEST['manage_field_type']) && $_REQUEST['manage_field_type'] == 'sorting_options') { |
| 90 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 91 | - return; |
|
| 92 | - |
|
| 93 | - foreach ($_REQUEST as $pkey => $pval) { |
|
| 94 | - if (is_array($_REQUEST[$pkey])) { |
|
| 95 | - $tags = 'skip_field'; |
|
| 96 | - } else { |
|
| 97 | - $tags = ''; |
|
| 98 | - } |
|
| 99 | - |
|
| 100 | - if ($tags != 'skip_field') { |
|
| 101 | - $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags); |
|
| 102 | - } |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - $return = geodir_custom_sort_field_save($_REQUEST); |
|
| 106 | - |
|
| 107 | - if (is_int($return)) { |
|
| 108 | - $lastid = $return; |
|
| 109 | - $default = false; |
|
| 110 | - geodir_custom_sort_field_adminhtml($field_type, $lastid, 'submit', $default); |
|
| 111 | - } else { |
|
| 112 | - echo $return; |
|
| 113 | - } |
|
| 90 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'custom_fields_' . $field_id)) |
|
| 91 | + return; |
|
| 92 | + |
|
| 93 | + foreach ($_REQUEST as $pkey => $pval) { |
|
| 94 | + if (is_array($_REQUEST[$pkey])) { |
|
| 95 | + $tags = 'skip_field'; |
|
| 96 | + } else { |
|
| 97 | + $tags = ''; |
|
| 98 | + } |
|
| 99 | + |
|
| 100 | + if ($tags != 'skip_field') { |
|
| 101 | + $_REQUEST[$pkey] = strip_tags($_REQUEST[$pkey], $tags); |
|
| 102 | + } |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + $return = geodir_custom_sort_field_save($_REQUEST); |
|
| 106 | + |
|
| 107 | + if (is_int($return)) { |
|
| 108 | + $lastid = $return; |
|
| 109 | + $default = false; |
|
| 110 | + geodir_custom_sort_field_adminhtml($field_type, $lastid, 'submit', $default); |
|
| 111 | + } else { |
|
| 112 | + echo $return; |
|
| 113 | + } |
|
| 114 | 114 | } |
| 115 | 115 | \ No newline at end of file |
@@ -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 | } |
@@ -1327,15 +1327,15 @@ discard block |
||
| 1327 | 1327 | */ |
| 1328 | 1328 | function geodir_detail_page_tabs_list() |
| 1329 | 1329 | {
|
| 1330 | - $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1331 | - $tabs_array = geodir_detail_page_tabs_array(); |
|
| 1332 | - if (!empty($tabs_excluded)) {
|
|
| 1333 | - foreach ($tabs_excluded as $tab) {
|
|
| 1334 | - if (array_key_exists($tab, $tabs_array)) |
|
| 1335 | - unset($tabs_array[$tab]); |
|
| 1336 | - } |
|
| 1337 | - } |
|
| 1338 | - return $tabs_array; |
|
| 1330 | + $tabs_excluded = get_option('geodir_detail_page_tabs_excluded');
|
|
| 1331 | + $tabs_array = geodir_detail_page_tabs_array(); |
|
| 1332 | + if (!empty($tabs_excluded)) {
|
|
| 1333 | + foreach ($tabs_excluded as $tab) {
|
|
| 1334 | + if (array_key_exists($tab, $tabs_array)) |
|
| 1335 | + unset($tabs_array[$tab]); |
|
| 1336 | + } |
|
| 1337 | + } |
|
| 1338 | + return $tabs_array; |
|
| 1339 | 1339 | } |
| 1340 | 1340 | |
| 1341 | 1341 | |
@@ -1353,145 +1353,145 @@ discard block |
||
| 1353 | 1353 | */ |
| 1354 | 1354 | function geodir_show_detail_page_tabs() |
| 1355 | 1355 | {
|
| 1356 | - global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1356 | + global $post, $post_images, $video, $special_offers, $related_listing, $geodir_post_detail_fields; |
|
| 1357 | 1357 | |
| 1358 | - $post_id = !empty($post) && isset($post->ID) ? (int)$post->ID : 0; |
|
| 1359 | - $request_post_id = !empty($_REQUEST['p']) ? (int)$_REQUEST['p'] : 0; |
|
| 1360 | - $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 |
|
| 1358 | + $post_id = !empty($post) && isset($post->ID) ? (int)$post->ID : 0; |
|
| 1359 | + $request_post_id = !empty($_REQUEST['p']) ? (int)$_REQUEST['p'] : 0; |
|
| 1360 | + $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 |
|
| 1361 | 1361 | |
| 1362 | - if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
|
|
| 1363 | - $post = geodir_get_post_info($request_post_id); |
|
| 1364 | - setup_postdata($post); |
|
| 1365 | - } |
|
| 1362 | + if ($is_backend_preview && !$post_id > 0 && $request_post_id > 0) {
|
|
| 1363 | + $post = geodir_get_post_info($request_post_id); |
|
| 1364 | + setup_postdata($post); |
|
| 1365 | + } |
|
| 1366 | 1366 | |
| 1367 | - $geodir_post_detail_fields = geodir_show_listing_info('detail');
|
|
| 1368 | - |
|
| 1369 | - if (geodir_is_page('detail')) {
|
|
| 1370 | - $video = geodir_get_video($post->ID); |
|
| 1371 | - $special_offers = geodir_get_special_offers($post->ID); |
|
| 1372 | - $related_listing_array = array(); |
|
| 1373 | - if (get_option('geodir_add_related_listing_posttypes'))
|
|
| 1374 | - $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 1375 | - |
|
| 1376 | - $related_listing = ''; |
|
| 1377 | - if (in_array($post->post_type, $related_listing_array)) {
|
|
| 1378 | - $request = array('post_number' => get_option('geodir_related_post_count'),
|
|
| 1379 | - 'relate_to' => get_option('geodir_related_post_relate_to'),
|
|
| 1380 | - 'layout' => get_option('geodir_related_post_listing_view'),
|
|
| 1381 | - 'add_location_filter' => get_option('geodir_related_post_location_filter'),
|
|
| 1382 | - 'list_sort' => get_option('geodir_related_post_sortby'),
|
|
| 1383 | - 'character_count' => get_option('geodir_related_post_excerpt'));
|
|
| 1384 | - |
|
| 1385 | - $related_listing = geodir_related_posts_display($request); |
|
| 1386 | - } |
|
| 1367 | + $geodir_post_detail_fields = geodir_show_listing_info('detail');
|
|
| 1368 | + |
|
| 1369 | + if (geodir_is_page('detail')) {
|
|
| 1370 | + $video = geodir_get_video($post->ID); |
|
| 1371 | + $special_offers = geodir_get_special_offers($post->ID); |
|
| 1372 | + $related_listing_array = array(); |
|
| 1373 | + if (get_option('geodir_add_related_listing_posttypes'))
|
|
| 1374 | + $related_listing_array = get_option('geodir_add_related_listing_posttypes');
|
|
| 1375 | + |
|
| 1376 | + $related_listing = ''; |
|
| 1377 | + if (in_array($post->post_type, $related_listing_array)) {
|
|
| 1378 | + $request = array('post_number' => get_option('geodir_related_post_count'),
|
|
| 1379 | + 'relate_to' => get_option('geodir_related_post_relate_to'),
|
|
| 1380 | + 'layout' => get_option('geodir_related_post_listing_view'),
|
|
| 1381 | + 'add_location_filter' => get_option('geodir_related_post_location_filter'),
|
|
| 1382 | + 'list_sort' => get_option('geodir_related_post_sortby'),
|
|
| 1383 | + 'character_count' => get_option('geodir_related_post_excerpt'));
|
|
| 1384 | + |
|
| 1385 | + $related_listing = geodir_related_posts_display($request); |
|
| 1386 | + } |
|
| 1387 | 1387 | |
| 1388 | - $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
| 1389 | - $thumb_image = ''; |
|
| 1390 | - if (!empty($post_images)) {
|
|
| 1391 | - foreach ($post_images as $image) {
|
|
| 1392 | - $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
| 1393 | - $thumb_image .= '<a href="' . $image->src . '" title="'.$caption.'">'; |
|
| 1394 | - $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
| 1395 | - $thumb_image .= '</a>'; |
|
| 1396 | - } |
|
| 1397 | - } |
|
| 1388 | + $post_images = geodir_get_images($post->ID, 'thumbnail'); |
|
| 1389 | + $thumb_image = ''; |
|
| 1390 | + if (!empty($post_images)) {
|
|
| 1391 | + foreach ($post_images as $image) {
|
|
| 1392 | + $caption = (!empty($image->caption)) ? $image->caption : ''; |
|
| 1393 | + $thumb_image .= '<a href="' . $image->src . '" title="'.$caption.'">'; |
|
| 1394 | + $thumb_image .= geodir_show_image($image, 'thumbnail', true, false); |
|
| 1395 | + $thumb_image .= '</a>'; |
|
| 1396 | + } |
|
| 1397 | + } |
|
| 1398 | 1398 | |
| 1399 | - $map_args = array(); |
|
| 1400 | - $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
|
| 1401 | - $map_args['width'] = '600'; |
|
| 1402 | - $map_args['height'] = '300'; |
|
| 1403 | - if ($post->post_mapzoom) {
|
|
| 1404 | - $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
| 1405 | - } |
|
| 1406 | - $map_args['autozoom'] = false; |
|
| 1407 | - $map_args['child_collapse'] = '0'; |
|
| 1408 | - $map_args['enable_cat_filters'] = false; |
|
| 1409 | - $map_args['enable_text_search'] = false; |
|
| 1410 | - $map_args['enable_post_type_filters'] = false; |
|
| 1411 | - $map_args['enable_location_filters'] = false; |
|
| 1412 | - $map_args['enable_jason_on_load'] = true; |
|
| 1413 | - $map_args['enable_map_direction'] = true; |
|
| 1414 | - $map_args['map_class_name'] = 'geodir-map-detail-page'; |
|
| 1415 | - $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
| 1416 | - } else if (geodir_is_page('preview')) {
|
|
| 1417 | - $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
| 1418 | - $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
| 1419 | - |
|
| 1420 | - if (isset($post->post_images)) |
|
| 1421 | - $post->post_images = trim($post->post_images, ","); |
|
| 1422 | - |
|
| 1423 | - if (isset($post->post_images) && !empty($post->post_images)) |
|
| 1424 | - $post_images = explode(",", $post->post_images);
|
|
| 1425 | - |
|
| 1426 | - $thumb_image = ''; |
|
| 1427 | - if (!empty($post_images)) {
|
|
| 1428 | - foreach ($post_images as $image) {
|
|
| 1429 | - if ($image != '') {
|
|
| 1430 | - $thumb_image .= '<a href="' . $image . '">'; |
|
| 1431 | - $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
|
|
| 1432 | - $thumb_image .= '</a>'; |
|
| 1433 | - } |
|
| 1434 | - } |
|
| 1435 | - } |
|
| 1399 | + $map_args = array(); |
|
| 1400 | + $map_args['map_canvas_name'] = 'detail_page_map_canvas'; |
|
| 1401 | + $map_args['width'] = '600'; |
|
| 1402 | + $map_args['height'] = '300'; |
|
| 1403 | + if ($post->post_mapzoom) {
|
|
| 1404 | + $map_args['zoom'] = '' . $post->post_mapzoom . ''; |
|
| 1405 | + } |
|
| 1406 | + $map_args['autozoom'] = false; |
|
| 1407 | + $map_args['child_collapse'] = '0'; |
|
| 1408 | + $map_args['enable_cat_filters'] = false; |
|
| 1409 | + $map_args['enable_text_search'] = false; |
|
| 1410 | + $map_args['enable_post_type_filters'] = false; |
|
| 1411 | + $map_args['enable_location_filters'] = false; |
|
| 1412 | + $map_args['enable_jason_on_load'] = true; |
|
| 1413 | + $map_args['enable_map_direction'] = true; |
|
| 1414 | + $map_args['map_class_name'] = 'geodir-map-detail-page'; |
|
| 1415 | + $map_args['maptype'] = (!empty($post->post_mapview)) ? $post->post_mapview : 'ROADMAP'; |
|
| 1416 | + } else if (geodir_is_page('preview')) {
|
|
| 1417 | + $video = isset($post->geodir_video) ? $post->geodir_video : ''; |
|
| 1418 | + $special_offers = isset($post->geodir_special_offers) ? $post->geodir_special_offers : ''; |
|
| 1419 | + |
|
| 1420 | + if (isset($post->post_images)) |
|
| 1421 | + $post->post_images = trim($post->post_images, ","); |
|
| 1422 | + |
|
| 1423 | + if (isset($post->post_images) && !empty($post->post_images)) |
|
| 1424 | + $post_images = explode(",", $post->post_images);
|
|
| 1425 | + |
|
| 1426 | + $thumb_image = ''; |
|
| 1427 | + if (!empty($post_images)) {
|
|
| 1428 | + foreach ($post_images as $image) {
|
|
| 1429 | + if ($image != '') {
|
|
| 1430 | + $thumb_image .= '<a href="' . $image . '">'; |
|
| 1431 | + $thumb_image .= geodir_show_image(array('src' => $image), 'thumbnail', true, false);
|
|
| 1432 | + $thumb_image .= '</a>'; |
|
| 1433 | + } |
|
| 1434 | + } |
|
| 1435 | + } |
|
| 1436 | 1436 | |
| 1437 | - global $map_jason; |
|
| 1438 | - $map_jason[] = $post->marker_json; |
|
| 1437 | + global $map_jason; |
|
| 1438 | + $map_jason[] = $post->marker_json; |
|
| 1439 | 1439 | |
| 1440 | - $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
| 1441 | - $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
| 1442 | - $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
| 1443 | - $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
| 1444 | - if (!$mapzoom) {
|
|
| 1445 | - $mapzoom = 12; |
|
| 1446 | - } |
|
| 1440 | + $address_latitude = isset($post->post_latitude) ? $post->post_latitude : ''; |
|
| 1441 | + $address_longitude = isset($post->post_longitude) ? $post->post_longitude : ''; |
|
| 1442 | + $mapview = isset($post->post_mapview) ? $post->post_mapview : ''; |
|
| 1443 | + $mapzoom = isset($post->post_mapzoom) ? $post->post_mapzoom : ''; |
|
| 1444 | + if (!$mapzoom) {
|
|
| 1445 | + $mapzoom = 12; |
|
| 1446 | + } |
|
| 1447 | 1447 | |
| 1448 | - $map_args = array(); |
|
| 1449 | - $map_args['map_canvas_name'] = 'preview_map_canvas'; |
|
| 1450 | - $map_args['width'] = '950'; |
|
| 1451 | - $map_args['height'] = '300'; |
|
| 1452 | - $map_args['child_collapse'] = '0'; |
|
| 1453 | - $map_args['maptype'] = $mapview; |
|
| 1454 | - $map_args['autozoom'] = false; |
|
| 1455 | - $map_args['zoom'] = "$mapzoom"; |
|
| 1456 | - $map_args['latitude'] = $address_latitude; |
|
| 1457 | - $map_args['longitude'] = $address_longitude; |
|
| 1458 | - $map_args['enable_cat_filters'] = false; |
|
| 1459 | - $map_args['enable_text_search'] = false; |
|
| 1460 | - $map_args['enable_post_type_filters'] = false; |
|
| 1461 | - $map_args['enable_location_filters'] = false; |
|
| 1462 | - $map_args['enable_jason_on_load'] = true; |
|
| 1463 | - $map_args['enable_map_direction'] = true; |
|
| 1464 | - $map_args['map_class_name'] = 'geodir-map-preview-page'; |
|
| 1465 | - } |
|
| 1448 | + $map_args = array(); |
|
| 1449 | + $map_args['map_canvas_name'] = 'preview_map_canvas'; |
|
| 1450 | + $map_args['width'] = '950'; |
|
| 1451 | + $map_args['height'] = '300'; |
|
| 1452 | + $map_args['child_collapse'] = '0'; |
|
| 1453 | + $map_args['maptype'] = $mapview; |
|
| 1454 | + $map_args['autozoom'] = false; |
|
| 1455 | + $map_args['zoom'] = "$mapzoom"; |
|
| 1456 | + $map_args['latitude'] = $address_latitude; |
|
| 1457 | + $map_args['longitude'] = $address_longitude; |
|
| 1458 | + $map_args['enable_cat_filters'] = false; |
|
| 1459 | + $map_args['enable_text_search'] = false; |
|
| 1460 | + $map_args['enable_post_type_filters'] = false; |
|
| 1461 | + $map_args['enable_location_filters'] = false; |
|
| 1462 | + $map_args['enable_jason_on_load'] = true; |
|
| 1463 | + $map_args['enable_map_direction'] = true; |
|
| 1464 | + $map_args['map_class_name'] = 'geodir-map-preview-page'; |
|
| 1465 | + } |
|
| 1466 | 1466 | |
| 1467 | - $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
| 1467 | + $arr_detail_page_tabs = geodir_detail_page_tabs_list();// get this sooner so we can get the active tab for the user |
|
| 1468 | 1468 | |
| 1469 | - $active_tab = ''; |
|
| 1470 | - $active_tab_name = ''; |
|
| 1471 | - $default_tab = ''; |
|
| 1472 | - $default_tab_name = ''; |
|
| 1473 | - foreach($arr_detail_page_tabs as $tab_index => $tabs){
|
|
| 1474 | - if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
|
|
| 1475 | - $active_tab = $tab_index; |
|
| 1476 | - $active_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1477 | - } |
|
| 1469 | + $active_tab = ''; |
|
| 1470 | + $active_tab_name = ''; |
|
| 1471 | + $default_tab = ''; |
|
| 1472 | + $default_tab_name = ''; |
|
| 1473 | + foreach($arr_detail_page_tabs as $tab_index => $tabs){
|
|
| 1474 | + if (isset($tabs['is_active_tab']) && $tabs['is_active_tab'] && !empty($tabs['is_display']) && isset($tabs['heading_text']) && $tabs['heading_text']) {
|
|
| 1475 | + $active_tab = $tab_index; |
|
| 1476 | + $active_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1477 | + } |
|
| 1478 | 1478 | |
| 1479 | - if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
|
|
| 1480 | - $default_tab = $tab_index; |
|
| 1481 | - $default_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1482 | - } |
|
| 1483 | - } |
|
| 1479 | + if ($default_tab === '' && !empty($tabs['is_display']) && !empty($tabs['heading_text'])) {
|
|
| 1480 | + $default_tab = $tab_index; |
|
| 1481 | + $default_tab_name = __($tabs['heading_text'], 'geodirectory'); |
|
| 1482 | + } |
|
| 1483 | + } |
|
| 1484 | 1484 | |
| 1485 | - if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
|
|
| 1486 | - if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
|
|
| 1487 | - $arr_detail_page_tabs[$active_tab]['is_active_tab'] = false; |
|
| 1488 | - } |
|
| 1485 | + if ($active_tab === '' && $default_tab !== '') { // Make first tab acs a active tab if not any tab is active.
|
|
| 1486 | + if (isset($arr_detail_page_tabs[$active_tab]) && isset($arr_detail_page_tabs[$active_tab]['is_active_tab'])) {
|
|
| 1487 | + $arr_detail_page_tabs[$active_tab]['is_active_tab'] = false; |
|
| 1488 | + } |
|
| 1489 | 1489 | |
| 1490 | - $arr_detail_page_tabs[$default_tab]['is_active_tab'] = true; |
|
| 1491 | - $active_tab = $default_tab; |
|
| 1492 | - $active_tab_name = $default_tab_name; |
|
| 1493 | - } |
|
| 1494 | - ?> |
|
| 1490 | + $arr_detail_page_tabs[$default_tab]['is_active_tab'] = true; |
|
| 1491 | + $active_tab = $default_tab; |
|
| 1492 | + $active_tab_name = $default_tab_name; |
|
| 1493 | + } |
|
| 1494 | + ?> |
|
| 1495 | 1495 | <div class="geodir-tabs" id="gd-tabs" style="position:relative;"> |
| 1496 | 1496 | <div id="geodir-tab-mobile-menu" > |
| 1497 | 1497 | <i class="fa fa-bars"></i> |
@@ -1500,147 +1500,147 @@ discard block |
||
| 1500 | 1500 | </div> |
| 1501 | 1501 | <dl class="geodir-tab-head"> |
| 1502 | 1502 | <?php |
| 1503 | - /** |
|
| 1504 | - * Called before the details page tab list headings, inside the `dl` tag. |
|
| 1505 | - * |
|
| 1506 | - * @since 1.0.0 |
|
| 1507 | - * @see 'geodir_after_tab_list' |
|
| 1508 | - */ |
|
| 1509 | - do_action('geodir_before_tab_list'); ?>
|
|
| 1503 | + /** |
|
| 1504 | + * Called before the details page tab list headings, inside the `dl` tag. |
|
| 1505 | + * |
|
| 1506 | + * @since 1.0.0 |
|
| 1507 | + * @see 'geodir_after_tab_list' |
|
| 1508 | + */ |
|
| 1509 | + do_action('geodir_before_tab_list'); ?>
|
|
| 1510 | 1510 | <?php |
| 1511 | - foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
|
|
| 1512 | - if ($detail_page_tab['is_display']) {
|
|
| 1513 | - ?> |
|
| 1511 | + foreach ($arr_detail_page_tabs as $tab_index => $detail_page_tab) {
|
|
| 1512 | + if ($detail_page_tab['is_display']) {
|
|
| 1513 | + ?> |
|
| 1514 | 1514 | <dt></dt> <!-- added to comply with validation --> |
| 1515 | 1515 | <dd <?php if ($detail_page_tab['is_active_tab']){ ?>class="geodir-tab-active"<?php }?> ><a data-tab="#<?php echo $tab_index;?>" data-status="enable"><?php _e($detail_page_tab['heading_text'],'geodirectory');?></a>
|
| 1516 | 1516 | </dd> |
| 1517 | 1517 | <?php |
| 1518 | - ob_start() // start tab content buffering |
|
| 1519 | - ?> |
|
| 1518 | + ob_start() // start tab content buffering |
|
| 1519 | + ?> |
|
| 1520 | 1520 | <li id="<?php echo $tab_index;?>Tab"> |
| 1521 | 1521 | <div id="<?php echo $tab_index;?>" class="hash-offset"></div> |
| 1522 | 1522 | <?php |
| 1523 | - /** |
|
| 1524 | - * Called before the details tab content is output per tab. |
|
| 1525 | - * |
|
| 1526 | - * @since 1.0.0 |
|
| 1527 | - * @param string $tab_index The tab name ID. |
|
| 1528 | - */ |
|
| 1529 | - do_action('geodir_before_tab_content', $tab_index);
|
|
| 1530 | - |
|
| 1531 | - /** |
|
| 1532 | - * Called before the details tab content is output per tab. |
|
| 1533 | - * |
|
| 1534 | - * Uses dynamic hook name: geodir_before_$tab_index_tab_content |
|
| 1535 | - * |
|
| 1536 | - * @since 1.0.0 |
|
| 1537 | - * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
|
| 1538 | - */ |
|
| 1539 | - do_action('geodir_before_' . $tab_index . '_tab_content');
|
|
| 1540 | - /// write a code to generate content of each tab |
|
| 1541 | - switch ($tab_index) {
|
|
| 1542 | - case 'post_profile': |
|
| 1543 | - /** |
|
| 1544 | - * Called before the listing description content on the details page tab. |
|
| 1545 | - * |
|
| 1546 | - * @since 1.0.0 |
|
| 1547 | - */ |
|
| 1548 | - do_action('geodir_before_description_on_listing_detail');
|
|
| 1549 | - if (geodir_is_page('detail')) {
|
|
| 1550 | - the_content(); |
|
| 1551 | - } else {
|
|
| 1552 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1553 | - echo apply_filters('the_content', stripslashes($post->post_desc));
|
|
| 1554 | - } |
|
| 1555 | - |
|
| 1556 | - /** |
|
| 1557 | - * Called after the listing description content on the details page tab. |
|
| 1558 | - * |
|
| 1559 | - * @since 1.0.0 |
|
| 1560 | - */ |
|
| 1561 | - do_action('geodir_after_description_on_listing_detail');
|
|
| 1562 | - break; |
|
| 1563 | - case 'post_info': |
|
| 1564 | - echo $geodir_post_detail_fields; |
|
| 1565 | - break; |
|
| 1566 | - case 'post_images': |
|
| 1567 | - echo $thumb_image; |
|
| 1568 | - break; |
|
| 1569 | - case 'post_video': |
|
| 1570 | - /** This action is documented in geodirectory_template_actions.php */ |
|
| 1571 | - echo apply_filters('the_content', stripslashes($video));// we apply the_content filter so oembed works also;
|
|
| 1572 | - break; |
|
| 1573 | - case 'special_offers': |
|
| 1574 | - echo wpautop(stripslashes($special_offers)); |
|
| 1575 | - |
|
| 1576 | - break; |
|
| 1577 | - case 'post_map': |
|
| 1578 | - geodir_draw_map($map_args); |
|
| 1579 | - break; |
|
| 1580 | - case 'reviews': |
|
| 1581 | - comments_template(); |
|
| 1582 | - break; |
|
| 1583 | - case 'related_listing': |
|
| 1584 | - echo $related_listing; |
|
| 1585 | - break; |
|
| 1586 | - default: {
|
|
| 1587 | - 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'])) {
|
|
| 1588 | - echo $detail_page_tab['tab_content']; |
|
| 1589 | - } |
|
| 1590 | - } |
|
| 1591 | - break; |
|
| 1592 | - } |
|
| 1593 | - |
|
| 1594 | - /** |
|
| 1595 | - * Called after the details tab content is output per tab. |
|
| 1596 | - * |
|
| 1597 | - * @since 1.0.0 |
|
| 1598 | - */ |
|
| 1599 | - do_action('geodir_after_tab_content', $tab_index);
|
|
| 1600 | - |
|
| 1601 | - /** |
|
| 1602 | - * Called after the details tab content is output per tab. |
|
| 1603 | - * |
|
| 1604 | - * Uses dynamic hook name: geodir_after_$tab_index_tab_content |
|
| 1605 | - * |
|
| 1606 | - * @since 1.0.0 |
|
| 1607 | - * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
|
| 1608 | - */ |
|
| 1609 | - do_action('geodir_after_' . $tab_index . '_tab_content');
|
|
| 1610 | - ?> </li> |
|
| 1523 | + /** |
|
| 1524 | + * Called before the details tab content is output per tab. |
|
| 1525 | + * |
|
| 1526 | + * @since 1.0.0 |
|
| 1527 | + * @param string $tab_index The tab name ID. |
|
| 1528 | + */ |
|
| 1529 | + do_action('geodir_before_tab_content', $tab_index);
|
|
| 1530 | + |
|
| 1531 | + /** |
|
| 1532 | + * Called before the details tab content is output per tab. |
|
| 1533 | + * |
|
| 1534 | + * Uses dynamic hook name: geodir_before_$tab_index_tab_content |
|
| 1535 | + * |
|
| 1536 | + * @since 1.0.0 |
|
| 1537 | + * @todo do we need this if we have the hook above? 'geodir_before_tab_content' |
|
| 1538 | + */ |
|
| 1539 | + do_action('geodir_before_' . $tab_index . '_tab_content');
|
|
| 1540 | + /// write a code to generate content of each tab |
|
| 1541 | + switch ($tab_index) {
|
|
| 1542 | + case 'post_profile': |
|
| 1543 | + /** |
|
| 1544 | + * Called before the listing description content on the details page tab. |
|
| 1545 | + * |
|
| 1546 | + * @since 1.0.0 |
|
| 1547 | + */ |
|
| 1548 | + do_action('geodir_before_description_on_listing_detail');
|
|
| 1549 | + if (geodir_is_page('detail')) {
|
|
| 1550 | + the_content(); |
|
| 1551 | + } else {
|
|
| 1552 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1553 | + echo apply_filters('the_content', stripslashes($post->post_desc));
|
|
| 1554 | + } |
|
| 1555 | + |
|
| 1556 | + /** |
|
| 1557 | + * Called after the listing description content on the details page tab. |
|
| 1558 | + * |
|
| 1559 | + * @since 1.0.0 |
|
| 1560 | + */ |
|
| 1561 | + do_action('geodir_after_description_on_listing_detail');
|
|
| 1562 | + break; |
|
| 1563 | + case 'post_info': |
|
| 1564 | + echo $geodir_post_detail_fields; |
|
| 1565 | + break; |
|
| 1566 | + case 'post_images': |
|
| 1567 | + echo $thumb_image; |
|
| 1568 | + break; |
|
| 1569 | + case 'post_video': |
|
| 1570 | + /** This action is documented in geodirectory_template_actions.php */ |
|
| 1571 | + echo apply_filters('the_content', stripslashes($video));// we apply the_content filter so oembed works also;
|
|
| 1572 | + break; |
|
| 1573 | + case 'special_offers': |
|
| 1574 | + echo wpautop(stripslashes($special_offers)); |
|
| 1575 | + |
|
| 1576 | + break; |
|
| 1577 | + case 'post_map': |
|
| 1578 | + geodir_draw_map($map_args); |
|
| 1579 | + break; |
|
| 1580 | + case 'reviews': |
|
| 1581 | + comments_template(); |
|
| 1582 | + break; |
|
| 1583 | + case 'related_listing': |
|
| 1584 | + echo $related_listing; |
|
| 1585 | + break; |
|
| 1586 | + default: {
|
|
| 1587 | + 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'])) {
|
|
| 1588 | + echo $detail_page_tab['tab_content']; |
|
| 1589 | + } |
|
| 1590 | + } |
|
| 1591 | + break; |
|
| 1592 | + } |
|
| 1593 | + |
|
| 1594 | + /** |
|
| 1595 | + * Called after the details tab content is output per tab. |
|
| 1596 | + * |
|
| 1597 | + * @since 1.0.0 |
|
| 1598 | + */ |
|
| 1599 | + do_action('geodir_after_tab_content', $tab_index);
|
|
| 1600 | + |
|
| 1601 | + /** |
|
| 1602 | + * Called after the details tab content is output per tab. |
|
| 1603 | + * |
|
| 1604 | + * Uses dynamic hook name: geodir_after_$tab_index_tab_content |
|
| 1605 | + * |
|
| 1606 | + * @since 1.0.0 |
|
| 1607 | + * @todo do we need this if we have the hook above? 'geodir_after_tab_content' |
|
| 1608 | + */ |
|
| 1609 | + do_action('geodir_after_' . $tab_index . '_tab_content');
|
|
| 1610 | + ?> </li> |
|
| 1611 | 1611 | <?php |
| 1612 | - /** |
|
| 1613 | - * Filter the current tab content. |
|
| 1614 | - * |
|
| 1615 | - * @since 1.0.0 |
|
| 1616 | - */ |
|
| 1617 | - $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean());
|
|
| 1618 | - } // end of if for is_display |
|
| 1619 | - }// end of foreach |
|
| 1620 | - |
|
| 1621 | - /** |
|
| 1622 | - * Called after the details page tab list headings, inside the `dl` tag. |
|
| 1623 | - * |
|
| 1624 | - * @since 1.0.0 |
|
| 1625 | - * @see 'geodir_before_tab_list' |
|
| 1626 | - */ |
|
| 1627 | - do_action('geodir_after_tab_list');
|
|
| 1628 | - ?> |
|
| 1612 | + /** |
|
| 1613 | + * Filter the current tab content. |
|
| 1614 | + * |
|
| 1615 | + * @since 1.0.0 |
|
| 1616 | + */ |
|
| 1617 | + $arr_detail_page_tabs[$tab_index]['tab_content'] = apply_filters("geodir_modify_" . $detail_page_tab['tab_content'] . "_tab_content", ob_get_clean());
|
|
| 1618 | + } // end of if for is_display |
|
| 1619 | + }// end of foreach |
|
| 1620 | + |
|
| 1621 | + /** |
|
| 1622 | + * Called after the details page tab list headings, inside the `dl` tag. |
|
| 1623 | + * |
|
| 1624 | + * @since 1.0.0 |
|
| 1625 | + * @see 'geodir_before_tab_list' |
|
| 1626 | + */ |
|
| 1627 | + do_action('geodir_after_tab_list');
|
|
| 1628 | + ?> |
|
| 1629 | 1629 | </dl> |
| 1630 | 1630 | <ul class="geodir-tabs-content entry-content" style="position:relative;"> |
| 1631 | 1631 | <?php |
| 1632 | - foreach ($arr_detail_page_tabs as $detail_page_tab) {
|
|
| 1633 | - if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
|
|
| 1634 | - echo $detail_page_tab['tab_content']; |
|
| 1635 | - }// end of if |
|
| 1636 | - }// end of foreach |
|
| 1637 | - |
|
| 1638 | - /** |
|
| 1639 | - * Called after all the tab content is output in `li` tags, called before the closing `ul` tag. |
|
| 1640 | - * |
|
| 1641 | - * @since 1.0.0 |
|
| 1642 | - */ |
|
| 1643 | - do_action('geodir_add_tab_content'); ?>
|
|
| 1632 | + foreach ($arr_detail_page_tabs as $detail_page_tab) {
|
|
| 1633 | + if ($detail_page_tab['is_display'] && !empty($detail_page_tab['tab_content'])) {
|
|
| 1634 | + echo $detail_page_tab['tab_content']; |
|
| 1635 | + }// end of if |
|
| 1636 | + }// end of foreach |
|
| 1637 | + |
|
| 1638 | + /** |
|
| 1639 | + * Called after all the tab content is output in `li` tags, called before the closing `ul` tag. |
|
| 1640 | + * |
|
| 1641 | + * @since 1.0.0 |
|
| 1642 | + */ |
|
| 1643 | + do_action('geodir_add_tab_content'); ?>
|
|
| 1644 | 1644 | </ul> |
| 1645 | 1645 | <!--gd-tabs-content ul end--> |
| 1646 | 1646 | </div> |
@@ -1677,127 +1677,127 @@ discard block |
||
| 1677 | 1677 | */ |
| 1678 | 1678 | function geodir_exif($file) |
| 1679 | 1679 | {
|
| 1680 | - if (empty($file) || !is_array($file)) {
|
|
| 1681 | - return $file; |
|
| 1682 | - } |
|
| 1680 | + if (empty($file) || !is_array($file)) {
|
|
| 1681 | + return $file; |
|
| 1682 | + } |
|
| 1683 | 1683 | |
| 1684 | - $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
| 1685 | - if (!($file_path && file_exists($file_path))) {
|
|
| 1686 | - return $file; |
|
| 1687 | - } |
|
| 1688 | - $file['file'] = $file_path; |
|
| 1684 | + $file_path = !empty($file['tmp_name']) ? sanitize_text_field($file['tmp_name']) : ''; |
|
| 1685 | + if (!($file_path && file_exists($file_path))) {
|
|
| 1686 | + return $file; |
|
| 1687 | + } |
|
| 1688 | + $file['file'] = $file_path; |
|
| 1689 | 1689 | |
| 1690 | - if (!file_is_valid_image($file_path)) {
|
|
| 1691 | - return $file; // Bail if file is not an image. |
|
| 1692 | - } |
|
| 1690 | + if (!file_is_valid_image($file_path)) {
|
|
| 1691 | + return $file; // Bail if file is not an image. |
|
| 1692 | + } |
|
| 1693 | 1693 | |
| 1694 | - if (!function_exists('wp_get_image_editor')) {
|
|
| 1695 | - return $file; |
|
| 1696 | - } |
|
| 1694 | + if (!function_exists('wp_get_image_editor')) {
|
|
| 1695 | + return $file; |
|
| 1696 | + } |
|
| 1697 | 1697 | |
| 1698 | - $mime_type = $file['type']; |
|
| 1699 | - $exif = array(); |
|
| 1700 | - if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
|
|
| 1701 | - try {
|
|
| 1702 | - $exif = exif_read_data($file_path); |
|
| 1703 | - } catch(Exception $e) {
|
|
| 1704 | - $exif = array(); |
|
| 1705 | - } |
|
| 1706 | - } |
|
| 1698 | + $mime_type = $file['type']; |
|
| 1699 | + $exif = array(); |
|
| 1700 | + if ($mime_type == 'image/jpeg' && function_exists('exif_read_data')) {
|
|
| 1701 | + try {
|
|
| 1702 | + $exif = exif_read_data($file_path); |
|
| 1703 | + } catch(Exception $e) {
|
|
| 1704 | + $exif = array(); |
|
| 1705 | + } |
|
| 1706 | + } |
|
| 1707 | 1707 | |
| 1708 | - $rotate = false; |
|
| 1709 | - $flip = false; |
|
| 1710 | - $modify = false; |
|
| 1711 | - $orientation = 0; |
|
| 1712 | - if (!empty($exif) && isset($exif['Orientation'])) {
|
|
| 1713 | - switch ((int)$exif['Orientation']) {
|
|
| 1714 | - case 1: |
|
| 1715 | - // do nothing |
|
| 1716 | - break; |
|
| 1717 | - case 2: |
|
| 1718 | - $flip = array(false, true); |
|
| 1719 | - $modify = true; |
|
| 1720 | - break; |
|
| 1721 | - case 3: |
|
| 1722 | - $orientation = -180; |
|
| 1723 | - $rotate = true; |
|
| 1724 | - $modify = true; |
|
| 1725 | - break; |
|
| 1726 | - case 4: |
|
| 1727 | - $flip = array(true, false); |
|
| 1728 | - $modify = true; |
|
| 1729 | - break; |
|
| 1730 | - case 5: |
|
| 1731 | - $orientation = -90; |
|
| 1732 | - $rotate = true; |
|
| 1733 | - $flip = array(false, true); |
|
| 1734 | - $modify = true; |
|
| 1735 | - break; |
|
| 1736 | - case 6: |
|
| 1737 | - $orientation = -90; |
|
| 1738 | - $rotate = true; |
|
| 1739 | - $modify = true; |
|
| 1740 | - break; |
|
| 1741 | - case 7: |
|
| 1742 | - $orientation = -270; |
|
| 1743 | - $rotate = true; |
|
| 1744 | - $flip = array(false, true); |
|
| 1745 | - $modify = true; |
|
| 1746 | - break; |
|
| 1747 | - case 8: |
|
| 1748 | - case 9: |
|
| 1749 | - $orientation = -270; |
|
| 1750 | - $rotate = true; |
|
| 1751 | - $modify = true; |
|
| 1752 | - break; |
|
| 1753 | - default: |
|
| 1754 | - $orientation = 0; |
|
| 1755 | - $rotate = true; |
|
| 1756 | - $modify = true; |
|
| 1757 | - break; |
|
| 1758 | - } |
|
| 1759 | - } |
|
| 1708 | + $rotate = false; |
|
| 1709 | + $flip = false; |
|
| 1710 | + $modify = false; |
|
| 1711 | + $orientation = 0; |
|
| 1712 | + if (!empty($exif) && isset($exif['Orientation'])) {
|
|
| 1713 | + switch ((int)$exif['Orientation']) {
|
|
| 1714 | + case 1: |
|
| 1715 | + // do nothing |
|
| 1716 | + break; |
|
| 1717 | + case 2: |
|
| 1718 | + $flip = array(false, true); |
|
| 1719 | + $modify = true; |
|
| 1720 | + break; |
|
| 1721 | + case 3: |
|
| 1722 | + $orientation = -180; |
|
| 1723 | + $rotate = true; |
|
| 1724 | + $modify = true; |
|
| 1725 | + break; |
|
| 1726 | + case 4: |
|
| 1727 | + $flip = array(true, false); |
|
| 1728 | + $modify = true; |
|
| 1729 | + break; |
|
| 1730 | + case 5: |
|
| 1731 | + $orientation = -90; |
|
| 1732 | + $rotate = true; |
|
| 1733 | + $flip = array(false, true); |
|
| 1734 | + $modify = true; |
|
| 1735 | + break; |
|
| 1736 | + case 6: |
|
| 1737 | + $orientation = -90; |
|
| 1738 | + $rotate = true; |
|
| 1739 | + $modify = true; |
|
| 1740 | + break; |
|
| 1741 | + case 7: |
|
| 1742 | + $orientation = -270; |
|
| 1743 | + $rotate = true; |
|
| 1744 | + $flip = array(false, true); |
|
| 1745 | + $modify = true; |
|
| 1746 | + break; |
|
| 1747 | + case 8: |
|
| 1748 | + case 9: |
|
| 1749 | + $orientation = -270; |
|
| 1750 | + $rotate = true; |
|
| 1751 | + $modify = true; |
|
| 1752 | + break; |
|
| 1753 | + default: |
|
| 1754 | + $orientation = 0; |
|
| 1755 | + $rotate = true; |
|
| 1756 | + $modify = true; |
|
| 1757 | + break; |
|
| 1758 | + } |
|
| 1759 | + } |
|
| 1760 | 1760 | |
| 1761 | - $quality = null; |
|
| 1762 | - /** |
|
| 1763 | - * Filter the image quality. |
|
| 1764 | - * |
|
| 1765 | - * @since 1.5.7 |
|
| 1766 | - * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
|
| 1767 | - * @param string $quality Image mime type. |
|
| 1768 | - */ |
|
| 1769 | - $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
|
|
| 1770 | - if ($quality !== null) {
|
|
| 1771 | - $modify = true; |
|
| 1772 | - } |
|
| 1761 | + $quality = null; |
|
| 1762 | + /** |
|
| 1763 | + * Filter the image quality. |
|
| 1764 | + * |
|
| 1765 | + * @since 1.5.7 |
|
| 1766 | + * @param int|null $quality Image Compression quality between 1-100% scale. Default null. |
|
| 1767 | + * @param string $quality Image mime type. |
|
| 1768 | + */ |
|
| 1769 | + $quality = apply_filters('geodir_image_upload_set_quality', $quality, $mime_type);
|
|
| 1770 | + if ($quality !== null) {
|
|
| 1771 | + $modify = true; |
|
| 1772 | + } |
|
| 1773 | 1773 | |
| 1774 | - if (!$modify) {
|
|
| 1775 | - return $file; // no change |
|
| 1776 | - } |
|
| 1774 | + if (!$modify) {
|
|
| 1775 | + return $file; // no change |
|
| 1776 | + } |
|
| 1777 | 1777 | |
| 1778 | - $image = wp_get_image_editor($file_path); |
|
| 1779 | - if (!is_wp_error($image)) {
|
|
| 1780 | - if ($rotate) {
|
|
| 1781 | - $image->rotate($orientation); |
|
| 1782 | - } |
|
| 1778 | + $image = wp_get_image_editor($file_path); |
|
| 1779 | + if (!is_wp_error($image)) {
|
|
| 1780 | + if ($rotate) {
|
|
| 1781 | + $image->rotate($orientation); |
|
| 1782 | + } |
|
| 1783 | 1783 | |
| 1784 | - if (!empty($flip)) {
|
|
| 1785 | - $image->flip($flip[0], $flip[1]); |
|
| 1786 | - } |
|
| 1784 | + if (!empty($flip)) {
|
|
| 1785 | + $image->flip($flip[0], $flip[1]); |
|
| 1786 | + } |
|
| 1787 | 1787 | |
| 1788 | - if ($quality !== null) {
|
|
| 1789 | - $image->set_quality((int)$quality); |
|
| 1790 | - } |
|
| 1788 | + if ($quality !== null) {
|
|
| 1789 | + $image->set_quality((int)$quality); |
|
| 1790 | + } |
|
| 1791 | 1791 | |
| 1792 | - $result = $image->save($file_path); |
|
| 1793 | - if (!is_wp_error($result)) {
|
|
| 1794 | - $file['file'] = $result['path']; |
|
| 1795 | - $file['tmp_name'] = $result['path']; |
|
| 1796 | - } |
|
| 1797 | - } |
|
| 1792 | + $result = $image->save($file_path); |
|
| 1793 | + if (!is_wp_error($result)) {
|
|
| 1794 | + $file['file'] = $result['path']; |
|
| 1795 | + $file['tmp_name'] = $result['path']; |
|
| 1796 | + } |
|
| 1797 | + } |
|
| 1798 | 1798 | |
| 1799 | - // The image orientation is fixed, pass it back for further processing |
|
| 1800 | - return $file; |
|
| 1799 | + // The image orientation is fixed, pass it back for further processing |
|
| 1800 | + return $file; |
|
| 1801 | 1801 | } |
| 1802 | 1802 | |
| 1803 | 1803 | /** |
@@ -1816,138 +1816,138 @@ discard block |
||
| 1816 | 1816 | * @return string Returns the recent reviews html. |
| 1817 | 1817 | */ |
| 1818 | 1818 | function geodir_get_recent_reviews($g_size = 60, $no_comments = 10, $comment_lenth = 60, $show_pass_post = false) {
|
| 1819 | - global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session; |
|
| 1820 | - $tablecomments = $wpdb->comments; |
|
| 1821 | - $tableposts = $wpdb->posts; |
|
| 1822 | - |
|
| 1823 | - $comments_echo = ''; |
|
| 1824 | - $city_filter = ''; |
|
| 1825 | - $region_filter = ''; |
|
| 1826 | - $country_filter = ''; |
|
| 1827 | - |
|
| 1828 | - if ($gd_session->get('gd_multi_location')) {
|
|
| 1829 | - if ($gd_ses_country = $gd_session->get('gd_country')) {
|
|
| 1830 | - $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
|
|
| 1831 | - } |
|
| 1819 | + global $wpdb, $tablecomments, $tableposts, $rating_table_name, $gd_session; |
|
| 1820 | + $tablecomments = $wpdb->comments; |
|
| 1821 | + $tableposts = $wpdb->posts; |
|
| 1822 | + |
|
| 1823 | + $comments_echo = ''; |
|
| 1824 | + $city_filter = ''; |
|
| 1825 | + $region_filter = ''; |
|
| 1826 | + $country_filter = ''; |
|
| 1827 | + |
|
| 1828 | + if ($gd_session->get('gd_multi_location')) {
|
|
| 1829 | + if ($gd_ses_country = $gd_session->get('gd_country')) {
|
|
| 1830 | + $country_filter = $wpdb->prepare(" AND r.post_country=%s ", str_replace("-", " ", $gd_ses_country));
|
|
| 1831 | + } |
|
| 1832 | 1832 | |
| 1833 | - if ($gd_ses_region = $gd_session->get('gd_region')) {
|
|
| 1834 | - $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
|
|
| 1835 | - } |
|
| 1833 | + if ($gd_ses_region = $gd_session->get('gd_region')) {
|
|
| 1834 | + $region_filter = $wpdb->prepare(" AND r.post_region=%s ", str_replace("-", " ", $gd_ses_region));
|
|
| 1835 | + } |
|
| 1836 | 1836 | |
| 1837 | - if ($gd_ses_city = $gd_session->get('gd_city')) {
|
|
| 1838 | - $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
|
|
| 1839 | - } |
|
| 1840 | - } |
|
| 1837 | + if ($gd_ses_city = $gd_session->get('gd_city')) {
|
|
| 1838 | + $city_filter = $wpdb->prepare(" AND r.post_city=%s ", str_replace("-", " ", $gd_ses_city));
|
|
| 1839 | + } |
|
| 1840 | + } |
|
| 1841 | 1841 | |
| 1842 | - $review_table = GEODIR_REVIEW_TABLE; |
|
| 1843 | - $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"; |
|
| 1844 | - |
|
| 1845 | - $comments = $wpdb->get_results($request); |
|
| 1846 | - |
|
| 1847 | - foreach ($comments as $comment) {
|
|
| 1848 | - // Set the extra comment info needed. |
|
| 1849 | - $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
|
|
| 1850 | - //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"; |
|
| 1851 | - $comment->comment_content = $comment_extra->comment_content; |
|
| 1852 | - $comment->comment_author = $comment_extra->comment_author; |
|
| 1853 | - $comment->comment_author_email = $comment_extra->comment_author_email; |
|
| 1854 | - |
|
| 1855 | - $comment_id = ''; |
|
| 1856 | - $comment_id = $comment->comment_ID; |
|
| 1857 | - $comment_content = strip_tags($comment->comment_content); |
|
| 1858 | - |
|
| 1859 | - $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
|
|
| 1860 | - |
|
| 1861 | - $permalink = get_permalink($comment->ID) . "#comment-" . $comment->comment_ID; |
|
| 1862 | - $comment_author_email = $comment->comment_author_email; |
|
| 1863 | - $comment_post_ID = $comment->post_id; |
|
| 1864 | - |
|
| 1865 | - $na = true; |
|
| 1866 | - if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
|
|
| 1867 | - $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false); |
|
| 1868 | - if ($comment_post_ID == $comment_post_ID2) {
|
|
| 1869 | - } else {
|
|
| 1870 | - $na = false; |
|
| 1871 | - } |
|
| 1872 | - } |
|
| 1842 | + $review_table = GEODIR_REVIEW_TABLE; |
|
| 1843 | + $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"; |
|
| 1844 | + |
|
| 1845 | + $comments = $wpdb->get_results($request); |
|
| 1846 | + |
|
| 1847 | + foreach ($comments as $comment) {
|
|
| 1848 | + // Set the extra comment info needed. |
|
| 1849 | + $comment_extra = $wpdb->get_row("SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID");
|
|
| 1850 | + //echo "SELECT * FROM $wpdb->comments WHERE comment_ID =$comment->comment_ID"; |
|
| 1851 | + $comment->comment_content = $comment_extra->comment_content; |
|
| 1852 | + $comment->comment_author = $comment_extra->comment_author; |
|
| 1853 | + $comment->comment_author_email = $comment_extra->comment_author_email; |
|
| 1854 | + |
|
| 1855 | + $comment_id = ''; |
|
| 1856 | + $comment_id = $comment->comment_ID; |
|
| 1857 | + $comment_content = strip_tags($comment->comment_content); |
|
| 1858 | + |
|
| 1859 | + $comment_content = preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_content);
|
|
| 1860 | + |
|
| 1861 | + $permalink = get_permalink($comment->ID) . "#comment-" . $comment->comment_ID; |
|
| 1862 | + $comment_author_email = $comment->comment_author_email; |
|
| 1863 | + $comment_post_ID = $comment->post_id; |
|
| 1864 | + |
|
| 1865 | + $na = true; |
|
| 1866 | + if (function_exists('icl_object_id') && icl_object_id($comment_post_ID, $comment->post_type, true)) {
|
|
| 1867 | + $comment_post_ID2 = icl_object_id($comment_post_ID, $comment->post_type, false); |
|
| 1868 | + if ($comment_post_ID == $comment_post_ID2) {
|
|
| 1869 | + } else {
|
|
| 1870 | + $na = false; |
|
| 1871 | + } |
|
| 1872 | + } |
|
| 1873 | 1873 | |
| 1874 | - $post_title = get_the_title($comment_post_ID); |
|
| 1875 | - $permalink = get_permalink($comment_post_ID); |
|
| 1876 | - $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
| 1877 | - $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __('Read more', 'geodirectory') . '</a>';
|
|
| 1874 | + $post_title = get_the_title($comment_post_ID); |
|
| 1875 | + $permalink = get_permalink($comment_post_ID); |
|
| 1876 | + $comment_permalink = $permalink . "#comment-" . $comment->comment_ID; |
|
| 1877 | + $read_more = '<a class="comment_excerpt" href="' . $comment_permalink . '">' . __('Read more', 'geodirectory') . '</a>';
|
|
| 1878 | 1878 | |
| 1879 | - $comment_content_length = strlen($comment_content); |
|
| 1880 | - if ($comment_content_length > $comment_lenth) {
|
|
| 1881 | - $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth) . '... ' . $read_more; |
|
| 1882 | - } else {
|
|
| 1883 | - $comment_excerpt = $comment_content; |
|
| 1884 | - } |
|
| 1879 | + $comment_content_length = strlen($comment_content); |
|
| 1880 | + if ($comment_content_length > $comment_lenth) {
|
|
| 1881 | + $comment_excerpt = mb_substr($comment_content, 0, $comment_lenth) . '... ' . $read_more; |
|
| 1882 | + } else {
|
|
| 1883 | + $comment_excerpt = $comment_content; |
|
| 1884 | + } |
|
| 1885 | 1885 | |
| 1886 | - if ($comment->user_id) {
|
|
| 1887 | - $user_profile_url = get_author_posts_url($comment->user_id); |
|
| 1888 | - } else {
|
|
| 1889 | - $user_profile_url = ''; |
|
| 1890 | - } |
|
| 1886 | + if ($comment->user_id) {
|
|
| 1887 | + $user_profile_url = get_author_posts_url($comment->user_id); |
|
| 1888 | + } else {
|
|
| 1889 | + $user_profile_url = ''; |
|
| 1890 | + } |
|
| 1891 | 1891 | |
| 1892 | - if ($comment_id && $na) {
|
|
| 1893 | - $comments_echo .= '<li class="clearfix">'; |
|
| 1894 | - $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
| 1895 | - if (function_exists('get_avatar')) {
|
|
| 1896 | - if (!isset($comment->comment_type)) {
|
|
| 1897 | - if ($user_profile_url) {
|
|
| 1898 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1899 | - } |
|
| 1900 | - $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1901 | - if ($user_profile_url) {
|
|
| 1902 | - $comments_echo .= '</a>'; |
|
| 1903 | - } |
|
| 1904 | - } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
|
|
| 1905 | - if ($user_profile_url) {
|
|
| 1906 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1907 | - } |
|
| 1908 | - $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1909 | - } |
|
| 1910 | - } elseif (function_exists('gravatar')) {
|
|
| 1911 | - if ($user_profile_url) {
|
|
| 1912 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1913 | - } |
|
| 1914 | - $comments_echo .= "<img src=\""; |
|
| 1915 | - if ('' == $comment->comment_type) {
|
|
| 1916 | - $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1917 | - if ($user_profile_url) {
|
|
| 1918 | - $comments_echo .= '</a>'; |
|
| 1919 | - } |
|
| 1920 | - } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
|
|
| 1921 | - if ($user_profile_url) {
|
|
| 1922 | - $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1923 | - } |
|
| 1924 | - $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1925 | - if ($user_profile_url) {
|
|
| 1926 | - $comments_echo .= '</a>'; |
|
| 1927 | - } |
|
| 1928 | - } |
|
| 1929 | - $comments_echo .= "\" alt=\"\" class=\"avatar\" />"; |
|
| 1930 | - } |
|
| 1892 | + if ($comment_id && $na) {
|
|
| 1893 | + $comments_echo .= '<li class="clearfix">'; |
|
| 1894 | + $comments_echo .= "<span class=\"li" . $comment_id . " geodir_reviewer_image\">"; |
|
| 1895 | + if (function_exists('get_avatar')) {
|
|
| 1896 | + if (!isset($comment->comment_type)) {
|
|
| 1897 | + if ($user_profile_url) {
|
|
| 1898 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1899 | + } |
|
| 1900 | + $comments_echo .= get_avatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1901 | + if ($user_profile_url) {
|
|
| 1902 | + $comments_echo .= '</a>'; |
|
| 1903 | + } |
|
| 1904 | + } elseif ((isset($comment->comment_type) && $comment->comment_type == 'trackback') || (isset($comment->comment_type) && $comment->comment_type == 'pingback')) {
|
|
| 1905 | + if ($user_profile_url) {
|
|
| 1906 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1907 | + } |
|
| 1908 | + $comments_echo .= get_avatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1909 | + } |
|
| 1910 | + } elseif (function_exists('gravatar')) {
|
|
| 1911 | + if ($user_profile_url) {
|
|
| 1912 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1913 | + } |
|
| 1914 | + $comments_echo .= "<img src=\""; |
|
| 1915 | + if ('' == $comment->comment_type) {
|
|
| 1916 | + $comments_echo .= gravatar($comment->comment_author_email, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1917 | + if ($user_profile_url) {
|
|
| 1918 | + $comments_echo .= '</a>'; |
|
| 1919 | + } |
|
| 1920 | + } elseif (('trackback' == $comment->comment_type) || ('pingback' == $comment->comment_type)) {
|
|
| 1921 | + if ($user_profile_url) {
|
|
| 1922 | + $comments_echo .= '<a href="' . $user_profile_url . '">'; |
|
| 1923 | + } |
|
| 1924 | + $comments_echo .= gravatar($comment->comment_author_url, $g_size, geodir_plugin_url() . '/geodirectory-assets/images/gravatar2.png'); |
|
| 1925 | + if ($user_profile_url) {
|
|
| 1926 | + $comments_echo .= '</a>'; |
|
| 1927 | + } |
|
| 1928 | + } |
|
| 1929 | + $comments_echo .= "\" alt=\"\" class=\"avatar\" />"; |
|
| 1930 | + } |
|
| 1931 | 1931 | |
| 1932 | - $comments_echo .= "</span>\n"; |
|
| 1933 | - |
|
| 1934 | - $comments_echo .= '<span class="geodir_reviewer_content">'; |
|
| 1935 | - if($comment->user_id){$comments_echo .= '<a href="'.get_author_posts_url( $comment->user_id ).'">';}
|
|
| 1936 | - $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
| 1937 | - if($comment->user_id){$comments_echo .= '</a>';}
|
|
| 1938 | - $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __('reviewed', 'geodirectory') . '</span> ';
|
|
| 1939 | - $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
| 1940 | - $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
| 1941 | - $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
| 1942 | - //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
|
|
| 1943 | - $comments_echo .= '</p>'; |
|
| 1944 | - |
|
| 1945 | - $comments_echo .= "</span>\n"; |
|
| 1946 | - $comments_echo .= '</li>'; |
|
| 1947 | - } |
|
| 1948 | - } |
|
| 1932 | + $comments_echo .= "</span>\n"; |
|
| 1933 | + |
|
| 1934 | + $comments_echo .= '<span class="geodir_reviewer_content">'; |
|
| 1935 | + if($comment->user_id){$comments_echo .= '<a href="'.get_author_posts_url( $comment->user_id ).'">';}
|
|
| 1936 | + $comments_echo .= '<span class="geodir_reviewer_author">' . $comment->comment_author . '</span> '; |
|
| 1937 | + if($comment->user_id){$comments_echo .= '</a>';}
|
|
| 1938 | + $comments_echo .= '<span class="geodir_reviewer_reviewed">' . __('reviewed', 'geodirectory') . '</span> ';
|
|
| 1939 | + $comments_echo .= '<a href="' . $permalink . '" class="geodir_reviewer_title">' . $post_title . '</a>'; |
|
| 1940 | + $comments_echo .= geodir_get_rating_stars($comment->overall_rating, $comment_post_ID); |
|
| 1941 | + $comments_echo .= '<p class="geodir_reviewer_text">' . $comment_excerpt . ''; |
|
| 1942 | + //echo preg_replace('#(\\[img\\]).+(\\[\\/img\\])#', '', $comment_excerpt);
|
|
| 1943 | + $comments_echo .= '</p>'; |
|
| 1944 | + |
|
| 1945 | + $comments_echo .= "</span>\n"; |
|
| 1946 | + $comments_echo .= '</li>'; |
|
| 1947 | + } |
|
| 1948 | + } |
|
| 1949 | 1949 | |
| 1950 | - return $comments_echo; |
|
| 1950 | + return $comments_echo; |
|
| 1951 | 1951 | } |
| 1952 | 1952 | |
| 1953 | 1953 | /** |
@@ -1959,29 +1959,29 @@ discard block |
||
| 1959 | 1959 | */ |
| 1960 | 1960 | function geodir_home_map_cats_key_value_array() |
| 1961 | 1961 | {
|
| 1962 | - $post_types = geodir_get_posttypes('object');
|
|
| 1962 | + $post_types = geodir_get_posttypes('object');
|
|
| 1963 | 1963 | |
| 1964 | - $return = array(); |
|
| 1965 | - if (!empty($post_types)) {
|
|
| 1966 | - foreach ($post_types as $key => $post_type) {
|
|
| 1967 | - $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
| 1968 | - $post_type_name = sprintf(__('%s Categories', 'geodirectory'),$cpt_name);
|
|
| 1969 | - $taxonomies = geodir_get_taxonomies($key); |
|
| 1970 | - $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : NULL; |
|
| 1971 | - $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : NULL; |
|
| 1964 | + $return = array(); |
|
| 1965 | + if (!empty($post_types)) {
|
|
| 1966 | + foreach ($post_types as $key => $post_type) {
|
|
| 1967 | + $cpt_name = __($post_type->labels->singular_name, 'geodirectory'); |
|
| 1968 | + $post_type_name = sprintf(__('%s Categories', 'geodirectory'),$cpt_name);
|
|
| 1969 | + $taxonomies = geodir_get_taxonomies($key); |
|
| 1970 | + $cat_taxonomy = !empty($taxonomies[0]) ? $taxonomies[0] : NULL; |
|
| 1971 | + $cat_terms = $cat_taxonomy ? get_terms($cat_taxonomy) : NULL; |
|
| 1972 | 1972 | |
| 1973 | - if (!empty($cat_terms)) {
|
|
| 1974 | - $return['optgroup_start-' . $key] = $post_type_name; |
|
| 1973 | + if (!empty($cat_terms)) {
|
|
| 1974 | + $return['optgroup_start-' . $key] = $post_type_name; |
|
| 1975 | 1975 | |
| 1976 | - foreach ($cat_terms as $cat_term) {
|
|
| 1977 | - $return[$key . '_' . $cat_term->term_id] = $cat_term->name; |
|
| 1978 | - } |
|
| 1976 | + foreach ($cat_terms as $cat_term) {
|
|
| 1977 | + $return[$key . '_' . $cat_term->term_id] = $cat_term->name; |
|
| 1978 | + } |
|
| 1979 | 1979 | |
| 1980 | - $return['optgroup_end-' . $key] = $post_type_name; |
|
| 1981 | - } |
|
| 1982 | - } |
|
| 1983 | - } |
|
| 1984 | - return $return; |
|
| 1980 | + $return['optgroup_end-' . $key] = $post_type_name; |
|
| 1981 | + } |
|
| 1982 | + } |
|
| 1983 | + } |
|
| 1984 | + return $return; |
|
| 1985 | 1985 | } |
| 1986 | 1986 | |
| 1987 | 1987 | /** |
@@ -1993,7 +1993,7 @@ discard block |
||
| 1993 | 1993 | */ |
| 1994 | 1994 | function geodir_twitter_tweet_button() |
| 1995 | 1995 | {
|
| 1996 | - ?> |
|
| 1996 | + ?> |
|
| 1997 | 1997 | <a href="http://twitter.com/share" |
| 1998 | 1998 | class="twitter-share-button"><?php _e('Tweet', 'geodirectory'); ?></a>
|
| 1999 | 1999 | <script type="text/javascript" src="//platform.twitter.com/widgets.js"></script> |
@@ -2011,11 +2011,11 @@ discard block |
||
| 2011 | 2011 | */ |
| 2012 | 2012 | function geodir_fb_like_button() |
| 2013 | 2013 | {
|
| 2014 | - global $post; |
|
| 2015 | - ?> |
|
| 2014 | + global $post; |
|
| 2015 | + ?> |
|
| 2016 | 2016 | <iframe <?php if (isset($_SERVER['HTTP_USER_AGENT']) && (strpos($_SERVER['HTTP_USER_AGENT'], 'MSIE') !== false)) {
|
| 2017 | - echo 'allowtransparency="true"'; |
|
| 2018 | - } ?> class="facebook" |
|
| 2017 | + echo 'allowtransparency="true"'; |
|
| 2018 | + } ?> class="facebook" |
|
| 2019 | 2019 | 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" |
| 2020 | 2020 | style="border:none; overflow:hidden; width:100px; height:20px"></iframe> |
| 2021 | 2021 | <?php |
@@ -2031,7 +2031,7 @@ discard block |
||
| 2031 | 2031 | */ |
| 2032 | 2032 | function geodir_google_plus_button() |
| 2033 | 2033 | {
|
| 2034 | - ?> |
|
| 2034 | + ?> |
|
| 2035 | 2035 | <div id="plusone-div" class="g-plusone" data-size="medium"></div> |
| 2036 | 2036 | <script type="text/javascript"> |
| 2037 | 2037 | (function () {
|
@@ -2057,8 +2057,8 @@ discard block |
||
| 2057 | 2057 | */ |
| 2058 | 2058 | function geodir_share_this_button_code() |
| 2059 | 2059 | {
|
| 2060 | - global $post; |
|
| 2061 | - ?> |
|
| 2060 | + global $post; |
|
| 2061 | + ?> |
|
| 2062 | 2062 | <div class="addthis_toolbox addthis_default_style"> |
| 2063 | 2063 | <span id='st_sharethis'></span> |
| 2064 | 2064 | <script type="text/javascript">var switchTo5x = false;</script> |
@@ -1,10 +1,10 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Contains all function for filtering listing. |
|
| 4 | - * |
|
| 5 | - * @since 1.0.0 |
|
| 6 | - * @package GeoDirectory |
|
| 7 | - */ |
|
| 3 | + * Contains all function for filtering listing. |
|
| 4 | + * |
|
| 5 | + * @since 1.0.0 |
|
| 6 | + * @package GeoDirectory |
|
| 7 | + */ |
|
| 8 | 8 | |
| 9 | 9 | /** |
| 10 | 10 | * Starts session if not started. |
@@ -16,10 +16,10 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | function geodir_session_start() |
| 18 | 18 | {
|
| 19 | - if (!session_id()) session_start(); |
|
| 20 | - global $geodir_add_location_url; |
|
| 19 | + if (!session_id()) session_start(); |
|
| 20 | + global $geodir_add_location_url; |
|
| 21 | 21 | |
| 22 | - $geodir_add_location_url = NULL; |
|
| 22 | + $geodir_add_location_url = NULL; |
|
| 23 | 23 | } |
| 24 | 24 | |
| 25 | 25 | /** |
@@ -33,18 +33,18 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | function geodir_modified_query($query) |
| 35 | 35 | {
|
| 36 | - if ($query->is_main_query() && ( |
|
| 37 | - (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
|
|
| 38 | - || geodir_is_page('listing')
|
|
| 39 | - || geodir_is_page('author')
|
|
| 40 | - || geodir_is_page('search')
|
|
| 41 | - || geodir_is_page('detail'))
|
|
| 42 | - ) {
|
|
| 43 | - |
|
| 44 | - $query->set('is_geodir_loop', true);
|
|
| 45 | - } |
|
| 36 | + if ($query->is_main_query() && ( |
|
| 37 | + (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '')
|
|
| 38 | + || geodir_is_page('listing')
|
|
| 39 | + || geodir_is_page('author')
|
|
| 40 | + || geodir_is_page('search')
|
|
| 41 | + || geodir_is_page('detail'))
|
|
| 42 | + ) {
|
|
| 43 | + |
|
| 44 | + $query->set('is_geodir_loop', true);
|
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - return $query; |
|
| 47 | + return $query; |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -67,81 +67,81 @@ discard block |
||
| 67 | 67 | */ |
| 68 | 68 | function set_listing_request() |
| 69 | 69 | {
|
| 70 | - global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA; |
|
| 70 | + global $wp_query, $wpdb, $geodir_post_type, $table, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA; |
|
| 71 | 71 | |
| 72 | 72 | |
| 73 | - // fix woocommerce shop products filtered by language for GD + WPML + Woocommerce |
|
| 74 | - if (!geodir_is_geodir_page()) {
|
|
| 75 | - return; |
|
| 76 | - } |
|
| 73 | + // fix woocommerce shop products filtered by language for GD + WPML + Woocommerce |
|
| 74 | + if (!geodir_is_geodir_page()) {
|
|
| 75 | + return; |
|
| 76 | + } |
|
| 77 | 77 | |
| 78 | - /* remove all pre filters */ |
|
| 79 | - remove_all_filters('query');
|
|
| 80 | - remove_all_filters('posts_search');
|
|
| 81 | - remove_all_filters('posts_fields');
|
|
| 82 | - remove_all_filters('posts_join');
|
|
| 83 | - remove_all_filters('posts_orderby');
|
|
| 84 | - remove_all_filters('posts_where');
|
|
| 78 | + /* remove all pre filters */ |
|
| 79 | + remove_all_filters('query');
|
|
| 80 | + remove_all_filters('posts_search');
|
|
| 81 | + remove_all_filters('posts_fields');
|
|
| 82 | + remove_all_filters('posts_join');
|
|
| 83 | + remove_all_filters('posts_orderby');
|
|
| 84 | + remove_all_filters('posts_where');
|
|
| 85 | 85 | |
| 86 | 86 | |
| 87 | - if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')): |
|
| 87 | + if ((is_search() && isset($_REQUEST['geodir_search']) && $_REQUEST['geodir_search'] != '')): |
|
| 88 | 88 | |
| 89 | - if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = ''; |
|
| 90 | - //if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = ''; |
|
| 89 | + if (isset($_REQUEST['scat']) && $_REQUEST['scat'] == 'all') $_REQUEST['scat'] = ''; |
|
| 90 | + //if(isset($_REQUEST['s']) && $_REQUEST['s'] == '+') $_REQUEST['s'] = ''; |
|
| 91 | 91 | |
| 92 | - if (isset($_REQUEST['sdist'])) {
|
|
| 93 | - ($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000; |
|
| 94 | - } elseif (get_option('geodir_search_dist') != '') {
|
|
| 95 | - $dist = get_option('geodir_search_dist');
|
|
| 92 | + if (isset($_REQUEST['sdist'])) {
|
|
| 93 | + ($_REQUEST['sdist'] != '0' && $_REQUEST['sdist'] != '') ? $dist = esc_attr($_REQUEST['sdist']) : $dist = 25000; |
|
| 94 | + } elseif (get_option('geodir_search_dist') != '') {
|
|
| 95 | + $dist = get_option('geodir_search_dist');
|
|
| 96 | 96 | |
| 97 | - } else {
|
|
| 98 | - $dist = 25000; |
|
| 99 | - } // Distance |
|
| 97 | + } else {
|
|
| 98 | + $dist = 25000; |
|
| 99 | + } // Distance |
|
| 100 | 100 | |
| 101 | - if (isset($_REQUEST['sgeo_lat'])) {
|
|
| 102 | - $mylat = (float)esc_attr($_REQUEST['sgeo_lat']); |
|
| 103 | - } else {
|
|
| 104 | - $mylat = (float)geodir_get_current_city_lat(); |
|
| 105 | - } // Latatude |
|
| 101 | + if (isset($_REQUEST['sgeo_lat'])) {
|
|
| 102 | + $mylat = (float)esc_attr($_REQUEST['sgeo_lat']); |
|
| 103 | + } else {
|
|
| 104 | + $mylat = (float)geodir_get_current_city_lat(); |
|
| 105 | + } // Latatude |
|
| 106 | 106 | |
| 107 | - if (isset($_REQUEST['sgeo_lon'])) {
|
|
| 108 | - $mylon = (float)esc_attr($_REQUEST['sgeo_lon']); |
|
| 109 | - } else {
|
|
| 110 | - $mylon = (float)geodir_get_current_city_lng(); |
|
| 111 | - } // Distance |
|
| 107 | + if (isset($_REQUEST['sgeo_lon'])) {
|
|
| 108 | + $mylon = (float)esc_attr($_REQUEST['sgeo_lon']); |
|
| 109 | + } else {
|
|
| 110 | + $mylon = (float)geodir_get_current_city_lng(); |
|
| 111 | + } // Distance |
|
| 112 | 112 | |
| 113 | - if (isset($_REQUEST['snear'])) {
|
|
| 114 | - $snear = trim(esc_attr($_REQUEST['snear'])); |
|
| 115 | - } |
|
| 113 | + if (isset($_REQUEST['snear'])) {
|
|
| 114 | + $snear = trim(esc_attr($_REQUEST['snear'])); |
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - if (isset($_REQUEST['s'])) {
|
|
| 118 | - $s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s']))); |
|
| 119 | - } |
|
| 117 | + if (isset($_REQUEST['s'])) {
|
|
| 118 | + $s = trim(esc_attr(wp_strip_all_tags($_REQUEST['s']))); |
|
| 119 | + } |
|
| 120 | 120 | |
| 121 | - if ($snear == 'NEAR ME') {
|
|
| 122 | - $ip = $_SERVER['REMOTE_ADDR']; |
|
| 123 | - $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
|
|
| 124 | - $mylat = stripslashes(ucfirst($addr_details[geoplugin_latitude])); |
|
| 125 | - $mylon = stripslashes(ucfirst($addr_details[geoplugin_longitude])); |
|
| 126 | - } |
|
| 121 | + if ($snear == 'NEAR ME') {
|
|
| 122 | + $ip = $_SERVER['REMOTE_ADDR']; |
|
| 123 | + $addr_details = unserialize(file_get_contents('http://www.geoplugin.net/php.gp?ip=' . $ip));
|
|
| 124 | + $mylat = stripslashes(ucfirst($addr_details[geoplugin_latitude])); |
|
| 125 | + $mylon = stripslashes(ucfirst($addr_details[geoplugin_longitude])); |
|
| 126 | + } |
|
| 127 | 127 | |
| 128 | 128 | |
| 129 | - if (strstr($s, ',')) {
|
|
| 130 | - $s_AA = str_replace(" ", "", $s);
|
|
| 131 | - $s_A = explode(",", $s_AA);
|
|
| 132 | - $s_A = implode('","', $s_A);
|
|
| 133 | - $s_A = '"' . $s_A . '"'; |
|
| 134 | - } else {
|
|
| 135 | - $s_A = '"' . $s . '"'; |
|
| 136 | - } |
|
| 129 | + if (strstr($s, ',')) {
|
|
| 130 | + $s_AA = str_replace(" ", "", $s);
|
|
| 131 | + $s_A = explode(",", $s_AA);
|
|
| 132 | + $s_A = implode('","', $s_A);
|
|
| 133 | + $s_A = '"' . $s_A . '"'; |
|
| 134 | + } else {
|
|
| 135 | + $s_A = '"' . $s . '"'; |
|
| 136 | + } |
|
| 137 | 137 | |
| 138 | - if (strstr($s, ' ')) {
|
|
| 139 | - $s_SA = explode(" ", $s);
|
|
| 140 | - } else {
|
|
| 141 | - $s_SA = ''; |
|
| 142 | - } |
|
| 138 | + if (strstr($s, ' ')) {
|
|
| 139 | + $s_SA = explode(" ", $s);
|
|
| 140 | + } else {
|
|
| 141 | + $s_SA = ''; |
|
| 142 | + } |
|
| 143 | 143 | |
| 144 | - endif; |
|
| 144 | + endif; |
|
| 145 | 145 | |
| 146 | 146 | |
| 147 | 147 | |
@@ -162,56 +162,56 @@ discard block |
||
| 162 | 162 | */ |
| 163 | 163 | function geodir_listing_loop_filter($query) |
| 164 | 164 | {
|
| 165 | - global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term; |
|
| 165 | + global $wp_query, $geodir_post_type, $table, $plugin_prefix, $table, $term; |
|
| 166 | 166 | |
| 167 | - // fix wp_reset_query for popular post view widget |
|
| 168 | - if (!geodir_is_geodir_page()) {
|
|
| 169 | - return; |
|
| 170 | - } |
|
| 167 | + // fix wp_reset_query for popular post view widget |
|
| 168 | + if (!geodir_is_geodir_page()) {
|
|
| 169 | + return; |
|
| 170 | + } |
|
| 171 | 171 | |
| 172 | - $geodir_post_type = geodir_get_current_posttype(); |
|
| 173 | - |
|
| 174 | - if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
|
|
| 175 | - $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy'); |
|
| 176 | - |
|
| 177 | - if (isset($wp_query->query[$taxonomies[0]])) {
|
|
| 178 | - $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
|
|
| 179 | - $request_term = end($request_term); |
|
| 180 | - if (!term_exists($request_term)) {
|
|
| 181 | - $args = array('number' => '1',);
|
|
| 182 | - $terms_arr = get_terms($taxonomies[0], $args); |
|
| 183 | - foreach ($terms_arr as $location_term) {
|
|
| 184 | - $term_arr = $location_term; |
|
| 185 | - $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
|
|
| 186 | - } |
|
| 187 | - $wp_query->queried_object_id = 1; |
|
| 188 | - $wp_query->queried_object = $term_arr; |
|
| 189 | - //print_r($wp_query) ; |
|
| 190 | - } |
|
| 191 | - } |
|
| 172 | + $geodir_post_type = geodir_get_current_posttype(); |
|
| 173 | + |
|
| 174 | + if (isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries) {
|
|
| 175 | + $taxonomies = wp_list_pluck($wp_query->tax_query->queries, 'taxonomy'); |
|
| 176 | + |
|
| 177 | + if (isset($wp_query->query[$taxonomies[0]])) {
|
|
| 178 | + $request_term = explode("/", $wp_query->query[$taxonomies[0]]);
|
|
| 179 | + $request_term = end($request_term); |
|
| 180 | + if (!term_exists($request_term)) {
|
|
| 181 | + $args = array('number' => '1',);
|
|
| 182 | + $terms_arr = get_terms($taxonomies[0], $args); |
|
| 183 | + foreach ($terms_arr as $location_term) {
|
|
| 184 | + $term_arr = $location_term; |
|
| 185 | + $term_arr->name = geodir_ucwords(str_replace('-', ' ', $request_term));
|
|
| 186 | + } |
|
| 187 | + $wp_query->queried_object_id = 1; |
|
| 188 | + $wp_query->queried_object = $term_arr; |
|
| 189 | + //print_r($wp_query) ; |
|
| 190 | + } |
|
| 191 | + } |
|
| 192 | 192 | |
| 193 | - } |
|
| 194 | - if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
|
|
| 195 | - |
|
| 196 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 197 | - |
|
| 198 | - add_filter('posts_fields', 'geodir_posts_fields', 1);
|
|
| 199 | - add_filter('posts_join', 'geodir_posts_join', 1);
|
|
| 200 | - geodir_post_where(); |
|
| 201 | - if (!is_admin()) |
|
| 202 | - add_filter('posts_orderby', 'geodir_posts_orderby', 1);
|
|
| 203 | - |
|
| 204 | - // advanced filter for popular post view widget |
|
| 205 | - global $wp_query; |
|
| 206 | - if (!is_admin()) {
|
|
| 207 | - if (!empty($wp_query->query['with_pics_only'])) {
|
|
| 208 | - add_filter('posts_join', 'geodir_filter_widget_join', 1000);
|
|
| 209 | - } |
|
| 210 | - add_filter('posts_where', 'geodir_filter_widget_where', 1000);
|
|
| 211 | - } |
|
| 193 | + } |
|
| 194 | + if (isset($query->query_vars['is_geodir_loop']) && $query->query_vars['is_geodir_loop']) {
|
|
| 212 | 195 | |
| 213 | - } |
|
| 214 | - return $query; |
|
| 196 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 197 | + |
|
| 198 | + add_filter('posts_fields', 'geodir_posts_fields', 1);
|
|
| 199 | + add_filter('posts_join', 'geodir_posts_join', 1);
|
|
| 200 | + geodir_post_where(); |
|
| 201 | + if (!is_admin()) |
|
| 202 | + add_filter('posts_orderby', 'geodir_posts_orderby', 1);
|
|
| 203 | + |
|
| 204 | + // advanced filter for popular post view widget |
|
| 205 | + global $wp_query; |
|
| 206 | + if (!is_admin()) {
|
|
| 207 | + if (!empty($wp_query->query['with_pics_only'])) {
|
|
| 208 | + add_filter('posts_join', 'geodir_filter_widget_join', 1000);
|
|
| 209 | + } |
|
| 210 | + add_filter('posts_where', 'geodir_filter_widget_where', 1000);
|
|
| 211 | + } |
|
| 212 | + |
|
| 213 | + } |
|
| 214 | + return $query; |
|
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | |
@@ -230,64 +230,64 @@ discard block |
||
| 230 | 230 | * @return string Modified fields query string. |
| 231 | 231 | */ |
| 232 | 232 | function geodir_posts_fields($fields) {
|
| 233 | - global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session; |
|
| 233 | + global $wp_query, $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $snear, $gd_session; |
|
| 234 | 234 | |
| 235 | - // Filter-Location-Manager to add location table. |
|
| 236 | - $fields .= ", " . $table . ".* "; |
|
| 235 | + // Filter-Location-Manager to add location table. |
|
| 236 | + $fields .= ", " . $table . ".* "; |
|
| 237 | 237 | |
| 238 | 238 | if ($snear != '' || $gd_session->get('all_near_me')) {
|
| 239 | - $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
|
|
| 239 | + $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
|
|
| 240 | 240 | |
| 241 | 241 | if ($gd_session->get('all_near_me')) {
|
| 242 | - $mylat = $gd_session->get('user_lat');
|
|
| 243 | - $mylon = $gd_session->get('user_lon');
|
|
| 244 | - } |
|
| 245 | - |
|
| 246 | - $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
|
|
| 247 | - } |
|
| 248 | - |
|
| 249 | - global $s; |
|
| 250 | - if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
|
|
| 251 | - $keywords = explode(" ", $s);
|
|
| 252 | - |
|
| 253 | - if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
|
|
| 254 | - foreach($keywords as $kkey=>$kword){
|
|
| 255 | - if(mb_strlen($kword, 'UTF-8')<=$klimit){
|
|
| 256 | - unset($keywords[$kkey]); |
|
| 257 | - } |
|
| 258 | - } |
|
| 259 | - } |
|
| 242 | + $mylat = $gd_session->get('user_lat');
|
|
| 243 | + $mylon = $gd_session->get('user_lon');
|
|
| 244 | + } |
|
| 260 | 245 | |
| 246 | + $fields .= " , (" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) )))as distance ";
|
|
| 247 | + } |
|
| 261 | 248 | |
| 262 | - if (count($keywords) > 1) {
|
|
| 263 | - $parts = array( |
|
| 264 | - 'AND' => 'gd_alltitlematch_part', |
|
| 265 | - 'OR' => 'gd_titlematch_part' |
|
| 266 | - ); |
|
| 267 | - $gd_titlematch_part = ""; |
|
| 268 | - foreach ($parts as $key => $part) {
|
|
| 269 | - $gd_titlematch_part .= " CASE WHEN "; |
|
| 270 | - $count = 0; |
|
| 271 | - foreach ($keywords as $keyword) {
|
|
| 272 | - $keyword = trim($keyword); |
|
| 249 | + global $s; |
|
| 250 | + if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
|
|
| 251 | + $keywords = explode(" ", $s);
|
|
| 252 | + |
|
| 253 | + if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
|
|
| 254 | + foreach($keywords as $kkey=>$kword){
|
|
| 255 | + if(mb_strlen($kword, 'UTF-8')<=$klimit){
|
|
| 256 | + unset($keywords[$kkey]); |
|
| 257 | + } |
|
| 258 | + } |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + |
|
| 262 | + if (count($keywords) > 1) {
|
|
| 263 | + $parts = array( |
|
| 264 | + 'AND' => 'gd_alltitlematch_part', |
|
| 265 | + 'OR' => 'gd_titlematch_part' |
|
| 266 | + ); |
|
| 267 | + $gd_titlematch_part = ""; |
|
| 268 | + foreach ($parts as $key => $part) {
|
|
| 269 | + $gd_titlematch_part .= " CASE WHEN "; |
|
| 270 | + $count = 0; |
|
| 271 | + foreach ($keywords as $keyword) {
|
|
| 272 | + $keyword = trim($keyword); |
|
| 273 | 273 | $count++; |
| 274 | - if ($count < count($keywords)) {
|
|
| 275 | - // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " "; |
|
| 274 | + if ($count < count($keywords)) {
|
|
| 275 | + // $gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' " . $key . " "; |
|
| 276 | 276 | $gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) " . $key . " "; |
| 277 | - } else {
|
|
| 278 | - //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' "; |
|
| 277 | + } else {
|
|
| 278 | + //$gd_titlematch_part .= $wpdb->posts . ".post_title LIKE '%%" . $keyword . "%%' "; |
|
| 279 | 279 | $gd_titlematch_part .= "( " . $wpdb->posts . ".post_title LIKE '" . $keyword . "' OR " . $wpdb->posts . ".post_title LIKE '" . $keyword . "%%' OR " . $wpdb->posts . ".post_title LIKE '%% " . $keyword . "%%' ) "; |
| 280 | - } |
|
| 281 | - } |
|
| 282 | - $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ","; |
|
| 283 | - } |
|
| 284 | - } else {
|
|
| 285 | - $gd_titlematch_part = ""; |
|
| 286 | - } |
|
| 287 | - //$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title=%s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN " . $wpdb->posts . ".post_content LIKE %s THEN 1 ELSE 0 END AS gd_content", array($s, '%' . $s . '%', '%' . $s . '%'));
|
|
| 280 | + } |
|
| 281 | + } |
|
| 282 | + $gd_titlematch_part .= "THEN 1 ELSE 0 END AS " . $part . ","; |
|
| 283 | + } |
|
| 284 | + } else {
|
|
| 285 | + $gd_titlematch_part = ""; |
|
| 286 | + } |
|
| 287 | + //$fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title=%s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN " . $wpdb->posts . ".post_content LIKE %s THEN 1 ELSE 0 END AS gd_content", array($s, '%' . $s . '%', '%' . $s . '%'));
|
|
| 288 | 288 | $fields .= $wpdb->prepare(", CASE WHEN " . $table . ".is_featured='1' THEN 1 ELSE 0 END AS gd_featured, CASE WHEN " . $wpdb->posts . ".post_title LIKE %s THEN 1 ELSE 0 END AS gd_exacttitle," . $gd_titlematch_part . " CASE WHEN ( " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s OR " . $wpdb->posts . ".post_title LIKE %s ) THEN 1 ELSE 0 END AS gd_titlematch, CASE WHEN ( " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s OR " . $wpdb->posts . ".post_content LIKE %s ) THEN 1 ELSE 0 END AS gd_content", array($s, $s, $s . '%', '% ' . $s . '%', $s, $s . ' %', '% ' . $s . ' %', '% ' . $s));
|
| 289 | - } |
|
| 290 | - return $fields; |
|
| 289 | + } |
|
| 290 | + return $fields; |
|
| 291 | 291 | } |
| 292 | 292 | |
| 293 | 293 | |
@@ -304,26 +304,26 @@ discard block |
||
| 304 | 304 | */ |
| 305 | 305 | function geodir_posts_join($join) |
| 306 | 306 | {
|
| 307 | - global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix; |
|
| 307 | + global $wpdb, $geodir_post_type, $table, $table_prefix, $plugin_prefix; |
|
| 308 | 308 | |
| 309 | - ########### WPML ########### |
|
| 309 | + ########### WPML ########### |
|
| 310 | 310 | |
| 311 | - if (function_exists('icl_object_id')) {
|
|
| 312 | - global $sitepress; |
|
| 313 | - $lang_code = ICL_LANGUAGE_CODE; |
|
| 314 | - $default_lang_code = $sitepress->get_default_language(); |
|
| 315 | - if ($lang_code) {
|
|
| 316 | - $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID"; |
|
| 317 | - } |
|
| 311 | + if (function_exists('icl_object_id')) {
|
|
| 312 | + global $sitepress; |
|
| 313 | + $lang_code = ICL_LANGUAGE_CODE; |
|
| 314 | + $default_lang_code = $sitepress->get_default_language(); |
|
| 315 | + if ($lang_code) {
|
|
| 316 | + $join .= "JOIN " . $table_prefix . "icl_translations icl_t ON icl_t.element_id = " . $table_prefix . "posts.ID"; |
|
| 317 | + } |
|
| 318 | 318 | |
| 319 | - } |
|
| 320 | - ########### WPML ########### |
|
| 319 | + } |
|
| 320 | + ########### WPML ########### |
|
| 321 | 321 | |
| 322 | - $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID) ";
|
|
| 323 | - //===old code start |
|
| 324 | - //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id) " ;//===old code end
|
|
| 322 | + $join .= " INNER JOIN " . $table . " ON (" . $table . ".post_id = $wpdb->posts.ID) ";
|
|
| 323 | + //===old code start |
|
| 324 | + //$join .= " INNER JOIN ".POST_LOCATION_TABLE." ON (".$table.".post_location_id = ".POST_LOCATION_TABLE.".location_id) " ;//===old code end
|
|
| 325 | 325 | |
| 326 | - return $join; |
|
| 326 | + return $join; |
|
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | |
@@ -341,15 +341,15 @@ discard block |
||
| 341 | 341 | */ |
| 342 | 342 | function geodir_posts_orderby($orderby) |
| 343 | 343 | {
|
| 344 | - global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort; |
|
| 344 | + global $wpdb, $wp_query, $geodir_post_type, $table, $plugin_prefix, $snear, $default_sort; |
|
| 345 | 345 | |
| 346 | - $sort_by = ''; |
|
| 347 | - $orderby = ' '; |
|
| 346 | + $sort_by = ''; |
|
| 347 | + $orderby = ' '; |
|
| 348 | 348 | |
| 349 | - if (get_query_var('order_by'))
|
|
| 350 | - $sort_by = get_query_var('order_by');
|
|
| 349 | + if (get_query_var('order_by'))
|
|
| 350 | + $sort_by = get_query_var('order_by');
|
|
| 351 | 351 | |
| 352 | - /*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
|
|
| 352 | + /*if(isset($wp_query->tax_query->queries) && $wp_query->tax_query->queries){
|
|
| 353 | 353 | $current_term = $wp_query->get_queried_object(); |
| 354 | 354 | } |
| 355 | 355 | |
@@ -363,116 +363,116 @@ discard block |
||
| 363 | 363 | }*/ |
| 364 | 364 | |
| 365 | 365 | |
| 366 | - if ($snear != '') {
|
|
| 367 | - $orderby .= " distance,"; |
|
| 368 | - } |
|
| 366 | + if ($snear != '') {
|
|
| 367 | + $orderby .= " distance,"; |
|
| 368 | + } |
|
| 369 | 369 | |
| 370 | - if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query()) |
|
| 371 | - $sort_by = esc_attr($_REQUEST['sort_by']); |
|
| 370 | + if (isset($_REQUEST['sort_by']) && $_REQUEST['sort_by'] != '' && is_main_query()) |
|
| 371 | + $sort_by = esc_attr($_REQUEST['sort_by']); |
|
| 372 | 372 | |
| 373 | 373 | |
| 374 | - if ($sort_by == '') {
|
|
| 375 | - $default_sort = geodir_get_posts_default_sort($geodir_post_type); |
|
| 376 | - if (!empty($default_sort)) |
|
| 377 | - $sort_by = $default_sort; |
|
| 378 | - } |
|
| 374 | + if ($sort_by == '') {
|
|
| 375 | + $default_sort = geodir_get_posts_default_sort($geodir_post_type); |
|
| 376 | + if (!empty($default_sort)) |
|
| 377 | + $sort_by = $default_sort; |
|
| 378 | + } |
|
| 379 | 379 | |
| 380 | - /* |
|
| 380 | + /* |
|
| 381 | 381 | if search by term & no location then order always "relevance" |
| 382 | 382 | if search by location then order always "nearest" |
| 383 | 383 | */ |
| 384 | - if (is_main_query() && geodir_is_page('search')) {
|
|
| 385 | - $search_term = get_query_var('s');
|
|
| 384 | + if (is_main_query() && geodir_is_page('search')) {
|
|
| 385 | + $search_term = get_query_var('s');
|
|
| 386 | 386 | |
| 387 | - if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
|
|
| 388 | - $sort_by = 'az'; |
|
| 389 | - } |
|
| 387 | + if (trim($search_term) != '' && !isset($_REQUEST['sort_by'])) {
|
|
| 388 | + $sort_by = 'az'; |
|
| 389 | + } |
|
| 390 | 390 | |
| 391 | - if ($snear != '') {
|
|
| 392 | - $sort_by = 'nearest'; |
|
| 393 | - } |
|
| 394 | - } |
|
| 391 | + if ($snear != '') {
|
|
| 392 | + $sort_by = 'nearest'; |
|
| 393 | + } |
|
| 394 | + } |
|
| 395 | 395 | |
| 396 | - switch ($sort_by): |
|
| 397 | - case 'newest': |
|
| 398 | - $orderby = "$wpdb->posts.post_date desc, "; |
|
| 399 | - break; |
|
| 400 | - case 'oldest': |
|
| 401 | - $orderby = "$wpdb->posts.post_date asc, "; |
|
| 402 | - break; |
|
| 403 | - case 'low_review': |
|
| 404 | - case 'rating_count_asc': |
|
| 405 | - $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, "; |
|
| 406 | - break; |
|
| 407 | - case 'high_review': |
|
| 408 | - case 'rating_count_desc': |
|
| 396 | + switch ($sort_by): |
|
| 397 | + case 'newest': |
|
| 398 | + $orderby = "$wpdb->posts.post_date desc, "; |
|
| 399 | + break; |
|
| 400 | + case 'oldest': |
|
| 401 | + $orderby = "$wpdb->posts.post_date asc, "; |
|
| 402 | + break; |
|
| 403 | + case 'low_review': |
|
| 404 | + case 'rating_count_asc': |
|
| 405 | + $orderby = $table . ".rating_count ASC, " . $table . ".overall_rating ASC, "; |
|
| 406 | + break; |
|
| 407 | + case 'high_review': |
|
| 408 | + case 'rating_count_desc': |
|
| 409 | 409 | $orderby = $table . ".rating_count DESC, " . $table . ".overall_rating DESC, "; |
| 410 | - break; |
|
| 411 | - case 'low_rating': |
|
| 412 | - $orderby = "( " . $table . ".overall_rating ) ASC, " . $table . ".rating_count ASC, "; |
|
| 413 | - break; |
|
| 414 | - case 'high_rating': |
|
| 415 | - $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, "; |
|
| 416 | - break; |
|
| 417 | - case 'featured': |
|
| 418 | - $orderby = $table . ".is_featured asc, "; |
|
| 419 | - break; |
|
| 420 | - case 'nearest': |
|
| 421 | - $orderby = " distance asc, "; |
|
| 422 | - break; |
|
| 423 | - case 'farthest': |
|
| 424 | - $orderby = " distance desc, "; |
|
| 425 | - break; |
|
| 426 | - case 'random': |
|
| 427 | - $orderby = " rand(), "; |
|
| 428 | - break; |
|
| 429 | - case 'az': |
|
| 430 | - $orderby = "$wpdb->posts.post_title asc, "; |
|
| 431 | - break; |
|
| 432 | - default: |
|
| 433 | - |
|
| 434 | - break; |
|
| 435 | - endswitch; |
|
| 436 | - |
|
| 437 | - global $s; |
|
| 438 | - |
|
| 439 | - if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
|
|
| 440 | - $keywords = explode(" ", $s);
|
|
| 441 | - if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
|
|
| 442 | - foreach($keywords as $kkey=>$kword){
|
|
| 443 | - if(mb_strlen($kword, 'UTF-8')<=$klimit){
|
|
| 444 | - unset($keywords[$kkey]); |
|
| 445 | - } |
|
| 446 | - } |
|
| 447 | - } |
|
| 448 | - if ($sort_by == 'nearest' || $sort_by == 'farthest') {
|
|
| 449 | - if (count($keywords) > 1) {
|
|
| 450 | - $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, "; |
|
| 451 | - } else {
|
|
| 452 | - $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, "; |
|
| 453 | - } |
|
| 454 | - } else {
|
|
| 455 | - if (count($keywords) > 1) {
|
|
| 456 | - $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby; |
|
| 457 | - } else {
|
|
| 458 | - $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby; |
|
| 459 | - } |
|
| 460 | - } |
|
| 461 | - } |
|
| 410 | + break; |
|
| 411 | + case 'low_rating': |
|
| 412 | + $orderby = "( " . $table . ".overall_rating ) ASC, " . $table . ".rating_count ASC, "; |
|
| 413 | + break; |
|
| 414 | + case 'high_rating': |
|
| 415 | + $orderby = " " . $table . ".overall_rating DESC, " . $table . ".rating_count DESC, "; |
|
| 416 | + break; |
|
| 417 | + case 'featured': |
|
| 418 | + $orderby = $table . ".is_featured asc, "; |
|
| 419 | + break; |
|
| 420 | + case 'nearest': |
|
| 421 | + $orderby = " distance asc, "; |
|
| 422 | + break; |
|
| 423 | + case 'farthest': |
|
| 424 | + $orderby = " distance desc, "; |
|
| 425 | + break; |
|
| 426 | + case 'random': |
|
| 427 | + $orderby = " rand(), "; |
|
| 428 | + break; |
|
| 429 | + case 'az': |
|
| 430 | + $orderby = "$wpdb->posts.post_title asc, "; |
|
| 431 | + break; |
|
| 432 | + default: |
|
| 433 | + |
|
| 434 | + break; |
|
| 435 | + endswitch; |
|
| 436 | + |
|
| 437 | + global $s; |
|
| 438 | + |
|
| 439 | + if (is_search() && isset($_REQUEST['geodir_search']) && $s && trim($s) != '') {
|
|
| 440 | + $keywords = explode(" ", $s);
|
|
| 441 | + if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
|
|
| 442 | + foreach($keywords as $kkey=>$kword){
|
|
| 443 | + if(mb_strlen($kword, 'UTF-8')<=$klimit){
|
|
| 444 | + unset($keywords[$kkey]); |
|
| 445 | + } |
|
| 446 | + } |
|
| 447 | + } |
|
| 448 | + if ($sort_by == 'nearest' || $sort_by == 'farthest') {
|
|
| 449 | + if (count($keywords) > 1) {
|
|
| 450 | + $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, "; |
|
| 451 | + } else {
|
|
| 452 | + $orderby = $orderby . " ( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, "; |
|
| 453 | + } |
|
| 454 | + } else {
|
|
| 455 | + if (count($keywords) > 1) {
|
|
| 456 | + $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_alltitlematch_part * 100 + gd_titlematch_part * 50 + gd_content * 1.5) DESC, " . $orderby; |
|
| 457 | + } else {
|
|
| 458 | + $orderby = "( gd_titlematch * 2 + gd_featured * 5 + gd_exacttitle * 10 + gd_content * 1.5) DESC, " . $orderby; |
|
| 459 | + } |
|
| 460 | + } |
|
| 461 | + } |
|
| 462 | 462 | |
| 463 | - /** |
|
| 464 | - * Filter order by SQL. |
|
| 465 | - * |
|
| 466 | - * @since 1.0.0 |
|
| 467 | - * @param string $orderby The orderby query string. |
|
| 468 | - * @param string $sort_by Sortby query string. |
|
| 469 | - * @param string $table Listing table name. |
|
| 470 | - */ |
|
| 471 | - $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
|
|
| 463 | + /** |
|
| 464 | + * Filter order by SQL. |
|
| 465 | + * |
|
| 466 | + * @since 1.0.0 |
|
| 467 | + * @param string $orderby The orderby query string. |
|
| 468 | + * @param string $sort_by Sortby query string. |
|
| 469 | + * @param string $table Listing table name. |
|
| 470 | + */ |
|
| 471 | + $orderby = apply_filters('geodir_posts_order_by_sort', $orderby, $sort_by, $table);
|
|
| 472 | 472 | |
| 473 | - $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title "; |
|
| 473 | + $orderby .= $table . ".is_featured asc, $wpdb->posts.post_date desc, $wpdb->posts.post_title "; |
|
| 474 | 474 | |
| 475 | - return $orderby; |
|
| 475 | + return $orderby; |
|
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | |
@@ -490,53 +490,53 @@ discard block |
||
| 490 | 490 | function geodir_posts_order_by_custom_sort($orderby, $sort_by, $table) |
| 491 | 491 | {
|
| 492 | 492 | |
| 493 | - global $wpdb; |
|
| 493 | + global $wpdb; |
|
| 494 | 494 | |
| 495 | - if ($sort_by != '' && !is_search()) {
|
|
| 495 | + if ($sort_by != '' && !is_search()) {
|
|
| 496 | 496 | |
| 497 | - $sort_array = explode('_', $sort_by);
|
|
| 497 | + $sort_array = explode('_', $sort_by);
|
|
| 498 | 498 | |
| 499 | - $sort_by_count = count($sort_array); |
|
| 499 | + $sort_by_count = count($sort_array); |
|
| 500 | 500 | |
| 501 | - $order = $sort_array[$sort_by_count - 1]; |
|
| 501 | + $order = $sort_array[$sort_by_count - 1]; |
|
| 502 | 502 | |
| 503 | - if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
|
|
| 503 | + if ($sort_by_count > 1 && ($order == 'asc' || $order == 'desc')) {
|
|
| 504 | 504 | |
| 505 | - $sort_by = str_replace('_' . $order, '', $sort_by);
|
|
| 505 | + $sort_by = str_replace('_' . $order, '', $sort_by);
|
|
| 506 | 506 | |
| 507 | - switch ($sort_by): |
|
| 507 | + switch ($sort_by): |
|
| 508 | 508 | |
| 509 | - case 'post_date': |
|
| 510 | - case 'comment_count': |
|
| 509 | + case 'post_date': |
|
| 510 | + case 'comment_count': |
|
| 511 | 511 | |
| 512 | - $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", "; |
|
| 513 | - break; |
|
| 512 | + $orderby = "$wpdb->posts." . $sort_by . " " . $order . ", ".$table . ".overall_rating " . $order . ", "; |
|
| 513 | + break; |
|
| 514 | 514 | |
| 515 | - case 'distance': |
|
| 516 | - $orderby = $sort_by . " " . $order . ", "; |
|
| 517 | - break; |
|
| 515 | + case 'distance': |
|
| 516 | + $orderby = $sort_by . " " . $order . ", "; |
|
| 517 | + break; |
|
| 518 | 518 | |
| 519 | 519 | |
| 520 | - // sort by rating |
|
| 521 | - case 'overall_rating': |
|
| 522 | - $orderby = " " . $table . "." . $sort_by . " " . $order . ", " . $table . ".rating_count " . $order . ", "; |
|
| 520 | + // sort by rating |
|
| 521 | + case 'overall_rating': |
|
| 522 | + $orderby = " " . $table . "." . $sort_by . " " . $order . ", " . $table . ".rating_count " . $order . ", "; |
|
| 523 | 523 | |
| 524 | - break; |
|
| 524 | + break; |
|
| 525 | 525 | |
| 526 | 526 | |
| 527 | - default: |
|
| 528 | - if (geodir_column_exist($table, $sort_by)) {
|
|
| 527 | + default: |
|
| 528 | + if (geodir_column_exist($table, $sort_by)) {
|
|
| 529 | 529 | $orderby = $table . "." . $sort_by . " " . $order . ", "; |
| 530 | 530 | } |
| 531 | - break; |
|
| 531 | + break; |
|
| 532 | 532 | |
| 533 | - endswitch; |
|
| 533 | + endswitch; |
|
| 534 | 534 | |
| 535 | - } |
|
| 535 | + } |
|
| 536 | 536 | |
| 537 | - } |
|
| 537 | + } |
|
| 538 | 538 | |
| 539 | - return $orderby; |
|
| 539 | + return $orderby; |
|
| 540 | 540 | } |
| 541 | 541 | |
| 542 | 542 | /** |
@@ -551,34 +551,34 @@ discard block |
||
| 551 | 551 | {
|
| 552 | 552 | |
| 553 | 553 | |
| 554 | - global $wpdb, $geodir_post_type, $table, $s, $snear; |
|
| 554 | + global $wpdb, $geodir_post_type, $table, $s, $snear; |
|
| 555 | 555 | |
| 556 | - if (!is_admin()) {
|
|
| 556 | + if (!is_admin()) {
|
|
| 557 | 557 | |
| 558 | - if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 559 | - add_filter('posts_where', 'geodir_edit_listing_where', 1);
|
|
| 558 | + if (geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 559 | + add_filter('posts_where', 'geodir_edit_listing_where', 1);
|
|
| 560 | 560 | |
| 561 | - } elseif ((is_search() && $_REQUEST['geodir_search'])) {
|
|
| 561 | + } elseif ((is_search() && $_REQUEST['geodir_search'])) {
|
|
| 562 | 562 | |
| 563 | - add_filter('posts_where', 'searching_filter_where', 1);
|
|
| 563 | + add_filter('posts_where', 'searching_filter_where', 1);
|
|
| 564 | 564 | |
| 565 | - if ($snear != '') |
|
| 566 | - add_filter('posts_where', 'searching_filter_where', 1);
|
|
| 565 | + if ($snear != '') |
|
| 566 | + add_filter('posts_where', 'searching_filter_where', 1);
|
|
| 567 | 567 | |
| 568 | - add_filter('posts_orderby', 'geodir_posts_orderby', 1);
|
|
| 568 | + add_filter('posts_orderby', 'geodir_posts_orderby', 1);
|
|
| 569 | 569 | |
| 570 | - } elseif (geodir_is_page('author')) {
|
|
| 570 | + } elseif (geodir_is_page('author')) {
|
|
| 571 | 571 | |
| 572 | - add_filter('posts_where', 'author_filter_where', 1);
|
|
| 572 | + add_filter('posts_where', 'author_filter_where', 1);
|
|
| 573 | 573 | |
| 574 | - } |
|
| 574 | + } |
|
| 575 | 575 | |
| 576 | - //if (!geodir_is_page('detail'))
|
|
| 577 | - add_filter('posts_where', 'geodir_default_where', 1);/**/
|
|
| 576 | + //if (!geodir_is_page('detail'))
|
|
| 577 | + add_filter('posts_where', 'geodir_default_where', 1);/**/
|
|
| 578 | 578 | |
| 579 | - //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts |
|
| 579 | + //add_filter( 'user_has_cap', 'geodir_preview_post_cap', 10, 3 );// let subscribers edit their own posts |
|
| 580 | 580 | |
| 581 | - } |
|
| 581 | + } |
|
| 582 | 582 | } |
| 583 | 583 | |
| 584 | 584 | /** |
@@ -593,13 +593,13 @@ discard block |
||
| 593 | 593 | */ |
| 594 | 594 | function geodir_preview_post_cap($allcaps, $caps, $args) |
| 595 | 595 | {
|
| 596 | - $user_id = get_current_user_id(); |
|
| 597 | - if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
|
|
| 596 | + $user_id = get_current_user_id(); |
|
| 597 | + if ($user_id && isset($_REQUEST['post_type']) && $_REQUEST['post_type'] != '' && isset($_REQUEST['p']) && $_REQUEST['p'] != '' && $args[0] == 'edit_post' && $_REQUEST['p'] == $args[2]) {
|
|
| 598 | 598 | |
| 599 | - $allcaps['edit_posts'] = true; |
|
| 600 | - } |
|
| 601 | - //print_r($allcaps); |
|
| 602 | - return $allcaps; |
|
| 599 | + $allcaps['edit_posts'] = true; |
|
| 600 | + } |
|
| 601 | + //print_r($allcaps); |
|
| 602 | + return $allcaps; |
|
| 603 | 603 | } |
| 604 | 604 | |
| 605 | 605 | |
@@ -614,9 +614,9 @@ discard block |
||
| 614 | 614 | */ |
| 615 | 615 | function geodir_edit_listing_where($where) |
| 616 | 616 | {
|
| 617 | - global $wpdb; |
|
| 618 | - $where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
|
|
| 619 | - return $where; |
|
| 617 | + global $wpdb; |
|
| 618 | + $where = $wpdb->prepare(" AND $wpdb->posts.ID = %d ", $_REQUEST['pid']);
|
|
| 619 | + return $where; |
|
| 620 | 620 | } |
| 621 | 621 | |
| 622 | 622 | |
@@ -633,29 +633,29 @@ discard block |
||
| 633 | 633 | */ |
| 634 | 634 | function geodir_default_where($where) |
| 635 | 635 | {
|
| 636 | - global $wp_query, $wpdb; |
|
| 637 | - |
|
| 638 | - //print_r($wp_query); |
|
| 639 | - ########### WPML ########### |
|
| 640 | - |
|
| 641 | - if (function_exists('icl_object_id')) {
|
|
| 642 | - global $sitepress, $table_prefix; |
|
| 643 | - $lang_code = ICL_LANGUAGE_CODE; |
|
| 644 | - $default_lang_code = $sitepress->get_default_language(); |
|
| 645 | - $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : ''; |
|
| 646 | - //echo '##########'.$q_post_type; |
|
| 647 | - if ($lang_code && $q_post_type) {
|
|
| 648 | - $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
|
|
| 649 | - //$where .= " AND icl_t.language_code = '$lang_code' "; |
|
| 650 | - } |
|
| 636 | + global $wp_query, $wpdb; |
|
| 651 | 637 | |
| 652 | - } |
|
| 653 | - ########### WPML ########### |
|
| 638 | + //print_r($wp_query); |
|
| 639 | + ########### WPML ########### |
|
| 654 | 640 | |
| 641 | + if (function_exists('icl_object_id')) {
|
|
| 642 | + global $sitepress, $table_prefix; |
|
| 643 | + $lang_code = ICL_LANGUAGE_CODE; |
|
| 644 | + $default_lang_code = $sitepress->get_default_language(); |
|
| 645 | + $q_post_type = isset($wp_query->query['post_type']) ? $wp_query->query['post_type'] : ''; |
|
| 646 | + //echo '##########'.$q_post_type; |
|
| 647 | + if ($lang_code && $q_post_type) {
|
|
| 648 | + $where .= " AND icl_t.language_code = '$lang_code' AND icl_t.element_type IN('post_" . $q_post_type . "') ";
|
|
| 649 | + //$where .= " AND icl_t.language_code = '$lang_code' "; |
|
| 650 | + } |
|
| 651 | + |
|
| 652 | + } |
|
| 653 | + ########### WPML ########### |
|
| 655 | 654 | |
| 656 | - return $where = str_replace("0 = 1", "1=1", $where);
|
|
| 657 | 655 | |
| 658 | - /* ====== old code start === |
|
| 656 | + return $where = str_replace("0 = 1", "1=1", $where);
|
|
| 657 | + |
|
| 658 | + /* ====== old code start === |
|
| 659 | 659 | $where = str_replace("0 = 1", "1=1", $where);
|
| 660 | 660 | $country = get_query_var('gd_country');
|
| 661 | 661 | $region = get_query_var('gd_region');
|
@@ -696,109 +696,109 @@ discard block |
||
| 696 | 696 | * @return string Modified where query string. |
| 697 | 697 | */ |
| 698 | 698 | function searching_filter_where($where) {
|
| 699 | - global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA, $search_term, $gd_session; |
|
| 699 | + global $wpdb, $geodir_post_type, $table, $plugin_prefix, $dist, $mylat, $mylon, $s, $snear, $s, $s_A, $s_SA, $search_term, $gd_session; |
|
| 700 | 700 | |
| 701 | - $search_term = 'OR'; |
|
| 702 | - $search_term = 'AND'; |
|
| 703 | - $geodir_custom_search = ''; |
|
| 704 | - $category_search_range = ''; |
|
| 701 | + $search_term = 'OR'; |
|
| 702 | + $search_term = 'AND'; |
|
| 703 | + $geodir_custom_search = ''; |
|
| 704 | + $category_search_range = ''; |
|
| 705 | 705 | |
| 706 | - if (is_single() && get_query_var('post_type')) {
|
|
| 706 | + if (is_single() && get_query_var('post_type')) {
|
|
| 707 | 707 | return $where; |
| 708 | 708 | } |
| 709 | 709 | |
| 710 | - if (is_tax()) {
|
|
| 710 | + if (is_tax()) {
|
|
| 711 | 711 | return $where; |
| 712 | 712 | } |
| 713 | 713 | |
| 714 | 714 | $s = trim($s); |
| 715 | 715 | |
| 716 | - $where = ''; |
|
| 716 | + $where = ''; |
|
| 717 | 717 | |
| 718 | - $better_search_terms = ''; |
|
| 719 | - $better_search = array(); |
|
| 718 | + $better_search_terms = ''; |
|
| 719 | + $better_search = array(); |
|
| 720 | 720 | |
| 721 | - if (!empty($s_SA)) {
|
|
| 722 | - foreach ($s_SA as $s_term) {
|
|
| 723 | - //$s_term = esc_attr($s_term); |
|
| 724 | - //$better_search[] = " OR $wpdb->posts.post_title LIKE\"%$s_term%\" "; |
|
| 721 | + if (!empty($s_SA)) {
|
|
| 722 | + foreach ($s_SA as $s_term) {
|
|
| 723 | + //$s_term = esc_attr($s_term); |
|
| 724 | + //$better_search[] = " OR $wpdb->posts.post_title LIKE\"%$s_term%\" "; |
|
| 725 | 725 | $better_search[] = " OR ( $wpdb->posts.post_title LIKE \"$s_term\" OR $wpdb->posts.post_title LIKE \"$s_term%\" OR $wpdb->posts.post_title LIKE \"% $s_term%\" ) "; |
| 726 | - } |
|
| 727 | - } |
|
| 726 | + } |
|
| 727 | + } |
|
| 728 | 728 | |
| 729 | - if (is_array($better_search)) {
|
|
| 730 | - $better_search_terms = implode(' ', $better_search);
|
|
| 731 | - } |
|
| 729 | + if (is_array($better_search)) {
|
|
| 730 | + $better_search_terms = implode(' ', $better_search);
|
|
| 731 | + } |
|
| 732 | 732 | |
| 733 | - $better_search_terms = ''; |
|
| 734 | - if (isset($_REQUEST['stype'])) |
|
| 735 | - $post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype'])); |
|
| 736 | - else |
|
| 737 | - $post_types = 'gd_place'; |
|
| 738 | - |
|
| 739 | - if ($s != '') {
|
|
| 740 | - $keywords = explode(" ", $s);
|
|
| 741 | - if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
|
|
| 742 | - foreach($keywords as $kkey=>$kword){
|
|
| 743 | - if(mb_strlen($kword, 'UTF-8')<=$klimit){
|
|
| 744 | - unset($keywords[$kkey]); |
|
| 745 | - } |
|
| 746 | - } |
|
| 747 | - } |
|
| 733 | + $better_search_terms = ''; |
|
| 734 | + if (isset($_REQUEST['stype'])) |
|
| 735 | + $post_types = esc_attr(wp_strip_all_tags($_REQUEST['stype'])); |
|
| 736 | + else |
|
| 737 | + $post_types = 'gd_place'; |
|
| 748 | 738 | |
| 749 | - if (!empty($keywords)) {
|
|
| 750 | - foreach ($keywords as $keyword) {
|
|
| 751 | - $keyword = trim($keyword); |
|
| 752 | - if ($keyword != '') {
|
|
| 753 | - //$better_search_terms .= ' OR ' . $wpdb->posts . '.post_title LIKE "%' . $adv_search_val . '%"'; |
|
| 739 | + if ($s != '') {
|
|
| 740 | + $keywords = explode(" ", $s);
|
|
| 741 | + if(is_array($keywords) && $klimit = get_option('geodir_search_word_limit')){
|
|
| 742 | + foreach($keywords as $kkey=>$kword){
|
|
| 743 | + if(mb_strlen($kword, 'UTF-8')<=$klimit){
|
|
| 744 | + unset($keywords[$kkey]); |
|
| 745 | + } |
|
| 746 | + } |
|
| 747 | + } |
|
| 748 | + |
|
| 749 | + if (!empty($keywords)) {
|
|
| 750 | + foreach ($keywords as $keyword) {
|
|
| 751 | + $keyword = trim($keyword); |
|
| 752 | + if ($keyword != '') {
|
|
| 753 | + //$better_search_terms .= ' OR ' . $wpdb->posts . '.post_title LIKE "%' . $adv_search_val . '%"'; |
|
| 754 | 754 | $better_search_terms .= ' OR ( ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '" OR ' . $wpdb->posts . '.post_title LIKE "' . $keyword . '%" OR ' . $wpdb->posts . '.post_title LIKE "% ' . $keyword . '%" )'; |
| 755 | - } |
|
| 756 | - } |
|
| 757 | - } |
|
| 758 | - } |
|
| 755 | + } |
|
| 756 | + } |
|
| 757 | + } |
|
| 758 | + } |
|
| 759 | 759 | |
| 760 | - /* get taxonomy */ |
|
| 761 | - $taxonomies = geodir_get_taxonomies($post_types, true); |
|
| 762 | - if($taxonomies) {
|
|
| 763 | - $taxonomies = implode("','", $taxonomies);
|
|
| 764 | - $taxonomies = "'" . $taxonomies . "'"; |
|
| 765 | - }else{$taxonomies='';}
|
|
| 760 | + /* get taxonomy */ |
|
| 761 | + $taxonomies = geodir_get_taxonomies($post_types, true); |
|
| 762 | + if($taxonomies) {
|
|
| 763 | + $taxonomies = implode("','", $taxonomies);
|
|
| 764 | + $taxonomies = "'" . $taxonomies . "'"; |
|
| 765 | + }else{$taxonomies='';}
|
|
| 766 | 766 | |
| 767 | - $content_where = $terms_where = ''; |
|
| 767 | + $content_where = $terms_where = ''; |
|
| 768 | 768 | if ($s != '') {
|
| 769 | - /** |
|
| 770 | - * Filter the search query content where values. |
|
| 771 | - * |
|
| 772 | - * @since 1.5.0 |
|
| 773 | - * @package GeoDirectory |
|
| 774 | - * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`. |
|
| 775 | - */ |
|
| 769 | + /** |
|
| 770 | + * Filter the search query content where values. |
|
| 771 | + * |
|
| 772 | + * @since 1.5.0 |
|
| 773 | + * @package GeoDirectory |
|
| 774 | + * @param string $content_where The query values, default: `" OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ") "`. |
|
| 775 | + */ |
|
| 776 | 776 | $content_where = apply_filters("geodir_search_content_where"," OR ($wpdb->posts.post_content LIKE \"$s\" OR $wpdb->posts.post_content LIKE \"$s%\" OR $wpdb->posts.post_content LIKE \"% $s%\" OR $wpdb->posts.post_content LIKE \"%>$s%\" OR $wpdb->posts.post_content LIKE \"%\n$s%\") ");
|
| 777 | - /** |
|
| 778 | - * Filter the search query term values. |
|
| 779 | - * |
|
| 780 | - * @since 1.5.0 |
|
| 781 | - * @package GeoDirectory |
|
| 782 | - * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`. |
|
| 783 | - */ |
|
| 784 | - $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
|
|
| 777 | + /** |
|
| 778 | + * Filter the search query term values. |
|
| 779 | + * |
|
| 780 | + * @since 1.5.0 |
|
| 781 | + * @package GeoDirectory |
|
| 782 | + * @param string $terms_where The separator, default: `" AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) "`. |
|
| 783 | + */ |
|
| 784 | + $terms_where = apply_filters("geodir_search_terms_where"," AND ($wpdb->terms.name LIKE \"$s\" OR $wpdb->terms.name LIKE \"$s%\" OR $wpdb->terms.name LIKE \"% $s%\" OR $wpdb->terms.name IN ($s_A)) ");
|
|
| 785 | 785 | } |
| 786 | 786 | |
| 787 | - if ($snear != '') {
|
|
| 788 | - if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
|
|
| 789 | - $dist = $gd_session->get('near_me_range');
|
|
| 790 | - } |
|
| 791 | - $lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69); |
|
| 792 | - $lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69); |
|
| 793 | - $lat1 = $mylat - ($dist / 69); |
|
| 794 | - $lat2 = $mylat + ($dist / 69); |
|
| 795 | - |
|
| 796 | - $rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : ''; |
|
| 797 | - $rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : ''; |
|
| 798 | - $rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : ''; |
|
| 799 | - $rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : ''; |
|
| 800 | - |
|
| 801 | - $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms) |
|
| 787 | + if ($snear != '') {
|
|
| 788 | + if (is_numeric($gd_session->get('near_me_range')) && !isset($_REQUEST['sdist'])) {
|
|
| 789 | + $dist = $gd_session->get('near_me_range');
|
|
| 790 | + } |
|
| 791 | + $lon1 = $mylon - $dist / abs(cos(deg2rad($mylat)) * 69); |
|
| 792 | + $lon2 = $mylon + $dist / abs(cos(deg2rad($mylat)) * 69); |
|
| 793 | + $lat1 = $mylat - ($dist / 69); |
|
| 794 | + $lat2 = $mylat + ($dist / 69); |
|
| 795 | + |
|
| 796 | + $rlon1 = is_numeric(min($lon1, $lon2)) ? min($lon1, $lon2) : ''; |
|
| 797 | + $rlon2 = is_numeric(max($lon1, $lon2)) ? max($lon1, $lon2) : ''; |
|
| 798 | + $rlat1 = is_numeric(min($lat1, $lat2)) ? min($lat1, $lat2) : ''; |
|
| 799 | + $rlat2 = is_numeric(max($lat1, $lat2)) ? max($lat1, $lat2) : ''; |
|
| 800 | + |
|
| 801 | + $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms) |
|
| 802 | 802 | $content_where |
| 803 | 803 | OR ($wpdb->posts.ID IN( |
| 804 | 804 | SELECT $wpdb->term_relationships.object_id as post_id |
@@ -815,13 +815,13 @@ discard block |
||
| 815 | 815 | AND ( " . $table . ".post_latitude between $rlat1 and $rlat2 ) |
| 816 | 816 | AND ( " . $table . ".post_longitude between $rlon1 and $rlon2 ) "; |
| 817 | 817 | |
| 818 | - if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
|
|
| 819 | - $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
|
|
| 820 | - $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
|
|
| 821 | - } |
|
| 818 | + if (isset($_REQUEST['sdist']) && $_REQUEST['sdist'] != 'all') {
|
|
| 819 | + $DistanceRadius = geodir_getDistanceRadius(get_option('geodir_search_dist_1'));
|
|
| 820 | + $where .= " AND CONVERT((" . $DistanceRadius . " * 2 * ASIN(SQRT( POWER(SIN((ABS($mylat) - ABS(" . $table . ".post_latitude)) * pi()/180 / 2), 2) +COS(ABS($mylat) * pi()/180) * COS( ABS(" . $table . ".post_latitude) * pi()/180) *POWER(SIN(($mylon - " . $table . ".post_longitude) * pi()/180 / 2), 2) ))),DECIMAL(64,4)) <= " . $dist;
|
|
| 821 | + } |
|
| 822 | 822 | |
| 823 | - } else {
|
|
| 824 | - $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms) |
|
| 823 | + } else {
|
|
| 824 | + $where .= " AND ( ( $wpdb->posts.post_title LIKE \"$s\" $better_search_terms) |
|
| 825 | 825 | $content_where |
| 826 | 826 | OR ( $wpdb->posts.ID IN( |
| 827 | 827 | SELECT $wpdb->term_relationships.object_id as post_id |
@@ -835,19 +835,19 @@ discard block |
||
| 835 | 835 | ) |
| 836 | 836 | AND $wpdb->posts.post_type in ('$post_types')
|
| 837 | 837 | AND ($wpdb->posts.post_status = 'publish') "; |
| 838 | - } |
|
| 838 | + } |
|
| 839 | 839 | |
| 840 | 840 | ########### WPML ########### |
| 841 | - if ( function_exists( 'icl_object_id' ) ) {
|
|
| 841 | + if ( function_exists( 'icl_object_id' ) ) {
|
|
| 842 | 842 | $lang_code = ICL_LANGUAGE_CODE; |
| 843 | 843 | |
| 844 | 844 | if ($lang_code && $post_types) {
|
| 845 | - $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
|
|
| 846 | - } |
|
| 847 | - } |
|
| 848 | - ########### WPML ########### |
|
| 845 | + $where .= " AND icl_t.language_code = '".$lang_code."' AND icl_t.element_type IN('post_" . $post_types . "') ";
|
|
| 846 | + } |
|
| 847 | + } |
|
| 848 | + ########### WPML ########### |
|
| 849 | 849 | |
| 850 | - return $where; |
|
| 850 | + return $where; |
|
| 851 | 851 | } |
| 852 | 852 | |
| 853 | 853 | |
@@ -862,45 +862,45 @@ discard block |
||
| 862 | 862 | * @return string Modified where query string. |
| 863 | 863 | */ |
| 864 | 864 | function author_filter_where($where) {
|
| 865 | - global $wpdb, $geodir_post_type, $table, $curr; |
|
| 865 | + global $wpdb, $geodir_post_type, $table, $curr; |
|
| 866 | 866 | |
| 867 | - $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
|
|
| 868 | - $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0; |
|
| 867 | + $curauth = (get_query_var('author_name')) ? get_user_by('slug', get_query_var('author_name')) : get_userdata(get_query_var('author'));
|
|
| 868 | + $user_id = !empty($curauth->ID) ? (int)$curauth->ID : 0; |
|
| 869 | 869 | |
| 870 | - if (isset($_REQUEST['stype'])) {
|
|
| 871 | - $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
|
|
| 872 | - } else {
|
|
| 873 | - $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
|
|
| 874 | - } |
|
| 870 | + if (isset($_REQUEST['stype'])) {
|
|
| 871 | + $where = $wpdb->prepare(" AND $wpdb->posts.post_type IN (%s) ",$_REQUEST['stype']);
|
|
| 872 | + } else {
|
|
| 873 | + $where = " AND $wpdb->posts.post_type IN ('gd_place') ";
|
|
| 874 | + } |
|
| 875 | 875 | |
| 876 | - if ($user_id > 0) {
|
|
| 877 | - if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
|
|
| 878 | - $user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true); |
|
| 879 | - $user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
|
|
| 880 | - $where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
|
|
| 881 | - } else |
|
| 882 | - $where .= " AND $wpdb->posts.post_author = $user_id"; |
|
| 883 | - |
|
| 884 | - if ($user_id == (int)get_current_user_id()) {
|
|
| 885 | - $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
|
|
| 886 | - } else {
|
|
| 887 | - $where .= " AND $wpdb->posts.post_status = 'publish' "; |
|
| 888 | - } |
|
| 889 | - } else {
|
|
| 890 | - $where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' "; |
|
| 891 | - } |
|
| 876 | + if ($user_id > 0) {
|
|
| 877 | + if (isset($_REQUEST['list']) && $_REQUEST['list'] == 'favourite') {
|
|
| 878 | + $user_fav_posts = get_user_meta($user_id, 'gd_user_favourite_post', true); |
|
| 879 | + $user_fav_posts = !empty($user_fav_posts) && is_array($user_fav_posts) ? implode("','", $user_fav_posts) : '-1';
|
|
| 880 | + $where .= " AND $wpdb->posts.ID IN ('$user_fav_posts')";
|
|
| 881 | + } else |
|
| 882 | + $where .= " AND $wpdb->posts.post_author = $user_id"; |
|
| 883 | + |
|
| 884 | + if ($user_id == (int)get_current_user_id()) {
|
|
| 885 | + $where .= " AND $wpdb->posts.post_status IN ('publish','draft','pending') ";
|
|
| 886 | + } else {
|
|
| 887 | + $where .= " AND $wpdb->posts.post_status = 'publish' "; |
|
| 888 | + } |
|
| 889 | + } else {
|
|
| 890 | + $where .= " AND $wpdb->posts.post_author = '-1' AND $wpdb->posts.post_status = 'publish' "; |
|
| 891 | + } |
|
| 892 | 892 | |
| 893 | - ########### WPML ########### |
|
| 894 | - if (function_exists('icl_object_id')) {
|
|
| 895 | - $lang_code = ICL_LANGUAGE_CODE; |
|
| 896 | - if ($lang_code) {
|
|
| 897 | - $where .= " AND icl_t.language_code='" . $lang_code . "' "; |
|
| 898 | - } |
|
| 893 | + ########### WPML ########### |
|
| 894 | + if (function_exists('icl_object_id')) {
|
|
| 895 | + $lang_code = ICL_LANGUAGE_CODE; |
|
| 896 | + if ($lang_code) {
|
|
| 897 | + $where .= " AND icl_t.language_code='" . $lang_code . "' "; |
|
| 898 | + } |
|
| 899 | 899 | |
| 900 | - } |
|
| 901 | - ########### WPML ########### |
|
| 900 | + } |
|
| 901 | + ########### WPML ########### |
|
| 902 | 902 | |
| 903 | - return $where; |
|
| 903 | + return $where; |
|
| 904 | 904 | } |
| 905 | 905 | |
| 906 | 906 | /** |
@@ -915,11 +915,11 @@ discard block |
||
| 915 | 915 | */ |
| 916 | 916 | function geodir_filter_widget_join($join) |
| 917 | 917 | {
|
| 918 | - global $wp_query, $table; |
|
| 919 | - if (!empty($wp_query->query['with_pics_only'])) {
|
|
| 920 | - $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )"; |
|
| 921 | - } |
|
| 922 | - return $join; |
|
| 918 | + global $wp_query, $table; |
|
| 919 | + if (!empty($wp_query->query['with_pics_only'])) {
|
|
| 920 | + $join .= " LEFT JOIN " . GEODIR_ATTACHMENT_TABLE . " ON ( " . GEODIR_ATTACHMENT_TABLE . ".post_id=" . $table . ".post_id AND " . GEODIR_ATTACHMENT_TABLE . ".mime_type LIKE '%image%' )"; |
|
| 921 | + } |
|
| 922 | + return $join; |
|
| 923 | 923 | } |
| 924 | 924 | |
| 925 | 925 | /** |
@@ -934,18 +934,18 @@ discard block |
||
| 934 | 934 | */ |
| 935 | 935 | function geodir_filter_widget_where($where) |
| 936 | 936 | {
|
| 937 | - global $wp_query, $table; |
|
| 938 | - if (!empty($wp_query->query['show_featured_only'])) {
|
|
| 939 | - $where .= " AND " . $table . ".is_featured = '1'"; |
|
| 940 | - } |
|
| 941 | - if (!empty($wp_query->query['show_special_only'])) {
|
|
| 942 | - $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )"; |
|
| 943 | - } |
|
| 944 | - if (!empty($wp_query->query['with_pics_only'])) {
|
|
| 945 | - $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id"; |
|
| 946 | - } |
|
| 947 | - if (!empty($wp_query->query['with_videos_only'])) {
|
|
| 948 | - $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )"; |
|
| 949 | - } |
|
| 950 | - return $where; |
|
| 937 | + global $wp_query, $table; |
|
| 938 | + if (!empty($wp_query->query['show_featured_only'])) {
|
|
| 939 | + $where .= " AND " . $table . ".is_featured = '1'"; |
|
| 940 | + } |
|
| 941 | + if (!empty($wp_query->query['show_special_only'])) {
|
|
| 942 | + $where .= " AND ( " . $table . ".geodir_special_offers != '' AND " . $table . ".geodir_special_offers IS NOT NULL )"; |
|
| 943 | + } |
|
| 944 | + if (!empty($wp_query->query['with_pics_only'])) {
|
|
| 945 | + $where .= " AND " . GEODIR_ATTACHMENT_TABLE . ".ID IS NOT NULL GROUP BY " . $table . ".post_id"; |
|
| 946 | + } |
|
| 947 | + if (!empty($wp_query->query['with_videos_only'])) {
|
|
| 948 | + $where .= " AND ( " . $table . ".geodir_video != '' AND " . $table . ".geodir_video IS NOT NULL )"; |
|
| 949 | + } |
|
| 950 | + return $where; |
|
| 951 | 951 | } |
| 952 | 952 | \ No newline at end of file |