@@ -20,479 +20,479 @@ discard block |
||
| 20 | 20 | function geodir_set_postcat_structure($post_id, $taxonomy, $default_cat = '', $category_str = '') |
| 21 | 21 | {
|
| 22 | 22 | |
| 23 | - $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
|
| 24 | - if (!empty($post_cat_ids)) |
|
| 25 | - $post_cat_array = explode(",", trim($post_cat_ids, ","));
|
|
| 26 | - |
|
| 27 | - if (!isset($default_cat) || empty($default_cat)) {
|
|
| 28 | - $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
|
| 29 | - }else{
|
|
| 30 | - if(!is_int($default_cat)){
|
|
| 31 | - $category = get_term_by('name', $default_cat, $taxonomy);
|
|
| 32 | - if(isset($category->term_id)){
|
|
| 33 | - $default_cat = $category->term_id; |
|
| 34 | - } |
|
| 35 | - } |
|
| 23 | + $post_cat_ids = geodir_get_post_meta($post_id, $taxonomy); |
|
| 24 | + if (!empty($post_cat_ids)) |
|
| 25 | + $post_cat_array = explode(",", trim($post_cat_ids, ","));
|
|
| 26 | + |
|
| 27 | + if (!isset($default_cat) || empty($default_cat)) {
|
|
| 28 | + $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
|
| 29 | + }else{
|
|
| 30 | + if(!is_int($default_cat)){
|
|
| 31 | + $category = get_term_by('name', $default_cat, $taxonomy);
|
|
| 32 | + if(isset($category->term_id)){
|
|
| 33 | + $default_cat = $category->term_id; |
|
| 34 | + } |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - } |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | 39 | |
| 40 | - geodir_save_post_meta($post_id, 'default_category', $default_cat); |
|
| 40 | + geodir_save_post_meta($post_id, 'default_category', $default_cat); |
|
| 41 | 41 | |
| 42 | - if (isset($category_str) && empty($category_str)) {
|
|
| 42 | + if (isset($category_str) && empty($category_str)) {
|
|
| 43 | 43 | |
| 44 | - $post_cat_str = ''; |
|
| 45 | - $post_categories = array(); |
|
| 46 | - if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
|
|
| 47 | - $post_cat_str = implode(",y:#", $post_cat_array);
|
|
| 48 | - $post_cat_str .= ",y:"; |
|
| 49 | - $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
|
|
| 50 | - } |
|
| 51 | - $post_categories[$taxonomy] = $post_cat_str; |
|
| 52 | - $category_str = $post_categories; |
|
| 53 | - } |
|
| 44 | + $post_cat_str = ''; |
|
| 45 | + $post_categories = array(); |
|
| 46 | + if (isset($post_cat_array) && is_array($post_cat_array) && !empty($post_cat_array)) {
|
|
| 47 | + $post_cat_str = implode(",y:#", $post_cat_array);
|
|
| 48 | + $post_cat_str .= ",y:"; |
|
| 49 | + $post_cat_str = substr_replace($post_cat_str, ',y,d:', strpos($post_cat_str, ',y:'), strlen(',y:'));
|
|
| 50 | + } |
|
| 51 | + $post_categories[$taxonomy] = $post_cat_str; |
|
| 52 | + $category_str = $post_categories; |
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - $change_cat_str = $category_str[$taxonomy]; |
|
| 55 | + $change_cat_str = $category_str[$taxonomy]; |
|
| 56 | 56 | |
| 57 | - $default_pos = strpos($change_cat_str, 'd:'); |
|
| 57 | + $default_pos = strpos($change_cat_str, 'd:'); |
|
| 58 | 58 | |
| 59 | - if ($default_pos === false) {
|
|
| 59 | + if ($default_pos === false) {
|
|
| 60 | 60 | |
| 61 | - $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
| 61 | + $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
| 62 | 62 | |
| 63 | - } |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | - $category_str[$taxonomy] = $change_cat_str; |
|
| 65 | + $category_str[$taxonomy] = $change_cat_str; |
|
| 66 | 66 | |
| 67 | - update_post_meta($post_id, 'post_categories', $category_str); |
|
| 67 | + update_post_meta($post_id, 'post_categories', $category_str); |
|
| 68 | 68 | |
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | |
| 72 | 72 | if (!function_exists('geodir_save_listing')) {
|
| 73 | - /** |
|
| 74 | - * Saves listing in the database using given information. |
|
| 75 | - * |
|
| 76 | - * @since 1.0.0 |
|
| 77 | - * @since 1.5.4 New parameter $wp_error added. |
|
| 78 | - * @package GeoDirectory |
|
| 79 | - * @global object $wpdb WordPress Database object. |
|
| 80 | - * @global object $post The current post object. |
|
| 81 | - * @global object $current_user Current user object. |
|
| 73 | + /** |
|
| 74 | + * Saves listing in the database using given information. |
|
| 75 | + * |
|
| 76 | + * @since 1.0.0 |
|
| 77 | + * @since 1.5.4 New parameter $wp_error added. |
|
| 78 | + * @package GeoDirectory |
|
| 79 | + * @global object $wpdb WordPress Database object. |
|
| 80 | + * @global object $post The current post object. |
|
| 81 | + * @global object $current_user Current user object. |
|
| 82 | 82 | * @global object $gd_session GeoDirectory Session object. |
| 83 | - * @param array $request_info {
|
|
| 84 | - * Array of request info arguments. |
|
| 85 | - * |
|
| 86 | - * @type string $action Ajax action name. |
|
| 87 | - * @type string $geodir_ajax Ajax type. |
|
| 88 | - * @type string $ajax_action Ajax action. |
|
| 89 | - * @type string $listing_type Listing type. |
|
| 90 | - * @type string $pid Default Post ID. |
|
| 91 | - * @type string $preview Todo Desc needed. |
|
| 92 | - * @type string $add_listing_page_id Add listing page ID. |
|
| 93 | - * @type string $post_title Listing title. |
|
| 94 | - * @type string $post_desc Listing Description. |
|
| 95 | - * @type string $post_tags Listing tags. |
|
| 96 | - * @type array $cat_limit Category limit. |
|
| 97 | - * @type array $post_category Category IDs. |
|
| 98 | - * @type array $post_category_str Category string. |
|
| 99 | - * @type string $post_default_category Default category ID. |
|
| 100 | - * @type string $post_address Listing address. |
|
| 101 | - * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
| 102 | - * @type string $post_country Listing country. |
|
| 103 | - * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
| 104 | - * @type string $post_region Listing region. |
|
| 105 | - * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
| 106 | - * @type string $post_city Listing city. |
|
| 107 | - * @type string $post_zip Listing zip. |
|
| 108 | - * @type string $post_latitude Listing latitude. |
|
| 109 | - * @type string $post_longitude Listing longitude. |
|
| 110 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 111 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 112 | - * @type string $geodir_timing Business timing info. |
|
| 113 | - * @type string $geodir_contact Contact number. |
|
| 114 | - * @type string $geodir_email Business contact email. |
|
| 115 | - * @type string $geodir_website Business website. |
|
| 116 | - * @type string $geodir_twitter Twitter link. |
|
| 117 | - * @type string $geodir_facebook Facebook link. |
|
| 118 | - * @type string $geodir_video Video link. |
|
| 119 | - * @type string $geodir_special_offers Speacial offers. |
|
| 120 | - * @type string $post_images Post image urls. |
|
| 121 | - * @type string $post_imagesimage_limit Post images limit. |
|
| 122 | - * @type string $post_imagestotImg Todo Desc needed. |
|
| 123 | - * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
| 124 | - * @type string $geodir_spamblocker Todo Desc needed. |
|
| 125 | - * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
| 126 | - * |
|
| 127 | - * } |
|
| 128 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 129 | - * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
| 130 | - * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
| 131 | - */ |
|
| 132 | - function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
| 133 | - {
|
|
| 134 | - global $wpdb, $current_user, $gd_session; |
|
| 135 | - |
|
| 136 | - $last_post_id = ''; |
|
| 137 | - |
|
| 138 | - if ($gd_session->get('listing') && !$dummy) {
|
|
| 139 | - $request_info = array(); |
|
| 140 | - $request_session = $gd_session->get('listing');
|
|
| 141 | - $request_info = array_merge($_REQUEST, $request_session); |
|
| 142 | - } else if (!$gd_session->get('listing') && !$dummy) {
|
|
| 143 | - global $post; |
|
| 144 | - $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 145 | - $request_info['post_title'] = $request_info['post_title']; |
|
| 146 | - $request_info['listing_type'] = $post->post_type; |
|
| 147 | - $request_info['post_desc'] = $request_info['content']; |
|
| 148 | - } else if (!$dummy) {
|
|
| 149 | - return false; |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - /** |
|
| 153 | - * Filter the request_info array. |
|
| 154 | - * |
|
| 155 | - * You can use this filter to modify request_info array. |
|
| 156 | - * |
|
| 157 | - * @since 1.0.0 |
|
| 158 | - * @package GeoDirectory |
|
| 159 | - * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 160 | - */ |
|
| 161 | - $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 162 | - |
|
| 163 | - // Check if we need to save post location as new location |
|
| 164 | - $location_result = geodir_get_default_location(); |
|
| 165 | - |
|
| 166 | - if ($location_result->location_id > 0) {
|
|
| 167 | - if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 168 | - $request_info['post_location'] = array( |
|
| 169 | - 'city' => $request_info['post_city'], |
|
| 170 | - 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 171 | - 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 172 | - 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 173 | - 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 174 | - ); |
|
| 175 | - |
|
| 176 | - $post_location_info = $request_info['post_location']; |
|
| 177 | - |
|
| 178 | - if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 179 | - $post_location_id = $location_id; |
|
| 180 | - } |
|
| 181 | - } else {
|
|
| 182 | - $post_location_id = $location_result->location_id; |
|
| 183 | - } |
|
| 184 | - } else {
|
|
| 185 | - $post_location_id = $location_result->location_id; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - if ($dummy) {
|
|
| 189 | - $post_status = 'publish'; |
|
| 190 | - } else {
|
|
| 191 | - $post_status = geodir_new_post_default_status(); |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 195 | - $post_status = get_post_status($request_info['pid']); |
|
| 196 | - } |
|
| 197 | - |
|
| 198 | - /* fix change of slug on every title edit */ |
|
| 199 | - if (!isset($request_info['post_name'])) {
|
|
| 200 | - $request_info['post_name'] = $request_info['post_title']; |
|
| 201 | - |
|
| 202 | - if (!empty($request_info['pid'])) {
|
|
| 203 | - $post_info = get_post($request_info['pid']); |
|
| 204 | - |
|
| 205 | - if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 206 | - $request_info['post_name'] = $post_info->post_name; |
|
| 207 | - } |
|
| 208 | - } |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - $post = array( |
|
| 212 | - 'post_content' => $request_info['post_desc'], |
|
| 213 | - 'post_status' => $post_status, |
|
| 214 | - 'post_title' => $request_info['post_title'], |
|
| 215 | - 'post_name' => $request_info['post_name'], |
|
| 216 | - 'post_type' => $request_info['listing_type'] |
|
| 217 | - ); |
|
| 218 | - |
|
| 219 | - /** |
|
| 220 | - * Called before a listing is saved to the database. |
|
| 221 | - * |
|
| 222 | - * @since 1.0.0 |
|
| 223 | - * @param object $post The post object. |
|
| 224 | - */ |
|
| 225 | - do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 83 | + * @param array $request_info {
|
|
| 84 | + * Array of request info arguments. |
|
| 85 | + * |
|
| 86 | + * @type string $action Ajax action name. |
|
| 87 | + * @type string $geodir_ajax Ajax type. |
|
| 88 | + * @type string $ajax_action Ajax action. |
|
| 89 | + * @type string $listing_type Listing type. |
|
| 90 | + * @type string $pid Default Post ID. |
|
| 91 | + * @type string $preview Todo Desc needed. |
|
| 92 | + * @type string $add_listing_page_id Add listing page ID. |
|
| 93 | + * @type string $post_title Listing title. |
|
| 94 | + * @type string $post_desc Listing Description. |
|
| 95 | + * @type string $post_tags Listing tags. |
|
| 96 | + * @type array $cat_limit Category limit. |
|
| 97 | + * @type array $post_category Category IDs. |
|
| 98 | + * @type array $post_category_str Category string. |
|
| 99 | + * @type string $post_default_category Default category ID. |
|
| 100 | + * @type string $post_address Listing address. |
|
| 101 | + * @type string $geodir_location_add_listing_country_val Add listing country value. |
|
| 102 | + * @type string $post_country Listing country. |
|
| 103 | + * @type string $geodir_location_add_listing_region_val Add listing region value. |
|
| 104 | + * @type string $post_region Listing region. |
|
| 105 | + * @type string $geodir_location_add_listing_city_val Add listing city value. |
|
| 106 | + * @type string $post_city Listing city. |
|
| 107 | + * @type string $post_zip Listing zip. |
|
| 108 | + * @type string $post_latitude Listing latitude. |
|
| 109 | + * @type string $post_longitude Listing longitude. |
|
| 110 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 111 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 112 | + * @type string $geodir_timing Business timing info. |
|
| 113 | + * @type string $geodir_contact Contact number. |
|
| 114 | + * @type string $geodir_email Business contact email. |
|
| 115 | + * @type string $geodir_website Business website. |
|
| 116 | + * @type string $geodir_twitter Twitter link. |
|
| 117 | + * @type string $geodir_facebook Facebook link. |
|
| 118 | + * @type string $geodir_video Video link. |
|
| 119 | + * @type string $geodir_special_offers Speacial offers. |
|
| 120 | + * @type string $post_images Post image urls. |
|
| 121 | + * @type string $post_imagesimage_limit Post images limit. |
|
| 122 | + * @type string $post_imagestotImg Todo Desc needed. |
|
| 123 | + * @type string $geodir_accept_term_condition Has accepted terms and conditions?. |
|
| 124 | + * @type string $geodir_spamblocker Todo Desc needed. |
|
| 125 | + * @type string $geodir_filled_by_spam_bot Todo Desc needed. |
|
| 126 | + * |
|
| 127 | + * } |
|
| 128 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 129 | + * @param bool $wp_error Optional. Allow return of WP_Error on failure. Default false. |
|
| 130 | + * @return int|string|WP_Error Created post id or WP_Error on failure. |
|
| 131 | + */ |
|
| 132 | + function geodir_save_listing($request_info = array(), $dummy = false, $wp_error = false) |
|
| 133 | + {
|
|
| 134 | + global $wpdb, $current_user, $gd_session; |
|
| 135 | + |
|
| 136 | + $last_post_id = ''; |
|
| 137 | + |
|
| 138 | + if ($gd_session->get('listing') && !$dummy) {
|
|
| 139 | + $request_info = array(); |
|
| 140 | + $request_session = $gd_session->get('listing');
|
|
| 141 | + $request_info = array_merge($_REQUEST, $request_session); |
|
| 142 | + } else if (!$gd_session->get('listing') && !$dummy) {
|
|
| 143 | + global $post; |
|
| 144 | + $request_info['pid'] = !empty($post->ID) ? $post->ID : (!empty($request_info['post_id']) ? $request_info['post_id'] : NULL); |
|
| 145 | + $request_info['post_title'] = $request_info['post_title']; |
|
| 146 | + $request_info['listing_type'] = $post->post_type; |
|
| 147 | + $request_info['post_desc'] = $request_info['content']; |
|
| 148 | + } else if (!$dummy) {
|
|
| 149 | + return false; |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + /** |
|
| 153 | + * Filter the request_info array. |
|
| 154 | + * |
|
| 155 | + * You can use this filter to modify request_info array. |
|
| 156 | + * |
|
| 157 | + * @since 1.0.0 |
|
| 158 | + * @package GeoDirectory |
|
| 159 | + * @param array $request_info See {@see geodir_save_listing()} for accepted args.
|
|
| 160 | + */ |
|
| 161 | + $request_info = apply_filters('geodir_action_get_request_info', $request_info);
|
|
| 162 | + |
|
| 163 | + // Check if we need to save post location as new location |
|
| 164 | + $location_result = geodir_get_default_location(); |
|
| 165 | + |
|
| 166 | + if ($location_result->location_id > 0) {
|
|
| 167 | + if (isset($request_info['post_city']) && isset($request_info['post_region'])) {
|
|
| 168 | + $request_info['post_location'] = array( |
|
| 169 | + 'city' => $request_info['post_city'], |
|
| 170 | + 'region' => isset($request_info['post_region']) ? $request_info['post_region'] : '', |
|
| 171 | + 'country' => isset($request_info['post_country']) ? $request_info['post_country'] : '', |
|
| 172 | + 'geo_lat' => isset($request_info['post_latitude']) ? $request_info['post_latitude'] : '', |
|
| 173 | + 'geo_lng' => isset($request_info['post_longitude']) ? $request_info['post_longitude'] : '' |
|
| 174 | + ); |
|
| 175 | + |
|
| 176 | + $post_location_info = $request_info['post_location']; |
|
| 177 | + |
|
| 178 | + if ($location_id = geodir_add_new_location($post_location_info)) {
|
|
| 179 | + $post_location_id = $location_id; |
|
| 180 | + } |
|
| 181 | + } else {
|
|
| 182 | + $post_location_id = $location_result->location_id; |
|
| 183 | + } |
|
| 184 | + } else {
|
|
| 185 | + $post_location_id = $location_result->location_id; |
|
| 186 | + } |
|
| 226 | 187 | |
| 227 | - $send_post_submit_mail = false; |
|
| 188 | + if ($dummy) {
|
|
| 189 | + $post_status = 'publish'; |
|
| 190 | + } else {
|
|
| 191 | + $post_status = geodir_new_post_default_status(); |
|
| 192 | + } |
|
| 228 | 193 | |
| 229 | - // unhook this function so it doesn't loop infinitely |
|
| 230 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 194 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 195 | + $post_status = get_post_status($request_info['pid']); |
|
| 196 | + } |
|
| 231 | 197 | |
| 232 | - if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 233 | - $post['ID'] = $request_info['pid']; |
|
| 198 | + /* fix change of slug on every title edit */ |
|
| 199 | + if (!isset($request_info['post_name'])) {
|
|
| 200 | + $request_info['post_name'] = $request_info['post_title']; |
|
| 234 | 201 | |
| 235 | - $last_post_id = wp_update_post($post, $wp_error); |
|
| 236 | - } else {
|
|
| 237 | - $last_post_id = wp_insert_post($post, $wp_error); |
|
| 202 | + if (!empty($request_info['pid'])) {
|
|
| 203 | + $post_info = get_post($request_info['pid']); |
|
| 238 | 204 | |
| 239 | - if (!$dummy && $last_post_id) {
|
|
| 240 | - $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
| 241 | - //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 242 | - } |
|
| 243 | - } |
|
| 205 | + if (!empty($post_info) && isset($post_info->post_name)) {
|
|
| 206 | + $request_info['post_name'] = $post_info->post_name; |
|
| 207 | + } |
|
| 208 | + } |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + $post = array( |
|
| 212 | + 'post_content' => $request_info['post_desc'], |
|
| 213 | + 'post_status' => $post_status, |
|
| 214 | + 'post_title' => $request_info['post_title'], |
|
| 215 | + 'post_name' => $request_info['post_name'], |
|
| 216 | + 'post_type' => $request_info['listing_type'] |
|
| 217 | + ); |
|
| 218 | + |
|
| 219 | + /** |
|
| 220 | + * Called before a listing is saved to the database. |
|
| 221 | + * |
|
| 222 | + * @since 1.0.0 |
|
| 223 | + * @param object $post The post object. |
|
| 224 | + */ |
|
| 225 | + do_action_ref_array('geodir_before_save_listing', $post);
|
|
| 226 | + |
|
| 227 | + $send_post_submit_mail = false; |
|
| 228 | + |
|
| 229 | + // unhook this function so it doesn't loop infinitely |
|
| 230 | + remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 231 | + |
|
| 232 | + if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
|
| 233 | + $post['ID'] = $request_info['pid']; |
|
| 234 | + |
|
| 235 | + $last_post_id = wp_update_post($post, $wp_error); |
|
| 236 | + } else {
|
|
| 237 | + $last_post_id = wp_insert_post($post, $wp_error); |
|
| 238 | + |
|
| 239 | + if (!$dummy && $last_post_id) {
|
|
| 240 | + $send_post_submit_mail = true; // we move post_submit email from here so the rest of the variables are added to the db first(was breaking permalink in email) |
|
| 241 | + //geodir_sendEmail('','',$current_user->user_email,$current_user->display_name,'','',$request_info,'post_submit',$last_post_id,$current_user->ID);
|
|
| 242 | + } |
|
| 243 | + } |
|
| 244 | 244 | |
| 245 | - if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 246 | - return $last_post_id; // Return WP_Error on save failure. |
|
| 247 | - } |
|
| 245 | + if ($wp_error && is_wp_error($last_post_id)) {
|
|
| 246 | + return $last_post_id; // Return WP_Error on save failure. |
|
| 247 | + } |
|
| 248 | 248 | |
| 249 | - if (!$last_post_id) {
|
|
| 250 | - return false; // Save failure. |
|
| 251 | - } |
|
| 249 | + if (!$last_post_id) {
|
|
| 250 | + return false; // Save failure. |
|
| 251 | + } |
|
| 252 | 252 | |
| 253 | - // re-hook this function |
|
| 254 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 253 | + // re-hook this function |
|
| 254 | + add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 255 | 255 | |
| 256 | - $post_tags = ''; |
|
| 257 | - if (!isset($request_info['post_tags'])) {
|
|
| 256 | + $post_tags = ''; |
|
| 257 | + if (!isset($request_info['post_tags'])) {
|
|
| 258 | 258 | |
| 259 | - $post_type = $request_info['listing_type']; |
|
| 260 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 259 | + $post_type = $request_info['listing_type']; |
|
| 260 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 261 | 261 | |
| 262 | - } |
|
| 262 | + } |
|
| 263 | 263 | |
| 264 | - $gd_post_info = array( |
|
| 265 | - "post_title" => $request_info['post_title'], |
|
| 266 | - "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 267 | - "post_status" => $post_status, |
|
| 268 | - "post_location_id" => $post_location_id, |
|
| 269 | - "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 270 | - "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 271 | - "submit_time" => time(), |
|
| 272 | - "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 273 | - ); |
|
| 264 | + $gd_post_info = array( |
|
| 265 | + "post_title" => $request_info['post_title'], |
|
| 266 | + "post_tags" => isset($request_info['post_tags']) ? $request_info['post_tags'] : $post_tags, |
|
| 267 | + "post_status" => $post_status, |
|
| 268 | + "post_location_id" => $post_location_id, |
|
| 269 | + "claimed" => isset($request_info['claimed']) ? $request_info['claimed'] : '', |
|
| 270 | + "businesses" => isset($request_info['a_businesses']) ? $request_info['a_businesses'] : '', |
|
| 271 | + "submit_time" => time(), |
|
| 272 | + "submit_ip" => $_SERVER['REMOTE_ADDR'], |
|
| 273 | + ); |
|
| 274 | 274 | |
| 275 | - $payment_info = array(); |
|
| 276 | - $package_info = array(); |
|
| 275 | + $payment_info = array(); |
|
| 276 | + $package_info = array(); |
|
| 277 | 277 | |
| 278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 278 | + $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 279 | 279 | |
| 280 | - $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 280 | + $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
|
| 281 | 281 | |
| 282 | - if (!empty($package_info) && !$post_package_id) {
|
|
| 283 | - if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 284 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 285 | - } else {
|
|
| 286 | - $payment_info['expire_date'] = 'Never'; |
|
| 287 | - } |
|
| 282 | + if (!empty($package_info) && !$post_package_id) {
|
|
| 283 | + if (isset($package_info['days']) && $package_info['days'] != 0) {
|
|
| 284 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 285 | + } else {
|
|
| 286 | + $payment_info['expire_date'] = 'Never'; |
|
| 287 | + } |
|
| 288 | 288 | |
| 289 | - $payment_info['package_id'] = $package_info['pid']; |
|
| 290 | - $payment_info['alive_days'] = $package_info['days']; |
|
| 291 | - $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 289 | + $payment_info['package_id'] = $package_info['pid']; |
|
| 290 | + $payment_info['alive_days'] = $package_info['days']; |
|
| 291 | + $payment_info['is_featured'] = $package_info['is_featured']; |
|
| 292 | 292 | |
| 293 | - $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 294 | - } |
|
| 293 | + $gd_post_info = array_merge($gd_post_info, $payment_info); |
|
| 294 | + } |
|
| 295 | 295 | |
| 296 | - $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 296 | + $custom_metaboxes = geodir_post_custom_fields('', 'all', $request_info['listing_type']);
|
|
| 297 | 297 | |
| 298 | - foreach ($custom_metaboxes as $key => $val): |
|
| 298 | + foreach ($custom_metaboxes as $key => $val): |
|
| 299 | 299 | |
| 300 | - $name = $val['name']; |
|
| 301 | - $type = $val['type']; |
|
| 302 | - $extrafields = $val['extra_fields']; |
|
| 300 | + $name = $val['name']; |
|
| 301 | + $type = $val['type']; |
|
| 302 | + $extrafields = $val['extra_fields']; |
|
| 303 | 303 | |
| 304 | - if (trim($type) == 'address') {
|
|
| 305 | - $prefix = $name . '_'; |
|
| 306 | - $address = $prefix . 'address'; |
|
| 304 | + if (trim($type) == 'address') {
|
|
| 305 | + $prefix = $name . '_'; |
|
| 306 | + $address = $prefix . 'address'; |
|
| 307 | 307 | |
| 308 | - if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 309 | - $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
| 310 | - } |
|
| 308 | + if (isset($request_info[$address]) && $request_info[$address] != '') {
|
|
| 309 | + $gd_post_info[$address] = wp_slash($request_info[$address]); |
|
| 310 | + } |
|
| 311 | 311 | |
| 312 | - if ($extrafields != '') {
|
|
| 313 | - $extrafields = unserialize($extrafields); |
|
| 312 | + if ($extrafields != '') {
|
|
| 313 | + $extrafields = unserialize($extrafields); |
|
| 314 | 314 | |
| 315 | 315 | |
| 316 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 316 | + if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 317 | 317 | |
| 318 | - $location_result = geodir_get_default_location(); |
|
| 318 | + $location_result = geodir_get_default_location(); |
|
| 319 | 319 | |
| 320 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 320 | + $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | + $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | + $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 323 | 323 | |
| 324 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 324 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 325 | 325 | |
| 326 | - } else {
|
|
| 326 | + } else {
|
|
| 327 | 327 | |
| 328 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 328 | + $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | + $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | + $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 331 | 331 | |
| 332 | - //----------set post locations when import dummy data------- |
|
| 333 | - $location_result = geodir_get_default_location(); |
|
| 332 | + //----------set post locations when import dummy data------- |
|
| 333 | + $location_result = geodir_get_default_location(); |
|
| 334 | 334 | |
| 335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 336 | - //----------------------------------------------------------------- |
|
| 335 | + $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 336 | + //----------------------------------------------------------------- |
|
| 337 | 337 | |
| 338 | - } |
|
| 338 | + } |
|
| 339 | 339 | |
| 340 | 340 | |
| 341 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 343 | - } |
|
| 341 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | + $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | 345 | |
| 346 | - if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 346 | + if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
|
| 347 | 347 | |
| 348 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 350 | - } |
|
| 348 | + if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | + $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 354 | - } |
|
| 352 | + if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | + $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 354 | + } |
|
| 355 | 355 | |
| 356 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 358 | - } |
|
| 356 | + if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | + $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 358 | + } |
|
| 359 | 359 | |
| 360 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 362 | - } |
|
| 360 | + if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | + $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 362 | + } |
|
| 363 | 363 | |
| 364 | - } |
|
| 364 | + } |
|
| 365 | 365 | |
| 366 | - // show lat lng |
|
| 367 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 369 | - } |
|
| 370 | - } |
|
| 366 | + // show lat lng |
|
| 367 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | + $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 369 | + } |
|
| 370 | + } |
|
| 371 | 371 | |
| 372 | - } elseif (trim($type) == 'file') {
|
|
| 373 | - if (isset($request_info[$name])) {
|
|
| 374 | - $request_files = array(); |
|
| 375 | - if ($request_info[$name] != '') |
|
| 376 | - $request_files = explode(",", $request_info[$name]);
|
|
| 372 | + } elseif (trim($type) == 'file') {
|
|
| 373 | + if (isset($request_info[$name])) {
|
|
| 374 | + $request_files = array(); |
|
| 375 | + if ($request_info[$name] != '') |
|
| 376 | + $request_files = explode(",", $request_info[$name]);
|
|
| 377 | 377 | |
| 378 | - $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 379 | - geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 378 | + $extrafields = $extrafields != '' ? maybe_unserialize($extrafields) : NULL; |
|
| 379 | + geodir_save_post_file_fields($last_post_id, $name, $request_files, $extrafields); |
|
| 380 | 380 | |
| 381 | - } |
|
| 382 | - } elseif (trim($type) == 'datepicker') {
|
|
| 383 | - $datetime = ''; |
|
| 384 | - if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 385 | - $date_format = geodir_default_date_format(); |
|
| 386 | - if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 387 | - $extra_fields = unserialize($val['extra_fields']); |
|
| 388 | - $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 389 | - } |
|
| 381 | + } |
|
| 382 | + } elseif (trim($type) == 'datepicker') {
|
|
| 383 | + $datetime = ''; |
|
| 384 | + if (isset($request_info[$name]) && $request_info[$name] != '') {
|
|
| 385 | + $date_format = geodir_default_date_format(); |
|
| 386 | + if (isset($val['extra_fields']) && $val['extra_fields'] != '') {
|
|
| 387 | + $extra_fields = unserialize($val['extra_fields']); |
|
| 388 | + $date_format = isset($extra_fields['date_format']) && $extra_fields['date_format'] != '' ? $extra_fields['date_format'] : $date_format; |
|
| 389 | + } |
|
| 390 | 390 | |
| 391 | - // check if we need to change the format or not |
|
| 392 | - $date_format_len = strlen(str_replace(' ', '', $date_format));
|
|
| 393 | - if($date_format_len>5){// if greater then 5 then it's the old style format.
|
|
| 391 | + // check if we need to change the format or not |
|
| 392 | + $date_format_len = strlen(str_replace(' ', '', $date_format));
|
|
| 393 | + if($date_format_len>5){// if greater then 5 then it's the old style format.
|
|
| 394 | 394 | |
| 395 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
|
|
| 396 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format
|
|
| 395 | + $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
|
|
| 396 | + $replace = array('d','j','l','m','n','F','Y');//PHP date format
|
|
| 397 | 397 | |
| 398 | - $date_format = str_replace($search, $replace, $date_format); |
|
| 398 | + $date_format = str_replace($search, $replace, $date_format); |
|
| 399 | 399 | |
| 400 | - $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
|
|
| 400 | + $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
|
|
| 401 | 401 | |
| 402 | - }else{
|
|
| 403 | - $post_htmlvar_value = $request_info[$name]; |
|
| 404 | - } |
|
| 402 | + }else{
|
|
| 403 | + $post_htmlvar_value = $request_info[$name]; |
|
| 404 | + } |
|
| 405 | 405 | |
| 406 | - $post_htmlvar_value = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
| 406 | + $post_htmlvar_value = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
| 407 | 407 | |
| 408 | - $datetime = date("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
|
|
| 408 | + $datetime = date("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
|
|
| 409 | 409 | |
| 410 | - } |
|
| 411 | - $gd_post_info[$name] = $datetime; |
|
| 412 | - } else if ($type == 'multiselect') {
|
|
| 413 | - if (isset($request_info[$name])) {
|
|
| 414 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 415 | - } else {
|
|
| 416 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 417 | - $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 418 | - } |
|
| 419 | - } |
|
| 420 | - } else if (isset($request_info[$name])) {
|
|
| 421 | - $gd_post_info[$name] = $request_info[$name]; |
|
| 422 | - } |
|
| 410 | + } |
|
| 411 | + $gd_post_info[$name] = $datetime; |
|
| 412 | + } else if ($type == 'multiselect') {
|
|
| 413 | + if (isset($request_info[$name])) {
|
|
| 414 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 415 | + } else {
|
|
| 416 | + if (isset($request_info['gd_field_' . $name])) {
|
|
| 417 | + $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
|
| 418 | + } |
|
| 419 | + } |
|
| 420 | + } else if (isset($request_info[$name])) {
|
|
| 421 | + $gd_post_info[$name] = $request_info[$name]; |
|
| 422 | + } |
|
| 423 | 423 | |
| 424 | - endforeach; |
|
| 424 | + endforeach; |
|
| 425 | 425 | |
| 426 | - if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 427 | - $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 428 | - } |
|
| 426 | + if (isset($request_info['post_dummy']) && $request_info['post_dummy'] != '') {
|
|
| 427 | + $gd_post_info['post_dummy'] = $request_info['post_dummy']; |
|
| 428 | + } |
|
| 429 | 429 | |
| 430 | - // Save post detail info in detail table |
|
| 431 | - if (!empty($gd_post_info)) {
|
|
| 432 | - geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 433 | - } |
|
| 430 | + // Save post detail info in detail table |
|
| 431 | + if (!empty($gd_post_info)) {
|
|
| 432 | + geodir_save_post_info($last_post_id, $gd_post_info); |
|
| 433 | + } |
|
| 434 | 434 | |
| 435 | 435 | |
| 436 | - // Set categories to the listing |
|
| 437 | - if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 438 | - $post_category = array(); |
|
| 436 | + // Set categories to the listing |
|
| 437 | + if (isset($request_info['post_category']) && !empty($request_info['post_category'])) {
|
|
| 438 | + $post_category = array(); |
|
| 439 | 439 | |
| 440 | - foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 440 | + foreach ($request_info['post_category'] as $taxonomy => $cat) {
|
|
| 441 | 441 | |
| 442 | - if ($dummy) |
|
| 443 | - $post_category = $cat; |
|
| 444 | - else {
|
|
| 442 | + if ($dummy) |
|
| 443 | + $post_category = $cat; |
|
| 444 | + else {
|
|
| 445 | 445 | |
| 446 | - if (!is_array($cat) && strstr($cat, ',')) |
|
| 447 | - $cat = explode(',', $cat);
|
|
| 446 | + if (!is_array($cat) && strstr($cat, ',')) |
|
| 447 | + $cat = explode(',', $cat);
|
|
| 448 | 448 | |
| 449 | - if (!empty($cat) && is_array($cat)) |
|
| 450 | - $post_category = array_map('intval', $cat);
|
|
| 451 | - } |
|
| 449 | + if (!empty($cat) && is_array($cat)) |
|
| 450 | + $post_category = array_map('intval', $cat);
|
|
| 451 | + } |
|
| 452 | 452 | |
| 453 | - wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 454 | - } |
|
| 453 | + wp_set_object_terms($last_post_id, $post_category, $taxonomy); |
|
| 454 | + } |
|
| 455 | 455 | |
| 456 | - $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 456 | + $post_default_category = isset($request_info['post_default_category']) ? $request_info['post_default_category'] : ''; |
|
| 457 | 457 | |
| 458 | - $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 459 | - geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 458 | + $post_category_str = isset($request_info['post_category_str']) ? $request_info['post_category_str'] : ''; |
|
| 459 | + geodir_set_postcat_structure($last_post_id, $taxonomy, $post_default_category, $post_category_str); |
|
| 460 | 460 | |
| 461 | - } |
|
| 461 | + } |
|
| 462 | 462 | |
| 463 | - $post_tags = ''; |
|
| 464 | - // Set tags to the listing |
|
| 465 | - if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 466 | - $post_tags = explode(",", $request_info['post_tags']);
|
|
| 467 | - } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 468 | - if ($dummy) |
|
| 469 | - $post_tags = $request_info['post_tags']; |
|
| 470 | - } else {
|
|
| 471 | - if ($dummy) |
|
| 472 | - $post_tags = array($request_info['post_title']); |
|
| 473 | - } |
|
| 463 | + $post_tags = ''; |
|
| 464 | + // Set tags to the listing |
|
| 465 | + if (isset($request_info['post_tags']) && !is_array($request_info['post_tags']) && !empty($request_info['post_tags'])) {
|
|
| 466 | + $post_tags = explode(",", $request_info['post_tags']);
|
|
| 467 | + } elseif (isset($request_info['post_tags']) && is_array($request_info['post_tags'])) {
|
|
| 468 | + if ($dummy) |
|
| 469 | + $post_tags = $request_info['post_tags']; |
|
| 470 | + } else {
|
|
| 471 | + if ($dummy) |
|
| 472 | + $post_tags = array($request_info['post_title']); |
|
| 473 | + } |
|
| 474 | 474 | |
| 475 | - if (is_array($post_tags)) {
|
|
| 476 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 477 | - wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 478 | - } |
|
| 475 | + if (is_array($post_tags)) {
|
|
| 476 | + $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 477 | + wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | 480 | |
| 481 | - // Insert attechment |
|
| 481 | + // Insert attechment |
|
| 482 | 482 | |
| 483 | - if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 484 | - if (!$dummy) {
|
|
| 485 | - $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 486 | - $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 487 | - geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 488 | - } else{
|
|
| 489 | - geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 490 | - } |
|
| 483 | + if (isset($request_info['post_images']) && !is_wp_error($last_post_id)) {
|
|
| 484 | + if (!$dummy) {
|
|
| 485 | + $tmpimgArr = trim($request_info['post_images'], ","); |
|
| 486 | + $tmpimgArr = explode(",", $tmpimgArr);
|
|
| 487 | + geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
|
| 488 | + } else{
|
|
| 489 | + geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
|
| 490 | + } |
|
| 491 | 491 | |
| 492 | 492 | |
| 493 | - } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 493 | + } elseif (!isset($request_info['post_images']) || $request_info['post_images'] == '') {
|
|
| 494 | 494 | |
| 495 | - /* Delete Attachments |
|
| 495 | + /* Delete Attachments |
|
| 496 | 496 | $postcurr_images = geodir_get_images($last_post_id); |
| 497 | 497 | |
| 498 | 498 | $wpdb->query( |
@@ -508,34 +508,34 @@ discard block |
||
| 508 | 508 | geodir_save_post_info($last_post_id, $gd_post_featured_img); |
| 509 | 509 | */ |
| 510 | 510 | |
| 511 | - } |
|
| 511 | + } |
|
| 512 | 512 | |
| 513 | - geodir_remove_temp_images(); |
|
| 514 | - geodir_set_wp_featured_image($last_post_id); |
|
| 513 | + geodir_remove_temp_images(); |
|
| 514 | + geodir_set_wp_featured_image($last_post_id); |
|
| 515 | 515 | |
| 516 | - /** |
|
| 517 | - * Called after a listing is saved to the database and before any email have been sent. |
|
| 518 | - * |
|
| 519 | - * @since 1.0.0 |
|
| 520 | - * @param int $last_post_id The saved post ID. |
|
| 521 | - * @param array $request_info The post details in an array. |
|
| 522 | - * @see 'geodir_after_save_listinginfo' |
|
| 523 | - */ |
|
| 524 | - do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 516 | + /** |
|
| 517 | + * Called after a listing is saved to the database and before any email have been sent. |
|
| 518 | + * |
|
| 519 | + * @since 1.0.0 |
|
| 520 | + * @param int $last_post_id The saved post ID. |
|
| 521 | + * @param array $request_info The post details in an array. |
|
| 522 | + * @see 'geodir_after_save_listinginfo' |
|
| 523 | + */ |
|
| 524 | + do_action('geodir_after_save_listing', $last_post_id, $request_info);
|
|
| 525 | 525 | |
| 526 | - //die; |
|
| 526 | + //die; |
|
| 527 | 527 | |
| 528 | - if ($send_post_submit_mail) { // if new post send out email
|
|
| 529 | - $to_name = geodir_get_client_name($current_user->ID); |
|
| 530 | - geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 531 | - } |
|
| 532 | - /* |
|
| 528 | + if ($send_post_submit_mail) { // if new post send out email
|
|
| 529 | + $to_name = geodir_get_client_name($current_user->ID); |
|
| 530 | + geodir_sendEmail('', '', $current_user->user_email, $to_name, '', '', $request_info, 'post_submit', $last_post_id, $current_user->ID);
|
|
| 531 | + } |
|
| 532 | + /* |
|
| 533 | 533 | * Unset the session so we don't loop. |
| 534 | 534 | */ |
| 535 | - $gd_session->un_set('listing');
|
|
| 536 | - return $last_post_id; |
|
| 535 | + $gd_session->un_set('listing');
|
|
| 536 | + return $last_post_id; |
|
| 537 | 537 | |
| 538 | - } |
|
| 538 | + } |
|
| 539 | 539 | |
| 540 | 540 | } |
| 541 | 541 | |
@@ -554,586 +554,586 @@ discard block |
||
| 554 | 554 | function geodir_get_post_info($post_id = '') |
| 555 | 555 | {
|
| 556 | 556 | |
| 557 | - global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 557 | + global $wpdb, $plugin_prefix, $post, $post_info; |
|
| 558 | 558 | |
| 559 | - if ($post_id == '' && !empty($post)) |
|
| 560 | - $post_id = $post->ID; |
|
| 559 | + if ($post_id == '' && !empty($post)) |
|
| 560 | + $post_id = $post->ID; |
|
| 561 | 561 | |
| 562 | - $post_type = get_post_type($post_id); |
|
| 562 | + $post_type = get_post_type($post_id); |
|
| 563 | 563 | |
| 564 | - $all_postypes = geodir_get_posttypes(); |
|
| 564 | + $all_postypes = geodir_get_posttypes(); |
|
| 565 | 565 | |
| 566 | - if (!in_array($post_type, $all_postypes)) |
|
| 567 | - return false; |
|
| 566 | + if (!in_array($post_type, $all_postypes)) |
|
| 567 | + return false; |
|
| 568 | 568 | |
| 569 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 569 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 570 | 570 | |
| 571 | - /** |
|
| 572 | - * Apply Filter to change Post info |
|
| 573 | - * |
|
| 574 | - * You can use this filter to change Post info. |
|
| 575 | - * |
|
| 576 | - * @since 1.0.0 |
|
| 577 | - * @package GeoDirectory |
|
| 578 | - */ |
|
| 579 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 571 | + /** |
|
| 572 | + * Apply Filter to change Post info |
|
| 573 | + * |
|
| 574 | + * You can use this filter to change Post info. |
|
| 575 | + * |
|
| 576 | + * @since 1.0.0 |
|
| 577 | + * @package GeoDirectory |
|
| 578 | + */ |
|
| 579 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 580 | 580 | WHERE p.ID = pd.post_id |
| 581 | 581 | AND post_id = " . $post_id); |
| 582 | 582 | |
| 583 | - $post_detail = $wpdb->get_row($query); |
|
| 583 | + $post_detail = $wpdb->get_row($query); |
|
| 584 | 584 | |
| 585 | - return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 585 | + return (!empty($post_detail)) ? $post_info = $post_detail : $post_info = false; |
|
| 586 | 586 | |
| 587 | 587 | } |
| 588 | 588 | |
| 589 | 589 | |
| 590 | 590 | if (!function_exists('geodir_save_post_info')) {
|
| 591 | - /** |
|
| 592 | - * Saves post detail info in detail table. |
|
| 593 | - * |
|
| 594 | - * @since 1.0.0 |
|
| 595 | - * @package GeoDirectory |
|
| 596 | - * @global object $wpdb WordPress Database object. |
|
| 597 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 598 | - * @param int $post_id The post ID. |
|
| 599 | - * @param array $postinfo_array {
|
|
| 600 | - * Post info that needs to be saved in detail table. |
|
| 601 | - * |
|
| 602 | - * @type string $post_title Listing title. |
|
| 603 | - * @type string $post_tags Listing tags. |
|
| 604 | - * @type string $post_status Listing post status. |
|
| 605 | - * @type string $post_location_id Listing location ID. |
|
| 606 | - * @type string $claimed Todo Desc needed. |
|
| 607 | - * @type string $businesses Todo Desc needed. |
|
| 608 | - * @type int $submit_time Submitted time in unix timestamp. |
|
| 609 | - * @type string $submit_ip Submitted IP. |
|
| 610 | - * @type string $expire_date Listing expiration date. |
|
| 611 | - * @type int $package_id Listing package ID. |
|
| 612 | - * @type int $alive_days Todo Desc needed. |
|
| 613 | - * @type int $is_featured Is this a featured listing?. |
|
| 614 | - * @type string $post_address Listing address. |
|
| 615 | - * @type string $post_city Listing city. |
|
| 616 | - * @type string $post_region Listing region. |
|
| 617 | - * @type string $post_country Listing country. |
|
| 618 | - * @type string $post_locations Listing locations. |
|
| 619 | - * @type string $post_zip Listing zip. |
|
| 620 | - * @type string $post_latitude Listing latitude. |
|
| 621 | - * @type string $post_longitude Listing longitude. |
|
| 622 | - * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 623 | - * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 624 | - * @type string $geodir_timing Business timing info. |
|
| 625 | - * @type string $geodir_contact Contact number. |
|
| 626 | - * @type string $geodir_email Business contact email. |
|
| 627 | - * @type string $geodir_website Business website. |
|
| 628 | - * @type string $geodir_twitter Twitter link. |
|
| 629 | - * @type string $geodir_facebook Facebook link. |
|
| 630 | - * @type string $geodir_video Video link. |
|
| 631 | - * @type string $geodir_special_offers Speacial offers. |
|
| 632 | - * |
|
| 633 | - * } |
|
| 634 | - * @return bool |
|
| 635 | - */ |
|
| 636 | - function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 637 | - {
|
|
| 638 | - global $wpdb, $plugin_prefix; |
|
| 639 | - |
|
| 640 | - $post_type = get_post_type($post_id); |
|
| 641 | - |
|
| 642 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 643 | - |
|
| 644 | - /** |
|
| 645 | - * Filter to change Post info |
|
| 646 | - * |
|
| 647 | - * You can use this filter to change Post info. |
|
| 648 | - * |
|
| 649 | - * @since 1.0.0 |
|
| 650 | - * @package GeoDirectory |
|
| 651 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 652 | - * @param int $post_id The post ID. |
|
| 653 | - */ |
|
| 591 | + /** |
|
| 592 | + * Saves post detail info in detail table. |
|
| 593 | + * |
|
| 594 | + * @since 1.0.0 |
|
| 595 | + * @package GeoDirectory |
|
| 596 | + * @global object $wpdb WordPress Database object. |
|
| 597 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 598 | + * @param int $post_id The post ID. |
|
| 599 | + * @param array $postinfo_array {
|
|
| 600 | + * Post info that needs to be saved in detail table. |
|
| 601 | + * |
|
| 602 | + * @type string $post_title Listing title. |
|
| 603 | + * @type string $post_tags Listing tags. |
|
| 604 | + * @type string $post_status Listing post status. |
|
| 605 | + * @type string $post_location_id Listing location ID. |
|
| 606 | + * @type string $claimed Todo Desc needed. |
|
| 607 | + * @type string $businesses Todo Desc needed. |
|
| 608 | + * @type int $submit_time Submitted time in unix timestamp. |
|
| 609 | + * @type string $submit_ip Submitted IP. |
|
| 610 | + * @type string $expire_date Listing expiration date. |
|
| 611 | + * @type int $package_id Listing package ID. |
|
| 612 | + * @type int $alive_days Todo Desc needed. |
|
| 613 | + * @type int $is_featured Is this a featured listing?. |
|
| 614 | + * @type string $post_address Listing address. |
|
| 615 | + * @type string $post_city Listing city. |
|
| 616 | + * @type string $post_region Listing region. |
|
| 617 | + * @type string $post_country Listing country. |
|
| 618 | + * @type string $post_locations Listing locations. |
|
| 619 | + * @type string $post_zip Listing zip. |
|
| 620 | + * @type string $post_latitude Listing latitude. |
|
| 621 | + * @type string $post_longitude Listing longitude. |
|
| 622 | + * @type string $post_mapview Listing mapview. Default "ROADMAP". |
|
| 623 | + * @type string $post_mapzoom Listing mapzoom Default "9". |
|
| 624 | + * @type string $geodir_timing Business timing info. |
|
| 625 | + * @type string $geodir_contact Contact number. |
|
| 626 | + * @type string $geodir_email Business contact email. |
|
| 627 | + * @type string $geodir_website Business website. |
|
| 628 | + * @type string $geodir_twitter Twitter link. |
|
| 629 | + * @type string $geodir_facebook Facebook link. |
|
| 630 | + * @type string $geodir_video Video link. |
|
| 631 | + * @type string $geodir_special_offers Speacial offers. |
|
| 632 | + * |
|
| 633 | + * } |
|
| 634 | + * @return bool |
|
| 635 | + */ |
|
| 636 | + function geodir_save_post_info($post_id, $postinfo_array = array()) |
|
| 637 | + {
|
|
| 638 | + global $wpdb, $plugin_prefix; |
|
| 639 | + |
|
| 640 | + $post_type = get_post_type($post_id); |
|
| 641 | + |
|
| 642 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 643 | + |
|
| 644 | + /** |
|
| 645 | + * Filter to change Post info |
|
| 646 | + * |
|
| 647 | + * You can use this filter to change Post info. |
|
| 648 | + * |
|
| 649 | + * @since 1.0.0 |
|
| 650 | + * @package GeoDirectory |
|
| 651 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 652 | + * @param int $post_id The post ID. |
|
| 653 | + */ |
|
| 654 | + |
|
| 655 | + $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 656 | + |
|
| 657 | + if (!empty($postmeta) && $post_id) {
|
|
| 658 | + $post_meta_set_query = ''; |
|
| 659 | + |
|
| 660 | + foreach ($postmeta as $mkey => $mval) {
|
|
| 661 | + if (geodir_column_exist($table, $mkey)) {
|
|
| 662 | + if (is_array($mval)) {
|
|
| 663 | + $mval = implode(",", $mval);
|
|
| 664 | + } |
|
| 665 | + |
|
| 666 | + $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 667 | + } |
|
| 668 | + } |
|
| 654 | 669 | |
| 655 | - $postmeta = apply_filters('geodir_listinginfo_request', $postinfo_array, $post_id);
|
|
| 670 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 656 | 671 | |
| 657 | - if (!empty($postmeta) && $post_id) {
|
|
| 658 | - $post_meta_set_query = ''; |
|
| 672 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 659 | 673 | |
| 660 | - foreach ($postmeta as $mkey => $mval) {
|
|
| 661 | - if (geodir_column_exist($table, $mkey)) {
|
|
| 662 | - if (is_array($mval)) {
|
|
| 663 | - $mval = implode(",", $mval);
|
|
| 664 | - } |
|
| 674 | + /** |
|
| 675 | + * Called before saving the listing info. |
|
| 676 | + * |
|
| 677 | + * @since 1.0.0 |
|
| 678 | + * @package GeoDirectory |
|
| 679 | + * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 680 | + * @param int $post_id The post ID. |
|
| 681 | + */ |
|
| 682 | + do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 665 | 683 | |
| 666 | - $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 667 | - } |
|
| 668 | - } |
|
| 684 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 669 | 685 | |
| 670 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 686 | + $wpdb->query( |
|
| 687 | + $wpdb->prepare( |
|
| 688 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 689 | + array($post_id) |
|
| 690 | + ) |
|
| 691 | + ); |
|
| 671 | 692 | |
| 672 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 673 | 693 | |
| 674 | - /** |
|
| 675 | - * Called before saving the listing info. |
|
| 676 | - * |
|
| 677 | - * @since 1.0.0 |
|
| 678 | - * @package GeoDirectory |
|
| 679 | - * @param array $postinfo_array See {@see geodir_save_post_info()} for accepted args.
|
|
| 680 | - * @param int $post_id The post ID. |
|
| 681 | - */ |
|
| 682 | - do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
|
| 694 | + } else {
|
|
| 683 | 695 | |
| 684 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 696 | + $wpdb->query( |
|
| 697 | + $wpdb->prepare( |
|
| 698 | + "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 699 | + array($post_id) |
|
| 700 | + ) |
|
| 701 | + ); |
|
| 685 | 702 | |
| 686 | - $wpdb->query( |
|
| 687 | - $wpdb->prepare( |
|
| 688 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 689 | - array($post_id) |
|
| 690 | - ) |
|
| 691 | - ); |
|
| 703 | + } |
|
| 692 | 704 | |
| 705 | + /** |
|
| 706 | + * Called after saving the listing info. |
|
| 707 | + * |
|
| 708 | + * @since 1.0.0 |
|
| 709 | + * @package GeoDirectory |
|
| 710 | + * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 711 | + * @param int $post_id The post ID. |
|
| 712 | + * @see 'geodir_after_save_listing' |
|
| 713 | + */ |
|
| 714 | + do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 715 | + |
|
| 716 | + return true; |
|
| 717 | + } else |
|
| 718 | + return false; |
|
| 693 | 719 | |
| 694 | - } else {
|
|
| 720 | + } |
|
| 721 | +} |
|
| 695 | 722 | |
| 696 | - $wpdb->query( |
|
| 697 | - $wpdb->prepare( |
|
| 698 | - "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 699 | - array($post_id) |
|
| 700 | - ) |
|
| 701 | - ); |
|
| 702 | 723 | |
| 703 | - } |
|
| 724 | +if (!function_exists('geodir_save_post_meta')) {
|
|
| 725 | + /** |
|
| 726 | + * Save or update post custom fields. |
|
| 727 | + * |
|
| 728 | + * @since 1.0.0 |
|
| 729 | + * @package GeoDirectory |
|
| 730 | + * @global object $wpdb WordPress Database object. |
|
| 731 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 732 | + * @param int $post_id The post ID. |
|
| 733 | + * @param string $postmeta Detail table column name. |
|
| 734 | + * @param string $meta_value Detail table column value. |
|
| 735 | + * @return void|bool |
|
| 736 | + */ |
|
| 737 | + function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 738 | + {
|
|
| 739 | + |
|
| 740 | + global $wpdb, $plugin_prefix; |
|
| 741 | + |
|
| 742 | + $post_type = get_post_type($post_id); |
|
| 743 | + |
|
| 744 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 745 | + |
|
| 746 | + if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 747 | + |
|
| 748 | + if (is_array($meta_value)) {
|
|
| 749 | + $meta_value = implode(",", $meta_value);
|
|
| 750 | + } |
|
| 704 | 751 | |
| 705 | - /** |
|
| 706 | - * Called after saving the listing info. |
|
| 707 | - * |
|
| 708 | - * @since 1.0.0 |
|
| 709 | - * @package GeoDirectory |
|
| 710 | - * @param array $postinfo_array Post info that needs to be saved in detail table. |
|
| 711 | - * @param int $post_id The post ID. |
|
| 712 | - * @see 'geodir_after_save_listing' |
|
| 713 | - */ |
|
| 714 | - do_action('geodir_after_save_listinginfo', $postinfo_array, $post_id);
|
|
| 752 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 715 | 753 | |
| 716 | - return true; |
|
| 717 | - } else |
|
| 718 | - return false; |
|
| 754 | + $wpdb->query( |
|
| 755 | + $wpdb->prepare( |
|
| 756 | + "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 757 | + array($post_id) |
|
| 758 | + ) |
|
| 759 | + ); |
|
| 719 | 760 | |
| 720 | - } |
|
| 721 | -} |
|
| 761 | + } else {
|
|
| 722 | 762 | |
| 763 | + $wpdb->query( |
|
| 764 | + $wpdb->prepare( |
|
| 765 | + "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 766 | + array($post_id) |
|
| 767 | + ) |
|
| 768 | + ); |
|
| 769 | + } |
|
| 723 | 770 | |
| 724 | -if (!function_exists('geodir_save_post_meta')) {
|
|
| 725 | - /** |
|
| 726 | - * Save or update post custom fields. |
|
| 727 | - * |
|
| 728 | - * @since 1.0.0 |
|
| 729 | - * @package GeoDirectory |
|
| 730 | - * @global object $wpdb WordPress Database object. |
|
| 731 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 732 | - * @param int $post_id The post ID. |
|
| 733 | - * @param string $postmeta Detail table column name. |
|
| 734 | - * @param string $meta_value Detail table column value. |
|
| 735 | - * @return void|bool |
|
| 736 | - */ |
|
| 737 | - function geodir_save_post_meta($post_id, $postmeta = '', $meta_value = '') |
|
| 738 | - {
|
|
| 739 | - |
|
| 740 | - global $wpdb, $plugin_prefix; |
|
| 741 | - |
|
| 742 | - $post_type = get_post_type($post_id); |
|
| 743 | - |
|
| 744 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 745 | - |
|
| 746 | - if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
|
| 747 | - |
|
| 748 | - if (is_array($meta_value)) {
|
|
| 749 | - $meta_value = implode(",", $meta_value);
|
|
| 750 | - } |
|
| 751 | - |
|
| 752 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 753 | - |
|
| 754 | - $wpdb->query( |
|
| 755 | - $wpdb->prepare( |
|
| 756 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 757 | - array($post_id) |
|
| 758 | - ) |
|
| 759 | - ); |
|
| 760 | - |
|
| 761 | - } else {
|
|
| 762 | - |
|
| 763 | - $wpdb->query( |
|
| 764 | - $wpdb->prepare( |
|
| 765 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 766 | - array($post_id) |
|
| 767 | - ) |
|
| 768 | - ); |
|
| 769 | - } |
|
| 770 | - |
|
| 771 | - |
|
| 772 | - } else |
|
| 773 | - return false; |
|
| 774 | - } |
|
| 771 | + |
|
| 772 | + } else |
|
| 773 | + return false; |
|
| 774 | + } |
|
| 775 | 775 | } |
| 776 | 776 | |
| 777 | 777 | if (!function_exists('geodir_delete_post_meta')) {
|
| 778 | - /** |
|
| 779 | - * Delete post custom fields. |
|
| 780 | - * |
|
| 781 | - * @since 1.0.0 |
|
| 782 | - * @package GeoDirectory |
|
| 783 | - * @global object $wpdb WordPress Database object. |
|
| 784 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 785 | - * @param int $post_id The post ID. |
|
| 786 | - * @param string $postmeta Detail table column name. |
|
| 787 | - * @todo check if this is depreciated |
|
| 788 | - * @todo Fix unknown variable mval |
|
| 789 | - * @return bool |
|
| 790 | - */ |
|
| 791 | - function geodir_delete_post_meta($post_id, $postmeta) |
|
| 792 | - {
|
|
| 793 | - |
|
| 794 | - global $wpdb, $plugin_prefix; |
|
| 795 | - |
|
| 796 | - $post_type = get_post_type($post_id); |
|
| 797 | - |
|
| 798 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 799 | - |
|
| 800 | - if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 801 | - $post_meta_set_query = ''; |
|
| 802 | - |
|
| 803 | - foreach ($postmeta as $mkey) {
|
|
| 804 | - if ($mval != '') |
|
| 805 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 806 | - } |
|
| 807 | - |
|
| 808 | - $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 809 | - |
|
| 810 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 811 | - |
|
| 812 | - $wpdb->query( |
|
| 813 | - $wpdb->prepare( |
|
| 814 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 815 | - array($post_id) |
|
| 816 | - ) |
|
| 817 | - ); |
|
| 818 | - |
|
| 819 | - return true; |
|
| 820 | - } |
|
| 821 | - |
|
| 822 | - } elseif ($postmeta != '' && $post_id) {
|
|
| 823 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 824 | - |
|
| 825 | - $wpdb->query( |
|
| 826 | - $wpdb->prepare( |
|
| 827 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 828 | - array($post_id) |
|
| 829 | - ) |
|
| 830 | - ); |
|
| 831 | - |
|
| 832 | - return true; |
|
| 833 | - } |
|
| 834 | - |
|
| 835 | - } else |
|
| 836 | - return false; |
|
| 837 | - } |
|
| 778 | + /** |
|
| 779 | + * Delete post custom fields. |
|
| 780 | + * |
|
| 781 | + * @since 1.0.0 |
|
| 782 | + * @package GeoDirectory |
|
| 783 | + * @global object $wpdb WordPress Database object. |
|
| 784 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 785 | + * @param int $post_id The post ID. |
|
| 786 | + * @param string $postmeta Detail table column name. |
|
| 787 | + * @todo check if this is depreciated |
|
| 788 | + * @todo Fix unknown variable mval |
|
| 789 | + * @return bool |
|
| 790 | + */ |
|
| 791 | + function geodir_delete_post_meta($post_id, $postmeta) |
|
| 792 | + {
|
|
| 793 | + |
|
| 794 | + global $wpdb, $plugin_prefix; |
|
| 795 | + |
|
| 796 | + $post_type = get_post_type($post_id); |
|
| 797 | + |
|
| 798 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 799 | + |
|
| 800 | + if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
|
| 801 | + $post_meta_set_query = ''; |
|
| 802 | + |
|
| 803 | + foreach ($postmeta as $mkey) {
|
|
| 804 | + if ($mval != '') |
|
| 805 | + $post_meta_set_query .= $mkey . " = '', "; |
|
| 806 | + } |
|
| 807 | + |
|
| 808 | + $post_meta_set_query = trim($post_meta_set_query, ", "); |
|
| 809 | + |
|
| 810 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 811 | + |
|
| 812 | + $wpdb->query( |
|
| 813 | + $wpdb->prepare( |
|
| 814 | + "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 815 | + array($post_id) |
|
| 816 | + ) |
|
| 817 | + ); |
|
| 818 | + |
|
| 819 | + return true; |
|
| 820 | + } |
|
| 821 | + |
|
| 822 | + } elseif ($postmeta != '' && $post_id) {
|
|
| 823 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 824 | + |
|
| 825 | + $wpdb->query( |
|
| 826 | + $wpdb->prepare( |
|
| 827 | + "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 828 | + array($post_id) |
|
| 829 | + ) |
|
| 830 | + ); |
|
| 831 | + |
|
| 832 | + return true; |
|
| 833 | + } |
|
| 834 | + |
|
| 835 | + } else |
|
| 836 | + return false; |
|
| 837 | + } |
|
| 838 | 838 | } |
| 839 | 839 | |
| 840 | 840 | |
| 841 | 841 | if (!function_exists('geodir_get_post_meta')) {
|
| 842 | - /** |
|
| 843 | - * Get post custom meta. |
|
| 844 | - * |
|
| 845 | - * @since 1.0.0 |
|
| 846 | - * @package GeoDirectory |
|
| 847 | - * @global object $wpdb WordPress Database object. |
|
| 848 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 849 | - * @param int $post_id The post ID. |
|
| 850 | - * @param string $meta_key The meta key to retrieve. |
|
| 851 | - * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 852 | - * @todo single variable not yet implemented. |
|
| 853 | - * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 854 | - */ |
|
| 855 | - function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 856 | - {
|
|
| 857 | - if (!$post_id) {
|
|
| 858 | - return false; |
|
| 859 | - } |
|
| 860 | - global $wpdb, $plugin_prefix; |
|
| 861 | - |
|
| 862 | - $all_postypes = geodir_get_posttypes(); |
|
| 863 | - |
|
| 864 | - $post_type = get_post_type($post_id); |
|
| 865 | - |
|
| 866 | - if (!in_array($post_type, $all_postypes)) |
|
| 867 | - return false; |
|
| 868 | - |
|
| 869 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 870 | - |
|
| 871 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 872 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 842 | + /** |
|
| 843 | + * Get post custom meta. |
|
| 844 | + * |
|
| 845 | + * @since 1.0.0 |
|
| 846 | + * @package GeoDirectory |
|
| 847 | + * @global object $wpdb WordPress Database object. |
|
| 848 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 849 | + * @param int $post_id The post ID. |
|
| 850 | + * @param string $meta_key The meta key to retrieve. |
|
| 851 | + * @param bool $single Optional. Whether to return a single value. Default false. |
|
| 852 | + * @todo single variable not yet implemented. |
|
| 853 | + * @return bool|mixed|null|string Will be an array if $single is false. Will be value of meta data field if $single is true. |
|
| 854 | + */ |
|
| 855 | + function geodir_get_post_meta($post_id, $meta_key, $single = false) |
|
| 856 | + {
|
|
| 857 | + if (!$post_id) {
|
|
| 858 | + return false; |
|
| 859 | + } |
|
| 860 | + global $wpdb, $plugin_prefix; |
|
| 861 | + |
|
| 862 | + $all_postypes = geodir_get_posttypes(); |
|
| 863 | + |
|
| 864 | + $post_type = get_post_type($post_id); |
|
| 865 | + |
|
| 866 | + if (!in_array($post_type, $all_postypes)) |
|
| 867 | + return false; |
|
| 868 | + |
|
| 869 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 870 | + |
|
| 871 | + if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 872 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 873 | 873 | |
| 874 | - if ($meta_value && $meta_value !== '') {
|
|
| 875 | - return maybe_serialize($meta_value); |
|
| 876 | - } else |
|
| 877 | - return $meta_value; |
|
| 878 | - } else {
|
|
| 879 | - return false; |
|
| 880 | - } |
|
| 881 | - } |
|
| 874 | + if ($meta_value && $meta_value !== '') {
|
|
| 875 | + return maybe_serialize($meta_value); |
|
| 876 | + } else |
|
| 877 | + return $meta_value; |
|
| 878 | + } else {
|
|
| 879 | + return false; |
|
| 880 | + } |
|
| 881 | + } |
|
| 882 | 882 | } |
| 883 | 883 | |
| 884 | 884 | |
| 885 | 885 | if (!function_exists('geodir_save_post_images')) {
|
| 886 | - /** |
|
| 887 | - * Save post attachments. |
|
| 888 | - * |
|
| 889 | - * @since 1.0.0 |
|
| 890 | - * @package GeoDirectory |
|
| 891 | - * @global object $wpdb WordPress Database object. |
|
| 892 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 893 | - * @global object $current_user Current user object. |
|
| 894 | - * @param int $post_id The post ID. |
|
| 895 | - * @param array $post_image Post image urls as an array. |
|
| 896 | - * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 897 | - */ |
|
| 898 | - function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 899 | - {
|
|
| 886 | + /** |
|
| 887 | + * Save post attachments. |
|
| 888 | + * |
|
| 889 | + * @since 1.0.0 |
|
| 890 | + * @package GeoDirectory |
|
| 891 | + * @global object $wpdb WordPress Database object. |
|
| 892 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 893 | + * @global object $current_user Current user object. |
|
| 894 | + * @param int $post_id The post ID. |
|
| 895 | + * @param array $post_image Post image urls as an array. |
|
| 896 | + * @param bool $dummy Optional. Is this a dummy listing? Default false. |
|
| 897 | + */ |
|
| 898 | + function geodir_save_post_images($post_id = 0, $post_image = array(), $dummy = false) |
|
| 899 | + {
|
|
| 900 | 900 | |
| 901 | 901 | |
| 902 | - global $wpdb, $plugin_prefix, $current_user; |
|
| 902 | + global $wpdb, $plugin_prefix, $current_user; |
|
| 903 | 903 | |
| 904 | - $post_type = get_post_type($post_id); |
|
| 904 | + $post_type = get_post_type($post_id); |
|
| 905 | 905 | |
| 906 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 906 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 907 | 907 | |
| 908 | - $post_images = geodir_get_images($post_id); |
|
| 908 | + $post_images = geodir_get_images($post_id); |
|
| 909 | 909 | |
| 910 | - $wpdb->query( |
|
| 911 | - $wpdb->prepare( |
|
| 912 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 913 | - array($post_id) |
|
| 914 | - ) |
|
| 915 | - ); |
|
| 910 | + $wpdb->query( |
|
| 911 | + $wpdb->prepare( |
|
| 912 | + "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 913 | + array($post_id) |
|
| 914 | + ) |
|
| 915 | + ); |
|
| 916 | 916 | |
| 917 | - $invalid_files = $post_images; |
|
| 918 | - $valid_file_ids = array(); |
|
| 919 | - $valid_files_condition = ''; |
|
| 920 | - $geodir_uploaddir = ''; |
|
| 917 | + $invalid_files = $post_images; |
|
| 918 | + $valid_file_ids = array(); |
|
| 919 | + $valid_files_condition = ''; |
|
| 920 | + $geodir_uploaddir = ''; |
|
| 921 | 921 | |
| 922 | - $remove_files = array(); |
|
| 922 | + $remove_files = array(); |
|
| 923 | 923 | |
| 924 | - if (!empty($post_image)) {
|
|
| 924 | + if (!empty($post_image)) {
|
|
| 925 | 925 | |
| 926 | - $uploads = wp_upload_dir(); |
|
| 927 | - $uploads_dir = $uploads['path']; |
|
| 926 | + $uploads = wp_upload_dir(); |
|
| 927 | + $uploads_dir = $uploads['path']; |
|
| 928 | 928 | |
| 929 | - $geodir_uploadpath = $uploads['path']; |
|
| 930 | - $geodir_uploadurl = $uploads['url']; |
|
| 931 | - $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 929 | + $geodir_uploadpath = $uploads['path']; |
|
| 930 | + $geodir_uploadurl = $uploads['url']; |
|
| 931 | + $sub_dir = isset($uploads['subdir']) ? $uploads['subdir'] : ''; |
|
| 932 | 932 | |
| 933 | - $invalid_files = array(); |
|
| 934 | - $postcurr_images = array(); |
|
| 933 | + $invalid_files = array(); |
|
| 934 | + $postcurr_images = array(); |
|
| 935 | 935 | |
| 936 | - for ($m = 0; $m < count($post_image); $m++) {
|
|
| 937 | - $menu_order = $m + 1; |
|
| 936 | + for ($m = 0; $m < count($post_image); $m++) {
|
|
| 937 | + $menu_order = $m + 1; |
|
| 938 | 938 | |
| 939 | - $file_path = ''; |
|
| 940 | - /* --------- start ------- */ |
|
| 939 | + $file_path = ''; |
|
| 940 | + /* --------- start ------- */ |
|
| 941 | 941 | |
| 942 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 942 | + $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 943 | 943 | |
| 944 | - $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 944 | + $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
|
| 945 | 945 | |
| 946 | 946 | |
| 947 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 947 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 948 | 948 | |
| 949 | - /* --------- end ------- */ |
|
| 950 | - $curr_img_url = $post_image[$m]; |
|
| 949 | + /* --------- end ------- */ |
|
| 950 | + $curr_img_url = $post_image[$m]; |
|
| 951 | 951 | |
| 952 | - $image_name_arr = explode('/', $curr_img_url);
|
|
| 952 | + $image_name_arr = explode('/', $curr_img_url);
|
|
| 953 | 953 | |
| 954 | - $count_image_name_arr = count($image_name_arr) - 2; |
|
| 954 | + $count_image_name_arr = count($image_name_arr) - 2; |
|
| 955 | 955 | |
| 956 | - $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 956 | + $count_image_name_arr = ($count_image_name_arr >= 0) ? $count_image_name_arr : 0; |
|
| 957 | 957 | |
| 958 | - $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 958 | + $curr_img_dir = $image_name_arr[$count_image_name_arr]; |
|
| 959 | 959 | |
| 960 | - $filename = end($image_name_arr); |
|
| 961 | - if (strpos($filename, '?') !== false) {
|
|
| 962 | - list($filename) = explode('?', $filename);
|
|
| 963 | - } |
|
| 960 | + $filename = end($image_name_arr); |
|
| 961 | + if (strpos($filename, '?') !== false) {
|
|
| 962 | + list($filename) = explode('?', $filename);
|
|
| 963 | + } |
|
| 964 | 964 | |
| 965 | - $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 966 | - $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 965 | + $curr_img_dir = str_replace($uploads['baseurl'], "", $curr_img_url); |
|
| 966 | + $curr_img_dir = str_replace($filename, "", $curr_img_dir); |
|
| 967 | 967 | |
| 968 | - $img_name_arr = explode('.', $filename);
|
|
| 968 | + $img_name_arr = explode('.', $filename);
|
|
| 969 | 969 | |
| 970 | - $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 971 | - if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 972 | - $new_img_name_arr = $img_name_arr; |
|
| 973 | - if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 974 | - unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 975 | - $file_title = implode('.', $new_img_name_arr);
|
|
| 976 | - } |
|
| 977 | - } |
|
| 978 | - $file_title = sanitize_file_name($file_title); |
|
| 979 | - $file_name = sanitize_file_name($filename); |
|
| 970 | + $file_title = isset($img_name_arr[0]) ? $img_name_arr[0] : $filename; |
|
| 971 | + if (!empty($img_name_arr) && count($img_name_arr) > 2) {
|
|
| 972 | + $new_img_name_arr = $img_name_arr; |
|
| 973 | + if (isset($new_img_name_arr[count($img_name_arr) - 1])) {
|
|
| 974 | + unset($new_img_name_arr[count($img_name_arr) - 1]); |
|
| 975 | + $file_title = implode('.', $new_img_name_arr);
|
|
| 976 | + } |
|
| 977 | + } |
|
| 978 | + $file_title = sanitize_file_name($file_title); |
|
| 979 | + $file_name = sanitize_file_name($filename); |
|
| 980 | 980 | |
| 981 | - $arr_file_type = wp_check_filetype($filename); |
|
| 981 | + $arr_file_type = wp_check_filetype($filename); |
|
| 982 | 982 | |
| 983 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 983 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 984 | 984 | |
| 985 | - // Set an array containing a list of acceptable formats |
|
| 986 | - $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 985 | + // Set an array containing a list of acceptable formats |
|
| 986 | + $allowed_file_types = array('image/jpg', 'image/jpeg', 'image/gif', 'image/png');
|
|
| 987 | 987 | |
| 988 | - // If the uploaded file is the right format |
|
| 989 | - if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 990 | - if (!function_exists('wp_handle_upload')) {
|
|
| 991 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 992 | - } |
|
| 988 | + // If the uploaded file is the right format |
|
| 989 | + if (in_array($uploaded_file_type, $allowed_file_types)) {
|
|
| 990 | + if (!function_exists('wp_handle_upload')) {
|
|
| 991 | + require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 992 | + } |
|
| 993 | 993 | |
| 994 | - if (!is_dir($geodir_uploadpath)) {
|
|
| 995 | - mkdir($geodir_uploadpath); |
|
| 996 | - } |
|
| 994 | + if (!is_dir($geodir_uploadpath)) {
|
|
| 995 | + mkdir($geodir_uploadpath); |
|
| 996 | + } |
|
| 997 | 997 | |
| 998 | - $external_img = false; |
|
| 999 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 1000 | - } else {
|
|
| 1001 | - $external_img = true; |
|
| 1002 | - } |
|
| 998 | + $external_img = false; |
|
| 999 | + if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 1000 | + } else {
|
|
| 1001 | + $external_img = true; |
|
| 1002 | + } |
|
| 1003 | 1003 | |
| 1004 | - if ($dummy || $external_img) {
|
|
| 1005 | - $uploaded_file = array(); |
|
| 1006 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 1004 | + if ($dummy || $external_img) {
|
|
| 1005 | + $uploaded_file = array(); |
|
| 1006 | + $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 1007 | 1007 | |
| 1008 | - if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 1009 | - $new_name = basename($uploaded['file']); |
|
| 1010 | - $uploaded_file = $uploaded; |
|
| 1011 | - }else{
|
|
| 1012 | - print_r($uploaded);exit; |
|
| 1013 | - } |
|
| 1014 | - $external_img = false; |
|
| 1015 | - } else {
|
|
| 1016 | - $new_name = $post_id . '_' . $file_name; |
|
| 1008 | + if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
|
| 1009 | + $new_name = basename($uploaded['file']); |
|
| 1010 | + $uploaded_file = $uploaded; |
|
| 1011 | + }else{
|
|
| 1012 | + print_r($uploaded);exit; |
|
| 1013 | + } |
|
| 1014 | + $external_img = false; |
|
| 1015 | + } else {
|
|
| 1016 | + $new_name = $post_id . '_' . $file_name; |
|
| 1017 | 1017 | |
| 1018 | - if ($curr_img_dir == $sub_dir) {
|
|
| 1019 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1020 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1021 | - } else {
|
|
| 1022 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1023 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1024 | - } |
|
| 1018 | + if ($curr_img_dir == $sub_dir) {
|
|
| 1019 | + $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1020 | + $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1021 | + } else {
|
|
| 1022 | + $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1023 | + $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1024 | + } |
|
| 1025 | 1025 | |
| 1026 | - $uploaded_file = ''; |
|
| 1026 | + $uploaded_file = ''; |
|
| 1027 | 1027 | |
| 1028 | - if (file_exists($img_path)) {
|
|
| 1029 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1030 | - $file_path = ''; |
|
| 1031 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1032 | - $uploaded_file = true; |
|
| 1033 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1034 | - } |
|
| 1028 | + if (file_exists($img_path)) {
|
|
| 1029 | + $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1030 | + $file_path = ''; |
|
| 1031 | + } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1032 | + $uploaded_file = true; |
|
| 1033 | + $file_path = $curr_img_dir . '/' . $filename; |
|
| 1034 | + } |
|
| 1035 | 1035 | |
| 1036 | - if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1037 | - unlink($img_path); |
|
| 1038 | - } |
|
| 1036 | + if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
|
| 1037 | + unlink($img_path); |
|
| 1038 | + } |
|
| 1039 | 1039 | |
| 1040 | - if (!empty($uploaded_file)) {
|
|
| 1041 | - if (!isset($file_path) || !$file_path) {
|
|
| 1042 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1043 | - } |
|
| 1040 | + if (!empty($uploaded_file)) {
|
|
| 1041 | + if (!isset($file_path) || !$file_path) {
|
|
| 1042 | + $file_path = $sub_dir . '/' . $new_name; |
|
| 1043 | + } |
|
| 1044 | 1044 | |
| 1045 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1045 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1046 | 1046 | |
| 1047 | - if ($menu_order == 1) {
|
|
| 1047 | + if ($menu_order == 1) {
|
|
| 1048 | 1048 | |
| 1049 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1049 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1050 | 1050 | |
| 1051 | - } |
|
| 1051 | + } |
|
| 1052 | 1052 | |
| 1053 | - // Set up options array to add this file as an attachment |
|
| 1054 | - $attachment = array(); |
|
| 1055 | - $attachment['post_id'] = $post_id; |
|
| 1056 | - $attachment['title'] = $file_title; |
|
| 1057 | - $attachment['content'] = ''; |
|
| 1058 | - $attachment['file'] = $file_path; |
|
| 1059 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 1060 | - $attachment['menu_order'] = $menu_order; |
|
| 1061 | - $attachment['is_featured'] = 0; |
|
| 1053 | + // Set up options array to add this file as an attachment |
|
| 1054 | + $attachment = array(); |
|
| 1055 | + $attachment['post_id'] = $post_id; |
|
| 1056 | + $attachment['title'] = $file_title; |
|
| 1057 | + $attachment['content'] = ''; |
|
| 1058 | + $attachment['file'] = $file_path; |
|
| 1059 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 1060 | + $attachment['menu_order'] = $menu_order; |
|
| 1061 | + $attachment['is_featured'] = 0; |
|
| 1062 | 1062 | |
| 1063 | - $attachment_set = ''; |
|
| 1063 | + $attachment_set = ''; |
|
| 1064 | 1064 | |
| 1065 | - foreach ($attachment as $key => $val) {
|
|
| 1066 | - if ($val != '') |
|
| 1067 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1068 | - } |
|
| 1065 | + foreach ($attachment as $key => $val) {
|
|
| 1066 | + if ($val != '') |
|
| 1067 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1068 | + } |
|
| 1069 | 1069 | |
| 1070 | - $attachment_set = trim($attachment_set, ", "); |
|
| 1070 | + $attachment_set = trim($attachment_set, ", "); |
|
| 1071 | + |
|
| 1072 | + $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1071 | 1073 | |
| 1072 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1074 | + $valid_file_ids[] = $wpdb->insert_id; |
|
| 1075 | + } |
|
| 1073 | 1076 | |
| 1074 | - $valid_file_ids[] = $wpdb->insert_id; |
|
| 1075 | - } |
|
| 1077 | + } |
|
| 1076 | 1078 | |
| 1077 | - } |
|
| 1078 | 1079 | |
| 1080 | + } else {
|
|
| 1081 | + $valid_file_ids[] = $find_image; |
|
| 1079 | 1082 | |
| 1080 | - } else {
|
|
| 1081 | - $valid_file_ids[] = $find_image; |
|
| 1082 | - |
|
| 1083 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1083 | + $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1084 | 1084 | |
| 1085 | - $wpdb->query( |
|
| 1086 | - $wpdb->prepare( |
|
| 1087 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1088 | - array($menu_order, $split_img_path[1], $post_id) |
|
| 1089 | - ) |
|
| 1090 | - ); |
|
| 1085 | + $wpdb->query( |
|
| 1086 | + $wpdb->prepare( |
|
| 1087 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1088 | + array($menu_order, $split_img_path[1], $post_id) |
|
| 1089 | + ) |
|
| 1090 | + ); |
|
| 1091 | 1091 | |
| 1092 | - if ($menu_order == 1) |
|
| 1093 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1092 | + if ($menu_order == 1) |
|
| 1093 | + $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1094 | 1094 | |
| 1095 | - } |
|
| 1095 | + } |
|
| 1096 | 1096 | |
| 1097 | 1097 | |
| 1098 | - } |
|
| 1098 | + } |
|
| 1099 | 1099 | |
| 1100 | - if (!empty($valid_file_ids)) {
|
|
| 1100 | + if (!empty($valid_file_ids)) {
|
|
| 1101 | 1101 | |
| 1102 | - $remove_files = $valid_file_ids; |
|
| 1102 | + $remove_files = $valid_file_ids; |
|
| 1103 | 1103 | |
| 1104 | - $remove_files_length = count($remove_files); |
|
| 1105 | - $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1106 | - $format = implode(',', $remove_files_format);
|
|
| 1107 | - $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1104 | + $remove_files_length = count($remove_files); |
|
| 1105 | + $remove_files_format = array_fill(0, $remove_files_length, '%d'); |
|
| 1106 | + $format = implode(',', $remove_files_format);
|
|
| 1107 | + $valid_files_condition = " ID NOT IN ($format) AND "; |
|
| 1108 | 1108 | |
| 1109 | - } |
|
| 1109 | + } |
|
| 1110 | 1110 | |
| 1111 | - //Get and remove all old images of post from database to set by new order |
|
| 1111 | + //Get and remove all old images of post from database to set by new order |
|
| 1112 | 1112 | |
| 1113 | - if (!empty($post_images)) {
|
|
| 1113 | + if (!empty($post_images)) {
|
|
| 1114 | 1114 | |
| 1115 | - foreach ($post_images as $img) {
|
|
| 1115 | + foreach ($post_images as $img) {
|
|
| 1116 | 1116 | |
| 1117 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1117 | + if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1118 | 1118 | |
| 1119 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1119 | + $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1120 | 1120 | |
| 1121 | - } |
|
| 1121 | + } |
|
| 1122 | 1122 | |
| 1123 | - } |
|
| 1123 | + } |
|
| 1124 | 1124 | |
| 1125 | - } |
|
| 1125 | + } |
|
| 1126 | 1126 | |
| 1127 | - $invalid_files = (object)$invalid_files; |
|
| 1128 | - } |
|
| 1127 | + $invalid_files = (object)$invalid_files; |
|
| 1128 | + } |
|
| 1129 | 1129 | |
| 1130 | - $remove_files[] = $post_id; |
|
| 1130 | + $remove_files[] = $post_id; |
|
| 1131 | 1131 | |
| 1132 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1132 | + $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1133 | 1133 | |
| 1134 | - if (!empty($invalid_files)) |
|
| 1135 | - geodir_remove_attachments($invalid_files); |
|
| 1136 | - } |
|
| 1134 | + if (!empty($invalid_files)) |
|
| 1135 | + geodir_remove_attachments($invalid_files); |
|
| 1136 | + } |
|
| 1137 | 1137 | |
| 1138 | 1138 | } |
| 1139 | 1139 | |
@@ -1147,12 +1147,12 @@ discard block |
||
| 1147 | 1147 | function geodir_remove_temp_images() |
| 1148 | 1148 | {
|
| 1149 | 1149 | |
| 1150 | - global $current_user; |
|
| 1150 | + global $current_user; |
|
| 1151 | 1151 | |
| 1152 | - $uploads = wp_upload_dir(); |
|
| 1153 | - $uploads_dir = $uploads['path']; |
|
| 1152 | + $uploads = wp_upload_dir(); |
|
| 1153 | + $uploads_dir = $uploads['path']; |
|
| 1154 | 1154 | |
| 1155 | - /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1155 | + /* if(is_dir($uploads_dir.'/temp_'.$current_user->data->ID)){
|
|
| 1156 | 1156 | |
| 1157 | 1157 | $dirPath = $uploads_dir.'/temp_'.$current_user->data->ID; |
| 1158 | 1158 | if (substr($dirPath, strlen($dirPath) - 1, 1) != '/') {
|
@@ -1169,8 +1169,8 @@ discard block |
||
| 1169 | 1169 | rmdir($dirPath); |
| 1170 | 1170 | } */ |
| 1171 | 1171 | |
| 1172 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1173 | - geodir_delete_directory($dirname); |
|
| 1172 | + $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1173 | + geodir_delete_directory($dirname); |
|
| 1174 | 1174 | } |
| 1175 | 1175 | |
| 1176 | 1176 | |
@@ -1184,116 +1184,116 @@ discard block |
||
| 1184 | 1184 | */ |
| 1185 | 1185 | function geodir_delete_directory($dirname) |
| 1186 | 1186 | {
|
| 1187 | - $dir_handle = ''; |
|
| 1188 | - if (is_dir($dirname)) |
|
| 1189 | - $dir_handle = opendir($dirname); |
|
| 1190 | - if (!$dir_handle) |
|
| 1191 | - return false; |
|
| 1192 | - while ($file = readdir($dir_handle)) {
|
|
| 1193 | - if ($file != "." && $file != "..") {
|
|
| 1194 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1195 | - unlink($dirname . "/" . $file); |
|
| 1196 | - else |
|
| 1197 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1198 | - } |
|
| 1199 | - } |
|
| 1200 | - closedir($dir_handle); |
|
| 1201 | - rmdir($dirname); |
|
| 1202 | - return true; |
|
| 1187 | + $dir_handle = ''; |
|
| 1188 | + if (is_dir($dirname)) |
|
| 1189 | + $dir_handle = opendir($dirname); |
|
| 1190 | + if (!$dir_handle) |
|
| 1191 | + return false; |
|
| 1192 | + while ($file = readdir($dir_handle)) {
|
|
| 1193 | + if ($file != "." && $file != "..") {
|
|
| 1194 | + if (!is_dir($dirname . "/" . $file)) |
|
| 1195 | + unlink($dirname . "/" . $file); |
|
| 1196 | + else |
|
| 1197 | + geodir_delete_directory($dirname . '/' . $file); |
|
| 1198 | + } |
|
| 1199 | + } |
|
| 1200 | + closedir($dir_handle); |
|
| 1201 | + rmdir($dirname); |
|
| 1202 | + return true; |
|
| 1203 | 1203 | |
| 1204 | 1204 | } |
| 1205 | 1205 | |
| 1206 | 1206 | |
| 1207 | 1207 | if (!function_exists('geodir_remove_attachments')) {
|
| 1208 | - /** |
|
| 1209 | - * Remove post attachments. |
|
| 1210 | - * |
|
| 1211 | - * @since 1.0.0 |
|
| 1212 | - * @package GeoDirectory |
|
| 1213 | - * @param array $postcurr_images Array of image objects. |
|
| 1214 | - */ |
|
| 1215 | - function geodir_remove_attachments($postcurr_images = array()) |
|
| 1216 | - {
|
|
| 1217 | - // Unlink all past images of post |
|
| 1218 | - if (!empty($postcurr_images)) {
|
|
| 1219 | - |
|
| 1220 | - $uploads = wp_upload_dir(); |
|
| 1221 | - $uploads_dir = $uploads['path']; |
|
| 1222 | - |
|
| 1223 | - foreach ($postcurr_images as $postimg) {
|
|
| 1224 | - $image_name_arr = explode('/', $postimg->src);
|
|
| 1225 | - $filename = end($image_name_arr); |
|
| 1226 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1227 | - unlink($uploads_dir . '/' . $filename); |
|
| 1228 | - } |
|
| 1229 | - |
|
| 1230 | - } // endif |
|
| 1231 | - // Unlink all past images of post end |
|
| 1232 | - } |
|
| 1208 | + /** |
|
| 1209 | + * Remove post attachments. |
|
| 1210 | + * |
|
| 1211 | + * @since 1.0.0 |
|
| 1212 | + * @package GeoDirectory |
|
| 1213 | + * @param array $postcurr_images Array of image objects. |
|
| 1214 | + */ |
|
| 1215 | + function geodir_remove_attachments($postcurr_images = array()) |
|
| 1216 | + {
|
|
| 1217 | + // Unlink all past images of post |
|
| 1218 | + if (!empty($postcurr_images)) {
|
|
| 1219 | + |
|
| 1220 | + $uploads = wp_upload_dir(); |
|
| 1221 | + $uploads_dir = $uploads['path']; |
|
| 1222 | + |
|
| 1223 | + foreach ($postcurr_images as $postimg) {
|
|
| 1224 | + $image_name_arr = explode('/', $postimg->src);
|
|
| 1225 | + $filename = end($image_name_arr); |
|
| 1226 | + if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1227 | + unlink($uploads_dir . '/' . $filename); |
|
| 1228 | + } |
|
| 1229 | + |
|
| 1230 | + } // endif |
|
| 1231 | + // Unlink all past images of post end |
|
| 1232 | + } |
|
| 1233 | 1233 | } |
| 1234 | 1234 | |
| 1235 | 1235 | if (!function_exists('geodir_get_featured_image')) {
|
| 1236 | - /** |
|
| 1237 | - * Gets the post featured image. |
|
| 1238 | - * |
|
| 1239 | - * @since 1.0.0 |
|
| 1240 | - * @package GeoDirectory |
|
| 1241 | - * @global object $wpdb WordPress Database object. |
|
| 1242 | - * @global object $post The current post object. |
|
| 1243 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1244 | - * @param int|string $post_id The post ID. |
|
| 1245 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1246 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1247 | - * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1248 | - * @return bool|object Image details as an object. |
|
| 1249 | - */ |
|
| 1250 | - function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1251 | - {
|
|
| 1252 | - |
|
| 1253 | - /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail |
|
| 1236 | + /** |
|
| 1237 | + * Gets the post featured image. |
|
| 1238 | + * |
|
| 1239 | + * @since 1.0.0 |
|
| 1240 | + * @package GeoDirectory |
|
| 1241 | + * @global object $wpdb WordPress Database object. |
|
| 1242 | + * @global object $post The current post object. |
|
| 1243 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1244 | + * @param int|string $post_id The post ID. |
|
| 1245 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1246 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1247 | + * @param bool|string $file Optional. The file path from which you want to get the image details. Default: false. |
|
| 1248 | + * @return bool|object Image details as an object. |
|
| 1249 | + */ |
|
| 1250 | + function geodir_get_featured_image($post_id = '', $size = '', $no_image = false, $file = false) |
|
| 1251 | + {
|
|
| 1252 | + |
|
| 1253 | + /*$img_arr['src'] = get_the_post_thumbnail_url( $post_id, 'medium');//medium/thumbnail |
|
| 1254 | 1254 | $img_arr['path'] = ''; |
| 1255 | 1255 | $img_arr['width'] = ''; |
| 1256 | 1256 | $img_arr['height'] = ''; |
| 1257 | 1257 | $img_arr['title'] = ''; |
| 1258 | 1258 | return (object)$img_arr;*/ |
| 1259 | - global $wpdb, $plugin_prefix, $post; |
|
| 1259 | + global $wpdb, $plugin_prefix, $post; |
|
| 1260 | 1260 | |
| 1261 | - if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1262 | - $post_type = $post->post_type; |
|
| 1263 | - } else {
|
|
| 1264 | - $post_type = get_post_type($post_id); |
|
| 1265 | - } |
|
| 1261 | + if (isset($post->ID) && isset($post->post_type) && $post->ID == $post_id) {
|
|
| 1262 | + $post_type = $post->post_type; |
|
| 1263 | + } else {
|
|
| 1264 | + $post_type = get_post_type($post_id); |
|
| 1265 | + } |
|
| 1266 | 1266 | |
| 1267 | - if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1268 | - return false;// if not a GD CPT return; |
|
| 1269 | - } |
|
| 1267 | + if (!in_array($post_type, geodir_get_posttypes())) {
|
|
| 1268 | + return false;// if not a GD CPT return; |
|
| 1269 | + } |
|
| 1270 | 1270 | |
| 1271 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1271 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1272 | 1272 | |
| 1273 | - if (!$file) {
|
|
| 1274 | - if (isset($post->featured_image)) {
|
|
| 1275 | - $file = $post->featured_image; |
|
| 1276 | - } else {
|
|
| 1277 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1278 | - } |
|
| 1279 | - } |
|
| 1273 | + if (!$file) {
|
|
| 1274 | + if (isset($post->featured_image)) {
|
|
| 1275 | + $file = $post->featured_image; |
|
| 1276 | + } else {
|
|
| 1277 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1278 | + } |
|
| 1279 | + } |
|
| 1280 | 1280 | |
| 1281 | - if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1282 | - $img_arr = array(); |
|
| 1281 | + if ($file != NULL && $file != '' && (($uploads = wp_upload_dir()) && false === $uploads['error'])) {
|
|
| 1282 | + $img_arr = array(); |
|
| 1283 | 1283 | |
| 1284 | - $file_info = pathinfo($file); |
|
| 1285 | - $sub_dir = ''; |
|
| 1286 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1287 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1284 | + $file_info = pathinfo($file); |
|
| 1285 | + $sub_dir = ''; |
|
| 1286 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1287 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1288 | 1288 | |
| 1289 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1290 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1291 | - $uploads_path = $uploads['path']; |
|
| 1289 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1290 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1291 | + $uploads_path = $uploads['path']; |
|
| 1292 | 1292 | |
| 1293 | - $file_name = $file_info['basename']; |
|
| 1293 | + $file_name = $file_info['basename']; |
|
| 1294 | 1294 | |
| 1295 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1296 | - /* |
|
| 1295 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1296 | + /* |
|
| 1297 | 1297 | * Allows the filter of image src for such things as CDN change. |
| 1298 | 1298 | * |
| 1299 | 1299 | * @since 1.5.7 |
@@ -1302,158 +1302,158 @@ discard block |
||
| 1302 | 1302 | * @param string $uploads_url The server upload directory url. |
| 1303 | 1303 | * @param string $uploads_baseurl The uploads dir base url. |
| 1304 | 1304 | */ |
| 1305 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1306 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1307 | - $width = 0; |
|
| 1308 | - $height = 0; |
|
| 1309 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1310 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1311 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1312 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1313 | - } |
|
| 1314 | - $img_arr['width'] = $width; |
|
| 1315 | - $img_arr['height'] = $height; |
|
| 1316 | - $img_arr['title'] = ''; |
|
| 1317 | - } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1318 | - foreach ($post_images as $image) {
|
|
| 1319 | - return $image; |
|
| 1320 | - } |
|
| 1321 | - } else if ($no_image) {
|
|
| 1322 | - $img_arr = array(); |
|
| 1323 | - |
|
| 1324 | - $default_img = ''; |
|
| 1325 | - if (isset($post->default_category) && $post->default_category) {
|
|
| 1326 | - $default_cat = $post->default_category; |
|
| 1327 | - } else {
|
|
| 1328 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1329 | - } |
|
| 1330 | - |
|
| 1331 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1332 | - $default_img = $default_catimg['src']; |
|
| 1333 | - elseif ($no_image) {
|
|
| 1334 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1335 | - } |
|
| 1336 | - |
|
| 1337 | - if (!empty($default_img)) {
|
|
| 1338 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1339 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1340 | - $uploads_path = $uploads['path']; |
|
| 1341 | - |
|
| 1342 | - $img_arr = array(); |
|
| 1343 | - |
|
| 1344 | - $file_info = pathinfo($default_img); |
|
| 1345 | - |
|
| 1346 | - $file_name = $file_info['basename']; |
|
| 1347 | - |
|
| 1348 | - $img_arr['src'] = $default_img; |
|
| 1349 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1350 | - |
|
| 1351 | - $width = 0; |
|
| 1352 | - $height = 0; |
|
| 1353 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1354 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1355 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1356 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1357 | - } |
|
| 1358 | - $img_arr['width'] = $width; |
|
| 1359 | - $img_arr['height'] = $height; |
|
| 1360 | - |
|
| 1361 | - $img_arr['title'] = ''; // add the title to the array |
|
| 1362 | - } |
|
| 1363 | - } |
|
| 1364 | - |
|
| 1365 | - if (!empty($img_arr)) |
|
| 1366 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1367 | - else |
|
| 1368 | - return false; |
|
| 1369 | - } |
|
| 1305 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1306 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1307 | + $width = 0; |
|
| 1308 | + $height = 0; |
|
| 1309 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1310 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1311 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1312 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1313 | + } |
|
| 1314 | + $img_arr['width'] = $width; |
|
| 1315 | + $img_arr['height'] = $height; |
|
| 1316 | + $img_arr['title'] = ''; |
|
| 1317 | + } elseif ($post_images = geodir_get_images($post_id, $size, $no_image, 1)) {
|
|
| 1318 | + foreach ($post_images as $image) {
|
|
| 1319 | + return $image; |
|
| 1320 | + } |
|
| 1321 | + } else if ($no_image) {
|
|
| 1322 | + $img_arr = array(); |
|
| 1323 | + |
|
| 1324 | + $default_img = ''; |
|
| 1325 | + if (isset($post->default_category) && $post->default_category) {
|
|
| 1326 | + $default_cat = $post->default_category; |
|
| 1327 | + } else {
|
|
| 1328 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1329 | + } |
|
| 1330 | + |
|
| 1331 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1332 | + $default_img = $default_catimg['src']; |
|
| 1333 | + elseif ($no_image) {
|
|
| 1334 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1335 | + } |
|
| 1336 | + |
|
| 1337 | + if (!empty($default_img)) {
|
|
| 1338 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1339 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1340 | + $uploads_path = $uploads['path']; |
|
| 1341 | + |
|
| 1342 | + $img_arr = array(); |
|
| 1343 | + |
|
| 1344 | + $file_info = pathinfo($default_img); |
|
| 1345 | + |
|
| 1346 | + $file_name = $file_info['basename']; |
|
| 1347 | + |
|
| 1348 | + $img_arr['src'] = $default_img; |
|
| 1349 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1350 | + |
|
| 1351 | + $width = 0; |
|
| 1352 | + $height = 0; |
|
| 1353 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1354 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1355 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1356 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1357 | + } |
|
| 1358 | + $img_arr['width'] = $width; |
|
| 1359 | + $img_arr['height'] = $height; |
|
| 1360 | + |
|
| 1361 | + $img_arr['title'] = ''; // add the title to the array |
|
| 1362 | + } |
|
| 1363 | + } |
|
| 1364 | + |
|
| 1365 | + if (!empty($img_arr)) |
|
| 1366 | + return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1367 | + else |
|
| 1368 | + return false; |
|
| 1369 | + } |
|
| 1370 | 1370 | } |
| 1371 | 1371 | |
| 1372 | 1372 | if (!function_exists('geodir_show_featured_image')) {
|
| 1373 | - /** |
|
| 1374 | - * Gets the post featured image. |
|
| 1375 | - * |
|
| 1376 | - * @since 1.0.0 |
|
| 1377 | - * @package GeoDirectory |
|
| 1378 | - * @param int|string $post_id The post ID. |
|
| 1379 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1380 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1381 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1382 | - * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1383 | - * @return bool|string Returns image html. |
|
| 1384 | - */ |
|
| 1385 | - function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1386 | - {
|
|
| 1387 | - $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1388 | - |
|
| 1389 | - $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1390 | - |
|
| 1391 | - if (!empty($html) && $echo) {
|
|
| 1392 | - echo $html; |
|
| 1393 | - } elseif (!empty($html)) {
|
|
| 1394 | - return $html; |
|
| 1395 | - } else |
|
| 1396 | - return false; |
|
| 1397 | - } |
|
| 1373 | + /** |
|
| 1374 | + * Gets the post featured image. |
|
| 1375 | + * |
|
| 1376 | + * @since 1.0.0 |
|
| 1377 | + * @package GeoDirectory |
|
| 1378 | + * @param int|string $post_id The post ID. |
|
| 1379 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1380 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1381 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1382 | + * @param bool|string $fimage Optional. The file path from which you want to get the image details. Default: false. |
|
| 1383 | + * @return bool|string Returns image html. |
|
| 1384 | + */ |
|
| 1385 | + function geodir_show_featured_image($post_id = '', $size = 'thumbnail', $no_image = false, $echo = true, $fimage = false) |
|
| 1386 | + {
|
|
| 1387 | + $image = geodir_get_featured_image($post_id, $size, $no_image, $fimage); |
|
| 1388 | + |
|
| 1389 | + $html = geodir_show_image($image, $size, $no_image, false); |
|
| 1390 | + |
|
| 1391 | + if (!empty($html) && $echo) {
|
|
| 1392 | + echo $html; |
|
| 1393 | + } elseif (!empty($html)) {
|
|
| 1394 | + return $html; |
|
| 1395 | + } else |
|
| 1396 | + return false; |
|
| 1397 | + } |
|
| 1398 | 1398 | } |
| 1399 | 1399 | |
| 1400 | 1400 | if (!function_exists('geodir_get_images')) {
|
| 1401 | - /** |
|
| 1402 | - * Gets the post images. |
|
| 1403 | - * |
|
| 1404 | - * @since 1.0.0 |
|
| 1405 | - * @package GeoDirectory |
|
| 1406 | - * @global object $wpdb WordPress Database object. |
|
| 1407 | - * @param int $post_id The post ID. |
|
| 1408 | - * @param string $img_size Optional. Thumbnail size. |
|
| 1409 | - * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1410 | - * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1411 | - * @param int|string $limit Optional. Number of images. |
|
| 1412 | - * @return array|bool Returns images as an array. Each item is an object. |
|
| 1413 | - */ |
|
| 1414 | - function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1415 | - {
|
|
| 1416 | - global $wpdb; |
|
| 1417 | - if ($limit) {
|
|
| 1418 | - $limit_q = " LIMIT $limit "; |
|
| 1419 | - } else {
|
|
| 1420 | - $limit_q = ''; |
|
| 1421 | - } |
|
| 1422 | - $not_featured = ''; |
|
| 1423 | - $sub_dir = ''; |
|
| 1424 | - if (!$add_featured) |
|
| 1425 | - $not_featured = " AND is_featured = 0 "; |
|
| 1426 | - |
|
| 1427 | - $arrImages = $wpdb->get_results( |
|
| 1428 | - $wpdb->prepare( |
|
| 1429 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1430 | - array('%image%', $post_id)
|
|
| 1431 | - ) |
|
| 1432 | - ); |
|
| 1433 | - |
|
| 1434 | - $counter = 0; |
|
| 1435 | - $return_arr = array(); |
|
| 1436 | - |
|
| 1437 | - if (!empty($arrImages)) {
|
|
| 1438 | - foreach ($arrImages as $attechment) {
|
|
| 1439 | - |
|
| 1440 | - $img_arr = array(); |
|
| 1441 | - $img_arr['id'] = $attechment->ID; |
|
| 1442 | - $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1443 | - |
|
| 1444 | - $file_info = pathinfo($attechment->file); |
|
| 1445 | - |
|
| 1446 | - if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1447 | - $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1448 | - |
|
| 1449 | - $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1450 | - $uploads_baseurl = $uploads['baseurl']; |
|
| 1451 | - $uploads_path = $uploads['path']; |
|
| 1452 | - |
|
| 1453 | - $file_name = $file_info['basename']; |
|
| 1454 | - |
|
| 1455 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1456 | - /* |
|
| 1401 | + /** |
|
| 1402 | + * Gets the post images. |
|
| 1403 | + * |
|
| 1404 | + * @since 1.0.0 |
|
| 1405 | + * @package GeoDirectory |
|
| 1406 | + * @global object $wpdb WordPress Database object. |
|
| 1407 | + * @param int $post_id The post ID. |
|
| 1408 | + * @param string $img_size Optional. Thumbnail size. |
|
| 1409 | + * @param bool $no_images Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1410 | + * @param bool $add_featured Optional. Do you want to include featured images too? Default: true. |
|
| 1411 | + * @param int|string $limit Optional. Number of images. |
|
| 1412 | + * @return array|bool Returns images as an array. Each item is an object. |
|
| 1413 | + */ |
|
| 1414 | + function geodir_get_images($post_id = 0, $img_size = '', $no_images = false, $add_featured = true, $limit = '') |
|
| 1415 | + {
|
|
| 1416 | + global $wpdb; |
|
| 1417 | + if ($limit) {
|
|
| 1418 | + $limit_q = " LIMIT $limit "; |
|
| 1419 | + } else {
|
|
| 1420 | + $limit_q = ''; |
|
| 1421 | + } |
|
| 1422 | + $not_featured = ''; |
|
| 1423 | + $sub_dir = ''; |
|
| 1424 | + if (!$add_featured) |
|
| 1425 | + $not_featured = " AND is_featured = 0 "; |
|
| 1426 | + |
|
| 1427 | + $arrImages = $wpdb->get_results( |
|
| 1428 | + $wpdb->prepare( |
|
| 1429 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1430 | + array('%image%', $post_id)
|
|
| 1431 | + ) |
|
| 1432 | + ); |
|
| 1433 | + |
|
| 1434 | + $counter = 0; |
|
| 1435 | + $return_arr = array(); |
|
| 1436 | + |
|
| 1437 | + if (!empty($arrImages)) {
|
|
| 1438 | + foreach ($arrImages as $attechment) {
|
|
| 1439 | + |
|
| 1440 | + $img_arr = array(); |
|
| 1441 | + $img_arr['id'] = $attechment->ID; |
|
| 1442 | + $img_arr['user_id'] = isset($attechment->user_id) ? $attechment->user_id : 0; |
|
| 1443 | + |
|
| 1444 | + $file_info = pathinfo($attechment->file); |
|
| 1445 | + |
|
| 1446 | + if ($file_info['dirname'] != '.' && $file_info['dirname'] != '..') |
|
| 1447 | + $sub_dir = stripslashes_deep($file_info['dirname']); |
|
| 1448 | + |
|
| 1449 | + $uploads = wp_upload_dir(trim($sub_dir, '/')); // Array of key => value pairs |
|
| 1450 | + $uploads_baseurl = $uploads['baseurl']; |
|
| 1451 | + $uploads_path = $uploads['path']; |
|
| 1452 | + |
|
| 1453 | + $file_name = $file_info['basename']; |
|
| 1454 | + |
|
| 1455 | + $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1456 | + /* |
|
| 1457 | 1457 | * Allows the filter of image src for such things as CDN change. |
| 1458 | 1458 | * |
| 1459 | 1459 | * @since 1.5.7 |
@@ -1462,534 +1462,534 @@ discard block |
||
| 1462 | 1462 | * @param string $uploads_url The server upload directory url. |
| 1463 | 1463 | * @param string $uploads_baseurl The uploads dir base url. |
| 1464 | 1464 | */ |
| 1465 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1466 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1467 | - $width = 0; |
|
| 1468 | - $height = 0; |
|
| 1469 | - if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1470 | - $imagesize = getimagesize($img_arr['path']); |
|
| 1471 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1472 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1473 | - } |
|
| 1474 | - $img_arr['width'] = $width; |
|
| 1475 | - $img_arr['height'] = $height; |
|
| 1476 | - |
|
| 1477 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1478 | - $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1479 | - $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1480 | - $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1481 | - $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1482 | - |
|
| 1483 | - $return_arr[] = (object)$img_arr; |
|
| 1484 | - |
|
| 1485 | - $counter++; |
|
| 1486 | - } |
|
| 1487 | - return (object)$return_arr; |
|
| 1488 | - } else if ($no_images) {
|
|
| 1489 | - $default_img = ''; |
|
| 1490 | - $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1491 | - $post_type = get_post_type($post_id); |
|
| 1492 | - if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1493 | - $default_img = $default_catimg['src']; |
|
| 1494 | - elseif ($no_images) {
|
|
| 1495 | - $default_img = get_option('geodir_listing_no_img');
|
|
| 1496 | - } |
|
| 1497 | - |
|
| 1498 | - if (!empty($default_img)) {
|
|
| 1499 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1465 | + $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1466 | + $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1467 | + $width = 0; |
|
| 1468 | + $height = 0; |
|
| 1469 | + if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
|
| 1470 | + $imagesize = getimagesize($img_arr['path']); |
|
| 1471 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1472 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1473 | + } |
|
| 1474 | + $img_arr['width'] = $width; |
|
| 1475 | + $img_arr['height'] = $height; |
|
| 1476 | + |
|
| 1477 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1478 | + $img_arr['title'] = $attechment->title; // add the title to the array |
|
| 1479 | + $img_arr['caption'] = isset($attechment->caption) ? $attechment->caption : ''; // add the caption to the array |
|
| 1480 | + $img_arr['content'] = $attechment->content; // add the description to the array |
|
| 1481 | + $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
|
| 1482 | + |
|
| 1483 | + $return_arr[] = (object)$img_arr; |
|
| 1484 | + |
|
| 1485 | + $counter++; |
|
| 1486 | + } |
|
| 1487 | + return (object)$return_arr; |
|
| 1488 | + } else if ($no_images) {
|
|
| 1489 | + $default_img = ''; |
|
| 1490 | + $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1491 | + $post_type = get_post_type($post_id); |
|
| 1492 | + if ($default_catimg = geodir_get_default_catimage($default_cat, $post_type)) |
|
| 1493 | + $default_img = $default_catimg['src']; |
|
| 1494 | + elseif ($no_images) {
|
|
| 1495 | + $default_img = get_option('geodir_listing_no_img');
|
|
| 1496 | + } |
|
| 1497 | + |
|
| 1498 | + if (!empty($default_img)) {
|
|
| 1499 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 1500 | 1500 | |
| 1501 | - $image_path = $default_img; |
|
| 1502 | - if (!path_is_absolute($image_path)) {
|
|
| 1503 | - $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1504 | - } |
|
| 1505 | - |
|
| 1506 | - $file_info = pathinfo($default_img); |
|
| 1507 | - $file_name = $file_info['basename']; |
|
| 1508 | - |
|
| 1509 | - $width = ''; |
|
| 1510 | - $height = ''; |
|
| 1511 | - if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1512 | - $imagesize = getimagesize($image_path); |
|
| 1513 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1514 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1515 | - } |
|
| 1501 | + $image_path = $default_img; |
|
| 1502 | + if (!path_is_absolute($image_path)) {
|
|
| 1503 | + $image_path = str_replace($uploads['baseurl'], $uploads['basedir'], $image_path); |
|
| 1504 | + } |
|
| 1505 | + |
|
| 1506 | + $file_info = pathinfo($default_img); |
|
| 1507 | + $file_name = $file_info['basename']; |
|
| 1508 | + |
|
| 1509 | + $width = ''; |
|
| 1510 | + $height = ''; |
|
| 1511 | + if (is_file($image_path) && file_exists($image_path)) {
|
|
| 1512 | + $imagesize = getimagesize($image_path); |
|
| 1513 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1514 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1515 | + } |
|
| 1516 | 1516 | |
| 1517 | - $img_arr = array(); |
|
| 1518 | - $img_arr['src'] = $default_img; |
|
| 1519 | - $img_arr['path'] = $image_path; |
|
| 1520 | - $img_arr['width'] = $width; |
|
| 1521 | - $img_arr['height'] = $height; |
|
| 1522 | - $img_arr['file'] = $file_name; // add the title to the array |
|
| 1523 | - $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1524 | - $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1525 | - |
|
| 1526 | - $return_arr[] = (object)$img_arr; |
|
| 1527 | - |
|
| 1528 | - return $return_arr; |
|
| 1529 | - } else |
|
| 1530 | - return false; |
|
| 1531 | - } |
|
| 1532 | - } |
|
| 1517 | + $img_arr = array(); |
|
| 1518 | + $img_arr['src'] = $default_img; |
|
| 1519 | + $img_arr['path'] = $image_path; |
|
| 1520 | + $img_arr['width'] = $width; |
|
| 1521 | + $img_arr['height'] = $height; |
|
| 1522 | + $img_arr['file'] = $file_name; // add the title to the array |
|
| 1523 | + $img_arr['title'] = $file_info['filename']; // add the title to the array |
|
| 1524 | + $img_arr['content'] = $file_info['filename']; // add the description to the array |
|
| 1525 | + |
|
| 1526 | + $return_arr[] = (object)$img_arr; |
|
| 1527 | + |
|
| 1528 | + return $return_arr; |
|
| 1529 | + } else |
|
| 1530 | + return false; |
|
| 1531 | + } |
|
| 1532 | + } |
|
| 1533 | 1533 | } |
| 1534 | 1534 | |
| 1535 | 1535 | if (!function_exists('geodir_show_image')) {
|
| 1536 | - /** |
|
| 1537 | - * Show image using image details. |
|
| 1538 | - * |
|
| 1539 | - * @since 1.0.0 |
|
| 1540 | - * @package GeoDirectory |
|
| 1541 | - * @param array|object $request Image info either as an array or object. |
|
| 1542 | - * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1543 | - * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1544 | - * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1545 | - * @return bool|string Returns image html. |
|
| 1546 | - */ |
|
| 1547 | - function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1548 | - {
|
|
| 1549 | - $image = new stdClass(); |
|
| 1550 | - |
|
| 1551 | - $html = ''; |
|
| 1552 | - if (!empty($request)) {
|
|
| 1553 | - if (!is_object($request)){
|
|
| 1554 | - $request = (object)$request; |
|
| 1555 | - } |
|
| 1556 | - |
|
| 1557 | - if (isset($request->src) && !isset($request->path)) {
|
|
| 1558 | - $request->path = $request->src; |
|
| 1559 | - } |
|
| 1560 | - |
|
| 1561 | - /* |
|
| 1536 | + /** |
|
| 1537 | + * Show image using image details. |
|
| 1538 | + * |
|
| 1539 | + * @since 1.0.0 |
|
| 1540 | + * @package GeoDirectory |
|
| 1541 | + * @param array|object $request Image info either as an array or object. |
|
| 1542 | + * @param string $size Optional. Thumbnail size. Default: thumbnail. |
|
| 1543 | + * @param bool $no_image Optional. Do you want to return the default image when no image is available? Default: false. |
|
| 1544 | + * @param bool $echo Optional. Do you want to print it instead of returning it? Default: true. |
|
| 1545 | + * @return bool|string Returns image html. |
|
| 1546 | + */ |
|
| 1547 | + function geodir_show_image($request = array(), $size = 'thumbnail', $no_image = false, $echo = true) |
|
| 1548 | + {
|
|
| 1549 | + $image = new stdClass(); |
|
| 1550 | + |
|
| 1551 | + $html = ''; |
|
| 1552 | + if (!empty($request)) {
|
|
| 1553 | + if (!is_object($request)){
|
|
| 1554 | + $request = (object)$request; |
|
| 1555 | + } |
|
| 1556 | + |
|
| 1557 | + if (isset($request->src) && !isset($request->path)) {
|
|
| 1558 | + $request->path = $request->src; |
|
| 1559 | + } |
|
| 1560 | + |
|
| 1561 | + /* |
|
| 1562 | 1562 | * getimagesize() works faster from path than url so we try and get path if we can. |
| 1563 | 1563 | */ |
| 1564 | - $upload_dir = wp_upload_dir(); |
|
| 1565 | - $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1566 | - $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1567 | - if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1568 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1569 | - } |
|
| 1564 | + $upload_dir = wp_upload_dir(); |
|
| 1565 | + $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
|
| 1566 | + $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
|
| 1567 | + if (strpos($img_no_http, $upload_no_http) !== false) {
|
|
| 1568 | + $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1569 | + } |
|
| 1570 | 1570 | |
| 1571 | - $width = 0; |
|
| 1572 | - $height = 0; |
|
| 1573 | - if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1574 | - $imagesize = getimagesize($request->path); |
|
| 1575 | - $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1576 | - $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1577 | - } |
|
| 1578 | - |
|
| 1579 | - $image->src = $request->src; |
|
| 1580 | - $image->width = $width; |
|
| 1581 | - $image->height = $height; |
|
| 1582 | - |
|
| 1583 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1584 | - |
|
| 1585 | - if (!is_wp_error($max_size)) {
|
|
| 1586 | - if ($image->width) {
|
|
| 1587 | - if ($image->height >= $image->width) {
|
|
| 1588 | - $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1589 | - } else if ($image->width < ($max_size->h)) {
|
|
| 1590 | - $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1591 | - } else |
|
| 1592 | - $width_per = 100; |
|
| 1593 | - } |
|
| 1594 | - |
|
| 1595 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1596 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1597 | - } else {
|
|
| 1598 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
|
|
| 1599 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1600 | - }else{
|
|
| 1601 | - //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1602 | - //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
|
| 1603 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1604 | - |
|
| 1605 | - } |
|
| 1606 | - |
|
| 1607 | - } |
|
| 1608 | - } |
|
| 1609 | - } |
|
| 1610 | - |
|
| 1611 | - if (!empty($html) && $echo) {
|
|
| 1612 | - echo $html; |
|
| 1613 | - } elseif (!empty($html)) {
|
|
| 1614 | - return $html; |
|
| 1615 | - } else |
|
| 1616 | - return false; |
|
| 1617 | - } |
|
| 1618 | -} |
|
| 1571 | + $width = 0; |
|
| 1572 | + $height = 0; |
|
| 1573 | + if (is_file($request->path) && file_exists($request->path)) {
|
|
| 1574 | + $imagesize = getimagesize($request->path); |
|
| 1575 | + $width = !empty($imagesize) && isset($imagesize[0]) ? $imagesize[0] : ''; |
|
| 1576 | + $height = !empty($imagesize) && isset($imagesize[1]) ? $imagesize[1] : ''; |
|
| 1577 | + } |
|
| 1619 | 1578 | |
| 1620 | -if (!function_exists('geodir_set_post_terms')) {
|
|
| 1621 | - /** |
|
| 1622 | - * Set post Categories. |
|
| 1623 | - * |
|
| 1624 | - * @since 1.0.0 |
|
| 1625 | - * @package GeoDirectory |
|
| 1626 | - * @global object $wpdb WordPress Database object. |
|
| 1627 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1628 | - * @param int $post_id The post ID. |
|
| 1629 | - * @param array $terms An array of term objects. |
|
| 1630 | - * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1631 | - * @param string $taxonomy Taxonomy slug. |
|
| 1632 | - */ |
|
| 1633 | - function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1634 | - {
|
|
| 1635 | - global $wpdb, $plugin_prefix; |
|
| 1579 | + $image->src = $request->src; |
|
| 1580 | + $image->width = $width; |
|
| 1581 | + $image->height = $height; |
|
| 1636 | 1582 | |
| 1637 | - $post_type = get_post_type($post_id); |
|
| 1583 | + $max_size = (object)geodir_get_imagesize($size); |
|
| 1638 | 1584 | |
| 1639 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1585 | + if (!is_wp_error($max_size)) {
|
|
| 1586 | + if ($image->width) {
|
|
| 1587 | + if ($image->height >= $image->width) {
|
|
| 1588 | + $width_per = round(((($image->width * ($max_size->h / $image->height)) / $max_size->w) * 100), 2); |
|
| 1589 | + } else if ($image->width < ($max_size->h)) {
|
|
| 1590 | + $width_per = round((($image->width / $max_size->w) * 100), 2); |
|
| 1591 | + } else |
|
| 1592 | + $width_per = 100; |
|
| 1593 | + } |
|
| 1594 | + |
|
| 1595 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1596 | + $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1597 | + } else {
|
|
| 1598 | + if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
|
|
| 1599 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1600 | + }else{
|
|
| 1601 | + //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1602 | + //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
|
| 1603 | + $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1604 | + |
|
| 1605 | + } |
|
| 1640 | 1606 | |
| 1641 | - if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1607 | + } |
|
| 1608 | + } |
|
| 1609 | + } |
|
| 1610 | + |
|
| 1611 | + if (!empty($html) && $echo) {
|
|
| 1612 | + echo $html; |
|
| 1613 | + } elseif (!empty($html)) {
|
|
| 1614 | + return $html; |
|
| 1615 | + } else |
|
| 1616 | + return false; |
|
| 1617 | + } |
|
| 1618 | +} |
|
| 1642 | 1619 | |
| 1643 | - if ($taxonomy == $post_type . '_tags') {
|
|
| 1644 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1645 | - geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1646 | - } |
|
| 1647 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1648 | - $srcharr = array('"', '\\');
|
|
| 1649 | - $replarr = array(""", '');
|
|
| 1620 | +if (!function_exists('geodir_set_post_terms')) {
|
|
| 1621 | + /** |
|
| 1622 | + * Set post Categories. |
|
| 1623 | + * |
|
| 1624 | + * @since 1.0.0 |
|
| 1625 | + * @package GeoDirectory |
|
| 1626 | + * @global object $wpdb WordPress Database object. |
|
| 1627 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 1628 | + * @param int $post_id The post ID. |
|
| 1629 | + * @param array $terms An array of term objects. |
|
| 1630 | + * @param array $tt_ids An array of term taxonomy IDs. |
|
| 1631 | + * @param string $taxonomy Taxonomy slug. |
|
| 1632 | + */ |
|
| 1633 | + function geodir_set_post_terms($post_id, $terms, $tt_ids, $taxonomy) |
|
| 1634 | + {
|
|
| 1635 | + global $wpdb, $plugin_prefix; |
|
| 1636 | + |
|
| 1637 | + $post_type = get_post_type($post_id); |
|
| 1638 | + |
|
| 1639 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1640 | + |
|
| 1641 | + if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
|
| 1642 | + |
|
| 1643 | + if ($taxonomy == $post_type . '_tags') {
|
|
| 1644 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1645 | + geodir_save_post_meta($post_id, 'post_tags', $terms); |
|
| 1646 | + } |
|
| 1647 | + } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1648 | + $srcharr = array('"', '\\');
|
|
| 1649 | + $replarr = array(""", '');
|
|
| 1650 | 1650 | |
| 1651 | - $post_obj = get_post($post_id); |
|
| 1651 | + $post_obj = get_post($post_id); |
|
| 1652 | 1652 | |
| 1653 | - $cat_ids = array('0');
|
|
| 1654 | - if (is_array($tt_ids)) |
|
| 1655 | - $cat_ids = $tt_ids; |
|
| 1653 | + $cat_ids = array('0');
|
|
| 1654 | + if (is_array($tt_ids)) |
|
| 1655 | + $cat_ids = $tt_ids; |
|
| 1656 | 1656 | |
| 1657 | 1657 | |
| 1658 | - if (!empty($cat_ids)) {
|
|
| 1659 | - $cat_ids_array = $cat_ids; |
|
| 1660 | - $cat_ids_length = count($cat_ids_array); |
|
| 1661 | - $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1662 | - $format = implode(',', $cat_ids_format);
|
|
| 1658 | + if (!empty($cat_ids)) {
|
|
| 1659 | + $cat_ids_array = $cat_ids; |
|
| 1660 | + $cat_ids_length = count($cat_ids_array); |
|
| 1661 | + $cat_ids_format = array_fill(0, $cat_ids_length, '%d'); |
|
| 1662 | + $format = implode(',', $cat_ids_format);
|
|
| 1663 | 1663 | |
| 1664 | - $cat_ids_array_del = $cat_ids_array; |
|
| 1665 | - $cat_ids_array_del[] = $post_id; |
|
| 1664 | + $cat_ids_array_del = $cat_ids_array; |
|
| 1665 | + $cat_ids_array_del[] = $post_id; |
|
| 1666 | 1666 | |
| 1667 | - $wpdb->get_var( |
|
| 1668 | - $wpdb->prepare( |
|
| 1669 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1670 | - $cat_ids_array_del |
|
| 1671 | - ) |
|
| 1672 | - ); |
|
| 1667 | + $wpdb->get_var( |
|
| 1668 | + $wpdb->prepare( |
|
| 1669 | + "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1670 | + $cat_ids_array_del |
|
| 1671 | + ) |
|
| 1672 | + ); |
|
| 1673 | 1673 | |
| 1674 | 1674 | |
| 1675 | - $post_term = $wpdb->get_col( |
|
| 1676 | - $wpdb->prepare( |
|
| 1677 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1678 | - $cat_ids_array |
|
| 1679 | - ) |
|
| 1680 | - ); |
|
| 1675 | + $post_term = $wpdb->get_col( |
|
| 1676 | + $wpdb->prepare( |
|
| 1677 | + "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1678 | + $cat_ids_array |
|
| 1679 | + ) |
|
| 1680 | + ); |
|
| 1681 | 1681 | |
| 1682 | - } |
|
| 1682 | + } |
|
| 1683 | 1683 | |
| 1684 | - $post_marker_json = ''; |
|
| 1684 | + $post_marker_json = ''; |
|
| 1685 | 1685 | |
| 1686 | - if (!empty($post_term)): |
|
| 1686 | + if (!empty($post_term)): |
|
| 1687 | 1687 | |
| 1688 | - foreach ($post_term as $cat_id): |
|
| 1688 | + foreach ($post_term as $cat_id): |
|
| 1689 | 1689 | |
| 1690 | - $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1691 | - $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1690 | + $term_icon_url = get_tax_meta($cat_id, 'ct_cat_icon', false, $post_type); |
|
| 1691 | + $term_icon = isset($term_icon_url['src']) ? $term_icon_url['src'] : ''; |
|
| 1692 | 1692 | |
| 1693 | - $post_title = $post_obj->title; |
|
| 1694 | - $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1693 | + $post_title = $post_obj->title; |
|
| 1694 | + $title = str_replace($srcharr, $replarr, $post_title); |
|
| 1695 | 1695 | |
| 1696 | - $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1697 | - $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1696 | + $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
|
| 1697 | + $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
|
| 1698 | 1698 | |
| 1699 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1700 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1699 | + $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1700 | + $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1701 | 1701 | |
| 1702 | - $json = '{';
|
|
| 1703 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1704 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1705 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1706 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1707 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1708 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1709 | - $json .= '}'; |
|
| 1702 | + $json = '{';
|
|
| 1703 | + $json .= '"id":"' . $post_id . '",'; |
|
| 1704 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1705 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 1706 | + $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1707 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 1708 | + $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1709 | + $json .= '}'; |
|
| 1710 | 1710 | |
| 1711 | 1711 | |
| 1712 | - if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1713 | - $post_marker_json = $json; |
|
| 1712 | + if ($cat_id == geodir_get_post_meta($post_id, 'default_category', true)) |
|
| 1713 | + $post_marker_json = $json; |
|
| 1714 | 1714 | |
| 1715 | 1715 | |
| 1716 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1716 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1717 | 1717 | |
| 1718 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1718 | + $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1719 | 1719 | post_title = %s, |
| 1720 | 1720 | json = %s |
| 1721 | 1721 | WHERE post_id = %d AND cat_id = %d ", |
| 1722 | - array($post_title, $json, $post_id, $cat_id)); |
|
| 1722 | + array($post_title, $json, $post_id, $cat_id)); |
|
| 1723 | 1723 | |
| 1724 | - } else {
|
|
| 1724 | + } else {
|
|
| 1725 | 1725 | |
| 1726 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1726 | + $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1727 | 1727 | post_id = %d, |
| 1728 | 1728 | post_title = %s, |
| 1729 | 1729 | cat_id = %d, |
| 1730 | 1730 | json = %s", |
| 1731 | - array($post_id, $post_title, $cat_id, $json)); |
|
| 1731 | + array($post_id, $post_title, $cat_id, $json)); |
|
| 1732 | 1732 | |
| 1733 | - } |
|
| 1733 | + } |
|
| 1734 | 1734 | |
| 1735 | - $wpdb->query($json_query); |
|
| 1735 | + $wpdb->query($json_query); |
|
| 1736 | 1736 | |
| 1737 | - endforeach; |
|
| 1737 | + endforeach; |
|
| 1738 | 1738 | |
| 1739 | - endif; |
|
| 1739 | + endif; |
|
| 1740 | 1740 | |
| 1741 | - if (!empty($post_term) && is_array($post_term)) {
|
|
| 1742 | - $categories = implode(',', $post_term);
|
|
| 1741 | + if (!empty($post_term) && is_array($post_term)) {
|
|
| 1742 | + $categories = implode(',', $post_term);
|
|
| 1743 | 1743 | |
| 1744 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1744 | + if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1745 | 1745 | |
| 1746 | - if (empty($post_marker_json)) |
|
| 1747 | - $post_marker_json = isset($json) ? $json : ''; |
|
| 1746 | + if (empty($post_marker_json)) |
|
| 1747 | + $post_marker_json = isset($json) ? $json : ''; |
|
| 1748 | 1748 | |
| 1749 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1749 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1750 | 1750 | |
| 1751 | - $wpdb->query( |
|
| 1752 | - $wpdb->prepare( |
|
| 1753 | - "UPDATE " . $table . " SET |
|
| 1751 | + $wpdb->query( |
|
| 1752 | + $wpdb->prepare( |
|
| 1753 | + "UPDATE " . $table . " SET |
|
| 1754 | 1754 | " . $taxonomy . " = %s, |
| 1755 | 1755 | marker_json = %s |
| 1756 | 1756 | where post_id = %d", |
| 1757 | - array($categories, $post_marker_json, $post_id) |
|
| 1758 | - ) |
|
| 1759 | - ); |
|
| 1757 | + array($categories, $post_marker_json, $post_id) |
|
| 1758 | + ) |
|
| 1759 | + ); |
|
| 1760 | 1760 | |
| 1761 | - if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1761 | + if (isset($_REQUEST['action']) && $_REQUEST['action'] == 'inline-save') {
|
|
| 1762 | 1762 | |
| 1763 | - $categories = trim($categories, ','); |
|
| 1763 | + $categories = trim($categories, ','); |
|
| 1764 | 1764 | |
| 1765 | - if ($categories) {
|
|
| 1765 | + if ($categories) {
|
|
| 1766 | 1766 | |
| 1767 | - $categories = explode(',', $categories);
|
|
| 1767 | + $categories = explode(',', $categories);
|
|
| 1768 | 1768 | |
| 1769 | - $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1769 | + $default_category = geodir_get_post_meta($post_id, 'default_category', true); |
|
| 1770 | 1770 | |
| 1771 | - if (!in_array($default_category, $categories)) {
|
|
| 1771 | + if (!in_array($default_category, $categories)) {
|
|
| 1772 | 1772 | |
| 1773 | - $wpdb->query( |
|
| 1774 | - $wpdb->prepare( |
|
| 1775 | - "UPDATE " . $table . " SET |
|
| 1773 | + $wpdb->query( |
|
| 1774 | + $wpdb->prepare( |
|
| 1775 | + "UPDATE " . $table . " SET |
|
| 1776 | 1776 | default_category = %s |
| 1777 | 1777 | where post_id = %d", |
| 1778 | - array($categories[0], $post_id) |
|
| 1779 | - ) |
|
| 1780 | - ); |
|
| 1778 | + array($categories[0], $post_id) |
|
| 1779 | + ) |
|
| 1780 | + ); |
|
| 1781 | 1781 | |
| 1782 | - $default_category = $categories[0]; |
|
| 1782 | + $default_category = $categories[0]; |
|
| 1783 | 1783 | |
| 1784 | - } |
|
| 1784 | + } |
|
| 1785 | 1785 | |
| 1786 | - if ($default_category == '') |
|
| 1787 | - $default_category = $categories[0]; |
|
| 1786 | + if ($default_category == '') |
|
| 1787 | + $default_category = $categories[0]; |
|
| 1788 | 1788 | |
| 1789 | - geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1789 | + geodir_set_postcat_structure($post_id, $taxonomy, $default_category, ''); |
|
| 1790 | 1790 | |
| 1791 | - } |
|
| 1791 | + } |
|
| 1792 | 1792 | |
| 1793 | - } |
|
| 1793 | + } |
|
| 1794 | 1794 | |
| 1795 | 1795 | |
| 1796 | - } else {
|
|
| 1796 | + } else {
|
|
| 1797 | 1797 | |
| 1798 | - $wpdb->query( |
|
| 1799 | - $wpdb->prepare( |
|
| 1800 | - "INSERT INTO " . $table . " SET |
|
| 1798 | + $wpdb->query( |
|
| 1799 | + $wpdb->prepare( |
|
| 1800 | + "INSERT INTO " . $table . " SET |
|
| 1801 | 1801 | post_id = %d, |
| 1802 | 1802 | " . $taxonomy . " = %s, |
| 1803 | 1803 | marker_json = %s ", |
| 1804 | 1804 | |
| 1805 | - array($post_id, $categories, $post_marker_json) |
|
| 1806 | - ) |
|
| 1807 | - ); |
|
| 1808 | - } |
|
| 1809 | - } |
|
| 1810 | - } |
|
| 1811 | - } |
|
| 1812 | - } |
|
| 1805 | + array($post_id, $categories, $post_marker_json) |
|
| 1806 | + ) |
|
| 1807 | + ); |
|
| 1808 | + } |
|
| 1809 | + } |
|
| 1810 | + } |
|
| 1811 | + } |
|
| 1812 | + } |
|
| 1813 | 1813 | } |
| 1814 | 1814 | |
| 1815 | 1815 | if (!function_exists('geodir_get_infowindow_html')) {
|
| 1816 | - /** |
|
| 1817 | - * Set post Map Marker info html. |
|
| 1818 | - * |
|
| 1819 | - * @since 1.0.0 |
|
| 1820 | - * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1821 | - * @package GeoDirectory |
|
| 1822 | - * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1823 | - * @global object $gd_session GeoDirectory Session object. |
|
| 1824 | - * @param object $postinfo_obj The post details object. |
|
| 1825 | - * @param string $post_preview Is this a post preview?. |
|
| 1826 | - * @return mixed|string|void |
|
| 1827 | - */ |
|
| 1828 | - function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1829 | - {
|
|
| 1830 | - global $preview, $gd_session; |
|
| 1831 | - $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1832 | - $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1833 | - |
|
| 1834 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1835 | - $ID = ''; |
|
| 1836 | - $plink = ''; |
|
| 1837 | - |
|
| 1838 | - if (isset($postinfo_obj->pid)) {
|
|
| 1839 | - $ID = $postinfo_obj->pid; |
|
| 1840 | - $plink = get_permalink($ID); |
|
| 1841 | - } |
|
| 1842 | - |
|
| 1843 | - $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1844 | - $lat = $postinfo_obj->post_latitude; |
|
| 1845 | - $lng = $postinfo_obj->post_longitude; |
|
| 1846 | - $address = str_replace($srcharr, $replarr, ($postinfo_obj->post_address)); |
|
| 1847 | - $contact = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_contact)); |
|
| 1848 | - $timing = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_timing)); |
|
| 1849 | - } else {
|
|
| 1850 | - $ID = $postinfo_obj->post_id; |
|
| 1851 | - $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1852 | - $plink = get_permalink($ID); |
|
| 1853 | - $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1854 | - $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1855 | - $address = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'post_address', true), ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1856 | - $contact = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'geodir_contact', true), ENT_COMPAT, 'UTF-8')); |
|
| 1857 | - $timing = str_replace($srcharr, $replarr, (geodir_get_post_meta($ID, 'geodir_timing', true))); |
|
| 1858 | - } |
|
| 1859 | - |
|
| 1860 | - // filter field as per price package |
|
| 1861 | - global $geodir_addon_list; |
|
| 1862 | - if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
|
|
| 1863 | - $post_type = get_post_type($ID); |
|
| 1864 | - $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1865 | - $field_name = 'geodir_contact'; |
|
| 1866 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1867 | - $contact = ''; |
|
| 1868 | - } |
|
| 1869 | - |
|
| 1870 | - $field_name = 'geodir_timing'; |
|
| 1871 | - if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1872 | - $timing = ''; |
|
| 1873 | - } |
|
| 1874 | - } |
|
| 1875 | - |
|
| 1876 | - if ($lat && $lng) {
|
|
| 1877 | - ob_start(); ?> |
|
| 1816 | + /** |
|
| 1817 | + * Set post Map Marker info html. |
|
| 1818 | + * |
|
| 1819 | + * @since 1.0.0 |
|
| 1820 | + * @since 1.5.4 Modified to add new action "geodir_infowindow_meta_before". |
|
| 1821 | + * @package GeoDirectory |
|
| 1822 | + * @global array $geodir_addon_list List of active GeoDirectory extensions. |
|
| 1823 | + * @global object $gd_session GeoDirectory Session object. |
|
| 1824 | + * @param object $postinfo_obj The post details object. |
|
| 1825 | + * @param string $post_preview Is this a post preview?. |
|
| 1826 | + * @return mixed|string|void |
|
| 1827 | + */ |
|
| 1828 | + function geodir_get_infowindow_html($postinfo_obj, $post_preview = '') |
|
| 1829 | + {
|
|
| 1830 | + global $preview, $gd_session; |
|
| 1831 | + $srcharr = array("'", "/", "-", '"', '\\');
|
|
| 1832 | + $replarr = array("′", "⁄", "–", "“", '');
|
|
| 1833 | + |
|
| 1834 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1835 | + $ID = ''; |
|
| 1836 | + $plink = ''; |
|
| 1837 | + |
|
| 1838 | + if (isset($postinfo_obj->pid)) {
|
|
| 1839 | + $ID = $postinfo_obj->pid; |
|
| 1840 | + $plink = get_permalink($ID); |
|
| 1841 | + } |
|
| 1842 | + |
|
| 1843 | + $title = str_replace($srcharr, $replarr, ($postinfo_obj->post_title)); |
|
| 1844 | + $lat = $postinfo_obj->post_latitude; |
|
| 1845 | + $lng = $postinfo_obj->post_longitude; |
|
| 1846 | + $address = str_replace($srcharr, $replarr, ($postinfo_obj->post_address)); |
|
| 1847 | + $contact = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_contact)); |
|
| 1848 | + $timing = str_replace($srcharr, $replarr, ($postinfo_obj->geodir_timing)); |
|
| 1849 | + } else {
|
|
| 1850 | + $ID = $postinfo_obj->post_id; |
|
| 1851 | + $title = str_replace($srcharr, $replarr, htmlentities($postinfo_obj->post_title, ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1852 | + $plink = get_permalink($ID); |
|
| 1853 | + $lat = htmlentities(geodir_get_post_meta($ID, 'post_latitude', true)); |
|
| 1854 | + $lng = htmlentities(geodir_get_post_meta($ID, 'post_longitude', true)); |
|
| 1855 | + $address = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'post_address', true), ENT_COMPAT, 'UTF-8')); // fix by Stiofan |
|
| 1856 | + $contact = str_replace($srcharr, $replarr, htmlentities(geodir_get_post_meta($ID, 'geodir_contact', true), ENT_COMPAT, 'UTF-8')); |
|
| 1857 | + $timing = str_replace($srcharr, $replarr, (geodir_get_post_meta($ID, 'geodir_timing', true))); |
|
| 1858 | + } |
|
| 1859 | + |
|
| 1860 | + // filter field as per price package |
|
| 1861 | + global $geodir_addon_list; |
|
| 1862 | + if (isset($geodir_addon_list['geodir_payment_manager']) && $geodir_addon_list['geodir_payment_manager'] == 'yes') {
|
|
| 1863 | + $post_type = get_post_type($ID); |
|
| 1864 | + $package_id = isset($postinfo_obj->package_id) && $postinfo_obj->package_id ? $postinfo_obj->package_id : NULL; |
|
| 1865 | + $field_name = 'geodir_contact'; |
|
| 1866 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1867 | + $contact = ''; |
|
| 1868 | + } |
|
| 1869 | + |
|
| 1870 | + $field_name = 'geodir_timing'; |
|
| 1871 | + if (!check_field_visibility($package_id, $field_name, $post_type)) {
|
|
| 1872 | + $timing = ''; |
|
| 1873 | + } |
|
| 1874 | + } |
|
| 1875 | + |
|
| 1876 | + if ($lat && $lng) {
|
|
| 1877 | + ob_start(); ?> |
|
| 1878 | 1878 | <div class="gd-bubble" style=""> |
| 1879 | 1879 | <div class="gd-bubble-inside"> |
| 1880 | 1880 | <?php |
| 1881 | - $comment_count = ''; |
|
| 1882 | - $rating_star = ''; |
|
| 1883 | - if ($ID != '') {
|
|
| 1884 | - $rating_star = ''; |
|
| 1885 | - $comment_count = geodir_get_review_count_total($ID); |
|
| 1886 | - |
|
| 1887 | - if (!$preview) {
|
|
| 1888 | - $post_avgratings = geodir_get_post_rating($ID); |
|
| 1889 | - |
|
| 1890 | - $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1891 | - |
|
| 1892 | - /** |
|
| 1893 | - * Filter to change rating stars |
|
| 1894 | - * |
|
| 1895 | - * You can use this filter to change Rating stars. |
|
| 1896 | - * |
|
| 1897 | - * @since 1.0.0 |
|
| 1898 | - * @package GeoDirectory |
|
| 1899 | - * @param string $rating_star Rating stars. |
|
| 1900 | - * @param float $post_avgratings Average ratings of the post. |
|
| 1901 | - * @param int $ID The post ID. |
|
| 1902 | - */ |
|
| 1903 | - $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1904 | - } |
|
| 1905 | - } |
|
| 1906 | - ?> |
|
| 1881 | + $comment_count = ''; |
|
| 1882 | + $rating_star = ''; |
|
| 1883 | + if ($ID != '') {
|
|
| 1884 | + $rating_star = ''; |
|
| 1885 | + $comment_count = geodir_get_review_count_total($ID); |
|
| 1886 | + |
|
| 1887 | + if (!$preview) {
|
|
| 1888 | + $post_avgratings = geodir_get_post_rating($ID); |
|
| 1889 | + |
|
| 1890 | + $rating_star = geodir_get_rating_stars($post_avgratings, $ID, false); |
|
| 1891 | + |
|
| 1892 | + /** |
|
| 1893 | + * Filter to change rating stars |
|
| 1894 | + * |
|
| 1895 | + * You can use this filter to change Rating stars. |
|
| 1896 | + * |
|
| 1897 | + * @since 1.0.0 |
|
| 1898 | + * @package GeoDirectory |
|
| 1899 | + * @param string $rating_star Rating stars. |
|
| 1900 | + * @param float $post_avgratings Average ratings of the post. |
|
| 1901 | + * @param int $ID The post ID. |
|
| 1902 | + */ |
|
| 1903 | + $rating_star = apply_filters('geodir_review_rating_stars_on_infowindow', $rating_star, $post_avgratings, $ID);
|
|
| 1904 | + } |
|
| 1905 | + } |
|
| 1906 | + ?> |
|
| 1907 | 1907 | <div class="geodir-bubble_desc"> |
| 1908 | 1908 | <h4> |
| 1909 | 1909 | <a href="<?php if ($plink != '') {
|
| 1910 | - echo $plink; |
|
| 1911 | - } else {
|
|
| 1912 | - echo 'javascript:void(0);'; |
|
| 1913 | - } ?>"><?php echo $title; ?></a> |
|
| 1910 | + echo $plink; |
|
| 1911 | + } else {
|
|
| 1912 | + echo 'javascript:void(0);'; |
|
| 1913 | + } ?>"><?php echo $title; ?></a> |
|
| 1914 | 1914 | </h4> |
| 1915 | 1915 | <?php |
| 1916 | - if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1917 | - $post_images = array(); |
|
| 1918 | - if (!empty($postinfo_obj->post_images)) {
|
|
| 1919 | - $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1920 | - } |
|
| 1921 | - |
|
| 1922 | - if (!empty($post_images)) {
|
|
| 1923 | - ?> |
|
| 1916 | + if ($gd_session->get('listing') && isset($post_preview) && $post_preview != '') {
|
|
| 1917 | + $post_images = array(); |
|
| 1918 | + if (!empty($postinfo_obj->post_images)) {
|
|
| 1919 | + $post_images = explode(",", $postinfo_obj->post_images);
|
|
| 1920 | + } |
|
| 1921 | + |
|
| 1922 | + if (!empty($post_images)) {
|
|
| 1923 | + ?> |
|
| 1924 | 1924 | <div class="geodir-bubble_image"><a href="<?php if ($plink != '') {
|
| 1925 | - echo $plink; |
|
| 1926 | - } else {
|
|
| 1927 | - echo 'javascript:void(0);'; |
|
| 1928 | - } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1925 | + echo $plink; |
|
| 1926 | + } else {
|
|
| 1927 | + echo 'javascript:void(0);'; |
|
| 1928 | + } ?>"><img alt="bubble image" style="max-height:50px;" |
|
| 1929 | 1929 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1930 | 1930 | <?php |
| 1931 | - }else{
|
|
| 1932 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1933 | - } |
|
| 1934 | - } else {
|
|
| 1935 | - if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1936 | - ?> |
|
| 1931 | + }else{
|
|
| 1932 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1933 | + } |
|
| 1934 | + } else {
|
|
| 1935 | + if ($image = geodir_show_featured_image($ID, 'widget-thumb', true, false, $postinfo_obj->featured_image)) {
|
|
| 1936 | + ?> |
|
| 1937 | 1937 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1938 | 1938 | <?php |
| 1939 | - }else{
|
|
| 1940 | - echo '<div class="geodir-bubble_image"></div>'; |
|
| 1941 | - } |
|
| 1942 | - } |
|
| 1943 | - ?> |
|
| 1939 | + }else{
|
|
| 1940 | + echo '<div class="geodir-bubble_image"></div>'; |
|
| 1941 | + } |
|
| 1942 | + } |
|
| 1943 | + ?> |
|
| 1944 | 1944 | <div class="geodir-bubble-meta-side"> |
| 1945 | 1945 | <?php |
| 1946 | - /** |
|
| 1947 | - * Fires before the meta info in the map info window. |
|
| 1948 | - * |
|
| 1949 | - * This can be used to add more info to the map info window before the normal meta info. |
|
| 1950 | - * |
|
| 1951 | - * @since 1.5.4 |
|
| 1952 | - * @param int $ID The post id. |
|
| 1953 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1954 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1955 | - */ |
|
| 1956 | - do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1957 | - ?> |
|
| 1946 | + /** |
|
| 1947 | + * Fires before the meta info in the map info window. |
|
| 1948 | + * |
|
| 1949 | + * This can be used to add more info to the map info window before the normal meta info. |
|
| 1950 | + * |
|
| 1951 | + * @since 1.5.4 |
|
| 1952 | + * @param int $ID The post id. |
|
| 1953 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1954 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1955 | + */ |
|
| 1956 | + do_action('geodir_infowindow_meta_before', $ID, $postinfo_obj, $post_preview);
|
|
| 1957 | + ?> |
|
| 1958 | 1958 | <span class="geodir_address"><i class="fa fa-home"></i> <?php echo $address; ?></span> |
| 1959 | 1959 | <?php if ($contact) { ?><span class="geodir_contact"><i
|
| 1960 | 1960 | class="fa fa-phone"></i> |
| 1961 | 1961 | <?php |
| 1962 | - $tel_link = apply_filters('geodir_map_bubble_tel_linkable', false);
|
|
| 1963 | - if ($tel_link) {
|
|
| 1964 | - ?> |
|
| 1962 | + $tel_link = apply_filters('geodir_map_bubble_tel_linkable', false);
|
|
| 1963 | + if ($tel_link) {
|
|
| 1964 | + ?> |
|
| 1965 | 1965 | <a href="tel:<?php echo preg_replace('/[^0-9+]/', '', $contact); ?>"><?php echo stripslashes($contact); ?></a>
|
| 1966 | 1966 | <?php |
| 1967 | - } else {
|
|
| 1968 | - echo $contact; |
|
| 1969 | - } |
|
| 1970 | - ?> |
|
| 1967 | + } else {
|
|
| 1968 | + echo $contact; |
|
| 1969 | + } |
|
| 1970 | + ?> |
|
| 1971 | 1971 | </span><?php } ?> |
| 1972 | 1972 | <?php if ($timing) { ?><span class="geodir_timing"><i
|
| 1973 | 1973 | class="fa fa-clock-o"></i> <?php echo $timing; ?></span><?php } |
| 1974 | 1974 | |
| 1975 | - /** |
|
| 1976 | - * Fires after the meta info in the map info window. |
|
| 1977 | - * |
|
| 1978 | - * This can be used to add more info to the map info window after the normal meta info. |
|
| 1979 | - * |
|
| 1980 | - * @since 1.4.2 |
|
| 1981 | - * @param object $postinfo_obj The posts info as an object. |
|
| 1982 | - * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1983 | - */ |
|
| 1984 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1985 | - ?> |
|
| 1975 | + /** |
|
| 1976 | + * Fires after the meta info in the map info window. |
|
| 1977 | + * |
|
| 1978 | + * This can be used to add more info to the map info window after the normal meta info. |
|
| 1979 | + * |
|
| 1980 | + * @since 1.4.2 |
|
| 1981 | + * @param object $postinfo_obj The posts info as an object. |
|
| 1982 | + * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
|
| 1983 | + */ |
|
| 1984 | + do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1985 | + ?> |
|
| 1986 | 1986 | </div> |
| 1987 | 1987 | <?php |
| 1988 | 1988 | |
| 1989 | - if ($ID) {
|
|
| 1989 | + if ($ID) {
|
|
| 1990 | 1990 | |
| 1991 | - $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1992 | - ?> |
|
| 1991 | + $post_author = isset($postinfo_obj->post_author) ? $postinfo_obj->post_author : get_post_field('post_author', $ID);
|
|
| 1992 | + ?> |
|
| 1993 | 1993 | <div class="geodir-bubble-meta-fade"></div> |
| 1994 | 1994 | |
| 1995 | 1995 | <div class="geodir-bubble-meta-bottom"> |
@@ -2009,69 +2009,69 @@ discard block |
||
| 2009 | 2009 | </div> |
| 2010 | 2010 | </div> |
| 2011 | 2011 | <?php |
| 2012 | - $html = ob_get_clean(); |
|
| 2013 | - /** |
|
| 2014 | - * Filter to change infowindow html |
|
| 2015 | - * |
|
| 2016 | - * You can use this filter to change infowindow html. |
|
| 2017 | - * |
|
| 2018 | - * @since 1.0.0 |
|
| 2019 | - * @package GeoDirectory |
|
| 2020 | - * @param string $html Infowindow html. |
|
| 2021 | - * @param object $postinfo_obj The Post object. |
|
| 2022 | - * @param bool|string $post_preview Is this a post preview? |
|
| 2023 | - */ |
|
| 2024 | - $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 2025 | - return $html; |
|
| 2026 | - } |
|
| 2027 | - } |
|
| 2012 | + $html = ob_get_clean(); |
|
| 2013 | + /** |
|
| 2014 | + * Filter to change infowindow html |
|
| 2015 | + * |
|
| 2016 | + * You can use this filter to change infowindow html. |
|
| 2017 | + * |
|
| 2018 | + * @since 1.0.0 |
|
| 2019 | + * @package GeoDirectory |
|
| 2020 | + * @param string $html Infowindow html. |
|
| 2021 | + * @param object $postinfo_obj The Post object. |
|
| 2022 | + * @param bool|string $post_preview Is this a post preview? |
|
| 2023 | + */ |
|
| 2024 | + $html = apply_filters('geodir_custom_infowindow_html', $html, $postinfo_obj, $post_preview);
|
|
| 2025 | + return $html; |
|
| 2026 | + } |
|
| 2027 | + } |
|
| 2028 | 2028 | } |
| 2029 | 2029 | |
| 2030 | 2030 | |
| 2031 | 2031 | if (!function_exists('geodir_new_post_default_status')) {
|
| 2032 | - /** |
|
| 2033 | - * Default post status for new posts. |
|
| 2034 | - * |
|
| 2035 | - * @since 1.0.0 |
|
| 2036 | - * @package GeoDirectory |
|
| 2037 | - * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2038 | - */ |
|
| 2039 | - function geodir_new_post_default_status() |
|
| 2040 | - {
|
|
| 2041 | - if (get_option('geodir_new_post_default_status'))
|
|
| 2042 | - return get_option('geodir_new_post_default_status');
|
|
| 2043 | - else |
|
| 2044 | - return 'publish'; |
|
| 2045 | - |
|
| 2046 | - } |
|
| 2032 | + /** |
|
| 2033 | + * Default post status for new posts. |
|
| 2034 | + * |
|
| 2035 | + * @since 1.0.0 |
|
| 2036 | + * @package GeoDirectory |
|
| 2037 | + * @return string Returns the default post status for new posts. Ex: draft, publish etc. |
|
| 2038 | + */ |
|
| 2039 | + function geodir_new_post_default_status() |
|
| 2040 | + {
|
|
| 2041 | + if (get_option('geodir_new_post_default_status'))
|
|
| 2042 | + return get_option('geodir_new_post_default_status');
|
|
| 2043 | + else |
|
| 2044 | + return 'publish'; |
|
| 2045 | + |
|
| 2046 | + } |
|
| 2047 | 2047 | } |
| 2048 | 2048 | |
| 2049 | 2049 | if (!function_exists('geodir_change_post_status')) {
|
| 2050 | - /** |
|
| 2051 | - * Change post status of a post. |
|
| 2052 | - * |
|
| 2053 | - * @global object $wpdb WordPress Database object. |
|
| 2054 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2055 | - * @param int|string $post_id The post ID. |
|
| 2056 | - * @param string $status New post status. Ex: draft, publish etc. |
|
| 2057 | - */ |
|
| 2058 | - function geodir_change_post_status($post_id = '', $status = '') |
|
| 2059 | - {
|
|
| 2060 | - global $wpdb, $plugin_prefix; |
|
| 2061 | - |
|
| 2062 | - $post_type = get_post_type($post_id); |
|
| 2063 | - |
|
| 2064 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2065 | - |
|
| 2066 | - $wpdb->query( |
|
| 2067 | - $wpdb->prepare( |
|
| 2068 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2069 | - array($status, $post_id) |
|
| 2070 | - ) |
|
| 2071 | - ); |
|
| 2072 | - |
|
| 2073 | - |
|
| 2074 | - } |
|
| 2050 | + /** |
|
| 2051 | + * Change post status of a post. |
|
| 2052 | + * |
|
| 2053 | + * @global object $wpdb WordPress Database object. |
|
| 2054 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2055 | + * @param int|string $post_id The post ID. |
|
| 2056 | + * @param string $status New post status. Ex: draft, publish etc. |
|
| 2057 | + */ |
|
| 2058 | + function geodir_change_post_status($post_id = '', $status = '') |
|
| 2059 | + {
|
|
| 2060 | + global $wpdb, $plugin_prefix; |
|
| 2061 | + |
|
| 2062 | + $post_type = get_post_type($post_id); |
|
| 2063 | + |
|
| 2064 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2065 | + |
|
| 2066 | + $wpdb->query( |
|
| 2067 | + $wpdb->prepare( |
|
| 2068 | + "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2069 | + array($status, $post_id) |
|
| 2070 | + ) |
|
| 2071 | + ); |
|
| 2072 | + |
|
| 2073 | + |
|
| 2074 | + } |
|
| 2075 | 2075 | } |
| 2076 | 2076 | |
| 2077 | 2077 | /** |
@@ -2085,13 +2085,13 @@ discard block |
||
| 2085 | 2085 | */ |
| 2086 | 2086 | function geodir_set_post_status($pid, $status) |
| 2087 | 2087 | {
|
| 2088 | - if ($pid) {
|
|
| 2089 | - global $wpdb; |
|
| 2090 | - $my_post = array(); |
|
| 2091 | - $my_post['post_status'] = $status; |
|
| 2092 | - $my_post['ID'] = $pid; |
|
| 2093 | - $last_postid = wp_update_post($my_post); |
|
| 2094 | - } |
|
| 2088 | + if ($pid) {
|
|
| 2089 | + global $wpdb; |
|
| 2090 | + $my_post = array(); |
|
| 2091 | + $my_post['post_status'] = $status; |
|
| 2092 | + $my_post['ID'] = $pid; |
|
| 2093 | + $last_postid = wp_update_post($my_post); |
|
| 2094 | + } |
|
| 2095 | 2095 | } |
| 2096 | 2096 | |
| 2097 | 2097 | |
@@ -2107,384 +2107,384 @@ discard block |
||
| 2107 | 2107 | */ |
| 2108 | 2108 | function geodir_update_poststatus($new_status, $old_status, $post) |
| 2109 | 2109 | {
|
| 2110 | - global $wpdb; |
|
| 2110 | + global $wpdb; |
|
| 2111 | 2111 | |
| 2112 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 2112 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 2113 | 2113 | |
| 2114 | - if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2114 | + if (!wp_is_post_revision($post->ID) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 2115 | 2115 | |
| 2116 | - geodir_change_post_status($post->ID, $new_status); |
|
| 2117 | - } |
|
| 2116 | + geodir_change_post_status($post->ID, $new_status); |
|
| 2117 | + } |
|
| 2118 | 2118 | } |
| 2119 | 2119 | |
| 2120 | 2120 | |
| 2121 | 2121 | if (!function_exists('geodir_update_listing_info')) {
|
| 2122 | - /** |
|
| 2123 | - * Update post info. |
|
| 2124 | - * |
|
| 2125 | - * @since 1.0.0 |
|
| 2126 | - * @package GeoDirectory |
|
| 2127 | - * @global object $wpdb WordPress Database object. |
|
| 2128 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2129 | - * @param int $updatingpost The updating post ID. |
|
| 2130 | - * @param int $temppost The temporary post ID. |
|
| 2131 | - * @todo fix post_id variable |
|
| 2132 | - */ |
|
| 2133 | - function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2134 | - {
|
|
| 2135 | - |
|
| 2136 | - global $wpdb, $plugin_prefix; |
|
| 2137 | - |
|
| 2138 | - $post_type = get_post_type($post_id); |
|
| 2139 | - |
|
| 2140 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2141 | - |
|
| 2142 | - $wpdb->query( |
|
| 2143 | - $wpdb->prepare( |
|
| 2144 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2145 | - array($updatingpost, $temppost) |
|
| 2146 | - ) |
|
| 2147 | - ); |
|
| 2148 | - |
|
| 2149 | - $wpdb->query( |
|
| 2150 | - $wpdb->prepare( |
|
| 2151 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2152 | - array($updatingpost, $temppost) |
|
| 2153 | - ) |
|
| 2154 | - ); |
|
| 2155 | - |
|
| 2156 | - /* Update Attachments*/ |
|
| 2157 | - |
|
| 2158 | - $wpdb->query( |
|
| 2159 | - $wpdb->prepare( |
|
| 2160 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2161 | - array($updatingpost, $temppost) |
|
| 2162 | - ) |
|
| 2163 | - ); |
|
| 2164 | - |
|
| 2165 | - } |
|
| 2122 | + /** |
|
| 2123 | + * Update post info. |
|
| 2124 | + * |
|
| 2125 | + * @since 1.0.0 |
|
| 2126 | + * @package GeoDirectory |
|
| 2127 | + * @global object $wpdb WordPress Database object. |
|
| 2128 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2129 | + * @param int $updatingpost The updating post ID. |
|
| 2130 | + * @param int $temppost The temporary post ID. |
|
| 2131 | + * @todo fix post_id variable |
|
| 2132 | + */ |
|
| 2133 | + function geodir_update_listing_info($updatingpost, $temppost) |
|
| 2134 | + {
|
|
| 2135 | + |
|
| 2136 | + global $wpdb, $plugin_prefix; |
|
| 2137 | + |
|
| 2138 | + $post_type = get_post_type($post_id); |
|
| 2139 | + |
|
| 2140 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2141 | + |
|
| 2142 | + $wpdb->query( |
|
| 2143 | + $wpdb->prepare( |
|
| 2144 | + "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2145 | + array($updatingpost, $temppost) |
|
| 2146 | + ) |
|
| 2147 | + ); |
|
| 2148 | + |
|
| 2149 | + $wpdb->query( |
|
| 2150 | + $wpdb->prepare( |
|
| 2151 | + "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2152 | + array($updatingpost, $temppost) |
|
| 2153 | + ) |
|
| 2154 | + ); |
|
| 2155 | + |
|
| 2156 | + /* Update Attachments*/ |
|
| 2157 | + |
|
| 2158 | + $wpdb->query( |
|
| 2159 | + $wpdb->prepare( |
|
| 2160 | + "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2161 | + array($updatingpost, $temppost) |
|
| 2162 | + ) |
|
| 2163 | + ); |
|
| 2164 | + |
|
| 2165 | + } |
|
| 2166 | 2166 | } |
| 2167 | 2167 | |
| 2168 | 2168 | |
| 2169 | 2169 | if (!function_exists('geodir_delete_listing_info')) {
|
| 2170 | - /** |
|
| 2171 | - * Delete Listing info from details table for the given post id. |
|
| 2172 | - * |
|
| 2173 | - * @since 1.0.0 |
|
| 2174 | - * @package GeoDirectory |
|
| 2175 | - * @global object $wpdb WordPress Database object. |
|
| 2176 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2177 | - * @param int $deleted_postid The post ID. |
|
| 2178 | - * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2179 | - * @return bool|void |
|
| 2180 | - */ |
|
| 2181 | - function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2182 | - {
|
|
| 2183 | - global $wpdb, $plugin_prefix; |
|
| 2184 | - |
|
| 2185 | - // check for multisite deletions |
|
| 2186 | - if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2187 | - } else {
|
|
| 2188 | - return; |
|
| 2189 | - } |
|
| 2190 | - |
|
| 2191 | - $post_type = get_post_type($deleted_postid); |
|
| 2192 | - |
|
| 2193 | - $all_postypes = geodir_get_posttypes(); |
|
| 2194 | - |
|
| 2195 | - if (!in_array($post_type, $all_postypes)) |
|
| 2196 | - return false; |
|
| 2197 | - |
|
| 2198 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2199 | - |
|
| 2200 | - /* Delete custom post meta*/ |
|
| 2201 | - $wpdb->query( |
|
| 2202 | - $wpdb->prepare( |
|
| 2203 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2204 | - array($deleted_postid) |
|
| 2205 | - ) |
|
| 2206 | - ); |
|
| 2207 | - |
|
| 2208 | - /* Delete post map icons*/ |
|
| 2209 | - |
|
| 2210 | - $wpdb->query( |
|
| 2211 | - $wpdb->prepare( |
|
| 2212 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2213 | - array($deleted_postid) |
|
| 2214 | - ) |
|
| 2215 | - ); |
|
| 2216 | - |
|
| 2217 | - /* Delete Attachments*/ |
|
| 2218 | - $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2219 | - |
|
| 2220 | - $wpdb->query( |
|
| 2221 | - $wpdb->prepare( |
|
| 2222 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2223 | - array($deleted_postid) |
|
| 2224 | - ) |
|
| 2225 | - ); |
|
| 2226 | - geodir_remove_attachments($postcurr_images); |
|
| 2227 | - |
|
| 2228 | - } |
|
| 2170 | + /** |
|
| 2171 | + * Delete Listing info from details table for the given post id. |
|
| 2172 | + * |
|
| 2173 | + * @since 1.0.0 |
|
| 2174 | + * @package GeoDirectory |
|
| 2175 | + * @global object $wpdb WordPress Database object. |
|
| 2176 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 2177 | + * @param int $deleted_postid The post ID. |
|
| 2178 | + * @param bool $force Optional. Do you want to force delete it? Default: false. |
|
| 2179 | + * @return bool|void |
|
| 2180 | + */ |
|
| 2181 | + function geodir_delete_listing_info($deleted_postid, $force = false) |
|
| 2182 | + {
|
|
| 2183 | + global $wpdb, $plugin_prefix; |
|
| 2184 | + |
|
| 2185 | + // check for multisite deletions |
|
| 2186 | + if (strpos($plugin_prefix, $wpdb->prefix) !== false) {
|
|
| 2187 | + } else {
|
|
| 2188 | + return; |
|
| 2189 | + } |
|
| 2190 | + |
|
| 2191 | + $post_type = get_post_type($deleted_postid); |
|
| 2192 | + |
|
| 2193 | + $all_postypes = geodir_get_posttypes(); |
|
| 2194 | + |
|
| 2195 | + if (!in_array($post_type, $all_postypes)) |
|
| 2196 | + return false; |
|
| 2197 | + |
|
| 2198 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2199 | + |
|
| 2200 | + /* Delete custom post meta*/ |
|
| 2201 | + $wpdb->query( |
|
| 2202 | + $wpdb->prepare( |
|
| 2203 | + "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2204 | + array($deleted_postid) |
|
| 2205 | + ) |
|
| 2206 | + ); |
|
| 2207 | + |
|
| 2208 | + /* Delete post map icons*/ |
|
| 2209 | + |
|
| 2210 | + $wpdb->query( |
|
| 2211 | + $wpdb->prepare( |
|
| 2212 | + "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2213 | + array($deleted_postid) |
|
| 2214 | + ) |
|
| 2215 | + ); |
|
| 2216 | + |
|
| 2217 | + /* Delete Attachments*/ |
|
| 2218 | + $postcurr_images = geodir_get_images($deleted_postid); |
|
| 2219 | + |
|
| 2220 | + $wpdb->query( |
|
| 2221 | + $wpdb->prepare( |
|
| 2222 | + "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2223 | + array($deleted_postid) |
|
| 2224 | + ) |
|
| 2225 | + ); |
|
| 2226 | + geodir_remove_attachments($postcurr_images); |
|
| 2227 | + |
|
| 2228 | + } |
|
| 2229 | 2229 | } |
| 2230 | 2230 | |
| 2231 | 2231 | |
| 2232 | 2232 | if (!function_exists('geodir_add_to_favorite')) {
|
| 2233 | - /** |
|
| 2234 | - * This function would add listing to favorite listing. |
|
| 2235 | - * |
|
| 2236 | - * @since 1.0.0 |
|
| 2237 | - * @package GeoDirectory |
|
| 2238 | - * @global object $current_user Current user object. |
|
| 2239 | - * @param int $post_id The post ID. |
|
| 2240 | - */ |
|
| 2241 | - function geodir_add_to_favorite($post_id) |
|
| 2242 | - {
|
|
| 2243 | - |
|
| 2244 | - global $current_user; |
|
| 2245 | - |
|
| 2246 | - /** |
|
| 2247 | - * Filter to modify "Unfavorite" text |
|
| 2248 | - * |
|
| 2249 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2250 | - * |
|
| 2251 | - * @since 1.0.0 |
|
| 2252 | - * @package GeoDirectory |
|
| 2253 | - */ |
|
| 2254 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2255 | - |
|
| 2256 | - /** |
|
| 2257 | - * Filter to modify "Remove from Favorites" text |
|
| 2258 | - * |
|
| 2259 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2260 | - * |
|
| 2261 | - * @since 1.0.0 |
|
| 2262 | - * @package GeoDirectory |
|
| 2263 | - */ |
|
| 2264 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2265 | - |
|
| 2266 | - /** |
|
| 2267 | - * Filter to modify "fa fa-heart" icon |
|
| 2268 | - * |
|
| 2269 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2270 | - * |
|
| 2271 | - * @since 1.0.0 |
|
| 2272 | - * @package GeoDirectory |
|
| 2273 | - */ |
|
| 2274 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2275 | - |
|
| 2276 | - $user_meta_data = array(); |
|
| 2277 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2233 | + /** |
|
| 2234 | + * This function would add listing to favorite listing. |
|
| 2235 | + * |
|
| 2236 | + * @since 1.0.0 |
|
| 2237 | + * @package GeoDirectory |
|
| 2238 | + * @global object $current_user Current user object. |
|
| 2239 | + * @param int $post_id The post ID. |
|
| 2240 | + */ |
|
| 2241 | + function geodir_add_to_favorite($post_id) |
|
| 2242 | + {
|
|
| 2243 | + |
|
| 2244 | + global $current_user; |
|
| 2245 | + |
|
| 2246 | + /** |
|
| 2247 | + * Filter to modify "Unfavorite" text |
|
| 2248 | + * |
|
| 2249 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2250 | + * |
|
| 2251 | + * @since 1.0.0 |
|
| 2252 | + * @package GeoDirectory |
|
| 2253 | + */ |
|
| 2254 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2255 | + |
|
| 2256 | + /** |
|
| 2257 | + * Filter to modify "Remove from Favorites" text |
|
| 2258 | + * |
|
| 2259 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2260 | + * |
|
| 2261 | + * @since 1.0.0 |
|
| 2262 | + * @package GeoDirectory |
|
| 2263 | + */ |
|
| 2264 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2265 | + |
|
| 2266 | + /** |
|
| 2267 | + * Filter to modify "fa fa-heart" icon |
|
| 2268 | + * |
|
| 2269 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2270 | + * |
|
| 2271 | + * @since 1.0.0 |
|
| 2272 | + * @package GeoDirectory |
|
| 2273 | + */ |
|
| 2274 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2275 | + |
|
| 2276 | + $user_meta_data = array(); |
|
| 2277 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2278 | + |
|
| 2279 | + if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2280 | + $user_meta_data[] = $post_id; |
|
| 2281 | + } |
|
| 2282 | + |
|
| 2283 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2284 | + |
|
| 2285 | + /** |
|
| 2286 | + * Called before adding the post from favourites. |
|
| 2287 | + * |
|
| 2288 | + * @since 1.0.0 |
|
| 2289 | + * @package GeoDirectory |
|
| 2290 | + * @param int $post_id The post ID. |
|
| 2291 | + */ |
|
| 2292 | + do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2293 | + |
|
| 2294 | + echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2295 | + |
|
| 2296 | + /** |
|
| 2297 | + * Called after adding the post from favourites. |
|
| 2298 | + * |
|
| 2299 | + * @since 1.0.0 |
|
| 2300 | + * @package GeoDirectory |
|
| 2301 | + * @param int $post_id The post ID. |
|
| 2302 | + */ |
|
| 2303 | + do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2278 | 2304 | |
| 2279 | - if (empty($user_meta_data) || (!empty($user_meta_data) && !in_array($post_id, $user_meta_data))) {
|
|
| 2280 | - $user_meta_data[] = $post_id; |
|
| 2281 | - } |
|
| 2282 | - |
|
| 2283 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2284 | - |
|
| 2285 | - /** |
|
| 2286 | - * Called before adding the post from favourites. |
|
| 2287 | - * |
|
| 2288 | - * @since 1.0.0 |
|
| 2289 | - * @package GeoDirectory |
|
| 2290 | - * @param int $post_id The post ID. |
|
| 2291 | - */ |
|
| 2292 | - do_action('geodir_before_add_from_favorite', $post_id);
|
|
| 2293 | - |
|
| 2294 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2295 | - |
|
| 2296 | - /** |
|
| 2297 | - * Called after adding the post from favourites. |
|
| 2298 | - * |
|
| 2299 | - * @since 1.0.0 |
|
| 2300 | - * @package GeoDirectory |
|
| 2301 | - * @param int $post_id The post ID. |
|
| 2302 | - */ |
|
| 2303 | - do_action('geodir_after_add_from_favorite', $post_id);
|
|
| 2304 | - |
|
| 2305 | - } |
|
| 2305 | + } |
|
| 2306 | 2306 | } |
| 2307 | 2307 | |
| 2308 | 2308 | if (!function_exists('geodir_remove_from_favorite')) {
|
| 2309 | - /** |
|
| 2310 | - * This function would remove the favourited property earlier. |
|
| 2311 | - * |
|
| 2312 | - * @since 1.0.0 |
|
| 2313 | - * @package GeoDirectory |
|
| 2314 | - * @global object $current_user Current user object. |
|
| 2315 | - * @param int $post_id The post ID. |
|
| 2316 | - */ |
|
| 2317 | - function geodir_remove_from_favorite($post_id) |
|
| 2318 | - {
|
|
| 2319 | - global $current_user; |
|
| 2320 | - |
|
| 2321 | - /** |
|
| 2322 | - * Filter to modify "Add to Favorites" text |
|
| 2323 | - * |
|
| 2324 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2325 | - * |
|
| 2326 | - * @since 1.0.0 |
|
| 2327 | - * @package GeoDirectory |
|
| 2328 | - */ |
|
| 2329 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2330 | - |
|
| 2331 | - /** |
|
| 2332 | - * Filter to modify "Favourite" text |
|
| 2333 | - * |
|
| 2334 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2335 | - * |
|
| 2336 | - * @since 1.0.0 |
|
| 2337 | - * @package GeoDirectory |
|
| 2338 | - */ |
|
| 2339 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2340 | - |
|
| 2341 | - /** |
|
| 2342 | - * Filter to modify "fa fa-heart" icon |
|
| 2343 | - * |
|
| 2344 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2345 | - * |
|
| 2346 | - * @since 1.0.0 |
|
| 2347 | - * @package GeoDirectory |
|
| 2348 | - */ |
|
| 2349 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2350 | - |
|
| 2351 | - $user_meta_data = array(); |
|
| 2352 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2353 | - |
|
| 2354 | - if (!empty($user_meta_data)) {
|
|
| 2355 | - |
|
| 2356 | - if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2357 | - unset($user_meta_data[$key]); |
|
| 2358 | - } |
|
| 2309 | + /** |
|
| 2310 | + * This function would remove the favourited property earlier. |
|
| 2311 | + * |
|
| 2312 | + * @since 1.0.0 |
|
| 2313 | + * @package GeoDirectory |
|
| 2314 | + * @global object $current_user Current user object. |
|
| 2315 | + * @param int $post_id The post ID. |
|
| 2316 | + */ |
|
| 2317 | + function geodir_remove_from_favorite($post_id) |
|
| 2318 | + {
|
|
| 2319 | + global $current_user; |
|
| 2320 | + |
|
| 2321 | + /** |
|
| 2322 | + * Filter to modify "Add to Favorites" text |
|
| 2323 | + * |
|
| 2324 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2325 | + * |
|
| 2326 | + * @since 1.0.0 |
|
| 2327 | + * @package GeoDirectory |
|
| 2328 | + */ |
|
| 2329 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2330 | + |
|
| 2331 | + /** |
|
| 2332 | + * Filter to modify "Favourite" text |
|
| 2333 | + * |
|
| 2334 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2335 | + * |
|
| 2336 | + * @since 1.0.0 |
|
| 2337 | + * @package GeoDirectory |
|
| 2338 | + */ |
|
| 2339 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2340 | + |
|
| 2341 | + /** |
|
| 2342 | + * Filter to modify "fa fa-heart" icon |
|
| 2343 | + * |
|
| 2344 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2345 | + * |
|
| 2346 | + * @since 1.0.0 |
|
| 2347 | + * @package GeoDirectory |
|
| 2348 | + */ |
|
| 2349 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2350 | + |
|
| 2351 | + $user_meta_data = array(); |
|
| 2352 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2353 | + |
|
| 2354 | + if (!empty($user_meta_data)) {
|
|
| 2355 | + |
|
| 2356 | + if (($key = array_search($post_id, $user_meta_data)) !== false) {
|
|
| 2357 | + unset($user_meta_data[$key]); |
|
| 2358 | + } |
|
| 2359 | 2359 | |
| 2360 | - } |
|
| 2360 | + } |
|
| 2361 | 2361 | |
| 2362 | - update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2362 | + update_user_meta($current_user->data->ID, 'gd_user_favourite_post', $user_meta_data); |
|
| 2363 | 2363 | |
| 2364 | - /** |
|
| 2365 | - * Called before removing the post from favourites. |
|
| 2366 | - * |
|
| 2367 | - * @since 1.0.0 |
|
| 2368 | - * @package GeoDirectory |
|
| 2369 | - * @param int $post_id The post ID. |
|
| 2370 | - */ |
|
| 2371 | - do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2364 | + /** |
|
| 2365 | + * Called before removing the post from favourites. |
|
| 2366 | + * |
|
| 2367 | + * @since 1.0.0 |
|
| 2368 | + * @package GeoDirectory |
|
| 2369 | + * @param int $post_id The post ID. |
|
| 2370 | + */ |
|
| 2371 | + do_action('geodir_before_remove_from_favorite', $post_id);
|
|
| 2372 | 2372 | |
| 2373 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2373 | + echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2374 | 2374 | |
| 2375 | - /** |
|
| 2376 | - * Called after removing the post from favourites. |
|
| 2377 | - * |
|
| 2378 | - * @since 1.0.0 |
|
| 2379 | - * @package GeoDirectory |
|
| 2380 | - * @param int $post_id The post ID. |
|
| 2381 | - */ |
|
| 2382 | - do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2375 | + /** |
|
| 2376 | + * Called after removing the post from favourites. |
|
| 2377 | + * |
|
| 2378 | + * @since 1.0.0 |
|
| 2379 | + * @package GeoDirectory |
|
| 2380 | + * @param int $post_id The post ID. |
|
| 2381 | + */ |
|
| 2382 | + do_action('geodir_after_remove_from_favorite', $post_id);
|
|
| 2383 | 2383 | |
| 2384 | - } |
|
| 2384 | + } |
|
| 2385 | 2385 | } |
| 2386 | 2386 | |
| 2387 | 2387 | if (!function_exists('geodir_favourite_html')) {
|
| 2388 | - /** |
|
| 2389 | - * This function would display the html content for add to favorite or remove from favorite. |
|
| 2390 | - * |
|
| 2391 | - * @since 1.0.0 |
|
| 2392 | - * @package GeoDirectory |
|
| 2393 | - * @global object $current_user Current user object. |
|
| 2394 | - * @global object $post The current post object. |
|
| 2395 | - * @param int $user_id The user ID. |
|
| 2396 | - * @param int $post_id The post ID. |
|
| 2397 | - */ |
|
| 2398 | - function geodir_favourite_html($user_id, $post_id) |
|
| 2399 | - {
|
|
| 2400 | - |
|
| 2401 | - global $current_user, $post; |
|
| 2402 | - |
|
| 2403 | - /** |
|
| 2404 | - * Filter to modify "Add to Favorites" text |
|
| 2405 | - * |
|
| 2406 | - * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2407 | - * |
|
| 2408 | - * @since 1.0.0 |
|
| 2409 | - * @package GeoDirectory |
|
| 2410 | - */ |
|
| 2411 | - $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2412 | - |
|
| 2413 | - /** |
|
| 2414 | - * Filter to modify "Favourite" text |
|
| 2415 | - * |
|
| 2416 | - * You can use this filter to rename "Favourite" text to something else. |
|
| 2417 | - * |
|
| 2418 | - * @since 1.0.0 |
|
| 2419 | - * @package GeoDirectory |
|
| 2420 | - */ |
|
| 2421 | - $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2422 | - |
|
| 2423 | - /** |
|
| 2424 | - * Filter to modify "Unfavorite" text |
|
| 2425 | - * |
|
| 2426 | - * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2427 | - * |
|
| 2428 | - * @since 1.0.0 |
|
| 2429 | - * @package GeoDirectory |
|
| 2430 | - */ |
|
| 2431 | - $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2432 | - |
|
| 2433 | - /** |
|
| 2434 | - * Filter to modify "Remove from Favorites" text |
|
| 2435 | - * |
|
| 2436 | - * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2437 | - * |
|
| 2438 | - * @since 1.0.0 |
|
| 2439 | - * @package GeoDirectory |
|
| 2440 | - */ |
|
| 2441 | - $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2442 | - |
|
| 2443 | - /** |
|
| 2444 | - * Filter to modify "fa fa-heart" icon |
|
| 2445 | - * |
|
| 2446 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2447 | - * |
|
| 2448 | - * @since 1.0.0 |
|
| 2449 | - * @package GeoDirectory |
|
| 2450 | - */ |
|
| 2451 | - $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2452 | - |
|
| 2453 | - /** |
|
| 2454 | - * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2455 | - * |
|
| 2456 | - * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2457 | - * |
|
| 2458 | - * @since 1.0.0 |
|
| 2459 | - * @package GeoDirectory |
|
| 2460 | - */ |
|
| 2461 | - $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2462 | - |
|
| 2463 | - $user_meta_data = ''; |
|
| 2464 | - if (isset($current_user->data->ID)) |
|
| 2465 | - $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2466 | - |
|
| 2467 | - if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2468 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2388 | + /** |
|
| 2389 | + * This function would display the html content for add to favorite or remove from favorite. |
|
| 2390 | + * |
|
| 2391 | + * @since 1.0.0 |
|
| 2392 | + * @package GeoDirectory |
|
| 2393 | + * @global object $current_user Current user object. |
|
| 2394 | + * @global object $post The current post object. |
|
| 2395 | + * @param int $user_id The user ID. |
|
| 2396 | + * @param int $post_id The post ID. |
|
| 2397 | + */ |
|
| 2398 | + function geodir_favourite_html($user_id, $post_id) |
|
| 2399 | + {
|
|
| 2400 | + |
|
| 2401 | + global $current_user, $post; |
|
| 2402 | + |
|
| 2403 | + /** |
|
| 2404 | + * Filter to modify "Add to Favorites" text |
|
| 2405 | + * |
|
| 2406 | + * You can use this filter to rename "Add to Favorites" text to something else. |
|
| 2407 | + * |
|
| 2408 | + * @since 1.0.0 |
|
| 2409 | + * @package GeoDirectory |
|
| 2410 | + */ |
|
| 2411 | + $add_favourite_text = apply_filters('geodir_add_favourite_text', ADD_FAVOURITE_TEXT);
|
|
| 2412 | + |
|
| 2413 | + /** |
|
| 2414 | + * Filter to modify "Favourite" text |
|
| 2415 | + * |
|
| 2416 | + * You can use this filter to rename "Favourite" text to something else. |
|
| 2417 | + * |
|
| 2418 | + * @since 1.0.0 |
|
| 2419 | + * @package GeoDirectory |
|
| 2420 | + */ |
|
| 2421 | + $favourite_text = apply_filters('geodir_favourite_text', FAVOURITE_TEXT);
|
|
| 2422 | + |
|
| 2423 | + /** |
|
| 2424 | + * Filter to modify "Unfavorite" text |
|
| 2425 | + * |
|
| 2426 | + * You can use this filter to rename "Unfavorite" text to something else. |
|
| 2427 | + * |
|
| 2428 | + * @since 1.0.0 |
|
| 2429 | + * @package GeoDirectory |
|
| 2430 | + */ |
|
| 2431 | + $remove_favourite_text = apply_filters('geodir_remove_favourite_text', REMOVE_FAVOURITE_TEXT);
|
|
| 2432 | + |
|
| 2433 | + /** |
|
| 2434 | + * Filter to modify "Remove from Favorites" text |
|
| 2435 | + * |
|
| 2436 | + * You can use this filter to rename "Remove from Favorites" text to something else. |
|
| 2437 | + * |
|
| 2438 | + * @since 1.0.0 |
|
| 2439 | + * @package GeoDirectory |
|
| 2440 | + */ |
|
| 2441 | + $unfavourite_text = apply_filters('geodir_unfavourite_text', UNFAVOURITE_TEXT);
|
|
| 2442 | + |
|
| 2443 | + /** |
|
| 2444 | + * Filter to modify "fa fa-heart" icon |
|
| 2445 | + * |
|
| 2446 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2447 | + * |
|
| 2448 | + * @since 1.0.0 |
|
| 2449 | + * @package GeoDirectory |
|
| 2450 | + */ |
|
| 2451 | + $favourite_icon = apply_filters('geodir_favourite_icon', 'fa fa-heart');
|
|
| 2452 | + |
|
| 2453 | + /** |
|
| 2454 | + * Filter to modify "fa fa-heart" icon for "remove from favorites" link |
|
| 2455 | + * |
|
| 2456 | + * You can use this filter to change "fa fa-heart" icon to something else. |
|
| 2457 | + * |
|
| 2458 | + * @since 1.0.0 |
|
| 2459 | + * @package GeoDirectory |
|
| 2460 | + */ |
|
| 2461 | + $unfavourite_icon = apply_filters('geodir_unfavourite_icon', 'fa fa-heart');
|
|
| 2462 | + |
|
| 2463 | + $user_meta_data = ''; |
|
| 2464 | + if (isset($current_user->data->ID)) |
|
| 2465 | + $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
|
| 2466 | + |
|
| 2467 | + if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
|
| 2468 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2469 | 2469 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2470 | 2470 | onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
| 2471 | 2471 | title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
| 2472 | 2472 | </a> </span><?php |
| 2473 | 2473 | |
| 2474 | - } else {
|
|
| 2474 | + } else {
|
|
| 2475 | 2475 | |
| 2476 | - if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2477 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2478 | - } else |
|
| 2479 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2476 | + if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
|
| 2477 | + $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2478 | + } else |
|
| 2479 | + $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2480 | 2480 | |
| 2481 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2481 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2482 | 2482 | href="javascript:void(0);" |
| 2483 | 2483 | onclick="<?php echo $script_text;?>" |
| 2484 | 2484 | title="<?php echo $add_favourite_text;?>"><i |
| 2485 | 2485 | class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
| 2486 | 2486 | <?php } |
| 2487 | - } |
|
| 2487 | + } |
|
| 2488 | 2488 | } |
| 2489 | 2489 | |
| 2490 | 2490 | |
@@ -2501,54 +2501,54 @@ discard block |
||
| 2501 | 2501 | function geodir_get_cat_postcount($term = array()) |
| 2502 | 2502 | {
|
| 2503 | 2503 | |
| 2504 | - if (!empty($term)) {
|
|
| 2504 | + if (!empty($term)) {
|
|
| 2505 | 2505 | |
| 2506 | - global $wpdb, $plugin_prefix; |
|
| 2506 | + global $wpdb, $plugin_prefix; |
|
| 2507 | 2507 | |
| 2508 | - $where = ''; |
|
| 2509 | - $join = ''; |
|
| 2510 | - if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2511 | - $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2508 | + $where = ''; |
|
| 2509 | + $join = ''; |
|
| 2510 | + if (get_query_var('gd_country') != '' || get_query_var('gd_region') != '' || get_query_var('gd_city') != '') {
|
|
| 2511 | + $taxonomy_obj = get_taxonomy($term->taxonomy); |
|
| 2512 | 2512 | |
| 2513 | - $post_type = $taxonomy_obj->object_type[0]; |
|
| 2513 | + $post_type = $taxonomy_obj->object_type[0]; |
|
| 2514 | 2514 | |
| 2515 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2515 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2516 | 2516 | |
| 2517 | - /** |
|
| 2518 | - * Filter to modify the 'join' query |
|
| 2519 | - * |
|
| 2520 | - * @since 1.0.0 |
|
| 2521 | - * @package GeoDirectory |
|
| 2522 | - * @param object|array $term category / term object that need to be processed. |
|
| 2523 | - * @param string $join The join query. |
|
| 2524 | - */ |
|
| 2525 | - $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2517 | + /** |
|
| 2518 | + * Filter to modify the 'join' query |
|
| 2519 | + * |
|
| 2520 | + * @since 1.0.0 |
|
| 2521 | + * @package GeoDirectory |
|
| 2522 | + * @param object|array $term category / term object that need to be processed. |
|
| 2523 | + * @param string $join The join query. |
|
| 2524 | + */ |
|
| 2525 | + $join = apply_filters('geodir_cat_post_count_join', $join, $term);
|
|
| 2526 | 2526 | |
| 2527 | - /** |
|
| 2528 | - * Filter to modify the 'where' query |
|
| 2529 | - * |
|
| 2530 | - * @since 1.0.0 |
|
| 2531 | - * @package GeoDirectory |
|
| 2532 | - * @param object|array $term category / term object that need to be processed. |
|
| 2533 | - * @param string $where The where query. |
|
| 2534 | - */ |
|
| 2535 | - $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2527 | + /** |
|
| 2528 | + * Filter to modify the 'where' query |
|
| 2529 | + * |
|
| 2530 | + * @since 1.0.0 |
|
| 2531 | + * @package GeoDirectory |
|
| 2532 | + * @param object|array $term category / term object that need to be processed. |
|
| 2533 | + * @param string $where The where query. |
|
| 2534 | + */ |
|
| 2535 | + $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
|
| 2536 | 2536 | |
| 2537 | - $count_query = "SELECT count(post_id) FROM |
|
| 2537 | + $count_query = "SELECT count(post_id) FROM |
|
| 2538 | 2538 | " . $table . " as pd " . $join . " |
| 2539 | 2539 | WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
| 2540 | 2540 | |
| 2541 | - $cat_post_count = $wpdb->get_var($count_query); |
|
| 2542 | - if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2543 | - $cat_post_count = 0; |
|
| 2541 | + $cat_post_count = $wpdb->get_var($count_query); |
|
| 2542 | + if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
|
| 2543 | + $cat_post_count = 0; |
|
| 2544 | 2544 | |
| 2545 | - return $cat_post_count; |
|
| 2545 | + return $cat_post_count; |
|
| 2546 | 2546 | |
| 2547 | - } else |
|
| 2547 | + } else |
|
| 2548 | 2548 | |
| 2549 | - return $term->count; |
|
| 2550 | - } |
|
| 2551 | - return false; |
|
| 2549 | + return $term->count; |
|
| 2550 | + } |
|
| 2551 | + return false; |
|
| 2552 | 2552 | |
| 2553 | 2553 | } |
| 2554 | 2554 | |
@@ -2561,17 +2561,17 @@ discard block |
||
| 2561 | 2561 | */ |
| 2562 | 2562 | function geodir_allow_post_type_frontend() |
| 2563 | 2563 | {
|
| 2564 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2564 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 2565 | 2565 | |
| 2566 | - if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2567 | - && !empty($geodir_allow_posttype_frontend) |
|
| 2568 | - && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2569 | - ) {
|
|
| 2566 | + if (!is_admin() && isset($_REQUEST['listing_type']) |
|
| 2567 | + && !empty($geodir_allow_posttype_frontend) |
|
| 2568 | + && !in_array($_REQUEST['listing_type'], $geodir_allow_posttype_frontend) |
|
| 2569 | + ) {
|
|
| 2570 | 2570 | |
| 2571 | - wp_redirect(home_url()); |
|
| 2572 | - exit; |
|
| 2571 | + wp_redirect(home_url()); |
|
| 2572 | + exit; |
|
| 2573 | 2573 | |
| 2574 | - } |
|
| 2574 | + } |
|
| 2575 | 2575 | |
| 2576 | 2576 | } |
| 2577 | 2577 | |
@@ -2588,20 +2588,20 @@ discard block |
||
| 2588 | 2588 | */ |
| 2589 | 2589 | function geodir_excerpt_length($length) |
| 2590 | 2590 | {
|
| 2591 | - global $wp_query, $geodir_is_widget_listing; |
|
| 2591 | + global $wp_query, $geodir_is_widget_listing; |
|
| 2592 | 2592 | if ($geodir_is_widget_listing) {
|
| 2593 | 2593 | return $length; |
| 2594 | 2594 | } |
| 2595 | 2595 | |
| 2596 | - if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2597 | - $length = get_option('geodir_desc_word_limit');
|
|
| 2598 | - elseif (get_query_var('excerpt_length'))
|
|
| 2599 | - $length = get_query_var('excerpt_length');
|
|
| 2596 | + if (isset($wp_query->query_vars['is_geodir_loop']) && $wp_query->query_vars['is_geodir_loop'] && get_option('geodir_desc_word_limit'))
|
|
| 2597 | + $length = get_option('geodir_desc_word_limit');
|
|
| 2598 | + elseif (get_query_var('excerpt_length'))
|
|
| 2599 | + $length = get_query_var('excerpt_length');
|
|
| 2600 | 2600 | |
| 2601 | - if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2602 | - $length = get_option('geodir_author_desc_word_limit');
|
|
| 2601 | + if (geodir_is_page('author') && get_option('geodir_author_desc_word_limit'))
|
|
| 2602 | + $length = get_option('geodir_author_desc_word_limit');
|
|
| 2603 | 2603 | |
| 2604 | - return $length; |
|
| 2604 | + return $length; |
|
| 2605 | 2605 | } |
| 2606 | 2606 | |
| 2607 | 2607 | /** |
@@ -2616,13 +2616,13 @@ discard block |
||
| 2616 | 2616 | */ |
| 2617 | 2617 | function geodir_excerpt_more($more) |
| 2618 | 2618 | {
|
| 2619 | - global $post; |
|
| 2620 | - $all_postypes = geodir_get_posttypes(); |
|
| 2621 | - if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2622 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2623 | - } |
|
| 2619 | + global $post; |
|
| 2620 | + $all_postypes = geodir_get_posttypes(); |
|
| 2621 | + if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
|
| 2622 | + return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2623 | + } |
|
| 2624 | 2624 | |
| 2625 | - return $more; |
|
| 2625 | + return $more; |
|
| 2626 | 2626 | } |
| 2627 | 2627 | |
| 2628 | 2628 | |
@@ -2639,63 +2639,63 @@ discard block |
||
| 2639 | 2639 | */ |
| 2640 | 2640 | function geodir_update_markers_oncatedit($term_id, $tt_id, $taxonomy) |
| 2641 | 2641 | {
|
| 2642 | - global $plugin_prefix, $wpdb; |
|
| 2642 | + global $plugin_prefix, $wpdb; |
|
| 2643 | 2643 | |
| 2644 | - $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2644 | + $gd_taxonomies = geodir_get_taxonomies(); |
|
| 2645 | 2645 | |
| 2646 | - if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2646 | + if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
|
| 2647 | 2647 | |
| 2648 | - $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2649 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2648 | + $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
|
| 2649 | + $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2650 | 2650 | |
| 2651 | - $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2652 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2651 | + $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
|
| 2652 | + $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2653 | 2653 | |
| 2654 | - $posts = $wpdb->get_results( |
|
| 2655 | - $wpdb->prepare( |
|
| 2656 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2657 | - array($term_id, $taxonomy) |
|
| 2658 | - ) |
|
| 2659 | - ); |
|
| 2654 | + $posts = $wpdb->get_results( |
|
| 2655 | + $wpdb->prepare( |
|
| 2656 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2657 | + array($term_id, $taxonomy) |
|
| 2658 | + ) |
|
| 2659 | + ); |
|
| 2660 | 2660 | |
| 2661 | - if (!empty($posts)): |
|
| 2662 | - foreach ($posts as $post_obj) {
|
|
| 2661 | + if (!empty($posts)): |
|
| 2662 | + foreach ($posts as $post_obj) {
|
|
| 2663 | 2663 | |
| 2664 | - $lat = $post_obj->post_latitude; |
|
| 2665 | - $lng = $post_obj->post_longitude; |
|
| 2664 | + $lat = $post_obj->post_latitude; |
|
| 2665 | + $lng = $post_obj->post_longitude; |
|
| 2666 | 2666 | |
| 2667 | - $json = '{';
|
|
| 2668 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2669 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2670 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2671 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2672 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2673 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2674 | - $json .= '}'; |
|
| 2667 | + $json = '{';
|
|
| 2668 | + $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2669 | + $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2670 | + $json .= '"long_pos": "' . $lng . '",'; |
|
| 2671 | + $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2672 | + $json .= '"icon":"' . $term_icon . '",'; |
|
| 2673 | + $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2674 | + $json .= '}'; |
|
| 2675 | 2675 | |
| 2676 | - if ($post_obj->default_category == $term_id) {
|
|
| 2676 | + if ($post_obj->default_category == $term_id) {
|
|
| 2677 | 2677 | |
| 2678 | - $wpdb->query( |
|
| 2679 | - $wpdb->prepare( |
|
| 2680 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2681 | - array($json, $post_obj->post_id) |
|
| 2682 | - ) |
|
| 2683 | - ); |
|
| 2684 | - } |
|
| 2678 | + $wpdb->query( |
|
| 2679 | + $wpdb->prepare( |
|
| 2680 | + "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2681 | + array($json, $post_obj->post_id) |
|
| 2682 | + ) |
|
| 2683 | + ); |
|
| 2684 | + } |
|
| 2685 | 2685 | |
| 2686 | - $wpdb->query( |
|
| 2687 | - $wpdb->prepare( |
|
| 2688 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2689 | - array($json, $post_obj->post_id, $term_id) |
|
| 2690 | - ) |
|
| 2691 | - ); |
|
| 2686 | + $wpdb->query( |
|
| 2687 | + $wpdb->prepare( |
|
| 2688 | + "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2689 | + array($json, $post_obj->post_id, $term_id) |
|
| 2690 | + ) |
|
| 2691 | + ); |
|
| 2692 | 2692 | |
| 2693 | - } |
|
| 2693 | + } |
|
| 2694 | 2694 | |
| 2695 | 2695 | |
| 2696 | - endif; |
|
| 2696 | + endif; |
|
| 2697 | 2697 | |
| 2698 | - } |
|
| 2698 | + } |
|
| 2699 | 2699 | |
| 2700 | 2700 | } |
| 2701 | 2701 | |
@@ -2709,14 +2709,14 @@ discard block |
||
| 2709 | 2709 | */ |
| 2710 | 2710 | function geodir_get_listing_author($listing_id = '') |
| 2711 | 2711 | {
|
| 2712 | - if ($listing_id == '') {
|
|
| 2713 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2714 | - $listing_id = $_REQUEST['pid']; |
|
| 2715 | - } |
|
| 2716 | - } |
|
| 2717 | - $listing = get_post(strip_tags($listing_id)); |
|
| 2718 | - $listing_author_id = $listing->post_author; |
|
| 2719 | - return $listing_author_id; |
|
| 2712 | + if ($listing_id == '') {
|
|
| 2713 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') {
|
|
| 2714 | + $listing_id = $_REQUEST['pid']; |
|
| 2715 | + } |
|
| 2716 | + } |
|
| 2717 | + $listing = get_post(strip_tags($listing_id)); |
|
| 2718 | + $listing_author_id = $listing->post_author; |
|
| 2719 | + return $listing_author_id; |
|
| 2720 | 2720 | } |
| 2721 | 2721 | |
| 2722 | 2722 | |
@@ -2731,11 +2731,11 @@ discard block |
||
| 2731 | 2731 | */ |
| 2732 | 2732 | function geodir_lisiting_belong_to_user($listing_id, $user_id) |
| 2733 | 2733 | {
|
| 2734 | - $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2735 | - if ($listing_author_id == $user_id) |
|
| 2736 | - return true; |
|
| 2737 | - else |
|
| 2738 | - return false; |
|
| 2734 | + $listing_author_id = geodir_get_listing_author($listing_id); |
|
| 2735 | + if ($listing_author_id == $user_id) |
|
| 2736 | + return true; |
|
| 2737 | + else |
|
| 2738 | + return false; |
|
| 2739 | 2739 | |
| 2740 | 2740 | } |
| 2741 | 2741 | |
@@ -2751,17 +2751,17 @@ discard block |
||
| 2751 | 2751 | */ |
| 2752 | 2752 | function geodir_listing_belong_to_current_user($listing_id = '', $exclude_admin = true) |
| 2753 | 2753 | {
|
| 2754 | - global $current_user; |
|
| 2755 | - if ($exclude_admin) {
|
|
| 2756 | - foreach ($current_user->caps as $key => $caps) {
|
|
| 2757 | - if (geodir_strtolower($key) == 'administrator') {
|
|
| 2758 | - return true; |
|
| 2759 | - break; |
|
| 2760 | - } |
|
| 2761 | - } |
|
| 2762 | - } |
|
| 2763 | - |
|
| 2764 | - return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2754 | + global $current_user; |
|
| 2755 | + if ($exclude_admin) {
|
|
| 2756 | + foreach ($current_user->caps as $key => $caps) {
|
|
| 2757 | + if (geodir_strtolower($key) == 'administrator') {
|
|
| 2758 | + return true; |
|
| 2759 | + break; |
|
| 2760 | + } |
|
| 2761 | + } |
|
| 2762 | + } |
|
| 2763 | + |
|
| 2764 | + return geodir_lisiting_belong_to_user($listing_id, $current_user->ID); |
|
| 2765 | 2765 | } |
| 2766 | 2766 | |
| 2767 | 2767 | |
@@ -2777,17 +2777,17 @@ discard block |
||
| 2777 | 2777 | function geodir_only_supportable_attachments_remove($file) |
| 2778 | 2778 | {
|
| 2779 | 2779 | |
| 2780 | - global $wpdb; |
|
| 2780 | + global $wpdb; |
|
| 2781 | 2781 | |
| 2782 | - $matches = array(); |
|
| 2782 | + $matches = array(); |
|
| 2783 | 2783 | |
| 2784 | - $pattern = '/-\d+x\d+\./'; |
|
| 2785 | - preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2784 | + $pattern = '/-\d+x\d+\./'; |
|
| 2785 | + preg_match($pattern, $file, $matches, PREG_OFFSET_CAPTURE); |
|
| 2786 | 2786 | |
| 2787 | - if (empty($matches)) |
|
| 2788 | - return ''; |
|
| 2789 | - else |
|
| 2790 | - return $file; |
|
| 2787 | + if (empty($matches)) |
|
| 2788 | + return ''; |
|
| 2789 | + else |
|
| 2790 | + return $file; |
|
| 2791 | 2791 | |
| 2792 | 2792 | } |
| 2793 | 2793 | |
@@ -2804,78 +2804,78 @@ discard block |
||
| 2804 | 2804 | function geodir_set_wp_featured_image($post_id) |
| 2805 | 2805 | {
|
| 2806 | 2806 | |
| 2807 | - global $wpdb, $plugin_prefix; |
|
| 2808 | - $uploads = wp_upload_dir(); |
|
| 2807 | + global $wpdb, $plugin_prefix; |
|
| 2808 | + $uploads = wp_upload_dir(); |
|
| 2809 | 2809 | // print_r($uploads ) ; |
| 2810 | - $post_first_image = $wpdb->get_results( |
|
| 2811 | - $wpdb->prepare( |
|
| 2812 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2813 | - ) |
|
| 2814 | - ); |
|
| 2810 | + $post_first_image = $wpdb->get_results( |
|
| 2811 | + $wpdb->prepare( |
|
| 2812 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2813 | + ) |
|
| 2814 | + ); |
|
| 2815 | 2815 | |
| 2816 | - $old_attachment_name = ''; |
|
| 2817 | - $post_thumbnail_id = ''; |
|
| 2818 | - if (has_post_thumbnail($post_id)) {
|
|
| 2816 | + $old_attachment_name = ''; |
|
| 2817 | + $post_thumbnail_id = ''; |
|
| 2818 | + if (has_post_thumbnail($post_id)) {
|
|
| 2819 | 2819 | |
| 2820 | - if (has_post_thumbnail($post_id)) {
|
|
| 2820 | + if (has_post_thumbnail($post_id)) {
|
|
| 2821 | 2821 | |
| 2822 | - $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2822 | + $post_thumbnail_id = get_post_thumbnail_id($post_id); |
|
| 2823 | 2823 | |
| 2824 | - $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2824 | + $old_attachment_name = basename(get_attached_file($post_thumbnail_id)); |
|
| 2825 | 2825 | |
| 2826 | - } |
|
| 2827 | - } |
|
| 2828 | - |
|
| 2829 | - if (!empty($post_first_image)) {
|
|
| 2826 | + } |
|
| 2827 | + } |
|
| 2830 | 2828 | |
| 2831 | - $post_type = get_post_type($post_id); |
|
| 2829 | + if (!empty($post_first_image)) {
|
|
| 2832 | 2830 | |
| 2833 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2831 | + $post_type = get_post_type($post_id); |
|
| 2834 | 2832 | |
| 2835 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2833 | + $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2836 | 2834 | |
| 2837 | - $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2835 | + $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2838 | 2836 | |
| 2839 | - if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2837 | + $new_attachment_name = basename($post_first_image[0]->file); |
|
| 2840 | 2838 | |
| 2841 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2839 | + if (geodir_strtolower($new_attachment_name) != geodir_strtolower($old_attachment_name)) {
|
|
| 2842 | 2840 | |
| 2843 | - add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2841 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) {
|
|
| 2844 | 2842 | |
| 2845 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2843 | + add_filter('wp_delete_file', 'geodir_only_supportable_attachments_remove');
|
|
| 2846 | 2844 | |
| 2847 | - } |
|
| 2848 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2845 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2849 | 2846 | |
| 2850 | - $attachment = array( |
|
| 2851 | - 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2852 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2853 | - 'post_parent' => $post_id, |
|
| 2854 | - 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2855 | - 'post_content' => '' |
|
| 2856 | - ); |
|
| 2847 | + } |
|
| 2848 | + $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2849 | + |
|
| 2850 | + $attachment = array( |
|
| 2851 | + 'post_mime_type' => $post_first_image[0]->mime_type, |
|
| 2852 | + 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2853 | + 'post_parent' => $post_id, |
|
| 2854 | + 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
|
| 2855 | + 'post_content' => '' |
|
| 2856 | + ); |
|
| 2857 | 2857 | |
| 2858 | 2858 | |
| 2859 | - $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2859 | + $id = wp_insert_attachment($attachment, $filename, $post_id); |
|
| 2860 | 2860 | |
| 2861 | - if (!is_wp_error($id)) {
|
|
| 2861 | + if (!is_wp_error($id)) {
|
|
| 2862 | 2862 | |
| 2863 | - set_post_thumbnail($post_id, $id); |
|
| 2863 | + set_post_thumbnail($post_id, $id); |
|
| 2864 | 2864 | |
| 2865 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2866 | - wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2865 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2866 | + wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
|
| 2867 | 2867 | |
| 2868 | - } |
|
| 2868 | + } |
|
| 2869 | 2869 | |
| 2870 | - } |
|
| 2870 | + } |
|
| 2871 | 2871 | |
| 2872 | - } else {
|
|
| 2873 | - //set_post_thumbnail($post_id,-1); |
|
| 2872 | + } else {
|
|
| 2873 | + //set_post_thumbnail($post_id,-1); |
|
| 2874 | 2874 | |
| 2875 | - if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2876 | - wp_delete_attachment($post_thumbnail_id); |
|
| 2875 | + if (has_post_thumbnail($post_id) && $post_thumbnail_id != '' && (!isset($_REQUEST['action']) || $_REQUEST['action'] != 'delete')) |
|
| 2876 | + wp_delete_attachment($post_thumbnail_id); |
|
| 2877 | 2877 | |
| 2878 | - } |
|
| 2878 | + } |
|
| 2879 | 2879 | } |
| 2880 | 2880 | |
| 2881 | 2881 | |
@@ -2890,53 +2890,53 @@ discard block |
||
| 2890 | 2890 | */ |
| 2891 | 2891 | function gd_copy_original_translation() |
| 2892 | 2892 | {
|
| 2893 | - if (function_exists('icl_object_id')) {
|
|
| 2894 | - global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2895 | - $post_id = absint($_POST['post_id']); |
|
| 2896 | - $upload_dir = wp_upload_dir(); |
|
| 2897 | - $post_type = get_post_type($_POST['post_id']); |
|
| 2898 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2899 | - |
|
| 2900 | - $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2901 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2902 | - array($post_id) |
|
| 2903 | - ) |
|
| 2904 | - , ARRAY_A); |
|
| 2905 | - |
|
| 2906 | - $arrImages = $wpdb->get_results( |
|
| 2907 | - $wpdb->prepare( |
|
| 2908 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2909 | - array('%image%', $post_id)
|
|
| 2910 | - ) |
|
| 2911 | - ); |
|
| 2912 | - if ($arrImages) {
|
|
| 2913 | - $image_arr = array(); |
|
| 2914 | - foreach ($arrImages as $img) {
|
|
| 2915 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2916 | - } |
|
| 2917 | - $comma_separated = implode(",", $image_arr);
|
|
| 2918 | - $post_arr[0]['post_images'] = $comma_separated; |
|
| 2919 | - } |
|
| 2920 | - |
|
| 2921 | - |
|
| 2922 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2923 | - $cat_arr = array_filter(explode(",", $cats));
|
|
| 2924 | - $trans_cat = array(); |
|
| 2925 | - foreach ($cat_arr as $cat) {
|
|
| 2926 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2927 | - } |
|
| 2928 | - |
|
| 2929 | - |
|
| 2930 | - $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2893 | + if (function_exists('icl_object_id')) {
|
|
| 2894 | + global $wpdb, $table_prefix, $plugin_prefix; |
|
| 2895 | + $post_id = absint($_POST['post_id']); |
|
| 2896 | + $upload_dir = wp_upload_dir(); |
|
| 2897 | + $post_type = get_post_type($_POST['post_id']); |
|
| 2898 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2899 | + |
|
| 2900 | + $post_arr = $wpdb->get_results($wpdb->prepare( |
|
| 2901 | + "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2902 | + array($post_id) |
|
| 2903 | + ) |
|
| 2904 | + , ARRAY_A); |
|
| 2905 | + |
|
| 2906 | + $arrImages = $wpdb->get_results( |
|
| 2907 | + $wpdb->prepare( |
|
| 2908 | + "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2909 | + array('%image%', $post_id)
|
|
| 2910 | + ) |
|
| 2911 | + ); |
|
| 2912 | + if ($arrImages) {
|
|
| 2913 | + $image_arr = array(); |
|
| 2914 | + foreach ($arrImages as $img) {
|
|
| 2915 | + $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2916 | + } |
|
| 2917 | + $comma_separated = implode(",", $image_arr);
|
|
| 2918 | + $post_arr[0]['post_images'] = $comma_separated; |
|
| 2919 | + } |
|
| 2920 | + |
|
| 2921 | + |
|
| 2922 | + $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2923 | + $cat_arr = array_filter(explode(",", $cats));
|
|
| 2924 | + $trans_cat = array(); |
|
| 2925 | + foreach ($cat_arr as $cat) {
|
|
| 2926 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2927 | + } |
|
| 2928 | + |
|
| 2929 | + |
|
| 2930 | + $post_arr[0]['categories'] = array_filter($trans_cat); |
|
| 2931 | 2931 | //print_r($image_arr); |
| 2932 | - //print_r($arrImages); |
|
| 2933 | - //echo $_REQUEST['lang']; |
|
| 2932 | + //print_r($arrImages); |
|
| 2933 | + //echo $_REQUEST['lang']; |
|
| 2934 | 2934 | //print_r($post_arr); |
| 2935 | 2935 | //print_r($trans_cat); |
| 2936 | - echo json_encode($post_arr[0]); |
|
| 2936 | + echo json_encode($post_arr[0]); |
|
| 2937 | 2937 | |
| 2938 | - } |
|
| 2939 | - die(); |
|
| 2938 | + } |
|
| 2939 | + die(); |
|
| 2940 | 2940 | } |
| 2941 | 2941 | |
| 2942 | 2942 | |
@@ -2956,54 +2956,54 @@ discard block |
||
| 2956 | 2956 | function geodir_get_custom_fields_type($listing_type = '') |
| 2957 | 2957 | {
|
| 2958 | 2958 | |
| 2959 | - global $wpdb; |
|
| 2959 | + global $wpdb; |
|
| 2960 | 2960 | |
| 2961 | - if ($listing_type == '') |
|
| 2962 | - $listing_type = 'gd_place'; |
|
| 2961 | + if ($listing_type == '') |
|
| 2962 | + $listing_type = 'gd_place'; |
|
| 2963 | 2963 | |
| 2964 | - $fields_info = array(); |
|
| 2964 | + $fields_info = array(); |
|
| 2965 | 2965 | |
| 2966 | - $get_data = $wpdb->get_results( |
|
| 2967 | - $wpdb->prepare( |
|
| 2968 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2969 | - array($listing_type) |
|
| 2970 | - ) |
|
| 2971 | - ); |
|
| 2966 | + $get_data = $wpdb->get_results( |
|
| 2967 | + $wpdb->prepare( |
|
| 2968 | + "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2969 | + array($listing_type) |
|
| 2970 | + ) |
|
| 2971 | + ); |
|
| 2972 | 2972 | |
| 2973 | - if (!empty($get_data)) {
|
|
| 2973 | + if (!empty($get_data)) {
|
|
| 2974 | 2974 | |
| 2975 | - foreach ($get_data as $data) {
|
|
| 2975 | + foreach ($get_data as $data) {
|
|
| 2976 | 2976 | |
| 2977 | - if ($data->field_type == 'address') {
|
|
| 2977 | + if ($data->field_type == 'address') {
|
|
| 2978 | 2978 | |
| 2979 | - $extra_fields = unserialize($data->extra_fields); |
|
| 2979 | + $extra_fields = unserialize($data->extra_fields); |
|
| 2980 | 2980 | |
| 2981 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2981 | + $prefix = $data->htmlvar_name . '_'; |
|
| 2982 | 2982 | |
| 2983 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2983 | + $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2984 | 2984 | |
| 2985 | - if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2986 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2985 | + if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
|
| 2986 | + $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2987 | 2987 | |
| 2988 | - } else {
|
|
| 2988 | + } else {
|
|
| 2989 | 2989 | |
| 2990 | - $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2990 | + $fields_info[$data->htmlvar_name] = $data->field_type; |
|
| 2991 | 2991 | |
| 2992 | - } |
|
| 2992 | + } |
|
| 2993 | 2993 | |
| 2994 | - } |
|
| 2994 | + } |
|
| 2995 | 2995 | |
| 2996 | - } |
|
| 2996 | + } |
|
| 2997 | 2997 | |
| 2998 | - /** |
|
| 2999 | - * Filter to modify custom fields info using listing post type. |
|
| 3000 | - * |
|
| 3001 | - * @since 1.0.0 |
|
| 3002 | - * @package GeoDirectory |
|
| 3003 | - * @return array $fields_info Custom fields info. |
|
| 3004 | - * @param string $listing_type The listing post type. |
|
| 3005 | - */ |
|
| 3006 | - return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 2998 | + /** |
|
| 2999 | + * Filter to modify custom fields info using listing post type. |
|
| 3000 | + * |
|
| 3001 | + * @since 1.0.0 |
|
| 3002 | + * @package GeoDirectory |
|
| 3003 | + * @return array $fields_info Custom fields info. |
|
| 3004 | + * @param string $listing_type The listing post type. |
|
| 3005 | + */ |
|
| 3006 | + return apply_filters('geodir_get_custom_fields_type', $fields_info, $listing_type);
|
|
| 3007 | 3007 | } |
| 3008 | 3008 | |
| 3009 | 3009 | |
@@ -3018,58 +3018,58 @@ discard block |
||
| 3018 | 3018 | */ |
| 3019 | 3019 | function geodir_function_post_updated($post_ID, $post_after, $post_before) |
| 3020 | 3020 | {
|
| 3021 | - $post_type = get_post_type($post_ID); |
|
| 3021 | + $post_type = get_post_type($post_ID); |
|
| 3022 | 3022 | |
| 3023 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 3024 | - // send notification to client when post moves from draft to publish |
|
| 3025 | - if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
|
|
| 3026 | - $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 3027 | - $post_author_data = get_userdata($post_author_id); |
|
| 3023 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes())) {
|
|
| 3024 | + // send notification to client when post moves from draft to publish |
|
| 3025 | + if (!empty($post_after->post_status) && $post_after->post_status == 'publish' && !empty($post_before->post_status) && ($post_before->post_status == 'draft' || $post_before->post_status == 'auto-draft')) {
|
|
| 3026 | + $post_author_id = !empty($post_after->post_author) ? $post_after->post_author : NULL; |
|
| 3027 | + $post_author_data = get_userdata($post_author_id); |
|
| 3028 | 3028 | |
| 3029 | - $to_name = geodir_get_client_name($post_author_id); |
|
| 3029 | + $to_name = geodir_get_client_name($post_author_id); |
|
| 3030 | 3030 | |
| 3031 | - $from_email = geodir_get_site_email_id(); |
|
| 3032 | - $from_name = get_site_emailName(); |
|
| 3033 | - $to_email = $post_author_data->user_email; |
|
| 3031 | + $from_email = geodir_get_site_email_id(); |
|
| 3032 | + $from_name = get_site_emailName(); |
|
| 3033 | + $to_email = $post_author_data->user_email; |
|
| 3034 | 3034 | |
| 3035 | - if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 3036 | - $to_email = $post_author_data->user_email; |
|
| 3037 | - } |
|
| 3035 | + if (!is_email($to_email) && !empty($post_author_data->user_email)) {
|
|
| 3036 | + $to_email = $post_author_data->user_email; |
|
| 3037 | + } |
|
| 3038 | 3038 | |
| 3039 | - $message_type = 'listing_published'; |
|
| 3039 | + $message_type = 'listing_published'; |
|
| 3040 | 3040 | |
| 3041 | - if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3042 | - update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3043 | - } |
|
| 3041 | + if (get_option('geodir_post_published_email_subject') == '') {
|
|
| 3042 | + update_option('geodir_post_published_email_subject', __('Listing Published Successfully', 'geodirectory'));
|
|
| 3043 | + } |
|
| 3044 | 3044 | |
| 3045 | - if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3046 | - update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
|
|
| 3047 | - } |
|
| 3045 | + if (get_option('geodir_post_published_email_content') == '') {
|
|
| 3046 | + update_option('geodir_post_published_email_content', __("<p>Dear [#client_name#],</p><p>Your listing [#listing_link#] has been published. This email is just for your information.</p><p>[#listing_link#]</p><br><p>Thank you for your contribution.</p><p>[#site_name#]</p>", 'geodirectory'));
|
|
| 3047 | + } |
|
| 3048 | 3048 | |
| 3049 | - /** |
|
| 3050 | - * Called before sending the email when listing gets published. |
|
| 3051 | - * |
|
| 3052 | - * @since 1.0.0 |
|
| 3053 | - * @package GeoDirectory |
|
| 3054 | - * @param object $post_after The post object after update. |
|
| 3055 | - * @param object $post_before The post object before update. |
|
| 3056 | - */ |
|
| 3057 | - do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3058 | - if (is_email($to_email)) {
|
|
| 3059 | - geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3060 | - } |
|
| 3049 | + /** |
|
| 3050 | + * Called before sending the email when listing gets published. |
|
| 3051 | + * |
|
| 3052 | + * @since 1.0.0 |
|
| 3053 | + * @package GeoDirectory |
|
| 3054 | + * @param object $post_after The post object after update. |
|
| 3055 | + * @param object $post_before The post object before update. |
|
| 3056 | + */ |
|
| 3057 | + do_action('geodir_before_listing_published_email', $post_after, $post_before);
|
|
| 3058 | + if (is_email($to_email)) {
|
|
| 3059 | + geodir_sendEmail($from_email, $from_name, $to_email, $to_name, '', '', '', $message_type, $post_ID); |
|
| 3060 | + } |
|
| 3061 | 3061 | |
| 3062 | - /** |
|
| 3063 | - * Called after sending the email when listing gets published. |
|
| 3064 | - * |
|
| 3065 | - * @since 1.0.0 |
|
| 3066 | - * @package GeoDirectory |
|
| 3067 | - * @param object $post_after The post object after update. |
|
| 3068 | - * @param object $post_before The post object before update. |
|
| 3069 | - */ |
|
| 3070 | - do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3071 | - } |
|
| 3072 | - } |
|
| 3062 | + /** |
|
| 3063 | + * Called after sending the email when listing gets published. |
|
| 3064 | + * |
|
| 3065 | + * @since 1.0.0 |
|
| 3066 | + * @package GeoDirectory |
|
| 3067 | + * @param object $post_after The post object after update. |
|
| 3068 | + * @param object $post_before The post object before update. |
|
| 3069 | + */ |
|
| 3070 | + do_action('geodir_after_listing_published_email', $post_after, $post_before);
|
|
| 3071 | + } |
|
| 3072 | + } |
|
| 3073 | 3073 | } |
| 3074 | 3074 | |
| 3075 | 3075 | add_action('wp_head', 'geodir_fb_like_thumbnail');
|
@@ -3083,14 +3083,14 @@ discard block |
||
| 3083 | 3083 | */ |
| 3084 | 3084 | function geodir_fb_like_thumbnail(){
|
| 3085 | 3085 | |
| 3086 | - // return if not a single post |
|
| 3087 | - if(!is_single()){return;}
|
|
| 3086 | + // return if not a single post |
|
| 3087 | + if(!is_single()){return;}
|
|
| 3088 | 3088 | |
| 3089 | - global $post; |
|
| 3090 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3091 | - $upload_dir = wp_upload_dir(); |
|
| 3092 | - $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3093 | - echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3089 | + global $post; |
|
| 3090 | + if(isset($post->featured_image) && $post->featured_image){
|
|
| 3091 | + $upload_dir = wp_upload_dir(); |
|
| 3092 | + $thumb = $upload_dir['baseurl'].$post->featured_image; |
|
| 3093 | + echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |
|
| 3094 | 3094 | |
| 3095 | - } |
|
| 3095 | + } |
|
| 3096 | 3096 | } |
| 3097 | 3097 | \ No newline at end of file |
@@ -26,11 +26,11 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | if (!isset($default_cat) || empty($default_cat)) {
|
| 28 | 28 | $default_cat = isset($post_cat_array[0]) ? $post_cat_array[0] : ''; |
| 29 | - }else{
|
|
| 30 | - if(!is_int($default_cat)){
|
|
| 29 | + } else {
|
|
| 30 | + if (!is_int($default_cat)) {
|
|
| 31 | 31 | $category = get_term_by('name', $default_cat, $taxonomy);
|
| 32 | - if(isset($category->term_id)){
|
|
| 33 | - $default_cat = $category->term_id; |
|
| 32 | + if (isset($category->term_id)) {
|
|
| 33 | + $default_cat = $category->term_id; |
|
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | if ($default_pos === false) {
|
| 60 | 60 | |
| 61 | - $change_cat_str = str_replace($default_cat . ',y:', $default_cat . ',y,d:', $change_cat_str); |
|
| 61 | + $change_cat_str = str_replace($default_cat.',y:', $default_cat.',y,d:', $change_cat_str); |
|
| 62 | 62 | |
| 63 | 63 | } |
| 64 | 64 | |
@@ -227,7 +227,7 @@ discard block |
||
| 227 | 227 | $send_post_submit_mail = false; |
| 228 | 228 | |
| 229 | 229 | // unhook this function so it doesn't loop infinitely |
| 230 | - remove_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 230 | + remove_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 231 | 231 | |
| 232 | 232 | if (isset($request_info['pid']) && $request_info['pid'] != '') {
|
| 233 | 233 | $post['ID'] = $request_info['pid']; |
@@ -251,13 +251,13 @@ discard block |
||
| 251 | 251 | } |
| 252 | 252 | |
| 253 | 253 | // re-hook this function |
| 254 | - add_action('save_post', 'geodir_post_information_save',10,2);
|
|
| 254 | + add_action('save_post', 'geodir_post_information_save', 10, 2);
|
|
| 255 | 255 | |
| 256 | 256 | $post_tags = ''; |
| 257 | 257 | if (!isset($request_info['post_tags'])) {
|
| 258 | 258 | |
| 259 | 259 | $post_type = $request_info['listing_type']; |
| 260 | - $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type . '_tags', array('fields' => 'names')));
|
|
| 260 | + $post_tags = implode(",", wp_get_object_terms($last_post_id, $post_type.'_tags', array('fields' => 'names')));
|
|
| 261 | 261 | |
| 262 | 262 | } |
| 263 | 263 | |
@@ -275,13 +275,13 @@ discard block |
||
| 275 | 275 | $payment_info = array(); |
| 276 | 276 | $package_info = array(); |
| 277 | 277 | |
| 278 | - $package_info = (array)geodir_post_package_info($package_info, $post); |
|
| 278 | + $package_info = (array) geodir_post_package_info($package_info, $post); |
|
| 279 | 279 | |
| 280 | 280 | $post_package_id = geodir_get_post_meta($last_post_id, 'package_id'); |
| 281 | 281 | |
| 282 | 282 | if (!empty($package_info) && !$post_package_id) {
|
| 283 | 283 | if (isset($package_info['days']) && $package_info['days'] != 0) {
|
| 284 | - $payment_info['expire_date'] = date('Y-m-d', strtotime("+" . $package_info['days'] . " days"));
|
|
| 284 | + $payment_info['expire_date'] = date('Y-m-d', strtotime("+".$package_info['days']." days"));
|
|
| 285 | 285 | } else {
|
| 286 | 286 | $payment_info['expire_date'] = 'Never'; |
| 287 | 287 | } |
@@ -302,8 +302,8 @@ discard block |
||
| 302 | 302 | $extrafields = $val['extra_fields']; |
| 303 | 303 | |
| 304 | 304 | if (trim($type) == 'address') {
|
| 305 | - $prefix = $name . '_'; |
|
| 306 | - $address = $prefix . 'address'; |
|
| 305 | + $prefix = $name.'_'; |
|
| 306 | + $address = $prefix.'address'; |
|
| 307 | 307 | |
| 308 | 308 | if (isset($request_info[$address]) && $request_info[$address] != '') {
|
| 309 | 309 | $gd_post_info[$address] = wp_slash($request_info[$address]); |
@@ -313,59 +313,59 @@ discard block |
||
| 313 | 313 | $extrafields = unserialize($extrafields); |
| 314 | 314 | |
| 315 | 315 | |
| 316 | - if (!isset($request_info[$prefix . 'city']) || $request_info[$prefix . 'city'] == '') {
|
|
| 316 | + if (!isset($request_info[$prefix.'city']) || $request_info[$prefix.'city'] == '') {
|
|
| 317 | 317 | |
| 318 | 318 | $location_result = geodir_get_default_location(); |
| 319 | 319 | |
| 320 | - $gd_post_info[$prefix . 'city'] = $location_result->city; |
|
| 321 | - $gd_post_info[$prefix . 'region'] = $location_result->region; |
|
| 322 | - $gd_post_info[$prefix . 'country'] = $location_result->country; |
|
| 320 | + $gd_post_info[$prefix.'city'] = $location_result->city; |
|
| 321 | + $gd_post_info[$prefix.'region'] = $location_result->region; |
|
| 322 | + $gd_post_info[$prefix.'country'] = $location_result->country; |
|
| 323 | 323 | |
| 324 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 324 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
| 325 | 325 | |
| 326 | 326 | } else {
|
| 327 | 327 | |
| 328 | - $gd_post_info[$prefix . 'city'] = $request_info[$prefix . 'city']; |
|
| 329 | - $gd_post_info[$prefix . 'region'] = $request_info[$prefix . 'region']; |
|
| 330 | - $gd_post_info[$prefix . 'country'] = $request_info[$prefix . 'country']; |
|
| 328 | + $gd_post_info[$prefix.'city'] = $request_info[$prefix.'city']; |
|
| 329 | + $gd_post_info[$prefix.'region'] = $request_info[$prefix.'region']; |
|
| 330 | + $gd_post_info[$prefix.'country'] = $request_info[$prefix.'country']; |
|
| 331 | 331 | |
| 332 | 332 | //----------set post locations when import dummy data------- |
| 333 | 333 | $location_result = geodir_get_default_location(); |
| 334 | 334 | |
| 335 | - $gd_post_info['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // set all overall post location |
|
| 335 | + $gd_post_info['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // set all overall post location |
|
| 336 | 336 | //----------------------------------------------------------------- |
| 337 | 337 | |
| 338 | 338 | } |
| 339 | 339 | |
| 340 | 340 | |
| 341 | - if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix . 'zip'])) {
|
|
| 342 | - $gd_post_info[$prefix . 'zip'] = $request_info[$prefix . 'zip']; |
|
| 341 | + if (isset($extrafields['show_zip']) && $extrafields['show_zip'] && isset($request_info[$prefix.'zip'])) {
|
|
| 342 | + $gd_post_info[$prefix.'zip'] = $request_info[$prefix.'zip']; |
|
| 343 | 343 | } |
| 344 | 344 | |
| 345 | 345 | |
| 346 | 346 | if (isset($extrafields['show_map']) && $extrafields['show_map']) {
|
| 347 | 347 | |
| 348 | - if (isset($request_info[$prefix . 'latitude']) && $request_info[$prefix . 'latitude'] != '') {
|
|
| 349 | - $gd_post_info[$prefix . 'latitude'] = $request_info[$prefix . 'latitude']; |
|
| 348 | + if (isset($request_info[$prefix.'latitude']) && $request_info[$prefix.'latitude'] != '') {
|
|
| 349 | + $gd_post_info[$prefix.'latitude'] = $request_info[$prefix.'latitude']; |
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | - if (isset($request_info[$prefix . 'longitude']) && $request_info[$prefix . 'longitude'] != '') {
|
|
| 353 | - $gd_post_info[$prefix . 'longitude'] = $request_info[$prefix . 'longitude']; |
|
| 352 | + if (isset($request_info[$prefix.'longitude']) && $request_info[$prefix.'longitude'] != '') {
|
|
| 353 | + $gd_post_info[$prefix.'longitude'] = $request_info[$prefix.'longitude']; |
|
| 354 | 354 | } |
| 355 | 355 | |
| 356 | - if (isset($request_info[$prefix . 'mapview']) && $request_info[$prefix . 'mapview'] != '') {
|
|
| 357 | - $gd_post_info[$prefix . 'mapview'] = $request_info[$prefix . 'mapview']; |
|
| 356 | + if (isset($request_info[$prefix.'mapview']) && $request_info[$prefix.'mapview'] != '') {
|
|
| 357 | + $gd_post_info[$prefix.'mapview'] = $request_info[$prefix.'mapview']; |
|
| 358 | 358 | } |
| 359 | 359 | |
| 360 | - if (isset($request_info[$prefix . 'mapzoom']) && $request_info[$prefix . 'mapzoom'] != '') {
|
|
| 361 | - $gd_post_info[$prefix . 'mapzoom'] = $request_info[$prefix . 'mapzoom']; |
|
| 360 | + if (isset($request_info[$prefix.'mapzoom']) && $request_info[$prefix.'mapzoom'] != '') {
|
|
| 361 | + $gd_post_info[$prefix.'mapzoom'] = $request_info[$prefix.'mapzoom']; |
|
| 362 | 362 | } |
| 363 | 363 | |
| 364 | 364 | } |
| 365 | 365 | |
| 366 | 366 | // show lat lng |
| 367 | - if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix . 'latlng'])) {
|
|
| 368 | - $gd_post_info[$prefix . 'latlng'] = $request_info[$prefix . 'latlng']; |
|
| 367 | + if (isset($extrafields['show_latlng']) && $extrafields['show_latlng'] && isset($request_info[$prefix.'latlng'])) {
|
|
| 368 | + $gd_post_info[$prefix.'latlng'] = $request_info[$prefix.'latlng']; |
|
| 369 | 369 | } |
| 370 | 370 | } |
| 371 | 371 | |
@@ -390,20 +390,20 @@ discard block |
||
| 390 | 390 | |
| 391 | 391 | // check if we need to change the format or not |
| 392 | 392 | $date_format_len = strlen(str_replace(' ', '', $date_format));
|
| 393 | - if($date_format_len>5){// if greater then 5 then it's the old style format.
|
|
| 393 | + if ($date_format_len > 5) {// if greater then 5 then it's the old style format.
|
|
| 394 | 394 | |
| 395 | - $search = array('dd','d','DD','mm','m','MM','yy'); //jQuery UI datepicker format
|
|
| 396 | - $replace = array('d','j','l','m','n','F','Y');//PHP date format
|
|
| 395 | + $search = array('dd', 'd', 'DD', 'mm', 'm', 'MM', 'yy'); //jQuery UI datepicker format
|
|
| 396 | + $replace = array('d', 'j', 'l', 'm', 'n', 'F', 'Y'); //PHP date format
|
|
| 397 | 397 | |
| 398 | 398 | $date_format = str_replace($search, $replace, $date_format); |
| 399 | 399 | |
| 400 | 400 | $post_htmlvar_value = $date_format == 'd/m/Y' ? str_replace('/', '-', $request_info[$name]) : $request_info[$name];
|
| 401 | 401 | |
| 402 | - }else{
|
|
| 402 | + } else {
|
|
| 403 | 403 | $post_htmlvar_value = $request_info[$name]; |
| 404 | 404 | } |
| 405 | 405 | |
| 406 | - $post_htmlvar_value = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
| 406 | + $post_htmlvar_value = geodir_maybe_untranslate_date($post_htmlvar_value); // maybe untranslate date string if it was translated |
|
| 407 | 407 | |
| 408 | 408 | $datetime = date("Y-m-d", strtotime($post_htmlvar_value)); // save as sql format Y-m-d
|
| 409 | 409 | |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | if (isset($request_info[$name])) {
|
| 414 | 414 | $gd_post_info[$name] = $request_info[$name]; |
| 415 | 415 | } else {
|
| 416 | - if (isset($request_info['gd_field_' . $name])) {
|
|
| 416 | + if (isset($request_info['gd_field_'.$name])) {
|
|
| 417 | 417 | $gd_post_info[$name] = ''; /* fix de-select for multiselect */ |
| 418 | 418 | } |
| 419 | 419 | } |
@@ -473,7 +473,7 @@ discard block |
||
| 473 | 473 | } |
| 474 | 474 | |
| 475 | 475 | if (is_array($post_tags)) {
|
| 476 | - $taxonomy = $request_info['listing_type'] . '_tags'; |
|
| 476 | + $taxonomy = $request_info['listing_type'].'_tags'; |
|
| 477 | 477 | wp_set_object_terms($last_post_id, $post_tags, $taxonomy); |
| 478 | 478 | } |
| 479 | 479 | |
@@ -485,7 +485,7 @@ discard block |
||
| 485 | 485 | $tmpimgArr = trim($request_info['post_images'], ","); |
| 486 | 486 | $tmpimgArr = explode(",", $tmpimgArr);
|
| 487 | 487 | geodir_save_post_images($last_post_id, $tmpimgArr, $dummy); |
| 488 | - } else{
|
|
| 488 | + } else {
|
|
| 489 | 489 | geodir_save_post_images($last_post_id, $request_info['post_images'], $dummy); |
| 490 | 490 | } |
| 491 | 491 | |
@@ -566,7 +566,7 @@ discard block |
||
| 566 | 566 | if (!in_array($post_type, $all_postypes)) |
| 567 | 567 | return false; |
| 568 | 568 | |
| 569 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 569 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 570 | 570 | |
| 571 | 571 | /** |
| 572 | 572 | * Apply Filter to change Post info |
@@ -576,7 +576,7 @@ discard block |
||
| 576 | 576 | * @since 1.0.0 |
| 577 | 577 | * @package GeoDirectory |
| 578 | 578 | */ |
| 579 | - $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM " . $wpdb->posts . " p," . $table . " pd
|
|
| 579 | + $query = apply_filters('geodir_post_info_query', "SELECT p.*,pd.* FROM ".$wpdb->posts." p,".$table." pd
|
|
| 580 | 580 | WHERE p.ID = pd.post_id |
| 581 | 581 | AND post_id = " . $post_id); |
| 582 | 582 | |
@@ -639,7 +639,7 @@ discard block |
||
| 639 | 639 | |
| 640 | 640 | $post_type = get_post_type($post_id); |
| 641 | 641 | |
| 642 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 642 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 643 | 643 | |
| 644 | 644 | /** |
| 645 | 645 | * Filter to change Post info |
@@ -663,13 +663,13 @@ discard block |
||
| 663 | 663 | $mval = implode(",", $mval);
|
| 664 | 664 | } |
| 665 | 665 | |
| 666 | - $post_meta_set_query .= $mkey . " = '" . $mval . "', "; |
|
| 666 | + $post_meta_set_query .= $mkey." = '".$mval."', "; |
|
| 667 | 667 | } |
| 668 | 668 | } |
| 669 | 669 | |
| 670 | 670 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
| 671 | 671 | |
| 672 | - $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query);// escape %
|
|
| 672 | + $post_meta_set_query = str_replace('%', '%%', $post_meta_set_query); // escape %
|
|
| 673 | 673 | |
| 674 | 674 | /** |
| 675 | 675 | * Called before saving the listing info. |
@@ -681,11 +681,11 @@ discard block |
||
| 681 | 681 | */ |
| 682 | 682 | do_action('geodir_before_save_listinginfo', $postinfo_array, $post_id);
|
| 683 | 683 | |
| 684 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 684 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 685 | 685 | |
| 686 | 686 | $wpdb->query( |
| 687 | 687 | $wpdb->prepare( |
| 688 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id =%d", |
|
| 688 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id =%d", |
|
| 689 | 689 | array($post_id) |
| 690 | 690 | ) |
| 691 | 691 | ); |
@@ -695,7 +695,7 @@ discard block |
||
| 695 | 695 | |
| 696 | 696 | $wpdb->query( |
| 697 | 697 | $wpdb->prepare( |
| 698 | - "INSERT INTO " . $table . " SET post_id = %d," . $post_meta_set_query, |
|
| 698 | + "INSERT INTO ".$table." SET post_id = %d,".$post_meta_set_query, |
|
| 699 | 699 | array($post_id) |
| 700 | 700 | ) |
| 701 | 701 | ); |
@@ -741,7 +741,7 @@ discard block |
||
| 741 | 741 | |
| 742 | 742 | $post_type = get_post_type($post_id); |
| 743 | 743 | |
| 744 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 744 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 745 | 745 | |
| 746 | 746 | if ($postmeta != '' && geodir_column_exist($table, $postmeta) && $post_id) {
|
| 747 | 747 | |
@@ -749,11 +749,11 @@ discard block |
||
| 749 | 749 | $meta_value = implode(",", $meta_value);
|
| 750 | 750 | } |
| 751 | 751 | |
| 752 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 752 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 753 | 753 | |
| 754 | 754 | $wpdb->query( |
| 755 | 755 | $wpdb->prepare( |
| 756 | - "UPDATE " . $table . " SET " . $postmeta . " = '" . $meta_value . "' where post_id =%d", |
|
| 756 | + "UPDATE ".$table." SET ".$postmeta." = '".$meta_value."' where post_id =%d", |
|
| 757 | 757 | array($post_id) |
| 758 | 758 | ) |
| 759 | 759 | ); |
@@ -762,7 +762,7 @@ discard block |
||
| 762 | 762 | |
| 763 | 763 | $wpdb->query( |
| 764 | 764 | $wpdb->prepare( |
| 765 | - "INSERT INTO " . $table . " SET post_id = %d, " . $postmeta . " = '" . $meta_value . "'", |
|
| 765 | + "INSERT INTO ".$table." SET post_id = %d, ".$postmeta." = '".$meta_value."'", |
|
| 766 | 766 | array($post_id) |
| 767 | 767 | ) |
| 768 | 768 | ); |
@@ -795,23 +795,23 @@ discard block |
||
| 795 | 795 | |
| 796 | 796 | $post_type = get_post_type($post_id); |
| 797 | 797 | |
| 798 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 798 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 799 | 799 | |
| 800 | 800 | if (is_array($postmeta) && !empty($postmeta) && $post_id) {
|
| 801 | 801 | $post_meta_set_query = ''; |
| 802 | 802 | |
| 803 | 803 | foreach ($postmeta as $mkey) {
|
| 804 | 804 | if ($mval != '') |
| 805 | - $post_meta_set_query .= $mkey . " = '', "; |
|
| 805 | + $post_meta_set_query .= $mkey." = '', "; |
|
| 806 | 806 | } |
| 807 | 807 | |
| 808 | 808 | $post_meta_set_query = trim($post_meta_set_query, ", "); |
| 809 | 809 | |
| 810 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 810 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
|
|
| 811 | 811 | |
| 812 | 812 | $wpdb->query( |
| 813 | 813 | $wpdb->prepare( |
| 814 | - "UPDATE " . $table . " SET " . $post_meta_set_query . " where post_id = %d", |
|
| 814 | + "UPDATE ".$table." SET ".$post_meta_set_query." where post_id = %d", |
|
| 815 | 815 | array($post_id) |
| 816 | 816 | ) |
| 817 | 817 | ); |
@@ -820,11 +820,11 @@ discard block |
||
| 820 | 820 | } |
| 821 | 821 | |
| 822 | 822 | } elseif ($postmeta != '' && $post_id) {
|
| 823 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $postmeta . "'") != '') {
|
|
| 823 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$postmeta."'") != '') {
|
|
| 824 | 824 | |
| 825 | 825 | $wpdb->query( |
| 826 | 826 | $wpdb->prepare( |
| 827 | - "UPDATE " . $table . " SET " . $postmeta . "= '' where post_id = %d", |
|
| 827 | + "UPDATE ".$table." SET ".$postmeta."= '' where post_id = %d", |
|
| 828 | 828 | array($post_id) |
| 829 | 829 | ) |
| 830 | 830 | ); |
@@ -866,10 +866,10 @@ discard block |
||
| 866 | 866 | if (!in_array($post_type, $all_postypes)) |
| 867 | 867 | return false; |
| 868 | 868 | |
| 869 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 869 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 870 | 870 | |
| 871 | - if ($wpdb->get_var("SHOW COLUMNS FROM " . $table . " WHERE field = '" . $meta_key . "'") != '') {
|
|
| 872 | - $meta_value = $wpdb->get_var($wpdb->prepare("SELECT " . $meta_key . " from " . $table . " where post_id = %d", array($post_id)));
|
|
| 871 | + if ($wpdb->get_var("SHOW COLUMNS FROM ".$table." WHERE field = '".$meta_key."'") != '') {
|
|
| 872 | + $meta_value = $wpdb->get_var($wpdb->prepare("SELECT ".$meta_key." from ".$table." where post_id = %d", array($post_id)));
|
|
| 873 | 873 | |
| 874 | 874 | if ($meta_value && $meta_value !== '') {
|
| 875 | 875 | return maybe_serialize($meta_value); |
@@ -903,13 +903,13 @@ discard block |
||
| 903 | 903 | |
| 904 | 904 | $post_type = get_post_type($post_id); |
| 905 | 905 | |
| 906 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 906 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 907 | 907 | |
| 908 | 908 | $post_images = geodir_get_images($post_id); |
| 909 | 909 | |
| 910 | 910 | $wpdb->query( |
| 911 | 911 | $wpdb->prepare( |
| 912 | - "UPDATE " . $table . " SET featured_image = '' where post_id =%d", |
|
| 912 | + "UPDATE ".$table." SET featured_image = '' where post_id =%d", |
|
| 913 | 913 | array($post_id) |
| 914 | 914 | ) |
| 915 | 915 | ); |
@@ -939,12 +939,12 @@ discard block |
||
| 939 | 939 | $file_path = ''; |
| 940 | 940 | /* --------- start ------- */ |
| 941 | 941 | |
| 942 | - $split_img_path = explode(str_replace(array('http://','https://'),'',$uploads['baseurl']), str_replace(array('http://','https://'),'',$post_image[$m]));
|
|
| 942 | + $split_img_path = explode(str_replace(array('http://', 'https://'), '', $uploads['baseurl']), str_replace(array('http://', 'https://'), '', $post_image[$m]));
|
|
| 943 | 943 | |
| 944 | 944 | $split_img_file_path = isset($split_img_path[1]) ? $split_img_path[1] : ''; |
| 945 | 945 | |
| 946 | 946 | |
| 947 | - if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 947 | + if (!$find_image = $wpdb->get_var($wpdb->prepare("SELECT ID FROM ".GEODIR_ATTACHMENT_TABLE." WHERE file=%s AND post_id = %d", array($split_img_file_path, $post_id)))) {
|
|
| 948 | 948 | |
| 949 | 949 | /* --------- end ------- */ |
| 950 | 950 | $curr_img_url = $post_image[$m]; |
@@ -988,7 +988,7 @@ discard block |
||
| 988 | 988 | // If the uploaded file is the right format |
| 989 | 989 | if (in_array($uploaded_file_type, $allowed_file_types)) {
|
| 990 | 990 | if (!function_exists('wp_handle_upload')) {
|
| 991 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
| 991 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
| 992 | 992 | } |
| 993 | 993 | |
| 994 | 994 | if (!is_dir($geodir_uploadpath)) {
|
@@ -996,41 +996,41 @@ discard block |
||
| 996 | 996 | } |
| 997 | 997 | |
| 998 | 998 | $external_img = false; |
| 999 | - if (strpos(str_replace(array('http://','https://'),'',$curr_img_url), str_replace(array('http://','https://'),'',$uploads['baseurl'])) !== false) {
|
|
| 999 | + if (strpos(str_replace(array('http://', 'https://'), '', $curr_img_url), str_replace(array('http://', 'https://'), '', $uploads['baseurl'])) !== false) {
|
|
| 1000 | 1000 | } else {
|
| 1001 | 1001 | $external_img = true; |
| 1002 | 1002 | } |
| 1003 | 1003 | |
| 1004 | 1004 | if ($dummy || $external_img) {
|
| 1005 | 1005 | $uploaded_file = array(); |
| 1006 | - $uploaded = (array)fetch_remote_file($curr_img_url); |
|
| 1006 | + $uploaded = (array) fetch_remote_file($curr_img_url); |
|
| 1007 | 1007 | |
| 1008 | 1008 | if (isset($uploaded['error']) && empty($uploaded['error'])) {
|
| 1009 | 1009 | $new_name = basename($uploaded['file']); |
| 1010 | 1010 | $uploaded_file = $uploaded; |
| 1011 | - }else{
|
|
| 1012 | - print_r($uploaded);exit; |
|
| 1011 | + } else {
|
|
| 1012 | + print_r($uploaded); exit; |
|
| 1013 | 1013 | } |
| 1014 | 1014 | $external_img = false; |
| 1015 | 1015 | } else {
|
| 1016 | - $new_name = $post_id . '_' . $file_name; |
|
| 1016 | + $new_name = $post_id.'_'.$file_name; |
|
| 1017 | 1017 | |
| 1018 | 1018 | if ($curr_img_dir == $sub_dir) {
|
| 1019 | - $img_path = $geodir_uploadpath . '/' . $filename; |
|
| 1020 | - $img_url = $geodir_uploadurl . '/' . $filename; |
|
| 1019 | + $img_path = $geodir_uploadpath.'/'.$filename; |
|
| 1020 | + $img_url = $geodir_uploadurl.'/'.$filename; |
|
| 1021 | 1021 | } else {
|
| 1022 | - $img_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1023 | - $img_url = $uploads['url'] . '/temp_' . $current_user->data->ID . '/' . $filename; |
|
| 1022 | + $img_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$filename; |
|
| 1023 | + $img_url = $uploads['url'].'/temp_'.$current_user->data->ID.'/'.$filename; |
|
| 1024 | 1024 | } |
| 1025 | 1025 | |
| 1026 | 1026 | $uploaded_file = ''; |
| 1027 | 1027 | |
| 1028 | 1028 | if (file_exists($img_path)) {
|
| 1029 | - $uploaded_file = copy($img_path, $geodir_uploadpath . '/' . $new_name); |
|
| 1029 | + $uploaded_file = copy($img_path, $geodir_uploadpath.'/'.$new_name); |
|
| 1030 | 1030 | $file_path = ''; |
| 1031 | - } else if (file_exists($uploads['basedir'] . $curr_img_dir . $filename)) {
|
|
| 1031 | + } else if (file_exists($uploads['basedir'].$curr_img_dir.$filename)) {
|
|
| 1032 | 1032 | $uploaded_file = true; |
| 1033 | - $file_path = $curr_img_dir . '/' . $filename; |
|
| 1033 | + $file_path = $curr_img_dir.'/'.$filename; |
|
| 1034 | 1034 | } |
| 1035 | 1035 | |
| 1036 | 1036 | if ($curr_img_dir != $geodir_uploaddir && file_exists($img_path)) |
@@ -1039,14 +1039,14 @@ discard block |
||
| 1039 | 1039 | |
| 1040 | 1040 | if (!empty($uploaded_file)) {
|
| 1041 | 1041 | if (!isset($file_path) || !$file_path) {
|
| 1042 | - $file_path = $sub_dir . '/' . $new_name; |
|
| 1042 | + $file_path = $sub_dir.'/'.$new_name; |
|
| 1043 | 1043 | } |
| 1044 | 1044 | |
| 1045 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$uploads['baseurl'] . $file_path);
|
|
| 1045 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $uploads['baseurl'].$file_path);
|
|
| 1046 | 1046 | |
| 1047 | 1047 | if ($menu_order == 1) {
|
| 1048 | 1048 | |
| 1049 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1049 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($file_path, $post_id)));
|
|
| 1050 | 1050 | |
| 1051 | 1051 | } |
| 1052 | 1052 | |
@@ -1064,12 +1064,12 @@ discard block |
||
| 1064 | 1064 | |
| 1065 | 1065 | foreach ($attachment as $key => $val) {
|
| 1066 | 1066 | if ($val != '') |
| 1067 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 1067 | + $attachment_set .= $key." = '".$val."', "; |
|
| 1068 | 1068 | } |
| 1069 | 1069 | |
| 1070 | 1070 | $attachment_set = trim($attachment_set, ", "); |
| 1071 | 1071 | |
| 1072 | - $wpdb->query("INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set);
|
|
| 1072 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
|
|
| 1073 | 1073 | |
| 1074 | 1074 | $valid_file_ids[] = $wpdb->insert_id; |
| 1075 | 1075 | } |
@@ -1080,17 +1080,17 @@ discard block |
||
| 1080 | 1080 | } else {
|
| 1081 | 1081 | $valid_file_ids[] = $find_image; |
| 1082 | 1082 | |
| 1083 | - $postcurr_images[] = str_replace(array('http://','https://'),'',$post_image[$m]);
|
|
| 1083 | + $postcurr_images[] = str_replace(array('http://', 'https://'), '', $post_image[$m]);
|
|
| 1084 | 1084 | |
| 1085 | 1085 | $wpdb->query( |
| 1086 | 1086 | $wpdb->prepare( |
| 1087 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1087 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET menu_order = %d where file =%s AND post_id =%d", |
|
| 1088 | 1088 | array($menu_order, $split_img_path[1], $post_id) |
| 1089 | 1089 | ) |
| 1090 | 1090 | ); |
| 1091 | 1091 | |
| 1092 | 1092 | if ($menu_order == 1) |
| 1093 | - $wpdb->query($wpdb->prepare("UPDATE " . $table . " SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1093 | + $wpdb->query($wpdb->prepare("UPDATE ".$table." SET featured_image = %s where post_id =%d", array($split_img_path[1], $post_id)));
|
|
| 1094 | 1094 | |
| 1095 | 1095 | } |
| 1096 | 1096 | |
@@ -1114,9 +1114,9 @@ discard block |
||
| 1114 | 1114 | |
| 1115 | 1115 | foreach ($post_images as $img) {
|
| 1116 | 1116 | |
| 1117 | - if (!in_array(str_replace(array('http://','https://'),'',$img->src), $postcurr_images)) {
|
|
| 1117 | + if (!in_array(str_replace(array('http://', 'https://'), '', $img->src), $postcurr_images)) {
|
|
| 1118 | 1118 | |
| 1119 | - $invalid_files[] = (object)array('src' => $img->src);
|
|
| 1119 | + $invalid_files[] = (object) array('src' => $img->src);
|
|
| 1120 | 1120 | |
| 1121 | 1121 | } |
| 1122 | 1122 | |
@@ -1124,12 +1124,12 @@ discard block |
||
| 1124 | 1124 | |
| 1125 | 1125 | } |
| 1126 | 1126 | |
| 1127 | - $invalid_files = (object)$invalid_files; |
|
| 1127 | + $invalid_files = (object) $invalid_files; |
|
| 1128 | 1128 | } |
| 1129 | 1129 | |
| 1130 | 1130 | $remove_files[] = $post_id; |
| 1131 | 1131 | |
| 1132 | - $wpdb->query($wpdb->prepare("DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE " . $valid_files_condition . " post_id = %d", $remove_files));
|
|
| 1132 | + $wpdb->query($wpdb->prepare("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE ".$valid_files_condition." post_id = %d", $remove_files));
|
|
| 1133 | 1133 | |
| 1134 | 1134 | if (!empty($invalid_files)) |
| 1135 | 1135 | geodir_remove_attachments($invalid_files); |
@@ -1169,7 +1169,7 @@ discard block |
||
| 1169 | 1169 | rmdir($dirPath); |
| 1170 | 1170 | } */ |
| 1171 | 1171 | |
| 1172 | - $dirname = $uploads_dir . '/temp_' . $current_user->ID; |
|
| 1172 | + $dirname = $uploads_dir.'/temp_'.$current_user->ID; |
|
| 1173 | 1173 | geodir_delete_directory($dirname); |
| 1174 | 1174 | } |
| 1175 | 1175 | |
@@ -1191,10 +1191,10 @@ discard block |
||
| 1191 | 1191 | return false; |
| 1192 | 1192 | while ($file = readdir($dir_handle)) {
|
| 1193 | 1193 | if ($file != "." && $file != "..") {
|
| 1194 | - if (!is_dir($dirname . "/" . $file)) |
|
| 1195 | - unlink($dirname . "/" . $file); |
|
| 1194 | + if (!is_dir($dirname."/".$file)) |
|
| 1195 | + unlink($dirname."/".$file); |
|
| 1196 | 1196 | else |
| 1197 | - geodir_delete_directory($dirname . '/' . $file); |
|
| 1197 | + geodir_delete_directory($dirname.'/'.$file); |
|
| 1198 | 1198 | } |
| 1199 | 1199 | } |
| 1200 | 1200 | closedir($dir_handle); |
@@ -1223,8 +1223,8 @@ discard block |
||
| 1223 | 1223 | foreach ($postcurr_images as $postimg) {
|
| 1224 | 1224 | $image_name_arr = explode('/', $postimg->src);
|
| 1225 | 1225 | $filename = end($image_name_arr); |
| 1226 | - if (file_exists($uploads_dir . '/' . $filename)) |
|
| 1227 | - unlink($uploads_dir . '/' . $filename); |
|
| 1226 | + if (file_exists($uploads_dir.'/'.$filename)) |
|
| 1227 | + unlink($uploads_dir.'/'.$filename); |
|
| 1228 | 1228 | } |
| 1229 | 1229 | |
| 1230 | 1230 | } // endif |
@@ -1265,16 +1265,16 @@ discard block |
||
| 1265 | 1265 | } |
| 1266 | 1266 | |
| 1267 | 1267 | if (!in_array($post_type, geodir_get_posttypes())) {
|
| 1268 | - return false;// if not a GD CPT return; |
|
| 1268 | + return false; // if not a GD CPT return; |
|
| 1269 | 1269 | } |
| 1270 | 1270 | |
| 1271 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1271 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 1272 | 1272 | |
| 1273 | 1273 | if (!$file) {
|
| 1274 | 1274 | if (isset($post->featured_image)) {
|
| 1275 | 1275 | $file = $post->featured_image; |
| 1276 | 1276 | } else {
|
| 1277 | - $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM " . $table . " WHERE post_id = %d", array($post_id)));
|
|
| 1277 | + $file = $wpdb->get_var($wpdb->prepare("SELECT featured_image FROM ".$table." WHERE post_id = %d", array($post_id)));
|
|
| 1278 | 1278 | } |
| 1279 | 1279 | } |
| 1280 | 1280 | |
@@ -1292,7 +1292,7 @@ discard block |
||
| 1292 | 1292 | |
| 1293 | 1293 | $file_name = $file_info['basename']; |
| 1294 | 1294 | |
| 1295 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1295 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
| 1296 | 1296 | /* |
| 1297 | 1297 | * Allows the filter of image src for such things as CDN change. |
| 1298 | 1298 | * |
@@ -1302,8 +1302,8 @@ discard block |
||
| 1302 | 1302 | * @param string $uploads_url The server upload directory url. |
| 1303 | 1303 | * @param string $uploads_baseurl The uploads dir base url. |
| 1304 | 1304 | */ |
| 1305 | - $img_arr['src'] = apply_filters('geodir_get_featured_image_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1306 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1305 | + $img_arr['src'] = apply_filters('geodir_get_featured_image_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1306 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1307 | 1307 | $width = 0; |
| 1308 | 1308 | $height = 0; |
| 1309 | 1309 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
@@ -1346,7 +1346,7 @@ discard block |
||
| 1346 | 1346 | $file_name = $file_info['basename']; |
| 1347 | 1347 | |
| 1348 | 1348 | $img_arr['src'] = $default_img; |
| 1349 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1349 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1350 | 1350 | |
| 1351 | 1351 | $width = 0; |
| 1352 | 1352 | $height = 0; |
@@ -1363,7 +1363,7 @@ discard block |
||
| 1363 | 1363 | } |
| 1364 | 1364 | |
| 1365 | 1365 | if (!empty($img_arr)) |
| 1366 | - return (object)$img_arr;//return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1366 | + return (object) $img_arr; //return (object)array( 'src' => $file_url, 'path' => $file_path ); |
|
| 1367 | 1367 | else |
| 1368 | 1368 | return false; |
| 1369 | 1369 | } |
@@ -1426,7 +1426,7 @@ discard block |
||
| 1426 | 1426 | |
| 1427 | 1427 | $arrImages = $wpdb->get_results( |
| 1428 | 1428 | $wpdb->prepare( |
| 1429 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d" . $not_featured . " ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1429 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d".$not_featured." ORDER BY menu_order ASC, ID DESC $limit_q ", |
|
| 1430 | 1430 | array('%image%', $post_id)
|
| 1431 | 1431 | ) |
| 1432 | 1432 | ); |
@@ -1452,7 +1452,7 @@ discard block |
||
| 1452 | 1452 | |
| 1453 | 1453 | $file_name = $file_info['basename']; |
| 1454 | 1454 | |
| 1455 | - $uploads_url = $uploads_baseurl . $sub_dir; |
|
| 1455 | + $uploads_url = $uploads_baseurl.$sub_dir; |
|
| 1456 | 1456 | /* |
| 1457 | 1457 | * Allows the filter of image src for such things as CDN change. |
| 1458 | 1458 | * |
@@ -1462,8 +1462,8 @@ discard block |
||
| 1462 | 1462 | * @param string $uploads_url The server upload directory url. |
| 1463 | 1463 | * @param string $uploads_baseurl The uploads dir base url. |
| 1464 | 1464 | */ |
| 1465 | - $img_arr['src'] = apply_filters('geodir_get_images_src',$uploads_url . '/' . $file_name,$file_name,$uploads_url,$uploads_baseurl);
|
|
| 1466 | - $img_arr['path'] = $uploads_path . '/' . $file_name; |
|
| 1465 | + $img_arr['src'] = apply_filters('geodir_get_images_src', $uploads_url.'/'.$file_name, $file_name, $uploads_url, $uploads_baseurl);
|
|
| 1466 | + $img_arr['path'] = $uploads_path.'/'.$file_name; |
|
| 1467 | 1467 | $width = 0; |
| 1468 | 1468 | $height = 0; |
| 1469 | 1469 | if (is_file($img_arr['path']) && file_exists($img_arr['path'])) {
|
@@ -1480,11 +1480,11 @@ discard block |
||
| 1480 | 1480 | $img_arr['content'] = $attechment->content; // add the description to the array |
| 1481 | 1481 | $img_arr['is_approved'] = isset($attechment->is_approved) ? $attechment->is_approved : ''; // used for user image moderation. For backward compatibility Default value is 1. |
| 1482 | 1482 | |
| 1483 | - $return_arr[] = (object)$img_arr; |
|
| 1483 | + $return_arr[] = (object) $img_arr; |
|
| 1484 | 1484 | |
| 1485 | 1485 | $counter++; |
| 1486 | 1486 | } |
| 1487 | - return (object)$return_arr; |
|
| 1487 | + return (object) $return_arr; |
|
| 1488 | 1488 | } else if ($no_images) {
|
| 1489 | 1489 | $default_img = ''; |
| 1490 | 1490 | $default_cat = geodir_get_post_meta($post_id, 'default_category', true); |
@@ -1523,7 +1523,7 @@ discard block |
||
| 1523 | 1523 | $img_arr['title'] = $file_info['filename']; // add the title to the array |
| 1524 | 1524 | $img_arr['content'] = $file_info['filename']; // add the description to the array |
| 1525 | 1525 | |
| 1526 | - $return_arr[] = (object)$img_arr; |
|
| 1526 | + $return_arr[] = (object) $img_arr; |
|
| 1527 | 1527 | |
| 1528 | 1528 | return $return_arr; |
| 1529 | 1529 | } else |
@@ -1550,8 +1550,8 @@ discard block |
||
| 1550 | 1550 | |
| 1551 | 1551 | $html = ''; |
| 1552 | 1552 | if (!empty($request)) {
|
| 1553 | - if (!is_object($request)){
|
|
| 1554 | - $request = (object)$request; |
|
| 1553 | + if (!is_object($request)) {
|
|
| 1554 | + $request = (object) $request; |
|
| 1555 | 1555 | } |
| 1556 | 1556 | |
| 1557 | 1557 | if (isset($request->src) && !isset($request->path)) {
|
@@ -1565,7 +1565,7 @@ discard block |
||
| 1565 | 1565 | $img_no_http = str_replace(array("http://", "https://"), "", $request->path);
|
| 1566 | 1566 | $upload_no_http = str_replace(array("http://", "https://"), "", $upload_dir['baseurl']);
|
| 1567 | 1567 | if (strpos($img_no_http, $upload_no_http) !== false) {
|
| 1568 | - $request->path = str_replace( $img_no_http,$upload_dir['basedir'], $request->path); |
|
| 1568 | + $request->path = str_replace($img_no_http, $upload_dir['basedir'], $request->path); |
|
| 1569 | 1569 | } |
| 1570 | 1570 | |
| 1571 | 1571 | $width = 0; |
@@ -1580,7 +1580,7 @@ discard block |
||
| 1580 | 1580 | $image->width = $width; |
| 1581 | 1581 | $image->height = $height; |
| 1582 | 1582 | |
| 1583 | - $max_size = (object)geodir_get_imagesize($size); |
|
| 1583 | + $max_size = (object) geodir_get_imagesize($size); |
|
| 1584 | 1584 | |
| 1585 | 1585 | if (!is_wp_error($max_size)) {
|
| 1586 | 1586 | if ($image->width) {
|
@@ -1592,15 +1592,15 @@ discard block |
||
| 1592 | 1592 | $width_per = 100; |
| 1593 | 1593 | } |
| 1594 | 1594 | |
| 1595 | - if (is_admin() && !isset($_REQUEST['geodir_ajax'])){
|
|
| 1596 | - $html = '<div class="geodir_thumbnail"><img style="max-height:' . $max_size->h . 'px;" alt="place image" src="' . $image->src . '" /></div>'; |
|
| 1595 | + if (is_admin() && !isset($_REQUEST['geodir_ajax'])) {
|
|
| 1596 | + $html = '<div class="geodir_thumbnail"><img style="max-height:'.$max_size->h.'px;" alt="place image" src="'.$image->src.'" /></div>'; |
|
| 1597 | 1597 | } else {
|
| 1598 | - if($size=='widget-thumb' || !get_option('geodir_lazy_load',1)){
|
|
| 1599 | - $html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
|
| 1600 | - }else{
|
|
| 1598 | + if ($size == 'widget-thumb' || !get_option('geodir_lazy_load', 1)) {
|
|
| 1599 | + $html = '<div class="geodir_thumbnail" style="background-image:url(\''.$image->src.'\');"></div>'; |
|
| 1600 | + } else {
|
|
| 1601 | 1601 | //$html = '<div class="geodir_thumbnail" style="background-image:url(\'' . $image->src . '\');"></div>'; |
| 1602 | 1602 | //$html = '<div data-src="'.$image->src.'" class="geodir_thumbnail" ></div>'; |
| 1603 | - $html = '<div data-src="'.str_replace(' ','%20',$image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1603 | + $html = '<div data-src="'.str_replace(' ', '%20', $image->src).'" class="geodir_thumbnail geodir_lazy_load_thumbnail" ></div>';
|
|
| 1604 | 1604 | |
| 1605 | 1605 | } |
| 1606 | 1606 | |
@@ -1636,15 +1636,15 @@ discard block |
||
| 1636 | 1636 | |
| 1637 | 1637 | $post_type = get_post_type($post_id); |
| 1638 | 1638 | |
| 1639 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 1639 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 1640 | 1640 | |
| 1641 | 1641 | if (in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_id)) {
|
| 1642 | 1642 | |
| 1643 | - if ($taxonomy == $post_type . '_tags') {
|
|
| 1643 | + if ($taxonomy == $post_type.'_tags') {
|
|
| 1644 | 1644 | if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
| 1645 | 1645 | geodir_save_post_meta($post_id, 'post_tags', $terms); |
| 1646 | 1646 | } |
| 1647 | - } elseif ($taxonomy == $post_type . 'category') {
|
|
| 1647 | + } elseif ($taxonomy == $post_type.'category') {
|
|
| 1648 | 1648 | $srcharr = array('"', '\\');
|
| 1649 | 1649 | $replarr = array(""", '');
|
| 1650 | 1650 | |
@@ -1666,7 +1666,7 @@ discard block |
||
| 1666 | 1666 | |
| 1667 | 1667 | $wpdb->get_var( |
| 1668 | 1668 | $wpdb->prepare( |
| 1669 | - "DELETE from " . GEODIR_ICON_TABLE . " WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1669 | + "DELETE from ".GEODIR_ICON_TABLE." WHERE cat_id NOT IN ($format) AND post_id = %d ", |
|
| 1670 | 1670 | $cat_ids_array_del |
| 1671 | 1671 | ) |
| 1672 | 1672 | ); |
@@ -1674,7 +1674,7 @@ discard block |
||
| 1674 | 1674 | |
| 1675 | 1675 | $post_term = $wpdb->get_col( |
| 1676 | 1676 | $wpdb->prepare( |
| 1677 | - "SELECT term_id FROM " . $wpdb->term_taxonomy . " WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1677 | + "SELECT term_id FROM ".$wpdb->term_taxonomy." WHERE term_taxonomy_id IN($format) GROUP BY term_id", |
|
| 1678 | 1678 | $cat_ids_array |
| 1679 | 1679 | ) |
| 1680 | 1680 | ); |
@@ -1696,16 +1696,16 @@ discard block |
||
| 1696 | 1696 | $lat = geodir_get_post_meta($post_id, 'post_latitude', true); |
| 1697 | 1697 | $lng = geodir_get_post_meta($post_id, 'post_longitude', true); |
| 1698 | 1698 | |
| 1699 | - $timing = ' - ' . date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1700 | - $timing .= ' - ' . geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1699 | + $timing = ' - '.date('D M j, Y', strtotime(geodir_get_post_meta($post_id, 'st_date', true)));
|
|
| 1700 | + $timing .= ' - '.geodir_get_post_meta($post_id, 'st_time', true); |
|
| 1701 | 1701 | |
| 1702 | 1702 | $json = '{';
|
| 1703 | - $json .= '"id":"' . $post_id . '",'; |
|
| 1704 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 1705 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 1706 | - $json .= '"marker_id":"' . $post_id . '_' . $cat_id . '",'; |
|
| 1707 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 1708 | - $json .= '"group":"catgroup' . $cat_id . '"'; |
|
| 1703 | + $json .= '"id":"'.$post_id.'",'; |
|
| 1704 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
| 1705 | + $json .= '"long_pos": "'.$lng.'",'; |
|
| 1706 | + $json .= '"marker_id":"'.$post_id.'_'.$cat_id.'",'; |
|
| 1707 | + $json .= '"icon":"'.$term_icon.'",'; |
|
| 1708 | + $json .= '"group":"catgroup'.$cat_id.'"'; |
|
| 1709 | 1709 | $json .= '}'; |
| 1710 | 1710 | |
| 1711 | 1711 | |
@@ -1713,9 +1713,9 @@ discard block |
||
| 1713 | 1713 | $post_marker_json = $json; |
| 1714 | 1714 | |
| 1715 | 1715 | |
| 1716 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . GEODIR_ICON_TABLE . " WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1716 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".GEODIR_ICON_TABLE." WHERE post_id = %d AND cat_id = %d", array($post_id, $cat_id)))) {
|
|
| 1717 | 1717 | |
| 1718 | - $json_query = $wpdb->prepare("UPDATE " . GEODIR_ICON_TABLE . " SET
|
|
| 1718 | + $json_query = $wpdb->prepare("UPDATE ".GEODIR_ICON_TABLE." SET
|
|
| 1719 | 1719 | post_title = %s, |
| 1720 | 1720 | json = %s |
| 1721 | 1721 | WHERE post_id = %d AND cat_id = %d ", |
@@ -1723,7 +1723,7 @@ discard block |
||
| 1723 | 1723 | |
| 1724 | 1724 | } else {
|
| 1725 | 1725 | |
| 1726 | - $json_query = $wpdb->prepare("INSERT INTO " . GEODIR_ICON_TABLE . " SET
|
|
| 1726 | + $json_query = $wpdb->prepare("INSERT INTO ".GEODIR_ICON_TABLE." SET
|
|
| 1727 | 1727 | post_id = %d, |
| 1728 | 1728 | post_title = %s, |
| 1729 | 1729 | cat_id = %d, |
@@ -1741,17 +1741,17 @@ discard block |
||
| 1741 | 1741 | if (!empty($post_term) && is_array($post_term)) {
|
| 1742 | 1742 | $categories = implode(',', $post_term);
|
| 1743 | 1743 | |
| 1744 | - if ($categories != '' && $categories != 0) $categories = ',' . $categories . ','; |
|
| 1744 | + if ($categories != '' && $categories != 0) $categories = ','.$categories.','; |
|
| 1745 | 1745 | |
| 1746 | 1746 | if (empty($post_marker_json)) |
| 1747 | 1747 | $post_marker_json = isset($json) ? $json : ''; |
| 1748 | 1748 | |
| 1749 | - if ($wpdb->get_var($wpdb->prepare("SELECT post_id from " . $table . " where post_id = %d", array($post_id)))) {
|
|
| 1749 | + if ($wpdb->get_var($wpdb->prepare("SELECT post_id from ".$table." where post_id = %d", array($post_id)))) {
|
|
| 1750 | 1750 | |
| 1751 | 1751 | $wpdb->query( |
| 1752 | 1752 | $wpdb->prepare( |
| 1753 | - "UPDATE " . $table . " SET |
|
| 1754 | - " . $taxonomy . " = %s, |
|
| 1753 | + "UPDATE ".$table." SET |
|
| 1754 | + " . $taxonomy." = %s, |
|
| 1755 | 1755 | marker_json = %s |
| 1756 | 1756 | where post_id = %d", |
| 1757 | 1757 | array($categories, $post_marker_json, $post_id) |
@@ -1772,7 +1772,7 @@ discard block |
||
| 1772 | 1772 | |
| 1773 | 1773 | $wpdb->query( |
| 1774 | 1774 | $wpdb->prepare( |
| 1775 | - "UPDATE " . $table . " SET |
|
| 1775 | + "UPDATE ".$table." SET |
|
| 1776 | 1776 | default_category = %s |
| 1777 | 1777 | where post_id = %d", |
| 1778 | 1778 | array($categories[0], $post_id) |
@@ -1797,9 +1797,9 @@ discard block |
||
| 1797 | 1797 | |
| 1798 | 1798 | $wpdb->query( |
| 1799 | 1799 | $wpdb->prepare( |
| 1800 | - "INSERT INTO " . $table . " SET |
|
| 1800 | + "INSERT INTO ".$table." SET |
|
| 1801 | 1801 | post_id = %d, |
| 1802 | - " . $taxonomy . " = %s, |
|
| 1802 | + " . $taxonomy." = %s, |
|
| 1803 | 1803 | marker_json = %s ", |
| 1804 | 1804 | |
| 1805 | 1805 | array($post_id, $categories, $post_marker_json) |
@@ -1928,7 +1928,7 @@ discard block |
||
| 1928 | 1928 | } ?>"><img alt="bubble image" style="max-height:50px;" |
| 1929 | 1929 | src="<?php echo $post_images[0]; ?>"/></a></div> |
| 1930 | 1930 | <?php |
| 1931 | - }else{
|
|
| 1931 | + } else {
|
|
| 1932 | 1932 | echo '<div class="geodir-bubble_image"></div>'; |
| 1933 | 1933 | } |
| 1934 | 1934 | } else {
|
@@ -1936,7 +1936,7 @@ discard block |
||
| 1936 | 1936 | ?> |
| 1937 | 1937 | <div class="geodir-bubble_image"><a href="<?php echo $plink; ?>"><?php echo $image; ?></a></div> |
| 1938 | 1938 | <?php |
| 1939 | - }else{
|
|
| 1939 | + } else {
|
|
| 1940 | 1940 | echo '<div class="geodir-bubble_image"></div>'; |
| 1941 | 1941 | } |
| 1942 | 1942 | } |
@@ -1981,7 +1981,7 @@ discard block |
||
| 1981 | 1981 | * @param object $postinfo_obj The posts info as an object. |
| 1982 | 1982 | * @param bool|string $post_preview True if currently in post preview page. Empty string if not. * |
| 1983 | 1983 | */ |
| 1984 | - do_action('geodir_infowindow_meta_after',$postinfo_obj,$post_preview );
|
|
| 1984 | + do_action('geodir_infowindow_meta_after', $postinfo_obj, $post_preview);
|
|
| 1985 | 1985 | ?> |
| 1986 | 1986 | </div> |
| 1987 | 1987 | <?php |
@@ -1993,10 +1993,10 @@ discard block |
||
| 1993 | 1993 | <div class="geodir-bubble-meta-fade"></div> |
| 1994 | 1994 | |
| 1995 | 1995 | <div class="geodir-bubble-meta-bottom"> |
| 1996 | - <span class="geodir-bubble-rating"><?php echo $rating_star;?></span> |
|
| 1996 | + <span class="geodir-bubble-rating"><?php echo $rating_star; ?></span> |
|
| 1997 | 1997 | |
| 1998 | 1998 | <span |
| 1999 | - class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID);?></span> |
|
| 1999 | + class="geodir-bubble-fav"><?php echo geodir_favourite_html($post_author, $ID); ?></span> |
|
| 2000 | 2000 | <span class="geodir-bubble-reviews"><a href="<?php echo get_comments_link($ID); ?>" |
| 2001 | 2001 | class="geodir-pcomments"><i class="fa fa-comments"></i> |
| 2002 | 2002 | <?php echo get_comments_number($ID); ?> |
@@ -2061,11 +2061,11 @@ discard block |
||
| 2061 | 2061 | |
| 2062 | 2062 | $post_type = get_post_type($post_id); |
| 2063 | 2063 | |
| 2064 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2064 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2065 | 2065 | |
| 2066 | 2066 | $wpdb->query( |
| 2067 | 2067 | $wpdb->prepare( |
| 2068 | - "UPDATE " . $table . " SET post_status=%s WHERE post_id=%d", |
|
| 2068 | + "UPDATE ".$table." SET post_status=%s WHERE post_id=%d", |
|
| 2069 | 2069 | array($status, $post_id) |
| 2070 | 2070 | ) |
| 2071 | 2071 | ); |
@@ -2137,18 +2137,18 @@ discard block |
||
| 2137 | 2137 | |
| 2138 | 2138 | $post_type = get_post_type($post_id); |
| 2139 | 2139 | |
| 2140 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2140 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2141 | 2141 | |
| 2142 | 2142 | $wpdb->query( |
| 2143 | 2143 | $wpdb->prepare( |
| 2144 | - "UPDATE " . $table . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2144 | + "UPDATE ".$table." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2145 | 2145 | array($updatingpost, $temppost) |
| 2146 | 2146 | ) |
| 2147 | 2147 | ); |
| 2148 | 2148 | |
| 2149 | 2149 | $wpdb->query( |
| 2150 | 2150 | $wpdb->prepare( |
| 2151 | - "UPDATE " . GEODIR_ICON_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2151 | + "UPDATE ".GEODIR_ICON_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2152 | 2152 | array($updatingpost, $temppost) |
| 2153 | 2153 | ) |
| 2154 | 2154 | ); |
@@ -2157,7 +2157,7 @@ discard block |
||
| 2157 | 2157 | |
| 2158 | 2158 | $wpdb->query( |
| 2159 | 2159 | $wpdb->prepare( |
| 2160 | - "UPDATE " . GEODIR_ATTACHMENT_TABLE . " SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2160 | + "UPDATE ".GEODIR_ATTACHMENT_TABLE." SET `post_id` = %d WHERE `post_id` = %d", |
|
| 2161 | 2161 | array($updatingpost, $temppost) |
| 2162 | 2162 | ) |
| 2163 | 2163 | ); |
@@ -2195,12 +2195,12 @@ discard block |
||
| 2195 | 2195 | if (!in_array($post_type, $all_postypes)) |
| 2196 | 2196 | return false; |
| 2197 | 2197 | |
| 2198 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2198 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2199 | 2199 | |
| 2200 | 2200 | /* Delete custom post meta*/ |
| 2201 | 2201 | $wpdb->query( |
| 2202 | 2202 | $wpdb->prepare( |
| 2203 | - "DELETE FROM " . $table . " WHERE `post_id` = %d", |
|
| 2203 | + "DELETE FROM ".$table." WHERE `post_id` = %d", |
|
| 2204 | 2204 | array($deleted_postid) |
| 2205 | 2205 | ) |
| 2206 | 2206 | ); |
@@ -2209,7 +2209,7 @@ discard block |
||
| 2209 | 2209 | |
| 2210 | 2210 | $wpdb->query( |
| 2211 | 2211 | $wpdb->prepare( |
| 2212 | - "DELETE FROM " . GEODIR_ICON_TABLE . " WHERE `post_id` = %d", |
|
| 2212 | + "DELETE FROM ".GEODIR_ICON_TABLE." WHERE `post_id` = %d", |
|
| 2213 | 2213 | array($deleted_postid) |
| 2214 | 2214 | ) |
| 2215 | 2215 | ); |
@@ -2219,7 +2219,7 @@ discard block |
||
| 2219 | 2219 | |
| 2220 | 2220 | $wpdb->query( |
| 2221 | 2221 | $wpdb->prepare( |
| 2222 | - "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE `post_id` = %d", |
|
| 2222 | + "DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE `post_id` = %d", |
|
| 2223 | 2223 | array($deleted_postid) |
| 2224 | 2224 | ) |
| 2225 | 2225 | ); |
@@ -2291,7 +2291,7 @@ discard block |
||
| 2291 | 2291 | */ |
| 2292 | 2292 | do_action('geodir_before_add_from_favorite', $post_id);
|
| 2293 | 2293 | |
| 2294 | - echo '<a href="javascript:void(0);" title="' . $remove_favourite_text . '" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'remove\');"><i class="'. $favourite_icon .'"></i> ' . $unfavourite_text . '</a>'; |
|
| 2294 | + echo '<a href="javascript:void(0);" title="'.$remove_favourite_text.'" class="geodir-addtofav geodir-removetofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'remove\');"><i class="'.$favourite_icon.'"></i> '.$unfavourite_text.'</a>'; |
|
| 2295 | 2295 | |
| 2296 | 2296 | /** |
| 2297 | 2297 | * Called after adding the post from favourites. |
@@ -2370,7 +2370,7 @@ discard block |
||
| 2370 | 2370 | */ |
| 2371 | 2371 | do_action('geodir_before_remove_from_favorite', $post_id);
|
| 2372 | 2372 | |
| 2373 | - echo '<a href="javascript:void(0);" title="' . $add_favourite_text . '" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\'' . $post_id . '\',\'add\');"><i class="'. $favourite_icon .'"></i> ' . $favourite_text . '</a>'; |
|
| 2373 | + echo '<a href="javascript:void(0);" title="'.$add_favourite_text.'" class="geodir-addtofav geodir-addtofav-icon" onclick="javascript:addToFavourite(\''.$post_id.'\',\'add\');"><i class="'.$favourite_icon.'"></i> '.$favourite_text.'</a>'; |
|
| 2374 | 2374 | |
| 2375 | 2375 | /** |
| 2376 | 2376 | * Called after removing the post from favourites. |
@@ -2465,24 +2465,24 @@ discard block |
||
| 2465 | 2465 | $user_meta_data = get_user_meta($current_user->data->ID, 'gd_user_favourite_post', true); |
| 2466 | 2466 | |
| 2467 | 2467 | if (!empty($user_meta_data) && in_array($post_id, $user_meta_data)) {
|
| 2468 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>" ><a |
|
| 2468 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>" ><a |
|
| 2469 | 2469 | class="geodir-removetofav-icon" href="javascript:void(0);" |
| 2470 | - onclick="javascript:addToFavourite(<?php echo $post_id;?>,'remove');" |
|
| 2471 | - title="<?php echo $remove_favourite_text;?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text;?> |
|
| 2470 | + onclick="javascript:addToFavourite(<?php echo $post_id; ?>,'remove');" |
|
| 2471 | + title="<?php echo $remove_favourite_text; ?>"><i class="<?php echo $unfavourite_icon; ?>"></i> <?php echo $unfavourite_text; ?> |
|
| 2472 | 2472 | </a> </span><?php |
| 2473 | 2473 | |
| 2474 | 2474 | } else {
|
| 2475 | 2475 | |
| 2476 | 2476 | if (!isset($current_user->data->ID) || $current_user->data->ID == '') {
|
| 2477 | - $script_text = 'javascript:window.location.href=\'' . geodir_login_url() . '\''; |
|
| 2477 | + $script_text = 'javascript:window.location.href=\''.geodir_login_url().'\''; |
|
| 2478 | 2478 | } else |
| 2479 | - $script_text = 'javascript:addToFavourite(' . $post_id . ',\'add\')';
|
|
| 2479 | + $script_text = 'javascript:addToFavourite('.$post_id.',\'add\')';
|
|
| 2480 | 2480 | |
| 2481 | - ?><span class="geodir-addtofav favorite_property_<?php echo $post_id;?>"><a class="geodir-addtofav-icon" |
|
| 2481 | + ?><span class="geodir-addtofav favorite_property_<?php echo $post_id; ?>"><a class="geodir-addtofav-icon" |
|
| 2482 | 2482 | href="javascript:void(0);" |
| 2483 | - onclick="<?php echo $script_text;?>" |
|
| 2484 | - title="<?php echo $add_favourite_text;?>"><i |
|
| 2485 | - class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text;?></a></span> |
|
| 2483 | + onclick="<?php echo $script_text; ?>" |
|
| 2484 | + title="<?php echo $add_favourite_text; ?>"><i |
|
| 2485 | + class="<?php echo $favourite_icon; ?>"></i> <?php echo $favourite_text; ?></a></span> |
|
| 2486 | 2486 | <?php } |
| 2487 | 2487 | } |
| 2488 | 2488 | } |
@@ -2512,7 +2512,7 @@ discard block |
||
| 2512 | 2512 | |
| 2513 | 2513 | $post_type = $taxonomy_obj->object_type[0]; |
| 2514 | 2514 | |
| 2515 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2515 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2516 | 2516 | |
| 2517 | 2517 | /** |
| 2518 | 2518 | * Filter to modify the 'join' query |
@@ -2535,8 +2535,8 @@ discard block |
||
| 2535 | 2535 | $where = apply_filters('geodir_cat_post_count_where', $where, $term);
|
| 2536 | 2536 | |
| 2537 | 2537 | $count_query = "SELECT count(post_id) FROM |
| 2538 | - " . $table . " as pd " . $join . " |
|
| 2539 | - WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id . "'," . $term->taxonomy . ") " . $where;
|
|
| 2538 | + " . $table." as pd ".$join." |
|
| 2539 | + WHERE pd.post_status='publish' AND FIND_IN_SET('" . $term->term_id."',".$term->taxonomy.") ".$where;
|
|
| 2540 | 2540 | |
| 2541 | 2541 | $cat_post_count = $wpdb->get_var($count_query); |
| 2542 | 2542 | if (empty($cat_post_count) || is_wp_error($cat_post_count)) |
@@ -2619,7 +2619,7 @@ discard block |
||
| 2619 | 2619 | global $post; |
| 2620 | 2620 | $all_postypes = geodir_get_posttypes(); |
| 2621 | 2621 | if (is_array($all_postypes) && in_array($post->post_type, $all_postypes)) {
|
| 2622 | - return ' <a href="' . get_permalink($post->ID) . '">' . READ_MORE_TXT . '</a>'; |
|
| 2622 | + return ' <a href="'.get_permalink($post->ID).'">'.READ_MORE_TXT.'</a>'; |
|
| 2623 | 2623 | } |
| 2624 | 2624 | |
| 2625 | 2625 | return $more; |
@@ -2646,14 +2646,14 @@ discard block |
||
| 2646 | 2646 | if (is_array($gd_taxonomies) && in_array($taxonomy, $gd_taxonomies)) {
|
| 2647 | 2647 | |
| 2648 | 2648 | $geodir_post_type = geodir_get_taxonomy_posttype($taxonomy); |
| 2649 | - $table = $plugin_prefix . $geodir_post_type . '_detail'; |
|
| 2649 | + $table = $plugin_prefix.$geodir_post_type.'_detail'; |
|
| 2650 | 2650 | |
| 2651 | 2651 | $path_parts = pathinfo($_REQUEST['ct_cat_icon']['src']); |
| 2652 | - $term_icon = $path_parts['dirname'] . '/cat_icon_' . $term_id . '.png'; |
|
| 2652 | + $term_icon = $path_parts['dirname'].'/cat_icon_'.$term_id.'.png'; |
|
| 2653 | 2653 | |
| 2654 | 2654 | $posts = $wpdb->get_results( |
| 2655 | 2655 | $wpdb->prepare( |
| 2656 | - "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM " . $table . " WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2656 | + "SELECT post_id,post_title,post_latitude,post_longitude,default_category FROM ".$table." WHERE FIND_IN_SET(%s,%1\$s ) ", |
|
| 2657 | 2657 | array($term_id, $taxonomy) |
| 2658 | 2658 | ) |
| 2659 | 2659 | ); |
@@ -2665,19 +2665,19 @@ discard block |
||
| 2665 | 2665 | $lng = $post_obj->post_longitude; |
| 2666 | 2666 | |
| 2667 | 2667 | $json = '{';
|
| 2668 | - $json .= '"id":"' . $post_obj->post_id . '",'; |
|
| 2669 | - $json .= '"lat_pos": "' . $lat . '",'; |
|
| 2670 | - $json .= '"long_pos": "' . $lng . '",'; |
|
| 2671 | - $json .= '"marker_id":"' . $post_obj->post_id . '_' . $term_id . '",'; |
|
| 2672 | - $json .= '"icon":"' . $term_icon . '",'; |
|
| 2673 | - $json .= '"group":"catgroup' . $term_id . '"'; |
|
| 2668 | + $json .= '"id":"'.$post_obj->post_id.'",'; |
|
| 2669 | + $json .= '"lat_pos": "'.$lat.'",'; |
|
| 2670 | + $json .= '"long_pos": "'.$lng.'",'; |
|
| 2671 | + $json .= '"marker_id":"'.$post_obj->post_id.'_'.$term_id.'",'; |
|
| 2672 | + $json .= '"icon":"'.$term_icon.'",'; |
|
| 2673 | + $json .= '"group":"catgroup'.$term_id.'"'; |
|
| 2674 | 2674 | $json .= '}'; |
| 2675 | 2675 | |
| 2676 | 2676 | if ($post_obj->default_category == $term_id) {
|
| 2677 | 2677 | |
| 2678 | 2678 | $wpdb->query( |
| 2679 | 2679 | $wpdb->prepare( |
| 2680 | - "UPDATE " . $table . " SET marker_json = %s where post_id = %d", |
|
| 2680 | + "UPDATE ".$table." SET marker_json = %s where post_id = %d", |
|
| 2681 | 2681 | array($json, $post_obj->post_id) |
| 2682 | 2682 | ) |
| 2683 | 2683 | ); |
@@ -2685,7 +2685,7 @@ discard block |
||
| 2685 | 2685 | |
| 2686 | 2686 | $wpdb->query( |
| 2687 | 2687 | $wpdb->prepare( |
| 2688 | - "UPDATE " . GEODIR_ICON_TABLE . " SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2688 | + "UPDATE ".GEODIR_ICON_TABLE." SET json = %s WHERE post_id = %d AND cat_id = %d", |
|
| 2689 | 2689 | array($json, $post_obj->post_id, $term_id) |
| 2690 | 2690 | ) |
| 2691 | 2691 | ); |
@@ -2809,7 +2809,7 @@ discard block |
||
| 2809 | 2809 | // print_r($uploads ) ; |
| 2810 | 2810 | $post_first_image = $wpdb->get_results( |
| 2811 | 2811 | $wpdb->prepare( |
| 2812 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2812 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = %d and menu_order = 1 ", array($post_id) |
|
| 2813 | 2813 | ) |
| 2814 | 2814 | ); |
| 2815 | 2815 | |
@@ -2830,9 +2830,9 @@ discard block |
||
| 2830 | 2830 | |
| 2831 | 2831 | $post_type = get_post_type($post_id); |
| 2832 | 2832 | |
| 2833 | - $table_name = $plugin_prefix . $post_type . '_detail'; |
|
| 2833 | + $table_name = $plugin_prefix.$post_type.'_detail'; |
|
| 2834 | 2834 | |
| 2835 | - $wpdb->query("UPDATE " . $table_name . " SET featured_image='" . $post_first_image[0]->file . "' WHERE post_id =" . $post_id);
|
|
| 2835 | + $wpdb->query("UPDATE ".$table_name." SET featured_image='".$post_first_image[0]->file."' WHERE post_id =".$post_id);
|
|
| 2836 | 2836 | |
| 2837 | 2837 | $new_attachment_name = basename($post_first_image[0]->file); |
| 2838 | 2838 | |
@@ -2845,11 +2845,11 @@ discard block |
||
| 2845 | 2845 | wp_delete_attachment($post_thumbnail_id); |
| 2846 | 2846 | |
| 2847 | 2847 | } |
| 2848 | - $filename = $uploads['basedir'] . $post_first_image[0]->file; |
|
| 2848 | + $filename = $uploads['basedir'].$post_first_image[0]->file; |
|
| 2849 | 2849 | |
| 2850 | 2850 | $attachment = array( |
| 2851 | 2851 | 'post_mime_type' => $post_first_image[0]->mime_type, |
| 2852 | - 'guid' => $uploads['baseurl'] . $post_first_image[0]->file, |
|
| 2852 | + 'guid' => $uploads['baseurl'].$post_first_image[0]->file, |
|
| 2853 | 2853 | 'post_parent' => $post_id, |
| 2854 | 2854 | 'post_title' => preg_replace('/\.[^.]+$/', '', $post_first_image[0]->title),
|
| 2855 | 2855 | 'post_content' => '' |
@@ -2862,7 +2862,7 @@ discard block |
||
| 2862 | 2862 | |
| 2863 | 2863 | set_post_thumbnail($post_id, $id); |
| 2864 | 2864 | |
| 2865 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 2865 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 2866 | 2866 | wp_update_attachment_metadata($id, wp_generate_attachment_metadata($id, $filename)); |
| 2867 | 2867 | |
| 2868 | 2868 | } |
@@ -2895,35 +2895,35 @@ discard block |
||
| 2895 | 2895 | $post_id = absint($_POST['post_id']); |
| 2896 | 2896 | $upload_dir = wp_upload_dir(); |
| 2897 | 2897 | $post_type = get_post_type($_POST['post_id']); |
| 2898 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 2898 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 2899 | 2899 | |
| 2900 | 2900 | $post_arr = $wpdb->get_results($wpdb->prepare( |
| 2901 | - "SELECT * FROM $wpdb->posts p JOIN " . $table . " gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2901 | + "SELECT * FROM $wpdb->posts p JOIN ".$table." gd ON gd.post_id=p.ID WHERE p.ID=%d LIMIT 1", |
|
| 2902 | 2902 | array($post_id) |
| 2903 | 2903 | ) |
| 2904 | 2904 | , ARRAY_A); |
| 2905 | 2905 | |
| 2906 | 2906 | $arrImages = $wpdb->get_results( |
| 2907 | 2907 | $wpdb->prepare( |
| 2908 | - "SELECT * FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2908 | + "SELECT * FROM ".GEODIR_ATTACHMENT_TABLE." WHERE mime_type like %s AND post_id = %d ORDER BY menu_order ASC, ID DESC ", |
|
| 2909 | 2909 | array('%image%', $post_id)
|
| 2910 | 2910 | ) |
| 2911 | 2911 | ); |
| 2912 | 2912 | if ($arrImages) {
|
| 2913 | 2913 | $image_arr = array(); |
| 2914 | 2914 | foreach ($arrImages as $img) {
|
| 2915 | - $image_arr[] = $upload_dir['baseurl'] . $img->file; |
|
| 2915 | + $image_arr[] = $upload_dir['baseurl'].$img->file; |
|
| 2916 | 2916 | } |
| 2917 | 2917 | $comma_separated = implode(",", $image_arr);
|
| 2918 | 2918 | $post_arr[0]['post_images'] = $comma_separated; |
| 2919 | 2919 | } |
| 2920 | 2920 | |
| 2921 | 2921 | |
| 2922 | - $cats = $post_arr[0][$post_arr[0]['post_type'] . 'category']; |
|
| 2922 | + $cats = $post_arr[0][$post_arr[0]['post_type'].'category']; |
|
| 2923 | 2923 | $cat_arr = array_filter(explode(",", $cats));
|
| 2924 | 2924 | $trans_cat = array(); |
| 2925 | 2925 | foreach ($cat_arr as $cat) {
|
| 2926 | - $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'] . 'category', false); |
|
| 2926 | + $trans_cat[] = icl_object_id($cat, $post_arr[0]['post_type'].'category', false); |
|
| 2927 | 2927 | } |
| 2928 | 2928 | |
| 2929 | 2929 | |
@@ -2965,7 +2965,7 @@ discard block |
||
| 2965 | 2965 | |
| 2966 | 2966 | $get_data = $wpdb->get_results( |
| 2967 | 2967 | $wpdb->prepare( |
| 2968 | - "SELECT htmlvar_name, field_type, extra_fields FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1'", |
|
| 2968 | + "SELECT htmlvar_name, field_type, extra_fields FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1'", |
|
| 2969 | 2969 | array($listing_type) |
| 2970 | 2970 | ) |
| 2971 | 2971 | ); |
@@ -2978,12 +2978,12 @@ discard block |
||
| 2978 | 2978 | |
| 2979 | 2979 | $extra_fields = unserialize($data->extra_fields); |
| 2980 | 2980 | |
| 2981 | - $prefix = $data->htmlvar_name . '_'; |
|
| 2981 | + $prefix = $data->htmlvar_name.'_'; |
|
| 2982 | 2982 | |
| 2983 | - $fields_info[$prefix . 'address'] = $data->field_type; |
|
| 2983 | + $fields_info[$prefix.'address'] = $data->field_type; |
|
| 2984 | 2984 | |
| 2985 | 2985 | if (isset($extra_fields['show_zip']) && $extra_fields['show_zip']) |
| 2986 | - $fields_info[$prefix . 'zip'] = $data->field_type; |
|
| 2986 | + $fields_info[$prefix.'zip'] = $data->field_type; |
|
| 2987 | 2987 | |
| 2988 | 2988 | } else {
|
| 2989 | 2989 | |
@@ -3081,13 +3081,13 @@ discard block |
||
| 3081 | 3081 | * @since 1.4.9 |
| 3082 | 3082 | * @package GeoDirectory |
| 3083 | 3083 | */ |
| 3084 | -function geodir_fb_like_thumbnail(){
|
|
| 3084 | +function geodir_fb_like_thumbnail() {
|
|
| 3085 | 3085 | |
| 3086 | 3086 | // return if not a single post |
| 3087 | - if(!is_single()){return;}
|
|
| 3087 | + if (!is_single()) {return; }
|
|
| 3088 | 3088 | |
| 3089 | 3089 | global $post; |
| 3090 | - if(isset($post->featured_image) && $post->featured_image){
|
|
| 3090 | + if (isset($post->featured_image) && $post->featured_image) {
|
|
| 3091 | 3091 | $upload_dir = wp_upload_dir(); |
| 3092 | 3092 | $thumb = $upload_dir['baseurl'].$post->featured_image; |
| 3093 | 3093 | echo "\n\n<!-- GD Facebook Like Thumbnail -->\n<link rel=\"image_src\" href=\"$thumb\" />\n<!-- End GD Facebook Like Thumbnail -->\n\n"; |