@@ -42,10 +42,11 @@ discard block |
||
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | |
| 45 | - if (geodir_dummy_folder_exists()) |
|
| 46 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | - else |
|
| 48 | - $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 45 | + if (geodir_dummy_folder_exists()) { |
|
| 46 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | + } else { |
|
| 48 | + $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 49 | + } |
|
| 49 | 50 | |
| 50 | 51 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
| 51 | 52 | |
@@ -86,10 +87,11 @@ discard block |
||
| 86 | 87 | if (!term_exists($catname, $post_type.'category')) { |
| 87 | 88 | $last_catid = wp_insert_term($catname, $post_type.'category'); |
| 88 | 89 | |
| 89 | - if (geodir_dummy_folder_exists()) |
|
| 90 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 91 | - else |
|
| 92 | - $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 90 | + if (geodir_dummy_folder_exists()) { |
|
| 91 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 92 | + } else { |
|
| 93 | + $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 94 | + } |
|
| 93 | 95 | |
| 94 | 96 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
| 95 | 97 | |
@@ -218,7 +220,7 @@ discard block |
||
| 218 | 220 | * @package GeoDirectory |
| 219 | 221 | */ |
| 220 | 222 | include_once( 'dummy-data/standard_places.php' ); |
| 221 | - }elseif($key=='property_sale'){ |
|
| 223 | + } elseif($key=='property_sale'){ |
|
| 222 | 224 | /** |
| 223 | 225 | * Contains dummy property for sale post content. |
| 224 | 226 | * |
@@ -226,7 +228,7 @@ discard block |
||
| 226 | 228 | * @package GeoDirectory |
| 227 | 229 | */ |
| 228 | 230 | include_once( 'dummy-data/property_sale.php' ); |
| 229 | - }elseif($key=='property_rent'){ |
|
| 231 | + } elseif($key=='property_rent'){ |
|
| 230 | 232 | /** |
| 231 | 233 | * Contains dummy property for sale post content. |
| 232 | 234 | * |
@@ -330,7 +332,7 @@ discard block |
||
| 330 | 332 | |
| 331 | 333 | if($post_counts > 0){ |
| 332 | 334 | echo '<td><input type="button" value="'.__('Remove data','geodirectory').'" class="button-primary geodir_dummy_button gd-remove-data" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
| 333 | - }else{ |
|
| 335 | + } else{ |
|
| 334 | 336 | echo '<td><input type="button" value="'.__('Insert data','geodirectory').'" class="button-primary geodir_dummy_button" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
| 335 | 337 | } |
| 336 | 338 | |
@@ -19,151 +19,151 @@ discard block |
||
| 19 | 19 | * @global string $dummy_image_path The dummy image path. |
| 20 | 20 | */ |
| 21 | 21 | function geodir_dummy_data_taxonomies($post_type,$category_array) { |
| 22 | - global $wpdb, $dummy_image_path; |
|
| 22 | + global $wpdb, $dummy_image_path; |
|
| 23 | 23 | |
| 24 | 24 | |
| 25 | 25 | |
| 26 | - $last_catid = ''; |
|
| 26 | + $last_catid = ''; |
|
| 27 | 27 | |
| 28 | - $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 28 | + $uploads = wp_upload_dir(); // Array of key => value pairs |
|
| 29 | 29 | |
| 30 | - for ($i = 0; $i < count($category_array); $i++) { |
|
| 31 | - $parent_catid = 0; |
|
| 32 | - if (is_array($category_array[$i])) { |
|
| 33 | - $cat_name_arr = $category_array[$i]; |
|
| 34 | - for ($j = 0; $j < count($cat_name_arr); $j++) { |
|
| 35 | - $catname = $cat_name_arr[$j]; |
|
| 30 | + for ($i = 0; $i < count($category_array); $i++) { |
|
| 31 | + $parent_catid = 0; |
|
| 32 | + if (is_array($category_array[$i])) { |
|
| 33 | + $cat_name_arr = $category_array[$i]; |
|
| 34 | + for ($j = 0; $j < count($cat_name_arr); $j++) { |
|
| 35 | + $catname = $cat_name_arr[$j]; |
|
| 36 | 36 | |
| 37 | - if (!term_exists($catname, $post_type.'category')) { |
|
| 38 | - $last_catid = wp_insert_term($catname, $post_type.'category', $args = array('parent' => $parent_catid)); |
|
| 37 | + if (!term_exists($catname, $post_type.'category')) { |
|
| 38 | + $last_catid = wp_insert_term($catname, $post_type.'category', $args = array('parent' => $parent_catid)); |
|
| 39 | 39 | |
| 40 | - if ($j == 0) { |
|
| 41 | - $parent_catid = $last_catid; |
|
| 42 | - } |
|
| 40 | + if ($j == 0) { |
|
| 41 | + $parent_catid = $last_catid; |
|
| 42 | + } |
|
| 43 | 43 | |
| 44 | 44 | |
| 45 | - if (geodir_dummy_folder_exists()) |
|
| 46 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | - else |
|
| 48 | - $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 45 | + if (geodir_dummy_folder_exists()) |
|
| 46 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | + else |
|
| 48 | + $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 49 | 49 | |
| 50 | - $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
|
| 50 | + $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
|
| 51 | 51 | |
| 52 | - $catname = str_replace(' ', '_', $catname); |
|
| 53 | - $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png"); |
|
| 52 | + $catname = str_replace(' ', '_', $catname); |
|
| 53 | + $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png"); |
|
| 54 | 54 | |
| 55 | - if (empty($uploaded['error'])) { |
|
| 56 | - $new_path = $uploaded['file']; |
|
| 57 | - $new_url = $uploaded['url']; |
|
| 58 | - } |
|
| 55 | + if (empty($uploaded['error'])) { |
|
| 56 | + $new_path = $uploaded['file']; |
|
| 57 | + $new_url = $uploaded['url']; |
|
| 58 | + } |
|
| 59 | 59 | |
| 60 | - $wp_filetype = wp_check_filetype(basename($new_path), null); |
|
| 61 | - |
|
| 62 | - $attachment = array( |
|
| 63 | - 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 64 | - 'post_mime_type' => $wp_filetype['type'], |
|
| 65 | - 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)), |
|
| 66 | - 'post_content' => '', |
|
| 67 | - 'post_status' => 'inherit' |
|
| 68 | - ); |
|
| 69 | - $attach_id = wp_insert_attachment($attachment, $new_path); |
|
| 70 | - |
|
| 71 | - // you must first include the image.php file |
|
| 72 | - // for the function wp_generate_attachment_metadata() to work |
|
| 73 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 74 | - $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
|
| 75 | - wp_update_attachment_metadata($attach_id, $attach_data); |
|
| 76 | - |
|
| 77 | - if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, $post_type)) { |
|
| 78 | - update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => 'icon', 'src' => $new_url), $post_type); |
|
| 79 | - } |
|
| 80 | - } |
|
| 81 | - } |
|
| 60 | + $wp_filetype = wp_check_filetype(basename($new_path), null); |
|
| 82 | 61 | |
| 83 | - } else { |
|
| 84 | - $catname = $category_array[$i]; |
|
| 62 | + $attachment = array( |
|
| 63 | + 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 64 | + 'post_mime_type' => $wp_filetype['type'], |
|
| 65 | + 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)), |
|
| 66 | + 'post_content' => '', |
|
| 67 | + 'post_status' => 'inherit' |
|
| 68 | + ); |
|
| 69 | + $attach_id = wp_insert_attachment($attachment, $new_path); |
|
| 85 | 70 | |
| 86 | - if (!term_exists($catname, $post_type.'category')) { |
|
| 87 | - $last_catid = wp_insert_term($catname, $post_type.'category'); |
|
| 71 | + // you must first include the image.php file |
|
| 72 | + // for the function wp_generate_attachment_metadata() to work |
|
| 73 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 74 | + $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
|
| 75 | + wp_update_attachment_metadata($attach_id, $attach_data); |
|
| 88 | 76 | |
| 89 | - if (geodir_dummy_folder_exists()) |
|
| 90 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 91 | - else |
|
| 92 | - $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 77 | + if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, $post_type)) { |
|
| 78 | + update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => 'icon', 'src' => $new_url), $post_type); |
|
| 79 | + } |
|
| 80 | + } |
|
| 81 | + } |
|
| 93 | 82 | |
| 94 | - $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
|
| 83 | + } else { |
|
| 84 | + $catname = $category_array[$i]; |
|
| 95 | 85 | |
| 96 | - $catname = str_replace(' ', '_', $catname); |
|
| 97 | - $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png"); |
|
| 86 | + if (!term_exists($catname, $post_type.'category')) { |
|
| 87 | + $last_catid = wp_insert_term($catname, $post_type.'category'); |
|
| 98 | 88 | |
| 99 | - if (empty($uploaded['error'])) { |
|
| 100 | - $new_path = $uploaded['file']; |
|
| 101 | - $new_url = $uploaded['url']; |
|
| 102 | - } |
|
| 89 | + if (geodir_dummy_folder_exists()) |
|
| 90 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 91 | + else |
|
| 92 | + $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
|
| 103 | 93 | |
| 104 | - $wp_filetype = wp_check_filetype(basename($new_path), null); |
|
| 94 | + $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
|
| 105 | 95 | |
| 106 | - $attachment = array( |
|
| 107 | - 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 108 | - 'post_mime_type' => $wp_filetype['type'], |
|
| 109 | - 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)), |
|
| 110 | - 'post_content' => '', |
|
| 111 | - 'post_status' => 'inherit' |
|
| 112 | - ); |
|
| 96 | + $catname = str_replace(' ', '_', $catname); |
|
| 97 | + $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png"); |
|
| 113 | 98 | |
| 114 | - $attach_id = wp_insert_attachment($attachment, $new_path); |
|
| 99 | + if (empty($uploaded['error'])) { |
|
| 100 | + $new_path = $uploaded['file']; |
|
| 101 | + $new_url = $uploaded['url']; |
|
| 102 | + } |
|
| 115 | 103 | |
| 104 | + $wp_filetype = wp_check_filetype(basename($new_path), null); |
|
| 116 | 105 | |
| 117 | - // you must first include the image.php file |
|
| 118 | - // for the function wp_generate_attachment_metadata() to work |
|
| 119 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 120 | - $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
|
| 121 | - wp_update_attachment_metadata($attach_id, $attach_data); |
|
| 106 | + $attachment = array( |
|
| 107 | + 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 108 | + 'post_mime_type' => $wp_filetype['type'], |
|
| 109 | + 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)), |
|
| 110 | + 'post_content' => '', |
|
| 111 | + 'post_status' => 'inherit' |
|
| 112 | + ); |
|
| 113 | + |
|
| 114 | + $attach_id = wp_insert_attachment($attachment, $new_path); |
|
| 122 | 115 | |
| 123 | - if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, $post_type)) { |
|
| 124 | - update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => $attach_id, 'src' => $new_url), $post_type); |
|
| 125 | - } |
|
| 126 | - } |
|
| 127 | - } |
|
| 128 | 116 | |
| 129 | - } |
|
| 117 | + // you must first include the image.php file |
|
| 118 | + // for the function wp_generate_attachment_metadata() to work |
|
| 119 | + require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 120 | + $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
|
| 121 | + wp_update_attachment_metadata($attach_id, $attach_data); |
|
| 122 | + |
|
| 123 | + if (!get_tax_meta($last_catid['term_id'], 'ct_cat_icon', false, $post_type)) { |
|
| 124 | + update_tax_meta($last_catid['term_id'], 'ct_cat_icon', array('id' => $attach_id, 'src' => $new_url), $post_type); |
|
| 125 | + } |
|
| 126 | + } |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | |
| 133 | 133 | function geodir_dummy_data_types(){ |
| 134 | - $data = array( |
|
| 135 | - 'standard_places' => array( |
|
| 136 | - 'name'=>__('Default','geodirectory'), |
|
| 137 | - 'count'=> 30 |
|
| 138 | - ), |
|
| 139 | - 'property_sale' => array( |
|
| 140 | - 'name'=>__('Property for sale','geodirectory'), |
|
| 141 | - 'count'=> 10 |
|
| 142 | - ), |
|
| 143 | - 'property_rent' => array( |
|
| 144 | - 'name'=>__('Property for rent','geodirectory'), |
|
| 145 | - 'count'=> 10 |
|
| 146 | - ) |
|
| 147 | - ); |
|
| 148 | - |
|
| 149 | - return apply_filters('geodir_dummy_data_types',$data ); |
|
| 134 | + $data = array( |
|
| 135 | + 'standard_places' => array( |
|
| 136 | + 'name'=>__('Default','geodirectory'), |
|
| 137 | + 'count'=> 30 |
|
| 138 | + ), |
|
| 139 | + 'property_sale' => array( |
|
| 140 | + 'name'=>__('Property for sale','geodirectory'), |
|
| 141 | + 'count'=> 10 |
|
| 142 | + ), |
|
| 143 | + 'property_rent' => array( |
|
| 144 | + 'name'=>__('Property for rent','geodirectory'), |
|
| 145 | + 'count'=> 10 |
|
| 146 | + ) |
|
| 147 | + ); |
|
| 148 | + |
|
| 149 | + return apply_filters('geodir_dummy_data_types',$data ); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | |
| 153 | 153 | function geodir_create_dummy_fields($fields) |
| 154 | 154 | { |
| 155 | 155 | |
| 156 | - /** |
|
| 157 | - * Filter the array of default custom fields DB table data. |
|
| 158 | - * |
|
| 159 | - * @since 1.0.0 |
|
| 160 | - * @param string $fields The default custom fields as an array. |
|
| 161 | - */ |
|
| 162 | - $fields = apply_filters('geodir_before_dummy_custom_fields_saved', $fields); |
|
| 163 | - foreach ($fields as $field_index => $field) { |
|
| 164 | - geodir_custom_field_save($field); |
|
| 165 | - |
|
| 166 | - } |
|
| 156 | + /** |
|
| 157 | + * Filter the array of default custom fields DB table data. |
|
| 158 | + * |
|
| 159 | + * @since 1.0.0 |
|
| 160 | + * @param string $fields The default custom fields as an array. |
|
| 161 | + */ |
|
| 162 | + $fields = apply_filters('geodir_before_dummy_custom_fields_saved', $fields); |
|
| 163 | + foreach ($fields as $field_index => $field) { |
|
| 164 | + geodir_custom_field_save($field); |
|
| 165 | + |
|
| 166 | + } |
|
| 167 | 167 | } |
| 168 | 168 | |
| 169 | 169 | /** |
@@ -176,20 +176,20 @@ discard block |
||
| 176 | 176 | */ |
| 177 | 177 | function geodir_delete_dummy_posts($post_type,$data_type) |
| 178 | 178 | { |
| 179 | - global $wpdb, $plugin_prefix; |
|
| 179 | + global $wpdb, $plugin_prefix; |
|
| 180 | 180 | |
| 181 | 181 | |
| 182 | - $post_ids = $wpdb->get_results("SELECT post_id FROM " . $plugin_prefix . $post_type."_detail WHERE post_dummy='1'"); |
|
| 182 | + $post_ids = $wpdb->get_results("SELECT post_id FROM " . $plugin_prefix . $post_type."_detail WHERE post_dummy='1'"); |
|
| 183 | 183 | |
| 184 | 184 | |
| 185 | - foreach ($post_ids as $post_ids_obj) { |
|
| 186 | - wp_delete_post($post_ids_obj->post_id); |
|
| 187 | - } |
|
| 185 | + foreach ($post_ids as $post_ids_obj) { |
|
| 186 | + wp_delete_post($post_ids_obj->post_id); |
|
| 187 | + } |
|
| 188 | 188 | |
| 189 | - //double check posts are deleted |
|
| 190 | - $wpdb->get_results("DELETE FROM " . $plugin_prefix . $post_type. "_detail WHERE post_dummy='1'"); |
|
| 189 | + //double check posts are deleted |
|
| 190 | + $wpdb->get_results("DELETE FROM " . $plugin_prefix . $post_type. "_detail WHERE post_dummy='1'"); |
|
| 191 | 191 | |
| 192 | - update_option($post_type.'_dummy_data_type',''); |
|
| 192 | + update_option($post_type.'_dummy_data_type',''); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -203,78 +203,78 @@ discard block |
||
| 203 | 203 | function geodir_insert_dummy_posts($post_type,$data_type,$item_index) |
| 204 | 204 | { |
| 205 | 205 | |
| 206 | - ini_set('max_execution_time', 999999); //300 seconds = 5 minutes |
|
| 207 | - $data_types = geodir_dummy_data_types(); |
|
| 208 | - |
|
| 209 | - $total_count = 0; |
|
| 210 | - global $dummy_post_index; |
|
| 211 | - $dummy_post_index = $item_index; |
|
| 212 | - foreach( $data_types as $key=>$val){ |
|
| 213 | - if($key==$data_type){ |
|
| 214 | - $total_count = $val['count']; |
|
| 215 | - if($key=='standard_places'){ |
|
| 216 | - /** |
|
| 217 | - * Contains dummy post content. |
|
| 218 | - * |
|
| 219 | - * @since 1.0.0 |
|
| 220 | - * @package GeoDirectory |
|
| 221 | - */ |
|
| 222 | - include_once( 'dummy-data/standard_places.php' ); |
|
| 223 | - }elseif($key=='property_sale'){ |
|
| 224 | - /** |
|
| 225 | - * Contains dummy property for sale post content. |
|
| 226 | - * |
|
| 227 | - * @since 1.6.11 |
|
| 228 | - * @package GeoDirectory |
|
| 229 | - */ |
|
| 230 | - include_once( 'dummy-data/property_sale.php' ); |
|
| 231 | - }elseif($key=='property_rent'){ |
|
| 232 | - /** |
|
| 233 | - * Contains dummy property for sale post content. |
|
| 234 | - * |
|
| 235 | - * @since 1.6.11 |
|
| 236 | - * @package GeoDirectory |
|
| 237 | - */ |
|
| 238 | - include_once( 'dummy-data/property_rent.php' ); |
|
| 239 | - } |
|
| 240 | - |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - do_action('geodir_insert_dummy_data_loop',$post_type,$data_type,$item_index); |
|
| 244 | - } |
|
| 245 | - |
|
| 246 | - |
|
| 247 | - |
|
| 248 | - // delete image cache on last entry |
|
| 249 | - if($total_count == $item_index){ |
|
| 250 | - delete_transient( 'cached_dummy_images' ); |
|
| 251 | - flush_rewrite_rules(); |
|
| 252 | - } |
|
| 206 | + ini_set('max_execution_time', 999999); //300 seconds = 5 minutes |
|
| 207 | + $data_types = geodir_dummy_data_types(); |
|
| 208 | + |
|
| 209 | + $total_count = 0; |
|
| 210 | + global $dummy_post_index; |
|
| 211 | + $dummy_post_index = $item_index; |
|
| 212 | + foreach( $data_types as $key=>$val){ |
|
| 213 | + if($key==$data_type){ |
|
| 214 | + $total_count = $val['count']; |
|
| 215 | + if($key=='standard_places'){ |
|
| 216 | + /** |
|
| 217 | + * Contains dummy post content. |
|
| 218 | + * |
|
| 219 | + * @since 1.0.0 |
|
| 220 | + * @package GeoDirectory |
|
| 221 | + */ |
|
| 222 | + include_once( 'dummy-data/standard_places.php' ); |
|
| 223 | + }elseif($key=='property_sale'){ |
|
| 224 | + /** |
|
| 225 | + * Contains dummy property for sale post content. |
|
| 226 | + * |
|
| 227 | + * @since 1.6.11 |
|
| 228 | + * @package GeoDirectory |
|
| 229 | + */ |
|
| 230 | + include_once( 'dummy-data/property_sale.php' ); |
|
| 231 | + }elseif($key=='property_rent'){ |
|
| 232 | + /** |
|
| 233 | + * Contains dummy property for sale post content. |
|
| 234 | + * |
|
| 235 | + * @since 1.6.11 |
|
| 236 | + * @package GeoDirectory |
|
| 237 | + */ |
|
| 238 | + include_once( 'dummy-data/property_rent.php' ); |
|
| 239 | + } |
|
| 240 | + |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + do_action('geodir_insert_dummy_data_loop',$post_type,$data_type,$item_index); |
|
| 244 | + } |
|
| 245 | + |
|
| 246 | + |
|
| 247 | + |
|
| 248 | + // delete image cache on last entry |
|
| 249 | + if($total_count == $item_index){ |
|
| 250 | + delete_transient( 'cached_dummy_images' ); |
|
| 251 | + flush_rewrite_rules(); |
|
| 252 | + } |
|
| 253 | 253 | |
| 254 | 254 | |
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | |
| 258 | 258 | if (!function_exists('geodir_autoinstall_admin_header') && (get_option('geodir_installed') || defined( 'GD_TESTING_MODE' ))) { |
| 259 | - /** |
|
| 260 | - * GeoDirectory dummy data installation. |
|
| 261 | - * |
|
| 262 | - * @since 1.0.0 |
|
| 263 | - * @package GeoDirectory |
|
| 264 | - * @global object $wpdb WordPress Database object. |
|
| 265 | - * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 266 | - * @param string $post_type The post type. |
|
| 267 | - */ |
|
| 268 | - function geodir_autoinstall_admin_header($post_type = 'gd_place') |
|
| 269 | - { |
|
| 270 | - |
|
| 271 | - global $wpdb, $plugin_prefix; |
|
| 272 | - |
|
| 273 | - if (!geodir_is_default_location_set()) { |
|
| 274 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>'; |
|
| 275 | - } else { |
|
| 276 | - |
|
| 277 | - ?> |
|
| 259 | + /** |
|
| 260 | + * GeoDirectory dummy data installation. |
|
| 261 | + * |
|
| 262 | + * @since 1.0.0 |
|
| 263 | + * @package GeoDirectory |
|
| 264 | + * @global object $wpdb WordPress Database object. |
|
| 265 | + * @global string $plugin_prefix Geodirectory plugin table prefix. |
|
| 266 | + * @param string $post_type The post type. |
|
| 267 | + */ |
|
| 268 | + function geodir_autoinstall_admin_header($post_type = 'gd_place') |
|
| 269 | + { |
|
| 270 | + |
|
| 271 | + global $wpdb, $plugin_prefix; |
|
| 272 | + |
|
| 273 | + if (!geodir_is_default_location_set()) { |
|
| 274 | + echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>'; |
|
| 275 | + } else { |
|
| 276 | + |
|
| 277 | + ?> |
|
| 278 | 278 | <span class="gd-dummy-hint"><small><?php _e('*Hint*: Installing our Advanced Search addon FIRST will add extra search fields to non-default data types.','geodirectory');?></small></span> |
| 279 | 279 | <table class="form-table gd-dummy-table"> |
| 280 | 280 | <tbody> |
@@ -286,78 +286,78 @@ discard block |
||
| 286 | 286 | |
| 287 | 287 | <?php |
| 288 | 288 | |
| 289 | - $cpts = geodir_get_posttypes('array'); |
|
| 289 | + $cpts = geodir_get_posttypes('array'); |
|
| 290 | 290 | |
| 291 | - $data_types = geodir_dummy_data_types(); |
|
| 291 | + $data_types = geodir_dummy_data_types(); |
|
| 292 | 292 | |
| 293 | - $nonce = wp_create_nonce('geodir_dummy_posts_insert_noncename'); |
|
| 293 | + $nonce = wp_create_nonce('geodir_dummy_posts_insert_noncename'); |
|
| 294 | 294 | |
| 295 | - foreach($cpts as $post_type=>$cpt){ |
|
| 295 | + foreach($cpts as $post_type=>$cpt){ |
|
| 296 | 296 | |
| 297 | - $data_types_for = apply_filters('geodir_dummy_date_types_for',$data_types,$post_type); |
|
| 297 | + $data_types_for = apply_filters('geodir_dummy_date_types_for',$data_types,$post_type); |
|
| 298 | 298 | |
| 299 | 299 | |
| 300 | - $set_dt = get_option($post_type.'_dummy_data_type'); |
|
| 300 | + $set_dt = get_option($post_type.'_dummy_data_type'); |
|
| 301 | 301 | |
| 302 | - $count = 30; |
|
| 302 | + $count = 30; |
|
| 303 | 303 | |
| 304 | - geodir_add_column_if_not_exist($plugin_prefix . $post_type. "_detail", 'post_dummy', "enum( '1', '0' ) NULL DEFAULT '0'"); |
|
| 304 | + geodir_add_column_if_not_exist($plugin_prefix . $post_type. "_detail", 'post_dummy', "enum( '1', '0' ) NULL DEFAULT '0'"); |
|
| 305 | 305 | |
| 306 | - $post_counts = $wpdb->get_var("SELECT count(post_id) FROM " . $plugin_prefix . $post_type . "_detail WHERE post_dummy='1'"); |
|
| 306 | + $post_counts = $wpdb->get_var("SELECT count(post_id) FROM " . $plugin_prefix . $post_type . "_detail WHERE post_dummy='1'"); |
|
| 307 | 307 | |
| 308 | - echo "<tr>"; |
|
| 309 | - echo "<td><strong>".$cpt['labels']['name']."</strong></td>"; |
|
| 308 | + echo "<tr>"; |
|
| 309 | + echo "<td><strong>".$cpt['labels']['name']."</strong></td>"; |
|
| 310 | 310 | |
| 311 | 311 | |
| 312 | - $select_disabled = $post_counts > 0 ? 'disabled' : ''; |
|
| 313 | - echo "<td>"; |
|
| 314 | - echo "<select id='".$post_type."_data_type' onchange='geodir_dummy_set_count(this,\"$post_type\");' $select_disabled>"; |
|
| 312 | + $select_disabled = $post_counts > 0 ? 'disabled' : ''; |
|
| 313 | + echo "<td>"; |
|
| 314 | + echo "<select id='".$post_type."_data_type' onchange='geodir_dummy_set_count(this,\"$post_type\");' $select_disabled>"; |
|
| 315 | 315 | |
| 316 | - foreach($data_types_for as $key=>$val){ |
|
| 317 | - $selected = ($key==$set_dt) ? "selected='selected'" : ''; |
|
| 318 | - if($selected || count($data_types_for)==1){$count = $val['count'];} |
|
| 319 | - echo "<option $selected value='$key' data-count='".$val['count']."'>".$val['name']."</option>"; |
|
| 320 | - } |
|
| 321 | - echo "</select>"; |
|
| 322 | - |
|
| 323 | - $select_display = $post_counts > 0 ? 'display:none;' : ''; |
|
| 324 | - echo "<select id='".$post_type."_data_type_count' style='$select_display' >"; |
|
| 325 | - $x = 1; |
|
| 326 | - while($x <= $count){ |
|
| 327 | - $selected = ($x==$count) ? "selected='selected'" : ''; |
|
| 328 | - echo "<option $selected value='$x'>".$x."</option>"; |
|
| 329 | - $x++; |
|
| 330 | - } |
|
| 331 | - echo "</select>"; |
|
| 332 | - echo "</td>"; |
|
| 316 | + foreach($data_types_for as $key=>$val){ |
|
| 317 | + $selected = ($key==$set_dt) ? "selected='selected'" : ''; |
|
| 318 | + if($selected || count($data_types_for)==1){$count = $val['count'];} |
|
| 319 | + echo "<option $selected value='$key' data-count='".$val['count']."'>".$val['name']."</option>"; |
|
| 320 | + } |
|
| 321 | + echo "</select>"; |
|
| 333 | 322 | |
| 323 | + $select_display = $post_counts > 0 ? 'display:none;' : ''; |
|
| 324 | + echo "<select id='".$post_type."_data_type_count' style='$select_display' >"; |
|
| 325 | + $x = 1; |
|
| 326 | + while($x <= $count){ |
|
| 327 | + $selected = ($x==$count) ? "selected='selected'" : ''; |
|
| 328 | + echo "<option $selected value='$x'>".$x."</option>"; |
|
| 329 | + $x++; |
|
| 330 | + } |
|
| 331 | + echo "</select>"; |
|
| 332 | + echo "</td>"; |
|
| 334 | 333 | |
| 335 | 334 | |
| 336 | 335 | |
| 337 | 336 | |
| 338 | - if($post_counts > 0){ |
|
| 339 | - echo '<td><input type="button" value="'.__('Remove data','geodirectory').'" class="button-primary geodir_dummy_button gd-remove-data" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
|
| 340 | - }else{ |
|
| 341 | - echo '<td><input type="button" value="'.__('Insert data','geodirectory').'" class="button-primary geodir_dummy_button" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
|
| 342 | - } |
|
| 343 | 337 | |
| 344 | - echo "</tr>"; |
|
| 345 | - //print_r($cpt); |
|
| 346 | - } |
|
| 338 | + if($post_counts > 0){ |
|
| 339 | + echo '<td><input type="button" value="'.__('Remove data','geodirectory').'" class="button-primary geodir_dummy_button gd-remove-data" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
|
| 340 | + }else{ |
|
| 341 | + echo '<td><input type="button" value="'.__('Insert data','geodirectory').'" class="button-primary geodir_dummy_button" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
|
| 342 | + } |
|
| 343 | + |
|
| 344 | + echo "</tr>"; |
|
| 345 | + //print_r($cpt); |
|
| 346 | + } |
|
| 347 | 347 | |
| 348 | - ?> |
|
| 348 | + ?> |
|
| 349 | 349 | </tbody> |
| 350 | 350 | </table> |
| 351 | 351 | <?php |
| 352 | 352 | |
| 353 | 353 | |
| 354 | - $default_location = geodir_get_default_location(); |
|
| 355 | - $city = isset($default_location->city) ? $default_location->city : ''; |
|
| 356 | - $region = isset($default_location->region) ? $default_location->region : ''; |
|
| 357 | - $country = isset($default_location->country) ? $default_location->country : ''; |
|
| 358 | - $city_latitude = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; |
|
| 359 | - $city_longitude = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; |
|
| 360 | - ?> |
|
| 354 | + $default_location = geodir_get_default_location(); |
|
| 355 | + $city = isset($default_location->city) ? $default_location->city : ''; |
|
| 356 | + $region = isset($default_location->region) ? $default_location->region : ''; |
|
| 357 | + $country = isset($default_location->country) ? $default_location->country : ''; |
|
| 358 | + $city_latitude = isset($default_location->city_latitude) ? $default_location->city_latitude : ''; |
|
| 359 | + $city_longitude = isset($default_location->city_longitude) ? $default_location->city_longitude : ''; |
|
| 360 | + ?> |
|
| 361 | 361 | <script type="text/javascript"> |
| 362 | 362 | |
| 363 | 363 | function geodir_dummy_set_count(data,cpt){ |
@@ -533,7 +533,7 @@ discard block |
||
| 533 | 533 | } |
| 534 | 534 | </script> |
| 535 | 535 | <?php |
| 536 | - } |
|
| 537 | - } |
|
| 536 | + } |
|
| 537 | + } |
|
| 538 | 538 | } |
| 539 | 539 | |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | * @global object $wpdb WordPress Database object. |
| 19 | 19 | * @global string $dummy_image_path The dummy image path. |
| 20 | 20 | */ |
| 21 | -function geodir_dummy_data_taxonomies($post_type,$category_array) { |
|
| 21 | +function geodir_dummy_data_taxonomies($post_type, $category_array) { |
|
| 22 | 22 | global $wpdb, $dummy_image_path; |
| 23 | 23 | |
| 24 | 24 | |
@@ -43,14 +43,14 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | |
| 45 | 45 | if (geodir_dummy_folder_exists()) |
| 46 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 46 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy/cat_icon"; |
|
| 47 | 47 | else |
| 48 | 48 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
| 49 | 49 | |
| 50 | 50 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
| 51 | 51 | |
| 52 | 52 | $catname = str_replace(' ', '_', $catname); |
| 53 | - $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png"); |
|
| 53 | + $uploaded = (array) fetch_remote_file("$dummy_image_url/".$catname.".png"); |
|
| 54 | 54 | |
| 55 | 55 | if (empty($uploaded['error'])) { |
| 56 | 56 | $new_path = $uploaded['file']; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | $wp_filetype = wp_check_filetype(basename($new_path), null); |
| 61 | 61 | |
| 62 | 62 | $attachment = array( |
| 63 | - 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 63 | + 'guid' => $uploads['baseurl'].'/'.basename($new_path), |
|
| 64 | 64 | 'post_mime_type' => $wp_filetype['type'], |
| 65 | 65 | 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)), |
| 66 | 66 | 'post_content' => '', |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | // you must first include the image.php file |
| 72 | 72 | // for the function wp_generate_attachment_metadata() to work |
| 73 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 73 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 74 | 74 | $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
| 75 | 75 | wp_update_attachment_metadata($attach_id, $attach_data); |
| 76 | 76 | |
@@ -87,14 +87,14 @@ discard block |
||
| 87 | 87 | $last_catid = wp_insert_term($catname, $post_type.'category'); |
| 88 | 88 | |
| 89 | 89 | if (geodir_dummy_folder_exists()) |
| 90 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy/cat_icon"; |
|
| 90 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy/cat_icon"; |
|
| 91 | 91 | else |
| 92 | 92 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy/cat_icon'; |
| 93 | 93 | |
| 94 | 94 | $dummy_image_url = apply_filters('place_dummy_cat_image_url', $dummy_image_url); |
| 95 | 95 | |
| 96 | 96 | $catname = str_replace(' ', '_', $catname); |
| 97 | - $uploaded = (array)fetch_remote_file("$dummy_image_url/" . $catname . ".png"); |
|
| 97 | + $uploaded = (array) fetch_remote_file("$dummy_image_url/".$catname.".png"); |
|
| 98 | 98 | |
| 99 | 99 | if (empty($uploaded['error'])) { |
| 100 | 100 | $new_path = $uploaded['file']; |
@@ -104,7 +104,7 @@ discard block |
||
| 104 | 104 | $wp_filetype = wp_check_filetype(basename($new_path), null); |
| 105 | 105 | |
| 106 | 106 | $attachment = array( |
| 107 | - 'guid' => $uploads['baseurl'] . '/' . basename($new_path), |
|
| 107 | + 'guid' => $uploads['baseurl'].'/'.basename($new_path), |
|
| 108 | 108 | 'post_mime_type' => $wp_filetype['type'], |
| 109 | 109 | 'post_title' => preg_replace('/\.[^.]+$/', '', basename($new_path)), |
| 110 | 110 | 'post_content' => '', |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | |
| 117 | 117 | // you must first include the image.php file |
| 118 | 118 | // for the function wp_generate_attachment_metadata() to work |
| 119 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
| 119 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
| 120 | 120 | $attach_data = wp_generate_attachment_metadata($attach_id, $new_path); |
| 121 | 121 | wp_update_attachment_metadata($attach_id, $attach_data); |
| 122 | 122 | |
@@ -130,23 +130,23 @@ discard block |
||
| 130 | 130 | } |
| 131 | 131 | |
| 132 | 132 | |
| 133 | -function geodir_dummy_data_types(){ |
|
| 134 | - $data = array( |
|
| 133 | +function geodir_dummy_data_types() { |
|
| 134 | + $data = array( |
|
| 135 | 135 | 'standard_places' => array( |
| 136 | - 'name'=>__('Default','geodirectory'), |
|
| 136 | + 'name'=>__('Default', 'geodirectory'), |
|
| 137 | 137 | 'count'=> 30 |
| 138 | 138 | ), |
| 139 | 139 | 'property_sale' => array( |
| 140 | - 'name'=>__('Property for sale','geodirectory'), |
|
| 140 | + 'name'=>__('Property for sale', 'geodirectory'), |
|
| 141 | 141 | 'count'=> 10 |
| 142 | 142 | ), |
| 143 | 143 | 'property_rent' => array( |
| 144 | - 'name'=>__('Property for rent','geodirectory'), |
|
| 144 | + 'name'=>__('Property for rent', 'geodirectory'), |
|
| 145 | 145 | 'count'=> 10 |
| 146 | 146 | ) |
| 147 | 147 | ); |
| 148 | 148 | |
| 149 | - return apply_filters('geodir_dummy_data_types',$data ); |
|
| 149 | + return apply_filters('geodir_dummy_data_types', $data); |
|
| 150 | 150 | } |
| 151 | 151 | |
| 152 | 152 | |
@@ -174,12 +174,12 @@ discard block |
||
| 174 | 174 | * @global object $wpdb WordPress Database object. |
| 175 | 175 | * @global string $plugin_prefix Geodirectory plugin table prefix. |
| 176 | 176 | */ |
| 177 | -function geodir_delete_dummy_posts($post_type,$data_type) |
|
| 177 | +function geodir_delete_dummy_posts($post_type, $data_type) |
|
| 178 | 178 | { |
| 179 | 179 | global $wpdb, $plugin_prefix; |
| 180 | 180 | |
| 181 | 181 | |
| 182 | - $post_ids = $wpdb->get_results("SELECT post_id FROM " . $plugin_prefix . $post_type."_detail WHERE post_dummy='1'"); |
|
| 182 | + $post_ids = $wpdb->get_results("SELECT post_id FROM ".$plugin_prefix.$post_type."_detail WHERE post_dummy='1'"); |
|
| 183 | 183 | |
| 184 | 184 | |
| 185 | 185 | foreach ($post_ids as $post_ids_obj) { |
@@ -187,9 +187,9 @@ discard block |
||
| 187 | 187 | } |
| 188 | 188 | |
| 189 | 189 | //double check posts are deleted |
| 190 | - $wpdb->get_results("DELETE FROM " . $plugin_prefix . $post_type. "_detail WHERE post_dummy='1'"); |
|
| 190 | + $wpdb->get_results("DELETE FROM ".$plugin_prefix.$post_type."_detail WHERE post_dummy='1'"); |
|
| 191 | 191 | |
| 192 | - update_option($post_type.'_dummy_data_type',''); |
|
| 192 | + update_option($post_type.'_dummy_data_type', ''); |
|
| 193 | 193 | } |
| 194 | 194 | |
| 195 | 195 | /** |
@@ -200,7 +200,7 @@ discard block |
||
| 200 | 200 | * @global object $wpdb WordPress Database object. |
| 201 | 201 | * @global object $current_user Current user object. |
| 202 | 202 | */ |
| 203 | -function geodir_insert_dummy_posts($post_type,$data_type,$item_index) |
|
| 203 | +function geodir_insert_dummy_posts($post_type, $data_type, $item_index) |
|
| 204 | 204 | { |
| 205 | 205 | |
| 206 | 206 | ini_set('max_execution_time', 999999); //300 seconds = 5 minutes |
@@ -209,45 +209,45 @@ discard block |
||
| 209 | 209 | $total_count = 0; |
| 210 | 210 | global $dummy_post_index; |
| 211 | 211 | $dummy_post_index = $item_index; |
| 212 | - foreach( $data_types as $key=>$val){ |
|
| 213 | - if($key==$data_type){ |
|
| 212 | + foreach ($data_types as $key=>$val) { |
|
| 213 | + if ($key == $data_type) { |
|
| 214 | 214 | $total_count = $val['count']; |
| 215 | - if($key=='standard_places'){ |
|
| 215 | + if ($key == 'standard_places') { |
|
| 216 | 216 | /** |
| 217 | 217 | * Contains dummy post content. |
| 218 | 218 | * |
| 219 | 219 | * @since 1.0.0 |
| 220 | 220 | * @package GeoDirectory |
| 221 | 221 | */ |
| 222 | - include_once( 'dummy-data/standard_places.php' ); |
|
| 223 | - }elseif($key=='property_sale'){ |
|
| 222 | + include_once('dummy-data/standard_places.php'); |
|
| 223 | + }elseif ($key == 'property_sale') { |
|
| 224 | 224 | /** |
| 225 | 225 | * Contains dummy property for sale post content. |
| 226 | 226 | * |
| 227 | 227 | * @since 1.6.11 |
| 228 | 228 | * @package GeoDirectory |
| 229 | 229 | */ |
| 230 | - include_once( 'dummy-data/property_sale.php' ); |
|
| 231 | - }elseif($key=='property_rent'){ |
|
| 230 | + include_once('dummy-data/property_sale.php'); |
|
| 231 | + }elseif ($key == 'property_rent') { |
|
| 232 | 232 | /** |
| 233 | 233 | * Contains dummy property for sale post content. |
| 234 | 234 | * |
| 235 | 235 | * @since 1.6.11 |
| 236 | 236 | * @package GeoDirectory |
| 237 | 237 | */ |
| 238 | - include_once( 'dummy-data/property_rent.php' ); |
|
| 238 | + include_once('dummy-data/property_rent.php'); |
|
| 239 | 239 | } |
| 240 | 240 | |
| 241 | 241 | } |
| 242 | 242 | |
| 243 | - do_action('geodir_insert_dummy_data_loop',$post_type,$data_type,$item_index); |
|
| 243 | + do_action('geodir_insert_dummy_data_loop', $post_type, $data_type, $item_index); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | |
| 247 | 247 | |
| 248 | 248 | // delete image cache on last entry |
| 249 | - if($total_count == $item_index){ |
|
| 250 | - delete_transient( 'cached_dummy_images' ); |
|
| 249 | + if ($total_count == $item_index) { |
|
| 250 | + delete_transient('cached_dummy_images'); |
|
| 251 | 251 | flush_rewrite_rules(); |
| 252 | 252 | } |
| 253 | 253 | |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | } |
| 256 | 256 | |
| 257 | 257 | |
| 258 | -if (!function_exists('geodir_autoinstall_admin_header') && (get_option('geodir_installed') || defined( 'GD_TESTING_MODE' ))) { |
|
| 258 | +if (!function_exists('geodir_autoinstall_admin_header') && (get_option('geodir_installed') || defined('GD_TESTING_MODE'))) { |
|
| 259 | 259 | /** |
| 260 | 260 | * GeoDirectory dummy data installation. |
| 261 | 261 | * |
@@ -271,17 +271,17 @@ discard block |
||
| 271 | 271 | global $wpdb, $plugin_prefix; |
| 272 | 272 | |
| 273 | 273 | if (!geodir_is_default_location_set()) { |
| 274 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>'; |
|
| 274 | + echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will help to set location of all dummy data.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>'; |
|
| 275 | 275 | } else { |
| 276 | 276 | |
| 277 | 277 | ?> |
| 278 | - <span class="gd-dummy-hint"><small><?php _e('*Hint*: Installing our Advanced Search addon FIRST will add extra search fields to non-default data types.','geodirectory');?></small></span> |
|
| 278 | + <span class="gd-dummy-hint"><small><?php _e('*Hint*: Installing our Advanced Search addon FIRST will add extra search fields to non-default data types.', 'geodirectory'); ?></small></span> |
|
| 279 | 279 | <table class="form-table gd-dummy-table"> |
| 280 | 280 | <tbody> |
| 281 | 281 | <tr> |
| 282 | - <td><strong><?php _e('CPT','geodirectory');?></strong></td> |
|
| 283 | - <td><strong><?php _e('Data Type','geodirectory');?></strong></td> |
|
| 284 | - <td><strong><?php _e('Action','geodirectory');?></strong></td> |
|
| 282 | + <td><strong><?php _e('CPT', 'geodirectory'); ?></strong></td> |
|
| 283 | + <td><strong><?php _e('Data Type', 'geodirectory'); ?></strong></td> |
|
| 284 | + <td><strong><?php _e('Action', 'geodirectory'); ?></strong></td> |
|
| 285 | 285 | </tr> |
| 286 | 286 | |
| 287 | 287 | <?php |
@@ -292,18 +292,18 @@ discard block |
||
| 292 | 292 | |
| 293 | 293 | $nonce = wp_create_nonce('geodir_dummy_posts_insert_noncename'); |
| 294 | 294 | |
| 295 | - foreach($cpts as $post_type=>$cpt){ |
|
| 295 | + foreach ($cpts as $post_type=>$cpt) { |
|
| 296 | 296 | |
| 297 | - $data_types_for = apply_filters('geodir_dummy_date_types_for',$data_types,$post_type); |
|
| 297 | + $data_types_for = apply_filters('geodir_dummy_date_types_for', $data_types, $post_type); |
|
| 298 | 298 | |
| 299 | 299 | |
| 300 | 300 | $set_dt = get_option($post_type.'_dummy_data_type'); |
| 301 | 301 | |
| 302 | 302 | $count = 30; |
| 303 | 303 | |
| 304 | - geodir_add_column_if_not_exist($plugin_prefix . $post_type. "_detail", 'post_dummy', "enum( '1', '0' ) NULL DEFAULT '0'"); |
|
| 304 | + geodir_add_column_if_not_exist($plugin_prefix.$post_type."_detail", 'post_dummy', "enum( '1', '0' ) NULL DEFAULT '0'"); |
|
| 305 | 305 | |
| 306 | - $post_counts = $wpdb->get_var("SELECT count(post_id) FROM " . $plugin_prefix . $post_type . "_detail WHERE post_dummy='1'"); |
|
| 306 | + $post_counts = $wpdb->get_var("SELECT count(post_id) FROM ".$plugin_prefix.$post_type."_detail WHERE post_dummy='1'"); |
|
| 307 | 307 | |
| 308 | 308 | echo "<tr>"; |
| 309 | 309 | echo "<td><strong>".$cpt['labels']['name']."</strong></td>"; |
@@ -313,9 +313,9 @@ discard block |
||
| 313 | 313 | echo "<td>"; |
| 314 | 314 | echo "<select id='".$post_type."_data_type' onchange='geodir_dummy_set_count(this,\"$post_type\");' $select_disabled>"; |
| 315 | 315 | |
| 316 | - foreach($data_types_for as $key=>$val){ |
|
| 317 | - $selected = ($key==$set_dt) ? "selected='selected'" : ''; |
|
| 318 | - if($selected || count($data_types_for)==1){$count = $val['count'];} |
|
| 316 | + foreach ($data_types_for as $key=>$val) { |
|
| 317 | + $selected = ($key == $set_dt) ? "selected='selected'" : ''; |
|
| 318 | + if ($selected || count($data_types_for) == 1) {$count = $val['count']; } |
|
| 319 | 319 | echo "<option $selected value='$key' data-count='".$val['count']."'>".$val['name']."</option>"; |
| 320 | 320 | } |
| 321 | 321 | echo "</select>"; |
@@ -323,8 +323,8 @@ discard block |
||
| 323 | 323 | $select_display = $post_counts > 0 ? 'display:none;' : ''; |
| 324 | 324 | echo "<select id='".$post_type."_data_type_count' style='$select_display' >"; |
| 325 | 325 | $x = 1; |
| 326 | - while($x <= $count){ |
|
| 327 | - $selected = ($x==$count) ? "selected='selected'" : ''; |
|
| 326 | + while ($x <= $count) { |
|
| 327 | + $selected = ($x == $count) ? "selected='selected'" : ''; |
|
| 328 | 328 | echo "<option $selected value='$x'>".$x."</option>"; |
| 329 | 329 | $x++; |
| 330 | 330 | } |
@@ -335,10 +335,10 @@ discard block |
||
| 335 | 335 | |
| 336 | 336 | |
| 337 | 337 | |
| 338 | - if($post_counts > 0){ |
|
| 339 | - echo '<td><input type="button" value="'.__('Remove data','geodirectory').'" class="button-primary geodir_dummy_button gd-remove-data" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
|
| 340 | - }else{ |
|
| 341 | - echo '<td><input type="button" value="'.__('Insert data','geodirectory').'" class="button-primary geodir_dummy_button" onclick="gdInstallDummyData(this,\'' . $nonce . '\',\'' . $post_type . '\'); return false;" ></td>'; |
|
| 338 | + if ($post_counts > 0) { |
|
| 339 | + echo '<td><input type="button" value="'.__('Remove data', 'geodirectory').'" class="button-primary geodir_dummy_button gd-remove-data" onclick="gdInstallDummyData(this,\''.$nonce.'\',\''.$post_type.'\'); return false;" ></td>'; |
|
| 340 | + } else { |
|
| 341 | + echo '<td><input type="button" value="'.__('Insert data', 'geodirectory').'" class="button-primary geodir_dummy_button" onclick="gdInstallDummyData(this,\''.$nonce.'\',\''.$post_type.'\'); return false;" ></td>'; |
|
| 342 | 342 | } |
| 343 | 343 | |
| 344 | 344 | echo "</tr>"; |
@@ -374,7 +374,7 @@ discard block |
||
| 374 | 374 | |
| 375 | 375 | } |
| 376 | 376 | |
| 377 | - var CITY_ADDRESS = '<?php echo addslashes( $city . ',' . $region . ',' . $country );?>'; |
|
| 377 | + var CITY_ADDRESS = '<?php echo addslashes($city.','.$region.','.$country); ?>'; |
|
| 378 | 378 | var bound_lat_lng; |
| 379 | 379 | var latlng = ['<?php echo $city_latitude; ?>', <?php echo $city_longitude; ?>]; |
| 380 | 380 | var lat = <?php echo $city_latitude; ?>; |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | return x.replace(" ", ''); |
| 408 | 408 | }); // remove spaces from lat/lon |
| 409 | 409 | } else { |
| 410 | - alert("<?php _e( 'Geocode was not successful for the following reason:', 'geodirectory' );?> " + status); |
|
| 410 | + alert("<?php _e('Geocode was not successful for the following reason:', 'geodirectory'); ?> " + status); |
|
| 411 | 411 | } |
| 412 | 412 | }); |
| 413 | 413 | } else if (window.gdMaps == 'osm') { |
@@ -431,7 +431,7 @@ discard block |
||
| 431 | 431 | var dummy_post_index = 1; |
| 432 | 432 | |
| 433 | 433 | function gdRemoveDummyData(obj, nonce, posttype){ |
| 434 | - if (confirm('<?php _e('Are you sure you want to delete dummy data?' , 'geodirectory'); ?>')) { |
|
| 434 | + if (confirm('<?php _e('Are you sure you want to delete dummy data?', 'geodirectory'); ?>')) { |
|
| 435 | 435 | jQuery(obj).prop('disabled', true); |
| 436 | 436 | jQuery('.gd-dummy-data-results-' + posttype).remove(); |
| 437 | 437 | jQuery('<tr class="gd-dummy-data-results gd-dummy-data-results-' + posttype + '" >'+ |
@@ -446,14 +446,14 @@ discard block |
||
| 446 | 446 | |
| 447 | 447 | jQuery('.gd_progressbar_'+posttype).progressbar({value: 0}); |
| 448 | 448 | |
| 449 | - gd_progressbar('.gd_progressbar_container_'+posttype, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Removing data...', 'geodirlocation'));?>'); |
|
| 449 | + gd_progressbar('.gd_progressbar_container_'+posttype, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Removing data...', 'geodirlocation')); ?>'); |
|
| 450 | 450 | |
| 451 | 451 | |
| 452 | 452 | jQuery.post('<?php echo geodir_get_ajax_url(); ?>&geodir_autofill=geodir_dummy_delete&posttype=' + posttype + '&_wpnonce=' + nonce, |
| 453 | 453 | function (data) { |
| 454 | - gd_progressbar('.gd_progressbar_container_'+posttype, 100, '<i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirlocation'));?>'); |
|
| 454 | + gd_progressbar('.gd_progressbar_container_'+posttype, 100, '<i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirlocation')); ?>'); |
|
| 455 | 455 | jQuery(obj).removeClass('gd-remove-data'); |
| 456 | - jQuery(obj).val('<?php _e('Insert data','geodirectory');?>'); |
|
| 456 | + jQuery(obj).val('<?php _e('Insert data', 'geodirectory'); ?>'); |
|
| 457 | 457 | jQuery(obj).prop('disabled', false); |
| 458 | 458 | jQuery('#'+posttype+'_data_type_count').show(); |
| 459 | 459 | jQuery('#'+posttype+'_data_type').prop('disabled', false); |
@@ -496,7 +496,7 @@ discard block |
||
| 496 | 496 | |
| 497 | 497 | jQuery('.gd_progressbar_'+posttype).progressbar({value: 0}); |
| 498 | 498 | |
| 499 | - gd_progressbar('.gd_progressbar_container_'+posttype, 0, '0% (0 / ' + dateTypeCount + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Creating categories and custom fields...', 'geodirlocation'));?>'); |
|
| 499 | + gd_progressbar('.gd_progressbar_container_'+posttype, 0, '0% (0 / ' + dateTypeCount + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Creating categories and custom fields...', 'geodirlocation')); ?>'); |
|
| 500 | 500 | } |
| 501 | 501 | |
| 502 | 502 | if (!(typeof bound_lat_lng == 'object' && bound_lat_lng.length == 4)) { |
@@ -516,15 +516,15 @@ discard block |
||
| 516 | 516 | percentage = percentage > 100 ? 100 : percentage; |
| 517 | 517 | |
| 518 | 518 | |
| 519 | - gd_progressbar('.gd_progressbar_container_'+posttype, percentage, percentage + '% ('+insertedCount+' / ' + dateTypeCount + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Inserting data...', 'geodirlocation'));?>'); |
|
| 519 | + gd_progressbar('.gd_progressbar_container_'+posttype, percentage, percentage + '% ('+insertedCount+' / ' + dateTypeCount + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Inserting data...', 'geodirlocation')); ?>'); |
|
| 520 | 520 | |
| 521 | 521 | gdInstallDummyData(obj, nonce, posttype,insertedCount); |
| 522 | 522 | } |
| 523 | 523 | else { |
| 524 | 524 | percentage = 100; |
| 525 | - gd_progressbar('.gd_progressbar_container_'+posttype, percentage, percentage + '% ('+insertedCount+' / ' + dateTypeCount + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirlocation'));?>'); |
|
| 525 | + gd_progressbar('.gd_progressbar_container_'+posttype, percentage, percentage + '% ('+insertedCount+' / ' + dateTypeCount + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirlocation')); ?>'); |
|
| 526 | 526 | jQuery(obj).addClass('gd-remove-data'); |
| 527 | - jQuery(obj).val('<?php _e('Remove data','geodirectory');?>'); |
|
| 527 | + jQuery(obj).val('<?php _e('Remove data', 'geodirectory'); ?>'); |
|
| 528 | 528 | jQuery(obj).prop('disabled', false); |
| 529 | 529 | |
| 530 | 530 | } |
@@ -60,16 +60,16 @@ discard block |
||
| 60 | 60 | * @since 1.0.0 |
| 61 | 61 | * @param string $menu_class The menu HTML class. |
| 62 | 62 | */ |
| 63 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 63 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
|
|
| 64 | 64 | /** |
| 65 | 65 | * Filter the menu a class. |
| 66 | 66 | * |
| 67 | 67 | * @since 1.0.0 |
| 68 | 68 | */ |
| 69 | 69 | $a_class = apply_filters('geodir_menu_a_class', '');
|
| 70 | - $items .= '<li class="' . $li_class . '"> |
|
| 71 | - <a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '"> |
|
| 72 | - ' . __(ucfirst($args->labels->name),'geodirectory') . ' |
|
| 70 | + $items .= '<li class="'.$li_class.'"> |
|
| 71 | + <a href="' . get_post_type_archive_link($post_type).'" class="'.$a_class.'"> |
|
| 72 | + ' . __(ucfirst($args->labels->name), 'geodirectory').' |
|
| 73 | 73 | </a> |
| 74 | 74 | </li>'; |
| 75 | 75 | } |
@@ -88,14 +88,14 @@ discard block |
||
| 88 | 88 | * @since 1.0.0 |
| 89 | 89 | * @param string $menu_class The menu HTML class. |
| 90 | 90 | */ |
| 91 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
|
|
| 91 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings '.$menu_class);
|
|
| 92 | 92 | /** |
| 93 | 93 | * Filter the sub menu li class. |
| 94 | 94 | * |
| 95 | 95 | * @since 1.0.0 |
| 96 | 96 | * @param string $menu_class The menu HTML class. |
| 97 | 97 | */ |
| 98 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 98 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item '.$menu_class);
|
|
| 99 | 99 | /** |
| 100 | 100 | * Filter the sub menu ul class. |
| 101 | 101 | * |
@@ -114,9 +114,9 @@ discard block |
||
| 114 | 114 | * @since 1.0.0 |
| 115 | 115 | */ |
| 116 | 116 | $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
| 117 | - $items .= '<li class="' . $li_class . '"> |
|
| 118 | - <a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
|
|
| 119 | - <ul class="' . $sub_ul_class . '">'; |
|
| 117 | + $items .= '<li class="'.$li_class.'"> |
|
| 118 | + <a href="#" class="' . $a_class.'">'.__('Listing', 'geodirectory').'</a>
|
|
| 119 | + <ul class="' . $sub_ul_class.'">'; |
|
| 120 | 120 | $post_types = geodir_get_posttypes('object');
|
| 121 | 121 | |
| 122 | 122 | $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
|
@@ -133,9 +133,9 @@ discard block |
||
| 133 | 133 | if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
| 134 | 134 | $menu_class = 'current-menu-item'; |
| 135 | 135 | |
| 136 | - $items .= '<li class="' . $sub_li_class . '"> |
|
| 137 | - <a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '"> |
|
| 138 | - ' . __(ucfirst($args->labels->name),'geodirectory') . ' |
|
| 136 | + $items .= '<li class="'.$sub_li_class.'"> |
|
| 137 | + <a href="' . get_post_type_archive_link($post_type).'" class="'.$sub_a_class.'"> |
|
| 138 | + ' . __(ucfirst($args->labels->name), 'geodirectory').' |
|
| 139 | 139 | </a> |
| 140 | 140 | </li>'; |
| 141 | 141 | } |
@@ -151,7 +151,7 @@ discard block |
||
| 151 | 151 | * |
| 152 | 152 | * @since 1.5.9 |
| 153 | 153 | */ |
| 154 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 154 | + $items .= apply_filters('geodir_menu_after_sub_ul', '');
|
|
| 155 | 155 | $items .= '</li>'; |
| 156 | 156 | } |
| 157 | 157 | } |
@@ -184,7 +184,7 @@ discard block |
||
| 184 | 184 | * @since 1.0.0 |
| 185 | 185 | * @param string $menu_class The menu HTML class. |
| 186 | 186 | */ |
| 187 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 187 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
|
|
| 188 | 188 | /** |
| 189 | 189 | * Filter the menu a class. |
| 190 | 190 | * |
@@ -192,9 +192,9 @@ discard block |
||
| 192 | 192 | */ |
| 193 | 193 | $a_class = apply_filters('geodir_menu_a_class', '');
|
| 194 | 194 | $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
| 195 | - $items .= '<li class="' . $li_class . '"> |
|
| 196 | - <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '"> |
|
| 197 | - ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
|
| 195 | + $items .= '<li class="'.$li_class.'"> |
|
| 196 | + <a href="' . geodir_get_addlisting_link($post_type).'" class="'.$a_class.'"> |
|
| 197 | + ' . sprintf(__('Add %s', 'geodirectory'), $cpt_name).'
|
|
| 198 | 198 | </a> |
| 199 | 199 | </li>'; |
| 200 | 200 | } |
@@ -218,14 +218,14 @@ discard block |
||
| 218 | 218 | * @since 1.0.0 |
| 219 | 219 | * @param string $menu_class The menu HTML class. |
| 220 | 220 | */ |
| 221 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
|
|
| 221 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing '.$menu_class);
|
|
| 222 | 222 | /** |
| 223 | 223 | * Filter the sub menu li class. |
| 224 | 224 | * |
| 225 | 225 | * @since 1.0.0 |
| 226 | 226 | * @param string $menu_class The menu HTML class. |
| 227 | 227 | */ |
| 228 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 228 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item '.$menu_class);
|
|
| 229 | 229 | /** |
| 230 | 230 | * Filter the sub menu ul class. |
| 231 | 231 | * |
@@ -244,9 +244,9 @@ discard block |
||
| 244 | 244 | * @since 1.0.0 |
| 245 | 245 | */ |
| 246 | 246 | $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
| 247 | - $items .= '<li class="' . $li_class . '"> |
|
| 248 | - <a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
|
|
| 249 | - <ul class="' . $sub_ul_class . '">'; |
|
| 247 | + $items .= '<li class="'.$li_class.'"> |
|
| 248 | + <a href="#" class="' . $a_class.'">'.__('Add Listing', 'geodirectory').'</a>
|
|
| 249 | + <ul class="' . $sub_ul_class.'">'; |
|
| 250 | 250 | |
| 251 | 251 | $post_types = geodir_get_posttypes('object');
|
| 252 | 252 | |
@@ -269,11 +269,11 @@ discard block |
||
| 269 | 269 | * @since 1.0.0 |
| 270 | 270 | * @param string $menu_class The menu HTML class. |
| 271 | 271 | */ |
| 272 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 272 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item '.$menu_class);
|
|
| 273 | 273 | $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
| 274 | - $items .= '<li class="' . $li_class . '"> |
|
| 275 | - <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '"> |
|
| 276 | - ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
|
| 274 | + $items .= '<li class="'.$li_class.'"> |
|
| 275 | + <a href="' . geodir_get_addlisting_link($post_type).'" class="'.$sub_a_class.'"> |
|
| 276 | + ' . sprintf(__('Add %s', 'geodirectory'), $cpt_name).'
|
|
| 277 | 277 | </a> |
| 278 | 278 | </li>'; |
| 279 | 279 | } |
@@ -285,7 +285,7 @@ discard block |
||
| 285 | 285 | } |
| 286 | 286 | |
| 287 | 287 | $items .= ' </ul> '; |
| 288 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 288 | + $items .= apply_filters('geodir_menu_after_sub_ul', '');
|
|
| 289 | 289 | $items .= '</li>'; |
| 290 | 290 | |
| 291 | 291 | } |
@@ -313,14 +313,14 @@ discard block |
||
| 313 | 313 | $geodir_theme_location = get_option('geodir_theme_location_nav');
|
| 314 | 314 | $geodir_theme_location_nav = array(); |
| 315 | 315 | if (empty($locations) && empty($geodir_theme_location)) {
|
| 316 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 316 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items()."</ul></div>", $menu);
|
|
| 317 | 317 | $geodir_theme_location_nav[] = $args['theme_location']; |
| 318 | 318 | update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
|
| 319 | 319 | } |
| 320 | 320 | //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
| 321 | 321 | // $menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
|
| 322 | 322 | else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
| 323 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 323 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items()."</ul></div>", $menu);
|
|
| 324 | 324 | |
| 325 | 325 | return $menu; |
| 326 | 326 | |
@@ -348,7 +348,7 @@ discard block |
||
| 348 | 348 | |
| 349 | 349 | if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
|
| 350 | 350 | |
| 351 | - $items = $items . geodir_add_nav_menu_items(); |
|
| 351 | + $items = $items.geodir_add_nav_menu_items(); |
|
| 352 | 352 | return $items; |
| 353 | 353 | |
| 354 | 354 | } else {
|
@@ -373,12 +373,12 @@ discard block |
||
| 373 | 373 | |
| 374 | 374 | $taxonomies = geodir_get_taxonomies(); |
| 375 | 375 | $taxonomies = implode("','", $taxonomies);
|
| 376 | - $taxonomies = "'" . $taxonomies . "'"; |
|
| 376 | + $taxonomies = "'".$taxonomies."'"; |
|
| 377 | 377 | |
| 378 | 378 | $pn_categories = $wpdb->get_results( |
| 379 | 379 | $wpdb->prepare( |
| 380 | 380 | "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy, $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name", |
| 381 | - array($wpdb->terms . term_id) |
|
| 381 | + array($wpdb->terms.term_id) |
|
| 382 | 382 | ) |
| 383 | 383 | ); |
| 384 | 384 | |
@@ -407,7 +407,7 @@ discard block |
||
| 407 | 407 | |
| 408 | 408 | if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
| 409 | 409 | if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
| 410 | - $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 410 | + $geodir_post_type = get_post_type((int) $_REQUEST['pid']); |
|
| 411 | 411 | elseif (isset($_REQUEST['listing_type'])) |
| 412 | 412 | $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
| 413 | 413 | } |
@@ -425,7 +425,7 @@ discard block |
||
| 425 | 425 | if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
| 426 | 426 | $geodir_post_type = ''; |
| 427 | 427 | |
| 428 | - if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
|
| 428 | + if (defined('DOING_AJAX') && isset($_REQUEST['stype'])) {
|
|
| 429 | 429 | $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
| 430 | 430 | } |
| 431 | 431 | |
@@ -435,7 +435,7 @@ discard block |
||
| 435 | 435 | * |
| 436 | 436 | * @since 1.6.9 |
| 437 | 437 | */ |
| 438 | - return apply_filters('geodir_get_current_posttype',$geodir_post_type);
|
|
| 438 | + return apply_filters('geodir_get_current_posttype', $geodir_post_type);
|
|
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 441 | /** |
@@ -449,17 +449,17 @@ discard block |
||
| 449 | 449 | */ |
| 450 | 450 | function geodir_get_default_posttype() |
| 451 | 451 | {
|
| 452 | - $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) ); |
|
| 452 | + $post_types = apply_filters('geodir_get_default_posttype', geodir_get_posttypes('object'));
|
|
| 453 | 453 | |
| 454 | - foreach ( $post_types as $post_type => $info ) {
|
|
| 454 | + foreach ($post_types as $post_type => $info) {
|
|
| 455 | 455 | global $wpdb; |
| 456 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 457 | - if ( $has_posts ) {
|
|
| 456 | + $has_posts = $wpdb->get_row($wpdb->prepare("SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type));
|
|
| 457 | + if ($has_posts) {
|
|
| 458 | 458 | $stype = $post_type; break; |
| 459 | 459 | } |
| 460 | 460 | } |
| 461 | 461 | |
| 462 | - if(!$stype){
|
|
| 462 | + if (!$stype) {
|
|
| 463 | 463 | $stype = 'gd_place'; |
| 464 | 464 | } |
| 465 | 465 | |
@@ -484,14 +484,14 @@ discard block |
||
| 484 | 484 | switch ($output): |
| 485 | 485 | case 'object': |
| 486 | 486 | case 'Object': |
| 487 | - $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types; |
|
| 487 | + $post_types = json_decode(json_encode($post_types), FALSE); //(object)$post_types; |
|
| 488 | 488 | break; |
| 489 | 489 | case 'array': |
| 490 | 490 | case 'Array': |
| 491 | - $post_types = (array)$post_types; |
|
| 491 | + $post_types = (array) $post_types; |
|
| 492 | 492 | break; |
| 493 | 493 | case 'options': |
| 494 | - $post_types = (array)$post_types; |
|
| 494 | + $post_types = (array) $post_types; |
|
| 495 | 495 | |
| 496 | 496 | $options = array(); |
| 497 | 497 | if (!empty($post_types)) {
|
@@ -609,15 +609,15 @@ discard block |
||
| 609 | 609 | |
| 610 | 610 | $categories = get_terms($taxonomies); |
| 611 | 611 | |
| 612 | - $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
|
|
| 612 | + $html .= '<option value="0">'.__('All', 'geodirectory').'</option>';
|
|
| 613 | 613 | |
| 614 | 614 | foreach ($categories as $category_obj) {
|
| 615 | 615 | $select_opt = ''; |
| 616 | 616 | if ($selected == $category_obj->term_id) {
|
| 617 | 617 | $select_opt = 'selected="selected"'; |
| 618 | 618 | } |
| 619 | - $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">' |
|
| 620 | - . ucfirst($category_obj->name) . '</option>'; |
|
| 619 | + $html .= '<option '.$select_opt.' value="'.$category_obj->term_id.'">' |
|
| 620 | + . ucfirst($category_obj->name).'</option>'; |
|
| 621 | 621 | } |
| 622 | 622 | |
| 623 | 623 | if ($echo) |
@@ -685,7 +685,7 @@ discard block |
||
| 685 | 685 | } elseif (isset($wp_query->tax_query->queries)) {
|
| 686 | 686 | $tax_arr = $wp_query->tax_query->queries; |
| 687 | 687 | //if tax query has 'relation' set then it will break wp_list_pluck so we remove it |
| 688 | - if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
|
|
| 688 | + if (isset($tax_arr['relation'])) {unset($tax_arr['relation']); }
|
|
| 689 | 689 | $taxonomies = wp_list_pluck($tax_arr, 'taxonomy'); |
| 690 | 690 | } |
| 691 | 691 | |
@@ -739,7 +739,7 @@ discard block |
||
| 739 | 739 | |
| 740 | 740 | if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
|
| 741 | 741 | if ($cat_parent == 0) {
|
| 742 | - $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display; |
|
| 742 | + $list_class = 'main_list gd-parent-cats-list gd-cats-display-'.$cat_display; |
|
| 743 | 743 | $main_list_class = 'class="main_list_selecter"'; |
| 744 | 744 | } else {
|
| 745 | 745 | //$display = 'display:none'; |
@@ -749,7 +749,7 @@ discard block |
||
| 749 | 749 | |
| 750 | 750 | if ($cat_display == 'checkbox' || $cat_display == 'radio') {
|
| 751 | 751 | $p = 0; |
| 752 | - $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">'; |
|
| 752 | + $out = '<div class="'.$list_class.' gd-cat-row-'.$cat_parent.'" style="margin-left:'.$p.'px;'.$display.';">'; |
|
| 753 | 753 | } |
| 754 | 754 | |
| 755 | 755 | foreach ($cat_terms as $cat_term) {
|
@@ -764,12 +764,12 @@ discard block |
||
| 764 | 764 | } |
| 765 | 765 | |
| 766 | 766 | if ($cat_display == 'radio') |
| 767 | - $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 767 | + $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category['.$cat_term->taxonomy.'][]" '.$main_list_class.' alt="'.$cat_term->taxonomy.'" title="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.ucfirst($cat_term->name).'</span>'; |
|
| 768 | 768 | elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
| 769 | - $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>'; |
|
| 769 | + $out .= '<option '.$main_list_class.' style="margin-left:'.$p.'px;" alt="'.$cat_term->taxonomy.'" title="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' >'.$term_check.ucfirst($cat_term->name).'</option>'; |
|
| 770 | 770 | |
| 771 | 771 | else {
|
| 772 | - $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 772 | + $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category['.$cat_term->taxonomy.'][]" '.$main_list_class.' alt="'.$cat_term->taxonomy.'" title="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" '.$checked.$onchange.' id="gd-cat-'.$cat_term->term_id.'" >'.$term_check.ucfirst($cat_term->name).'</span>'; |
|
| 773 | 773 | } |
| 774 | 774 | |
| 775 | 775 | // Call recurson to print sub cats |
@@ -808,7 +808,7 @@ discard block |
||
| 808 | 808 | $cat_exclude = serialize($exclude_cats); |
| 809 | 809 | |
| 810 | 810 | if (isset($_REQUEST['backandedit'])) {
|
| 811 | - $post = (object)$gd_session->get('listing');
|
|
| 811 | + $post = (object) $gd_session->get('listing');
|
|
| 812 | 812 | |
| 813 | 813 | if (!is_array($post->post_category[$cat_taxonomy])) |
| 814 | 814 | $post_category = $post->post_category[$cat_taxonomy]; |
@@ -840,7 +840,7 @@ discard block |
||
| 840 | 840 | |
| 841 | 841 | if (!empty($post_category)) {
|
| 842 | 842 | $cat1 = array_filter(explode(',', $post_category));
|
| 843 | - $post_category = ',' . implode(',', $cat1) . ',';
|
|
| 843 | + $post_category = ','.implode(',', $cat1).',';
|
|
| 844 | 844 | |
| 845 | 845 | } |
| 846 | 846 | |
@@ -851,7 +851,7 @@ discard block |
||
| 851 | 851 | foreach ($post_category_upd as $cat) {
|
| 852 | 852 | |
| 853 | 853 | if (!in_array($cat, $exclude_cats) && $cat != '') {
|
| 854 | - $post_category_change .= ',' . $cat; |
|
| 854 | + $post_category_change .= ','.$cat; |
|
| 855 | 855 | } |
| 856 | 856 | } |
| 857 | 857 | $post_category = $post_category_change; |
@@ -863,11 +863,11 @@ discard block |
||
| 863 | 863 | } |
| 864 | 864 | } |
| 865 | 865 | |
| 866 | - echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']" />'; |
|
| 866 | + echo '<input type="hidden" id="cat_limit" value="'.$cat_limit.'" name="cat_limit['.$cat_taxonomy.']" />'; |
|
| 867 | 867 | |
| 868 | - echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']" />'; |
|
| 868 | + echo '<input type="hidden" id="post_category" value="'.$post_category.'" name="post_category['.$cat_taxonomy.']" />'; |
|
| 869 | 869 | |
| 870 | - echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']" />'; |
|
| 870 | + echo '<input type="hidden" id="post_category_str" value="'.$post_category_str.'" name="post_category_str['.$cat_taxonomy.']" />'; |
|
| 871 | 871 | |
| 872 | 872 | |
| 873 | 873 | ?> |
@@ -886,14 +886,14 @@ discard block |
||
| 886 | 886 | |
| 887 | 887 | function show_subcatlist(main_cat, catObj) {
|
| 888 | 888 | if (main_cat != '') {
|
| 889 | - var url = '<?php echo geodir_get_ajax_url();?>'; |
|
| 890 | - var cat_taxonomy = '<?php echo $cat_taxonomy;?>'; |
|
| 891 | - var cat_exclude = '<?php echo base64_encode($cat_exclude);?>'; |
|
| 889 | + var url = '<?php echo geodir_get_ajax_url(); ?>'; |
|
| 890 | + var cat_taxonomy = '<?php echo $cat_taxonomy; ?>'; |
|
| 891 | + var cat_exclude = '<?php echo base64_encode($cat_exclude); ?>'; |
|
| 892 | 892 | var cat_limit = jQuery('#' + cat_taxonomy).find('#cat_limit').val();
|
| 893 | - <?php if ((int)$cat_limit > 0) { ?>
|
|
| 893 | + <?php if ((int) $cat_limit > 0) { ?>
|
|
| 894 | 894 | var selected = parseInt(jQuery('#' + cat_taxonomy).find('.cat_sublist > div.post_catlist_item').length);
|
| 895 | 895 | if (cat_limit != '' && selected > 0 && selected >= cat_limit && cat_limit != 0) {
|
| 896 | - alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int)$cat_limit));?>");
|
|
| 896 | + alert("<?php echo esc_attr(wp_sprintf(__('You have reached category limit of %d categories.', 'geodirectory'), (int) $cat_limit)); ?>");
|
|
| 897 | 897 | return false; |
| 898 | 898 | } |
| 899 | 899 | <?php } ?> |
@@ -932,7 +932,7 @@ discard block |
||
| 932 | 932 | } |
| 933 | 933 | |
| 934 | 934 | function update_listing_cat(el) {
|
| 935 | - var cat_taxonomy = '<?php echo $cat_taxonomy;?>'; |
|
| 935 | + var cat_taxonomy = '<?php echo $cat_taxonomy; ?>'; |
|
| 936 | 936 | var cat_ids = ''; |
| 937 | 937 | var main_cat = ''; |
| 938 | 938 | var sub_cat = ''; |
@@ -1013,7 +1013,7 @@ discard block |
||
| 1013 | 1013 | <div class="main_cat_list" style=" <?php if (isset($style)) {
|
| 1014 | 1014 | echo $style; |
| 1015 | 1015 | }?> "> |
| 1016 | - <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list |
|
| 1016 | + <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list |
|
| 1017 | 1017 | ?> |
| 1018 | 1018 | </div> |
| 1019 | 1019 | <?php |
@@ -1040,9 +1040,9 @@ discard block |
||
| 1040 | 1040 | if ($exclude != '') {
|
| 1041 | 1041 | $exclude_cats = maybe_unserialize(base64_decode($exclude)); |
| 1042 | 1042 | |
| 1043 | - if(is_array( $exclude_cats)){
|
|
| 1044 | - $exclude_cats = array_map( 'intval', $exclude_cats ); |
|
| 1045 | - }else{
|
|
| 1043 | + if (is_array($exclude_cats)) {
|
|
| 1044 | + $exclude_cats = array_map('intval', $exclude_cats);
|
|
| 1045 | + } else {
|
|
| 1046 | 1046 | $exclude_cats = intval($exclude_cats); |
| 1047 | 1047 | } |
| 1048 | 1048 | |
@@ -1056,25 +1056,25 @@ discard block |
||
| 1056 | 1056 | <?php $main_cat = get_term($parrent, $request_taxonomy); ?> |
| 1057 | 1057 | |
| 1058 | 1058 | <div class="post_catlist_item" style="border:1px solid #CCCCCC; margin:5px auto; padding:5px;"> |
| 1059 | - <img alt="move icon" src="<?php echo geodir_plugin_url() . '/geodirectory-assets/images/move.png';?>" |
|
| 1059 | + <img alt="move icon" src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png'; ?>" |
|
| 1060 | 1060 | onclick="jQuery(this).closest('div').remove();update_listing_cat(this);" align="right"/>
|
| 1061 | 1061 | <?php /* ?> |
| 1062 | 1062 | <img src="<?php echo geodir_plugin_url().'/geodirectory-assets/images/move.png';?>" onclick="jQuery(this).closest('div').remove();show_subcatlist();" align="right" />
|
| 1063 | 1063 | <?php */ ?> |
| 1064 | 1064 | |
| 1065 | - <input type="checkbox" value="<?php echo $main_cat->term_id;?>" class="listing_main_cat" |
|
| 1065 | + <input type="checkbox" value="<?php echo $main_cat->term_id; ?>" class="listing_main_cat" |
|
| 1066 | 1066 | onchange="if(jQuery(this).is(':checked')){jQuery(this).closest('div').find('.post_default_category').prop('checked',false).show();}else{jQuery(this).closest('div').find('.post_default_category').prop('checked',false).hide();};update_listing_cat()"
|
| 1067 | 1067 | checked="checked" disabled="disabled"/> |
| 1068 | 1068 | <span> |
| 1069 | - <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
|
|
| 1069 | + <?php printf(__('Add listing in %s category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
|
|
| 1070 | 1070 | </span> |
| 1071 | 1071 | <br/> |
| 1072 | 1072 | |
| 1073 | 1073 | <div class="post_default_category"> |
| 1074 | - <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id;?>" |
|
| 1075 | - onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" ';?> /> |
|
| 1074 | + <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id; ?>" |
|
| 1075 | + onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" '; ?> /> |
|
| 1076 | 1076 | <span> |
| 1077 | - <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
|
|
| 1077 | + <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name)); ?>
|
|
| 1078 | 1078 | </span> |
| 1079 | 1079 | </div> |
| 1080 | 1080 | |
@@ -1107,7 +1107,7 @@ discard block |
||
| 1107 | 1107 | $post_cat_str = $post_categories[$request_taxonomy]; |
| 1108 | 1108 | $post_cat_array = explode("#", $post_cat_str);
|
| 1109 | 1109 | if (is_array($post_cat_array)) {
|
| 1110 | - $post_cat_array = array_unique( $post_cat_array ); |
|
| 1110 | + $post_cat_array = array_unique($post_cat_array); |
|
| 1111 | 1111 | |
| 1112 | 1112 | foreach ($post_cat_array as $post_cat_html) {
|
| 1113 | 1113 | |
@@ -1122,7 +1122,7 @@ discard block |
||
| 1122 | 1122 | } |
| 1123 | 1123 | $post_sub_catid = ''; |
| 1124 | 1124 | if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
| 1125 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1125 | + $post_sub_catid = (int) $post_cat_info[1]; |
|
| 1126 | 1126 | } |
| 1127 | 1127 | |
| 1128 | 1128 | geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
@@ -1143,7 +1143,7 @@ discard block |
||
| 1143 | 1143 | } |
| 1144 | 1144 | |
| 1145 | 1145 | if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
| 1146 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1146 | + $post_sub_catid = (int) $post_cat_info[1]; |
|
| 1147 | 1147 | } |
| 1148 | 1148 | |
| 1149 | 1149 | geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
@@ -1175,9 +1175,9 @@ discard block |
||
| 1175 | 1175 | if (!$selected) |
| 1176 | 1176 | $option_slected = ' selected="selected" '; |
| 1177 | 1177 | |
| 1178 | - echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
|
| 1178 | + echo '<select field_type="select" id="'.sanitize_text_field($cat_taxonomy).'" class="chosen_select" '.$onchange.' option-ajaxChosen="false" >'; |
|
| 1179 | 1179 | |
| 1180 | - echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
|
|
| 1180 | + echo '<option value="" '.$option_selected.' >'.__('Select Category', 'geodirectory').'</option>';
|
|
| 1181 | 1181 | |
| 1182 | 1182 | foreach ($cat_terms as $cat_term) {
|
| 1183 | 1183 | $option_selected = ''; |
@@ -1185,10 +1185,10 @@ discard block |
||
| 1185 | 1185 | $option_selected = ' selected="selected" '; |
| 1186 | 1186 | |
| 1187 | 1187 | // Count child terms |
| 1188 | - $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
|
| 1189 | - $has_child = !empty( $child_terms ) ? 't' : 'f'; |
|
| 1188 | + $child_terms = get_terms($cat_taxonomy, array('parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1));
|
|
| 1189 | + $has_child = !empty($child_terms) ? 't' : 'f'; |
|
| 1190 | 1190 | |
| 1191 | - echo '<option ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>'; |
|
| 1191 | + echo '<option '.$option_selected.' alt="'.$cat_term->taxonomy.'" title="'.ucfirst($cat_term->name).'" value="'.$cat_term->term_id.'" _hc="'.$has_child.'" >'.ucfirst($cat_term->name).'</option>'; |
|
| 1192 | 1192 | } |
| 1193 | 1193 | echo '</select>'; |
| 1194 | 1194 | } |
@@ -1219,7 +1219,7 @@ discard block |
||
| 1219 | 1219 | 2 => __('Custom field updated.', 'geodirectory'),
|
| 1220 | 1220 | 3 => __('Custom field deleted.', 'geodirectory'),
|
| 1221 | 1221 | 4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
|
| 1222 | - 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
|
|
| 1222 | + 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int) $_GET['revision'], false)) : false,
|
|
| 1223 | 1223 | 6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
| 1224 | 1224 | 7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
|
| 1225 | 1225 | 8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
@@ -1245,7 +1245,7 @@ discard block |
||
| 1245 | 1245 | |
| 1246 | 1246 | global $wpdb; |
| 1247 | 1247 | |
| 1248 | - $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
|
| 1248 | + $menu_icon = geodir_plugin_url().'/geodirectory-assets/images/favicon.ico'; |
|
| 1249 | 1249 | |
| 1250 | 1250 | if (!$listing_slug = get_option('geodir_listing_prefix'))
|
| 1251 | 1251 | $listing_slug = 'places'; |
@@ -1258,11 +1258,11 @@ discard block |
||
| 1258 | 1258 | |
| 1259 | 1259 | $gd_placetags = array(); |
| 1260 | 1260 | $gd_placetags['object_type'] = 'gd_place'; |
| 1261 | - $gd_placetags['listing_slug'] = $listing_slug . '/tags'; |
|
| 1261 | + $gd_placetags['listing_slug'] = $listing_slug.'/tags'; |
|
| 1262 | 1262 | $gd_placetags['args'] = array( |
| 1263 | 1263 | 'public' => true, |
| 1264 | 1264 | 'hierarchical' => false, |
| 1265 | - 'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1265 | + 'rewrite' => array('slug' => $listing_slug.'/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1266 | 1266 | 'query_var' => true, |
| 1267 | 1267 | |
| 1268 | 1268 | 'labels' => array( |
@@ -1356,7 +1356,7 @@ discard block |
||
| 1356 | 1356 | 'menu_icon' => $menu_icon, |
| 1357 | 1357 | 'public' => true, |
| 1358 | 1358 | 'query_var' => true, |
| 1359 | - 'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1359 | + 'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1360 | 1360 | 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
|
| 1361 | 1361 | 'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
|
| 1362 | 1362 | |
@@ -1378,27 +1378,27 @@ discard block |
||
| 1378 | 1378 | } |
| 1379 | 1379 | |
| 1380 | 1380 | $gd_wpml_get_languages = ""; |
| 1381 | -function gd_wpml_get_lang_from_url($url){
|
|
| 1381 | +function gd_wpml_get_lang_from_url($url) {
|
|
| 1382 | 1382 | |
| 1383 | 1383 | global $gd_wpml_get_languages; |
| 1384 | - if(isset($_REQUEST['lang']) && $_REQUEST['lang']){return $_REQUEST['lang'];}
|
|
| 1384 | + if (isset($_REQUEST['lang']) && $_REQUEST['lang']) {return $_REQUEST['lang']; }
|
|
| 1385 | 1385 | |
| 1386 | 1386 | |
| 1387 | 1387 | // |
| 1388 | - $url = str_replace(array("http://","https://"),"",$url);
|
|
| 1388 | + $url = str_replace(array("http://", "https://"), "", $url);
|
|
| 1389 | 1389 | |
| 1390 | 1390 | // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
|
| 1391 | - $site_url = str_replace(array("http://","https://"),"",site_url());
|
|
| 1391 | + $site_url = str_replace(array("http://", "https://"), "", site_url());
|
|
| 1392 | 1392 | |
| 1393 | - $url = str_replace($site_url,"",$url); |
|
| 1393 | + $url = str_replace($site_url, "", $url); |
|
| 1394 | 1394 | |
| 1395 | 1395 | |
| 1396 | 1396 | $segments = explode('/', trim($url, '/'));
|
| 1397 | 1397 | |
| 1398 | 1398 | //print_r( $segments); |
| 1399 | - if($gd_wpml_get_languages){
|
|
| 1399 | + if ($gd_wpml_get_languages) {
|
|
| 1400 | 1400 | $langs = $gd_wpml_get_languages; |
| 1401 | - }else{
|
|
| 1401 | + } else {
|
|
| 1402 | 1402 | global $sitepress; |
| 1403 | 1403 | $gd_wpml_get_languages = $sitepress->get_active_languages(); |
| 1404 | 1404 | } |
@@ -1463,17 +1463,17 @@ discard block |
||
| 1463 | 1463 | $slug = $post_types[$post->post_type]['rewrite']['slug']; |
| 1464 | 1464 | |
| 1465 | 1465 | // Alter the CPT slug if WPML is set to do so |
| 1466 | - if(function_exists('icl_object_id')){
|
|
| 1467 | - if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1466 | + if (function_exists('icl_object_id')) {
|
|
| 1467 | + if (gd_wpml_slug_translation_turned_on($post->post_type) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1468 | 1468 | |
| 1469 | 1469 | $org_slug = $slug; |
| 1470 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1470 | + $slug = apply_filters('wpml_translate_single_string',
|
|
| 1471 | 1471 | $slug, |
| 1472 | 1472 | 'WordPress', |
| 1473 | - 'URL slug: ' . $slug, |
|
| 1473 | + 'URL slug: '.$slug, |
|
| 1474 | 1474 | $language_code); |
| 1475 | 1475 | |
| 1476 | - if(!$slug){$slug = $org_slug;}
|
|
| 1476 | + if (!$slug) {$slug = $org_slug; }
|
|
| 1477 | 1477 | |
| 1478 | 1478 | } |
| 1479 | 1479 | } |
@@ -1495,11 +1495,11 @@ discard block |
||
| 1495 | 1495 | } |
| 1496 | 1496 | |
| 1497 | 1497 | $post_link = trailingslashit( |
| 1498 | - preg_replace( "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 ) |
|
| 1498 | + preg_replace("/".preg_quote($slug, "/")."/", $slug."/%gd_taxonomy%", $post_link, 1)
|
|
| 1499 | 1499 | ); |
| 1500 | 1500 | |
| 1501 | 1501 | if ($fix_url) {
|
| 1502 | - $post_link = $site_url . $post_link; |
|
| 1502 | + $post_link = $site_url.$post_link; |
|
| 1503 | 1503 | } |
| 1504 | 1504 | |
| 1505 | 1505 | if (isset($comment_post_cache[$post->ID])) {
|
@@ -1518,12 +1518,12 @@ discard block |
||
| 1518 | 1518 | $ID = $post->ID; |
| 1519 | 1519 | $post2 = $wpdb->get_row( |
| 1520 | 1520 | $wpdb->prepare( |
| 1521 | - "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1521 | + "SELECT * from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ", |
|
| 1522 | 1522 | array($post->ID) |
| 1523 | 1523 | ) |
| 1524 | 1524 | ); |
| 1525 | 1525 | |
| 1526 | - $post = (object)array_merge((array)$post, (array)$post2); |
|
| 1526 | + $post = (object) array_merge((array) $post, (array) $post2); |
|
| 1527 | 1527 | |
| 1528 | 1528 | $comment_post_cache[$post->ID] = $post; |
| 1529 | 1529 | } |
@@ -1532,7 +1532,7 @@ discard block |
||
| 1532 | 1532 | |
| 1533 | 1533 | if (false !== strpos($post_link, '%gd_taxonomy%')) {
|
| 1534 | 1534 | |
| 1535 | - if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
|
|
| 1535 | + if (apply_filters("geodir_add_location_url_to_url", get_option('geodir_add_location_url'), $post->post_type, $post)) {
|
|
| 1536 | 1536 | $location_request = ''; |
| 1537 | 1537 | |
| 1538 | 1538 | |
@@ -1546,7 +1546,7 @@ discard block |
||
| 1546 | 1546 | $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
| 1547 | 1547 | $post->country_slug = str_replace(']', '', $post->country_slug);
|
| 1548 | 1548 | |
| 1549 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1549 | + $post_location = (object) array('country_slug' => $post->country_slug,
|
|
| 1550 | 1550 | 'region_slug' => $post->region_slug, |
| 1551 | 1551 | 'city_slug' => $post->city_slug |
| 1552 | 1552 | ); |
@@ -1559,7 +1559,7 @@ discard block |
||
| 1559 | 1559 | |
| 1560 | 1560 | $post_location_sql = $wpdb->get_results( |
| 1561 | 1561 | $wpdb->prepare( |
| 1562 | - "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1562 | + "SELECT post_locations from ".$plugin_prefix.$post->post_type."_detail WHERE post_id = %d ", |
|
| 1563 | 1563 | array($post->ID) |
| 1564 | 1564 | ) |
| 1565 | 1565 | ); |
@@ -1575,7 +1575,7 @@ discard block |
||
| 1575 | 1575 | $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
| 1576 | 1576 | $post->country_slug = str_replace(']', '', $post->country_slug);
|
| 1577 | 1577 | |
| 1578 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1578 | + $post_location = (object) array('country_slug' => $post->country_slug,
|
|
| 1579 | 1579 | 'region_slug' => $post->region_slug, |
| 1580 | 1580 | 'city_slug' => $post->city_slug |
| 1581 | 1581 | ); |
@@ -1604,7 +1604,7 @@ discard block |
||
| 1604 | 1604 | } |
| 1605 | 1605 | $location_slug[] = $city_slug; |
| 1606 | 1606 | |
| 1607 | - $location_request .= implode('/', $location_slug) . '/';
|
|
| 1607 | + $location_request .= implode('/', $location_slug).'/';
|
|
| 1608 | 1608 | } |
| 1609 | 1609 | } |
| 1610 | 1610 | |
@@ -1662,9 +1662,9 @@ discard block |
||
| 1662 | 1662 | } |
| 1663 | 1663 | $request_term = trim($request_term, '/'); |
| 1664 | 1664 | if (!empty($request_term)) |
| 1665 | - $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1665 | + $post_link = str_replace('%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
|
|
| 1666 | 1666 | else |
| 1667 | - $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1667 | + $post_link = str_replace('/%gd_taxonomy%', $request_term.$detailurl_separator, $post_link);
|
|
| 1668 | 1668 | //echo $post_link ; |
| 1669 | 1669 | } |
| 1670 | 1670 | // temp cache the permalink |
@@ -1739,9 +1739,9 @@ discard block |
||
| 1739 | 1739 | $url_separator = ''; |
| 1740 | 1740 | |
| 1741 | 1741 | if (get_option('permalink_structure') != '') {
|
| 1742 | - $old_listing_slug = '/' . $listing_slug . '/'; |
|
| 1742 | + $old_listing_slug = '/'.$listing_slug.'/'; |
|
| 1743 | 1743 | $request_term = implode("/", $location_terms);
|
| 1744 | - $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/'; |
|
| 1744 | + $new_listing_slug = '/'.$listing_slug.'/'.$request_term.'/'; |
|
| 1745 | 1745 | |
| 1746 | 1746 | $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug)); |
| 1747 | 1747 | } else {
|
@@ -1761,25 +1761,25 @@ discard block |
||
| 1761 | 1761 | // Alter the CPT slug if WPML is set to do so |
| 1762 | 1762 | if (function_exists('icl_object_id')) {
|
| 1763 | 1763 | $post_types = get_option('geodir_post_types');
|
| 1764 | - $post_type = str_replace("category","",$taxonomy);
|
|
| 1765 | - $post_type = str_replace("_tags","",$post_type);
|
|
| 1764 | + $post_type = str_replace("category", "", $taxonomy);
|
|
| 1765 | + $post_type = str_replace("_tags", "", $post_type);
|
|
| 1766 | 1766 | $slug = $post_types[$post_type]['rewrite']['slug']; |
| 1767 | 1767 | if (gd_wpml_slug_translation_turned_on($post_type)) {
|
| 1768 | 1768 | global $sitepress; |
| 1769 | 1769 | $default_lang = $sitepress->get_default_language(); |
| 1770 | 1770 | $language_code = gd_wpml_get_lang_from_url($termlink); |
| 1771 | - if (!$language_code ) {
|
|
| 1772 | - $language_code = $default_lang; |
|
| 1771 | + if (!$language_code) {
|
|
| 1772 | + $language_code = $default_lang; |
|
| 1773 | 1773 | } |
| 1774 | 1774 | |
| 1775 | 1775 | $org_slug = $slug; |
| 1776 | - $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
|
|
| 1776 | + $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: '.$slug, $language_code);
|
|
| 1777 | 1777 | |
| 1778 | 1778 | if (!$slug) {
|
| 1779 | 1779 | $slug = $org_slug; |
| 1780 | 1780 | } |
| 1781 | 1781 | |
| 1782 | - $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug ,$termlink, 1));
|
|
| 1782 | + $termlink = trailingslashit(preg_replace("/".preg_quote($org_slug, "/")."/", $slug, $termlink, 1));
|
|
| 1783 | 1783 | } |
| 1784 | 1784 | } |
| 1785 | 1785 | } |
@@ -1809,7 +1809,7 @@ discard block |
||
| 1809 | 1809 | |
| 1810 | 1810 | if (in_array($post_type, geodir_get_posttypes())) {
|
| 1811 | 1811 | if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
|
| 1812 | - if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
|
|
| 1812 | + if (geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
|
|
| 1813 | 1813 | $location_terms = array( |
| 1814 | 1814 | 'gd_country' => $post->country_slug, |
| 1815 | 1815 | 'gd_region' => $post->region_slug, |
@@ -1826,7 +1826,7 @@ discard block |
||
| 1826 | 1826 | $location_terms = implode("/", $location_terms);
|
| 1827 | 1827 | $location_terms = rtrim($location_terms, '/'); |
| 1828 | 1828 | |
| 1829 | - $link .= urldecode($location_terms) . '/'; |
|
| 1829 | + $link .= urldecode($location_terms).'/'; |
|
| 1830 | 1830 | } else {
|
| 1831 | 1831 | $link = geodir_getlink($link, $location_terms); |
| 1832 | 1832 | } |
@@ -1908,9 +1908,9 @@ discard block |
||
| 1908 | 1908 | return 0; |
| 1909 | 1909 | $where = 't.term_id = %d'; |
| 1910 | 1910 | if (!empty($taxonomy)) |
| 1911 | - return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1911 | + return $wpdb->get_row($wpdb->prepare($tax_select.$where." AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1912 | 1912 | else |
| 1913 | - return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1913 | + return $wpdb->get_var($wpdb->prepare($select.$where, $term)); |
|
| 1914 | 1914 | } |
| 1915 | 1915 | |
| 1916 | 1916 | $term = trim(wp_unslash($term)); |
@@ -1922,7 +1922,7 @@ discard block |
||
| 1922 | 1922 | |
| 1923 | 1923 | $where_fields = array($slug); |
| 1924 | 1924 | if (!empty($taxonomy)) {
|
| 1925 | - $parent = (int)$parent; |
|
| 1925 | + $parent = (int) $parent; |
|
| 1926 | 1926 | if ($parent > 0) {
|
| 1927 | 1927 | $where_fields[] = $parent; |
| 1928 | 1928 | $else_where_fields[] = $parent; |
@@ -1985,13 +1985,13 @@ discard block |
||
| 1985 | 1985 | $post_types = geodir_get_posttypes(); |
| 1986 | 1986 | $tax_arr = array(); |
| 1987 | 1987 | foreach ($post_types as $post_type) {
|
| 1988 | - $tax_arr[] = "'" . $post_type . "category'"; |
|
| 1988 | + $tax_arr[] = "'".$post_type."category'"; |
|
| 1989 | 1989 | } |
| 1990 | 1990 | $tax_c = implode(',', $tax_arr);
|
| 1991 | 1991 | $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
|
| 1992 | 1992 | //$terms = get_terms( $taxonomy ); |
| 1993 | 1993 | |
| 1994 | - if($terms) {
|
|
| 1994 | + if ($terms) {
|
|
| 1995 | 1995 | foreach ($terms as $term) {
|
| 1996 | 1996 | $post_type = str_replace("category", "", $term->taxonomy);
|
| 1997 | 1997 | $a_terms[$post_type][] = $term; |
@@ -1999,7 +1999,7 @@ discard block |
||
| 1999 | 1999 | } |
| 2000 | 2000 | } |
| 2001 | 2001 | |
| 2002 | - if($a_terms) {
|
|
| 2002 | + if ($a_terms) {
|
|
| 2003 | 2003 | foreach ($a_terms as $pt => $t2) {
|
| 2004 | 2004 | |
| 2005 | 2005 | foreach ($t2 as $term) {
|
@@ -2024,7 +2024,7 @@ discard block |
||
| 2024 | 2024 | } |
| 2025 | 2025 | |
| 2026 | 2026 | if (is_ssl()) {
|
| 2027 | - $terms_icons = str_replace("http:","https:",$terms_icons );
|
|
| 2027 | + $terms_icons = str_replace("http:", "https:", $terms_icons);
|
|
| 2028 | 2028 | } |
| 2029 | 2029 | |
| 2030 | 2030 | return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
|
@@ -39,8 +39,9 @@ discard block |
||
| 39 | 39 | if (get_option('geodir_show_listing_nav')) {
|
| 40 | 40 | |
| 41 | 41 | $menu_class = ''; |
| 42 | - if (geodir_is_page('listing'))
|
|
| 43 | - $menu_class = 'current-menu-item'; |
|
| 42 | + if (geodir_is_page('listing')) { |
|
| 43 | + $menu_class = 'current-menu-item'; |
|
| 44 | + } |
|
| 44 | 45 | |
| 45 | 46 | |
| 46 | 47 | //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION |
@@ -52,8 +53,9 @@ discard block |
||
| 52 | 53 | if (in_array($post_type, $show_post_type_main_nav)) {
|
| 53 | 54 | if (get_post_type_archive_link($post_type)) {
|
| 54 | 55 | $menu_class = ''; |
| 55 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 56 | - $menu_class = 'current-menu-item'; |
|
| 56 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing')) { |
|
| 57 | + $menu_class = 'current-menu-item'; |
|
| 58 | + } |
|
| 57 | 59 | /** |
| 58 | 60 | * Filter the menu li class. |
| 59 | 61 | * |
@@ -130,8 +132,9 @@ discard block |
||
| 130 | 132 | if (get_post_type_archive_link($post_type)) {
|
| 131 | 133 | |
| 132 | 134 | $menu_class = ''; |
| 133 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 134 | - $menu_class = 'current-menu-item'; |
|
| 135 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing')) { |
|
| 136 | + $menu_class = 'current-menu-item'; |
|
| 137 | + } |
|
| 135 | 138 | |
| 136 | 139 | $items .= '<li class="' . $sub_li_class . '"> |
| 137 | 140 | <a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '"> |
@@ -159,8 +162,9 @@ discard block |
||
| 159 | 162 | if (get_option('geodir_show_addlisting_nav')) {
|
| 160 | 163 | |
| 161 | 164 | $menu_class = ''; |
| 162 | - if (geodir_is_page('add-listing'))
|
|
| 163 | - $menu_class = 'current-menu-item'; |
|
| 165 | + if (geodir_is_page('add-listing')) { |
|
| 166 | + $menu_class = 'current-menu-item'; |
|
| 167 | + } |
|
| 164 | 168 | |
| 165 | 169 | //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
| 166 | 170 | $post_types = geodir_get_posttypes('object');
|
@@ -176,8 +180,9 @@ discard block |
||
| 176 | 180 | if (geodir_get_addlisting_link($post_type)) {
|
| 177 | 181 | |
| 178 | 182 | $menu_class = ''; |
| 179 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 180 | - $menu_class = 'current-menu-item'; |
|
| 183 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing')) { |
|
| 184 | + $menu_class = 'current-menu-item'; |
|
| 185 | + } |
|
| 181 | 186 | /** |
| 182 | 187 | * Filter the menu li class. |
| 183 | 188 | * |
@@ -261,8 +266,9 @@ discard block |
||
| 261 | 266 | if (geodir_get_addlisting_link($post_type)) {
|
| 262 | 267 | |
| 263 | 268 | $menu_class = ''; |
| 264 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 265 | - $menu_class = 'current-menu-item'; |
|
| 269 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing')) { |
|
| 270 | + $menu_class = 'current-menu-item'; |
|
| 271 | + } |
|
| 266 | 272 | /** |
| 267 | 273 | * Filter the menu li class. |
| 268 | 274 | * |
@@ -319,8 +325,9 @@ discard block |
||
| 319 | 325 | } |
| 320 | 326 | //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
| 321 | 327 | // $menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
|
| 322 | - else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
|
| 323 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 328 | + else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) { |
|
| 329 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu); |
|
| 330 | + } |
|
| 324 | 331 | |
| 325 | 332 | return $menu; |
| 326 | 333 | |
@@ -406,24 +413,28 @@ discard block |
||
| 406 | 413 | $geodir_post_type = get_query_var('post_type');
|
| 407 | 414 | |
| 408 | 415 | if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
| 409 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 410 | - $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 411 | - elseif (isset($_REQUEST['listing_type'])) |
|
| 412 | - $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
|
| 416 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
| 417 | + $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 418 | + } elseif (isset($_REQUEST['listing_type'])) { |
|
| 419 | + $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
|
| 420 | + } |
|
| 413 | 421 | } |
| 414 | 422 | |
| 415 | - if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
|
|
| 416 | - $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 423 | + if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype'])) { |
|
| 424 | + $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 425 | + } |
|
| 417 | 426 | |
| 418 | - if (is_tax()) |
|
| 419 | - $geodir_post_type = geodir_get_taxonomy_posttype(); |
|
| 427 | + if (is_tax()) { |
|
| 428 | + $geodir_post_type = geodir_get_taxonomy_posttype(); |
|
| 429 | + } |
|
| 420 | 430 | |
| 421 | 431 | |
| 422 | 432 | $all_postypes = geodir_get_posttypes(); |
| 423 | 433 | $all_postypes = stripslashes_deep($all_postypes); |
| 424 | 434 | |
| 425 | - if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
|
| 426 | - $geodir_post_type = ''; |
|
| 435 | + if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) { |
|
| 436 | + $geodir_post_type = ''; |
|
| 437 | + } |
|
| 427 | 438 | |
| 428 | 439 | if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
| 429 | 440 | $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
@@ -508,11 +519,12 @@ discard block |
||
| 508 | 519 | endswitch; |
| 509 | 520 | } |
| 510 | 521 | |
| 511 | - if (!empty($post_types)) |
|
| 512 | - return $post_types; |
|
| 513 | - else |
|
| 514 | - return array(); |
|
| 515 | -} |
|
| 522 | + if (!empty($post_types)) { |
|
| 523 | + return $post_types; |
|
| 524 | + } else { |
|
| 525 | + return array(); |
|
| 526 | + } |
|
| 527 | + } |
|
| 516 | 528 | |
| 517 | 529 | /** |
| 518 | 530 | * Get Custom Post Type info. |
@@ -529,9 +541,10 @@ discard block |
||
| 529 | 541 | $post_types = stripslashes_deep($post_types); |
| 530 | 542 | if (!empty($post_types) && $post_type != '') {
|
| 531 | 543 | return $post_types[$post_type]; |
| 532 | - } else |
|
| 533 | - return false; |
|
| 534 | -} |
|
| 544 | + } else { |
|
| 545 | + return false; |
|
| 546 | + } |
|
| 547 | + } |
|
| 535 | 548 | |
| 536 | 549 | if (!function_exists('geodir_get_taxonomies')) {
|
| 537 | 550 | /** |
@@ -555,18 +568,21 @@ discard block |
||
| 555 | 568 | $gd_taxonomies = array_keys($taxonomies); |
| 556 | 569 | |
| 557 | 570 | |
| 558 | - if ($post_type != '') |
|
| 559 | - $gd_taxonomies = array(); |
|
| 571 | + if ($post_type != '') { |
|
| 572 | + $gd_taxonomies = array(); |
|
| 573 | + } |
|
| 560 | 574 | |
| 561 | 575 | $i = 0; |
| 562 | 576 | foreach ($taxonomies as $taxonomy => $args) {
|
| 563 | 577 | |
| 564 | - if ($post_type != '' && $args['object_type'] == $post_type) |
|
| 565 | - $gd_taxonomies[] = $taxonomy; |
|
| 578 | + if ($post_type != '' && $args['object_type'] == $post_type) { |
|
| 579 | + $gd_taxonomies[] = $taxonomy; |
|
| 580 | + } |
|
| 566 | 581 | |
| 567 | 582 | if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
|
| 568 | - if (array_search($taxonomy, $gd_taxonomies) !== false) |
|
| 569 | - unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
|
| 583 | + if (array_search($taxonomy, $gd_taxonomies) !== false) { |
|
| 584 | + unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
|
| 585 | + } |
|
| 570 | 586 | } |
| 571 | 587 | |
| 572 | 588 | } |
@@ -621,10 +637,11 @@ discard block |
||
| 621 | 637 | . ucfirst($category_obj->name) . '</option>'; |
| 622 | 638 | } |
| 623 | 639 | |
| 624 | - if ($echo) |
|
| 625 | - echo $html; |
|
| 626 | - else |
|
| 627 | - return $html; |
|
| 640 | + if ($echo) { |
|
| 641 | + echo $html; |
|
| 642 | + } else { |
|
| 643 | + return $html; |
|
| 644 | + } |
|
| 628 | 645 | } |
| 629 | 646 | } |
| 630 | 647 | |
@@ -658,11 +675,12 @@ discard block |
||
| 658 | 675 | |
| 659 | 676 | } |
| 660 | 677 | |
| 661 | - if (!empty($listing_slug)) |
|
| 662 | - return $listing_slug; |
|
| 663 | - else |
|
| 664 | - return false; |
|
| 665 | -} |
|
| 678 | + if (!empty($listing_slug)) { |
|
| 679 | + return $listing_slug; |
|
| 680 | + } else { |
|
| 681 | + return false; |
|
| 682 | + } |
|
| 683 | + } |
|
| 666 | 684 | |
| 667 | 685 | |
| 668 | 686 | /** |
@@ -693,16 +711,18 @@ discard block |
||
| 693 | 711 | if (!empty($taxonomies)) {
|
| 694 | 712 | foreach (geodir_get_posttypes() as $pt) {
|
| 695 | 713 | $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt); |
| 696 | - if (array_intersect($taxonomies, $object_taxonomies)) |
|
| 697 | - $post_type[] = $pt; |
|
| 714 | + if (array_intersect($taxonomies, $object_taxonomies)) { |
|
| 715 | + $post_type[] = $pt; |
|
| 716 | + } |
|
| 698 | 717 | } |
| 699 | 718 | } |
| 700 | 719 | |
| 701 | - if (!empty($post_type)) |
|
| 702 | - return $post_type[0]; |
|
| 703 | - else |
|
| 704 | - return false; |
|
| 705 | -} |
|
| 720 | + if (!empty($post_type)) { |
|
| 721 | + return $post_type[0]; |
|
| 722 | + } else { |
|
| 723 | + return false; |
|
| 724 | + } |
|
| 725 | + } |
|
| 706 | 726 | |
| 707 | 727 | if (!function_exists('geodir_custom_taxonomy_walker')) {
|
| 708 | 728 | /** |
@@ -758,18 +778,18 @@ discard block |
||
| 758 | 778 | $checked = ''; |
| 759 | 779 | |
| 760 | 780 | if (in_array($cat_term->term_id, $search_terms)) {
|
| 761 | - if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 762 | - $checked = 'selected="selected"'; |
|
| 763 | - else |
|
| 764 | - $checked = 'checked="checked"'; |
|
| 781 | + if ($cat_display == 'select' || $cat_display == 'multiselect') { |
|
| 782 | + $checked = 'selected="selected"'; |
|
| 783 | + } else { |
|
| 784 | + $checked = 'checked="checked"'; |
|
| 785 | + } |
|
| 765 | 786 | } |
| 766 | 787 | |
| 767 | - if ($cat_display == 'radio') |
|
| 768 | - $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 769 | - elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 770 | - $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>'; |
|
| 771 | - |
|
| 772 | - else {
|
|
| 788 | + if ($cat_display == 'radio') { |
|
| 789 | + $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 790 | + } elseif ($cat_display == 'select' || $cat_display == 'multiselect') { |
|
| 791 | + $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>'; |
|
| 792 | + } else {
|
|
| 773 | 793 | $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
| 774 | 794 | } |
| 775 | 795 | |
@@ -778,8 +798,9 @@ discard block |
||
| 778 | 798 | |
| 779 | 799 | } |
| 780 | 800 | |
| 781 | - if ($cat_display == 'checkbox' || $cat_display == 'radio') |
|
| 782 | - $out .= '</div>'; |
|
| 801 | + if ($cat_display == 'checkbox' || $cat_display == 'radio') { |
|
| 802 | + $out .= '</div>'; |
|
| 803 | + } |
|
| 783 | 804 | |
| 784 | 805 | return $out; |
| 785 | 806 | } |
@@ -805,18 +826,21 @@ discard block |
||
| 805 | 826 | global $exclude_cats, $gd_session; |
| 806 | 827 | |
| 807 | 828 | $cat_exclude = ''; |
| 808 | - if (is_array($exclude_cats) && !empty($exclude_cats)) |
|
| 809 | - $cat_exclude = serialize($exclude_cats); |
|
| 829 | + if (is_array($exclude_cats) && !empty($exclude_cats)) { |
|
| 830 | + $cat_exclude = serialize($exclude_cats); |
|
| 831 | + } |
|
| 810 | 832 | |
| 811 | 833 | if (isset($_REQUEST['backandedit'])) {
|
| 812 | 834 | $post = (object)$gd_session->get('listing');
|
| 813 | 835 | |
| 814 | - if (!is_array($post->post_category[$cat_taxonomy])) |
|
| 815 | - $post_category = $post->post_category[$cat_taxonomy]; |
|
| 836 | + if (!is_array($post->post_category[$cat_taxonomy])) { |
|
| 837 | + $post_category = $post->post_category[$cat_taxonomy]; |
|
| 838 | + } |
|
| 816 | 839 | |
| 817 | 840 | $post_categories = $post->post_category_str; |
| 818 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) |
|
| 819 | - $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 841 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) { |
|
| 842 | + $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 843 | + } |
|
| 820 | 844 | |
| 821 | 845 | } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
|
| 822 | 846 | global $post; |
@@ -1007,8 +1031,9 @@ discard block |
||
| 1007 | 1031 | if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
| 1008 | 1032 | $post_cat_str = $post_categories[$cat_taxonomy]; |
| 1009 | 1033 | $post_cat_array = explode("#", $post_cat_str);
|
| 1010 | - if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) |
|
| 1011 | - $style = "display:none;"; |
|
| 1034 | + if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) { |
|
| 1035 | + $style = "display:none;"; |
|
| 1036 | + } |
|
| 1012 | 1037 | } |
| 1013 | 1038 | ?> |
| 1014 | 1039 | <div class="main_cat_list" style=" <?php if (isset($style)) {
|
@@ -1043,7 +1068,7 @@ discard block |
||
| 1043 | 1068 | |
| 1044 | 1069 | if(is_array( $exclude_cats)){
|
| 1045 | 1070 | $exclude_cats = array_map( 'intval', $exclude_cats ); |
| 1046 | - }else{
|
|
| 1071 | + } else{
|
|
| 1047 | 1072 | $exclude_cats = intval($exclude_cats); |
| 1048 | 1073 | } |
| 1049 | 1074 | |
@@ -1073,7 +1098,10 @@ discard block |
||
| 1073 | 1098 | |
| 1074 | 1099 | <div class="post_default_category"> |
| 1075 | 1100 | <input type="radio" name="post_default_category" value="<?php echo $main_cat->term_id;?>" |
| 1076 | - onchange="update_listing_cat()" <?php if ($default) echo ' checked="checked" ';?> /> |
|
| 1101 | + onchange="update_listing_cat()" <?php if ($default) { |
|
| 1102 | + echo ' checked="checked" '; |
|
| 1103 | +} |
|
| 1104 | +?> /> |
|
| 1077 | 1105 | <span> |
| 1078 | 1106 | <?php printf(__('Set %s as default category', 'geodirectory'), geodir_ucwords($main_cat->name));?>
|
| 1079 | 1107 | </span> |
@@ -1173,8 +1201,9 @@ discard block |
||
| 1173 | 1201 | $onchange = ' onchange="show_subcatlist(this.value, this)" '; |
| 1174 | 1202 | |
| 1175 | 1203 | $option_selected = ''; |
| 1176 | - if (!$selected) |
|
| 1177 | - $option_slected = ' selected="selected" '; |
|
| 1204 | + if (!$selected) { |
|
| 1205 | + $option_slected = ' selected="selected" '; |
|
| 1206 | + } |
|
| 1178 | 1207 | |
| 1179 | 1208 | echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
| 1180 | 1209 | |
@@ -1182,8 +1211,9 @@ discard block |
||
| 1182 | 1211 | |
| 1183 | 1212 | foreach ($cat_terms as $cat_term) {
|
| 1184 | 1213 | $option_selected = ''; |
| 1185 | - if ($selected == $cat_term->term_id) |
|
| 1186 | - $option_selected = ' selected="selected" '; |
|
| 1214 | + if ($selected == $cat_term->term_id) { |
|
| 1215 | + $option_selected = ' selected="selected" '; |
|
| 1216 | + } |
|
| 1187 | 1217 | |
| 1188 | 1218 | // Count child terms |
| 1189 | 1219 | $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
@@ -1248,8 +1278,9 @@ discard block |
||
| 1248 | 1278 | |
| 1249 | 1279 | $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
| 1250 | 1280 | |
| 1251 | - if (!$listing_slug = get_option('geodir_listing_prefix'))
|
|
| 1252 | - $listing_slug = 'places'; |
|
| 1281 | + if (!$listing_slug = get_option('geodir_listing_prefix')) { |
|
| 1282 | + $listing_slug = 'places'; |
|
| 1283 | + } |
|
| 1253 | 1284 | |
| 1254 | 1285 | /** |
| 1255 | 1286 | * Taxonomies |
@@ -1399,7 +1430,7 @@ discard block |
||
| 1399 | 1430 | //print_r( $segments); |
| 1400 | 1431 | if($gd_wpml_get_languages){
|
| 1401 | 1432 | $langs = $gd_wpml_get_languages; |
| 1402 | - }else{
|
|
| 1433 | + } else{
|
|
| 1403 | 1434 | global $sitepress; |
| 1404 | 1435 | $gd_wpml_get_languages = $sitepress->get_active_languages(); |
| 1405 | 1436 | } |
@@ -1552,8 +1583,9 @@ discard block |
||
| 1552 | 1583 | 'city_slug' => $post->city_slug |
| 1553 | 1584 | ); |
| 1554 | 1585 | |
| 1555 | - } else |
|
| 1556 | - $post_location = geodir_get_location(); |
|
| 1586 | + } else { |
|
| 1587 | + $post_location = geodir_get_location(); |
|
| 1588 | + } |
|
| 1557 | 1589 | |
| 1558 | 1590 | |
| 1559 | 1591 | } else {
|
@@ -1582,8 +1614,9 @@ discard block |
||
| 1582 | 1614 | ); |
| 1583 | 1615 | |
| 1584 | 1616 | } |
| 1585 | - } else |
|
| 1586 | - $post_location = geodir_get_location(); |
|
| 1617 | + } else { |
|
| 1618 | + $post_location = geodir_get_location(); |
|
| 1619 | + } |
|
| 1587 | 1620 | } |
| 1588 | 1621 | |
| 1589 | 1622 | |
@@ -1626,8 +1659,9 @@ discard block |
||
| 1626 | 1659 | $post_terms = $post_terms[0]; |
| 1627 | 1660 | } |
| 1628 | 1661 | |
| 1629 | - if (!$post_terms) |
|
| 1630 | - $post_terms = geodir_get_post_meta($post->ID, 'default_category', true); |
|
| 1662 | + if (!$post_terms) { |
|
| 1663 | + $post_terms = geodir_get_post_meta($post->ID, 'default_category', true); |
|
| 1664 | + } |
|
| 1631 | 1665 | |
| 1632 | 1666 | if (!$post_terms) {
|
| 1633 | 1667 | $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true); |
@@ -1641,8 +1675,9 @@ discard block |
||
| 1641 | 1675 | |
| 1642 | 1676 | $term = get_term_by('id', $post_terms, $taxonomies);
|
| 1643 | 1677 | |
| 1644 | - if (!empty($term)) |
|
| 1645 | - $term_request = $term->slug; |
|
| 1678 | + if (!empty($term)) { |
|
| 1679 | + $term_request = $term->slug; |
|
| 1680 | + } |
|
| 1646 | 1681 | //$term_request = $term->slug.'/'; |
| 1647 | 1682 | } |
| 1648 | 1683 | |
@@ -1657,15 +1692,20 @@ discard block |
||
| 1657 | 1692 | $request_term .= $term_request; |
| 1658 | 1693 | |
| 1659 | 1694 | } else {
|
| 1660 | - if (isset($location_request) && $location_request != '') $request_term = $location_request; |
|
| 1695 | + if (isset($location_request) && $location_request != '') { |
|
| 1696 | + $request_term = $location_request; |
|
| 1697 | + } |
|
| 1661 | 1698 | |
| 1662 | - if (isset($term_request) && $term_request != '') $request_term .= $term_request; |
|
| 1699 | + if (isset($term_request) && $term_request != '') { |
|
| 1700 | + $request_term .= $term_request; |
|
| 1701 | + } |
|
| 1663 | 1702 | } |
| 1664 | 1703 | $request_term = trim($request_term, '/'); |
| 1665 | - if (!empty($request_term)) |
|
| 1666 | - $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1667 | - else |
|
| 1668 | - $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1704 | + if (!empty($request_term)) { |
|
| 1705 | + $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link); |
|
| 1706 | + } else { |
|
| 1707 | + $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link); |
|
| 1708 | + } |
|
| 1669 | 1709 | //echo $post_link ; |
| 1670 | 1710 | } |
| 1671 | 1711 | // temp cache the permalink |
@@ -1857,11 +1897,12 @@ discard block |
||
| 1857 | 1897 | |
| 1858 | 1898 | $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name; |
| 1859 | 1899 | |
| 1860 | - if ($echo) |
|
| 1861 | - echo $label; |
|
| 1862 | - else |
|
| 1863 | - return $label; |
|
| 1864 | -} |
|
| 1900 | + if ($echo) { |
|
| 1901 | + echo $label; |
|
| 1902 | + } else { |
|
| 1903 | + return $label; |
|
| 1904 | + } |
|
| 1905 | + } |
|
| 1865 | 1906 | |
| 1866 | 1907 | /** |
| 1867 | 1908 | * Print or Get post type plural label. |
@@ -1877,18 +1918,20 @@ discard block |
||
| 1877 | 1918 | function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
|
| 1878 | 1919 | $all_postypes = geodir_get_posttypes(); |
| 1879 | 1920 | |
| 1880 | - if (!in_array($post_type, $all_postypes)) |
|
| 1881 | - return false; |
|
| 1921 | + if (!in_array($post_type, $all_postypes)) { |
|
| 1922 | + return false; |
|
| 1923 | + } |
|
| 1882 | 1924 | |
| 1883 | 1925 | $obj_post_type = get_post_type_object($post_type); |
| 1884 | 1926 | |
| 1885 | 1927 | $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name; |
| 1886 | 1928 | |
| 1887 | - if ($echo) |
|
| 1888 | - echo $label; |
|
| 1889 | - else |
|
| 1890 | - return $label; |
|
| 1891 | -} |
|
| 1929 | + if ($echo) { |
|
| 1930 | + echo $label; |
|
| 1931 | + } else { |
|
| 1932 | + return $label; |
|
| 1933 | + } |
|
| 1934 | + } |
|
| 1892 | 1935 | |
| 1893 | 1936 | /** |
| 1894 | 1937 | * Checks whether a term exists or not. |
@@ -1911,19 +1954,22 @@ discard block |
||
| 1911 | 1954 | $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE "; |
| 1912 | 1955 | |
| 1913 | 1956 | if (is_int($term)) {
|
| 1914 | - if (0 == $term) |
|
| 1915 | - return 0; |
|
| 1957 | + if (0 == $term) { |
|
| 1958 | + return 0; |
|
| 1959 | + } |
|
| 1916 | 1960 | $where = 't.term_id = %d'; |
| 1917 | - if (!empty($taxonomy)) |
|
| 1918 | - return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1919 | - else |
|
| 1920 | - return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1961 | + if (!empty($taxonomy)) { |
|
| 1962 | + return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1963 | + } else { |
|
| 1964 | + return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1965 | + } |
|
| 1921 | 1966 | } |
| 1922 | 1967 | |
| 1923 | 1968 | $term = trim(wp_unslash($term)); |
| 1924 | 1969 | |
| 1925 | - if ('' === $slug = sanitize_title($term))
|
|
| 1926 | - return 0; |
|
| 1970 | + if ('' === $slug = sanitize_title($term)) { |
|
| 1971 | + return 0; |
|
| 1972 | + } |
|
| 1927 | 1973 | |
| 1928 | 1974 | $where = 't.slug = %s'; |
| 1929 | 1975 | |
@@ -1940,14 +1986,16 @@ discard block |
||
| 1940 | 1986 | $where_fields[] = $taxonomy; |
| 1941 | 1987 | |
| 1942 | 1988 | |
| 1943 | - if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
|
|
| 1944 | - return $result; |
|
| 1989 | + if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A)) { |
|
| 1990 | + return $result; |
|
| 1991 | + } |
|
| 1945 | 1992 | |
| 1946 | 1993 | return false; |
| 1947 | 1994 | } |
| 1948 | 1995 | |
| 1949 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
|
|
| 1950 | - return $result; |
|
| 1996 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields))) { |
|
| 1997 | + return $result; |
|
| 1998 | + } |
|
| 1951 | 1999 | |
| 1952 | 2000 | return false; |
| 1953 | 2001 | } |
@@ -33,265 +33,265 @@ discard block |
||
| 33 | 33 | */ |
| 34 | 34 | function geodir_add_nav_menu_items() |
| 35 | 35 | {
|
| 36 | - $items = ''; |
|
| 37 | - // apply filter to add more navigations // -Filter-Location-Manager |
|
| 38 | - |
|
| 39 | - if (get_option('geodir_show_listing_nav')) {
|
|
| 40 | - |
|
| 41 | - $menu_class = ''; |
|
| 42 | - if (geodir_is_page('listing'))
|
|
| 43 | - $menu_class = 'current-menu-item'; |
|
| 44 | - |
|
| 45 | - |
|
| 46 | - //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 47 | - $post_types = geodir_get_posttypes('object');
|
|
| 48 | - $show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
|
|
| 49 | - if (!empty($post_types)) {
|
|
| 50 | - foreach ($post_types as $post_type => $args) {
|
|
| 51 | - if (!empty($show_post_type_main_nav)) {
|
|
| 52 | - if (in_array($post_type, $show_post_type_main_nav)) {
|
|
| 53 | - if (get_post_type_archive_link($post_type)) {
|
|
| 54 | - $menu_class = ''; |
|
| 55 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 56 | - $menu_class = 'current-menu-item'; |
|
| 57 | - /** |
|
| 58 | - * Filter the menu li class. |
|
| 59 | - * |
|
| 60 | - * @since 1.0.0 |
|
| 61 | - * @param string $menu_class The menu HTML class. |
|
| 62 | - */ |
|
| 63 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 64 | - /** |
|
| 65 | - * Filter the menu a class. |
|
| 66 | - * |
|
| 67 | - * @since 1.0.0 |
|
| 68 | - */ |
|
| 69 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 70 | - $items .= '<li class="' . $li_class . '"> |
|
| 36 | + $items = ''; |
|
| 37 | + // apply filter to add more navigations // -Filter-Location-Manager |
|
| 38 | + |
|
| 39 | + if (get_option('geodir_show_listing_nav')) {
|
|
| 40 | + |
|
| 41 | + $menu_class = ''; |
|
| 42 | + if (geodir_is_page('listing'))
|
|
| 43 | + $menu_class = 'current-menu-item'; |
|
| 44 | + |
|
| 45 | + |
|
| 46 | + //SHOW LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 47 | + $post_types = geodir_get_posttypes('object');
|
|
| 48 | + $show_post_type_main_nav = get_option('geodir_add_posttype_in_main_nav');
|
|
| 49 | + if (!empty($post_types)) {
|
|
| 50 | + foreach ($post_types as $post_type => $args) {
|
|
| 51 | + if (!empty($show_post_type_main_nav)) {
|
|
| 52 | + if (in_array($post_type, $show_post_type_main_nav)) {
|
|
| 53 | + if (get_post_type_archive_link($post_type)) {
|
|
| 54 | + $menu_class = ''; |
|
| 55 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 56 | + $menu_class = 'current-menu-item'; |
|
| 57 | + /** |
|
| 58 | + * Filter the menu li class. |
|
| 59 | + * |
|
| 60 | + * @since 1.0.0 |
|
| 61 | + * @param string $menu_class The menu HTML class. |
|
| 62 | + */ |
|
| 63 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 64 | + /** |
|
| 65 | + * Filter the menu a class. |
|
| 66 | + * |
|
| 67 | + * @since 1.0.0 |
|
| 68 | + */ |
|
| 69 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 70 | + $items .= '<li class="' . $li_class . '"> |
|
| 71 | 71 | <a href="' . get_post_type_archive_link($post_type) . '" class="' . $a_class . '"> |
| 72 | 72 | ' . __(ucfirst($args->labels->name),'geodirectory') . ' |
| 73 | 73 | </a> |
| 74 | 74 | </li>'; |
| 75 | - } |
|
| 76 | - } |
|
| 77 | - } |
|
| 78 | - } |
|
| 79 | - } |
|
| 80 | - //END LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 81 | - |
|
| 82 | - $view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 83 | - $is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false; |
|
| 84 | - if ($is_listing_sub_meny_exists) {
|
|
| 85 | - /** |
|
| 86 | - * Filter the menu li class. |
|
| 87 | - * |
|
| 88 | - * @since 1.0.0 |
|
| 89 | - * @param string $menu_class The menu HTML class. |
|
| 90 | - */ |
|
| 91 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
|
|
| 92 | - /** |
|
| 93 | - * Filter the sub menu li class. |
|
| 94 | - * |
|
| 95 | - * @since 1.0.0 |
|
| 96 | - * @param string $menu_class The menu HTML class. |
|
| 97 | - */ |
|
| 98 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 99 | - /** |
|
| 100 | - * Filter the sub menu ul class. |
|
| 101 | - * |
|
| 102 | - * @since 1.0.0 |
|
| 103 | - */ |
|
| 104 | - $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 105 | - /** |
|
| 106 | - * Filter the menu a class. |
|
| 107 | - * |
|
| 108 | - * @since 1.0.0 |
|
| 109 | - */ |
|
| 110 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 111 | - /** |
|
| 112 | - * Filter the sub menu a class. |
|
| 113 | - * |
|
| 114 | - * @since 1.0.0 |
|
| 115 | - */ |
|
| 116 | - $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 117 | - $items .= '<li class="' . $li_class . '"> |
|
| 75 | + } |
|
| 76 | + } |
|
| 77 | + } |
|
| 78 | + } |
|
| 79 | + } |
|
| 80 | + //END LISTING OF POST TYPE IN MAIN NAVIGATION |
|
| 81 | + |
|
| 82 | + $view_posttype_listing = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 83 | + $is_listing_sub_meny_exists = (!empty($view_posttype_listing)) ? true : false; |
|
| 84 | + if ($is_listing_sub_meny_exists) {
|
|
| 85 | + /** |
|
| 86 | + * Filter the menu li class. |
|
| 87 | + * |
|
| 88 | + * @since 1.0.0 |
|
| 89 | + * @param string $menu_class The menu HTML class. |
|
| 90 | + */ |
|
| 91 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-listings ' . $menu_class);
|
|
| 92 | + /** |
|
| 93 | + * Filter the sub menu li class. |
|
| 94 | + * |
|
| 95 | + * @since 1.0.0 |
|
| 96 | + * @param string $menu_class The menu HTML class. |
|
| 97 | + */ |
|
| 98 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 99 | + /** |
|
| 100 | + * Filter the sub menu ul class. |
|
| 101 | + * |
|
| 102 | + * @since 1.0.0 |
|
| 103 | + */ |
|
| 104 | + $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 105 | + /** |
|
| 106 | + * Filter the menu a class. |
|
| 107 | + * |
|
| 108 | + * @since 1.0.0 |
|
| 109 | + */ |
|
| 110 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 111 | + /** |
|
| 112 | + * Filter the sub menu a class. |
|
| 113 | + * |
|
| 114 | + * @since 1.0.0 |
|
| 115 | + */ |
|
| 116 | + $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 117 | + $items .= '<li class="' . $li_class . '"> |
|
| 118 | 118 | <a href="#" class="' . $a_class . '">' . __('Listing', 'geodirectory') . '</a>
|
| 119 | 119 | <ul class="' . $sub_ul_class . '">'; |
| 120 | - $post_types = geodir_get_posttypes('object');
|
|
| 120 | + $post_types = geodir_get_posttypes('object');
|
|
| 121 | 121 | |
| 122 | - $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 122 | + $show_listing_post_types = get_option('geodir_add_posttype_in_listing_nav');
|
|
| 123 | 123 | |
| 124 | - if (!empty($post_types)) {
|
|
| 125 | - global $geodir_add_location_url; |
|
| 126 | - $geodir_add_location_url = true; |
|
| 127 | - foreach ($post_types as $post_type => $args) {
|
|
| 128 | - if (!empty($show_listing_post_types)) {
|
|
| 129 | - if (in_array($post_type, $show_listing_post_types)) {
|
|
| 130 | - if (get_post_type_archive_link($post_type)) {
|
|
| 124 | + if (!empty($post_types)) {
|
|
| 125 | + global $geodir_add_location_url; |
|
| 126 | + $geodir_add_location_url = true; |
|
| 127 | + foreach ($post_types as $post_type => $args) {
|
|
| 128 | + if (!empty($show_listing_post_types)) {
|
|
| 129 | + if (in_array($post_type, $show_listing_post_types)) {
|
|
| 130 | + if (get_post_type_archive_link($post_type)) {
|
|
| 131 | 131 | |
| 132 | - $menu_class = ''; |
|
| 133 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 134 | - $menu_class = 'current-menu-item'; |
|
| 132 | + $menu_class = ''; |
|
| 133 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('listing'))
|
|
| 134 | + $menu_class = 'current-menu-item'; |
|
| 135 | 135 | |
| 136 | - $items .= '<li class="' . $sub_li_class . '"> |
|
| 136 | + $items .= '<li class="' . $sub_li_class . '"> |
|
| 137 | 137 | <a href="' . get_post_type_archive_link($post_type) . '" class="' . $sub_a_class . '"> |
| 138 | 138 | ' . __(ucfirst($args->labels->name),'geodirectory') . ' |
| 139 | 139 | </a> |
| 140 | 140 | </li>'; |
| 141 | - } |
|
| 142 | - } |
|
| 143 | - } |
|
| 144 | - } |
|
| 145 | - $geodir_add_location_url = NULL; |
|
| 146 | - } |
|
| 141 | + } |
|
| 142 | + } |
|
| 143 | + } |
|
| 144 | + } |
|
| 145 | + $geodir_add_location_url = NULL; |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | - $items .= ' </ul> '; |
|
| 149 | - /** |
|
| 150 | - * Filter called after the sub menu closing ul tag for dynamic added menu items. |
|
| 151 | - * |
|
| 152 | - * @since 1.5.9 |
|
| 153 | - */ |
|
| 154 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 155 | - $items .= '</li>'; |
|
| 156 | - } |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - if (get_option('geodir_show_addlisting_nav')) {
|
|
| 160 | - |
|
| 161 | - $menu_class = ''; |
|
| 162 | - if (geodir_is_page('add-listing'))
|
|
| 163 | - $menu_class = 'current-menu-item'; |
|
| 164 | - |
|
| 165 | - //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 166 | - $post_types = geodir_get_posttypes('object');
|
|
| 167 | - $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
|
|
| 168 | - $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 169 | - |
|
| 170 | - if (!empty($post_types)) {
|
|
| 171 | - foreach ($post_types as $post_type => $args) {
|
|
| 172 | - if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 173 | - if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 174 | - if (!empty($show_add_listing_post_types_main_nav)) {
|
|
| 175 | - if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
|
|
| 176 | - if (geodir_get_addlisting_link($post_type)) {
|
|
| 177 | - |
|
| 178 | - $menu_class = ''; |
|
| 179 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 180 | - $menu_class = 'current-menu-item'; |
|
| 181 | - /** |
|
| 182 | - * Filter the menu li class. |
|
| 183 | - * |
|
| 184 | - * @since 1.0.0 |
|
| 185 | - * @param string $menu_class The menu HTML class. |
|
| 186 | - */ |
|
| 187 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 188 | - /** |
|
| 189 | - * Filter the menu a class. |
|
| 190 | - * |
|
| 191 | - * @since 1.0.0 |
|
| 192 | - */ |
|
| 193 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 194 | - $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 195 | - $items .= '<li class="' . $li_class . '"> |
|
| 148 | + $items .= ' </ul> '; |
|
| 149 | + /** |
|
| 150 | + * Filter called after the sub menu closing ul tag for dynamic added menu items. |
|
| 151 | + * |
|
| 152 | + * @since 1.5.9 |
|
| 153 | + */ |
|
| 154 | + $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 155 | + $items .= '</li>'; |
|
| 156 | + } |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + if (get_option('geodir_show_addlisting_nav')) {
|
|
| 160 | + |
|
| 161 | + $menu_class = ''; |
|
| 162 | + if (geodir_is_page('add-listing'))
|
|
| 163 | + $menu_class = 'current-menu-item'; |
|
| 164 | + |
|
| 165 | + //SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 166 | + $post_types = geodir_get_posttypes('object');
|
|
| 167 | + $show_add_listing_post_types_main_nav = get_option('geodir_add_listing_link_main_nav');
|
|
| 168 | + $geodir_allow_posttype_frontend = get_option('geodir_allow_posttype_frontend');
|
|
| 169 | + |
|
| 170 | + if (!empty($post_types)) {
|
|
| 171 | + foreach ($post_types as $post_type => $args) {
|
|
| 172 | + if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 173 | + if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 174 | + if (!empty($show_add_listing_post_types_main_nav)) {
|
|
| 175 | + if (in_array($post_type, $show_add_listing_post_types_main_nav)) {
|
|
| 176 | + if (geodir_get_addlisting_link($post_type)) {
|
|
| 177 | + |
|
| 178 | + $menu_class = ''; |
|
| 179 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 180 | + $menu_class = 'current-menu-item'; |
|
| 181 | + /** |
|
| 182 | + * Filter the menu li class. |
|
| 183 | + * |
|
| 184 | + * @since 1.0.0 |
|
| 185 | + * @param string $menu_class The menu HTML class. |
|
| 186 | + */ |
|
| 187 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 188 | + /** |
|
| 189 | + * Filter the menu a class. |
|
| 190 | + * |
|
| 191 | + * @since 1.0.0 |
|
| 192 | + */ |
|
| 193 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 194 | + $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 195 | + $items .= '<li class="' . $li_class . '"> |
|
| 196 | 196 | <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $a_class . '"> |
| 197 | 197 | ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
| 198 | 198 | </a> |
| 199 | 199 | </li>'; |
| 200 | - } |
|
| 201 | - } |
|
| 202 | - } |
|
| 203 | - } |
|
| 204 | - } |
|
| 205 | - } |
|
| 206 | - } |
|
| 207 | - //END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - $view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 211 | - $is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false; |
|
| 212 | - if ($is_add_listing_sub_meny_exists) {
|
|
| 213 | - |
|
| 214 | - if (get_option('geodir_show_addlisting_nav')) {
|
|
| 215 | - /** |
|
| 216 | - * Filter the menu li class. |
|
| 217 | - * |
|
| 218 | - * @since 1.0.0 |
|
| 219 | - * @param string $menu_class The menu HTML class. |
|
| 220 | - */ |
|
| 221 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
|
|
| 222 | - /** |
|
| 223 | - * Filter the sub menu li class. |
|
| 224 | - * |
|
| 225 | - * @since 1.0.0 |
|
| 226 | - * @param string $menu_class The menu HTML class. |
|
| 227 | - */ |
|
| 228 | - $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 229 | - /** |
|
| 230 | - * Filter the sub menu ul class. |
|
| 231 | - * |
|
| 232 | - * @since 1.0.0 |
|
| 233 | - */ |
|
| 234 | - $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 235 | - /** |
|
| 236 | - * Filter the menu a class. |
|
| 237 | - * |
|
| 238 | - * @since 1.0.0 |
|
| 239 | - */ |
|
| 240 | - $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 241 | - /** |
|
| 242 | - * Filter the sub menu a class. |
|
| 243 | - * |
|
| 244 | - * @since 1.0.0 |
|
| 245 | - */ |
|
| 246 | - $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 247 | - $items .= '<li class="' . $li_class . '"> |
|
| 200 | + } |
|
| 201 | + } |
|
| 202 | + } |
|
| 203 | + } |
|
| 204 | + } |
|
| 205 | + } |
|
| 206 | + } |
|
| 207 | + //END SHOW ADD LISTING POST TYPE IN MAIN NAVIGATION |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + $view_add_posttype_listing = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 211 | + $is_add_listing_sub_meny_exists = (!empty($view_add_posttype_listing)) ? true : false; |
|
| 212 | + if ($is_add_listing_sub_meny_exists) {
|
|
| 213 | + |
|
| 214 | + if (get_option('geodir_show_addlisting_nav')) {
|
|
| 215 | + /** |
|
| 216 | + * Filter the menu li class. |
|
| 217 | + * |
|
| 218 | + * @since 1.0.0 |
|
| 219 | + * @param string $menu_class The menu HTML class. |
|
| 220 | + */ |
|
| 221 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item menu-item-has-children menu-gd-add-listing ' . $menu_class);
|
|
| 222 | + /** |
|
| 223 | + * Filter the sub menu li class. |
|
| 224 | + * |
|
| 225 | + * @since 1.0.0 |
|
| 226 | + * @param string $menu_class The menu HTML class. |
|
| 227 | + */ |
|
| 228 | + $sub_li_class = apply_filters('geodir_sub_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 229 | + /** |
|
| 230 | + * Filter the sub menu ul class. |
|
| 231 | + * |
|
| 232 | + * @since 1.0.0 |
|
| 233 | + */ |
|
| 234 | + $sub_ul_class = apply_filters('geodir_sub_menu_ul_class', 'sub-menu');
|
|
| 235 | + /** |
|
| 236 | + * Filter the menu a class. |
|
| 237 | + * |
|
| 238 | + * @since 1.0.0 |
|
| 239 | + */ |
|
| 240 | + $a_class = apply_filters('geodir_menu_a_class', '');
|
|
| 241 | + /** |
|
| 242 | + * Filter the sub menu a class. |
|
| 243 | + * |
|
| 244 | + * @since 1.0.0 |
|
| 245 | + */ |
|
| 246 | + $sub_a_class = apply_filters('geodir_sub_menu_a_class', '');
|
|
| 247 | + $items .= '<li class="' . $li_class . '"> |
|
| 248 | 248 | <a href="#" class="' . $a_class . '">' . __('Add Listing', 'geodirectory') . '</a>
|
| 249 | 249 | <ul class="' . $sub_ul_class . '">'; |
| 250 | 250 | |
| 251 | - $post_types = geodir_get_posttypes('object');
|
|
| 252 | - |
|
| 253 | - $show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 254 | - |
|
| 255 | - if (!empty($post_types)) {
|
|
| 256 | - foreach ($post_types as $post_type => $args) {
|
|
| 257 | - if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 258 | - if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 259 | - if (!empty($show_add_listing_post_types)) {
|
|
| 260 | - if (in_array($post_type, $show_add_listing_post_types)) {
|
|
| 261 | - if (geodir_get_addlisting_link($post_type)) {
|
|
| 262 | - |
|
| 263 | - $menu_class = ''; |
|
| 264 | - if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 265 | - $menu_class = 'current-menu-item'; |
|
| 266 | - /** |
|
| 267 | - * Filter the menu li class. |
|
| 268 | - * |
|
| 269 | - * @since 1.0.0 |
|
| 270 | - * @param string $menu_class The menu HTML class. |
|
| 271 | - */ |
|
| 272 | - $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 273 | - $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 274 | - $items .= '<li class="' . $li_class . '"> |
|
| 251 | + $post_types = geodir_get_posttypes('object');
|
|
| 252 | + |
|
| 253 | + $show_add_listing_post_types = get_option('geodir_add_listing_link_add_listing_nav');
|
|
| 254 | + |
|
| 255 | + if (!empty($post_types)) {
|
|
| 256 | + foreach ($post_types as $post_type => $args) {
|
|
| 257 | + if (!empty($geodir_allow_posttype_frontend)) {
|
|
| 258 | + if (in_array($post_type, $geodir_allow_posttype_frontend)) {
|
|
| 259 | + if (!empty($show_add_listing_post_types)) {
|
|
| 260 | + if (in_array($post_type, $show_add_listing_post_types)) {
|
|
| 261 | + if (geodir_get_addlisting_link($post_type)) {
|
|
| 262 | + |
|
| 263 | + $menu_class = ''; |
|
| 264 | + if (geodir_get_current_posttype() == $post_type && geodir_is_page('add-listing'))
|
|
| 265 | + $menu_class = 'current-menu-item'; |
|
| 266 | + /** |
|
| 267 | + * Filter the menu li class. |
|
| 268 | + * |
|
| 269 | + * @since 1.0.0 |
|
| 270 | + * @param string $menu_class The menu HTML class. |
|
| 271 | + */ |
|
| 272 | + $li_class = apply_filters('geodir_menu_li_class', 'menu-item ' . $menu_class);
|
|
| 273 | + $cpt_name = __($args->labels->singular_name, 'geodirectory'); |
|
| 274 | + $items .= '<li class="' . $li_class . '"> |
|
| 275 | 275 | <a href="' . geodir_get_addlisting_link($post_type) . '" class="' . $sub_a_class . '"> |
| 276 | 276 | ' . sprintf( __('Add %s', 'geodirectory'), $cpt_name ) . '
|
| 277 | 277 | </a> |
| 278 | 278 | </li>'; |
| 279 | - } |
|
| 280 | - } |
|
| 281 | - } |
|
| 282 | - } |
|
| 283 | - } |
|
| 284 | - } |
|
| 285 | - } |
|
| 279 | + } |
|
| 280 | + } |
|
| 281 | + } |
|
| 282 | + } |
|
| 283 | + } |
|
| 284 | + } |
|
| 285 | + } |
|
| 286 | 286 | |
| 287 | - $items .= ' </ul> '; |
|
| 288 | - $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 289 | - $items .= '</li>'; |
|
| 287 | + $items .= ' </ul> '; |
|
| 288 | + $items .= apply_filters('geodir_menu_after_sub_ul','');
|
|
| 289 | + $items .= '</li>'; |
|
| 290 | 290 | |
| 291 | - } |
|
| 292 | - } |
|
| 293 | - // apply filter to add more navigations // -Filter-Location-Manager |
|
| 294 | - return $items; |
|
| 291 | + } |
|
| 292 | + } |
|
| 293 | + // apply filter to add more navigations // -Filter-Location-Manager |
|
| 294 | + return $items; |
|
| 295 | 295 | } |
| 296 | 296 | |
| 297 | 297 | |
@@ -309,20 +309,20 @@ discard block |
||
| 309 | 309 | */ |
| 310 | 310 | function geodir_pagemenu_items($menu, $args) |
| 311 | 311 | {
|
| 312 | - $locations = get_nav_menu_locations(); |
|
| 313 | - $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 314 | - $geodir_theme_location_nav = array(); |
|
| 315 | - if (empty($locations) && empty($geodir_theme_location)) {
|
|
| 316 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 317 | - $geodir_theme_location_nav[] = $args['theme_location']; |
|
| 318 | - update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
|
|
| 319 | - } |
|
| 320 | - //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
|
| 312 | + $locations = get_nav_menu_locations(); |
|
| 313 | + $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 314 | + $geodir_theme_location_nav = array(); |
|
| 315 | + if (empty($locations) && empty($geodir_theme_location)) {
|
|
| 316 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 317 | + $geodir_theme_location_nav[] = $args['theme_location']; |
|
| 318 | + update_option('geodir_theme_location_nav', $geodir_theme_location_nav);
|
|
| 319 | + } |
|
| 320 | + //else if(empty($geodir_theme_location)) // It means 'Show geodirectory navigation in selected menu locations' is not set yet. |
|
| 321 | 321 | // $menu = str_replace("</ul></div>",geodir_add_nav_menu_items()."</ul></div>",$menu);
|
| 322 | - else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
|
| 323 | - $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 322 | + else if (is_array($geodir_theme_location) && isset($args['theme_location']) && in_array($args['theme_location'], $geodir_theme_location)) |
|
| 323 | + $menu = str_replace("</ul></div>", geodir_add_nav_menu_items() . "</ul></div>", $menu);
|
|
| 324 | 324 | |
| 325 | - return $menu; |
|
| 325 | + return $menu; |
|
| 326 | 326 | |
| 327 | 327 | } |
| 328 | 328 | |
@@ -342,18 +342,18 @@ discard block |
||
| 342 | 342 | function geodir_menu_items($items, $args) |
| 343 | 343 | {
|
| 344 | 344 | |
| 345 | - $location = $args->theme_location; |
|
| 345 | + $location = $args->theme_location; |
|
| 346 | 346 | |
| 347 | - $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 347 | + $geodir_theme_location = get_option('geodir_theme_location_nav');
|
|
| 348 | 348 | |
| 349 | - if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
|
|
| 349 | + if (has_nav_menu($location) == '1' && is_array($geodir_theme_location) && in_array($location, $geodir_theme_location)) {
|
|
| 350 | 350 | |
| 351 | - $items = $items . geodir_add_nav_menu_items(); |
|
| 352 | - return $items; |
|
| 351 | + $items = $items . geodir_add_nav_menu_items(); |
|
| 352 | + return $items; |
|
| 353 | 353 | |
| 354 | - } else {
|
|
| 355 | - return $items; |
|
| 356 | - } |
|
| 354 | + } else {
|
|
| 355 | + return $items; |
|
| 356 | + } |
|
| 357 | 357 | } |
| 358 | 358 | |
| 359 | 359 | /** |
@@ -368,25 +368,25 @@ discard block |
||
| 368 | 368 | */ |
| 369 | 369 | function geodir_get_category_all_array() |
| 370 | 370 | {
|
| 371 | - global $wpdb; |
|
| 372 | - $return_array = array(); |
|
| 373 | - |
|
| 374 | - $taxonomies = geodir_get_taxonomies(); |
|
| 375 | - $taxonomies = implode("','", $taxonomies);
|
|
| 376 | - $taxonomies = "'" . $taxonomies . "'"; |
|
| 377 | - |
|
| 378 | - $pn_categories = $wpdb->get_results( |
|
| 379 | - $wpdb->prepare( |
|
| 380 | - "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy, $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name", |
|
| 381 | - array($wpdb->terms . term_id) |
|
| 382 | - ) |
|
| 383 | - ); |
|
| 384 | - |
|
| 385 | - foreach ($pn_categories as $pn_categories_obj) {
|
|
| 386 | - $return_array[] = array("id" => $pn_categories_obj->cat_ID,
|
|
| 387 | - "title" => $pn_categories_obj->name,); |
|
| 388 | - } |
|
| 389 | - return $return_array; |
|
| 371 | + global $wpdb; |
|
| 372 | + $return_array = array(); |
|
| 373 | + |
|
| 374 | + $taxonomies = geodir_get_taxonomies(); |
|
| 375 | + $taxonomies = implode("','", $taxonomies);
|
|
| 376 | + $taxonomies = "'" . $taxonomies . "'"; |
|
| 377 | + |
|
| 378 | + $pn_categories = $wpdb->get_results( |
|
| 379 | + $wpdb->prepare( |
|
| 380 | + "SELECT $wpdb->terms.name as name, $wpdb->term_taxonomy.count as count, $wpdb->terms.term_id as cat_ID FROM $wpdb->term_taxonomy, $wpdb->terms WHERE $wpdb->term_taxonomy.term_id = %d AND $wpdb->term_taxonomy.taxonomy in ( $taxonomies ) ORDER BY name", |
|
| 381 | + array($wpdb->terms . term_id) |
|
| 382 | + ) |
|
| 383 | + ); |
|
| 384 | + |
|
| 385 | + foreach ($pn_categories as $pn_categories_obj) {
|
|
| 386 | + $return_array[] = array("id" => $pn_categories_obj->cat_ID,
|
|
| 387 | + "title" => $pn_categories_obj->name,); |
|
| 388 | + } |
|
| 389 | + return $return_array; |
|
| 390 | 390 | } |
| 391 | 391 | |
| 392 | 392 | |
@@ -401,41 +401,41 @@ discard block |
||
| 401 | 401 | */ |
| 402 | 402 | function geodir_get_current_posttype() |
| 403 | 403 | {
|
| 404 | - global $wp_query, $geodir_post_type; |
|
| 404 | + global $wp_query, $geodir_post_type; |
|
| 405 | 405 | |
| 406 | - $geodir_post_type = get_query_var('post_type');
|
|
| 406 | + $geodir_post_type = get_query_var('post_type');
|
|
| 407 | 407 | |
| 408 | - if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
|
| 409 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 410 | - $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 411 | - elseif (isset($_REQUEST['listing_type'])) |
|
| 412 | - $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
|
| 413 | - } |
|
| 408 | + if (geodir_is_page('add-listing') || geodir_is_page('preview')) {
|
|
| 409 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 410 | + $geodir_post_type = get_post_type((int)$_REQUEST['pid']); |
|
| 411 | + elseif (isset($_REQUEST['listing_type'])) |
|
| 412 | + $geodir_post_type = sanitize_text_field($_REQUEST['listing_type']); |
|
| 413 | + } |
|
| 414 | 414 | |
| 415 | - if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
|
|
| 416 | - $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 415 | + if ((geodir_is_page('search') || geodir_is_page('author')) && isset($_REQUEST['stype']))
|
|
| 416 | + $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 417 | 417 | |
| 418 | - if (is_tax()) |
|
| 419 | - $geodir_post_type = geodir_get_taxonomy_posttype(); |
|
| 418 | + if (is_tax()) |
|
| 419 | + $geodir_post_type = geodir_get_taxonomy_posttype(); |
|
| 420 | 420 | |
| 421 | 421 | |
| 422 | - $all_postypes = geodir_get_posttypes(); |
|
| 423 | - $all_postypes = stripslashes_deep($all_postypes); |
|
| 422 | + $all_postypes = geodir_get_posttypes(); |
|
| 423 | + $all_postypes = stripslashes_deep($all_postypes); |
|
| 424 | 424 | |
| 425 | - if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
|
| 426 | - $geodir_post_type = ''; |
|
| 425 | + if (is_array($all_postypes) && !in_array($geodir_post_type, $all_postypes)) |
|
| 426 | + $geodir_post_type = ''; |
|
| 427 | 427 | |
| 428 | - if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
|
| 429 | - $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 430 | - } |
|
| 428 | + if( defined( 'DOING_AJAX' ) && isset($_REQUEST['stype'])){
|
|
| 429 | + $geodir_post_type = sanitize_text_field($_REQUEST['stype']); |
|
| 430 | + } |
|
| 431 | 431 | |
| 432 | 432 | |
| 433 | - /** |
|
| 434 | - * Filter the default CPT return. |
|
| 435 | - * |
|
| 436 | - * @since 1.6.9 |
|
| 437 | - */ |
|
| 438 | - return apply_filters('geodir_get_current_posttype',$geodir_post_type);
|
|
| 433 | + /** |
|
| 434 | + * Filter the default CPT return. |
|
| 435 | + * |
|
| 436 | + * @since 1.6.9 |
|
| 437 | + */ |
|
| 438 | + return apply_filters('geodir_get_current_posttype',$geodir_post_type);
|
|
| 439 | 439 | } |
| 440 | 440 | |
| 441 | 441 | /** |
@@ -449,22 +449,22 @@ discard block |
||
| 449 | 449 | */ |
| 450 | 450 | function geodir_get_default_posttype() |
| 451 | 451 | {
|
| 452 | - $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) ); |
|
| 453 | - |
|
| 454 | - $stype = false; |
|
| 455 | - foreach ( $post_types as $post_type => $info ) {
|
|
| 456 | - global $wpdb; |
|
| 457 | - $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 458 | - if ( $has_posts ) {
|
|
| 459 | - $stype = $post_type; break; |
|
| 460 | - } |
|
| 461 | - } |
|
| 462 | - |
|
| 463 | - if(!$stype){
|
|
| 464 | - $stype = 'gd_place'; |
|
| 465 | - } |
|
| 466 | - |
|
| 467 | - return $stype; |
|
| 452 | + $post_types = apply_filters( 'geodir_get_default_posttype', geodir_get_posttypes( 'object' ) ); |
|
| 453 | + |
|
| 454 | + $stype = false; |
|
| 455 | + foreach ( $post_types as $post_type => $info ) {
|
|
| 456 | + global $wpdb; |
|
| 457 | + $has_posts = $wpdb->get_row( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type = %s AND post_status='publish' LIMIT 1", $post_type ) ); |
|
| 458 | + if ( $has_posts ) {
|
|
| 459 | + $stype = $post_type; break; |
|
| 460 | + } |
|
| 461 | + } |
|
| 462 | + |
|
| 463 | + if(!$stype){
|
|
| 464 | + $stype = 'gd_place'; |
|
| 465 | + } |
|
| 466 | + |
|
| 467 | + return $stype; |
|
| 468 | 468 | } |
| 469 | 469 | |
| 470 | 470 | /** |
@@ -478,21 +478,21 @@ discard block |
||
| 478 | 478 | */ |
| 479 | 479 | function geodir_get_posttypes($output = 'names') |
| 480 | 480 | {
|
| 481 | - $post_types = array(); |
|
| 482 | - $post_types = get_option('geodir_post_types');
|
|
| 483 | - $post_types = stripslashes_deep($post_types); |
|
| 484 | - if (!empty($post_types)) {
|
|
| 485 | - switch ($output): |
|
| 486 | - case 'object': |
|
| 487 | - case 'Object': |
|
| 488 | - $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types; |
|
| 489 | - break; |
|
| 490 | - case 'array': |
|
| 491 | - case 'Array': |
|
| 492 | - $post_types = (array)$post_types; |
|
| 493 | - break; |
|
| 481 | + $post_types = array(); |
|
| 482 | + $post_types = get_option('geodir_post_types');
|
|
| 483 | + $post_types = stripslashes_deep($post_types); |
|
| 484 | + if (!empty($post_types)) {
|
|
| 485 | + switch ($output): |
|
| 486 | + case 'object': |
|
| 487 | + case 'Object': |
|
| 488 | + $post_types = json_decode(json_encode($post_types), FALSE);//(object)$post_types; |
|
| 489 | + break; |
|
| 490 | + case 'array': |
|
| 491 | + case 'Array': |
|
| 492 | + $post_types = (array)$post_types; |
|
| 493 | + break; |
|
| 494 | 494 | case 'options': |
| 495 | - $post_types = (array)$post_types; |
|
| 495 | + $post_types = (array)$post_types; |
|
| 496 | 496 | |
| 497 | 497 | $options = array(); |
| 498 | 498 | if (!empty($post_types)) {
|
@@ -501,17 +501,17 @@ discard block |
||
| 501 | 501 | } |
| 502 | 502 | } |
| 503 | 503 | $post_types = $options; |
| 504 | - break; |
|
| 505 | - default: |
|
| 506 | - $post_types = array_keys($post_types); |
|
| 507 | - break; |
|
| 508 | - endswitch; |
|
| 509 | - } |
|
| 510 | - |
|
| 511 | - if (!empty($post_types)) |
|
| 512 | - return $post_types; |
|
| 513 | - else |
|
| 514 | - return array(); |
|
| 504 | + break; |
|
| 505 | + default: |
|
| 506 | + $post_types = array_keys($post_types); |
|
| 507 | + break; |
|
| 508 | + endswitch; |
|
| 509 | + } |
|
| 510 | + |
|
| 511 | + if (!empty($post_types)) |
|
| 512 | + return $post_types; |
|
| 513 | + else |
|
| 514 | + return array(); |
|
| 515 | 515 | } |
| 516 | 516 | |
| 517 | 517 | /** |
@@ -524,108 +524,108 @@ discard block |
||
| 524 | 524 | */ |
| 525 | 525 | function geodir_get_posttype_info($post_type = '') |
| 526 | 526 | {
|
| 527 | - $post_types = array(); |
|
| 528 | - $post_types = get_option('geodir_post_types');
|
|
| 529 | - $post_types = stripslashes_deep($post_types); |
|
| 530 | - if (!empty($post_types) && $post_type != '') {
|
|
| 531 | - return $post_types[$post_type]; |
|
| 532 | - } else |
|
| 533 | - return false; |
|
| 527 | + $post_types = array(); |
|
| 528 | + $post_types = get_option('geodir_post_types');
|
|
| 529 | + $post_types = stripslashes_deep($post_types); |
|
| 530 | + if (!empty($post_types) && $post_type != '') {
|
|
| 531 | + return $post_types[$post_type]; |
|
| 532 | + } else |
|
| 533 | + return false; |
|
| 534 | 534 | } |
| 535 | 535 | |
| 536 | 536 | if (!function_exists('geodir_get_taxonomies')) {
|
| 537 | - /** |
|
| 538 | - * Get all custom taxonomies. |
|
| 539 | - * |
|
| 540 | - * @since 1.0.0 |
|
| 541 | - * @package GeoDirectory |
|
| 542 | - * @param string $post_type The post type. |
|
| 543 | - * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 544 | - * @return array|bool Taxonomies on success. false on failure. |
|
| 545 | - */ |
|
| 546 | - function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false) |
|
| 547 | - {
|
|
| 537 | + /** |
|
| 538 | + * Get all custom taxonomies. |
|
| 539 | + * |
|
| 540 | + * @since 1.0.0 |
|
| 541 | + * @package GeoDirectory |
|
| 542 | + * @param string $post_type The post type. |
|
| 543 | + * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 544 | + * @return array|bool Taxonomies on success. false on failure. |
|
| 545 | + */ |
|
| 546 | + function geodir_get_taxonomies($post_type = '', $tages_taxonomies = false) |
|
| 547 | + {
|
|
| 548 | 548 | |
| 549 | - $taxonomies = array(); |
|
| 550 | - $gd_taxonomies = array(); |
|
| 549 | + $taxonomies = array(); |
|
| 550 | + $gd_taxonomies = array(); |
|
| 551 | 551 | |
| 552 | - if ($taxonomies = get_option('geodir_taxonomies')) {
|
|
| 552 | + if ($taxonomies = get_option('geodir_taxonomies')) {
|
|
| 553 | 553 | |
| 554 | 554 | |
| 555 | - $gd_taxonomies = array_keys($taxonomies); |
|
| 555 | + $gd_taxonomies = array_keys($taxonomies); |
|
| 556 | 556 | |
| 557 | 557 | |
| 558 | - if ($post_type != '') |
|
| 559 | - $gd_taxonomies = array(); |
|
| 558 | + if ($post_type != '') |
|
| 559 | + $gd_taxonomies = array(); |
|
| 560 | 560 | |
| 561 | - $i = 0; |
|
| 562 | - foreach ($taxonomies as $taxonomy => $args) {
|
|
| 561 | + $i = 0; |
|
| 562 | + foreach ($taxonomies as $taxonomy => $args) {
|
|
| 563 | 563 | |
| 564 | - if ($post_type != '' && $args['object_type'] == $post_type) |
|
| 565 | - $gd_taxonomies[] = $taxonomy; |
|
| 564 | + if ($post_type != '' && $args['object_type'] == $post_type) |
|
| 565 | + $gd_taxonomies[] = $taxonomy; |
|
| 566 | 566 | |
| 567 | - if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
|
|
| 568 | - if (array_search($taxonomy, $gd_taxonomies) !== false) |
|
| 569 | - unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
|
| 570 | - } |
|
| 567 | + if ($tages_taxonomies === false && strpos($taxonomy, '_tag') !== false) {
|
|
| 568 | + if (array_search($taxonomy, $gd_taxonomies) !== false) |
|
| 569 | + unset($gd_taxonomies[array_search($taxonomy, $gd_taxonomies)]); |
|
| 570 | + } |
|
| 571 | 571 | |
| 572 | - } |
|
| 572 | + } |
|
| 573 | + |
|
| 574 | + $gd_taxonomies = array_values($gd_taxonomies); |
|
| 575 | + } |
|
| 573 | 576 | |
| 574 | - $gd_taxonomies = array_values($gd_taxonomies); |
|
| 575 | - } |
|
| 576 | - |
|
| 577 | - /** |
|
| 578 | - * Filter the taxonomies. |
|
| 579 | - * |
|
| 580 | - * @since 1.0.0 |
|
| 581 | - * @param array $gd_taxonomies The taxonomy array. |
|
| 582 | - */ |
|
| 583 | - $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
|
|
| 584 | - |
|
| 585 | - if (!empty($taxonomies)) {
|
|
| 586 | - return $taxonomies; |
|
| 587 | - } else {
|
|
| 588 | - return false; |
|
| 589 | - } |
|
| 590 | - } |
|
| 577 | + /** |
|
| 578 | + * Filter the taxonomies. |
|
| 579 | + * |
|
| 580 | + * @since 1.0.0 |
|
| 581 | + * @param array $gd_taxonomies The taxonomy array. |
|
| 582 | + */ |
|
| 583 | + $taxonomies = apply_filters('geodir_taxonomy', $gd_taxonomies);
|
|
| 584 | + |
|
| 585 | + if (!empty($taxonomies)) {
|
|
| 586 | + return $taxonomies; |
|
| 587 | + } else {
|
|
| 588 | + return false; |
|
| 589 | + } |
|
| 590 | + } |
|
| 591 | 591 | } |
| 592 | 592 | |
| 593 | 593 | if (!function_exists(' geodir_get_categories_dl')) {
|
| 594 | - /** |
|
| 595 | - * Get categories dropdown HTML. |
|
| 596 | - * |
|
| 597 | - * @since 1.0.0 |
|
| 598 | - * @package GeoDirectory |
|
| 599 | - * @param string $post_type The post type. |
|
| 600 | - * @param string $selected The selected value. |
|
| 601 | - * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 602 | - * @param bool $echo Prints the HTML when set to true. Default: true. |
|
| 603 | - * @return void|string Dropdown HTML. |
|
| 604 | - */ |
|
| 605 | - function geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true) |
|
| 606 | - {
|
|
| 607 | - |
|
| 608 | - $html = ''; |
|
| 609 | - $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies); |
|
| 610 | - |
|
| 611 | - $categories = get_terms($taxonomies); |
|
| 612 | - |
|
| 613 | - $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
|
|
| 614 | - |
|
| 615 | - foreach ($categories as $category_obj) {
|
|
| 616 | - $select_opt = ''; |
|
| 617 | - if ($selected == $category_obj->term_id) {
|
|
| 618 | - $select_opt = 'selected="selected"'; |
|
| 619 | - } |
|
| 620 | - $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">' |
|
| 621 | - . ucfirst($category_obj->name) . '</option>'; |
|
| 622 | - } |
|
| 623 | - |
|
| 624 | - if ($echo) |
|
| 625 | - echo $html; |
|
| 626 | - else |
|
| 627 | - return $html; |
|
| 628 | - } |
|
| 594 | + /** |
|
| 595 | + * Get categories dropdown HTML. |
|
| 596 | + * |
|
| 597 | + * @since 1.0.0 |
|
| 598 | + * @package GeoDirectory |
|
| 599 | + * @param string $post_type The post type. |
|
| 600 | + * @param string $selected The selected value. |
|
| 601 | + * @param bool $tages_taxonomies Is this a tag taxonomy?. Default: false. |
|
| 602 | + * @param bool $echo Prints the HTML when set to true. Default: true. |
|
| 603 | + * @return void|string Dropdown HTML. |
|
| 604 | + */ |
|
| 605 | + function geodir_get_categories_dl($post_type = '', $selected = '', $tages_taxonomies = false, $echo = true) |
|
| 606 | + {
|
|
| 607 | + |
|
| 608 | + $html = ''; |
|
| 609 | + $taxonomies = geodir_get_taxonomies($post_type, $tages_taxonomies); |
|
| 610 | + |
|
| 611 | + $categories = get_terms($taxonomies); |
|
| 612 | + |
|
| 613 | + $html .= '<option value="0">' . __('All', 'geodirectory') . '</option>';
|
|
| 614 | + |
|
| 615 | + foreach ($categories as $category_obj) {
|
|
| 616 | + $select_opt = ''; |
|
| 617 | + if ($selected == $category_obj->term_id) {
|
|
| 618 | + $select_opt = 'selected="selected"'; |
|
| 619 | + } |
|
| 620 | + $html .= '<option ' . $select_opt . ' value="' . $category_obj->term_id . '">' |
|
| 621 | + . ucfirst($category_obj->name) . '</option>'; |
|
| 622 | + } |
|
| 623 | + |
|
| 624 | + if ($echo) |
|
| 625 | + echo $html; |
|
| 626 | + else |
|
| 627 | + return $html; |
|
| 628 | + } |
|
| 629 | 629 | } |
| 630 | 630 | |
| 631 | 631 | |
@@ -640,28 +640,28 @@ discard block |
||
| 640 | 640 | function geodir_get_listing_slug($object_type = '') |
| 641 | 641 | {
|
| 642 | 642 | |
| 643 | - $listing_slug = ''; |
|
| 643 | + $listing_slug = ''; |
|
| 644 | 644 | |
| 645 | - $post_types = get_option('geodir_post_types');
|
|
| 646 | - $taxonomies = get_option('geodir_taxonomies');
|
|
| 645 | + $post_types = get_option('geodir_post_types');
|
|
| 646 | + $taxonomies = get_option('geodir_taxonomies');
|
|
| 647 | 647 | |
| 648 | 648 | |
| 649 | - if ($object_type != '') {
|
|
| 650 | - if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
|
|
| 649 | + if ($object_type != '') {
|
|
| 650 | + if (!empty($post_types) && array_key_exists($object_type, $post_types)) {
|
|
| 651 | 651 | |
| 652 | - $object_info = $post_types[$object_type]; |
|
| 653 | - $listing_slug = $object_info['listing_slug']; |
|
| 654 | - } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
|
|
| 655 | - $object_info = $taxonomies[$object_type]; |
|
| 656 | - $listing_slug = $object_info['listing_slug']; |
|
| 657 | - } |
|
| 652 | + $object_info = $post_types[$object_type]; |
|
| 653 | + $listing_slug = $object_info['listing_slug']; |
|
| 654 | + } elseif (!empty($taxonomies) && array_key_exists($object_type, $taxonomies)) {
|
|
| 655 | + $object_info = $taxonomies[$object_type]; |
|
| 656 | + $listing_slug = $object_info['listing_slug']; |
|
| 657 | + } |
|
| 658 | 658 | |
| 659 | - } |
|
| 659 | + } |
|
| 660 | 660 | |
| 661 | - if (!empty($listing_slug)) |
|
| 662 | - return $listing_slug; |
|
| 663 | - else |
|
| 664 | - return false; |
|
| 661 | + if (!empty($listing_slug)) |
|
| 662 | + return $listing_slug; |
|
| 663 | + else |
|
| 664 | + return false; |
|
| 665 | 665 | } |
| 666 | 666 | |
| 667 | 667 | |
@@ -676,212 +676,212 @@ discard block |
||
| 676 | 676 | */ |
| 677 | 677 | function geodir_get_taxonomy_posttype($taxonomy = '') |
| 678 | 678 | {
|
| 679 | - global $wp_query; |
|
| 680 | - |
|
| 681 | - $post_type = array(); |
|
| 682 | - $taxonomies = array(); |
|
| 683 | - |
|
| 684 | - if (!empty($taxonomy)) {
|
|
| 685 | - $taxonomies[] = $taxonomy; |
|
| 686 | - } elseif (isset($wp_query->tax_query->queries)) {
|
|
| 687 | - $tax_arr = $wp_query->tax_query->queries; |
|
| 688 | - //if tax query has 'relation' set then it will break wp_list_pluck so we remove it |
|
| 689 | - if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
|
|
| 690 | - $taxonomies = wp_list_pluck($tax_arr, 'taxonomy'); |
|
| 691 | - } |
|
| 692 | - |
|
| 693 | - if (!empty($taxonomies)) {
|
|
| 694 | - foreach (geodir_get_posttypes() as $pt) {
|
|
| 695 | - $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt); |
|
| 696 | - if (array_intersect($taxonomies, $object_taxonomies)) |
|
| 697 | - $post_type[] = $pt; |
|
| 698 | - } |
|
| 699 | - } |
|
| 700 | - |
|
| 701 | - if (!empty($post_type)) |
|
| 702 | - return $post_type[0]; |
|
| 703 | - else |
|
| 704 | - return false; |
|
| 679 | + global $wp_query; |
|
| 680 | + |
|
| 681 | + $post_type = array(); |
|
| 682 | + $taxonomies = array(); |
|
| 683 | + |
|
| 684 | + if (!empty($taxonomy)) {
|
|
| 685 | + $taxonomies[] = $taxonomy; |
|
| 686 | + } elseif (isset($wp_query->tax_query->queries)) {
|
|
| 687 | + $tax_arr = $wp_query->tax_query->queries; |
|
| 688 | + //if tax query has 'relation' set then it will break wp_list_pluck so we remove it |
|
| 689 | + if(isset( $tax_arr['relation'])){unset( $tax_arr['relation']);}
|
|
| 690 | + $taxonomies = wp_list_pluck($tax_arr, 'taxonomy'); |
|
| 691 | + } |
|
| 692 | + |
|
| 693 | + if (!empty($taxonomies)) {
|
|
| 694 | + foreach (geodir_get_posttypes() as $pt) {
|
|
| 695 | + $object_taxonomies = $pt === 'attachment' ? get_taxonomies_for_attachments() : get_object_taxonomies($pt); |
|
| 696 | + if (array_intersect($taxonomies, $object_taxonomies)) |
|
| 697 | + $post_type[] = $pt; |
|
| 698 | + } |
|
| 699 | + } |
|
| 700 | + |
|
| 701 | + if (!empty($post_type)) |
|
| 702 | + return $post_type[0]; |
|
| 703 | + else |
|
| 704 | + return false; |
|
| 705 | 705 | } |
| 706 | 706 | |
| 707 | 707 | if (!function_exists('geodir_custom_taxonomy_walker')) {
|
| 708 | - /** |
|
| 709 | - * Custom taxonomy walker function. |
|
| 710 | - * |
|
| 711 | - * @since 1.0.0 |
|
| 712 | - * @package GeoDirectory |
|
| 713 | - * @param string $cat_taxonomy The taxonomy name. |
|
| 714 | - * @param int $cat_parent The parent term ID. |
|
| 715 | - * @param bool $hide_empty Hide empty taxonomies? Default: false. |
|
| 716 | - * @param int $pading CSS padding in pixels. |
|
| 717 | - * @return string|void taxonomy HTML. |
|
| 718 | - */ |
|
| 719 | - function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0) |
|
| 720 | - {
|
|
| 721 | - global $cat_display, $post_cat, $exclude_cats; |
|
| 722 | - |
|
| 723 | - $search_terms = trim($post_cat, ","); |
|
| 724 | - |
|
| 725 | - $search_terms = explode(",", $search_terms);
|
|
| 726 | - |
|
| 727 | - $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
|
|
| 728 | - |
|
| 729 | - $display = ''; |
|
| 730 | - $onchange = ''; |
|
| 731 | - $term_check = ''; |
|
| 732 | - $main_list_class = ''; |
|
| 733 | - $out = ''; |
|
| 734 | - //If there are terms, start displaying |
|
| 735 | - if (count($cat_terms) > 0) {
|
|
| 736 | - //Displaying as a list |
|
| 737 | - $p = $pading * 20; |
|
| 738 | - $pading++; |
|
| 739 | - |
|
| 740 | - |
|
| 741 | - if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
|
|
| 742 | - if ($cat_parent == 0) {
|
|
| 743 | - $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display; |
|
| 744 | - $main_list_class = 'class="main_list_selecter"'; |
|
| 745 | - } else {
|
|
| 746 | - //$display = 'display:none'; |
|
| 747 | - $list_class = 'sub_list gd-sub-cats-list'; |
|
| 748 | - } |
|
| 749 | - } |
|
| 708 | + /** |
|
| 709 | + * Custom taxonomy walker function. |
|
| 710 | + * |
|
| 711 | + * @since 1.0.0 |
|
| 712 | + * @package GeoDirectory |
|
| 713 | + * @param string $cat_taxonomy The taxonomy name. |
|
| 714 | + * @param int $cat_parent The parent term ID. |
|
| 715 | + * @param bool $hide_empty Hide empty taxonomies? Default: false. |
|
| 716 | + * @param int $pading CSS padding in pixels. |
|
| 717 | + * @return string|void taxonomy HTML. |
|
| 718 | + */ |
|
| 719 | + function geodir_custom_taxonomy_walker($cat_taxonomy, $cat_parent = 0, $hide_empty = false, $pading = 0) |
|
| 720 | + {
|
|
| 721 | + global $cat_display, $post_cat, $exclude_cats; |
|
| 722 | + |
|
| 723 | + $search_terms = trim($post_cat, ","); |
|
| 724 | + |
|
| 725 | + $search_terms = explode(",", $search_terms);
|
|
| 726 | + |
|
| 727 | + $cat_terms = get_terms($cat_taxonomy, array('parent' => $cat_parent, 'hide_empty' => $hide_empty, 'exclude' => $exclude_cats));
|
|
| 728 | + |
|
| 729 | + $display = ''; |
|
| 730 | + $onchange = ''; |
|
| 731 | + $term_check = ''; |
|
| 732 | + $main_list_class = ''; |
|
| 733 | + $out = ''; |
|
| 734 | + //If there are terms, start displaying |
|
| 735 | + if (count($cat_terms) > 0) {
|
|
| 736 | + //Displaying as a list |
|
| 737 | + $p = $pading * 20; |
|
| 738 | + $pading++; |
|
| 739 | + |
|
| 740 | + |
|
| 741 | + if ((!geodir_is_page('listing')) || (is_search() && $_REQUEST['search_taxonomy'] == '')) {
|
|
| 742 | + if ($cat_parent == 0) {
|
|
| 743 | + $list_class = 'main_list gd-parent-cats-list gd-cats-display-' . $cat_display; |
|
| 744 | + $main_list_class = 'class="main_list_selecter"'; |
|
| 745 | + } else {
|
|
| 746 | + //$display = 'display:none'; |
|
| 747 | + $list_class = 'sub_list gd-sub-cats-list'; |
|
| 748 | + } |
|
| 749 | + } |
|
| 750 | 750 | |
| 751 | - if ($cat_display == 'checkbox' || $cat_display == 'radio') {
|
|
| 752 | - $p = 0; |
|
| 753 | - $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">'; |
|
| 754 | - } |
|
| 751 | + if ($cat_display == 'checkbox' || $cat_display == 'radio') {
|
|
| 752 | + $p = 0; |
|
| 753 | + $out = '<div class="' . $list_class . ' gd-cat-row-' . $cat_parent . '" style="margin-left:' . $p . 'px;' . $display . ';">'; |
|
| 754 | + } |
|
| 755 | 755 | |
| 756 | - foreach ($cat_terms as $cat_term) {
|
|
| 756 | + foreach ($cat_terms as $cat_term) {
|
|
| 757 | 757 | |
| 758 | - $checked = ''; |
|
| 758 | + $checked = ''; |
|
| 759 | 759 | |
| 760 | - if (in_array($cat_term->term_id, $search_terms)) {
|
|
| 761 | - if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 762 | - $checked = 'selected="selected"'; |
|
| 763 | - else |
|
| 764 | - $checked = 'checked="checked"'; |
|
| 765 | - } |
|
| 760 | + if (in_array($cat_term->term_id, $search_terms)) {
|
|
| 761 | + if ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 762 | + $checked = 'selected="selected"'; |
|
| 763 | + else |
|
| 764 | + $checked = 'checked="checked"'; |
|
| 765 | + } |
|
| 766 | 766 | |
| 767 | - if ($cat_display == 'radio') |
|
| 768 | - $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 769 | - elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 770 | - $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>'; |
|
| 767 | + if ($cat_display == 'radio') |
|
| 768 | + $out .= '<span style="display:block" ><input type="radio" field_type="radio" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 769 | + elseif ($cat_display == 'select' || $cat_display == 'multiselect') |
|
| 770 | + $out .= '<option ' . $main_list_class . ' style="margin-left:' . $p . 'px;" alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' >' . $term_check . ucfirst($cat_term->name) . '</option>'; |
|
| 771 | 771 | |
| 772 | - else {
|
|
| 773 | - $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 774 | - } |
|
| 772 | + else {
|
|
| 773 | + $out .= '<span style="display:block"><input style="display:inline-block" type="checkbox" field_type="checkbox" name="post_category[' . $cat_term->taxonomy . '][]" ' . $main_list_class . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" ' . $checked . $onchange . ' id="gd-cat-' . $cat_term->term_id . '" >' . $term_check . ucfirst($cat_term->name) . '</span>'; |
|
| 774 | + } |
|
| 775 | 775 | |
| 776 | - // Call recurson to print sub cats |
|
| 777 | - $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading); |
|
| 776 | + // Call recurson to print sub cats |
|
| 777 | + $out .= geodir_custom_taxonomy_walker($cat_taxonomy, $cat_term->term_id, $hide_empty, $pading); |
|
| 778 | 778 | |
| 779 | - } |
|
| 779 | + } |
|
| 780 | 780 | |
| 781 | - if ($cat_display == 'checkbox' || $cat_display == 'radio') |
|
| 782 | - $out .= '</div>'; |
|
| 781 | + if ($cat_display == 'checkbox' || $cat_display == 'radio') |
|
| 782 | + $out .= '</div>'; |
|
| 783 | 783 | |
| 784 | - return $out; |
|
| 785 | - } |
|
| 786 | - return; |
|
| 787 | - } |
|
| 784 | + return $out; |
|
| 785 | + } |
|
| 786 | + return; |
|
| 787 | + } |
|
| 788 | 788 | } |
| 789 | 789 | |
| 790 | 790 | if (!function_exists('geodir_custom_taxonomy_walker2')) {
|
| 791 | - /** |
|
| 792 | - * Custom taxonomy walker function. |
|
| 793 | - * |
|
| 794 | - * @since 1.0.0 |
|
| 795 | - * @package GeoDirectory |
|
| 796 | - * @global object $post WordPress Post object. |
|
| 797 | - * @global object $gd_session GeoDirectory Session object. |
|
| 798 | - * @param string $cat_taxonomy The taxonomy name. |
|
| 799 | - * @param string $cat_limit Number of categories to display. |
|
| 800 | - */ |
|
| 801 | - function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '') |
|
| 802 | - {
|
|
| 803 | - $post_category = ''; |
|
| 804 | - $post_category_str = ''; |
|
| 805 | - global $exclude_cats, $gd_session; |
|
| 806 | - |
|
| 807 | - $cat_exclude = ''; |
|
| 808 | - if (is_array($exclude_cats) && !empty($exclude_cats)) |
|
| 809 | - $cat_exclude = serialize($exclude_cats); |
|
| 810 | - |
|
| 811 | - if (isset($_REQUEST['backandedit'])) {
|
|
| 812 | - $post = (object)$gd_session->get('listing');
|
|
| 813 | - |
|
| 814 | - if (!is_array($post->post_category[$cat_taxonomy])) |
|
| 815 | - $post_category = $post->post_category[$cat_taxonomy]; |
|
| 816 | - |
|
| 817 | - $post_categories = $post->post_category_str; |
|
| 818 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) |
|
| 819 | - $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 820 | - |
|
| 821 | - } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
|
|
| 822 | - global $post; |
|
| 823 | - |
|
| 824 | - $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true); |
|
| 825 | - if (empty($post_category) && isset($post->{$cat_taxonomy})) {
|
|
| 826 | - $post_category = $post->{$cat_taxonomy};
|
|
| 827 | - } |
|
| 791 | + /** |
|
| 792 | + * Custom taxonomy walker function. |
|
| 793 | + * |
|
| 794 | + * @since 1.0.0 |
|
| 795 | + * @package GeoDirectory |
|
| 796 | + * @global object $post WordPress Post object. |
|
| 797 | + * @global object $gd_session GeoDirectory Session object. |
|
| 798 | + * @param string $cat_taxonomy The taxonomy name. |
|
| 799 | + * @param string $cat_limit Number of categories to display. |
|
| 800 | + */ |
|
| 801 | + function geodir_custom_taxonomy_walker2($cat_taxonomy, $cat_limit = '') |
|
| 802 | + {
|
|
| 803 | + $post_category = ''; |
|
| 804 | + $post_category_str = ''; |
|
| 805 | + global $exclude_cats, $gd_session; |
|
| 806 | + |
|
| 807 | + $cat_exclude = ''; |
|
| 808 | + if (is_array($exclude_cats) && !empty($exclude_cats)) |
|
| 809 | + $cat_exclude = serialize($exclude_cats); |
|
| 810 | + |
|
| 811 | + if (isset($_REQUEST['backandedit'])) {
|
|
| 812 | + $post = (object)$gd_session->get('listing');
|
|
| 813 | + |
|
| 814 | + if (!is_array($post->post_category[$cat_taxonomy])) |
|
| 815 | + $post_category = $post->post_category[$cat_taxonomy]; |
|
| 816 | + |
|
| 817 | + $post_categories = $post->post_category_str; |
|
| 818 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) |
|
| 819 | + $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 820 | + |
|
| 821 | + } elseif ((geodir_is_page('add-listing') && isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') || (is_admin())) {
|
|
| 822 | + global $post; |
|
| 823 | + |
|
| 824 | + $post_category = geodir_get_post_meta($post->ID, $cat_taxonomy, true); |
|
| 825 | + if (empty($post_category) && isset($post->{$cat_taxonomy})) {
|
|
| 826 | + $post_category = $post->{$cat_taxonomy};
|
|
| 827 | + } |
|
| 828 | 828 | |
| 829 | - $post_categories = get_post_meta($post->ID, 'post_categories', true); |
|
| 829 | + $post_categories = get_post_meta($post->ID, 'post_categories', true); |
|
| 830 | 830 | |
| 831 | - if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 832 | - foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
|
|
| 833 | - if (is_numeric($cat_part)) {
|
|
| 834 | - $cat_part_arr[] = $cat_part; |
|
| 835 | - } |
|
| 836 | - } |
|
| 837 | - if (is_array($cat_part_arr)) {
|
|
| 838 | - $post_category = implode(',', $cat_part_arr);
|
|
| 839 | - } |
|
| 840 | - } |
|
| 831 | + if (empty($post_category) && !empty($post_categories) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 832 | + foreach (explode(",", $post_categories[$cat_taxonomy]) as $cat_part) {
|
|
| 833 | + if (is_numeric($cat_part)) {
|
|
| 834 | + $cat_part_arr[] = $cat_part; |
|
| 835 | + } |
|
| 836 | + } |
|
| 837 | + if (is_array($cat_part_arr)) {
|
|
| 838 | + $post_category = implode(',', $cat_part_arr);
|
|
| 839 | + } |
|
| 840 | + } |
|
| 841 | 841 | |
| 842 | - if (!empty($post_category)) {
|
|
| 843 | - $cat1 = array_filter(explode(',', $post_category));
|
|
| 844 | - $post_category = ',' . implode(',', $cat1) . ',';
|
|
| 842 | + if (!empty($post_category)) {
|
|
| 843 | + $cat1 = array_filter(explode(',', $post_category));
|
|
| 844 | + $post_category = ',' . implode(',', $cat1) . ',';
|
|
| 845 | 845 | |
| 846 | - } |
|
| 846 | + } |
|
| 847 | 847 | |
| 848 | - if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
|
|
| 848 | + if ($post_category != '' && is_array($exclude_cats) && !empty($exclude_cats)) {
|
|
| 849 | 849 | |
| 850 | - $post_category_upd = explode(',', $post_category);
|
|
| 851 | - $post_category_change = ''; |
|
| 852 | - foreach ($post_category_upd as $cat) {
|
|
| 850 | + $post_category_upd = explode(',', $post_category);
|
|
| 851 | + $post_category_change = ''; |
|
| 852 | + foreach ($post_category_upd as $cat) {
|
|
| 853 | 853 | |
| 854 | - if (!in_array($cat, $exclude_cats) && $cat != '') {
|
|
| 855 | - $post_category_change .= ',' . $cat; |
|
| 856 | - } |
|
| 857 | - } |
|
| 858 | - $post_category = $post_category_change; |
|
| 859 | - } |
|
| 854 | + if (!in_array($cat, $exclude_cats) && $cat != '') {
|
|
| 855 | + $post_category_change .= ',' . $cat; |
|
| 856 | + } |
|
| 857 | + } |
|
| 858 | + $post_category = $post_category_change; |
|
| 859 | + } |
|
| 860 | 860 | |
| 861 | 861 | |
| 862 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 863 | - $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 864 | - } |
|
| 865 | - } |
|
| 862 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 863 | + $post_category_str = $post_categories[$cat_taxonomy]; |
|
| 864 | + } |
|
| 865 | + } |
|
| 866 | 866 | |
| 867 | - echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']" />'; |
|
| 867 | + echo '<input type="hidden" id="cat_limit" value="' . $cat_limit . '" name="cat_limit[' . $cat_taxonomy . ']" />'; |
|
| 868 | 868 | |
| 869 | - echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']" />'; |
|
| 869 | + echo '<input type="hidden" id="post_category" value="' . $post_category . '" name="post_category[' . $cat_taxonomy . ']" />'; |
|
| 870 | 870 | |
| 871 | - echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']" />'; |
|
| 871 | + echo '<input type="hidden" id="post_category_str" value="' . $post_category_str . '" name="post_category_str[' . $cat_taxonomy . ']" />'; |
|
| 872 | 872 | |
| 873 | 873 | |
| 874 | - ?> |
|
| 874 | + ?> |
|
| 875 | 875 | <div class="cat_sublist"> |
| 876 | 876 | <?php |
| 877 | 877 | |
| 878 | - $post_id = isset($post->ID) ? $post->ID : ''; |
|
| 878 | + $post_id = isset($post->ID) ? $post->ID : ''; |
|
| 879 | 879 | |
| 880 | - if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 880 | + if ((geodir_is_page('add-listing') || is_admin()) && !empty($post_categories[$cat_taxonomy])) {
|
|
| 881 | 881 | |
| 882 | - geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories); |
|
| 883 | - } |
|
| 884 | - ?> |
|
| 882 | + geodir_editpost_categories_html($cat_taxonomy, $post_id, $post_categories); |
|
| 883 | + } |
|
| 884 | + ?> |
|
| 885 | 885 | </div> |
| 886 | 886 | <script type="text/javascript"> |
| 887 | 887 | |
@@ -1004,22 +1004,22 @@ discard block |
||
| 1004 | 1004 | |
| 1005 | 1005 | </script> |
| 1006 | 1006 | <?php |
| 1007 | - if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 1008 | - $post_cat_str = $post_categories[$cat_taxonomy]; |
|
| 1009 | - $post_cat_array = explode("#", $post_cat_str);
|
|
| 1010 | - if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) |
|
| 1011 | - $style = "display:none;"; |
|
| 1012 | - } |
|
| 1013 | - ?> |
|
| 1007 | + if (!empty($post_categories) && array_key_exists($cat_taxonomy, $post_categories)) {
|
|
| 1008 | + $post_cat_str = $post_categories[$cat_taxonomy]; |
|
| 1009 | + $post_cat_array = explode("#", $post_cat_str);
|
|
| 1010 | + if (count($post_cat_array) >= $cat_limit && $cat_limit != 0) |
|
| 1011 | + $style = "display:none;"; |
|
| 1012 | + } |
|
| 1013 | + ?> |
|
| 1014 | 1014 | <div class="main_cat_list" style=" <?php if (isset($style)) {
|
| 1015 | - echo $style; |
|
| 1016 | - }?> "> |
|
| 1015 | + echo $style; |
|
| 1016 | + }?> "> |
|
| 1017 | 1017 | <?php geodir_get_catlist($cat_taxonomy, 0); // print main categories list |
| 1018 | - ?> |
|
| 1018 | + ?> |
|
| 1019 | 1019 | </div> |
| 1020 | 1020 | <?php |
| 1021 | 1021 | |
| 1022 | - } |
|
| 1022 | + } |
|
| 1023 | 1023 | } |
| 1024 | 1024 | |
| 1025 | 1025 | /** |
@@ -1036,23 +1036,23 @@ discard block |
||
| 1036 | 1036 | */ |
| 1037 | 1037 | function geodir_addpost_categories_html($request_taxonomy, $parrent, $selected = false, $main_selected = true, $default = false, $exclude = '') |
| 1038 | 1038 | {
|
| 1039 | - global $exclude_cats; |
|
| 1039 | + global $exclude_cats; |
|
| 1040 | 1040 | |
| 1041 | - if ($exclude != '') {
|
|
| 1042 | - $exclude_cats = maybe_unserialize(base64_decode($exclude)); |
|
| 1041 | + if ($exclude != '') {
|
|
| 1042 | + $exclude_cats = maybe_unserialize(base64_decode($exclude)); |
|
| 1043 | 1043 | |
| 1044 | - if(is_array( $exclude_cats)){
|
|
| 1045 | - $exclude_cats = array_map( 'intval', $exclude_cats ); |
|
| 1046 | - }else{
|
|
| 1047 | - $exclude_cats = intval($exclude_cats); |
|
| 1048 | - } |
|
| 1044 | + if(is_array( $exclude_cats)){
|
|
| 1045 | + $exclude_cats = array_map( 'intval', $exclude_cats ); |
|
| 1046 | + }else{
|
|
| 1047 | + $exclude_cats = intval($exclude_cats); |
|
| 1048 | + } |
|
| 1049 | 1049 | |
| 1050 | - } |
|
| 1050 | + } |
|
| 1051 | 1051 | |
| 1052 | - if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) || |
|
| 1053 | - (!is_array($exclude_cats) || empty($exclude_cats)) |
|
| 1054 | - ) {
|
|
| 1055 | - ?> |
|
| 1052 | + if ((is_array($exclude_cats) && !empty($exclude_cats) && !in_array($parrent, $exclude_cats)) || |
|
| 1053 | + (!is_array($exclude_cats) || empty($exclude_cats)) |
|
| 1054 | + ) {
|
|
| 1055 | + ?> |
|
| 1056 | 1056 | |
| 1057 | 1057 | <?php $main_cat = get_term($parrent, $request_taxonomy); ?> |
| 1058 | 1058 | |
@@ -1081,8 +1081,8 @@ discard block |
||
| 1081 | 1081 | |
| 1082 | 1082 | <br/> |
| 1083 | 1083 | <?php |
| 1084 | - $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1085 | - if (!empty($cat_terms)) { ?>
|
|
| 1084 | + $cat_terms = get_terms($request_taxonomy, array('parent' => $main_cat->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1085 | + if (!empty($cat_terms)) { ?>
|
|
| 1086 | 1086 | <span> <?php printf(__('Add listing in category', 'geodirectory')); ?></span>
|
| 1087 | 1087 | <?php geodir_get_catlist($request_taxonomy, $parrent, $selected) ?> |
| 1088 | 1088 | <?php } ?> |
@@ -1104,53 +1104,53 @@ discard block |
||
| 1104 | 1104 | function geodir_editpost_categories_html($request_taxonomy, $request_postid, $post_categories) |
| 1105 | 1105 | {
|
| 1106 | 1106 | |
| 1107 | - if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
|
|
| 1108 | - $post_cat_str = $post_categories[$request_taxonomy]; |
|
| 1109 | - $post_cat_array = explode("#", $post_cat_str);
|
|
| 1110 | - if (is_array($post_cat_array)) {
|
|
| 1111 | - $post_cat_array = array_unique( $post_cat_array ); |
|
| 1107 | + if (!empty($post_categories) && array_key_exists($request_taxonomy, $post_categories)) {
|
|
| 1108 | + $post_cat_str = $post_categories[$request_taxonomy]; |
|
| 1109 | + $post_cat_array = explode("#", $post_cat_str);
|
|
| 1110 | + if (is_array($post_cat_array)) {
|
|
| 1111 | + $post_cat_array = array_unique( $post_cat_array ); |
|
| 1112 | 1112 | |
| 1113 | 1113 | foreach ($post_cat_array as $post_cat_html) {
|
| 1114 | 1114 | |
| 1115 | - $post_cat_info = explode(":", $post_cat_html);
|
|
| 1116 | - $post_maincat_str = $post_cat_info[0]; |
|
| 1115 | + $post_cat_info = explode(":", $post_cat_html);
|
|
| 1116 | + $post_maincat_str = $post_cat_info[0]; |
|
| 1117 | 1117 | |
| 1118 | - if (!empty($post_maincat_str)) {
|
|
| 1119 | - $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1120 | - $post_maincat_id = $post_maincat_info[0]; |
|
| 1121 | - ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1122 | - (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1123 | - } |
|
| 1124 | - $post_sub_catid = ''; |
|
| 1125 | - if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1126 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1127 | - } |
|
| 1118 | + if (!empty($post_maincat_str)) {
|
|
| 1119 | + $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1120 | + $post_maincat_id = $post_maincat_info[0]; |
|
| 1121 | + ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1122 | + (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1123 | + } |
|
| 1124 | + $post_sub_catid = ''; |
|
| 1125 | + if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1126 | + $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1127 | + } |
|
| 1128 | 1128 | |
| 1129 | - geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1129 | + geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1130 | 1130 | |
| 1131 | - } |
|
| 1132 | - } else {
|
|
| 1131 | + } |
|
| 1132 | + } else {
|
|
| 1133 | 1133 | |
| 1134 | - $post_cat_info = explode(":", $post_cat_str);
|
|
| 1135 | - $post_maincat_str = $post_cat_info[0]; |
|
| 1134 | + $post_cat_info = explode(":", $post_cat_str);
|
|
| 1135 | + $post_maincat_str = $post_cat_info[0]; |
|
| 1136 | 1136 | |
| 1137 | - $post_sub_catid = ''; |
|
| 1137 | + $post_sub_catid = ''; |
|
| 1138 | 1138 | |
| 1139 | - if (!empty($post_maincat_str)) {
|
|
| 1140 | - $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1141 | - $post_maincat_id = $post_maincat_info[0]; |
|
| 1142 | - ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1143 | - (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1144 | - } |
|
| 1139 | + if (!empty($post_maincat_str)) {
|
|
| 1140 | + $post_maincat_info = explode(",", $post_maincat_str);
|
|
| 1141 | + $post_maincat_id = $post_maincat_info[0]; |
|
| 1142 | + ($post_maincat_info[1] == 'y') ? $post_maincat_selected = true : $post_maincat_selected = false; |
|
| 1143 | + (end($post_maincat_info) == 'd') ? $post_maincat_default = true : $post_maincat_default = false; |
|
| 1144 | + } |
|
| 1145 | 1145 | |
| 1146 | - if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1147 | - $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1148 | - } |
|
| 1146 | + if (isset($post_cat_info[1]) && !empty($post_cat_info[1])) {
|
|
| 1147 | + $post_sub_catid = (int)$post_cat_info[1]; |
|
| 1148 | + } |
|
| 1149 | 1149 | |
| 1150 | - geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1150 | + geodir_addpost_categories_html($request_taxonomy, $post_maincat_id, $post_sub_catid, $post_maincat_selected, $post_maincat_default); |
|
| 1151 | 1151 | |
| 1152 | - } |
|
| 1153 | - } |
|
| 1152 | + } |
|
| 1153 | + } |
|
| 1154 | 1154 | } |
| 1155 | 1155 | |
| 1156 | 1156 | /** |
@@ -1164,35 +1164,35 @@ discard block |
||
| 1164 | 1164 | */ |
| 1165 | 1165 | function geodir_get_catlist($cat_taxonomy, $parrent = 0, $selected = false) |
| 1166 | 1166 | {
|
| 1167 | - global $exclude_cats; |
|
| 1167 | + global $exclude_cats; |
|
| 1168 | 1168 | |
| 1169 | - $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1169 | + $cat_terms = get_terms($cat_taxonomy, array('parent' => $parrent, 'hide_empty' => false, 'exclude' => $exclude_cats));
|
|
| 1170 | 1170 | |
| 1171 | - if (!empty($cat_terms)) {
|
|
| 1172 | - $onchange = ''; |
|
| 1173 | - $onchange = ' onchange="show_subcatlist(this.value, this)" '; |
|
| 1171 | + if (!empty($cat_terms)) {
|
|
| 1172 | + $onchange = ''; |
|
| 1173 | + $onchange = ' onchange="show_subcatlist(this.value, this)" '; |
|
| 1174 | 1174 | |
| 1175 | - $option_selected = ''; |
|
| 1176 | - if (!$selected) |
|
| 1177 | - $option_slected = ' selected="selected" '; |
|
| 1175 | + $option_selected = ''; |
|
| 1176 | + if (!$selected) |
|
| 1177 | + $option_slected = ' selected="selected" '; |
|
| 1178 | 1178 | |
| 1179 | - echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
|
| 1179 | + echo '<select field_type="select" id="' . sanitize_text_field($cat_taxonomy) . '" class="chosen_select" ' . $onchange . ' option-ajaxChosen="false" >'; |
|
| 1180 | 1180 | |
| 1181 | - echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
|
|
| 1181 | + echo '<option value="" ' . $option_selected . ' >' . __('Select Category', 'geodirectory') . '</option>';
|
|
| 1182 | 1182 | |
| 1183 | - foreach ($cat_terms as $cat_term) {
|
|
| 1184 | - $option_selected = ''; |
|
| 1185 | - if ($selected == $cat_term->term_id) |
|
| 1186 | - $option_selected = ' selected="selected" '; |
|
| 1183 | + foreach ($cat_terms as $cat_term) {
|
|
| 1184 | + $option_selected = ''; |
|
| 1185 | + if ($selected == $cat_term->term_id) |
|
| 1186 | + $option_selected = ' selected="selected" '; |
|
| 1187 | 1187 | |
| 1188 | - // Count child terms |
|
| 1189 | - $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
|
| 1190 | - $has_child = !empty( $child_terms ) ? 't' : 'f'; |
|
| 1188 | + // Count child terms |
|
| 1189 | + $child_terms = get_terms( $cat_taxonomy, array( 'parent' => $cat_term->term_id, 'hide_empty' => false, 'exclude' => $exclude_cats, 'number' => 1 ) ); |
|
| 1190 | + $has_child = !empty( $child_terms ) ? 't' : 'f'; |
|
| 1191 | 1191 | |
| 1192 | - echo '<option ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>'; |
|
| 1193 | - } |
|
| 1194 | - echo '</select>'; |
|
| 1195 | - } |
|
| 1192 | + echo '<option ' . $option_selected . ' alt="' . $cat_term->taxonomy . '" title="' . ucfirst($cat_term->name) . '" value="' . $cat_term->term_id . '" _hc="' . $has_child . '" >' . ucfirst($cat_term->name) . '</option>'; |
|
| 1193 | + } |
|
| 1194 | + echo '</select>'; |
|
| 1195 | + } |
|
| 1196 | 1196 | } |
| 1197 | 1197 | |
| 1198 | 1198 | /** |
@@ -1208,28 +1208,28 @@ discard block |
||
| 1208 | 1208 | */ |
| 1209 | 1209 | function geodir_custom_update_messages($messages) |
| 1210 | 1210 | {
|
| 1211 | - global $post, $post_ID; |
|
| 1212 | - |
|
| 1213 | - $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
|
|
| 1214 | - |
|
| 1215 | - foreach ($post_types as $post_type => $post_object) {
|
|
| 1216 | - |
|
| 1217 | - $messages[$post_type] = array( |
|
| 1218 | - 0 => '', // Unused. Messages start at index 1. |
|
| 1219 | - 1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1220 | - 2 => __('Custom field updated.', 'geodirectory'),
|
|
| 1221 | - 3 => __('Custom field deleted.', 'geodirectory'),
|
|
| 1222 | - 4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1223 | - 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
|
|
| 1224 | - 6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1225 | - 7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1226 | - 8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1227 | - 9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1228 | - 10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1229 | - ); |
|
| 1230 | - } |
|
| 1231 | - |
|
| 1232 | - return $messages; |
|
| 1211 | + global $post, $post_ID; |
|
| 1212 | + |
|
| 1213 | + $post_types = get_post_types(array('show_ui' => true, '_builtin' => false), 'objects');
|
|
| 1214 | + |
|
| 1215 | + foreach ($post_types as $post_type => $post_object) {
|
|
| 1216 | + |
|
| 1217 | + $messages[$post_type] = array( |
|
| 1218 | + 0 => '', // Unused. Messages start at index 1. |
|
| 1219 | + 1 => sprintf(__('%s updated. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1220 | + 2 => __('Custom field updated.', 'geodirectory'),
|
|
| 1221 | + 3 => __('Custom field deleted.', 'geodirectory'),
|
|
| 1222 | + 4 => sprintf(__('%s updated.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1223 | + 5 => isset($_GET['revision']) ? sprintf(__('%s restored to revision from %s', 'geodirectory'), $post_object->labels->singular_name, wp_post_revision_title((int)$_GET['revision'], false)) : false,
|
|
| 1224 | + 6 => sprintf(__('%s published. <a href="%s">View %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1225 | + 7 => sprintf(__('%s saved.', 'geodirectory'), $post_object->labels->singular_name),
|
|
| 1226 | + 8 => sprintf(__('%s submitted. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1227 | + 9 => sprintf(__('%s scheduled for: <strong>%1$s</strong>. <a target="_blank" href="%2$s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, date_i18n(__('M j, Y @ G:i', 'geodirectory'), strtotime($post->post_date)), esc_url(get_permalink($post_ID)), $post_object->labels->singular_name),
|
|
| 1228 | + 10 => sprintf(__('%s draft updated. <a target="_blank" href="%s">Preview %s</a>', 'geodirectory'), $post_object->labels->singular_name, esc_url(add_query_arg('preview', 'true', get_permalink($post_ID))), $post_object->labels->singular_name),
|
|
| 1229 | + ); |
|
| 1230 | + } |
|
| 1231 | + |
|
| 1232 | + return $messages; |
|
| 1233 | 1233 | } |
| 1234 | 1234 | |
| 1235 | 1235 | |
@@ -1244,183 +1244,183 @@ discard block |
||
| 1244 | 1244 | function geodir_register_defaults() |
| 1245 | 1245 | {
|
| 1246 | 1246 | |
| 1247 | - global $wpdb; |
|
| 1248 | - |
|
| 1249 | - $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
|
| 1250 | - |
|
| 1251 | - if (!$listing_slug = get_option('geodir_listing_prefix'))
|
|
| 1252 | - $listing_slug = 'places'; |
|
| 1253 | - |
|
| 1254 | - /** |
|
| 1255 | - * Taxonomies |
|
| 1256 | - **/ |
|
| 1257 | - //if ( ! taxonomy_exists('gd_place_tags') )
|
|
| 1258 | - {
|
|
| 1259 | - |
|
| 1260 | - $gd_placetags = array(); |
|
| 1261 | - $gd_placetags['object_type'] = 'gd_place'; |
|
| 1262 | - $gd_placetags['listing_slug'] = $listing_slug . '/tags'; |
|
| 1263 | - $gd_placetags['args'] = array( |
|
| 1264 | - 'public' => true, |
|
| 1265 | - 'hierarchical' => false, |
|
| 1266 | - 'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1267 | - 'query_var' => true, |
|
| 1268 | - |
|
| 1269 | - 'labels' => array( |
|
| 1270 | - 'name' => __('Place Tags', 'geodirectory'),
|
|
| 1271 | - 'singular_name' => __('Place Tag', 'geodirectory'),
|
|
| 1272 | - 'search_items' => __('Search Place Tags', 'geodirectory'),
|
|
| 1273 | - 'popular_items' => __('Popular Place Tags', 'geodirectory'),
|
|
| 1274 | - 'all_items' => __('All Place Tags', 'geodirectory'),
|
|
| 1275 | - 'edit_item' => __('Edit Place Tag', 'geodirectory'),
|
|
| 1276 | - 'update_item' => __('Update Place Tag', 'geodirectory'),
|
|
| 1277 | - 'add_new_item' => __('Add New Place Tag', 'geodirectory'),
|
|
| 1278 | - 'new_item_name' => __('New Place Tag Name', 'geodirectory'),
|
|
| 1279 | - 'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
|
|
| 1280 | - 'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
|
|
| 1281 | - 'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
|
|
| 1282 | - ), |
|
| 1283 | - ); |
|
| 1284 | - |
|
| 1285 | - |
|
| 1286 | - $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1287 | - $geodir_taxonomies['gd_place_tags'] = $gd_placetags; |
|
| 1288 | - update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1289 | - |
|
| 1290 | - |
|
| 1291 | - // Update post types and delete tmp options |
|
| 1292 | - flush_rewrite_rules(); |
|
| 1293 | - |
|
| 1294 | - } |
|
| 1295 | - |
|
| 1296 | - //if ( ! taxonomy_exists('gd_placecategory') )
|
|
| 1297 | - {
|
|
| 1298 | - |
|
| 1299 | - $gd_placecategory = array(); |
|
| 1300 | - $gd_placecategory['object_type'] = 'gd_place'; |
|
| 1301 | - $gd_placecategory['listing_slug'] = $listing_slug; |
|
| 1302 | - $gd_placecategory['args'] = array( |
|
| 1303 | - 'public' => true, |
|
| 1304 | - 'hierarchical' => true, |
|
| 1305 | - 'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
|
|
| 1306 | - 'query_var' => true, |
|
| 1307 | - 'labels' => array( |
|
| 1308 | - 'name' => __('Place Categories', 'geodirectory'),
|
|
| 1309 | - 'singular_name' => __('Place Category', 'geodirectory'),
|
|
| 1310 | - 'search_items' => __('Search Place Categories', 'geodirectory'),
|
|
| 1311 | - 'popular_items' => __('Popular Place Categories', 'geodirectory'),
|
|
| 1312 | - 'all_items' => __('All Place Categories', 'geodirectory'),
|
|
| 1313 | - 'edit_item' => __('Edit Place Category', 'geodirectory'),
|
|
| 1314 | - 'update_item' => __('Update Place Category', 'geodirectory'),
|
|
| 1315 | - 'add_new_item' => __('Add New Place Category', 'geodirectory'),
|
|
| 1316 | - 'new_item_name' => __('New Place Category', 'geodirectory'),
|
|
| 1317 | - 'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
|
|
| 1318 | - ), |
|
| 1319 | - ); |
|
| 1320 | - |
|
| 1321 | - |
|
| 1322 | - $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1323 | - $geodir_taxonomies['gd_placecategory'] = $gd_placecategory; |
|
| 1324 | - update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1325 | - |
|
| 1326 | - |
|
| 1327 | - flush_rewrite_rules(); |
|
| 1328 | - } |
|
| 1329 | - |
|
| 1330 | - /** |
|
| 1331 | - * Post Types |
|
| 1332 | - **/ |
|
| 1333 | - |
|
| 1334 | - //if ( ! post_type_exists('gd_place') )
|
|
| 1335 | - {
|
|
| 1336 | - |
|
| 1337 | - $labels = array( |
|
| 1338 | - 'name' => __('Places', 'geodirectory'),
|
|
| 1339 | - 'singular_name' => __('Place', 'geodirectory'),
|
|
| 1340 | - 'add_new' => __('Add New', 'geodirectory'),
|
|
| 1341 | - 'add_new_item' => __('Add New Place', 'geodirectory'),
|
|
| 1342 | - 'edit_item' => __('Edit Place', 'geodirectory'),
|
|
| 1343 | - 'new_item' => __('New Place', 'geodirectory'),
|
|
| 1344 | - 'view_item' => __('View Place', 'geodirectory'),
|
|
| 1345 | - 'search_items' => __('Search Places', 'geodirectory'),
|
|
| 1346 | - 'not_found' => __('No Place Found', 'geodirectory'),
|
|
| 1347 | - 'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
|
|
| 1348 | - |
|
| 1349 | - $place_default = array( |
|
| 1350 | - 'labels' => $labels, |
|
| 1351 | - 'can_export' => true, |
|
| 1352 | - 'capability_type' => 'post', |
|
| 1353 | - 'description' => 'Place post type.', |
|
| 1354 | - 'has_archive' => $listing_slug, |
|
| 1355 | - 'hierarchical' => false, |
|
| 1356 | - 'map_meta_cap' => true, |
|
| 1357 | - 'menu_icon' => $menu_icon, |
|
| 1358 | - 'public' => true, |
|
| 1359 | - 'query_var' => true, |
|
| 1360 | - 'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1361 | - 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
|
|
| 1362 | - 'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
|
|
| 1363 | - |
|
| 1364 | - //Update custom post types |
|
| 1365 | - $geodir_post_types = get_option('geodir_post_types');
|
|
| 1366 | - $geodir_post_types['gd_place'] = $place_default; |
|
| 1367 | - update_option('geodir_post_types', $geodir_post_types);
|
|
| 1368 | - |
|
| 1369 | - // Update post types and delete tmp options |
|
| 1370 | - flush_rewrite_rules(); |
|
| 1371 | - } |
|
| 1372 | - |
|
| 1373 | - |
|
| 1374 | - geodir_register_taxonomies(); |
|
| 1375 | - geodir_register_post_types(); |
|
| 1376 | - |
|
| 1377 | - //die; |
|
| 1247 | + global $wpdb; |
|
| 1248 | + |
|
| 1249 | + $menu_icon = geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico'; |
|
| 1250 | + |
|
| 1251 | + if (!$listing_slug = get_option('geodir_listing_prefix'))
|
|
| 1252 | + $listing_slug = 'places'; |
|
| 1253 | + |
|
| 1254 | + /** |
|
| 1255 | + * Taxonomies |
|
| 1256 | + **/ |
|
| 1257 | + //if ( ! taxonomy_exists('gd_place_tags') )
|
|
| 1258 | + {
|
|
| 1259 | + |
|
| 1260 | + $gd_placetags = array(); |
|
| 1261 | + $gd_placetags['object_type'] = 'gd_place'; |
|
| 1262 | + $gd_placetags['listing_slug'] = $listing_slug . '/tags'; |
|
| 1263 | + $gd_placetags['args'] = array( |
|
| 1264 | + 'public' => true, |
|
| 1265 | + 'hierarchical' => false, |
|
| 1266 | + 'rewrite' => array('slug' => $listing_slug . '/tags', 'with_front' => false, 'hierarchical' => true),
|
|
| 1267 | + 'query_var' => true, |
|
| 1268 | + |
|
| 1269 | + 'labels' => array( |
|
| 1270 | + 'name' => __('Place Tags', 'geodirectory'),
|
|
| 1271 | + 'singular_name' => __('Place Tag', 'geodirectory'),
|
|
| 1272 | + 'search_items' => __('Search Place Tags', 'geodirectory'),
|
|
| 1273 | + 'popular_items' => __('Popular Place Tags', 'geodirectory'),
|
|
| 1274 | + 'all_items' => __('All Place Tags', 'geodirectory'),
|
|
| 1275 | + 'edit_item' => __('Edit Place Tag', 'geodirectory'),
|
|
| 1276 | + 'update_item' => __('Update Place Tag', 'geodirectory'),
|
|
| 1277 | + 'add_new_item' => __('Add New Place Tag', 'geodirectory'),
|
|
| 1278 | + 'new_item_name' => __('New Place Tag Name', 'geodirectory'),
|
|
| 1279 | + 'add_or_remove_items' => __('Add or remove Place tags', 'geodirectory'),
|
|
| 1280 | + 'choose_from_most_used' => __('Choose from the most used Place tags', 'geodirectory'),
|
|
| 1281 | + 'separate_items_with_commas' => __('Separate Place tags with commas', 'geodirectory'),
|
|
| 1282 | + ), |
|
| 1283 | + ); |
|
| 1284 | + |
|
| 1285 | + |
|
| 1286 | + $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1287 | + $geodir_taxonomies['gd_place_tags'] = $gd_placetags; |
|
| 1288 | + update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1289 | + |
|
| 1290 | + |
|
| 1291 | + // Update post types and delete tmp options |
|
| 1292 | + flush_rewrite_rules(); |
|
| 1293 | + |
|
| 1294 | + } |
|
| 1295 | + |
|
| 1296 | + //if ( ! taxonomy_exists('gd_placecategory') )
|
|
| 1297 | + {
|
|
| 1298 | + |
|
| 1299 | + $gd_placecategory = array(); |
|
| 1300 | + $gd_placecategory['object_type'] = 'gd_place'; |
|
| 1301 | + $gd_placecategory['listing_slug'] = $listing_slug; |
|
| 1302 | + $gd_placecategory['args'] = array( |
|
| 1303 | + 'public' => true, |
|
| 1304 | + 'hierarchical' => true, |
|
| 1305 | + 'rewrite' => array('slug' => $listing_slug, 'with_front' => false, 'hierarchical' => true),
|
|
| 1306 | + 'query_var' => true, |
|
| 1307 | + 'labels' => array( |
|
| 1308 | + 'name' => __('Place Categories', 'geodirectory'),
|
|
| 1309 | + 'singular_name' => __('Place Category', 'geodirectory'),
|
|
| 1310 | + 'search_items' => __('Search Place Categories', 'geodirectory'),
|
|
| 1311 | + 'popular_items' => __('Popular Place Categories', 'geodirectory'),
|
|
| 1312 | + 'all_items' => __('All Place Categories', 'geodirectory'),
|
|
| 1313 | + 'edit_item' => __('Edit Place Category', 'geodirectory'),
|
|
| 1314 | + 'update_item' => __('Update Place Category', 'geodirectory'),
|
|
| 1315 | + 'add_new_item' => __('Add New Place Category', 'geodirectory'),
|
|
| 1316 | + 'new_item_name' => __('New Place Category', 'geodirectory'),
|
|
| 1317 | + 'add_or_remove_items' => __('Add or remove Place categories', 'geodirectory'),
|
|
| 1318 | + ), |
|
| 1319 | + ); |
|
| 1320 | + |
|
| 1321 | + |
|
| 1322 | + $geodir_taxonomies = get_option('geodir_taxonomies');
|
|
| 1323 | + $geodir_taxonomies['gd_placecategory'] = $gd_placecategory; |
|
| 1324 | + update_option('geodir_taxonomies', $geodir_taxonomies);
|
|
| 1325 | + |
|
| 1326 | + |
|
| 1327 | + flush_rewrite_rules(); |
|
| 1328 | + } |
|
| 1329 | + |
|
| 1330 | + /** |
|
| 1331 | + * Post Types |
|
| 1332 | + **/ |
|
| 1333 | + |
|
| 1334 | + //if ( ! post_type_exists('gd_place') )
|
|
| 1335 | + {
|
|
| 1336 | + |
|
| 1337 | + $labels = array( |
|
| 1338 | + 'name' => __('Places', 'geodirectory'),
|
|
| 1339 | + 'singular_name' => __('Place', 'geodirectory'),
|
|
| 1340 | + 'add_new' => __('Add New', 'geodirectory'),
|
|
| 1341 | + 'add_new_item' => __('Add New Place', 'geodirectory'),
|
|
| 1342 | + 'edit_item' => __('Edit Place', 'geodirectory'),
|
|
| 1343 | + 'new_item' => __('New Place', 'geodirectory'),
|
|
| 1344 | + 'view_item' => __('View Place', 'geodirectory'),
|
|
| 1345 | + 'search_items' => __('Search Places', 'geodirectory'),
|
|
| 1346 | + 'not_found' => __('No Place Found', 'geodirectory'),
|
|
| 1347 | + 'not_found_in_trash' => __('No Place Found In Trash', 'geodirectory'));
|
|
| 1348 | + |
|
| 1349 | + $place_default = array( |
|
| 1350 | + 'labels' => $labels, |
|
| 1351 | + 'can_export' => true, |
|
| 1352 | + 'capability_type' => 'post', |
|
| 1353 | + 'description' => 'Place post type.', |
|
| 1354 | + 'has_archive' => $listing_slug, |
|
| 1355 | + 'hierarchical' => false, |
|
| 1356 | + 'map_meta_cap' => true, |
|
| 1357 | + 'menu_icon' => $menu_icon, |
|
| 1358 | + 'public' => true, |
|
| 1359 | + 'query_var' => true, |
|
| 1360 | + 'rewrite' => array('slug' => $listing_slug , 'with_front' => false, 'hierarchical' => true, 'feeds' => true),
|
|
| 1361 | + 'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'comments', /*'revisions', 'post-formats'*/),
|
|
| 1362 | + 'taxonomies' => array('gd_placecategory', 'gd_place_tags'));
|
|
| 1363 | + |
|
| 1364 | + //Update custom post types |
|
| 1365 | + $geodir_post_types = get_option('geodir_post_types');
|
|
| 1366 | + $geodir_post_types['gd_place'] = $place_default; |
|
| 1367 | + update_option('geodir_post_types', $geodir_post_types);
|
|
| 1368 | + |
|
| 1369 | + // Update post types and delete tmp options |
|
| 1370 | + flush_rewrite_rules(); |
|
| 1371 | + } |
|
| 1372 | + |
|
| 1373 | + |
|
| 1374 | + geodir_register_taxonomies(); |
|
| 1375 | + geodir_register_post_types(); |
|
| 1376 | + |
|
| 1377 | + //die; |
|
| 1378 | 1378 | |
| 1379 | 1379 | } |
| 1380 | 1380 | |
| 1381 | 1381 | $gd_wpml_get_languages = ""; |
| 1382 | 1382 | function gd_wpml_get_lang_from_url($url){
|
| 1383 | 1383 | |
| 1384 | - global $gd_wpml_get_languages; |
|
| 1385 | - if(isset($_REQUEST['lang']) && $_REQUEST['lang']){return $_REQUEST['lang'];}
|
|
| 1384 | + global $gd_wpml_get_languages; |
|
| 1385 | + if(isset($_REQUEST['lang']) && $_REQUEST['lang']){return $_REQUEST['lang'];}
|
|
| 1386 | 1386 | |
| 1387 | 1387 | |
| 1388 | - // |
|
| 1389 | - $url = str_replace(array("http://","https://"),"",$url);
|
|
| 1388 | + // |
|
| 1389 | + $url = str_replace(array("http://","https://"),"",$url);
|
|
| 1390 | 1390 | |
| 1391 | - // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
|
|
| 1392 | - $site_url = str_replace(array("http://","https://"),"",site_url());
|
|
| 1391 | + // site_url() seems to work better than get_bloginfo('url') here, WPML can change get_bloginfo('url') to add the lang.
|
|
| 1392 | + $site_url = str_replace(array("http://","https://"),"",site_url());
|
|
| 1393 | 1393 | |
| 1394 | - $url = str_replace($site_url,"",$url); |
|
| 1394 | + $url = str_replace($site_url,"",$url); |
|
| 1395 | 1395 | |
| 1396 | 1396 | |
| 1397 | - $segments = explode('/', trim($url, '/'));
|
|
| 1397 | + $segments = explode('/', trim($url, '/'));
|
|
| 1398 | 1398 | |
| 1399 | - //print_r( $segments); |
|
| 1400 | - if($gd_wpml_get_languages){
|
|
| 1401 | - $langs = $gd_wpml_get_languages; |
|
| 1402 | - }else{
|
|
| 1403 | - global $sitepress; |
|
| 1404 | - $gd_wpml_get_languages = $sitepress->get_active_languages(); |
|
| 1405 | - } |
|
| 1399 | + //print_r( $segments); |
|
| 1400 | + if($gd_wpml_get_languages){
|
|
| 1401 | + $langs = $gd_wpml_get_languages; |
|
| 1402 | + }else{
|
|
| 1403 | + global $sitepress; |
|
| 1404 | + $gd_wpml_get_languages = $sitepress->get_active_languages(); |
|
| 1405 | + } |
|
| 1406 | 1406 | |
| 1407 | - if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
|
|
| 1408 | - return $segments[0]; |
|
| 1409 | - } |
|
| 1407 | + if (isset($segments[0]) && $segments[0] && array_key_exists($segments[0], $gd_wpml_get_languages)) {
|
|
| 1408 | + return $segments[0]; |
|
| 1409 | + } |
|
| 1410 | 1410 | |
| 1411 | - return false; |
|
| 1411 | + return false; |
|
| 1412 | 1412 | |
| 1413 | 1413 | |
| 1414 | 1414 | } |
| 1415 | 1415 | |
| 1416 | 1416 | function gd_wpml_slug_translation_turned_on($post_type) {
|
| 1417 | 1417 | |
| 1418 | - global $sitepress; |
|
| 1419 | - $settings = $sitepress->get_settings(); |
|
| 1420 | - return isset($settings['posts_slug_translation']['types'][$post_type]) |
|
| 1421 | - && $settings['posts_slug_translation']['types'][$post_type] |
|
| 1422 | - && isset($settings['posts_slug_translation']['on']) |
|
| 1423 | - && $settings['posts_slug_translation']['on']; |
|
| 1418 | + global $sitepress; |
|
| 1419 | + $settings = $sitepress->get_settings(); |
|
| 1420 | + return isset($settings['posts_slug_translation']['types'][$post_type]) |
|
| 1421 | + && $settings['posts_slug_translation']['types'][$post_type] |
|
| 1422 | + && isset($settings['posts_slug_translation']['on']) |
|
| 1423 | + && $settings['posts_slug_translation']['on']; |
|
| 1424 | 1424 | } |
| 1425 | 1425 | |
| 1426 | 1426 | |
@@ -1445,150 +1445,150 @@ discard block |
||
| 1445 | 1445 | */ |
| 1446 | 1446 | function geodir_listing_permalink_structure($post_link, $post_obj, $leavename, $sample) |
| 1447 | 1447 | {
|
| 1448 | - //echo $post_link."<br />".$sample ; |
|
| 1448 | + //echo $post_link."<br />".$sample ; |
|
| 1449 | 1449 | |
| 1450 | 1450 | |
| 1451 | - global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache; |
|
| 1452 | - if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
|
|
| 1453 | - } elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
|
|
| 1454 | - return $post_link; |
|
| 1455 | - } else {
|
|
| 1456 | - $orig_post = $post; |
|
| 1457 | - $post = $post_obj; |
|
| 1458 | - } |
|
| 1451 | + global $wpdb, $wp_query, $plugin_prefix, $post, $comment_post_cache, $gd_permalink_cache; |
|
| 1452 | + if (isset($post_obj->ID) && isset($post->ID) && $post_obj->ID == $post->ID) {
|
|
| 1453 | + } elseif (isset($post_obj->post_status) && $post_obj->post_status == 'auto-draft') {
|
|
| 1454 | + return $post_link; |
|
| 1455 | + } else {
|
|
| 1456 | + $orig_post = $post; |
|
| 1457 | + $post = $post_obj; |
|
| 1458 | + } |
|
| 1459 | 1459 | |
| 1460 | - if (in_array($post->post_type, geodir_get_posttypes())) {
|
|
| 1460 | + if (in_array($post->post_type, geodir_get_posttypes())) {
|
|
| 1461 | 1461 | |
| 1462 | 1462 | |
| 1463 | - $post_types = get_option('geodir_post_types');
|
|
| 1464 | - $slug = $post_types[$post->post_type]['rewrite']['slug']; |
|
| 1463 | + $post_types = get_option('geodir_post_types');
|
|
| 1464 | + $slug = $post_types[$post->post_type]['rewrite']['slug']; |
|
| 1465 | 1465 | |
| 1466 | - // Alter the CPT slug if WPML is set to do so |
|
| 1467 | - if(function_exists('icl_object_id')){
|
|
| 1468 | - if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1466 | + // Alter the CPT slug if WPML is set to do so |
|
| 1467 | + if(function_exists('icl_object_id')){
|
|
| 1468 | + if ( gd_wpml_slug_translation_turned_on( $post->post_type ) && $language_code = gd_wpml_get_lang_from_url($post_link)) {
|
|
| 1469 | 1469 | |
| 1470 | - $org_slug = $slug; |
|
| 1471 | - $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1472 | - $slug, |
|
| 1473 | - 'WordPress', |
|
| 1474 | - 'URL slug: ' . $slug, |
|
| 1475 | - $language_code); |
|
| 1470 | + $org_slug = $slug; |
|
| 1471 | + $slug = apply_filters( 'wpml_translate_single_string', |
|
| 1472 | + $slug, |
|
| 1473 | + 'WordPress', |
|
| 1474 | + 'URL slug: ' . $slug, |
|
| 1475 | + $language_code); |
|
| 1476 | 1476 | |
| 1477 | - if(!$slug){$slug = $org_slug;}
|
|
| 1477 | + if(!$slug){$slug = $org_slug;}
|
|
| 1478 | 1478 | |
| 1479 | - } |
|
| 1480 | - } |
|
| 1479 | + } |
|
| 1480 | + } |
|
| 1481 | 1481 | |
| 1482 | - if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1483 | - remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 1484 | - } |
|
| 1482 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1483 | + remove_filter('home_url', 'geodir_location_geo_home_link', 100000);
|
|
| 1484 | + } |
|
| 1485 | 1485 | |
| 1486 | - // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz. |
|
| 1487 | - $site_url = trailingslashit(get_bloginfo('url'));
|
|
| 1486 | + // Fix slug problem when slug matches part of host or base url/ Ex: url -> www.abcxyz.com & slug -> xyz. |
|
| 1487 | + $site_url = trailingslashit(get_bloginfo('url'));
|
|
| 1488 | 1488 | |
| 1489 | - if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1490 | - add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 1491 | - } |
|
| 1492 | - |
|
| 1493 | - $fix_url = strpos($post_link, $site_url) === 0 ? true : false; |
|
| 1494 | - if ($fix_url) {
|
|
| 1495 | - $post_link = str_replace($site_url, '', $post_link); |
|
| 1496 | - } |
|
| 1497 | - |
|
| 1498 | - $post_link = trailingslashit( |
|
| 1499 | - preg_replace( "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 ) |
|
| 1500 | - ); |
|
| 1501 | - |
|
| 1502 | - if ($fix_url) {
|
|
| 1503 | - $post_link = $site_url . $post_link; |
|
| 1504 | - } |
|
| 1505 | - |
|
| 1506 | - if (isset($comment_post_cache[$post->ID])) {
|
|
| 1507 | - $post = $comment_post_cache[$post->ID]; |
|
| 1508 | - } |
|
| 1509 | - if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
|
|
| 1510 | - $post_id = $post->ID; |
|
| 1511 | - if (isset($orig_post)) {
|
|
| 1512 | - $post = $orig_post; |
|
| 1513 | - } |
|
| 1514 | - return $gd_permalink_cache[$post_id]; |
|
| 1515 | - } |
|
| 1489 | + if (function_exists('geodir_location_geo_home_link')) {
|
|
| 1490 | + add_filter('home_url', 'geodir_location_geo_home_link', 100000, 2);
|
|
| 1491 | + } |
|
| 1516 | 1492 | |
| 1517 | - if (!isset($post->post_locations)) {
|
|
| 1518 | - $post_type = $post->post_type; |
|
| 1519 | - $ID = $post->ID; |
|
| 1520 | - $post2 = $wpdb->get_row( |
|
| 1521 | - $wpdb->prepare( |
|
| 1522 | - "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1523 | - array($post->ID) |
|
| 1524 | - ) |
|
| 1525 | - ); |
|
| 1493 | + $fix_url = strpos($post_link, $site_url) === 0 ? true : false; |
|
| 1494 | + if ($fix_url) {
|
|
| 1495 | + $post_link = str_replace($site_url, '', $post_link); |
|
| 1496 | + } |
|
| 1526 | 1497 | |
| 1527 | - $post = (object)array_merge((array)$post, (array)$post2); |
|
| 1498 | + $post_link = trailingslashit( |
|
| 1499 | + preg_replace( "/" . preg_quote( $slug, "/" ) . "/", $slug ."/%gd_taxonomy%",$post_link, 1 ) |
|
| 1500 | + ); |
|
| 1528 | 1501 | |
| 1529 | - $comment_post_cache[$post->ID] = $post; |
|
| 1530 | - } |
|
| 1502 | + if ($fix_url) {
|
|
| 1503 | + $post_link = $site_url . $post_link; |
|
| 1504 | + } |
|
| 1531 | 1505 | |
| 1506 | + if (isset($comment_post_cache[$post->ID])) {
|
|
| 1507 | + $post = $comment_post_cache[$post->ID]; |
|
| 1508 | + } |
|
| 1509 | + if (isset($gd_permalink_cache[$post->ID]) && $gd_permalink_cache[$post->ID] && !$sample) {
|
|
| 1510 | + $post_id = $post->ID; |
|
| 1511 | + if (isset($orig_post)) {
|
|
| 1512 | + $post = $orig_post; |
|
| 1513 | + } |
|
| 1514 | + return $gd_permalink_cache[$post_id]; |
|
| 1515 | + } |
|
| 1532 | 1516 | |
| 1517 | + if (!isset($post->post_locations)) {
|
|
| 1518 | + $post_type = $post->post_type; |
|
| 1519 | + $ID = $post->ID; |
|
| 1520 | + $post2 = $wpdb->get_row( |
|
| 1521 | + $wpdb->prepare( |
|
| 1522 | + "SELECT * from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1523 | + array($post->ID) |
|
| 1524 | + ) |
|
| 1525 | + ); |
|
| 1533 | 1526 | |
| 1534 | - if (false !== strpos($post_link, '%gd_taxonomy%')) {
|
|
| 1527 | + $post = (object)array_merge((array)$post, (array)$post2); |
|
| 1535 | 1528 | |
| 1536 | - if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
|
|
| 1537 | - $location_request = ''; |
|
| 1529 | + $comment_post_cache[$post->ID] = $post; |
|
| 1530 | + } |
|
| 1538 | 1531 | |
| 1539 | 1532 | |
| 1540 | - if (!empty($post->post_locations)) {
|
|
| 1541 | - $geodir_arr_locations = explode(',', $post->post_locations);
|
|
| 1542 | - if (count($geodir_arr_locations) == 3) {
|
|
| 1543 | - $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1544 | - $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1545 | - $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1546 | - $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1547 | - $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1548 | - $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1549 | 1533 | |
| 1550 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1551 | - 'region_slug' => $post->region_slug, |
|
| 1552 | - 'city_slug' => $post->city_slug |
|
| 1553 | - ); |
|
| 1534 | + if (false !== strpos($post_link, '%gd_taxonomy%')) {
|
|
| 1554 | 1535 | |
| 1555 | - } else |
|
| 1556 | - $post_location = geodir_get_location(); |
|
| 1536 | + if ( apply_filters("geodir_add_location_url_to_url",get_option('geodir_add_location_url'),$post->post_type,$post)) {
|
|
| 1537 | + $location_request = ''; |
|
| 1557 | 1538 | |
| 1558 | 1539 | |
| 1559 | - } else {
|
|
| 1540 | + if (!empty($post->post_locations)) {
|
|
| 1541 | + $geodir_arr_locations = explode(',', $post->post_locations);
|
|
| 1542 | + if (count($geodir_arr_locations) == 3) {
|
|
| 1543 | + $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1544 | + $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1545 | + $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1546 | + $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1547 | + $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1548 | + $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1560 | 1549 | |
| 1561 | - $post_location_sql = $wpdb->get_results( |
|
| 1562 | - $wpdb->prepare( |
|
| 1563 | - "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1564 | - array($post->ID) |
|
| 1565 | - ) |
|
| 1566 | - ); |
|
| 1567 | - |
|
| 1568 | - if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
|
|
| 1569 | - |
|
| 1570 | - $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
|
|
| 1571 | - if (count($geodir_arr_locations) == 3) {
|
|
| 1572 | - $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1573 | - $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1574 | - $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1575 | - $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1576 | - $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1577 | - $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1578 | - |
|
| 1579 | - $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1580 | - 'region_slug' => $post->region_slug, |
|
| 1581 | - 'city_slug' => $post->city_slug |
|
| 1582 | - ); |
|
| 1550 | + $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1551 | + 'region_slug' => $post->region_slug, |
|
| 1552 | + 'city_slug' => $post->city_slug |
|
| 1553 | + ); |
|
| 1583 | 1554 | |
| 1584 | - } |
|
| 1585 | - } else |
|
| 1586 | - $post_location = geodir_get_location(); |
|
| 1587 | - } |
|
| 1555 | + } else |
|
| 1556 | + $post_location = geodir_get_location(); |
|
| 1588 | 1557 | |
| 1589 | 1558 | |
| 1590 | - if (!empty($post_location)) {
|
|
| 1591 | - $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : ''; |
|
| 1559 | + } else {
|
|
| 1560 | + |
|
| 1561 | + $post_location_sql = $wpdb->get_results( |
|
| 1562 | + $wpdb->prepare( |
|
| 1563 | + "SELECT post_locations from " . $plugin_prefix . $post->post_type . "_detail WHERE post_id = %d ", |
|
| 1564 | + array($post->ID) |
|
| 1565 | + ) |
|
| 1566 | + ); |
|
| 1567 | + |
|
| 1568 | + if (!empty($post_location_sql) && is_array($post_location_sql) && !empty($post_location_sql[0]->post_locations)) {
|
|
| 1569 | + |
|
| 1570 | + $geodir_arr_locations = explode(',', $post_location_sql[0]->post_locations);
|
|
| 1571 | + if (count($geodir_arr_locations) == 3) {
|
|
| 1572 | + $post->city_slug = str_replace('[', '', $geodir_arr_locations[0]);
|
|
| 1573 | + $post->city_slug = str_replace(']', '', $post->city_slug);
|
|
| 1574 | + $post->region_slug = str_replace('[', '', $geodir_arr_locations[1]);
|
|
| 1575 | + $post->region_slug = str_replace(']', '', $post->region_slug);
|
|
| 1576 | + $post->country_slug = str_replace('[', '', $geodir_arr_locations[2]);
|
|
| 1577 | + $post->country_slug = str_replace(']', '', $post->country_slug);
|
|
| 1578 | + |
|
| 1579 | + $post_location = (object)array('country_slug' => $post->country_slug,
|
|
| 1580 | + 'region_slug' => $post->region_slug, |
|
| 1581 | + 'city_slug' => $post->city_slug |
|
| 1582 | + ); |
|
| 1583 | + |
|
| 1584 | + } |
|
| 1585 | + } else |
|
| 1586 | + $post_location = geodir_get_location(); |
|
| 1587 | + } |
|
| 1588 | + |
|
| 1589 | + |
|
| 1590 | + if (!empty($post_location)) {
|
|
| 1591 | + $country_slug = isset($post_location->country_slug) ? $post_location->country_slug : ''; |
|
| 1592 | 1592 | $region_slug = isset($post_location->region_slug) ? $post_location->region_slug : ''; |
| 1593 | 1593 | $city_slug = isset($post_location->city_slug) ? $post_location->city_slug : ''; |
| 1594 | 1594 | |
@@ -1606,78 +1606,78 @@ discard block |
||
| 1606 | 1606 | $location_slug[] = $city_slug; |
| 1607 | 1607 | |
| 1608 | 1608 | $location_request .= implode('/', $location_slug) . '/';
|
| 1609 | - } |
|
| 1610 | - } |
|
| 1609 | + } |
|
| 1610 | + } |
|
| 1611 | 1611 | |
| 1612 | - if (get_option('geodir_add_categories_url')) {
|
|
| 1612 | + if (get_option('geodir_add_categories_url')) {
|
|
| 1613 | 1613 | |
| 1614 | - $term_request = ''; |
|
| 1615 | - $taxonomies = geodir_get_taxonomies($post->post_type); |
|
| 1614 | + $term_request = ''; |
|
| 1615 | + $taxonomies = geodir_get_taxonomies($post->post_type); |
|
| 1616 | 1616 | |
| 1617 | - $taxonomies = end($taxonomies); |
|
| 1617 | + $taxonomies = end($taxonomies); |
|
| 1618 | 1618 | |
| 1619 | - if (!empty($post->default_category)) {
|
|
| 1620 | - $post_terms = $post->default_category; |
|
| 1621 | - } else {
|
|
| 1622 | - $post_terms = ''; |
|
| 1619 | + if (!empty($post->default_category)) {
|
|
| 1620 | + $post_terms = $post->default_category; |
|
| 1621 | + } else {
|
|
| 1622 | + $post_terms = ''; |
|
| 1623 | 1623 | |
| 1624 | - if (isset($post->{$taxonomies})) {
|
|
| 1625 | - $post_terms = explode(",", trim($post->{$taxonomies}, ","));
|
|
| 1626 | - $post_terms = $post_terms[0]; |
|
| 1627 | - } |
|
| 1624 | + if (isset($post->{$taxonomies})) {
|
|
| 1625 | + $post_terms = explode(",", trim($post->{$taxonomies}, ","));
|
|
| 1626 | + $post_terms = $post_terms[0]; |
|
| 1627 | + } |
|
| 1628 | 1628 | |
| 1629 | - if (!$post_terms) |
|
| 1630 | - $post_terms = geodir_get_post_meta($post->ID, 'default_category', true); |
|
| 1629 | + if (!$post_terms) |
|
| 1630 | + $post_terms = geodir_get_post_meta($post->ID, 'default_category', true); |
|
| 1631 | 1631 | |
| 1632 | - if (!$post_terms) {
|
|
| 1633 | - $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true); |
|
| 1632 | + if (!$post_terms) {
|
|
| 1633 | + $post_terms = geodir_get_post_meta($post->ID, $taxonomies, true); |
|
| 1634 | 1634 | |
| 1635 | - if ($post_terms) {
|
|
| 1636 | - $post_terms = explode(",", trim($post_terms, ","));
|
|
| 1637 | - $post_terms = $post_terms[0]; |
|
| 1638 | - } |
|
| 1639 | - } |
|
| 1640 | - } |
|
| 1635 | + if ($post_terms) {
|
|
| 1636 | + $post_terms = explode(",", trim($post_terms, ","));
|
|
| 1637 | + $post_terms = $post_terms[0]; |
|
| 1638 | + } |
|
| 1639 | + } |
|
| 1640 | + } |
|
| 1641 | 1641 | |
| 1642 | - $term = get_term_by('id', $post_terms, $taxonomies);
|
|
| 1642 | + $term = get_term_by('id', $post_terms, $taxonomies);
|
|
| 1643 | 1643 | |
| 1644 | - if (!empty($term)) |
|
| 1645 | - $term_request = $term->slug; |
|
| 1646 | - //$term_request = $term->slug.'/'; |
|
| 1647 | - } |
|
| 1644 | + if (!empty($term)) |
|
| 1645 | + $term_request = $term->slug; |
|
| 1646 | + //$term_request = $term->slug.'/'; |
|
| 1647 | + } |
|
| 1648 | 1648 | |
| 1649 | - $request_term = ''; |
|
| 1650 | - $listingurl_separator = ''; |
|
| 1651 | - //$detailurl_separator = get_option('geodir_detailurl_separator');
|
|
| 1652 | - $detailurl_separator = ''; |
|
| 1653 | - if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
|
|
| 1654 | - $request_term = $location_request; |
|
| 1655 | - //$listingurl_separator = get_option('geodir_listingurl_separator');
|
|
| 1656 | - //$request_term .= $listingurl_separator.'/'.$term_request; |
|
| 1657 | - $request_term .= $term_request; |
|
| 1649 | + $request_term = ''; |
|
| 1650 | + $listingurl_separator = ''; |
|
| 1651 | + //$detailurl_separator = get_option('geodir_detailurl_separator');
|
|
| 1652 | + $detailurl_separator = ''; |
|
| 1653 | + if (isset($location_request) && $location_request != '' && isset($term_request) && $term_request != '') {
|
|
| 1654 | + $request_term = $location_request; |
|
| 1655 | + //$listingurl_separator = get_option('geodir_listingurl_separator');
|
|
| 1656 | + //$request_term .= $listingurl_separator.'/'.$term_request; |
|
| 1657 | + $request_term .= $term_request; |
|
| 1658 | 1658 | |
| 1659 | - } else {
|
|
| 1660 | - if (isset($location_request) && $location_request != '') $request_term = $location_request; |
|
| 1659 | + } else {
|
|
| 1660 | + if (isset($location_request) && $location_request != '') $request_term = $location_request; |
|
| 1661 | 1661 | |
| 1662 | - if (isset($term_request) && $term_request != '') $request_term .= $term_request; |
|
| 1663 | - } |
|
| 1664 | - $request_term = trim($request_term, '/'); |
|
| 1665 | - if (!empty($request_term)) |
|
| 1666 | - $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1667 | - else |
|
| 1668 | - $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1669 | - //echo $post_link ; |
|
| 1670 | - } |
|
| 1671 | - // temp cache the permalink |
|
| 1672 | - if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
|
|
| 1673 | - $gd_permalink_cache[$post->ID] = $post_link; |
|
| 1674 | - } |
|
| 1675 | - } |
|
| 1676 | - if (isset($orig_post)) {
|
|
| 1677 | - $post = $orig_post; |
|
| 1678 | - } |
|
| 1679 | - |
|
| 1680 | - return $post_link; |
|
| 1662 | + if (isset($term_request) && $term_request != '') $request_term .= $term_request; |
|
| 1663 | + } |
|
| 1664 | + $request_term = trim($request_term, '/'); |
|
| 1665 | + if (!empty($request_term)) |
|
| 1666 | + $post_link = str_replace('%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1667 | + else |
|
| 1668 | + $post_link = str_replace('/%gd_taxonomy%', $request_term . $detailurl_separator, $post_link);
|
|
| 1669 | + //echo $post_link ; |
|
| 1670 | + } |
|
| 1671 | + // temp cache the permalink |
|
| 1672 | + if (!$sample && (!isset($_REQUEST['geodir_ajax']) || (isset($_REQUEST['geodir_ajax']) && $_REQUEST['geodir_ajax'] != 'add_listing'))) {
|
|
| 1673 | + $gd_permalink_cache[$post->ID] = $post_link; |
|
| 1674 | + } |
|
| 1675 | + } |
|
| 1676 | + if (isset($orig_post)) {
|
|
| 1677 | + $post = $orig_post; |
|
| 1678 | + } |
|
| 1679 | + |
|
| 1680 | + return $post_link; |
|
| 1681 | 1681 | } |
| 1682 | 1682 | |
| 1683 | 1683 | /** |
@@ -1693,99 +1693,99 @@ discard block |
||
| 1693 | 1693 | * @return string The term link. |
| 1694 | 1694 | */ |
| 1695 | 1695 | function geodir_term_link($termlink, $term, $taxonomy) {
|
| 1696 | - $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 1696 | + $geodir_taxonomies = geodir_get_taxonomies('', true);
|
|
| 1697 | 1697 | |
| 1698 | - if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
|
|
| 1699 | - global $geodir_add_location_url, $gd_session; |
|
| 1700 | - $include_location = false; |
|
| 1701 | - $request_term = array(); |
|
| 1702 | - $add_location_url = get_option('geodir_add_location_url');
|
|
| 1703 | - $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 1698 | + if (isset($taxonomy) && !empty($geodir_taxonomies) && in_array($taxonomy, $geodir_taxonomies)) {
|
|
| 1699 | + global $geodir_add_location_url, $gd_session; |
|
| 1700 | + $include_location = false; |
|
| 1701 | + $request_term = array(); |
|
| 1702 | + $add_location_url = get_option('geodir_add_location_url');
|
|
| 1703 | + $location_manager = defined('POST_LOCATION_TABLE') ? true : false;
|
|
| 1704 | 1704 | |
| 1705 | - $listing_slug = geodir_get_listing_slug($taxonomy); |
|
| 1705 | + $listing_slug = geodir_get_listing_slug($taxonomy); |
|
| 1706 | 1706 | |
| 1707 | - if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
|
|
| 1708 | - if ($geodir_add_location_url && $add_location_url) {
|
|
| 1709 | - $include_location = true; |
|
| 1710 | - } |
|
| 1711 | - } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
|
|
| 1712 | - $include_location = true; |
|
| 1713 | - } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
|
|
| 1714 | - $include_location = true; |
|
| 1715 | - } |
|
| 1716 | - |
|
| 1717 | - if ($include_location) {
|
|
| 1718 | - global $post; |
|
| 1707 | + if ($geodir_add_location_url != NULL && $geodir_add_location_url != '') {
|
|
| 1708 | + if ($geodir_add_location_url && $add_location_url) {
|
|
| 1709 | + $include_location = true; |
|
| 1710 | + } |
|
| 1711 | + } elseif ($add_location_url && $gd_session->get('gd_multi_location') == 1) {
|
|
| 1712 | + $include_location = true; |
|
| 1713 | + } elseif ($add_location_url && $location_manager && geodir_is_page('detail')) {
|
|
| 1714 | + $include_location = true; |
|
| 1715 | + } |
|
| 1716 | + |
|
| 1717 | + if ($include_location) {
|
|
| 1718 | + global $post; |
|
| 1719 | 1719 | |
| 1720 | - $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 1720 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 1721 | 1721 | |
| 1722 | - if (geodir_is_page('detail') && isset($post->country_slug)) {
|
|
| 1723 | - $location_terms = array( |
|
| 1724 | - 'gd_country' => $post->country_slug, |
|
| 1725 | - 'gd_region' => $post->region_slug, |
|
| 1726 | - 'gd_city' => $post->city_slug |
|
| 1727 | - ); |
|
| 1722 | + if (geodir_is_page('detail') && isset($post->country_slug)) {
|
|
| 1723 | + $location_terms = array( |
|
| 1724 | + 'gd_country' => $post->country_slug, |
|
| 1725 | + 'gd_region' => $post->region_slug, |
|
| 1726 | + 'gd_city' => $post->city_slug |
|
| 1727 | + ); |
|
| 1728 | 1728 | |
| 1729 | - if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
|
|
| 1730 | - $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
|
| 1731 | - } |
|
| 1732 | - } else {
|
|
| 1733 | - $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1734 | - } |
|
| 1729 | + if ($neighbourhood_active && !empty($location_terms['gd_city']) && $gd_ses_neighbourhood = $gd_session->get('gd_neighbourhood')) {
|
|
| 1730 | + $location_terms['gd_neighbourhood'] = $gd_ses_neighbourhood; |
|
| 1731 | + } |
|
| 1732 | + } else {
|
|
| 1733 | + $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1734 | + } |
|
| 1735 | 1735 | |
| 1736 | - $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 1737 | - $location_terms = geodir_remove_location_terms($location_terms); |
|
| 1736 | + $geodir_show_location_url = get_option('geodir_show_location_url');
|
|
| 1737 | + $location_terms = geodir_remove_location_terms($location_terms); |
|
| 1738 | 1738 | |
| 1739 | - if (!empty($location_terms)) {
|
|
| 1740 | - $url_separator = ''; |
|
| 1739 | + if (!empty($location_terms)) {
|
|
| 1740 | + $url_separator = ''; |
|
| 1741 | 1741 | |
| 1742 | - if (get_option('permalink_structure') != '') {
|
|
| 1743 | - $old_listing_slug = '/' . $listing_slug . '/'; |
|
| 1744 | - $request_term = implode("/", $location_terms);
|
|
| 1745 | - $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/'; |
|
| 1742 | + if (get_option('permalink_structure') != '') {
|
|
| 1743 | + $old_listing_slug = '/' . $listing_slug . '/'; |
|
| 1744 | + $request_term = implode("/", $location_terms);
|
|
| 1745 | + $new_listing_slug = '/' . $listing_slug . '/' . $request_term . '/'; |
|
| 1746 | 1746 | |
| 1747 | - $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug)); |
|
| 1748 | - } else {
|
|
| 1749 | - $termlink = geodir_getlink($termlink, $request_term); |
|
| 1750 | - } |
|
| 1751 | - } |
|
| 1752 | - } |
|
| 1747 | + $termlink = substr_replace($termlink, $new_listing_slug, strpos($termlink, $old_listing_slug), strlen($old_listing_slug)); |
|
| 1748 | + } else {
|
|
| 1749 | + $termlink = geodir_getlink($termlink, $request_term); |
|
| 1750 | + } |
|
| 1751 | + } |
|
| 1752 | + } |
|
| 1753 | 1753 | |
| 1754 | - // Alter the CPT slug is WPML is set to do so |
|
| 1755 | - /* we can replace this with the below function |
|
| 1754 | + // Alter the CPT slug is WPML is set to do so |
|
| 1755 | + /* we can replace this with the below function |
|
| 1756 | 1756 | if(function_exists('icl_object_id')){
|
| 1757 | 1757 | global $sitepress; |
| 1758 | 1758 | $post_type = str_replace("category","",$taxonomy);
|
| 1759 | 1759 | $termlink = $sitepress->post_type_archive_link_filter( $termlink, $post_type); |
| 1760 | 1760 | }*/ |
| 1761 | 1761 | |
| 1762 | - // Alter the CPT slug if WPML is set to do so |
|
| 1763 | - if (function_exists('icl_object_id')) {
|
|
| 1764 | - $post_types = get_option('geodir_post_types');
|
|
| 1765 | - $post_type = str_replace("category","",$taxonomy);
|
|
| 1766 | - $post_type = str_replace("_tags","",$post_type);
|
|
| 1767 | - $slug = $post_types[$post_type]['rewrite']['slug']; |
|
| 1768 | - if (gd_wpml_slug_translation_turned_on($post_type)) {
|
|
| 1769 | - global $sitepress; |
|
| 1770 | - $default_lang = $sitepress->get_default_language(); |
|
| 1771 | - $language_code = gd_wpml_get_lang_from_url($termlink); |
|
| 1772 | - if (!$language_code ) {
|
|
| 1773 | - $language_code = $default_lang; |
|
| 1774 | - } |
|
| 1762 | + // Alter the CPT slug if WPML is set to do so |
|
| 1763 | + if (function_exists('icl_object_id')) {
|
|
| 1764 | + $post_types = get_option('geodir_post_types');
|
|
| 1765 | + $post_type = str_replace("category","",$taxonomy);
|
|
| 1766 | + $post_type = str_replace("_tags","",$post_type);
|
|
| 1767 | + $slug = $post_types[$post_type]['rewrite']['slug']; |
|
| 1768 | + if (gd_wpml_slug_translation_turned_on($post_type)) {
|
|
| 1769 | + global $sitepress; |
|
| 1770 | + $default_lang = $sitepress->get_default_language(); |
|
| 1771 | + $language_code = gd_wpml_get_lang_from_url($termlink); |
|
| 1772 | + if (!$language_code ) {
|
|
| 1773 | + $language_code = $default_lang; |
|
| 1774 | + } |
|
| 1775 | 1775 | |
| 1776 | - $org_slug = $slug; |
|
| 1777 | - $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
|
|
| 1776 | + $org_slug = $slug; |
|
| 1777 | + $slug = apply_filters('wpml_translate_single_string', $slug, 'WordPress', 'URL slug: ' . $slug, $language_code);
|
|
| 1778 | 1778 | |
| 1779 | - if (!$slug) {
|
|
| 1780 | - $slug = $org_slug; |
|
| 1781 | - } |
|
| 1779 | + if (!$slug) {
|
|
| 1780 | + $slug = $org_slug; |
|
| 1781 | + } |
|
| 1782 | 1782 | |
| 1783 | - $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug ,$termlink, 1));
|
|
| 1784 | - } |
|
| 1785 | - } |
|
| 1786 | - } |
|
| 1783 | + $termlink = trailingslashit(preg_replace("/" . preg_quote($org_slug, "/") . "/", $slug ,$termlink, 1));
|
|
| 1784 | + } |
|
| 1785 | + } |
|
| 1786 | + } |
|
| 1787 | 1787 | |
| 1788 | - return $termlink; |
|
| 1788 | + return $termlink; |
|
| 1789 | 1789 | } |
| 1790 | 1790 | |
| 1791 | 1791 | /** |
@@ -1811,14 +1811,14 @@ discard block |
||
| 1811 | 1811 | if (in_array($post_type, geodir_get_posttypes())) {
|
| 1812 | 1812 | if (get_option('geodir_add_location_url') && $gd_session->get('gd_multi_location') == 1) {
|
| 1813 | 1813 | if(geodir_is_page('detail') && !empty($post) && isset($post->country_slug)) {
|
| 1814 | - $location_terms = array( |
|
| 1815 | - 'gd_country' => $post->country_slug, |
|
| 1816 | - 'gd_region' => $post->region_slug, |
|
| 1817 | - 'gd_city' => $post->city_slug |
|
| 1818 | - ); |
|
| 1819 | - } else {
|
|
| 1820 | - $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1821 | - } |
|
| 1814 | + $location_terms = array( |
|
| 1815 | + 'gd_country' => $post->country_slug, |
|
| 1816 | + 'gd_region' => $post->region_slug, |
|
| 1817 | + 'gd_city' => $post->city_slug |
|
| 1818 | + ); |
|
| 1819 | + } else {
|
|
| 1820 | + $location_terms = geodir_get_current_location_terms('query_vars');
|
|
| 1821 | + } |
|
| 1822 | 1822 | |
| 1823 | 1823 | $location_terms = geodir_remove_location_terms($location_terms); |
| 1824 | 1824 | |
@@ -1850,17 +1850,17 @@ discard block |
||
| 1850 | 1850 | * @return void|string Label. |
| 1851 | 1851 | */ |
| 1852 | 1852 | function get_post_type_singular_label($post_type, $echo = false, $translate = false) {
|
| 1853 | - $obj_post_type = get_post_type_object($post_type); |
|
| 1854 | - if (!is_object($obj_post_type)) {
|
|
| 1855 | - return; |
|
| 1856 | - } |
|
| 1853 | + $obj_post_type = get_post_type_object($post_type); |
|
| 1854 | + if (!is_object($obj_post_type)) {
|
|
| 1855 | + return; |
|
| 1856 | + } |
|
| 1857 | 1857 | |
| 1858 | - $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name; |
|
| 1858 | + $label = $translate ? __($obj_post_type->labels->singular_name, 'geodirectory') : $obj_post_type->labels->singular_name; |
|
| 1859 | 1859 | |
| 1860 | - if ($echo) |
|
| 1861 | - echo $label; |
|
| 1862 | - else |
|
| 1863 | - return $label; |
|
| 1860 | + if ($echo) |
|
| 1861 | + echo $label; |
|
| 1862 | + else |
|
| 1863 | + return $label; |
|
| 1864 | 1864 | } |
| 1865 | 1865 | |
| 1866 | 1866 | /** |
@@ -1875,19 +1875,19 @@ discard block |
||
| 1875 | 1875 | * @return void|string Label. |
| 1876 | 1876 | */ |
| 1877 | 1877 | function get_post_type_plural_label($post_type, $echo = false, $translate = false) {
|
| 1878 | - $all_postypes = geodir_get_posttypes(); |
|
| 1878 | + $all_postypes = geodir_get_posttypes(); |
|
| 1879 | 1879 | |
| 1880 | - if (!in_array($post_type, $all_postypes)) |
|
| 1881 | - return false; |
|
| 1880 | + if (!in_array($post_type, $all_postypes)) |
|
| 1881 | + return false; |
|
| 1882 | 1882 | |
| 1883 | - $obj_post_type = get_post_type_object($post_type); |
|
| 1883 | + $obj_post_type = get_post_type_object($post_type); |
|
| 1884 | 1884 | |
| 1885 | - $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name; |
|
| 1885 | + $label = $translate ? __($obj_post_type->labels->name, 'geodirectory') : $obj_post_type->labels->name; |
|
| 1886 | 1886 | |
| 1887 | - if ($echo) |
|
| 1888 | - echo $label; |
|
| 1889 | - else |
|
| 1890 | - return $label; |
|
| 1887 | + if ($echo) |
|
| 1888 | + echo $label; |
|
| 1889 | + else |
|
| 1890 | + return $label; |
|
| 1891 | 1891 | } |
| 1892 | 1892 | |
| 1893 | 1893 | /** |
@@ -1905,51 +1905,51 @@ discard block |
||
| 1905 | 1905 | */ |
| 1906 | 1906 | function geodir_term_exists($term, $taxonomy = '', $parent = 0) |
| 1907 | 1907 | {
|
| 1908 | - global $wpdb; |
|
| 1909 | - |
|
| 1910 | - $select = "SELECT term_id FROM $wpdb->terms as t WHERE "; |
|
| 1911 | - $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE "; |
|
| 1912 | - |
|
| 1913 | - if (is_int($term)) {
|
|
| 1914 | - if (0 == $term) |
|
| 1915 | - return 0; |
|
| 1916 | - $where = 't.term_id = %d'; |
|
| 1917 | - if (!empty($taxonomy)) |
|
| 1918 | - return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1919 | - else |
|
| 1920 | - return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1921 | - } |
|
| 1908 | + global $wpdb; |
|
| 1909 | + |
|
| 1910 | + $select = "SELECT term_id FROM $wpdb->terms as t WHERE "; |
|
| 1911 | + $tax_select = "SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE "; |
|
| 1912 | + |
|
| 1913 | + if (is_int($term)) {
|
|
| 1914 | + if (0 == $term) |
|
| 1915 | + return 0; |
|
| 1916 | + $where = 't.term_id = %d'; |
|
| 1917 | + if (!empty($taxonomy)) |
|
| 1918 | + return $wpdb->get_row($wpdb->prepare($tax_select . $where . " AND tt.taxonomy = %s", $term, $taxonomy), ARRAY_A); |
|
| 1919 | + else |
|
| 1920 | + return $wpdb->get_var($wpdb->prepare($select . $where, $term)); |
|
| 1921 | + } |
|
| 1922 | 1922 | |
| 1923 | - $term = trim(wp_unslash($term)); |
|
| 1923 | + $term = trim(wp_unslash($term)); |
|
| 1924 | 1924 | |
| 1925 | - if ('' === $slug = sanitize_title($term))
|
|
| 1926 | - return 0; |
|
| 1925 | + if ('' === $slug = sanitize_title($term))
|
|
| 1926 | + return 0; |
|
| 1927 | 1927 | |
| 1928 | - $where = 't.slug = %s'; |
|
| 1928 | + $where = 't.slug = %s'; |
|
| 1929 | 1929 | |
| 1930 | - $where_fields = array($slug); |
|
| 1931 | - if (!empty($taxonomy)) {
|
|
| 1932 | - $parent = (int)$parent; |
|
| 1933 | - if ($parent > 0) {
|
|
| 1934 | - $where_fields[] = $parent; |
|
| 1935 | - $else_where_fields[] = $parent; |
|
| 1936 | - $where .= ' AND tt.parent = %d'; |
|
| 1930 | + $where_fields = array($slug); |
|
| 1931 | + if (!empty($taxonomy)) {
|
|
| 1932 | + $parent = (int)$parent; |
|
| 1933 | + if ($parent > 0) {
|
|
| 1934 | + $where_fields[] = $parent; |
|
| 1935 | + $else_where_fields[] = $parent; |
|
| 1936 | + $where .= ' AND tt.parent = %d'; |
|
| 1937 | 1937 | |
| 1938 | - } |
|
| 1938 | + } |
|
| 1939 | 1939 | |
| 1940 | - $where_fields[] = $taxonomy; |
|
| 1940 | + $where_fields[] = $taxonomy; |
|
| 1941 | 1941 | |
| 1942 | 1942 | |
| 1943 | - if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
|
|
| 1944 | - return $result; |
|
| 1943 | + if ($result = $wpdb->get_row($wpdb->prepare("SELECT tt.term_id, tt.term_taxonomy_id FROM $wpdb->terms AS t INNER JOIN $wpdb->term_taxonomy as tt ON tt.term_id = t.term_id WHERE $where AND tt.taxonomy = %s", $where_fields), ARRAY_A))
|
|
| 1944 | + return $result; |
|
| 1945 | 1945 | |
| 1946 | - return false; |
|
| 1947 | - } |
|
| 1946 | + return false; |
|
| 1947 | + } |
|
| 1948 | 1948 | |
| 1949 | - if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
|
|
| 1950 | - return $result; |
|
| 1949 | + if ($result = $wpdb->get_var($wpdb->prepare("SELECT term_id FROM $wpdb->terms as t WHERE $where", $where_fields)))
|
|
| 1950 | + return $result; |
|
| 1951 | 1951 | |
| 1952 | - return false; |
|
| 1952 | + return false; |
|
| 1953 | 1953 | } |
| 1954 | 1954 | |
| 1955 | 1955 | /** |
@@ -1961,7 +1961,7 @@ discard block |
||
| 1961 | 1961 | function geodir_get_term_icon_rebuild() |
| 1962 | 1962 | {
|
| 1963 | 1963 | |
| 1964 | - update_option('gd_term_icons', '');
|
|
| 1964 | + update_option('gd_term_icons', '');
|
|
| 1965 | 1965 | |
| 1966 | 1966 | } |
| 1967 | 1967 | |
@@ -1979,61 +1979,61 @@ discard block |
||
| 1979 | 1979 | */ |
| 1980 | 1980 | function geodir_get_term_icon($term_id = false, $rebuild = false) |
| 1981 | 1981 | {
|
| 1982 | - global $wpdb; |
|
| 1983 | - if (!$rebuild) {
|
|
| 1984 | - $terms_icons = get_option('gd_term_icons');
|
|
| 1985 | - } else {
|
|
| 1986 | - $terms_icons = array(); |
|
| 1987 | - } |
|
| 1988 | - |
|
| 1989 | - if (empty($terms_icons)) {
|
|
| 1990 | - $terms_icons = array(); |
|
| 1991 | - $default_icon_url = get_option('geodir_default_marker_icon');
|
|
| 1992 | - $taxonomy = geodir_get_taxonomies(); |
|
| 1993 | - $post_types = geodir_get_posttypes(); |
|
| 1994 | - $tax_arr = array(); |
|
| 1995 | - foreach ($post_types as $post_type) {
|
|
| 1996 | - $tax_arr[] = "'" . $post_type . "category'"; |
|
| 1997 | - } |
|
| 1998 | - $tax_c = implode(',', $tax_arr);
|
|
| 1999 | - $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
|
|
| 2000 | - //$terms = get_terms( $taxonomy ); |
|
| 2001 | - |
|
| 2002 | - if($terms) {
|
|
| 2003 | - foreach ($terms as $term) {
|
|
| 2004 | - $post_type = str_replace("category", "", $term->taxonomy);
|
|
| 2005 | - $a_terms[$post_type][] = $term; |
|
| 1982 | + global $wpdb; |
|
| 1983 | + if (!$rebuild) {
|
|
| 1984 | + $terms_icons = get_option('gd_term_icons');
|
|
| 1985 | + } else {
|
|
| 1986 | + $terms_icons = array(); |
|
| 1987 | + } |
|
| 2006 | 1988 | |
| 2007 | - } |
|
| 2008 | - } |
|
| 1989 | + if (empty($terms_icons)) {
|
|
| 1990 | + $terms_icons = array(); |
|
| 1991 | + $default_icon_url = get_option('geodir_default_marker_icon');
|
|
| 1992 | + $taxonomy = geodir_get_taxonomies(); |
|
| 1993 | + $post_types = geodir_get_posttypes(); |
|
| 1994 | + $tax_arr = array(); |
|
| 1995 | + foreach ($post_types as $post_type) {
|
|
| 1996 | + $tax_arr[] = "'" . $post_type . "category'"; |
|
| 1997 | + } |
|
| 1998 | + $tax_c = implode(',', $tax_arr);
|
|
| 1999 | + $terms = $wpdb->get_results("SELECT * FROM $wpdb->term_taxonomy WHERE taxonomy IN ($tax_c)");
|
|
| 2000 | + //$terms = get_terms( $taxonomy ); |
|
| 2009 | 2001 | |
| 2010 | - if($a_terms) {
|
|
| 2011 | - foreach ($a_terms as $pt => $t2) {
|
|
| 2002 | + if($terms) {
|
|
| 2003 | + foreach ($terms as $term) {
|
|
| 2004 | + $post_type = str_replace("category", "", $term->taxonomy);
|
|
| 2005 | + $a_terms[$post_type][] = $term; |
|
| 2012 | 2006 | |
| 2013 | - foreach ($t2 as $term) {
|
|
| 2014 | - $term_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt); |
|
| 2015 | - if ($term_icon) {
|
|
| 2016 | - $term_icon_url = $term_icon["src"]; |
|
| 2017 | - } else {
|
|
| 2018 | - $term_icon_url = $default_icon_url; |
|
| 2019 | - } |
|
| 2020 | - $terms_icons[$term->term_id] = $term_icon_url; |
|
| 2021 | - } |
|
| 2022 | - } |
|
| 2023 | - } |
|
| 2007 | + } |
|
| 2008 | + } |
|
| 2009 | + |
|
| 2010 | + if($a_terms) {
|
|
| 2011 | + foreach ($a_terms as $pt => $t2) {
|
|
| 2012 | + |
|
| 2013 | + foreach ($t2 as $term) {
|
|
| 2014 | + $term_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $pt); |
|
| 2015 | + if ($term_icon) {
|
|
| 2016 | + $term_icon_url = $term_icon["src"]; |
|
| 2017 | + } else {
|
|
| 2018 | + $term_icon_url = $default_icon_url; |
|
| 2019 | + } |
|
| 2020 | + $terms_icons[$term->term_id] = $term_icon_url; |
|
| 2021 | + } |
|
| 2022 | + } |
|
| 2023 | + } |
|
| 2024 | 2024 | |
| 2025 | - update_option('gd_term_icons', $terms_icons);
|
|
| 2026 | - } |
|
| 2025 | + update_option('gd_term_icons', $terms_icons);
|
|
| 2026 | + } |
|
| 2027 | 2027 | |
| 2028 | - if ($term_id && isset($terms_icons[$term_id])) {
|
|
| 2029 | - return $terms_icons[$term_id]; |
|
| 2030 | - } elseif ($term_id && !isset($terms_icons[$term_id])) {
|
|
| 2031 | - return get_option('geodir_default_marker_icon');
|
|
| 2032 | - } |
|
| 2028 | + if ($term_id && isset($terms_icons[$term_id])) {
|
|
| 2029 | + return $terms_icons[$term_id]; |
|
| 2030 | + } elseif ($term_id && !isset($terms_icons[$term_id])) {
|
|
| 2031 | + return get_option('geodir_default_marker_icon');
|
|
| 2032 | + } |
|
| 2033 | 2033 | |
| 2034 | - if (is_ssl()) {
|
|
| 2035 | - $terms_icons = str_replace("http:","https:",$terms_icons );
|
|
| 2036 | - } |
|
| 2034 | + if (is_ssl()) {
|
|
| 2035 | + $terms_icons = str_replace("http:","https:",$terms_icons );
|
|
| 2036 | + } |
|
| 2037 | 2037 | |
| 2038 | - return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
|
|
| 2038 | + return apply_filters('geodir_get_term_icons', $terms_icons, $term_id);
|
|
| 2039 | 2039 | } |
| 2040 | 2040 | \ No newline at end of file |
@@ -17,10 +17,11 @@ discard block |
||
| 17 | 17 | update_option($post_type.'_dummy_data_type','standard_places'); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if (geodir_dummy_folder_exists()) |
|
| 20 | +if (geodir_dummy_folder_exists()) { |
|
| 21 | 21 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 22 | -else |
|
| 22 | +} else { |
|
| 23 | 23 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 26 | 27 | |
@@ -1815,16 +1816,18 @@ discard block |
||
| 1815 | 1816 | echo '###4.1'; |
| 1816 | 1817 | foreach ($post_info as $post_info) {echo '###5'; |
| 1817 | 1818 | $default_location = geodir_get_default_location(); |
| 1818 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1819 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1820 | - else |
|
| 1821 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1819 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 1820 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1821 | + } else { |
|
| 1822 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1823 | + } |
|
| 1822 | 1824 | |
| 1823 | 1825 | |
| 1824 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1825 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1826 | - else |
|
| 1827 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1826 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 1827 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1828 | + } else { |
|
| 1829 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1830 | + } |
|
| 1828 | 1831 | |
| 1829 | 1832 | $load_map = get_option('geodir_load_map'); |
| 1830 | 1833 | |
@@ -7,452 +7,452 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | function geodir_property_rent_custom_fields($post_type='gd_place',$package_id=''){ |
| 10 | - $fields = array(); |
|
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | - |
|
| 13 | - // price |
|
| 14 | - $fields[] = array('listing_type' => $post_type, |
|
| 15 | - 'field_type' => 'text', |
|
| 16 | - 'data_type' => 'FLOAT', |
|
| 17 | - 'decimal_point' => '2', |
|
| 18 | - 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | - 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | - 'admin_desc' => __('Enter the price per calendar month (PCM)in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | - 'htmlvar_name' => 'price', |
|
| 22 | - 'is_active' => true, |
|
| 23 | - 'for_admin_use' => false, |
|
| 24 | - 'default_value' => '', |
|
| 25 | - 'show_in' => '[detail],[listing]', |
|
| 26 | - 'is_required' => false, |
|
| 27 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | - 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | - 'required_msg' => '', |
|
| 30 | - 'field_icon' => 'fa fa-usd', |
|
| 31 | - 'css_class' => '', |
|
| 32 | - 'cat_sort' => true, |
|
| 33 | - 'cat_filter' => true, |
|
| 34 | - 'extra' => array( |
|
| 35 | - 'is_price' => 1, |
|
| 36 | - 'thousand_separator' => 'comma', |
|
| 37 | - 'decimal_separator' => 'period', |
|
| 38 | - 'decimal_display' => 'if', |
|
| 39 | - 'currency_symbol' => '$', |
|
| 40 | - 'currency_symbol_placement' => 'left' |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - // property status |
|
| 45 | - $fields[] = array('listing_type' => $post_type, |
|
| 46 | - 'data_type' => 'VARCHAR', |
|
| 47 | - 'field_type' => 'select', |
|
| 48 | - 'field_type_key' => 'property_status', |
|
| 49 | - 'is_active' => 1, |
|
| 50 | - 'for_admin_use' => 0, |
|
| 51 | - 'is_default' => 0, |
|
| 52 | - 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | - 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | - 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | - 'htmlvar_name' => 'property_status', |
|
| 56 | - 'default_value' => '', |
|
| 57 | - 'is_required' => '1', |
|
| 58 | - 'required_msg' => '', |
|
| 59 | - 'show_in' => '[detail],[listing]', |
|
| 60 | - 'show_on_pkg' => $package, |
|
| 61 | - 'option_values' => 'Select Status/,For Rent,Let,Under Offer', |
|
| 62 | - 'field_icon' => 'fa fa-home', |
|
| 63 | - 'css_class' => '', |
|
| 64 | - 'cat_sort' => 1, |
|
| 65 | - 'cat_filter' => 1, |
|
| 66 | - ); |
|
| 67 | - |
|
| 68 | - // property furnishing |
|
| 69 | - $fields[] = array('listing_type' => $post_type, |
|
| 70 | - 'field_type' => 'select', |
|
| 71 | - 'data_type' => 'VARCHAR', |
|
| 72 | - 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | - 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | - 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | - 'htmlvar_name' => 'property_furnishing', |
|
| 76 | - 'is_active' => true, |
|
| 77 | - 'for_admin_use' => false, |
|
| 78 | - 'default_value' => '', |
|
| 79 | - 'show_in' => '[detail],[listing]', |
|
| 80 | - 'is_required' => true, |
|
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | - 'validation_pattern' => '', |
|
| 83 | - 'validation_msg' => '', |
|
| 84 | - 'required_msg' => '', |
|
| 85 | - 'field_icon' => 'fa fa-th-large', |
|
| 86 | - 'css_class' => '', |
|
| 87 | - 'cat_sort' => true, |
|
| 88 | - 'cat_filter' => true |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - // property type |
|
| 92 | - $fields[] = array('listing_type' => $post_type, |
|
| 93 | - 'field_type' => 'select', |
|
| 94 | - 'data_type' => 'VARCHAR', |
|
| 95 | - 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | - 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | - 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | - 'htmlvar_name' => 'property_type', |
|
| 99 | - 'is_active' => true, |
|
| 100 | - 'for_admin_use' => false, |
|
| 101 | - 'default_value' => '', |
|
| 102 | - 'show_in' => '[detail],[listing]', |
|
| 103 | - 'is_required' => true, |
|
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | - 'validation_pattern' => '', |
|
| 106 | - 'validation_msg' => '', |
|
| 107 | - 'required_msg' => '', |
|
| 108 | - 'field_icon' => 'fa fa-home', |
|
| 109 | - 'css_class' => '', |
|
| 110 | - 'cat_sort' => true, |
|
| 111 | - 'cat_filter' => true |
|
| 112 | - ); |
|
| 113 | - |
|
| 114 | - // property bedrooms |
|
| 115 | - $fields[] = array('listing_type' => $post_type, |
|
| 116 | - 'field_type' => 'select', |
|
| 117 | - 'data_type' => 'VARCHAR', |
|
| 118 | - 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | - 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | - 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | - 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | - 'is_active' => true, |
|
| 123 | - 'for_admin_use' => false, |
|
| 124 | - 'default_value' => '', |
|
| 125 | - 'show_in' => '[detail],[listing]', |
|
| 126 | - 'is_required' => true, |
|
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | - 'validation_pattern' => '', |
|
| 129 | - 'validation_msg' => '', |
|
| 130 | - 'required_msg' => '', |
|
| 131 | - 'field_icon' => 'fa fa-bed', |
|
| 132 | - 'css_class' => '', |
|
| 133 | - 'cat_sort' => true, |
|
| 134 | - 'cat_filter' => true |
|
| 135 | - ); |
|
| 136 | - |
|
| 137 | - // property bathrooms |
|
| 138 | - $fields[] = array('listing_type' => $post_type, |
|
| 139 | - 'field_type' => 'select', |
|
| 140 | - 'data_type' => 'VARCHAR', |
|
| 141 | - 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | - 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | - 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | - 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | - 'is_active' => true, |
|
| 146 | - 'for_admin_use' => false, |
|
| 147 | - 'default_value' => '', |
|
| 148 | - 'show_in' => '[detail],[listing]', |
|
| 149 | - 'is_required' => true, |
|
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | - 'validation_pattern' => '', |
|
| 152 | - 'validation_msg' => '', |
|
| 153 | - 'required_msg' => '', |
|
| 154 | - 'field_icon' => 'fa fa-bold', |
|
| 155 | - 'css_class' => '', |
|
| 156 | - 'cat_sort' => true, |
|
| 157 | - 'cat_filter' => true |
|
| 158 | - ); |
|
| 159 | - |
|
| 160 | - // property area |
|
| 161 | - $fields[] = array('listing_type' => $post_type, |
|
| 162 | - 'field_type' => 'text', |
|
| 163 | - 'data_type' => 'INT', |
|
| 164 | - 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | - 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | - 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | - 'htmlvar_name' => 'property_area', |
|
| 168 | - 'is_active' => true, |
|
| 169 | - 'for_admin_use' => false, |
|
| 170 | - 'default_value' => '', |
|
| 171 | - 'show_in' => '[detail],[listing]', |
|
| 172 | - 'is_required' => false, |
|
| 173 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | - 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | - 'required_msg' => '', |
|
| 176 | - 'field_icon' => 'fa fa-area-chart', |
|
| 177 | - 'css_class' => '', |
|
| 178 | - 'cat_sort' => true, |
|
| 179 | - 'cat_filter' => true |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - // property features |
|
| 183 | - $fields[] = array('listing_type' => $post_type, |
|
| 184 | - 'field_type' => 'multiselect', |
|
| 185 | - 'data_type' => 'VARCHAR', |
|
| 186 | - 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | - 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | - 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | - 'htmlvar_name' => 'property_features', |
|
| 190 | - 'is_active' => true, |
|
| 191 | - 'for_admin_use' => false, |
|
| 192 | - 'default_value' => '', |
|
| 193 | - 'show_in' => '[detail],[listing]', |
|
| 194 | - 'is_required' => false, |
|
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | - 'validation_pattern' => '', |
|
| 197 | - 'validation_msg' => '', |
|
| 198 | - 'required_msg' => '', |
|
| 199 | - 'field_icon' => 'fa fa-plus-square', |
|
| 200 | - 'css_class' => 'gd-comma-list', |
|
| 201 | - 'cat_sort' => true, |
|
| 202 | - 'cat_filter' => true |
|
| 203 | - ); |
|
| 204 | - |
|
| 205 | - |
|
| 206 | - |
|
| 207 | - /** |
|
| 208 | - * Filter the array of default custom fields DB table data. |
|
| 209 | - * |
|
| 210 | - * @since 1.6.6 |
|
| 211 | - * @param string $fields The default custom fields as an array. |
|
| 212 | - */ |
|
| 213 | - $fields = apply_filters('geodir_property_rent_custom_fields', $fields); |
|
| 214 | - |
|
| 215 | - return $fields; |
|
| 10 | + $fields = array(); |
|
| 11 | + $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | + |
|
| 13 | + // price |
|
| 14 | + $fields[] = array('listing_type' => $post_type, |
|
| 15 | + 'field_type' => 'text', |
|
| 16 | + 'data_type' => 'FLOAT', |
|
| 17 | + 'decimal_point' => '2', |
|
| 18 | + 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | + 'admin_desc' => __('Enter the price per calendar month (PCM)in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | + 'htmlvar_name' => 'price', |
|
| 22 | + 'is_active' => true, |
|
| 23 | + 'for_admin_use' => false, |
|
| 24 | + 'default_value' => '', |
|
| 25 | + 'show_in' => '[detail],[listing]', |
|
| 26 | + 'is_required' => false, |
|
| 27 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | + 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | + 'required_msg' => '', |
|
| 30 | + 'field_icon' => 'fa fa-usd', |
|
| 31 | + 'css_class' => '', |
|
| 32 | + 'cat_sort' => true, |
|
| 33 | + 'cat_filter' => true, |
|
| 34 | + 'extra' => array( |
|
| 35 | + 'is_price' => 1, |
|
| 36 | + 'thousand_separator' => 'comma', |
|
| 37 | + 'decimal_separator' => 'period', |
|
| 38 | + 'decimal_display' => 'if', |
|
| 39 | + 'currency_symbol' => '$', |
|
| 40 | + 'currency_symbol_placement' => 'left' |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + // property status |
|
| 45 | + $fields[] = array('listing_type' => $post_type, |
|
| 46 | + 'data_type' => 'VARCHAR', |
|
| 47 | + 'field_type' => 'select', |
|
| 48 | + 'field_type_key' => 'property_status', |
|
| 49 | + 'is_active' => 1, |
|
| 50 | + 'for_admin_use' => 0, |
|
| 51 | + 'is_default' => 0, |
|
| 52 | + 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | + 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | + 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | + 'htmlvar_name' => 'property_status', |
|
| 56 | + 'default_value' => '', |
|
| 57 | + 'is_required' => '1', |
|
| 58 | + 'required_msg' => '', |
|
| 59 | + 'show_in' => '[detail],[listing]', |
|
| 60 | + 'show_on_pkg' => $package, |
|
| 61 | + 'option_values' => 'Select Status/,For Rent,Let,Under Offer', |
|
| 62 | + 'field_icon' => 'fa fa-home', |
|
| 63 | + 'css_class' => '', |
|
| 64 | + 'cat_sort' => 1, |
|
| 65 | + 'cat_filter' => 1, |
|
| 66 | + ); |
|
| 67 | + |
|
| 68 | + // property furnishing |
|
| 69 | + $fields[] = array('listing_type' => $post_type, |
|
| 70 | + 'field_type' => 'select', |
|
| 71 | + 'data_type' => 'VARCHAR', |
|
| 72 | + 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | + 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | + 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | + 'htmlvar_name' => 'property_furnishing', |
|
| 76 | + 'is_active' => true, |
|
| 77 | + 'for_admin_use' => false, |
|
| 78 | + 'default_value' => '', |
|
| 79 | + 'show_in' => '[detail],[listing]', |
|
| 80 | + 'is_required' => true, |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | + 'validation_pattern' => '', |
|
| 83 | + 'validation_msg' => '', |
|
| 84 | + 'required_msg' => '', |
|
| 85 | + 'field_icon' => 'fa fa-th-large', |
|
| 86 | + 'css_class' => '', |
|
| 87 | + 'cat_sort' => true, |
|
| 88 | + 'cat_filter' => true |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + // property type |
|
| 92 | + $fields[] = array('listing_type' => $post_type, |
|
| 93 | + 'field_type' => 'select', |
|
| 94 | + 'data_type' => 'VARCHAR', |
|
| 95 | + 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | + 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | + 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | + 'htmlvar_name' => 'property_type', |
|
| 99 | + 'is_active' => true, |
|
| 100 | + 'for_admin_use' => false, |
|
| 101 | + 'default_value' => '', |
|
| 102 | + 'show_in' => '[detail],[listing]', |
|
| 103 | + 'is_required' => true, |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | + 'validation_pattern' => '', |
|
| 106 | + 'validation_msg' => '', |
|
| 107 | + 'required_msg' => '', |
|
| 108 | + 'field_icon' => 'fa fa-home', |
|
| 109 | + 'css_class' => '', |
|
| 110 | + 'cat_sort' => true, |
|
| 111 | + 'cat_filter' => true |
|
| 112 | + ); |
|
| 113 | + |
|
| 114 | + // property bedrooms |
|
| 115 | + $fields[] = array('listing_type' => $post_type, |
|
| 116 | + 'field_type' => 'select', |
|
| 117 | + 'data_type' => 'VARCHAR', |
|
| 118 | + 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | + 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | + 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | + 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | + 'is_active' => true, |
|
| 123 | + 'for_admin_use' => false, |
|
| 124 | + 'default_value' => '', |
|
| 125 | + 'show_in' => '[detail],[listing]', |
|
| 126 | + 'is_required' => true, |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | + 'validation_pattern' => '', |
|
| 129 | + 'validation_msg' => '', |
|
| 130 | + 'required_msg' => '', |
|
| 131 | + 'field_icon' => 'fa fa-bed', |
|
| 132 | + 'css_class' => '', |
|
| 133 | + 'cat_sort' => true, |
|
| 134 | + 'cat_filter' => true |
|
| 135 | + ); |
|
| 136 | + |
|
| 137 | + // property bathrooms |
|
| 138 | + $fields[] = array('listing_type' => $post_type, |
|
| 139 | + 'field_type' => 'select', |
|
| 140 | + 'data_type' => 'VARCHAR', |
|
| 141 | + 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | + 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | + 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | + 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | + 'is_active' => true, |
|
| 146 | + 'for_admin_use' => false, |
|
| 147 | + 'default_value' => '', |
|
| 148 | + 'show_in' => '[detail],[listing]', |
|
| 149 | + 'is_required' => true, |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | + 'validation_pattern' => '', |
|
| 152 | + 'validation_msg' => '', |
|
| 153 | + 'required_msg' => '', |
|
| 154 | + 'field_icon' => 'fa fa-bold', |
|
| 155 | + 'css_class' => '', |
|
| 156 | + 'cat_sort' => true, |
|
| 157 | + 'cat_filter' => true |
|
| 158 | + ); |
|
| 159 | + |
|
| 160 | + // property area |
|
| 161 | + $fields[] = array('listing_type' => $post_type, |
|
| 162 | + 'field_type' => 'text', |
|
| 163 | + 'data_type' => 'INT', |
|
| 164 | + 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | + 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | + 'htmlvar_name' => 'property_area', |
|
| 168 | + 'is_active' => true, |
|
| 169 | + 'for_admin_use' => false, |
|
| 170 | + 'default_value' => '', |
|
| 171 | + 'show_in' => '[detail],[listing]', |
|
| 172 | + 'is_required' => false, |
|
| 173 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | + 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | + 'required_msg' => '', |
|
| 176 | + 'field_icon' => 'fa fa-area-chart', |
|
| 177 | + 'css_class' => '', |
|
| 178 | + 'cat_sort' => true, |
|
| 179 | + 'cat_filter' => true |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + // property features |
|
| 183 | + $fields[] = array('listing_type' => $post_type, |
|
| 184 | + 'field_type' => 'multiselect', |
|
| 185 | + 'data_type' => 'VARCHAR', |
|
| 186 | + 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | + 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | + 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | + 'htmlvar_name' => 'property_features', |
|
| 190 | + 'is_active' => true, |
|
| 191 | + 'for_admin_use' => false, |
|
| 192 | + 'default_value' => '', |
|
| 193 | + 'show_in' => '[detail],[listing]', |
|
| 194 | + 'is_required' => false, |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | + 'validation_pattern' => '', |
|
| 197 | + 'validation_msg' => '', |
|
| 198 | + 'required_msg' => '', |
|
| 199 | + 'field_icon' => 'fa fa-plus-square', |
|
| 200 | + 'css_class' => 'gd-comma-list', |
|
| 201 | + 'cat_sort' => true, |
|
| 202 | + 'cat_filter' => true |
|
| 203 | + ); |
|
| 204 | + |
|
| 205 | + |
|
| 206 | + |
|
| 207 | + /** |
|
| 208 | + * Filter the array of default custom fields DB table data. |
|
| 209 | + * |
|
| 210 | + * @since 1.6.6 |
|
| 211 | + * @param string $fields The default custom fields as an array. |
|
| 212 | + */ |
|
| 213 | + $fields = apply_filters('geodir_property_rent_custom_fields', $fields); |
|
| 214 | + |
|
| 215 | + return $fields; |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | function geodir_property_rent_custom_fields_sort($post_type='gd_place') { |
| 219 | 219 | |
| 220 | 220 | |
| 221 | - $fields = array(); |
|
| 222 | - |
|
| 223 | - // price sort |
|
| 224 | - $fields[] = array( |
|
| 225 | - 'create_field' => true, |
|
| 226 | - 'listing_type' => $post_type, |
|
| 227 | - 'field_type' => 'text', |
|
| 228 | - 'data_type' => '', |
|
| 229 | - 'htmlvar_name' => 'geodir_price', |
|
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 231 | - 'asc' => 1, |
|
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | - 'desc' => 1, |
|
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | - 'is_active' => 1 |
|
| 236 | - ); |
|
| 237 | - |
|
| 238 | - // area sort |
|
| 239 | - $fields[] = array( |
|
| 240 | - 'create_field' => true, |
|
| 241 | - 'listing_type' => $post_type, |
|
| 242 | - 'field_type' => 'text', |
|
| 243 | - 'data_type' => '', |
|
| 244 | - 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | - 'asc' => 1, |
|
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | - 'desc' => 1, |
|
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | - 'is_active' => 1 |
|
| 251 | - ); |
|
| 252 | - |
|
| 253 | - // bedrooms sort |
|
| 254 | - $fields[] = array( |
|
| 255 | - 'create_field' => true, |
|
| 256 | - 'listing_type' => $post_type, |
|
| 257 | - 'field_type' => 'select', |
|
| 258 | - 'data_type' => '', |
|
| 259 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | - 'asc' => 1, |
|
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | - 'desc' => 1, |
|
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | - 'is_active' => 1 |
|
| 266 | - ); |
|
| 267 | - |
|
| 268 | - /** |
|
| 269 | - * Filter the array of advanced search fields DB table data. |
|
| 270 | - * |
|
| 271 | - * @since 1.6.6 |
|
| 272 | - * @param string $fields The default custom fields as an array. |
|
| 273 | - */ |
|
| 274 | - $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 275 | - |
|
| 276 | - return $fields; |
|
| 221 | + $fields = array(); |
|
| 222 | + |
|
| 223 | + // price sort |
|
| 224 | + $fields[] = array( |
|
| 225 | + 'create_field' => true, |
|
| 226 | + 'listing_type' => $post_type, |
|
| 227 | + 'field_type' => 'text', |
|
| 228 | + 'data_type' => '', |
|
| 229 | + 'htmlvar_name' => 'geodir_price', |
|
| 230 | + 'site_title' => __('Price','geodirectory'), |
|
| 231 | + 'asc' => 1, |
|
| 232 | + 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | + 'desc' => 1, |
|
| 234 | + 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | + 'is_active' => 1 |
|
| 236 | + ); |
|
| 237 | + |
|
| 238 | + // area sort |
|
| 239 | + $fields[] = array( |
|
| 240 | + 'create_field' => true, |
|
| 241 | + 'listing_type' => $post_type, |
|
| 242 | + 'field_type' => 'text', |
|
| 243 | + 'data_type' => '', |
|
| 244 | + 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | + 'asc' => 1, |
|
| 247 | + 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | + 'desc' => 1, |
|
| 249 | + 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | + 'is_active' => 1 |
|
| 251 | + ); |
|
| 252 | + |
|
| 253 | + // bedrooms sort |
|
| 254 | + $fields[] = array( |
|
| 255 | + 'create_field' => true, |
|
| 256 | + 'listing_type' => $post_type, |
|
| 257 | + 'field_type' => 'select', |
|
| 258 | + 'data_type' => '', |
|
| 259 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | + 'asc' => 1, |
|
| 262 | + 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | + 'desc' => 1, |
|
| 264 | + 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | + 'is_active' => 1 |
|
| 266 | + ); |
|
| 267 | + |
|
| 268 | + /** |
|
| 269 | + * Filter the array of advanced search fields DB table data. |
|
| 270 | + * |
|
| 271 | + * @since 1.6.6 |
|
| 272 | + * @param string $fields The default custom fields as an array. |
|
| 273 | + */ |
|
| 274 | + $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 275 | + |
|
| 276 | + return $fields; |
|
| 277 | 277 | |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | 280 | function geodir_property_rent_custom_fields_advanced_search($post_type='gd_place') { |
| 281 | 281 | |
| 282 | 282 | |
| 283 | - $fields = array(); |
|
| 284 | - |
|
| 285 | - // Price range |
|
| 286 | - $fields[] = array( |
|
| 287 | - 'create_field' => true, |
|
| 288 | - 'listing_type' => $post_type, |
|
| 289 | - 'field_type' => 'text', |
|
| 290 | - 'data_type' => 'RANGE', |
|
| 291 | - 'is_active' => 1, |
|
| 292 | - 'site_field_title' => 'Price', |
|
| 293 | - 'field_data_type' => 'FLOAT', |
|
| 294 | - 'main_search' => 1, |
|
| 295 | - 'main_search_priority' => 15, |
|
| 296 | - 'data_type_change' => 'SELECT', |
|
| 297 | - 'search_condition_select' => 'SINGLE', |
|
| 298 | - 'search_min_value' => '1000', |
|
| 299 | - 'search_max_value' => '10000', |
|
| 300 | - 'search_diff_value' => '1000', |
|
| 301 | - 'first_search_value' => '0', |
|
| 302 | - 'first_search_text' => '', |
|
| 303 | - 'last_search_text' => '', |
|
| 304 | - 'search_condition' => 'SELECT', |
|
| 305 | - 'site_htmlvar_name' => 'geodir_price', |
|
| 306 | - 'htmlvar_name' => 'geodir_price', |
|
| 307 | - 'field_title' => 'geodir_price', |
|
| 308 | - 'expand_custom_value' => '', |
|
| 309 | - 'front_search_title' => 'Price Range pm', |
|
| 310 | - 'field_desc' => '' |
|
| 311 | - ); |
|
| 312 | - |
|
| 313 | - // bedrooms |
|
| 314 | - $fields[] = array( |
|
| 315 | - 'create_field' => true, |
|
| 316 | - 'listing_type' => $post_type, |
|
| 317 | - 'field_type' => 'select', |
|
| 318 | - 'data_type' => 'CHECK', |
|
| 319 | - 'is_active' => 1, |
|
| 320 | - 'site_field_title' => 'Bedrooms', |
|
| 321 | - 'field_data_type' => 'VARCHAR', |
|
| 322 | - 'main_search' => 1, |
|
| 323 | - 'main_search_priority' => 16, |
|
| 324 | - 'search_condition' => 'SINGLE', |
|
| 325 | - 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 326 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | - 'field_title' => 'geodir_property_bedrooms', |
|
| 328 | - 'front_search_title' => 'Bedrooms', |
|
| 329 | - 'field_desc' => '', |
|
| 330 | - 'expand_custom_value' => 5, |
|
| 331 | - 'expand_search' => 1, |
|
| 332 | - 'search_operator' => 'OR' |
|
| 333 | - ); |
|
| 334 | - |
|
| 335 | - // Property type |
|
| 336 | - $fields[] = array( |
|
| 337 | - 'create_field' => true, |
|
| 338 | - 'listing_type' => $post_type, |
|
| 339 | - 'field_type' => 'select', |
|
| 340 | - 'data_type' => 'CHECK', |
|
| 341 | - 'is_active' => 1, |
|
| 342 | - 'site_field_title' => 'Property Type', |
|
| 343 | - 'field_data_type' => 'VARCHAR', |
|
| 344 | - 'main_search' => 0, |
|
| 345 | - //'main_search_priority' => 16, |
|
| 346 | - 'search_condition' => 'SINGLE', |
|
| 347 | - 'site_htmlvar_name' => 'geodir_property_type', |
|
| 348 | - 'htmlvar_name' => 'geodir_property_type', |
|
| 349 | - 'field_title' => 'geodir_property_type', |
|
| 350 | - 'front_search_title' => 'Property Type', |
|
| 351 | - 'field_desc' => '', |
|
| 352 | - 'expand_custom_value' => 5, |
|
| 353 | - 'expand_search' => 1, |
|
| 354 | - 'search_operator' => 'OR' |
|
| 355 | - ); |
|
| 356 | - |
|
| 357 | - // Property Features |
|
| 358 | - $fields[] = array( |
|
| 359 | - 'create_field' => true, |
|
| 360 | - 'listing_type' => $post_type, |
|
| 361 | - 'field_type' => 'multiselect', |
|
| 362 | - 'data_type' => 'CHECK', |
|
| 363 | - 'is_active' => 1, |
|
| 364 | - 'site_field_title' => 'Features', |
|
| 365 | - 'field_data_type' => 'VARCHAR', |
|
| 366 | - 'main_search' => 0, |
|
| 367 | - //'main_search_priority' => 16, |
|
| 368 | - 'search_condition' => 'SINGLE', |
|
| 369 | - 'site_htmlvar_name' => 'geodir_property_features', |
|
| 370 | - 'htmlvar_name' => 'geodir_property_features', |
|
| 371 | - 'field_title' => 'geodir_property_features', |
|
| 372 | - 'front_search_title' => 'Property Features', |
|
| 373 | - 'field_desc' => '', |
|
| 374 | - 'expand_custom_value' => 5, |
|
| 375 | - 'expand_search' => 1, |
|
| 376 | - 'search_operator' => 'AND' |
|
| 377 | - ); |
|
| 378 | - |
|
| 379 | - // Property Bathrooms |
|
| 380 | - $fields[] = array( |
|
| 381 | - 'create_field' => true, |
|
| 382 | - 'listing_type' => $post_type, |
|
| 383 | - 'field_type' => 'select', |
|
| 384 | - 'data_type' => 'CHECK', |
|
| 385 | - 'is_active' => 1, |
|
| 386 | - 'site_field_title' => 'Bathrooms', |
|
| 387 | - 'field_data_type' => 'VARCHAR', |
|
| 388 | - 'main_search' => 0, |
|
| 389 | - //'main_search_priority' => 16, |
|
| 390 | - 'search_condition' => 'SINGLE', |
|
| 391 | - 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 392 | - 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | - 'field_title' => 'geodir_property_bathrooms', |
|
| 394 | - 'front_search_title' => 'Bathrooms', |
|
| 395 | - 'field_desc' => '', |
|
| 396 | - 'expand_custom_value' => 5, |
|
| 397 | - 'expand_search' => 1, |
|
| 398 | - 'search_operator' => 'OR' |
|
| 399 | - ); |
|
| 400 | - |
|
| 401 | - // Property Furnishing |
|
| 402 | - $fields[] = array( |
|
| 403 | - 'create_field' => true, |
|
| 404 | - 'listing_type' => $post_type, |
|
| 405 | - 'field_type' => 'select', |
|
| 406 | - 'data_type' => 'CHECK', |
|
| 407 | - 'is_active' => 1, |
|
| 408 | - 'site_field_title' => 'Furnishing', |
|
| 409 | - 'field_data_type' => 'VARCHAR', |
|
| 410 | - 'main_search' => 0, |
|
| 411 | - //'main_search_priority' => 16, |
|
| 412 | - 'search_condition' => 'SINGLE', |
|
| 413 | - 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 414 | - 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | - 'field_title' => 'geodir_property_furnishing', |
|
| 416 | - 'front_search_title' => 'Furnishing', |
|
| 417 | - 'field_desc' => '', |
|
| 418 | - 'expand_custom_value' => 5, |
|
| 419 | - 'expand_search' => 1, |
|
| 420 | - 'search_operator' => 'OR' |
|
| 421 | - ); |
|
| 422 | - |
|
| 423 | - // Property Status |
|
| 424 | - $fields[] = array( |
|
| 425 | - 'create_field' => true, |
|
| 426 | - 'listing_type' => $post_type, |
|
| 427 | - 'field_type' => 'select', |
|
| 428 | - 'data_type' => 'CHECK', |
|
| 429 | - 'is_active' => 1, |
|
| 430 | - 'site_field_title' => 'Property Status', |
|
| 431 | - 'field_data_type' => 'VARCHAR', |
|
| 432 | - 'main_search' => 0, |
|
| 433 | - //'main_search_priority' => 16, |
|
| 434 | - 'search_condition' => 'SINGLE', |
|
| 435 | - 'site_htmlvar_name' => 'geodir_property_status', |
|
| 436 | - 'htmlvar_name' => 'geodir_property_status', |
|
| 437 | - 'field_title' => 'geodir_property_status', |
|
| 438 | - 'front_search_title' => 'Property Status', |
|
| 439 | - 'field_desc' => '', |
|
| 440 | - 'expand_custom_value' => 5, |
|
| 441 | - 'expand_search' => 1, |
|
| 442 | - 'search_operator' => 'OR' |
|
| 443 | - ); |
|
| 444 | - |
|
| 445 | - |
|
| 446 | - |
|
| 447 | - /** |
|
| 448 | - * Filter the array of advanced search fields DB table data. |
|
| 449 | - * |
|
| 450 | - * @since 1.6.6 |
|
| 451 | - * @param string $fields The default custom fields as an array. |
|
| 452 | - */ |
|
| 453 | - $fields = apply_filters('geodir_property_rent_custom_fields_advanced_search', $fields); |
|
| 454 | - |
|
| 455 | - return $fields; |
|
| 283 | + $fields = array(); |
|
| 284 | + |
|
| 285 | + // Price range |
|
| 286 | + $fields[] = array( |
|
| 287 | + 'create_field' => true, |
|
| 288 | + 'listing_type' => $post_type, |
|
| 289 | + 'field_type' => 'text', |
|
| 290 | + 'data_type' => 'RANGE', |
|
| 291 | + 'is_active' => 1, |
|
| 292 | + 'site_field_title' => 'Price', |
|
| 293 | + 'field_data_type' => 'FLOAT', |
|
| 294 | + 'main_search' => 1, |
|
| 295 | + 'main_search_priority' => 15, |
|
| 296 | + 'data_type_change' => 'SELECT', |
|
| 297 | + 'search_condition_select' => 'SINGLE', |
|
| 298 | + 'search_min_value' => '1000', |
|
| 299 | + 'search_max_value' => '10000', |
|
| 300 | + 'search_diff_value' => '1000', |
|
| 301 | + 'first_search_value' => '0', |
|
| 302 | + 'first_search_text' => '', |
|
| 303 | + 'last_search_text' => '', |
|
| 304 | + 'search_condition' => 'SELECT', |
|
| 305 | + 'site_htmlvar_name' => 'geodir_price', |
|
| 306 | + 'htmlvar_name' => 'geodir_price', |
|
| 307 | + 'field_title' => 'geodir_price', |
|
| 308 | + 'expand_custom_value' => '', |
|
| 309 | + 'front_search_title' => 'Price Range pm', |
|
| 310 | + 'field_desc' => '' |
|
| 311 | + ); |
|
| 312 | + |
|
| 313 | + // bedrooms |
|
| 314 | + $fields[] = array( |
|
| 315 | + 'create_field' => true, |
|
| 316 | + 'listing_type' => $post_type, |
|
| 317 | + 'field_type' => 'select', |
|
| 318 | + 'data_type' => 'CHECK', |
|
| 319 | + 'is_active' => 1, |
|
| 320 | + 'site_field_title' => 'Bedrooms', |
|
| 321 | + 'field_data_type' => 'VARCHAR', |
|
| 322 | + 'main_search' => 1, |
|
| 323 | + 'main_search_priority' => 16, |
|
| 324 | + 'search_condition' => 'SINGLE', |
|
| 325 | + 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 326 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | + 'field_title' => 'geodir_property_bedrooms', |
|
| 328 | + 'front_search_title' => 'Bedrooms', |
|
| 329 | + 'field_desc' => '', |
|
| 330 | + 'expand_custom_value' => 5, |
|
| 331 | + 'expand_search' => 1, |
|
| 332 | + 'search_operator' => 'OR' |
|
| 333 | + ); |
|
| 334 | + |
|
| 335 | + // Property type |
|
| 336 | + $fields[] = array( |
|
| 337 | + 'create_field' => true, |
|
| 338 | + 'listing_type' => $post_type, |
|
| 339 | + 'field_type' => 'select', |
|
| 340 | + 'data_type' => 'CHECK', |
|
| 341 | + 'is_active' => 1, |
|
| 342 | + 'site_field_title' => 'Property Type', |
|
| 343 | + 'field_data_type' => 'VARCHAR', |
|
| 344 | + 'main_search' => 0, |
|
| 345 | + //'main_search_priority' => 16, |
|
| 346 | + 'search_condition' => 'SINGLE', |
|
| 347 | + 'site_htmlvar_name' => 'geodir_property_type', |
|
| 348 | + 'htmlvar_name' => 'geodir_property_type', |
|
| 349 | + 'field_title' => 'geodir_property_type', |
|
| 350 | + 'front_search_title' => 'Property Type', |
|
| 351 | + 'field_desc' => '', |
|
| 352 | + 'expand_custom_value' => 5, |
|
| 353 | + 'expand_search' => 1, |
|
| 354 | + 'search_operator' => 'OR' |
|
| 355 | + ); |
|
| 356 | + |
|
| 357 | + // Property Features |
|
| 358 | + $fields[] = array( |
|
| 359 | + 'create_field' => true, |
|
| 360 | + 'listing_type' => $post_type, |
|
| 361 | + 'field_type' => 'multiselect', |
|
| 362 | + 'data_type' => 'CHECK', |
|
| 363 | + 'is_active' => 1, |
|
| 364 | + 'site_field_title' => 'Features', |
|
| 365 | + 'field_data_type' => 'VARCHAR', |
|
| 366 | + 'main_search' => 0, |
|
| 367 | + //'main_search_priority' => 16, |
|
| 368 | + 'search_condition' => 'SINGLE', |
|
| 369 | + 'site_htmlvar_name' => 'geodir_property_features', |
|
| 370 | + 'htmlvar_name' => 'geodir_property_features', |
|
| 371 | + 'field_title' => 'geodir_property_features', |
|
| 372 | + 'front_search_title' => 'Property Features', |
|
| 373 | + 'field_desc' => '', |
|
| 374 | + 'expand_custom_value' => 5, |
|
| 375 | + 'expand_search' => 1, |
|
| 376 | + 'search_operator' => 'AND' |
|
| 377 | + ); |
|
| 378 | + |
|
| 379 | + // Property Bathrooms |
|
| 380 | + $fields[] = array( |
|
| 381 | + 'create_field' => true, |
|
| 382 | + 'listing_type' => $post_type, |
|
| 383 | + 'field_type' => 'select', |
|
| 384 | + 'data_type' => 'CHECK', |
|
| 385 | + 'is_active' => 1, |
|
| 386 | + 'site_field_title' => 'Bathrooms', |
|
| 387 | + 'field_data_type' => 'VARCHAR', |
|
| 388 | + 'main_search' => 0, |
|
| 389 | + //'main_search_priority' => 16, |
|
| 390 | + 'search_condition' => 'SINGLE', |
|
| 391 | + 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 392 | + 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | + 'field_title' => 'geodir_property_bathrooms', |
|
| 394 | + 'front_search_title' => 'Bathrooms', |
|
| 395 | + 'field_desc' => '', |
|
| 396 | + 'expand_custom_value' => 5, |
|
| 397 | + 'expand_search' => 1, |
|
| 398 | + 'search_operator' => 'OR' |
|
| 399 | + ); |
|
| 400 | + |
|
| 401 | + // Property Furnishing |
|
| 402 | + $fields[] = array( |
|
| 403 | + 'create_field' => true, |
|
| 404 | + 'listing_type' => $post_type, |
|
| 405 | + 'field_type' => 'select', |
|
| 406 | + 'data_type' => 'CHECK', |
|
| 407 | + 'is_active' => 1, |
|
| 408 | + 'site_field_title' => 'Furnishing', |
|
| 409 | + 'field_data_type' => 'VARCHAR', |
|
| 410 | + 'main_search' => 0, |
|
| 411 | + //'main_search_priority' => 16, |
|
| 412 | + 'search_condition' => 'SINGLE', |
|
| 413 | + 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 414 | + 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | + 'field_title' => 'geodir_property_furnishing', |
|
| 416 | + 'front_search_title' => 'Furnishing', |
|
| 417 | + 'field_desc' => '', |
|
| 418 | + 'expand_custom_value' => 5, |
|
| 419 | + 'expand_search' => 1, |
|
| 420 | + 'search_operator' => 'OR' |
|
| 421 | + ); |
|
| 422 | + |
|
| 423 | + // Property Status |
|
| 424 | + $fields[] = array( |
|
| 425 | + 'create_field' => true, |
|
| 426 | + 'listing_type' => $post_type, |
|
| 427 | + 'field_type' => 'select', |
|
| 428 | + 'data_type' => 'CHECK', |
|
| 429 | + 'is_active' => 1, |
|
| 430 | + 'site_field_title' => 'Property Status', |
|
| 431 | + 'field_data_type' => 'VARCHAR', |
|
| 432 | + 'main_search' => 0, |
|
| 433 | + //'main_search_priority' => 16, |
|
| 434 | + 'search_condition' => 'SINGLE', |
|
| 435 | + 'site_htmlvar_name' => 'geodir_property_status', |
|
| 436 | + 'htmlvar_name' => 'geodir_property_status', |
|
| 437 | + 'field_title' => 'geodir_property_status', |
|
| 438 | + 'front_search_title' => 'Property Status', |
|
| 439 | + 'field_desc' => '', |
|
| 440 | + 'expand_custom_value' => 5, |
|
| 441 | + 'expand_search' => 1, |
|
| 442 | + 'search_operator' => 'OR' |
|
| 443 | + ); |
|
| 444 | + |
|
| 445 | + |
|
| 446 | + |
|
| 447 | + /** |
|
| 448 | + * Filter the array of advanced search fields DB table data. |
|
| 449 | + * |
|
| 450 | + * @since 1.6.6 |
|
| 451 | + * @param string $fields The default custom fields as an array. |
|
| 452 | + */ |
|
| 453 | + $fields = apply_filters('geodir_property_rent_custom_fields_advanced_search', $fields); |
|
| 454 | + |
|
| 455 | + return $fields; |
|
| 456 | 456 | } |
| 457 | 457 | |
| 458 | 458 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
@@ -462,52 +462,52 @@ discard block |
||
| 462 | 462 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 463 | 463 | |
| 464 | 464 | if($dummy_post_index==1){ |
| 465 | - // add the dummy categories |
|
| 466 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 467 | - |
|
| 468 | - // add the dummy custom fields |
|
| 469 | - $fields = geodir_property_rent_custom_fields($post_type); |
|
| 470 | - geodir_create_dummy_fields($fields); |
|
| 471 | - |
|
| 472 | - // add sort order items |
|
| 473 | - $sort_fields = geodir_property_rent_custom_fields_sort($post_type); |
|
| 474 | - foreach($sort_fields as $sort){ |
|
| 475 | - geodir_custom_sort_field_save($sort); |
|
| 476 | - } |
|
| 477 | - |
|
| 478 | - // update the type currently installed |
|
| 479 | - update_option($post_type.'_dummy_data_type','property_rent'); |
|
| 480 | - |
|
| 481 | - // add the advanced search fields |
|
| 482 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 483 | - $search_fields = geodir_property_rent_custom_fields_advanced_search($post_type); |
|
| 484 | - foreach($search_fields as $sfield){ |
|
| 485 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 486 | - } |
|
| 487 | - } |
|
| 465 | + // add the dummy categories |
|
| 466 | + geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 467 | + |
|
| 468 | + // add the dummy custom fields |
|
| 469 | + $fields = geodir_property_rent_custom_fields($post_type); |
|
| 470 | + geodir_create_dummy_fields($fields); |
|
| 471 | + |
|
| 472 | + // add sort order items |
|
| 473 | + $sort_fields = geodir_property_rent_custom_fields_sort($post_type); |
|
| 474 | + foreach($sort_fields as $sort){ |
|
| 475 | + geodir_custom_sort_field_save($sort); |
|
| 476 | + } |
|
| 477 | + |
|
| 478 | + // update the type currently installed |
|
| 479 | + update_option($post_type.'_dummy_data_type','property_rent'); |
|
| 480 | + |
|
| 481 | + // add the advanced search fields |
|
| 482 | + if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 483 | + $search_fields = geodir_property_rent_custom_fields_advanced_search($post_type); |
|
| 484 | + foreach($search_fields as $sfield){ |
|
| 485 | + geodir_custom_advance_search_field_save( $sfield ); |
|
| 486 | + } |
|
| 487 | + } |
|
| 488 | 488 | } |
| 489 | 489 | |
| 490 | 490 | if (geodir_dummy_folder_exists()) |
| 491 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 491 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 492 | 492 | else |
| 493 | - $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 493 | + $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 494 | 494 | |
| 495 | 495 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 496 | 496 | |
| 497 | 497 | switch ($dummy_post_index) { |
| 498 | 498 | |
| 499 | - case(1): |
|
| 500 | - $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 501 | - $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 502 | - $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 503 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 504 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 499 | + case(1): |
|
| 500 | + $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 501 | + $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 502 | + $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 503 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 504 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 505 | 505 | |
| 506 | 506 | |
| 507 | - $post_info[] = array( |
|
| 508 | - "listing_type" => $post_type, |
|
| 509 | - "post_title" => 'Eastern Lodge', |
|
| 510 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 507 | + $post_info[] = array( |
|
| 508 | + "listing_type" => $post_type, |
|
| 509 | + "post_title" => 'Eastern Lodge', |
|
| 510 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 511 | 511 | |
| 512 | 512 | Aliquam ut odio ullamcorper, posuere enim sed, venenatis tortor. Donec justo elit, aliquam sed cursus sed, semper eget libero. Mauris consequat lorem sed fringilla tincidunt. Phasellus suscipit velit et elit tristique, ac commodo metus scelerisque. Vivamus finibus ipsum placerat pulvinar aliquet. Maecenas augue orci, blandit at nibh pharetra, condimentum congue ligula. Duis non ante sagittis odio convallis lacinia in quis sapien. |
| 513 | 513 | |
@@ -516,42 +516,42 @@ discard block |
||
| 516 | 516 | Vestibulum tristique quam eget bibendum pulvinar. Mauris sit amet magna ut arcu rutrum pellentesque feugiat et ipsum. Proin porta quam sed risus accumsan pharetra. Nulla quis semper nisl. Nulla facilisi. Nulla facilisi. Pellentesque euismod sollicitudin lacus vel ultricies. Vestibulum ut sem ut nulla ultricies convallis in at mi. Nunc vitae nibh arcu. Maecenas nunc enim, tempus a rhoncus eget, pellentesque ut erat. |
| 517 | 517 | |
| 518 | 518 | Suspendisse interdum accumsan magna et tempor. Suspendisse scelerisque at lorem sit amet faucibus. Aenean quis consectetur enim. Duis aliquet tristique tempus. Suspendisse id ullamcorper mauris. Aliquam in libero eu justo porttitor pulvinar. Nulla semper placerat lectus. Nulla mollis suscipit lacus, a blandit purus cursus non. Maecenas id tellus mi. Pellentesque sollicitudin nibh eget magna scelerisque consequat. Aliquam convallis orci arcu, et euismod dui cursus et. Donec nec pellentesque nulla, ac pretium massa. In gravida bibendum ornare.', |
| 519 | - "post_images" => $image_array, |
|
| 520 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 521 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 522 | - "geodir_video" => '', |
|
| 523 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 524 | - "geodir_contact" => '(111) 677-4444', |
|
| 525 | - "geodir_email" => '[email protected]', |
|
| 526 | - "geodir_website" => 'http://example.com/', |
|
| 527 | - "geodir_twitter" => 'http://example.com/', |
|
| 528 | - "geodir_facebook" => 'http://example.com/', |
|
| 529 | - "geodir_price" => '1750', |
|
| 530 | - "geodir_property_status" => 'For Rent', |
|
| 531 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 532 | - 'geodir_property_type' => 'Detached house', |
|
| 533 | - 'geodir_property_bedrooms' => '3', |
|
| 534 | - 'geodir_property_bathrooms' => '2', |
|
| 535 | - 'geodir_property_area' => '1850', |
|
| 536 | - 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 537 | - "post_dummy" => '1' |
|
| 538 | - ); |
|
| 539 | - |
|
| 540 | - |
|
| 541 | - break; |
|
| 542 | - case 2: |
|
| 543 | - $image_array = array(); |
|
| 544 | - $post_meta = array(); |
|
| 545 | - $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 546 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 547 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 548 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 549 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 550 | - |
|
| 551 | - $post_info[] = array( |
|
| 552 | - "listing_type" => $post_type, |
|
| 553 | - "post_title" => 'Daisy Street', |
|
| 554 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 519 | + "post_images" => $image_array, |
|
| 520 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 521 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 522 | + "geodir_video" => '', |
|
| 523 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 524 | + "geodir_contact" => '(111) 677-4444', |
|
| 525 | + "geodir_email" => '[email protected]', |
|
| 526 | + "geodir_website" => 'http://example.com/', |
|
| 527 | + "geodir_twitter" => 'http://example.com/', |
|
| 528 | + "geodir_facebook" => 'http://example.com/', |
|
| 529 | + "geodir_price" => '1750', |
|
| 530 | + "geodir_property_status" => 'For Rent', |
|
| 531 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 532 | + 'geodir_property_type' => 'Detached house', |
|
| 533 | + 'geodir_property_bedrooms' => '3', |
|
| 534 | + 'geodir_property_bathrooms' => '2', |
|
| 535 | + 'geodir_property_area' => '1850', |
|
| 536 | + 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 537 | + "post_dummy" => '1' |
|
| 538 | + ); |
|
| 539 | + |
|
| 540 | + |
|
| 541 | + break; |
|
| 542 | + case 2: |
|
| 543 | + $image_array = array(); |
|
| 544 | + $post_meta = array(); |
|
| 545 | + $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 546 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 547 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 548 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 549 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 550 | + |
|
| 551 | + $post_info[] = array( |
|
| 552 | + "listing_type" => $post_type, |
|
| 553 | + "post_title" => 'Daisy Street', |
|
| 554 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 555 | 555 | |
| 556 | 556 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 557 | 557 | |
@@ -561,42 +561,42 @@ discard block |
||
| 561 | 561 | |
| 562 | 562 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 563 | 563 | |
| 564 | - "post_images" => $image_array, |
|
| 565 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 566 | - "post_tags" => array('Garage'), |
|
| 567 | - "geodir_video" => '', |
|
| 568 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 569 | - "geodir_contact" => '(222) 777-1111', |
|
| 570 | - "geodir_email" => '[email protected]', |
|
| 571 | - "geodir_website" => 'http://example.com/', |
|
| 572 | - "geodir_twitter" => 'http://example.com/', |
|
| 573 | - "geodir_facebook" => 'http://example.com/', |
|
| 574 | - "geodir_price" => '1150', |
|
| 575 | - "geodir_property_status" => 'Let', |
|
| 576 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 577 | - 'geodir_property_type' => 'Detached house', |
|
| 578 | - 'geodir_property_bedrooms' => '5', |
|
| 579 | - 'geodir_property_bathrooms' => '3', |
|
| 580 | - 'geodir_property_area' => '2650', |
|
| 581 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 582 | - "post_dummy" => '1' |
|
| 583 | - ); |
|
| 584 | - |
|
| 585 | - break; |
|
| 586 | - |
|
| 587 | - case 3: |
|
| 588 | - $image_array = array(); |
|
| 589 | - $post_meta = array(); |
|
| 590 | - $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 591 | - $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 592 | - $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 593 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 594 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 595 | - |
|
| 596 | - $post_info[] = array( |
|
| 597 | - "listing_type" => $post_type, |
|
| 598 | - "post_title" => 'Northbay House', |
|
| 599 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 564 | + "post_images" => $image_array, |
|
| 565 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 566 | + "post_tags" => array('Garage'), |
|
| 567 | + "geodir_video" => '', |
|
| 568 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 569 | + "geodir_contact" => '(222) 777-1111', |
|
| 570 | + "geodir_email" => '[email protected]', |
|
| 571 | + "geodir_website" => 'http://example.com/', |
|
| 572 | + "geodir_twitter" => 'http://example.com/', |
|
| 573 | + "geodir_facebook" => 'http://example.com/', |
|
| 574 | + "geodir_price" => '1150', |
|
| 575 | + "geodir_property_status" => 'Let', |
|
| 576 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 577 | + 'geodir_property_type' => 'Detached house', |
|
| 578 | + 'geodir_property_bedrooms' => '5', |
|
| 579 | + 'geodir_property_bathrooms' => '3', |
|
| 580 | + 'geodir_property_area' => '2650', |
|
| 581 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 582 | + "post_dummy" => '1' |
|
| 583 | + ); |
|
| 584 | + |
|
| 585 | + break; |
|
| 586 | + |
|
| 587 | + case 3: |
|
| 588 | + $image_array = array(); |
|
| 589 | + $post_meta = array(); |
|
| 590 | + $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 591 | + $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 592 | + $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 593 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 594 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 595 | + |
|
| 596 | + $post_info[] = array( |
|
| 597 | + "listing_type" => $post_type, |
|
| 598 | + "post_title" => 'Northbay House', |
|
| 599 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 600 | 600 | |
| 601 | 601 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 602 | 602 | |
@@ -606,43 +606,43 @@ discard block |
||
| 606 | 606 | |
| 607 | 607 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 608 | 608 | |
| 609 | - "post_images" => $image_array, |
|
| 610 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 611 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 612 | - "geodir_video" => '', |
|
| 613 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 614 | - "geodir_contact" => '(222) 777-1111', |
|
| 615 | - "geodir_email" => '[email protected]', |
|
| 616 | - "geodir_website" => 'http://example.com/', |
|
| 617 | - "geodir_twitter" => 'http://example.com/', |
|
| 618 | - "geodir_facebook" => 'http://example.com/', |
|
| 619 | - "geodir_price" => '1300', |
|
| 620 | - "geodir_property_status" => 'Under Offer', |
|
| 621 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 622 | - 'geodir_property_type' => 'Detached house', |
|
| 623 | - 'geodir_property_bedrooms' => '6', |
|
| 624 | - 'geodir_property_bathrooms' => '6', |
|
| 625 | - 'geodir_property_area' => '1650', |
|
| 626 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 627 | - "post_dummy" => '1' |
|
| 628 | - ); |
|
| 629 | - |
|
| 630 | - break; |
|
| 631 | - |
|
| 632 | - |
|
| 633 | - case 4: |
|
| 634 | - $image_array = array(); |
|
| 635 | - $post_meta = array(); |
|
| 636 | - $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 637 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 638 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 639 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 640 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 641 | - |
|
| 642 | - $post_info[] = array( |
|
| 643 | - "listing_type" => $post_type, |
|
| 644 | - "post_title" => 'Jesmond Mansion', |
|
| 645 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 609 | + "post_images" => $image_array, |
|
| 610 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 611 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 612 | + "geodir_video" => '', |
|
| 613 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 614 | + "geodir_contact" => '(222) 777-1111', |
|
| 615 | + "geodir_email" => '[email protected]', |
|
| 616 | + "geodir_website" => 'http://example.com/', |
|
| 617 | + "geodir_twitter" => 'http://example.com/', |
|
| 618 | + "geodir_facebook" => 'http://example.com/', |
|
| 619 | + "geodir_price" => '1300', |
|
| 620 | + "geodir_property_status" => 'Under Offer', |
|
| 621 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 622 | + 'geodir_property_type' => 'Detached house', |
|
| 623 | + 'geodir_property_bedrooms' => '6', |
|
| 624 | + 'geodir_property_bathrooms' => '6', |
|
| 625 | + 'geodir_property_area' => '1650', |
|
| 626 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 627 | + "post_dummy" => '1' |
|
| 628 | + ); |
|
| 629 | + |
|
| 630 | + break; |
|
| 631 | + |
|
| 632 | + |
|
| 633 | + case 4: |
|
| 634 | + $image_array = array(); |
|
| 635 | + $post_meta = array(); |
|
| 636 | + $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 637 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 638 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 639 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 640 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 641 | + |
|
| 642 | + $post_info[] = array( |
|
| 643 | + "listing_type" => $post_type, |
|
| 644 | + "post_title" => 'Jesmond Mansion', |
|
| 645 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 646 | 646 | |
| 647 | 647 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 648 | 648 | |
@@ -652,42 +652,42 @@ discard block |
||
| 652 | 652 | |
| 653 | 653 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 654 | 654 | |
| 655 | - "post_images" => $image_array, |
|
| 656 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 657 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 658 | - "geodir_video" => '', |
|
| 659 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 660 | - "geodir_contact" => '(222) 777-1111', |
|
| 661 | - "geodir_email" => '[email protected]', |
|
| 662 | - "geodir_website" => 'http://example.com/', |
|
| 663 | - "geodir_twitter" => 'http://example.com/', |
|
| 664 | - "geodir_facebook" => 'http://example.com/', |
|
| 665 | - "geodir_price" => '13000', |
|
| 666 | - "geodir_property_status" => 'Under Offer', |
|
| 667 | - 'geodir_property_furnishing' => 'Partially furnished', |
|
| 668 | - 'geodir_property_type' => 'Detached house', |
|
| 669 | - 'geodir_property_bedrooms' => '10', |
|
| 670 | - 'geodir_property_bathrooms' => '7', |
|
| 671 | - 'geodir_property_area' => '6600', |
|
| 672 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 673 | - "post_dummy" => '1' |
|
| 674 | - ); |
|
| 675 | - |
|
| 676 | - break; |
|
| 677 | - |
|
| 678 | - case 5: |
|
| 679 | - $image_array = array(); |
|
| 680 | - $post_meta = array(); |
|
| 681 | - $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 682 | - $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 683 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 684 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 685 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 686 | - |
|
| 687 | - $post_info[] = array( |
|
| 688 | - "listing_type" => $post_type, |
|
| 689 | - "post_title" => 'Springfield Lodge', |
|
| 690 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 655 | + "post_images" => $image_array, |
|
| 656 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 657 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 658 | + "geodir_video" => '', |
|
| 659 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 660 | + "geodir_contact" => '(222) 777-1111', |
|
| 661 | + "geodir_email" => '[email protected]', |
|
| 662 | + "geodir_website" => 'http://example.com/', |
|
| 663 | + "geodir_twitter" => 'http://example.com/', |
|
| 664 | + "geodir_facebook" => 'http://example.com/', |
|
| 665 | + "geodir_price" => '13000', |
|
| 666 | + "geodir_property_status" => 'Under Offer', |
|
| 667 | + 'geodir_property_furnishing' => 'Partially furnished', |
|
| 668 | + 'geodir_property_type' => 'Detached house', |
|
| 669 | + 'geodir_property_bedrooms' => '10', |
|
| 670 | + 'geodir_property_bathrooms' => '7', |
|
| 671 | + 'geodir_property_area' => '6600', |
|
| 672 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 673 | + "post_dummy" => '1' |
|
| 674 | + ); |
|
| 675 | + |
|
| 676 | + break; |
|
| 677 | + |
|
| 678 | + case 5: |
|
| 679 | + $image_array = array(); |
|
| 680 | + $post_meta = array(); |
|
| 681 | + $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 682 | + $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 683 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 684 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 685 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 686 | + |
|
| 687 | + $post_info[] = array( |
|
| 688 | + "listing_type" => $post_type, |
|
| 689 | + "post_title" => 'Springfield Lodge', |
|
| 690 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 691 | 691 | |
| 692 | 692 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 693 | 693 | |
@@ -697,42 +697,42 @@ discard block |
||
| 697 | 697 | |
| 698 | 698 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 699 | 699 | |
| 700 | - "post_images" => $image_array, |
|
| 701 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 702 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 703 | - "geodir_video" => '', |
|
| 704 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 705 | - "geodir_contact" => '(222) 777-1111', |
|
| 706 | - "geodir_email" => '[email protected]', |
|
| 707 | - "geodir_website" => 'http://example.com/', |
|
| 708 | - "geodir_twitter" => 'http://example.com/', |
|
| 709 | - "geodir_facebook" => 'http://example.com/', |
|
| 710 | - "geodir_price" => '1800', |
|
| 711 | - "geodir_property_status" => 'For Rent', |
|
| 712 | - 'geodir_property_furnishing' => 'Optional', |
|
| 713 | - 'geodir_property_type' => 'Detached house', |
|
| 714 | - 'geodir_property_bedrooms' => '4', |
|
| 715 | - 'geodir_property_bathrooms' => '3', |
|
| 716 | - 'geodir_property_area' => '3700', |
|
| 717 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 718 | - "post_dummy" => '1' |
|
| 719 | - ); |
|
| 720 | - |
|
| 721 | - break; |
|
| 722 | - |
|
| 723 | - case 6: |
|
| 724 | - $image_array = array(); |
|
| 725 | - $post_meta = array(); |
|
| 726 | - $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 727 | - $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 728 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 729 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 730 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 731 | - |
|
| 732 | - $post_info[] = array( |
|
| 733 | - "listing_type" => $post_type, |
|
| 734 | - "post_title" => 'Forrest Park', |
|
| 735 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 700 | + "post_images" => $image_array, |
|
| 701 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 702 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 703 | + "geodir_video" => '', |
|
| 704 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 705 | + "geodir_contact" => '(222) 777-1111', |
|
| 706 | + "geodir_email" => '[email protected]', |
|
| 707 | + "geodir_website" => 'http://example.com/', |
|
| 708 | + "geodir_twitter" => 'http://example.com/', |
|
| 709 | + "geodir_facebook" => 'http://example.com/', |
|
| 710 | + "geodir_price" => '1800', |
|
| 711 | + "geodir_property_status" => 'For Rent', |
|
| 712 | + 'geodir_property_furnishing' => 'Optional', |
|
| 713 | + 'geodir_property_type' => 'Detached house', |
|
| 714 | + 'geodir_property_bedrooms' => '4', |
|
| 715 | + 'geodir_property_bathrooms' => '3', |
|
| 716 | + 'geodir_property_area' => '3700', |
|
| 717 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 718 | + "post_dummy" => '1' |
|
| 719 | + ); |
|
| 720 | + |
|
| 721 | + break; |
|
| 722 | + |
|
| 723 | + case 6: |
|
| 724 | + $image_array = array(); |
|
| 725 | + $post_meta = array(); |
|
| 726 | + $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 727 | + $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 728 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 729 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 730 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 731 | + |
|
| 732 | + $post_info[] = array( |
|
| 733 | + "listing_type" => $post_type, |
|
| 734 | + "post_title" => 'Forrest Park', |
|
| 735 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 736 | 736 | |
| 737 | 737 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 738 | 738 | |
@@ -742,42 +742,42 @@ discard block |
||
| 742 | 742 | |
| 743 | 743 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 744 | 744 | |
| 745 | - "post_images" => $image_array, |
|
| 746 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 747 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 748 | - "geodir_video" => '', |
|
| 749 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 750 | - "geodir_contact" => '(222) 777-1111', |
|
| 751 | - "geodir_email" => '[email protected]', |
|
| 752 | - "geodir_website" => 'http://example.com/', |
|
| 753 | - "geodir_twitter" => 'http://example.com/', |
|
| 754 | - "geodir_facebook" => 'http://example.com/', |
|
| 755 | - "geodir_price" => '2700', |
|
| 756 | - "geodir_property_status" => 'For Rent', |
|
| 757 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 758 | - 'geodir_property_type' => 'Detached house', |
|
| 759 | - 'geodir_property_bedrooms' => '5', |
|
| 760 | - 'geodir_property_bathrooms' => '4', |
|
| 761 | - 'geodir_property_area' => '2250', |
|
| 762 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 763 | - "post_dummy" => '1' |
|
| 764 | - ); |
|
| 765 | - |
|
| 766 | - break; |
|
| 767 | - |
|
| 768 | - case 7: |
|
| 769 | - $image_array = array(); |
|
| 770 | - $post_meta = array(); |
|
| 771 | - $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 772 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 773 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 774 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 775 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 776 | - |
|
| 777 | - $post_info[] = array( |
|
| 778 | - "listing_type" => $post_type, |
|
| 779 | - "post_title" => 'Fraser Suites', |
|
| 780 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 745 | + "post_images" => $image_array, |
|
| 746 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 747 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 748 | + "geodir_video" => '', |
|
| 749 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 750 | + "geodir_contact" => '(222) 777-1111', |
|
| 751 | + "geodir_email" => '[email protected]', |
|
| 752 | + "geodir_website" => 'http://example.com/', |
|
| 753 | + "geodir_twitter" => 'http://example.com/', |
|
| 754 | + "geodir_facebook" => 'http://example.com/', |
|
| 755 | + "geodir_price" => '2700', |
|
| 756 | + "geodir_property_status" => 'For Rent', |
|
| 757 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 758 | + 'geodir_property_type' => 'Detached house', |
|
| 759 | + 'geodir_property_bedrooms' => '5', |
|
| 760 | + 'geodir_property_bathrooms' => '4', |
|
| 761 | + 'geodir_property_area' => '2250', |
|
| 762 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 763 | + "post_dummy" => '1' |
|
| 764 | + ); |
|
| 765 | + |
|
| 766 | + break; |
|
| 767 | + |
|
| 768 | + case 7: |
|
| 769 | + $image_array = array(); |
|
| 770 | + $post_meta = array(); |
|
| 771 | + $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 772 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 773 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 774 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 775 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 776 | + |
|
| 777 | + $post_info[] = array( |
|
| 778 | + "listing_type" => $post_type, |
|
| 779 | + "post_title" => 'Fraser Suites', |
|
| 780 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 781 | 781 | |
| 782 | 782 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 783 | 783 | |
@@ -787,42 +787,42 @@ discard block |
||
| 787 | 787 | |
| 788 | 788 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 789 | 789 | |
| 790 | - "post_images" => $image_array, |
|
| 791 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 792 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 793 | - "geodir_video" => '', |
|
| 794 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 795 | - "geodir_contact" => '(222) 777-1111', |
|
| 796 | - "geodir_email" => '[email protected]', |
|
| 797 | - "geodir_website" => 'http://example.com/', |
|
| 798 | - "geodir_twitter" => 'http://example.com/', |
|
| 799 | - "geodir_facebook" => 'http://example.com/', |
|
| 800 | - "geodir_price" => '1450', |
|
| 801 | - "geodir_property_status" => 'For Rent', |
|
| 802 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 803 | - 'geodir_property_type' => 'Apartment', |
|
| 804 | - 'geodir_property_bedrooms' => '3', |
|
| 805 | - 'geodir_property_bathrooms' => '2', |
|
| 806 | - 'geodir_property_area' => '1250', |
|
| 807 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 808 | - "post_dummy" => '1' |
|
| 809 | - ); |
|
| 810 | - |
|
| 811 | - break; |
|
| 812 | - |
|
| 813 | - case 8: |
|
| 814 | - $image_array = array(); |
|
| 815 | - $post_meta = array(); |
|
| 816 | - $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 817 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 818 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 819 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 820 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 821 | - |
|
| 822 | - $post_info[] = array( |
|
| 823 | - "listing_type" => $post_type, |
|
| 824 | - "post_title" => 'Richmore Apartments', |
|
| 825 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 790 | + "post_images" => $image_array, |
|
| 791 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 792 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 793 | + "geodir_video" => '', |
|
| 794 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 795 | + "geodir_contact" => '(222) 777-1111', |
|
| 796 | + "geodir_email" => '[email protected]', |
|
| 797 | + "geodir_website" => 'http://example.com/', |
|
| 798 | + "geodir_twitter" => 'http://example.com/', |
|
| 799 | + "geodir_facebook" => 'http://example.com/', |
|
| 800 | + "geodir_price" => '1450', |
|
| 801 | + "geodir_property_status" => 'For Rent', |
|
| 802 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 803 | + 'geodir_property_type' => 'Apartment', |
|
| 804 | + 'geodir_property_bedrooms' => '3', |
|
| 805 | + 'geodir_property_bathrooms' => '2', |
|
| 806 | + 'geodir_property_area' => '1250', |
|
| 807 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 808 | + "post_dummy" => '1' |
|
| 809 | + ); |
|
| 810 | + |
|
| 811 | + break; |
|
| 812 | + |
|
| 813 | + case 8: |
|
| 814 | + $image_array = array(); |
|
| 815 | + $post_meta = array(); |
|
| 816 | + $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 817 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 818 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 819 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 820 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 821 | + |
|
| 822 | + $post_info[] = array( |
|
| 823 | + "listing_type" => $post_type, |
|
| 824 | + "post_title" => 'Richmore Apartments', |
|
| 825 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 826 | 826 | |
| 827 | 827 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 828 | 828 | |
@@ -832,43 +832,43 @@ discard block |
||
| 832 | 832 | |
| 833 | 833 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 834 | 834 | |
| 835 | - "post_images" => $image_array, |
|
| 836 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 837 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 838 | - "geodir_video" => '', |
|
| 839 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 840 | - "geodir_contact" => '(222) 777-1111', |
|
| 841 | - "geodir_email" => '[email protected]', |
|
| 842 | - "geodir_website" => 'http://example.com/', |
|
| 843 | - "geodir_twitter" => 'http://example.com/', |
|
| 844 | - "geodir_facebook" => 'http://example.com/', |
|
| 845 | - "geodir_price" => '2000', |
|
| 846 | - "geodir_property_status" => 'For Rent', |
|
| 847 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 848 | - 'geodir_property_type' => 'Apartment', |
|
| 849 | - 'geodir_property_bedrooms' => '2', |
|
| 850 | - 'geodir_property_bathrooms' => '2', |
|
| 851 | - 'geodir_property_area' => '1750', |
|
| 852 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 853 | - "post_dummy" => '1' |
|
| 854 | - ); |
|
| 855 | - |
|
| 856 | - break; |
|
| 857 | - |
|
| 858 | - |
|
| 859 | - case 9: |
|
| 860 | - $image_array = array(); |
|
| 861 | - $post_meta = array(); |
|
| 862 | - $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 863 | - $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 864 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 865 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 866 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 867 | - |
|
| 868 | - $post_info[] = array( |
|
| 869 | - "listing_type" => $post_type, |
|
| 870 | - "post_title" => 'Hotel Alpina', |
|
| 871 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 835 | + "post_images" => $image_array, |
|
| 836 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 837 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 838 | + "geodir_video" => '', |
|
| 839 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 840 | + "geodir_contact" => '(222) 777-1111', |
|
| 841 | + "geodir_email" => '[email protected]', |
|
| 842 | + "geodir_website" => 'http://example.com/', |
|
| 843 | + "geodir_twitter" => 'http://example.com/', |
|
| 844 | + "geodir_facebook" => 'http://example.com/', |
|
| 845 | + "geodir_price" => '2000', |
|
| 846 | + "geodir_property_status" => 'For Rent', |
|
| 847 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 848 | + 'geodir_property_type' => 'Apartment', |
|
| 849 | + 'geodir_property_bedrooms' => '2', |
|
| 850 | + 'geodir_property_bathrooms' => '2', |
|
| 851 | + 'geodir_property_area' => '1750', |
|
| 852 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 853 | + "post_dummy" => '1' |
|
| 854 | + ); |
|
| 855 | + |
|
| 856 | + break; |
|
| 857 | + |
|
| 858 | + |
|
| 859 | + case 9: |
|
| 860 | + $image_array = array(); |
|
| 861 | + $post_meta = array(); |
|
| 862 | + $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 863 | + $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 864 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 865 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 866 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 867 | + |
|
| 868 | + $post_info[] = array( |
|
| 869 | + "listing_type" => $post_type, |
|
| 870 | + "post_title" => 'Hotel Alpina', |
|
| 871 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 872 | 872 | |
| 873 | 873 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 874 | 874 | |
@@ -878,39 +878,39 @@ discard block |
||
| 878 | 878 | |
| 879 | 879 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 880 | 880 | |
| 881 | - "post_images" => $image_array, |
|
| 882 | - "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 883 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 884 | - "geodir_video" => '', |
|
| 885 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 886 | - "geodir_contact" => '(222) 777-1111', |
|
| 887 | - "geodir_email" => '[email protected]', |
|
| 888 | - "geodir_website" => 'http://example.com/', |
|
| 889 | - "geodir_twitter" => 'http://example.com/', |
|
| 890 | - "geodir_facebook" => 'http://example.com/', |
|
| 891 | - "geodir_price" => '60000', |
|
| 892 | - "geodir_property_status" => 'For Rent', |
|
| 893 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 894 | - 'geodir_property_type' => 'Hotel', |
|
| 895 | - 'geodir_property_bedrooms' => '120', |
|
| 896 | - 'geodir_property_bathrooms' => '133', |
|
| 897 | - 'geodir_property_area' => '35000', |
|
| 898 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 899 | - "post_dummy" => '1' |
|
| 900 | - ); |
|
| 901 | - |
|
| 902 | - break; |
|
| 903 | - |
|
| 904 | - case 10: |
|
| 905 | - $image_array = array(); |
|
| 906 | - $post_meta = array(); |
|
| 907 | - $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 908 | - $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 909 | - |
|
| 910 | - $post_info[] = array( |
|
| 911 | - "listing_type" => $post_type, |
|
| 912 | - "post_title" => 'Development Land', |
|
| 913 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 881 | + "post_images" => $image_array, |
|
| 882 | + "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 883 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 884 | + "geodir_video" => '', |
|
| 885 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 886 | + "geodir_contact" => '(222) 777-1111', |
|
| 887 | + "geodir_email" => '[email protected]', |
|
| 888 | + "geodir_website" => 'http://example.com/', |
|
| 889 | + "geodir_twitter" => 'http://example.com/', |
|
| 890 | + "geodir_facebook" => 'http://example.com/', |
|
| 891 | + "geodir_price" => '60000', |
|
| 892 | + "geodir_property_status" => 'For Rent', |
|
| 893 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 894 | + 'geodir_property_type' => 'Hotel', |
|
| 895 | + 'geodir_property_bedrooms' => '120', |
|
| 896 | + 'geodir_property_bathrooms' => '133', |
|
| 897 | + 'geodir_property_area' => '35000', |
|
| 898 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 899 | + "post_dummy" => '1' |
|
| 900 | + ); |
|
| 901 | + |
|
| 902 | + break; |
|
| 903 | + |
|
| 904 | + case 10: |
|
| 905 | + $image_array = array(); |
|
| 906 | + $post_meta = array(); |
|
| 907 | + $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 908 | + $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 909 | + |
|
| 910 | + $post_info[] = array( |
|
| 911 | + "listing_type" => $post_type, |
|
| 912 | + "post_title" => 'Development Land', |
|
| 913 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 914 | 914 | |
| 915 | 915 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 916 | 916 | |
@@ -920,93 +920,93 @@ discard block |
||
| 920 | 920 | |
| 921 | 921 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 922 | 922 | |
| 923 | - "post_images" => $image_array, |
|
| 924 | - "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 925 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 926 | - "geodir_video" => '', |
|
| 927 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 928 | - "geodir_contact" => '(222) 777-1111', |
|
| 929 | - "geodir_email" => '[email protected]', |
|
| 930 | - "geodir_website" => 'http://example.com/', |
|
| 931 | - "geodir_twitter" => 'http://example.com/', |
|
| 932 | - "geodir_facebook" => 'http://example.com/', |
|
| 933 | - "geodir_price" => '800', |
|
| 934 | - "geodir_property_status" => 'For Rent', |
|
| 935 | - 'geodir_property_furnishing' => '', |
|
| 936 | - 'geodir_property_type' => 'Land', |
|
| 937 | - 'geodir_property_bedrooms' => '', |
|
| 938 | - 'geodir_property_bathrooms' => '', |
|
| 939 | - 'geodir_property_area' => '250000', |
|
| 940 | - 'geodir_property_features' => '', |
|
| 941 | - "post_dummy" => '1' |
|
| 942 | - ); |
|
| 943 | - |
|
| 944 | - break; |
|
| 923 | + "post_images" => $image_array, |
|
| 924 | + "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 925 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 926 | + "geodir_video" => '', |
|
| 927 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 928 | + "geodir_contact" => '(222) 777-1111', |
|
| 929 | + "geodir_email" => '[email protected]', |
|
| 930 | + "geodir_website" => 'http://example.com/', |
|
| 931 | + "geodir_twitter" => 'http://example.com/', |
|
| 932 | + "geodir_facebook" => 'http://example.com/', |
|
| 933 | + "geodir_price" => '800', |
|
| 934 | + "geodir_property_status" => 'For Rent', |
|
| 935 | + 'geodir_property_furnishing' => '', |
|
| 936 | + 'geodir_property_type' => 'Land', |
|
| 937 | + 'geodir_property_bedrooms' => '', |
|
| 938 | + 'geodir_property_bathrooms' => '', |
|
| 939 | + 'geodir_property_area' => '250000', |
|
| 940 | + 'geodir_property_features' => '', |
|
| 941 | + "post_dummy" => '1' |
|
| 942 | + ); |
|
| 943 | + |
|
| 944 | + break; |
|
| 945 | 945 | |
| 946 | 946 | } // end of switch |
| 947 | 947 | |
| 948 | 948 | foreach ($post_info as $post_info) { |
| 949 | - $default_location = geodir_get_default_location(); |
|
| 950 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | - else |
|
| 953 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 949 | + $default_location = geodir_get_default_location(); |
|
| 950 | + if ($city_bound_lat1 > $city_bound_lat2) |
|
| 951 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 952 | + else |
|
| 953 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 954 | 954 | |
| 955 | 955 | |
| 956 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | - else |
|
| 959 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 956 | + if ($city_bound_lng1 > $city_bound_lng2) |
|
| 957 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 958 | + else |
|
| 959 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 960 | 960 | |
| 961 | - $load_map = get_option('geodir_load_map'); |
|
| 961 | + $load_map = get_option('geodir_load_map'); |
|
| 962 | 962 | |
| 963 | - if ($load_map == 'osm') { |
|
| 964 | - $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 965 | - } else { |
|
| 966 | - $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 967 | - } |
|
| 968 | - |
|
| 969 | - $postal_code = ''; |
|
| 970 | - if (!empty($post_address)) { |
|
| 971 | - if ($load_map == 'osm') { |
|
| 972 | - $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 973 | - $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 974 | - } else { |
|
| 975 | - $addresses = array(); |
|
| 976 | - $addresses_default = array(); |
|
| 963 | + if ($load_map == 'osm') { |
|
| 964 | + $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 965 | + } else { |
|
| 966 | + $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 967 | + } |
|
| 968 | + |
|
| 969 | + $postal_code = ''; |
|
| 970 | + if (!empty($post_address)) { |
|
| 971 | + if ($load_map == 'osm') { |
|
| 972 | + $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 973 | + $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 974 | + } else { |
|
| 975 | + $addresses = array(); |
|
| 976 | + $addresses_default = array(); |
|
| 977 | 977 | |
| 978 | - foreach ($post_address as $add_key => $add_value) { |
|
| 979 | - if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 980 | - $addresses_default[] = $add_value->long_name; |
|
| 981 | - } |
|
| 982 | - if ($add_value->types[0] == 'postal_code') { |
|
| 983 | - $postal_code = $add_value->long_name; |
|
| 984 | - } |
|
| 985 | - if ($add_value->types[0] == 'street_number') { |
|
| 986 | - $addresses[] = $add_value->long_name; |
|
| 987 | - } |
|
| 988 | - if ($add_value->types[0] == 'route') { |
|
| 989 | - $addresses[] = $add_value->long_name; |
|
| 990 | - } |
|
| 991 | - if ($add_value->types[0] == 'neighborhood') { |
|
| 992 | - $addresses[] = $add_value->long_name; |
|
| 993 | - } |
|
| 994 | - if ($add_value->types[0] == 'sublocality') { |
|
| 995 | - $addresses[] = $add_value->long_name; |
|
| 996 | - } |
|
| 997 | - } |
|
| 998 | - $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 999 | - } |
|
| 1000 | - |
|
| 1001 | - $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1002 | - $post_info['post_city'] = $default_location->city; |
|
| 1003 | - $post_info['post_region'] = $default_location->region; |
|
| 1004 | - $post_info['post_country'] = $default_location->country; |
|
| 1005 | - $post_info['post_zip'] = $postal_code; |
|
| 1006 | - $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1007 | - $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1008 | - } |
|
| 978 | + foreach ($post_address as $add_key => $add_value) { |
|
| 979 | + if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 980 | + $addresses_default[] = $add_value->long_name; |
|
| 981 | + } |
|
| 982 | + if ($add_value->types[0] == 'postal_code') { |
|
| 983 | + $postal_code = $add_value->long_name; |
|
| 984 | + } |
|
| 985 | + if ($add_value->types[0] == 'street_number') { |
|
| 986 | + $addresses[] = $add_value->long_name; |
|
| 987 | + } |
|
| 988 | + if ($add_value->types[0] == 'route') { |
|
| 989 | + $addresses[] = $add_value->long_name; |
|
| 990 | + } |
|
| 991 | + if ($add_value->types[0] == 'neighborhood') { |
|
| 992 | + $addresses[] = $add_value->long_name; |
|
| 993 | + } |
|
| 994 | + if ($add_value->types[0] == 'sublocality') { |
|
| 995 | + $addresses[] = $add_value->long_name; |
|
| 996 | + } |
|
| 997 | + } |
|
| 998 | + $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 999 | + } |
|
| 1000 | + |
|
| 1001 | + $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1002 | + $post_info['post_city'] = $default_location->city; |
|
| 1003 | + $post_info['post_region'] = $default_location->region; |
|
| 1004 | + $post_info['post_country'] = $default_location->country; |
|
| 1005 | + $post_info['post_zip'] = $postal_code; |
|
| 1006 | + $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1007 | + $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1008 | + } |
|
| 1009 | 1009 | |
| 1010 | - geodir_save_listing($post_info, true); |
|
| 1011 | - echo 1; |
|
| 1010 | + geodir_save_listing($post_info, true); |
|
| 1011 | + echo 1; |
|
| 1012 | 1012 | } |
@@ -6,9 +6,9 @@ discard block |
||
| 6 | 6 | * @package GeoDirectory |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -function geodir_property_rent_custom_fields($post_type='gd_place',$package_id=''){ |
|
| 9 | +function geodir_property_rent_custom_fields($post_type = 'gd_place', $package_id = '') { |
|
| 10 | 10 | $fields = array(); |
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 11 | + $package = ($package_id == '') ? '' : array($package_id); |
|
| 12 | 12 | |
| 13 | 13 | // price |
| 14 | 14 | $fields[] = array('listing_type' => $post_type, |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | 'default_value' => '', |
| 79 | 79 | 'show_in' => '[detail],[listing]', |
| 80 | 80 | 'is_required' => true, |
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional', 'geodirectory'), |
|
| 82 | 82 | 'validation_pattern' => '', |
| 83 | 83 | 'validation_msg' => '', |
| 84 | 84 | 'required_msg' => '', |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'default_value' => '', |
| 102 | 102 | 'show_in' => '[detail],[listing]', |
| 103 | 103 | 'is_required' => true, |
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land', 'geodirectory'), |
|
| 105 | 105 | 'validation_pattern' => '', |
| 106 | 106 | 'validation_msg' => '', |
| 107 | 107 | 'required_msg' => '', |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | 'default_value' => '', |
| 125 | 125 | 'show_in' => '[detail],[listing]', |
| 126 | 126 | 'is_required' => true, |
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 128 | 128 | 'validation_pattern' => '', |
| 129 | 129 | 'validation_msg' => '', |
| 130 | 130 | 'required_msg' => '', |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | 'default_value' => '', |
| 148 | 148 | 'show_in' => '[detail],[listing]', |
| 149 | 149 | 'is_required' => true, |
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 151 | 151 | 'validation_pattern' => '', |
| 152 | 152 | 'validation_msg' => '', |
| 153 | 153 | 'required_msg' => '', |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | 'default_value' => '', |
| 193 | 193 | 'show_in' => '[detail],[listing]', |
| 194 | 194 | 'is_required' => false, |
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace', 'geodirectory'), |
|
| 196 | 196 | 'validation_pattern' => '', |
| 197 | 197 | 'validation_msg' => '', |
| 198 | 198 | 'required_msg' => '', |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | return $fields; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | -function geodir_property_rent_custom_fields_sort($post_type='gd_place') { |
|
| 218 | +function geodir_property_rent_custom_fields_sort($post_type = 'gd_place') { |
|
| 219 | 219 | |
| 220 | 220 | |
| 221 | 221 | $fields = array(); |
@@ -227,11 +227,11 @@ discard block |
||
| 227 | 227 | 'field_type' => 'text', |
| 228 | 228 | 'data_type' => '', |
| 229 | 229 | 'htmlvar_name' => 'geodir_price', |
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 230 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 231 | 231 | 'asc' => 1, |
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 232 | + 'asc_title' => __('Price (lowest first)', 'geodirectory'), |
|
| 233 | 233 | 'desc' => 1, |
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 234 | + 'desc_title' => __('Price (highest first)', 'geodirectory'), |
|
| 235 | 235 | 'is_active' => 1 |
| 236 | 236 | ); |
| 237 | 237 | |
@@ -242,11 +242,11 @@ discard block |
||
| 242 | 242 | 'field_type' => 'text', |
| 243 | 243 | 'data_type' => '', |
| 244 | 244 | 'htmlvar_name' => 'geodir_property_area', |
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 245 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 246 | 246 | 'asc' => 1, |
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 247 | + 'asc_title' => __('Area (smallest first)', 'geodirectory'), |
|
| 248 | 248 | 'desc' => 1, |
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 249 | + 'desc_title' => __('Area (largest first)', 'geodirectory'), |
|
| 250 | 250 | 'is_active' => 1 |
| 251 | 251 | ); |
| 252 | 252 | |
@@ -257,11 +257,11 @@ discard block |
||
| 257 | 257 | 'field_type' => 'select', |
| 258 | 258 | 'data_type' => '', |
| 259 | 259 | 'htmlvar_name' => 'geodir_property_bedrooms', |
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 260 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 261 | 261 | 'asc' => 1, |
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 262 | + 'asc_title' => __('Bedrooms (least)', 'geodirectory'), |
|
| 263 | 263 | 'desc' => 1, |
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 264 | + 'desc_title' => __('Bedrooms (most)', 'geodirectory'), |
|
| 265 | 265 | 'is_active' => 1 |
| 266 | 266 | ); |
| 267 | 267 | |
@@ -277,7 +277,7 @@ discard block |
||
| 277 | 277 | |
| 278 | 278 | } |
| 279 | 279 | |
| 280 | -function geodir_property_rent_custom_fields_advanced_search($post_type='gd_place') { |
|
| 280 | +function geodir_property_rent_custom_fields_advanced_search($post_type = 'gd_place') { |
|
| 281 | 281 | |
| 282 | 282 | |
| 283 | 283 | $fields = array(); |
@@ -455,15 +455,15 @@ discard block |
||
| 455 | 455 | return $fields; |
| 456 | 456 | } |
| 457 | 457 | |
| 458 | -global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
|
| 458 | +global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2, $wpdb, $current_user, $dummy_post_index; |
|
| 459 | 459 | $post_info = array(); |
| 460 | 460 | $image_array = array(); |
| 461 | 461 | $post_meta = array(); |
| 462 | 462 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 463 | 463 | |
| 464 | -if($dummy_post_index==1){ |
|
| 464 | +if ($dummy_post_index == 1) { |
|
| 465 | 465 | // add the dummy categories |
| 466 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 466 | + geodir_dummy_data_taxonomies($post_type, $category_array); |
|
| 467 | 467 | |
| 468 | 468 | // add the dummy custom fields |
| 469 | 469 | $fields = geodir_property_rent_custom_fields($post_type); |
@@ -471,24 +471,24 @@ discard block |
||
| 471 | 471 | |
| 472 | 472 | // add sort order items |
| 473 | 473 | $sort_fields = geodir_property_rent_custom_fields_sort($post_type); |
| 474 | - foreach($sort_fields as $sort){ |
|
| 474 | + foreach ($sort_fields as $sort) { |
|
| 475 | 475 | geodir_custom_sort_field_save($sort); |
| 476 | 476 | } |
| 477 | 477 | |
| 478 | 478 | // update the type currently installed |
| 479 | - update_option($post_type.'_dummy_data_type','property_rent'); |
|
| 479 | + update_option($post_type.'_dummy_data_type', 'property_rent'); |
|
| 480 | 480 | |
| 481 | 481 | // add the advanced search fields |
| 482 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 482 | + if (defined('GEODIRADVANCESEARCH_VERSION')) { |
|
| 483 | 483 | $search_fields = geodir_property_rent_custom_fields_advanced_search($post_type); |
| 484 | - foreach($search_fields as $sfield){ |
|
| 485 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 484 | + foreach ($search_fields as $sfield) { |
|
| 485 | + geodir_custom_advance_search_field_save($sfield); |
|
| 486 | 486 | } |
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | |
| 490 | 490 | if (geodir_dummy_folder_exists()) |
| 491 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 491 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 492 | 492 | else |
| 493 | 493 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 494 | 494 | |
@@ -17,10 +17,11 @@ discard block |
||
| 17 | 17 | update_option($post_type.'_dummy_data_type','standard_places'); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if (geodir_dummy_folder_exists()) |
|
| 20 | +if (geodir_dummy_folder_exists()) { |
|
| 21 | 21 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 22 | -else |
|
| 22 | +} else { |
|
| 23 | 23 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 26 | 27 | |
@@ -1815,16 +1816,18 @@ discard block |
||
| 1815 | 1816 | echo '###4.1'; |
| 1816 | 1817 | foreach ($post_info as $post_info) {echo '###5'; |
| 1817 | 1818 | $default_location = geodir_get_default_location(); |
| 1818 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1819 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1820 | - else |
|
| 1821 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1819 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 1820 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1821 | + } else { |
|
| 1822 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1823 | + } |
|
| 1822 | 1824 | |
| 1823 | 1825 | |
| 1824 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1825 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1826 | - else |
|
| 1827 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1826 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 1827 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1828 | + } else { |
|
| 1829 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1830 | + } |
|
| 1828 | 1831 | |
| 1829 | 1832 | $load_map = get_option('geodir_load_map'); |
| 1830 | 1833 | |
@@ -7,453 +7,453 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | function geodir_property_sale_custom_fields($post_type='gd_place',$package_id=''){ |
| 10 | - $fields = array(); |
|
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | - |
|
| 13 | - // price |
|
| 14 | - $fields[] = array('listing_type' => $post_type, |
|
| 15 | - 'field_type' => 'text', |
|
| 16 | - 'data_type' => 'FLOAT', |
|
| 17 | - 'decimal_point' => '2', |
|
| 18 | - 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | - 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | - 'admin_desc' => __('Enter the price in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | - 'htmlvar_name' => 'price', |
|
| 22 | - 'is_active' => true, |
|
| 23 | - 'for_admin_use' => false, |
|
| 24 | - 'default_value' => '', |
|
| 25 | - 'show_in' => '[detail],[listing]', |
|
| 26 | - 'is_required' => false, |
|
| 27 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | - 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | - 'required_msg' => '', |
|
| 30 | - 'field_icon' => 'fa fa-usd', |
|
| 31 | - 'css_class' => '', |
|
| 32 | - 'cat_sort' => true, |
|
| 33 | - 'cat_filter' => true, |
|
| 34 | - 'extra' => array( |
|
| 35 | - 'is_price' => 1, |
|
| 36 | - 'thousand_separator' => 'comma', |
|
| 37 | - 'decimal_separator' => 'period', |
|
| 38 | - 'decimal_display' => 'if', |
|
| 39 | - 'currency_symbol' => '$', |
|
| 40 | - 'currency_symbol_placement' => 'left' |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - // property status |
|
| 45 | - $fields[] = array('listing_type' => $post_type, |
|
| 46 | - 'data_type' => 'VARCHAR', |
|
| 47 | - 'field_type' => 'select', |
|
| 48 | - 'field_type_key' => 'property_status', |
|
| 49 | - 'is_active' => 1, |
|
| 50 | - 'for_admin_use' => 0, |
|
| 51 | - 'is_default' => 0, |
|
| 52 | - 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | - 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | - 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | - 'htmlvar_name' => 'property_status', |
|
| 56 | - 'default_value' => '', |
|
| 57 | - 'is_required' => '1', |
|
| 58 | - 'required_msg' => '', |
|
| 59 | - 'show_in' => '[detail],[listing]', |
|
| 60 | - 'show_on_pkg' => $package, |
|
| 61 | - 'option_values' => 'Select Status/,For Sale,Sold,Under Offer', |
|
| 62 | - 'field_icon' => 'fa fa-home', |
|
| 63 | - 'css_class' => '', |
|
| 64 | - 'cat_sort' => 1, |
|
| 65 | - 'cat_filter' => 1, |
|
| 66 | - ); |
|
| 67 | - |
|
| 68 | - // property furnishing |
|
| 69 | - $fields[] = array('listing_type' => $post_type, |
|
| 70 | - 'field_type' => 'select', |
|
| 71 | - 'data_type' => 'VARCHAR', |
|
| 72 | - 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | - 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | - 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | - 'htmlvar_name' => 'property_furnishing', |
|
| 76 | - 'is_active' => true, |
|
| 77 | - 'for_admin_use' => false, |
|
| 78 | - 'default_value' => '', |
|
| 79 | - 'show_in' => '[detail],[listing]', |
|
| 80 | - 'is_required' => true, |
|
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | - 'validation_pattern' => '', |
|
| 83 | - 'validation_msg' => '', |
|
| 84 | - 'required_msg' => '', |
|
| 85 | - 'field_icon' => 'fa fa-th-large', |
|
| 86 | - 'css_class' => '', |
|
| 87 | - 'cat_sort' => true, |
|
| 88 | - 'cat_filter' => true |
|
| 89 | - ); |
|
| 90 | - |
|
| 91 | - // property type |
|
| 92 | - $fields[] = array('listing_type' => $post_type, |
|
| 93 | - 'field_type' => 'select', |
|
| 94 | - 'data_type' => 'VARCHAR', |
|
| 95 | - 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | - 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | - 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | - 'htmlvar_name' => 'property_type', |
|
| 99 | - 'is_active' => true, |
|
| 100 | - 'for_admin_use' => false, |
|
| 101 | - 'default_value' => '', |
|
| 102 | - 'show_in' => '[detail],[listing]', |
|
| 103 | - 'is_required' => true, |
|
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | - 'validation_pattern' => '', |
|
| 106 | - 'validation_msg' => '', |
|
| 107 | - 'required_msg' => '', |
|
| 108 | - 'field_icon' => 'fa fa-home', |
|
| 109 | - 'css_class' => '', |
|
| 110 | - 'cat_sort' => true, |
|
| 111 | - 'cat_filter' => true |
|
| 112 | - ); |
|
| 113 | - |
|
| 114 | - // property bedrooms |
|
| 115 | - $fields[] = array('listing_type' => $post_type, |
|
| 116 | - 'field_type' => 'select', |
|
| 117 | - 'data_type' => 'VARCHAR', |
|
| 118 | - 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | - 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | - 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | - 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | - 'is_active' => true, |
|
| 123 | - 'for_admin_use' => false, |
|
| 124 | - 'default_value' => '', |
|
| 125 | - 'show_in' => '[detail],[listing]', |
|
| 126 | - 'is_required' => true, |
|
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | - 'validation_pattern' => '', |
|
| 129 | - 'validation_msg' => '', |
|
| 130 | - 'required_msg' => '', |
|
| 131 | - 'field_icon' => 'fa fa-bed', |
|
| 132 | - 'css_class' => '', |
|
| 133 | - 'cat_sort' => true, |
|
| 134 | - 'cat_filter' => true |
|
| 135 | - ); |
|
| 136 | - |
|
| 137 | - // property bathrooms |
|
| 138 | - $fields[] = array('listing_type' => $post_type, |
|
| 139 | - 'field_type' => 'select', |
|
| 140 | - 'data_type' => 'VARCHAR', |
|
| 141 | - 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | - 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | - 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | - 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | - 'is_active' => true, |
|
| 146 | - 'for_admin_use' => false, |
|
| 147 | - 'default_value' => '', |
|
| 148 | - 'show_in' => '[detail],[listing]', |
|
| 149 | - 'is_required' => true, |
|
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | - 'validation_pattern' => '', |
|
| 152 | - 'validation_msg' => '', |
|
| 153 | - 'required_msg' => '', |
|
| 154 | - 'field_icon' => 'fa fa-bold', |
|
| 155 | - 'css_class' => '', |
|
| 156 | - 'cat_sort' => true, |
|
| 157 | - 'cat_filter' => true |
|
| 158 | - ); |
|
| 159 | - |
|
| 160 | - // property area |
|
| 161 | - $fields[] = array('listing_type' => $post_type, |
|
| 162 | - 'field_type' => 'text', |
|
| 163 | - 'data_type' => 'INT', |
|
| 164 | - 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | - 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | - 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | - 'htmlvar_name' => 'property_area', |
|
| 168 | - 'is_active' => true, |
|
| 169 | - 'for_admin_use' => false, |
|
| 170 | - 'default_value' => '', |
|
| 171 | - 'show_in' => '[detail],[listing]', |
|
| 172 | - 'is_required' => false, |
|
| 173 | - 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | - 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | - 'required_msg' => '', |
|
| 176 | - 'field_icon' => 'fa fa-area-chart', |
|
| 177 | - 'css_class' => '', |
|
| 178 | - 'cat_sort' => true, |
|
| 179 | - 'cat_filter' => true |
|
| 180 | - ); |
|
| 181 | - |
|
| 182 | - // property features |
|
| 183 | - $fields[] = array('listing_type' => $post_type, |
|
| 184 | - 'field_type' => 'multiselect', |
|
| 185 | - 'data_type' => 'VARCHAR', |
|
| 186 | - 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | - 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | - 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | - 'htmlvar_name' => 'property_features', |
|
| 190 | - 'is_active' => true, |
|
| 191 | - 'for_admin_use' => false, |
|
| 192 | - 'default_value' => '', |
|
| 193 | - 'show_in' => '[detail],[listing]', |
|
| 194 | - 'is_required' => false, |
|
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | - 'validation_pattern' => '', |
|
| 197 | - 'validation_msg' => '', |
|
| 198 | - 'required_msg' => '', |
|
| 199 | - 'field_icon' => 'fa fa-plus-square', |
|
| 200 | - 'css_class' => 'gd-comma-list', |
|
| 201 | - 'cat_sort' => true, |
|
| 202 | - 'cat_filter' => true |
|
| 203 | - ); |
|
| 204 | - |
|
| 205 | - |
|
| 206 | - |
|
| 207 | - /** |
|
| 208 | - * Filter the array of default custom fields DB table data. |
|
| 209 | - * |
|
| 210 | - * @since 1.6.6 |
|
| 211 | - * @param string $fields The default custom fields as an array. |
|
| 212 | - */ |
|
| 213 | - $fields = apply_filters('geodir_property_sale_custom_fields', $fields); |
|
| 214 | - |
|
| 215 | - return $fields; |
|
| 10 | + $fields = array(); |
|
| 11 | + $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | + |
|
| 13 | + // price |
|
| 14 | + $fields[] = array('listing_type' => $post_type, |
|
| 15 | + 'field_type' => 'text', |
|
| 16 | + 'data_type' => 'FLOAT', |
|
| 17 | + 'decimal_point' => '2', |
|
| 18 | + 'admin_title' => __('Price', 'geodirectory'), |
|
| 19 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 20 | + 'admin_desc' => __('Enter the price in $ (no currency symbol)', 'geodirectory'), |
|
| 21 | + 'htmlvar_name' => 'price', |
|
| 22 | + 'is_active' => true, |
|
| 23 | + 'for_admin_use' => false, |
|
| 24 | + 'default_value' => '', |
|
| 25 | + 'show_in' => '[detail],[listing]', |
|
| 26 | + 'is_required' => false, |
|
| 27 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 28 | + 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | + 'required_msg' => '', |
|
| 30 | + 'field_icon' => 'fa fa-usd', |
|
| 31 | + 'css_class' => '', |
|
| 32 | + 'cat_sort' => true, |
|
| 33 | + 'cat_filter' => true, |
|
| 34 | + 'extra' => array( |
|
| 35 | + 'is_price' => 1, |
|
| 36 | + 'thousand_separator' => 'comma', |
|
| 37 | + 'decimal_separator' => 'period', |
|
| 38 | + 'decimal_display' => 'if', |
|
| 39 | + 'currency_symbol' => '$', |
|
| 40 | + 'currency_symbol_placement' => 'left' |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + // property status |
|
| 45 | + $fields[] = array('listing_type' => $post_type, |
|
| 46 | + 'data_type' => 'VARCHAR', |
|
| 47 | + 'field_type' => 'select', |
|
| 48 | + 'field_type_key' => 'property_status', |
|
| 49 | + 'is_active' => 1, |
|
| 50 | + 'for_admin_use' => 0, |
|
| 51 | + 'is_default' => 0, |
|
| 52 | + 'admin_title' => __('Property Status', 'geodirectory'), |
|
| 53 | + 'admin_desc' => __('Enter the status of the property.', 'geodirectory'), |
|
| 54 | + 'site_title' => __('Property Status', 'geodirectory'), |
|
| 55 | + 'htmlvar_name' => 'property_status', |
|
| 56 | + 'default_value' => '', |
|
| 57 | + 'is_required' => '1', |
|
| 58 | + 'required_msg' => '', |
|
| 59 | + 'show_in' => '[detail],[listing]', |
|
| 60 | + 'show_on_pkg' => $package, |
|
| 61 | + 'option_values' => 'Select Status/,For Sale,Sold,Under Offer', |
|
| 62 | + 'field_icon' => 'fa fa-home', |
|
| 63 | + 'css_class' => '', |
|
| 64 | + 'cat_sort' => 1, |
|
| 65 | + 'cat_filter' => 1, |
|
| 66 | + ); |
|
| 67 | + |
|
| 68 | + // property furnishing |
|
| 69 | + $fields[] = array('listing_type' => $post_type, |
|
| 70 | + 'field_type' => 'select', |
|
| 71 | + 'data_type' => 'VARCHAR', |
|
| 72 | + 'admin_title' => __('Furnishing', 'geodirectory'), |
|
| 73 | + 'site_title' => __('Furnishing', 'geodirectory'), |
|
| 74 | + 'admin_desc' => __('Enter the furnishing status of the property.', 'geodirectory'), |
|
| 75 | + 'htmlvar_name' => 'property_furnishing', |
|
| 76 | + 'is_active' => true, |
|
| 77 | + 'for_admin_use' => false, |
|
| 78 | + 'default_value' => '', |
|
| 79 | + 'show_in' => '[detail],[listing]', |
|
| 80 | + 'is_required' => true, |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 82 | + 'validation_pattern' => '', |
|
| 83 | + 'validation_msg' => '', |
|
| 84 | + 'required_msg' => '', |
|
| 85 | + 'field_icon' => 'fa fa-th-large', |
|
| 86 | + 'css_class' => '', |
|
| 87 | + 'cat_sort' => true, |
|
| 88 | + 'cat_filter' => true |
|
| 89 | + ); |
|
| 90 | + |
|
| 91 | + // property type |
|
| 92 | + $fields[] = array('listing_type' => $post_type, |
|
| 93 | + 'field_type' => 'select', |
|
| 94 | + 'data_type' => 'VARCHAR', |
|
| 95 | + 'admin_title' => __('Property Type', 'geodirectory'), |
|
| 96 | + 'site_title' => __('Property Type', 'geodirectory'), |
|
| 97 | + 'admin_desc' => __('Select the property type.', 'geodirectory'), |
|
| 98 | + 'htmlvar_name' => 'property_type', |
|
| 99 | + 'is_active' => true, |
|
| 100 | + 'for_admin_use' => false, |
|
| 101 | + 'default_value' => '', |
|
| 102 | + 'show_in' => '[detail],[listing]', |
|
| 103 | + 'is_required' => true, |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 105 | + 'validation_pattern' => '', |
|
| 106 | + 'validation_msg' => '', |
|
| 107 | + 'required_msg' => '', |
|
| 108 | + 'field_icon' => 'fa fa-home', |
|
| 109 | + 'css_class' => '', |
|
| 110 | + 'cat_sort' => true, |
|
| 111 | + 'cat_filter' => true |
|
| 112 | + ); |
|
| 113 | + |
|
| 114 | + // property bedrooms |
|
| 115 | + $fields[] = array('listing_type' => $post_type, |
|
| 116 | + 'field_type' => 'select', |
|
| 117 | + 'data_type' => 'VARCHAR', |
|
| 118 | + 'admin_title' => __('Property Bedrooms', 'geodirectory'), |
|
| 119 | + 'site_title' => __('Bedrooms', 'geodirectory'), |
|
| 120 | + 'admin_desc' => __('Select the number of bedrooms', 'geodirectory'), |
|
| 121 | + 'htmlvar_name' => 'property_bedrooms', |
|
| 122 | + 'is_active' => true, |
|
| 123 | + 'for_admin_use' => false, |
|
| 124 | + 'default_value' => '', |
|
| 125 | + 'show_in' => '[detail],[listing]', |
|
| 126 | + 'is_required' => true, |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 128 | + 'validation_pattern' => '', |
|
| 129 | + 'validation_msg' => '', |
|
| 130 | + 'required_msg' => '', |
|
| 131 | + 'field_icon' => 'fa fa-bed', |
|
| 132 | + 'css_class' => '', |
|
| 133 | + 'cat_sort' => true, |
|
| 134 | + 'cat_filter' => true |
|
| 135 | + ); |
|
| 136 | + |
|
| 137 | + // property bathrooms |
|
| 138 | + $fields[] = array('listing_type' => $post_type, |
|
| 139 | + 'field_type' => 'select', |
|
| 140 | + 'data_type' => 'VARCHAR', |
|
| 141 | + 'admin_title' => __('Property Bathrooms', 'geodirectory'), |
|
| 142 | + 'site_title' => __('Bathrooms', 'geodirectory'), |
|
| 143 | + 'admin_desc' => __('Select the number of bathrooms', 'geodirectory'), |
|
| 144 | + 'htmlvar_name' => 'property_bathrooms', |
|
| 145 | + 'is_active' => true, |
|
| 146 | + 'for_admin_use' => false, |
|
| 147 | + 'default_value' => '', |
|
| 148 | + 'show_in' => '[detail],[listing]', |
|
| 149 | + 'is_required' => true, |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 151 | + 'validation_pattern' => '', |
|
| 152 | + 'validation_msg' => '', |
|
| 153 | + 'required_msg' => '', |
|
| 154 | + 'field_icon' => 'fa fa-bold', |
|
| 155 | + 'css_class' => '', |
|
| 156 | + 'cat_sort' => true, |
|
| 157 | + 'cat_filter' => true |
|
| 158 | + ); |
|
| 159 | + |
|
| 160 | + // property area |
|
| 161 | + $fields[] = array('listing_type' => $post_type, |
|
| 162 | + 'field_type' => 'text', |
|
| 163 | + 'data_type' => 'INT', |
|
| 164 | + 'admin_title' => __('Property Area', 'geodirectory'), |
|
| 165 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 166 | + 'admin_desc' => __('Enter the Sq Ft value for the property', 'geodirectory'), |
|
| 167 | + 'htmlvar_name' => 'property_area', |
|
| 168 | + 'is_active' => true, |
|
| 169 | + 'for_admin_use' => false, |
|
| 170 | + 'default_value' => '', |
|
| 171 | + 'show_in' => '[detail],[listing]', |
|
| 172 | + 'is_required' => false, |
|
| 173 | + 'validation_pattern' => addslashes_gpc('\d+(\.\d{2})?'), // add slashes required |
|
| 174 | + 'validation_msg' => 'Please enter the property area in numbers only: 1500', |
|
| 175 | + 'required_msg' => '', |
|
| 176 | + 'field_icon' => 'fa fa-area-chart', |
|
| 177 | + 'css_class' => '', |
|
| 178 | + 'cat_sort' => true, |
|
| 179 | + 'cat_filter' => true |
|
| 180 | + ); |
|
| 181 | + |
|
| 182 | + // property features |
|
| 183 | + $fields[] = array('listing_type' => $post_type, |
|
| 184 | + 'field_type' => 'multiselect', |
|
| 185 | + 'data_type' => 'VARCHAR', |
|
| 186 | + 'admin_title' => __('Property Features', 'geodirectory'), |
|
| 187 | + 'site_title' => __('Features', 'geodirectory'), |
|
| 188 | + 'admin_desc' => __('Select the property features.', 'geodirectory'), |
|
| 189 | + 'htmlvar_name' => 'property_features', |
|
| 190 | + 'is_active' => true, |
|
| 191 | + 'for_admin_use' => false, |
|
| 192 | + 'default_value' => '', |
|
| 193 | + 'show_in' => '[detail],[listing]', |
|
| 194 | + 'is_required' => false, |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 196 | + 'validation_pattern' => '', |
|
| 197 | + 'validation_msg' => '', |
|
| 198 | + 'required_msg' => '', |
|
| 199 | + 'field_icon' => 'fa fa-plus-square', |
|
| 200 | + 'css_class' => 'gd-comma-list', |
|
| 201 | + 'cat_sort' => true, |
|
| 202 | + 'cat_filter' => true |
|
| 203 | + ); |
|
| 204 | + |
|
| 205 | + |
|
| 206 | + |
|
| 207 | + /** |
|
| 208 | + * Filter the array of default custom fields DB table data. |
|
| 209 | + * |
|
| 210 | + * @since 1.6.6 |
|
| 211 | + * @param string $fields The default custom fields as an array. |
|
| 212 | + */ |
|
| 213 | + $fields = apply_filters('geodir_property_sale_custom_fields', $fields); |
|
| 214 | + |
|
| 215 | + return $fields; |
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | 218 | function geodir_property_sale_custom_fields_sort($post_type='gd_place') { |
| 219 | 219 | |
| 220 | 220 | |
| 221 | - $fields = array(); |
|
| 222 | - |
|
| 223 | - // price sort |
|
| 224 | - $fields[] = array( |
|
| 225 | - 'create_field' => true, |
|
| 226 | - 'listing_type' => $post_type, |
|
| 227 | - 'field_type' => 'text', |
|
| 228 | - 'data_type' => '', |
|
| 229 | - 'htmlvar_name' => 'geodir_price', |
|
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 231 | - 'asc' => 1, |
|
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | - 'desc' => 1, |
|
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | - 'is_active' => 1 |
|
| 236 | - ); |
|
| 237 | - |
|
| 238 | - // area sort |
|
| 239 | - $fields[] = array( |
|
| 240 | - 'create_field' => true, |
|
| 241 | - 'listing_type' => $post_type, |
|
| 242 | - 'field_type' => 'text', |
|
| 243 | - 'data_type' => '', |
|
| 244 | - 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | - 'asc' => 1, |
|
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | - 'desc' => 1, |
|
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | - 'is_active' => 1 |
|
| 251 | - ); |
|
| 252 | - |
|
| 253 | - // bedrooms sort |
|
| 254 | - $fields[] = array( |
|
| 255 | - 'create_field' => true, |
|
| 256 | - 'listing_type' => $post_type, |
|
| 257 | - 'field_type' => 'select', |
|
| 258 | - 'data_type' => '', |
|
| 259 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | - 'asc' => 1, |
|
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | - 'desc' => 1, |
|
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | - 'is_active' => 1 |
|
| 266 | - ); |
|
| 267 | - |
|
| 268 | - |
|
| 269 | - /** |
|
| 270 | - * Filter the array of advanced search fields DB table data. |
|
| 271 | - * |
|
| 272 | - * @since 1.6.6 |
|
| 273 | - * @param string $fields The default custom fields as an array. |
|
| 274 | - */ |
|
| 275 | - $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 276 | - |
|
| 277 | - return $fields; |
|
| 221 | + $fields = array(); |
|
| 222 | + |
|
| 223 | + // price sort |
|
| 224 | + $fields[] = array( |
|
| 225 | + 'create_field' => true, |
|
| 226 | + 'listing_type' => $post_type, |
|
| 227 | + 'field_type' => 'text', |
|
| 228 | + 'data_type' => '', |
|
| 229 | + 'htmlvar_name' => 'geodir_price', |
|
| 230 | + 'site_title' => __('Price','geodirectory'), |
|
| 231 | + 'asc' => 1, |
|
| 232 | + 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 233 | + 'desc' => 1, |
|
| 234 | + 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 235 | + 'is_active' => 1 |
|
| 236 | + ); |
|
| 237 | + |
|
| 238 | + // area sort |
|
| 239 | + $fields[] = array( |
|
| 240 | + 'create_field' => true, |
|
| 241 | + 'listing_type' => $post_type, |
|
| 242 | + 'field_type' => 'text', |
|
| 243 | + 'data_type' => '', |
|
| 244 | + 'htmlvar_name' => 'geodir_property_area', |
|
| 245 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 246 | + 'asc' => 1, |
|
| 247 | + 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 248 | + 'desc' => 1, |
|
| 249 | + 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 250 | + 'is_active' => 1 |
|
| 251 | + ); |
|
| 252 | + |
|
| 253 | + // bedrooms sort |
|
| 254 | + $fields[] = array( |
|
| 255 | + 'create_field' => true, |
|
| 256 | + 'listing_type' => $post_type, |
|
| 257 | + 'field_type' => 'select', |
|
| 258 | + 'data_type' => '', |
|
| 259 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 260 | + 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 261 | + 'asc' => 1, |
|
| 262 | + 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 263 | + 'desc' => 1, |
|
| 264 | + 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 265 | + 'is_active' => 1 |
|
| 266 | + ); |
|
| 267 | + |
|
| 268 | + |
|
| 269 | + /** |
|
| 270 | + * Filter the array of advanced search fields DB table data. |
|
| 271 | + * |
|
| 272 | + * @since 1.6.6 |
|
| 273 | + * @param string $fields The default custom fields as an array. |
|
| 274 | + */ |
|
| 275 | + $fields = apply_filters('geodir_property_sale_custom_fields_sort', $fields); |
|
| 276 | + |
|
| 277 | + return $fields; |
|
| 278 | 278 | |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | 281 | function geodir_property_sale_custom_fields_advanced_search($post_type='gd_place') { |
| 282 | 282 | |
| 283 | 283 | |
| 284 | - $fields = array(); |
|
| 285 | - |
|
| 286 | - // price range |
|
| 287 | - $fields[] = array( |
|
| 288 | - 'create_field' => true, |
|
| 289 | - 'listing_type' => $post_type, |
|
| 290 | - 'field_type' => 'text', |
|
| 291 | - 'data_type' => 'RANGE', |
|
| 292 | - 'is_active' => 1, |
|
| 293 | - 'site_field_title' => 'Price', |
|
| 294 | - 'field_data_type' => 'FLOAT', |
|
| 295 | - 'main_search' => 1, |
|
| 296 | - 'main_search_priority' => 15, |
|
| 297 | - 'data_type_change' => 'SELECT', |
|
| 298 | - 'search_condition_select' => 'SINGLE', |
|
| 299 | - 'search_min_value' => '50000', |
|
| 300 | - 'search_max_value' => '1000000', |
|
| 301 | - 'search_diff_value' => '100000', |
|
| 302 | - 'first_search_value' => '0', |
|
| 303 | - 'first_search_text' => '', |
|
| 304 | - 'last_search_text' => '', |
|
| 305 | - 'search_condition' => 'SELECT', |
|
| 306 | - 'site_htmlvar_name' => 'geodir_price', |
|
| 307 | - 'htmlvar_name' => 'geodir_price', |
|
| 308 | - 'field_title' => 'geodir_price', |
|
| 309 | - 'expand_custom_value' => '', |
|
| 310 | - 'front_search_title' => 'Price Range', |
|
| 311 | - 'field_desc' => '' |
|
| 312 | - ); |
|
| 313 | - |
|
| 314 | - // bedrooms |
|
| 315 | - $fields[] = array( |
|
| 316 | - 'create_field' => true, |
|
| 317 | - 'listing_type' => $post_type, |
|
| 318 | - 'field_type' => 'select', |
|
| 319 | - 'data_type' => 'CHECK', |
|
| 320 | - 'is_active' => 1, |
|
| 321 | - 'site_field_title' => 'Bedrooms', |
|
| 322 | - 'field_data_type' => 'VARCHAR', |
|
| 323 | - 'main_search' => 1, |
|
| 324 | - 'main_search_priority' => 16, |
|
| 325 | - 'search_condition' => 'SINGLE', |
|
| 326 | - 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | - 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 328 | - 'field_title' => 'geodir_property_bedrooms', |
|
| 329 | - 'front_search_title' => 'Bedrooms', |
|
| 330 | - 'field_desc' => '', |
|
| 331 | - 'expand_custom_value' => 5, |
|
| 332 | - 'expand_search' => 1, |
|
| 333 | - 'search_operator' => 'OR' |
|
| 334 | - ); |
|
| 335 | - |
|
| 336 | - // Property type |
|
| 337 | - $fields[] = array( |
|
| 338 | - 'create_field' => true, |
|
| 339 | - 'listing_type' => $post_type, |
|
| 340 | - 'field_type' => 'select', |
|
| 341 | - 'data_type' => 'CHECK', |
|
| 342 | - 'is_active' => 1, |
|
| 343 | - 'site_field_title' => 'Property Type', |
|
| 344 | - 'field_data_type' => 'VARCHAR', |
|
| 345 | - 'main_search' => 0, |
|
| 346 | - //'main_search_priority' => 16, |
|
| 347 | - 'search_condition' => 'SINGLE', |
|
| 348 | - 'site_htmlvar_name' => 'geodir_property_type', |
|
| 349 | - 'htmlvar_name' => 'geodir_property_type', |
|
| 350 | - 'field_title' => 'geodir_property_type', |
|
| 351 | - 'front_search_title' => 'Property Type', |
|
| 352 | - 'field_desc' => '', |
|
| 353 | - 'expand_custom_value' => 5, |
|
| 354 | - 'expand_search' => 1, |
|
| 355 | - 'search_operator' => 'OR' |
|
| 356 | - ); |
|
| 357 | - |
|
| 358 | - // Property Features |
|
| 359 | - $fields[] = array( |
|
| 360 | - 'create_field' => true, |
|
| 361 | - 'listing_type' => $post_type, |
|
| 362 | - 'field_type' => 'multiselect', |
|
| 363 | - 'data_type' => 'CHECK', |
|
| 364 | - 'is_active' => 1, |
|
| 365 | - 'site_field_title' => 'Features', |
|
| 366 | - 'field_data_type' => 'VARCHAR', |
|
| 367 | - 'main_search' => 0, |
|
| 368 | - //'main_search_priority' => 16, |
|
| 369 | - 'search_condition' => 'SINGLE', |
|
| 370 | - 'site_htmlvar_name' => 'geodir_property_features', |
|
| 371 | - 'htmlvar_name' => 'geodir_property_features', |
|
| 372 | - 'field_title' => 'geodir_property_features', |
|
| 373 | - 'front_search_title' => 'Property Features', |
|
| 374 | - 'field_desc' => '', |
|
| 375 | - 'expand_custom_value' => 5, |
|
| 376 | - 'expand_search' => 1, |
|
| 377 | - 'search_operator' => 'AND' |
|
| 378 | - ); |
|
| 379 | - |
|
| 380 | - // Property Bathrooms |
|
| 381 | - $fields[] = array( |
|
| 382 | - 'create_field' => true, |
|
| 383 | - 'listing_type' => $post_type, |
|
| 384 | - 'field_type' => 'select', |
|
| 385 | - 'data_type' => 'CHECK', |
|
| 386 | - 'is_active' => 1, |
|
| 387 | - 'site_field_title' => 'Bathrooms', |
|
| 388 | - 'field_data_type' => 'VARCHAR', |
|
| 389 | - 'main_search' => 0, |
|
| 390 | - //'main_search_priority' => 16, |
|
| 391 | - 'search_condition' => 'SINGLE', |
|
| 392 | - 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | - 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 394 | - 'field_title' => 'geodir_property_bathrooms', |
|
| 395 | - 'front_search_title' => 'Bathrooms', |
|
| 396 | - 'field_desc' => '', |
|
| 397 | - 'expand_custom_value' => 5, |
|
| 398 | - 'expand_search' => 1, |
|
| 399 | - 'search_operator' => 'OR' |
|
| 400 | - ); |
|
| 401 | - |
|
| 402 | - // Property Furnishing |
|
| 403 | - $fields[] = array( |
|
| 404 | - 'create_field' => true, |
|
| 405 | - 'listing_type' => $post_type, |
|
| 406 | - 'field_type' => 'select', |
|
| 407 | - 'data_type' => 'CHECK', |
|
| 408 | - 'is_active' => 1, |
|
| 409 | - 'site_field_title' => 'Furnishing', |
|
| 410 | - 'field_data_type' => 'VARCHAR', |
|
| 411 | - 'main_search' => 0, |
|
| 412 | - //'main_search_priority' => 16, |
|
| 413 | - 'search_condition' => 'SINGLE', |
|
| 414 | - 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | - 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 416 | - 'field_title' => 'geodir_property_furnishing', |
|
| 417 | - 'front_search_title' => 'Furnishing', |
|
| 418 | - 'field_desc' => '', |
|
| 419 | - 'expand_custom_value' => 5, |
|
| 420 | - 'expand_search' => 1, |
|
| 421 | - 'search_operator' => 'OR' |
|
| 422 | - ); |
|
| 423 | - |
|
| 424 | - // Property Status |
|
| 425 | - $fields[] = array( |
|
| 426 | - 'create_field' => true, |
|
| 427 | - 'listing_type' => $post_type, |
|
| 428 | - 'field_type' => 'select', |
|
| 429 | - 'data_type' => 'CHECK', |
|
| 430 | - 'is_active' => 1, |
|
| 431 | - 'site_field_title' => 'Property Status', |
|
| 432 | - 'field_data_type' => 'VARCHAR', |
|
| 433 | - 'main_search' => 0, |
|
| 434 | - //'main_search_priority' => 16, |
|
| 435 | - 'search_condition' => 'SINGLE', |
|
| 436 | - 'site_htmlvar_name' => 'geodir_property_status', |
|
| 437 | - 'htmlvar_name' => 'geodir_property_status', |
|
| 438 | - 'field_title' => 'geodir_property_status', |
|
| 439 | - 'front_search_title' => 'Property Status', |
|
| 440 | - 'field_desc' => '', |
|
| 441 | - 'expand_custom_value' => 5, |
|
| 442 | - 'expand_search' => 1, |
|
| 443 | - 'search_operator' => 'OR' |
|
| 444 | - ); |
|
| 445 | - |
|
| 446 | - |
|
| 447 | - |
|
| 448 | - /** |
|
| 449 | - * Filter the array of advanced search fields DB table data. |
|
| 450 | - * |
|
| 451 | - * @since 1.6.6 |
|
| 452 | - * @param string $fields The default custom fields as an array. |
|
| 453 | - */ |
|
| 454 | - $fields = apply_filters('geodir_property_sale_custom_fields_advanced_search', $fields); |
|
| 455 | - |
|
| 456 | - return $fields; |
|
| 284 | + $fields = array(); |
|
| 285 | + |
|
| 286 | + // price range |
|
| 287 | + $fields[] = array( |
|
| 288 | + 'create_field' => true, |
|
| 289 | + 'listing_type' => $post_type, |
|
| 290 | + 'field_type' => 'text', |
|
| 291 | + 'data_type' => 'RANGE', |
|
| 292 | + 'is_active' => 1, |
|
| 293 | + 'site_field_title' => 'Price', |
|
| 294 | + 'field_data_type' => 'FLOAT', |
|
| 295 | + 'main_search' => 1, |
|
| 296 | + 'main_search_priority' => 15, |
|
| 297 | + 'data_type_change' => 'SELECT', |
|
| 298 | + 'search_condition_select' => 'SINGLE', |
|
| 299 | + 'search_min_value' => '50000', |
|
| 300 | + 'search_max_value' => '1000000', |
|
| 301 | + 'search_diff_value' => '100000', |
|
| 302 | + 'first_search_value' => '0', |
|
| 303 | + 'first_search_text' => '', |
|
| 304 | + 'last_search_text' => '', |
|
| 305 | + 'search_condition' => 'SELECT', |
|
| 306 | + 'site_htmlvar_name' => 'geodir_price', |
|
| 307 | + 'htmlvar_name' => 'geodir_price', |
|
| 308 | + 'field_title' => 'geodir_price', |
|
| 309 | + 'expand_custom_value' => '', |
|
| 310 | + 'front_search_title' => 'Price Range', |
|
| 311 | + 'field_desc' => '' |
|
| 312 | + ); |
|
| 313 | + |
|
| 314 | + // bedrooms |
|
| 315 | + $fields[] = array( |
|
| 316 | + 'create_field' => true, |
|
| 317 | + 'listing_type' => $post_type, |
|
| 318 | + 'field_type' => 'select', |
|
| 319 | + 'data_type' => 'CHECK', |
|
| 320 | + 'is_active' => 1, |
|
| 321 | + 'site_field_title' => 'Bedrooms', |
|
| 322 | + 'field_data_type' => 'VARCHAR', |
|
| 323 | + 'main_search' => 1, |
|
| 324 | + 'main_search_priority' => 16, |
|
| 325 | + 'search_condition' => 'SINGLE', |
|
| 326 | + 'site_htmlvar_name' => 'geodir_property_bedrooms', |
|
| 327 | + 'htmlvar_name' => 'geodir_property_bedrooms', |
|
| 328 | + 'field_title' => 'geodir_property_bedrooms', |
|
| 329 | + 'front_search_title' => 'Bedrooms', |
|
| 330 | + 'field_desc' => '', |
|
| 331 | + 'expand_custom_value' => 5, |
|
| 332 | + 'expand_search' => 1, |
|
| 333 | + 'search_operator' => 'OR' |
|
| 334 | + ); |
|
| 335 | + |
|
| 336 | + // Property type |
|
| 337 | + $fields[] = array( |
|
| 338 | + 'create_field' => true, |
|
| 339 | + 'listing_type' => $post_type, |
|
| 340 | + 'field_type' => 'select', |
|
| 341 | + 'data_type' => 'CHECK', |
|
| 342 | + 'is_active' => 1, |
|
| 343 | + 'site_field_title' => 'Property Type', |
|
| 344 | + 'field_data_type' => 'VARCHAR', |
|
| 345 | + 'main_search' => 0, |
|
| 346 | + //'main_search_priority' => 16, |
|
| 347 | + 'search_condition' => 'SINGLE', |
|
| 348 | + 'site_htmlvar_name' => 'geodir_property_type', |
|
| 349 | + 'htmlvar_name' => 'geodir_property_type', |
|
| 350 | + 'field_title' => 'geodir_property_type', |
|
| 351 | + 'front_search_title' => 'Property Type', |
|
| 352 | + 'field_desc' => '', |
|
| 353 | + 'expand_custom_value' => 5, |
|
| 354 | + 'expand_search' => 1, |
|
| 355 | + 'search_operator' => 'OR' |
|
| 356 | + ); |
|
| 357 | + |
|
| 358 | + // Property Features |
|
| 359 | + $fields[] = array( |
|
| 360 | + 'create_field' => true, |
|
| 361 | + 'listing_type' => $post_type, |
|
| 362 | + 'field_type' => 'multiselect', |
|
| 363 | + 'data_type' => 'CHECK', |
|
| 364 | + 'is_active' => 1, |
|
| 365 | + 'site_field_title' => 'Features', |
|
| 366 | + 'field_data_type' => 'VARCHAR', |
|
| 367 | + 'main_search' => 0, |
|
| 368 | + //'main_search_priority' => 16, |
|
| 369 | + 'search_condition' => 'SINGLE', |
|
| 370 | + 'site_htmlvar_name' => 'geodir_property_features', |
|
| 371 | + 'htmlvar_name' => 'geodir_property_features', |
|
| 372 | + 'field_title' => 'geodir_property_features', |
|
| 373 | + 'front_search_title' => 'Property Features', |
|
| 374 | + 'field_desc' => '', |
|
| 375 | + 'expand_custom_value' => 5, |
|
| 376 | + 'expand_search' => 1, |
|
| 377 | + 'search_operator' => 'AND' |
|
| 378 | + ); |
|
| 379 | + |
|
| 380 | + // Property Bathrooms |
|
| 381 | + $fields[] = array( |
|
| 382 | + 'create_field' => true, |
|
| 383 | + 'listing_type' => $post_type, |
|
| 384 | + 'field_type' => 'select', |
|
| 385 | + 'data_type' => 'CHECK', |
|
| 386 | + 'is_active' => 1, |
|
| 387 | + 'site_field_title' => 'Bathrooms', |
|
| 388 | + 'field_data_type' => 'VARCHAR', |
|
| 389 | + 'main_search' => 0, |
|
| 390 | + //'main_search_priority' => 16, |
|
| 391 | + 'search_condition' => 'SINGLE', |
|
| 392 | + 'site_htmlvar_name' => 'geodir_property_bathrooms', |
|
| 393 | + 'htmlvar_name' => 'geodir_property_bathrooms', |
|
| 394 | + 'field_title' => 'geodir_property_bathrooms', |
|
| 395 | + 'front_search_title' => 'Bathrooms', |
|
| 396 | + 'field_desc' => '', |
|
| 397 | + 'expand_custom_value' => 5, |
|
| 398 | + 'expand_search' => 1, |
|
| 399 | + 'search_operator' => 'OR' |
|
| 400 | + ); |
|
| 401 | + |
|
| 402 | + // Property Furnishing |
|
| 403 | + $fields[] = array( |
|
| 404 | + 'create_field' => true, |
|
| 405 | + 'listing_type' => $post_type, |
|
| 406 | + 'field_type' => 'select', |
|
| 407 | + 'data_type' => 'CHECK', |
|
| 408 | + 'is_active' => 1, |
|
| 409 | + 'site_field_title' => 'Furnishing', |
|
| 410 | + 'field_data_type' => 'VARCHAR', |
|
| 411 | + 'main_search' => 0, |
|
| 412 | + //'main_search_priority' => 16, |
|
| 413 | + 'search_condition' => 'SINGLE', |
|
| 414 | + 'site_htmlvar_name' => 'geodir_property_furnishing', |
|
| 415 | + 'htmlvar_name' => 'geodir_property_furnishing', |
|
| 416 | + 'field_title' => 'geodir_property_furnishing', |
|
| 417 | + 'front_search_title' => 'Furnishing', |
|
| 418 | + 'field_desc' => '', |
|
| 419 | + 'expand_custom_value' => 5, |
|
| 420 | + 'expand_search' => 1, |
|
| 421 | + 'search_operator' => 'OR' |
|
| 422 | + ); |
|
| 423 | + |
|
| 424 | + // Property Status |
|
| 425 | + $fields[] = array( |
|
| 426 | + 'create_field' => true, |
|
| 427 | + 'listing_type' => $post_type, |
|
| 428 | + 'field_type' => 'select', |
|
| 429 | + 'data_type' => 'CHECK', |
|
| 430 | + 'is_active' => 1, |
|
| 431 | + 'site_field_title' => 'Property Status', |
|
| 432 | + 'field_data_type' => 'VARCHAR', |
|
| 433 | + 'main_search' => 0, |
|
| 434 | + //'main_search_priority' => 16, |
|
| 435 | + 'search_condition' => 'SINGLE', |
|
| 436 | + 'site_htmlvar_name' => 'geodir_property_status', |
|
| 437 | + 'htmlvar_name' => 'geodir_property_status', |
|
| 438 | + 'field_title' => 'geodir_property_status', |
|
| 439 | + 'front_search_title' => 'Property Status', |
|
| 440 | + 'field_desc' => '', |
|
| 441 | + 'expand_custom_value' => 5, |
|
| 442 | + 'expand_search' => 1, |
|
| 443 | + 'search_operator' => 'OR' |
|
| 444 | + ); |
|
| 445 | + |
|
| 446 | + |
|
| 447 | + |
|
| 448 | + /** |
|
| 449 | + * Filter the array of advanced search fields DB table data. |
|
| 450 | + * |
|
| 451 | + * @since 1.6.6 |
|
| 452 | + * @param string $fields The default custom fields as an array. |
|
| 453 | + */ |
|
| 454 | + $fields = apply_filters('geodir_property_sale_custom_fields_advanced_search', $fields); |
|
| 455 | + |
|
| 456 | + return $fields; |
|
| 457 | 457 | } |
| 458 | 458 | |
| 459 | 459 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
@@ -463,52 +463,52 @@ discard block |
||
| 463 | 463 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 464 | 464 | |
| 465 | 465 | if($dummy_post_index==1){ |
| 466 | - // add the dummy categories |
|
| 467 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 468 | - |
|
| 469 | - // add the dummy custom fields |
|
| 470 | - $fields = geodir_property_sale_custom_fields($post_type); |
|
| 471 | - geodir_create_dummy_fields($fields); |
|
| 472 | - |
|
| 473 | - // add sort order items |
|
| 474 | - $sort_fields = geodir_property_sale_custom_fields_sort($post_type); |
|
| 475 | - foreach($sort_fields as $sort){ |
|
| 476 | - geodir_custom_sort_field_save($sort); |
|
| 477 | - } |
|
| 478 | - |
|
| 479 | - // update the type currently installed |
|
| 480 | - update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 481 | - |
|
| 482 | - // add the advanced search fields |
|
| 483 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 484 | - $search_fields = geodir_property_sale_custom_fields_advanced_search($post_type); |
|
| 485 | - foreach($search_fields as $sfield){ |
|
| 486 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 487 | - } |
|
| 488 | - } |
|
| 466 | + // add the dummy categories |
|
| 467 | + geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 468 | + |
|
| 469 | + // add the dummy custom fields |
|
| 470 | + $fields = geodir_property_sale_custom_fields($post_type); |
|
| 471 | + geodir_create_dummy_fields($fields); |
|
| 472 | + |
|
| 473 | + // add sort order items |
|
| 474 | + $sort_fields = geodir_property_sale_custom_fields_sort($post_type); |
|
| 475 | + foreach($sort_fields as $sort){ |
|
| 476 | + geodir_custom_sort_field_save($sort); |
|
| 477 | + } |
|
| 478 | + |
|
| 479 | + // update the type currently installed |
|
| 480 | + update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 481 | + |
|
| 482 | + // add the advanced search fields |
|
| 483 | + if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 484 | + $search_fields = geodir_property_sale_custom_fields_advanced_search($post_type); |
|
| 485 | + foreach($search_fields as $sfield){ |
|
| 486 | + geodir_custom_advance_search_field_save( $sfield ); |
|
| 487 | + } |
|
| 488 | + } |
|
| 489 | 489 | } |
| 490 | 490 | |
| 491 | 491 | if (geodir_dummy_folder_exists()) |
| 492 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 492 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 493 | 493 | else |
| 494 | - $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 494 | + $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
|
| 495 | 495 | |
| 496 | 496 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 497 | 497 | |
| 498 | 498 | switch ($dummy_post_index) { |
| 499 | 499 | |
| 500 | - case(1): |
|
| 501 | - $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 502 | - $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 503 | - $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 504 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 505 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 500 | + case(1): |
|
| 501 | + $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 502 | + $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 503 | + $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 504 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 505 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 506 | 506 | |
| 507 | 507 | |
| 508 | - $post_info[] = array( |
|
| 509 | - "listing_type" => $post_type, |
|
| 510 | - "post_title" => 'Eastern Lodge', |
|
| 511 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 508 | + $post_info[] = array( |
|
| 509 | + "listing_type" => $post_type, |
|
| 510 | + "post_title" => 'Eastern Lodge', |
|
| 511 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 512 | 512 | |
| 513 | 513 | Aliquam ut odio ullamcorper, posuere enim sed, venenatis tortor. Donec justo elit, aliquam sed cursus sed, semper eget libero. Mauris consequat lorem sed fringilla tincidunt. Phasellus suscipit velit et elit tristique, ac commodo metus scelerisque. Vivamus finibus ipsum placerat pulvinar aliquet. Maecenas augue orci, blandit at nibh pharetra, condimentum congue ligula. Duis non ante sagittis odio convallis lacinia in quis sapien. |
| 514 | 514 | |
@@ -517,42 +517,42 @@ discard block |
||
| 517 | 517 | Vestibulum tristique quam eget bibendum pulvinar. Mauris sit amet magna ut arcu rutrum pellentesque feugiat et ipsum. Proin porta quam sed risus accumsan pharetra. Nulla quis semper nisl. Nulla facilisi. Nulla facilisi. Pellentesque euismod sollicitudin lacus vel ultricies. Vestibulum ut sem ut nulla ultricies convallis in at mi. Nunc vitae nibh arcu. Maecenas nunc enim, tempus a rhoncus eget, pellentesque ut erat. |
| 518 | 518 | |
| 519 | 519 | Suspendisse interdum accumsan magna et tempor. Suspendisse scelerisque at lorem sit amet faucibus. Aenean quis consectetur enim. Duis aliquet tristique tempus. Suspendisse id ullamcorper mauris. Aliquam in libero eu justo porttitor pulvinar. Nulla semper placerat lectus. Nulla mollis suscipit lacus, a blandit purus cursus non. Maecenas id tellus mi. Pellentesque sollicitudin nibh eget magna scelerisque consequat. Aliquam convallis orci arcu, et euismod dui cursus et. Donec nec pellentesque nulla, ac pretium massa. In gravida bibendum ornare.', |
| 520 | - "post_images" => $image_array, |
|
| 521 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 522 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 523 | - "geodir_video" => '', |
|
| 524 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 525 | - "geodir_contact" => '(111) 677-4444', |
|
| 526 | - "geodir_email" => '[email protected]', |
|
| 527 | - "geodir_website" => 'http://example.com/', |
|
| 528 | - "geodir_twitter" => 'http://example.com/', |
|
| 529 | - "geodir_facebook" => 'http://example.com/', |
|
| 530 | - "geodir_price" => '350000', |
|
| 531 | - "geodir_property_status" => 'For Sale', |
|
| 532 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 533 | - 'geodir_property_type' => 'Detached house', |
|
| 534 | - 'geodir_property_bedrooms' => '3', |
|
| 535 | - 'geodir_property_bathrooms' => '2', |
|
| 536 | - 'geodir_property_area' => '1850', |
|
| 537 | - 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 538 | - "post_dummy" => '1' |
|
| 539 | - ); |
|
| 540 | - |
|
| 541 | - |
|
| 542 | - break; |
|
| 543 | - case 2: |
|
| 544 | - $image_array = array(); |
|
| 545 | - $post_meta = array(); |
|
| 546 | - $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 547 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 548 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 549 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 550 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 551 | - |
|
| 552 | - $post_info[] = array( |
|
| 553 | - "listing_type" => $post_type, |
|
| 554 | - "post_title" => 'Daisy Street', |
|
| 555 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 520 | + "post_images" => $image_array, |
|
| 521 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 522 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 523 | + "geodir_video" => '', |
|
| 524 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 525 | + "geodir_contact" => '(111) 677-4444', |
|
| 526 | + "geodir_email" => '[email protected]', |
|
| 527 | + "geodir_website" => 'http://example.com/', |
|
| 528 | + "geodir_twitter" => 'http://example.com/', |
|
| 529 | + "geodir_facebook" => 'http://example.com/', |
|
| 530 | + "geodir_price" => '350000', |
|
| 531 | + "geodir_property_status" => 'For Sale', |
|
| 532 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 533 | + 'geodir_property_type' => 'Detached house', |
|
| 534 | + 'geodir_property_bedrooms' => '3', |
|
| 535 | + 'geodir_property_bathrooms' => '2', |
|
| 536 | + 'geodir_property_area' => '1850', |
|
| 537 | + 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 538 | + "post_dummy" => '1' |
|
| 539 | + ); |
|
| 540 | + |
|
| 541 | + |
|
| 542 | + break; |
|
| 543 | + case 2: |
|
| 544 | + $image_array = array(); |
|
| 545 | + $post_meta = array(); |
|
| 546 | + $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 547 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 548 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 549 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 550 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 551 | + |
|
| 552 | + $post_info[] = array( |
|
| 553 | + "listing_type" => $post_type, |
|
| 554 | + "post_title" => 'Daisy Street', |
|
| 555 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 556 | 556 | |
| 557 | 557 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 558 | 558 | |
@@ -562,42 +562,42 @@ discard block |
||
| 562 | 562 | |
| 563 | 563 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 564 | 564 | |
| 565 | - "post_images" => $image_array, |
|
| 566 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 567 | - "post_tags" => array('Garage'), |
|
| 568 | - "geodir_video" => '', |
|
| 569 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 570 | - "geodir_contact" => '(222) 777-1111', |
|
| 571 | - "geodir_email" => '[email protected]', |
|
| 572 | - "geodir_website" => 'http://example.com/', |
|
| 573 | - "geodir_twitter" => 'http://example.com/', |
|
| 574 | - "geodir_facebook" => 'http://example.com/', |
|
| 575 | - "geodir_price" => '230000', |
|
| 576 | - "geodir_property_status" => 'Sold', |
|
| 577 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 578 | - 'geodir_property_type' => 'Detached house', |
|
| 579 | - 'geodir_property_bedrooms' => '5', |
|
| 580 | - 'geodir_property_bathrooms' => '3', |
|
| 581 | - 'geodir_property_area' => '2650', |
|
| 582 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 583 | - "post_dummy" => '1' |
|
| 584 | - ); |
|
| 585 | - |
|
| 586 | - break; |
|
| 587 | - |
|
| 588 | - case 3: |
|
| 589 | - $image_array = array(); |
|
| 590 | - $post_meta = array(); |
|
| 591 | - $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 592 | - $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 593 | - $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 594 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 595 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 596 | - |
|
| 597 | - $post_info[] = array( |
|
| 598 | - "listing_type" => $post_type, |
|
| 599 | - "post_title" => 'Northbay House', |
|
| 600 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 565 | + "post_images" => $image_array, |
|
| 566 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 567 | + "post_tags" => array('Garage'), |
|
| 568 | + "geodir_video" => '', |
|
| 569 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 570 | + "geodir_contact" => '(222) 777-1111', |
|
| 571 | + "geodir_email" => '[email protected]', |
|
| 572 | + "geodir_website" => 'http://example.com/', |
|
| 573 | + "geodir_twitter" => 'http://example.com/', |
|
| 574 | + "geodir_facebook" => 'http://example.com/', |
|
| 575 | + "geodir_price" => '230000', |
|
| 576 | + "geodir_property_status" => 'Sold', |
|
| 577 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 578 | + 'geodir_property_type' => 'Detached house', |
|
| 579 | + 'geodir_property_bedrooms' => '5', |
|
| 580 | + 'geodir_property_bathrooms' => '3', |
|
| 581 | + 'geodir_property_area' => '2650', |
|
| 582 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 583 | + "post_dummy" => '1' |
|
| 584 | + ); |
|
| 585 | + |
|
| 586 | + break; |
|
| 587 | + |
|
| 588 | + case 3: |
|
| 589 | + $image_array = array(); |
|
| 590 | + $post_meta = array(); |
|
| 591 | + $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 592 | + $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 593 | + $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 594 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 595 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 596 | + |
|
| 597 | + $post_info[] = array( |
|
| 598 | + "listing_type" => $post_type, |
|
| 599 | + "post_title" => 'Northbay House', |
|
| 600 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 601 | 601 | |
| 602 | 602 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 603 | 603 | |
@@ -607,43 +607,43 @@ discard block |
||
| 607 | 607 | |
| 608 | 608 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 609 | 609 | |
| 610 | - "post_images" => $image_array, |
|
| 611 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 612 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 613 | - "geodir_video" => '', |
|
| 614 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 615 | - "geodir_contact" => '(222) 777-1111', |
|
| 616 | - "geodir_email" => '[email protected]', |
|
| 617 | - "geodir_website" => 'http://example.com/', |
|
| 618 | - "geodir_twitter" => 'http://example.com/', |
|
| 619 | - "geodir_facebook" => 'http://example.com/', |
|
| 620 | - "geodir_price" => '260000', |
|
| 621 | - "geodir_property_status" => 'Under Offer', |
|
| 622 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 623 | - 'geodir_property_type' => 'Detached house', |
|
| 624 | - 'geodir_property_bedrooms' => '6', |
|
| 625 | - 'geodir_property_bathrooms' => '6', |
|
| 626 | - 'geodir_property_area' => '1650', |
|
| 627 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 628 | - "post_dummy" => '1' |
|
| 629 | - ); |
|
| 630 | - |
|
| 631 | - break; |
|
| 632 | - |
|
| 633 | - |
|
| 634 | - case 4: |
|
| 635 | - $image_array = array(); |
|
| 636 | - $post_meta = array(); |
|
| 637 | - $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 638 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 639 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 640 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 641 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 642 | - |
|
| 643 | - $post_info[] = array( |
|
| 644 | - "listing_type" => $post_type, |
|
| 645 | - "post_title" => 'Jesmond Mansion', |
|
| 646 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 610 | + "post_images" => $image_array, |
|
| 611 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 612 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 613 | + "geodir_video" => '', |
|
| 614 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 615 | + "geodir_contact" => '(222) 777-1111', |
|
| 616 | + "geodir_email" => '[email protected]', |
|
| 617 | + "geodir_website" => 'http://example.com/', |
|
| 618 | + "geodir_twitter" => 'http://example.com/', |
|
| 619 | + "geodir_facebook" => 'http://example.com/', |
|
| 620 | + "geodir_price" => '260000', |
|
| 621 | + "geodir_property_status" => 'Under Offer', |
|
| 622 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 623 | + 'geodir_property_type' => 'Detached house', |
|
| 624 | + 'geodir_property_bedrooms' => '6', |
|
| 625 | + 'geodir_property_bathrooms' => '6', |
|
| 626 | + 'geodir_property_area' => '1650', |
|
| 627 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 628 | + "post_dummy" => '1' |
|
| 629 | + ); |
|
| 630 | + |
|
| 631 | + break; |
|
| 632 | + |
|
| 633 | + |
|
| 634 | + case 4: |
|
| 635 | + $image_array = array(); |
|
| 636 | + $post_meta = array(); |
|
| 637 | + $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 638 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 639 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 640 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 641 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 642 | + |
|
| 643 | + $post_info[] = array( |
|
| 644 | + "listing_type" => $post_type, |
|
| 645 | + "post_title" => 'Jesmond Mansion', |
|
| 646 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 647 | 647 | |
| 648 | 648 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 649 | 649 | |
@@ -653,42 +653,42 @@ discard block |
||
| 653 | 653 | |
| 654 | 654 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 655 | 655 | |
| 656 | - "post_images" => $image_array, |
|
| 657 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 658 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 659 | - "geodir_video" => '', |
|
| 660 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 661 | - "geodir_contact" => '(222) 777-1111', |
|
| 662 | - "geodir_email" => '[email protected]', |
|
| 663 | - "geodir_website" => 'http://example.com/', |
|
| 664 | - "geodir_twitter" => 'http://example.com/', |
|
| 665 | - "geodir_facebook" => 'http://example.com/', |
|
| 666 | - "geodir_price" => '2300000', |
|
| 667 | - "geodir_property_status" => 'Under Offer', |
|
| 668 | - 'geodir_property_furnishing' => 'Partially furnished', |
|
| 669 | - 'geodir_property_type' => 'Detached house', |
|
| 670 | - 'geodir_property_bedrooms' => '10', |
|
| 671 | - 'geodir_property_bathrooms' => '7', |
|
| 672 | - 'geodir_property_area' => '6600', |
|
| 673 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 674 | - "post_dummy" => '1' |
|
| 675 | - ); |
|
| 676 | - |
|
| 677 | - break; |
|
| 678 | - |
|
| 679 | - case 5: |
|
| 680 | - $image_array = array(); |
|
| 681 | - $post_meta = array(); |
|
| 682 | - $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 683 | - $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 684 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 685 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 686 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 687 | - |
|
| 688 | - $post_info[] = array( |
|
| 689 | - "listing_type" => $post_type, |
|
| 690 | - "post_title" => 'Springfield Lodge', |
|
| 691 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 656 | + "post_images" => $image_array, |
|
| 657 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 658 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 659 | + "geodir_video" => '', |
|
| 660 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 661 | + "geodir_contact" => '(222) 777-1111', |
|
| 662 | + "geodir_email" => '[email protected]', |
|
| 663 | + "geodir_website" => 'http://example.com/', |
|
| 664 | + "geodir_twitter" => 'http://example.com/', |
|
| 665 | + "geodir_facebook" => 'http://example.com/', |
|
| 666 | + "geodir_price" => '2300000', |
|
| 667 | + "geodir_property_status" => 'Under Offer', |
|
| 668 | + 'geodir_property_furnishing' => 'Partially furnished', |
|
| 669 | + 'geodir_property_type' => 'Detached house', |
|
| 670 | + 'geodir_property_bedrooms' => '10', |
|
| 671 | + 'geodir_property_bathrooms' => '7', |
|
| 672 | + 'geodir_property_area' => '6600', |
|
| 673 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 674 | + "post_dummy" => '1' |
|
| 675 | + ); |
|
| 676 | + |
|
| 677 | + break; |
|
| 678 | + |
|
| 679 | + case 5: |
|
| 680 | + $image_array = array(); |
|
| 681 | + $post_meta = array(); |
|
| 682 | + $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 683 | + $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 684 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 685 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 686 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 687 | + |
|
| 688 | + $post_info[] = array( |
|
| 689 | + "listing_type" => $post_type, |
|
| 690 | + "post_title" => 'Springfield Lodge', |
|
| 691 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 692 | 692 | |
| 693 | 693 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 694 | 694 | |
@@ -698,42 +698,42 @@ discard block |
||
| 698 | 698 | |
| 699 | 699 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 700 | 700 | |
| 701 | - "post_images" => $image_array, |
|
| 702 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 703 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 704 | - "geodir_video" => '', |
|
| 705 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 706 | - "geodir_contact" => '(222) 777-1111', |
|
| 707 | - "geodir_email" => '[email protected]', |
|
| 708 | - "geodir_website" => 'http://example.com/', |
|
| 709 | - "geodir_twitter" => 'http://example.com/', |
|
| 710 | - "geodir_facebook" => 'http://example.com/', |
|
| 711 | - "geodir_price" => '330000', |
|
| 712 | - "geodir_property_status" => 'For Sale', |
|
| 713 | - 'geodir_property_furnishing' => 'Optional', |
|
| 714 | - 'geodir_property_type' => 'Detached house', |
|
| 715 | - 'geodir_property_bedrooms' => '4', |
|
| 716 | - 'geodir_property_bathrooms' => '3', |
|
| 717 | - 'geodir_property_area' => '3700', |
|
| 718 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 719 | - "post_dummy" => '1' |
|
| 720 | - ); |
|
| 721 | - |
|
| 722 | - break; |
|
| 723 | - |
|
| 724 | - case 6: |
|
| 725 | - $image_array = array(); |
|
| 726 | - $post_meta = array(); |
|
| 727 | - $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 728 | - $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 729 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 730 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 731 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 732 | - |
|
| 733 | - $post_info[] = array( |
|
| 734 | - "listing_type" => $post_type, |
|
| 735 | - "post_title" => 'Forrest Park', |
|
| 736 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 701 | + "post_images" => $image_array, |
|
| 702 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 703 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 704 | + "geodir_video" => '', |
|
| 705 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 706 | + "geodir_contact" => '(222) 777-1111', |
|
| 707 | + "geodir_email" => '[email protected]', |
|
| 708 | + "geodir_website" => 'http://example.com/', |
|
| 709 | + "geodir_twitter" => 'http://example.com/', |
|
| 710 | + "geodir_facebook" => 'http://example.com/', |
|
| 711 | + "geodir_price" => '330000', |
|
| 712 | + "geodir_property_status" => 'For Sale', |
|
| 713 | + 'geodir_property_furnishing' => 'Optional', |
|
| 714 | + 'geodir_property_type' => 'Detached house', |
|
| 715 | + 'geodir_property_bedrooms' => '4', |
|
| 716 | + 'geodir_property_bathrooms' => '3', |
|
| 717 | + 'geodir_property_area' => '3700', |
|
| 718 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 719 | + "post_dummy" => '1' |
|
| 720 | + ); |
|
| 721 | + |
|
| 722 | + break; |
|
| 723 | + |
|
| 724 | + case 6: |
|
| 725 | + $image_array = array(); |
|
| 726 | + $post_meta = array(); |
|
| 727 | + $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 728 | + $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 729 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 730 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 731 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 732 | + |
|
| 733 | + $post_info[] = array( |
|
| 734 | + "listing_type" => $post_type, |
|
| 735 | + "post_title" => 'Forrest Park', |
|
| 736 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 737 | 737 | |
| 738 | 738 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 739 | 739 | |
@@ -743,42 +743,42 @@ discard block |
||
| 743 | 743 | |
| 744 | 744 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 745 | 745 | |
| 746 | - "post_images" => $image_array, |
|
| 747 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 748 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 749 | - "geodir_video" => '', |
|
| 750 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 751 | - "geodir_contact" => '(222) 777-1111', |
|
| 752 | - "geodir_email" => '[email protected]', |
|
| 753 | - "geodir_website" => 'http://example.com/', |
|
| 754 | - "geodir_twitter" => 'http://example.com/', |
|
| 755 | - "geodir_facebook" => 'http://example.com/', |
|
| 756 | - "geodir_price" => '530000', |
|
| 757 | - "geodir_property_status" => 'For Sale', |
|
| 758 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 759 | - 'geodir_property_type' => 'Detached house', |
|
| 760 | - 'geodir_property_bedrooms' => '5', |
|
| 761 | - 'geodir_property_bathrooms' => '4', |
|
| 762 | - 'geodir_property_area' => '2250', |
|
| 763 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 764 | - "post_dummy" => '1' |
|
| 765 | - ); |
|
| 766 | - |
|
| 767 | - break; |
|
| 768 | - |
|
| 769 | - case 7: |
|
| 770 | - $image_array = array(); |
|
| 771 | - $post_meta = array(); |
|
| 772 | - $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 773 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 774 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 775 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 776 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 777 | - |
|
| 778 | - $post_info[] = array( |
|
| 779 | - "listing_type" => $post_type, |
|
| 780 | - "post_title" => 'Fraser Suites', |
|
| 781 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 746 | + "post_images" => $image_array, |
|
| 747 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 748 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 749 | + "geodir_video" => '', |
|
| 750 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 751 | + "geodir_contact" => '(222) 777-1111', |
|
| 752 | + "geodir_email" => '[email protected]', |
|
| 753 | + "geodir_website" => 'http://example.com/', |
|
| 754 | + "geodir_twitter" => 'http://example.com/', |
|
| 755 | + "geodir_facebook" => 'http://example.com/', |
|
| 756 | + "geodir_price" => '530000', |
|
| 757 | + "geodir_property_status" => 'For Sale', |
|
| 758 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 759 | + 'geodir_property_type' => 'Detached house', |
|
| 760 | + 'geodir_property_bedrooms' => '5', |
|
| 761 | + 'geodir_property_bathrooms' => '4', |
|
| 762 | + 'geodir_property_area' => '2250', |
|
| 763 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 764 | + "post_dummy" => '1' |
|
| 765 | + ); |
|
| 766 | + |
|
| 767 | + break; |
|
| 768 | + |
|
| 769 | + case 7: |
|
| 770 | + $image_array = array(); |
|
| 771 | + $post_meta = array(); |
|
| 772 | + $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 773 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 774 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 775 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 776 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 777 | + |
|
| 778 | + $post_info[] = array( |
|
| 779 | + "listing_type" => $post_type, |
|
| 780 | + "post_title" => 'Fraser Suites', |
|
| 781 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 782 | 782 | |
| 783 | 783 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 784 | 784 | |
@@ -788,42 +788,42 @@ discard block |
||
| 788 | 788 | |
| 789 | 789 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 790 | 790 | |
| 791 | - "post_images" => $image_array, |
|
| 792 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 793 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 794 | - "geodir_video" => '', |
|
| 795 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 796 | - "geodir_contact" => '(222) 777-1111', |
|
| 797 | - "geodir_email" => '[email protected]', |
|
| 798 | - "geodir_website" => 'http://example.com/', |
|
| 799 | - "geodir_twitter" => 'http://example.com/', |
|
| 800 | - "geodir_facebook" => 'http://example.com/', |
|
| 801 | - "geodir_price" => '245000', |
|
| 802 | - "geodir_property_status" => 'For Sale', |
|
| 803 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 804 | - 'geodir_property_type' => 'Apartment', |
|
| 805 | - 'geodir_property_bedrooms' => '3', |
|
| 806 | - 'geodir_property_bathrooms' => '2', |
|
| 807 | - 'geodir_property_area' => '1250', |
|
| 808 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 809 | - "post_dummy" => '1' |
|
| 810 | - ); |
|
| 811 | - |
|
| 812 | - break; |
|
| 813 | - |
|
| 814 | - case 8: |
|
| 815 | - $image_array = array(); |
|
| 816 | - $post_meta = array(); |
|
| 817 | - $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 818 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 819 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 820 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 821 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 822 | - |
|
| 823 | - $post_info[] = array( |
|
| 824 | - "listing_type" => $post_type, |
|
| 825 | - "post_title" => 'Richmore Apartments', |
|
| 826 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 791 | + "post_images" => $image_array, |
|
| 792 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 793 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 794 | + "geodir_video" => '', |
|
| 795 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 796 | + "geodir_contact" => '(222) 777-1111', |
|
| 797 | + "geodir_email" => '[email protected]', |
|
| 798 | + "geodir_website" => 'http://example.com/', |
|
| 799 | + "geodir_twitter" => 'http://example.com/', |
|
| 800 | + "geodir_facebook" => 'http://example.com/', |
|
| 801 | + "geodir_price" => '245000', |
|
| 802 | + "geodir_property_status" => 'For Sale', |
|
| 803 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 804 | + 'geodir_property_type' => 'Apartment', |
|
| 805 | + 'geodir_property_bedrooms' => '3', |
|
| 806 | + 'geodir_property_bathrooms' => '2', |
|
| 807 | + 'geodir_property_area' => '1250', |
|
| 808 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 809 | + "post_dummy" => '1' |
|
| 810 | + ); |
|
| 811 | + |
|
| 812 | + break; |
|
| 813 | + |
|
| 814 | + case 8: |
|
| 815 | + $image_array = array(); |
|
| 816 | + $post_meta = array(); |
|
| 817 | + $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 818 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 819 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 820 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 821 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 822 | + |
|
| 823 | + $post_info[] = array( |
|
| 824 | + "listing_type" => $post_type, |
|
| 825 | + "post_title" => 'Richmore Apartments', |
|
| 826 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 827 | 827 | |
| 828 | 828 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 829 | 829 | |
@@ -833,43 +833,43 @@ discard block |
||
| 833 | 833 | |
| 834 | 834 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 835 | 835 | |
| 836 | - "post_images" => $image_array, |
|
| 837 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 838 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 839 | - "geodir_video" => '', |
|
| 840 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 841 | - "geodir_contact" => '(222) 777-1111', |
|
| 842 | - "geodir_email" => '[email protected]', |
|
| 843 | - "geodir_website" => 'http://example.com/', |
|
| 844 | - "geodir_twitter" => 'http://example.com/', |
|
| 845 | - "geodir_facebook" => 'http://example.com/', |
|
| 846 | - "geodir_price" => '395000', |
|
| 847 | - "geodir_property_status" => 'For Sale', |
|
| 848 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 849 | - 'geodir_property_type' => 'Apartment', |
|
| 850 | - 'geodir_property_bedrooms' => '2', |
|
| 851 | - 'geodir_property_bathrooms' => '2', |
|
| 852 | - 'geodir_property_area' => '1750', |
|
| 853 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 854 | - "post_dummy" => '1' |
|
| 855 | - ); |
|
| 856 | - |
|
| 857 | - break; |
|
| 858 | - |
|
| 859 | - |
|
| 860 | - case 9: |
|
| 861 | - $image_array = array(); |
|
| 862 | - $post_meta = array(); |
|
| 863 | - $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 864 | - $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 865 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 866 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 867 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 868 | - |
|
| 869 | - $post_info[] = array( |
|
| 870 | - "listing_type" => $post_type, |
|
| 871 | - "post_title" => 'Hotel Alpina', |
|
| 872 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 836 | + "post_images" => $image_array, |
|
| 837 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 838 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 839 | + "geodir_video" => '', |
|
| 840 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 841 | + "geodir_contact" => '(222) 777-1111', |
|
| 842 | + "geodir_email" => '[email protected]', |
|
| 843 | + "geodir_website" => 'http://example.com/', |
|
| 844 | + "geodir_twitter" => 'http://example.com/', |
|
| 845 | + "geodir_facebook" => 'http://example.com/', |
|
| 846 | + "geodir_price" => '395000', |
|
| 847 | + "geodir_property_status" => 'For Sale', |
|
| 848 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 849 | + 'geodir_property_type' => 'Apartment', |
|
| 850 | + 'geodir_property_bedrooms' => '2', |
|
| 851 | + 'geodir_property_bathrooms' => '2', |
|
| 852 | + 'geodir_property_area' => '1750', |
|
| 853 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 854 | + "post_dummy" => '1' |
|
| 855 | + ); |
|
| 856 | + |
|
| 857 | + break; |
|
| 858 | + |
|
| 859 | + |
|
| 860 | + case 9: |
|
| 861 | + $image_array = array(); |
|
| 862 | + $post_meta = array(); |
|
| 863 | + $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 864 | + $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 865 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 866 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 867 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 868 | + |
|
| 869 | + $post_info[] = array( |
|
| 870 | + "listing_type" => $post_type, |
|
| 871 | + "post_title" => 'Hotel Alpina', |
|
| 872 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 873 | 873 | |
| 874 | 874 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 875 | 875 | |
@@ -879,39 +879,39 @@ discard block |
||
| 879 | 879 | |
| 880 | 880 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 881 | 881 | |
| 882 | - "post_images" => $image_array, |
|
| 883 | - "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 884 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 885 | - "geodir_video" => '', |
|
| 886 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 887 | - "geodir_contact" => '(222) 777-1111', |
|
| 888 | - "geodir_email" => '[email protected]', |
|
| 889 | - "geodir_website" => 'http://example.com/', |
|
| 890 | - "geodir_twitter" => 'http://example.com/', |
|
| 891 | - "geodir_facebook" => 'http://example.com/', |
|
| 892 | - "geodir_price" => '12500000', |
|
| 893 | - "geodir_property_status" => 'For Sale', |
|
| 894 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 895 | - 'geodir_property_type' => 'Hotel', |
|
| 896 | - 'geodir_property_bedrooms' => '120', |
|
| 897 | - 'geodir_property_bathrooms' => '133', |
|
| 898 | - 'geodir_property_area' => '35000', |
|
| 899 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 900 | - "post_dummy" => '1' |
|
| 901 | - ); |
|
| 902 | - |
|
| 903 | - break; |
|
| 904 | - |
|
| 905 | - case 10: |
|
| 906 | - $image_array = array(); |
|
| 907 | - $post_meta = array(); |
|
| 908 | - $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 909 | - $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 910 | - |
|
| 911 | - $post_info[] = array( |
|
| 912 | - "listing_type" => $post_type, |
|
| 913 | - "post_title" => 'Development Land', |
|
| 914 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 882 | + "post_images" => $image_array, |
|
| 883 | + "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 884 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 885 | + "geodir_video" => '', |
|
| 886 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 887 | + "geodir_contact" => '(222) 777-1111', |
|
| 888 | + "geodir_email" => '[email protected]', |
|
| 889 | + "geodir_website" => 'http://example.com/', |
|
| 890 | + "geodir_twitter" => 'http://example.com/', |
|
| 891 | + "geodir_facebook" => 'http://example.com/', |
|
| 892 | + "geodir_price" => '12500000', |
|
| 893 | + "geodir_property_status" => 'For Sale', |
|
| 894 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 895 | + 'geodir_property_type' => 'Hotel', |
|
| 896 | + 'geodir_property_bedrooms' => '120', |
|
| 897 | + 'geodir_property_bathrooms' => '133', |
|
| 898 | + 'geodir_property_area' => '35000', |
|
| 899 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 900 | + "post_dummy" => '1' |
|
| 901 | + ); |
|
| 902 | + |
|
| 903 | + break; |
|
| 904 | + |
|
| 905 | + case 10: |
|
| 906 | + $image_array = array(); |
|
| 907 | + $post_meta = array(); |
|
| 908 | + $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 909 | + $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 910 | + |
|
| 911 | + $post_info[] = array( |
|
| 912 | + "listing_type" => $post_type, |
|
| 913 | + "post_title" => 'Development Land', |
|
| 914 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 915 | 915 | |
| 916 | 916 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 917 | 917 | |
@@ -921,93 +921,93 @@ discard block |
||
| 921 | 921 | |
| 922 | 922 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 923 | 923 | |
| 924 | - "post_images" => $image_array, |
|
| 925 | - "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 926 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 927 | - "geodir_video" => '', |
|
| 928 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 929 | - "geodir_contact" => '(222) 777-1111', |
|
| 930 | - "geodir_email" => '[email protected]', |
|
| 931 | - "geodir_website" => 'http://example.com/', |
|
| 932 | - "geodir_twitter" => 'http://example.com/', |
|
| 933 | - "geodir_facebook" => 'http://example.com/', |
|
| 934 | - "geodir_price" => '80000', |
|
| 935 | - "geodir_property_status" => 'For Sale', |
|
| 936 | - 'geodir_property_furnishing' => '', |
|
| 937 | - 'geodir_property_type' => 'Land', |
|
| 938 | - 'geodir_property_bedrooms' => '', |
|
| 939 | - 'geodir_property_bathrooms' => '', |
|
| 940 | - 'geodir_property_area' => '250000', |
|
| 941 | - 'geodir_property_features' => '', |
|
| 942 | - "post_dummy" => '1' |
|
| 943 | - ); |
|
| 944 | - |
|
| 945 | - break; |
|
| 924 | + "post_images" => $image_array, |
|
| 925 | + "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 926 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 927 | + "geodir_video" => '', |
|
| 928 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 929 | + "geodir_contact" => '(222) 777-1111', |
|
| 930 | + "geodir_email" => '[email protected]', |
|
| 931 | + "geodir_website" => 'http://example.com/', |
|
| 932 | + "geodir_twitter" => 'http://example.com/', |
|
| 933 | + "geodir_facebook" => 'http://example.com/', |
|
| 934 | + "geodir_price" => '80000', |
|
| 935 | + "geodir_property_status" => 'For Sale', |
|
| 936 | + 'geodir_property_furnishing' => '', |
|
| 937 | + 'geodir_property_type' => 'Land', |
|
| 938 | + 'geodir_property_bedrooms' => '', |
|
| 939 | + 'geodir_property_bathrooms' => '', |
|
| 940 | + 'geodir_property_area' => '250000', |
|
| 941 | + 'geodir_property_features' => '', |
|
| 942 | + "post_dummy" => '1' |
|
| 943 | + ); |
|
| 944 | + |
|
| 945 | + break; |
|
| 946 | 946 | |
| 947 | 947 | } // end of switch |
| 948 | 948 | |
| 949 | 949 | foreach ($post_info as $post_info) { |
| 950 | - $default_location = geodir_get_default_location(); |
|
| 951 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 952 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | - else |
|
| 954 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 950 | + $default_location = geodir_get_default_location(); |
|
| 951 | + if ($city_bound_lat1 > $city_bound_lat2) |
|
| 952 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 953 | + else |
|
| 954 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 955 | 955 | |
| 956 | 956 | |
| 957 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 958 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 959 | - else |
|
| 960 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 957 | + if ($city_bound_lng1 > $city_bound_lng2) |
|
| 958 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 959 | + else |
|
| 960 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 961 | 961 | |
| 962 | - $load_map = get_option('geodir_load_map'); |
|
| 962 | + $load_map = get_option('geodir_load_map'); |
|
| 963 | 963 | |
| 964 | - if ($load_map == 'osm') { |
|
| 965 | - $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 966 | - } else { |
|
| 967 | - $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 968 | - } |
|
| 969 | - |
|
| 970 | - $postal_code = ''; |
|
| 971 | - if (!empty($post_address)) { |
|
| 972 | - if ($load_map == 'osm') { |
|
| 973 | - $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 974 | - $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 975 | - } else { |
|
| 976 | - $addresses = array(); |
|
| 977 | - $addresses_default = array(); |
|
| 964 | + if ($load_map == 'osm') { |
|
| 965 | + $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 966 | + } else { |
|
| 967 | + $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 968 | + } |
|
| 969 | + |
|
| 970 | + $postal_code = ''; |
|
| 971 | + if (!empty($post_address)) { |
|
| 972 | + if ($load_map == 'osm') { |
|
| 973 | + $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 974 | + $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 975 | + } else { |
|
| 976 | + $addresses = array(); |
|
| 977 | + $addresses_default = array(); |
|
| 978 | 978 | |
| 979 | - foreach ($post_address as $add_key => $add_value) { |
|
| 980 | - if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 981 | - $addresses_default[] = $add_value->long_name; |
|
| 982 | - } |
|
| 983 | - if ($add_value->types[0] == 'postal_code') { |
|
| 984 | - $postal_code = $add_value->long_name; |
|
| 985 | - } |
|
| 986 | - if ($add_value->types[0] == 'street_number') { |
|
| 987 | - $addresses[] = $add_value->long_name; |
|
| 988 | - } |
|
| 989 | - if ($add_value->types[0] == 'route') { |
|
| 990 | - $addresses[] = $add_value->long_name; |
|
| 991 | - } |
|
| 992 | - if ($add_value->types[0] == 'neighborhood') { |
|
| 993 | - $addresses[] = $add_value->long_name; |
|
| 994 | - } |
|
| 995 | - if ($add_value->types[0] == 'sublocality') { |
|
| 996 | - $addresses[] = $add_value->long_name; |
|
| 997 | - } |
|
| 998 | - } |
|
| 999 | - $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 1000 | - } |
|
| 1001 | - |
|
| 1002 | - $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1003 | - $post_info['post_city'] = $default_location->city; |
|
| 1004 | - $post_info['post_region'] = $default_location->region; |
|
| 1005 | - $post_info['post_country'] = $default_location->country; |
|
| 1006 | - $post_info['post_zip'] = $postal_code; |
|
| 1007 | - $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1008 | - $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1009 | - } |
|
| 979 | + foreach ($post_address as $add_key => $add_value) { |
|
| 980 | + if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 981 | + $addresses_default[] = $add_value->long_name; |
|
| 982 | + } |
|
| 983 | + if ($add_value->types[0] == 'postal_code') { |
|
| 984 | + $postal_code = $add_value->long_name; |
|
| 985 | + } |
|
| 986 | + if ($add_value->types[0] == 'street_number') { |
|
| 987 | + $addresses[] = $add_value->long_name; |
|
| 988 | + } |
|
| 989 | + if ($add_value->types[0] == 'route') { |
|
| 990 | + $addresses[] = $add_value->long_name; |
|
| 991 | + } |
|
| 992 | + if ($add_value->types[0] == 'neighborhood') { |
|
| 993 | + $addresses[] = $add_value->long_name; |
|
| 994 | + } |
|
| 995 | + if ($add_value->types[0] == 'sublocality') { |
|
| 996 | + $addresses[] = $add_value->long_name; |
|
| 997 | + } |
|
| 998 | + } |
|
| 999 | + $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 1000 | + } |
|
| 1001 | + |
|
| 1002 | + $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 1003 | + $post_info['post_city'] = $default_location->city; |
|
| 1004 | + $post_info['post_region'] = $default_location->region; |
|
| 1005 | + $post_info['post_country'] = $default_location->country; |
|
| 1006 | + $post_info['post_zip'] = $postal_code; |
|
| 1007 | + $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 1008 | + $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 1009 | + } |
|
| 1010 | 1010 | |
| 1011 | - geodir_save_listing($post_info, true); |
|
| 1012 | - echo 1; |
|
| 1011 | + geodir_save_listing($post_info, true); |
|
| 1012 | + echo 1; |
|
| 1013 | 1013 | } |
@@ -6,9 +6,9 @@ discard block |
||
| 6 | 6 | * @package GeoDirectory |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -function geodir_property_sale_custom_fields($post_type='gd_place',$package_id=''){ |
|
| 9 | +function geodir_property_sale_custom_fields($post_type = 'gd_place', $package_id = '') { |
|
| 10 | 10 | $fields = array(); |
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 11 | + $package = ($package_id == '') ? '' : array($package_id); |
|
| 12 | 12 | |
| 13 | 13 | // price |
| 14 | 14 | $fields[] = array('listing_type' => $post_type, |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | 'default_value' => '', |
| 79 | 79 | 'show_in' => '[detail],[listing]', |
| 80 | 80 | 'is_required' => true, |
| 81 | - 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional','geodirectory'), |
|
| 81 | + 'option_values' => __('Select Status/,Unfurnished,Furnished,Partially furnished,Optional', 'geodirectory'), |
|
| 82 | 82 | 'validation_pattern' => '', |
| 83 | 83 | 'validation_msg' => '', |
| 84 | 84 | 'required_msg' => '', |
@@ -101,7 +101,7 @@ discard block |
||
| 101 | 101 | 'default_value' => '', |
| 102 | 102 | 'show_in' => '[detail],[listing]', |
| 103 | 103 | 'is_required' => true, |
| 104 | - 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land','geodirectory'), |
|
| 104 | + 'option_values' => __('Select Type/,Detached house,Semi-detached house,Apartment,Bungalow,Semi-detached bungalow,Chalet,Town House,End-terrace house,Terrace house,Cottage,Hotel,Land', 'geodirectory'), |
|
| 105 | 105 | 'validation_pattern' => '', |
| 106 | 106 | 'validation_msg' => '', |
| 107 | 107 | 'required_msg' => '', |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | 'default_value' => '', |
| 125 | 125 | 'show_in' => '[detail],[listing]', |
| 126 | 126 | 'is_required' => true, |
| 127 | - 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 127 | + 'option_values' => __('Select Bedrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 128 | 128 | 'validation_pattern' => '', |
| 129 | 129 | 'validation_msg' => '', |
| 130 | 130 | 'required_msg' => '', |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | 'default_value' => '', |
| 148 | 148 | 'show_in' => '[detail],[listing]', |
| 149 | 149 | 'is_required' => true, |
| 150 | - 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10','geodirectory'), |
|
| 150 | + 'option_values' => __('Select Bathrooms/,1,2,3,4,5,6,7,8,9,10', 'geodirectory'), |
|
| 151 | 151 | 'validation_pattern' => '', |
| 152 | 152 | 'validation_msg' => '', |
| 153 | 153 | 'required_msg' => '', |
@@ -192,7 +192,7 @@ discard block |
||
| 192 | 192 | 'default_value' => '', |
| 193 | 193 | 'show_in' => '[detail],[listing]', |
| 194 | 194 | 'is_required' => false, |
| 195 | - 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace','geodirectory'), |
|
| 195 | + 'option_values' => __('Gas Central Heating,Oil Central Heating,Double Glazing,Triple Glazing,Front Garden,Garage,Private driveway,Off Road Parking,Fireplace', 'geodirectory'), |
|
| 196 | 196 | 'validation_pattern' => '', |
| 197 | 197 | 'validation_msg' => '', |
| 198 | 198 | 'required_msg' => '', |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | return $fields; |
| 216 | 216 | } |
| 217 | 217 | |
| 218 | -function geodir_property_sale_custom_fields_sort($post_type='gd_place') { |
|
| 218 | +function geodir_property_sale_custom_fields_sort($post_type = 'gd_place') { |
|
| 219 | 219 | |
| 220 | 220 | |
| 221 | 221 | $fields = array(); |
@@ -227,11 +227,11 @@ discard block |
||
| 227 | 227 | 'field_type' => 'text', |
| 228 | 228 | 'data_type' => '', |
| 229 | 229 | 'htmlvar_name' => 'geodir_price', |
| 230 | - 'site_title' => __('Price','geodirectory'), |
|
| 230 | + 'site_title' => __('Price', 'geodirectory'), |
|
| 231 | 231 | 'asc' => 1, |
| 232 | - 'asc_title' => __('Price (lowest first)','geodirectory'), |
|
| 232 | + 'asc_title' => __('Price (lowest first)', 'geodirectory'), |
|
| 233 | 233 | 'desc' => 1, |
| 234 | - 'desc_title' => __('Price (highest first)','geodirectory'), |
|
| 234 | + 'desc_title' => __('Price (highest first)', 'geodirectory'), |
|
| 235 | 235 | 'is_active' => 1 |
| 236 | 236 | ); |
| 237 | 237 | |
@@ -242,11 +242,11 @@ discard block |
||
| 242 | 242 | 'field_type' => 'text', |
| 243 | 243 | 'data_type' => '', |
| 244 | 244 | 'htmlvar_name' => 'geodir_property_area', |
| 245 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 245 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 246 | 246 | 'asc' => 1, |
| 247 | - 'asc_title' => __('Area (smallest first)','geodirectory'), |
|
| 247 | + 'asc_title' => __('Area (smallest first)', 'geodirectory'), |
|
| 248 | 248 | 'desc' => 1, |
| 249 | - 'desc_title' => __('Area (largest first)','geodirectory'), |
|
| 249 | + 'desc_title' => __('Area (largest first)', 'geodirectory'), |
|
| 250 | 250 | 'is_active' => 1 |
| 251 | 251 | ); |
| 252 | 252 | |
@@ -257,11 +257,11 @@ discard block |
||
| 257 | 257 | 'field_type' => 'select', |
| 258 | 258 | 'data_type' => '', |
| 259 | 259 | 'htmlvar_name' => 'geodir_property_bedrooms', |
| 260 | - 'site_title' => __('Area (Sq Ft)','geodirectory'), |
|
| 260 | + 'site_title' => __('Area (Sq Ft)', 'geodirectory'), |
|
| 261 | 261 | 'asc' => 1, |
| 262 | - 'asc_title' => __('Bedrooms (least)','geodirectory'), |
|
| 262 | + 'asc_title' => __('Bedrooms (least)', 'geodirectory'), |
|
| 263 | 263 | 'desc' => 1, |
| 264 | - 'desc_title' => __('Bedrooms (most)','geodirectory'), |
|
| 264 | + 'desc_title' => __('Bedrooms (most)', 'geodirectory'), |
|
| 265 | 265 | 'is_active' => 1 |
| 266 | 266 | ); |
| 267 | 267 | |
@@ -278,7 +278,7 @@ discard block |
||
| 278 | 278 | |
| 279 | 279 | } |
| 280 | 280 | |
| 281 | -function geodir_property_sale_custom_fields_advanced_search($post_type='gd_place') { |
|
| 281 | +function geodir_property_sale_custom_fields_advanced_search($post_type = 'gd_place') { |
|
| 282 | 282 | |
| 283 | 283 | |
| 284 | 284 | $fields = array(); |
@@ -456,15 +456,15 @@ discard block |
||
| 456 | 456 | return $fields; |
| 457 | 457 | } |
| 458 | 458 | |
| 459 | -global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
|
| 459 | +global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2, $wpdb, $current_user, $dummy_post_index; |
|
| 460 | 460 | $post_info = array(); |
| 461 | 461 | $image_array = array(); |
| 462 | 462 | $post_meta = array(); |
| 463 | 463 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 464 | 464 | |
| 465 | -if($dummy_post_index==1){ |
|
| 465 | +if ($dummy_post_index == 1) { |
|
| 466 | 466 | // add the dummy categories |
| 467 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 467 | + geodir_dummy_data_taxonomies($post_type, $category_array); |
|
| 468 | 468 | |
| 469 | 469 | // add the dummy custom fields |
| 470 | 470 | $fields = geodir_property_sale_custom_fields($post_type); |
@@ -472,24 +472,24 @@ discard block |
||
| 472 | 472 | |
| 473 | 473 | // add sort order items |
| 474 | 474 | $sort_fields = geodir_property_sale_custom_fields_sort($post_type); |
| 475 | - foreach($sort_fields as $sort){ |
|
| 475 | + foreach ($sort_fields as $sort) { |
|
| 476 | 476 | geodir_custom_sort_field_save($sort); |
| 477 | 477 | } |
| 478 | 478 | |
| 479 | 479 | // update the type currently installed |
| 480 | - update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 480 | + update_option($post_type.'_dummy_data_type', 'property_sale'); |
|
| 481 | 481 | |
| 482 | 482 | // add the advanced search fields |
| 483 | - if (defined('GEODIRADVANCESEARCH_VERSION')){ |
|
| 483 | + if (defined('GEODIRADVANCESEARCH_VERSION')) { |
|
| 484 | 484 | $search_fields = geodir_property_sale_custom_fields_advanced_search($post_type); |
| 485 | - foreach($search_fields as $sfield){ |
|
| 486 | - geodir_custom_advance_search_field_save( $sfield ); |
|
| 485 | + foreach ($search_fields as $sfield) { |
|
| 486 | + geodir_custom_advance_search_field_save($sfield); |
|
| 487 | 487 | } |
| 488 | 488 | } |
| 489 | 489 | } |
| 490 | 490 | |
| 491 | 491 | if (geodir_dummy_folder_exists()) |
| 492 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 492 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 493 | 493 | else |
| 494 | 494 | $dummy_image_url = 'https://www.wpgeodirectory.com/dummy'; |
| 495 | 495 | |
@@ -223,6 +223,9 @@ |
||
| 223 | 223 | * @param filter - the property to filter on |
| 224 | 224 | * @param limit - the number of items to get |
| 225 | 225 | * @param realtime - if the realtime api should be used |
| 226 | + * @param string $metric |
|
| 227 | + * @param string $startDate |
|
| 228 | + * @param string $endDate |
|
| 226 | 229 | * @return the specific metrics in array form |
| 227 | 230 | **/ |
| 228 | 231 | function getMetrics($metric, $startDate, $endDate, $dimensions = false, $sort = false, $filter = false, $limit = false, $realtime = false) |
@@ -48,8 +48,7 @@ discard block |
||
| 48 | 48 | |
| 49 | 49 | try { |
| 50 | 50 | $this->analytics = new Google_AnalyticsService($this->client); |
| 51 | - } |
|
| 52 | - catch (Google_ServiceException $e) |
|
| 51 | + } catch (Google_ServiceException $e) |
|
| 53 | 52 | { |
| 54 | 53 | print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
| 55 | 54 | return false; |
@@ -65,8 +64,7 @@ discard block |
||
| 65 | 64 | try |
| 66 | 65 | { |
| 67 | 66 | $this->client->setAccessToken($ga_google_authtoken); |
| 68 | - } |
|
| 69 | - catch( Google_AuthException $e ) |
|
| 67 | + } catch( Google_AuthException $e ) |
|
| 70 | 68 | { |
| 71 | 69 | print '(cas:72) GeoDirectory was unable to authenticate you with |
| 72 | 70 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
@@ -76,18 +74,18 @@ discard block |
||
| 76 | 74 | |
| 77 | 75 | return false; |
| 78 | 76 | } |
| 79 | - } |
|
| 80 | - else |
|
| 77 | + } else |
|
| 81 | 78 | { |
| 82 | 79 | $authCode = get_option('geodir_ga_auth_code'); |
| 83 | 80 | |
| 84 | - if (empty($authCode)) return false; |
|
| 81 | + if (empty($authCode)) { |
|
| 82 | + return false; |
|
| 83 | + } |
|
| 85 | 84 | |
| 86 | 85 | try |
| 87 | 86 | { |
| 88 | 87 | $accessToken = $this->client->authenticate($authCode); |
| 89 | - } |
|
| 90 | - catch( Exception $e ) |
|
| 88 | + } catch( Exception $e ) |
|
| 91 | 89 | { |
| 92 | 90 | print '(cas:72) GeoDirectory was unable to authenticate you with |
| 93 | 91 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
@@ -102,8 +100,7 @@ discard block |
||
| 102 | 100 | { |
| 103 | 101 | $this->client->setAccessToken($accessToken); |
| 104 | 102 | update_option('geodir_ga_auth_token', $accessToken); |
| 105 | - } |
|
| 106 | - else |
|
| 103 | + } else |
|
| 107 | 104 | { |
| 108 | 105 | return false; |
| 109 | 106 | } |
@@ -124,19 +121,22 @@ discard block |
||
| 124 | 121 | $webproperty_id = get_option('geodir_ga_account_id'); |
| 125 | 122 | list($pre, $account_id, $post) = explode('-',$webproperty_id); |
| 126 | 123 | |
| 127 | - if (empty($webproperty_id)) return false; |
|
| 124 | + if (empty($webproperty_id)) { |
|
| 125 | + return false; |
|
| 126 | + } |
|
| 128 | 127 | |
| 129 | 128 | try { |
| 130 | 129 | $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id); |
| 131 | - } |
|
| 132 | - catch (Google_ServiceException $e) |
|
| 130 | + } catch (Google_ServiceException $e) |
|
| 133 | 131 | { |
| 134 | 132 | print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
| 135 | 133 | return false; |
| 136 | 134 | } |
| 137 | 135 | |
| 138 | 136 | $profile_id = $profiles->items[0]->id; |
| 139 | - if (empty($profile_id)) return false; |
|
| 137 | + if (empty($profile_id)) { |
|
| 138 | + return false; |
|
| 139 | + } |
|
| 140 | 140 | |
| 141 | 141 | $account_array = array(); |
| 142 | 142 | array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id)); |
@@ -149,8 +149,7 @@ discard block |
||
| 149 | 149 | |
| 150 | 150 | try { |
| 151 | 151 | $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all'); |
| 152 | - } |
|
| 153 | - catch (Google_ServiceException $e) |
|
| 152 | + } catch (Google_ServiceException $e) |
|
| 154 | 153 | { |
| 155 | 154 | print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
| 156 | 155 | } |
@@ -262,7 +261,7 @@ discard block |
||
| 262 | 261 | $metric, |
| 263 | 262 | $params |
| 264 | 263 | ); |
| 265 | - }else{ |
|
| 264 | + } else{ |
|
| 266 | 265 | return $analytics->data_ga->get( |
| 267 | 266 | 'ga:'.$filtered_id, |
| 268 | 267 | $startDate, |
@@ -286,10 +285,11 @@ discard block |
||
| 286 | 285 | **/ |
| 287 | 286 | function verifyStartDate($date) |
| 288 | 287 | { |
| 289 | - if ( strtotime($date) > strtotime('2005-01-01') ) |
|
| 290 | - return $date; |
|
| 291 | - else |
|
| 292 | - return '2005-01-01'; |
|
| 288 | + if ( strtotime($date) > strtotime('2005-01-01') ) { |
|
| 289 | + return $date; |
|
| 290 | + } else { |
|
| 291 | + return '2005-01-01'; |
|
| 292 | + } |
|
| 293 | 293 | } |
| 294 | 294 | |
| 295 | 295 | } // END class |
| 296 | 296 | \ No newline at end of file |
@@ -30,135 +30,135 @@ discard block |
||
| 30 | 30 | // Include the Google Service API |
| 31 | 31 | include_once('google-api-php-client/src/Google/autoload.php'); |
| 32 | 32 | |
| 33 | - $this->client = new Google_Client(); |
|
| 34 | - $this->client->setApprovalPrompt("force"); |
|
| 35 | - $this->client->setAccessType('offline'); |
|
| 36 | - $this->client->setClientId(GEODIR_GA_CLIENTID); |
|
| 37 | - $this->client->setClientSecret(GEODIR_GA_CLIENTSECRET); |
|
| 38 | - $this->client->setRedirectUri(GEODIR_GA_REDIRECT); |
|
| 33 | + $this->client = new Google_Client(); |
|
| 34 | + $this->client->setApprovalPrompt("force"); |
|
| 35 | + $this->client->setAccessType('offline'); |
|
| 36 | + $this->client->setClientId(GEODIR_GA_CLIENTID); |
|
| 37 | + $this->client->setClientSecret(GEODIR_GA_CLIENTSECRET); |
|
| 38 | + $this->client->setRedirectUri(GEODIR_GA_REDIRECT); |
|
| 39 | 39 | |
| 40 | - $this->client->setScopes(array("https://www.googleapis.com/auth/analytics")); |
|
| 41 | - |
|
| 42 | - try { |
|
| 43 | - $this->analytics = new Google_Service_Analytics($this->client); |
|
| 44 | - } |
|
| 45 | - catch (Google_ServiceException $e) |
|
| 46 | - { |
|
| 47 | - print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 40 | + $this->client->setScopes(array("https://www.googleapis.com/auth/analytics")); |
|
| 41 | + |
|
| 42 | + try { |
|
| 43 | + $this->analytics = new Google_Service_Analytics($this->client); |
|
| 44 | + } |
|
| 45 | + catch (Google_ServiceException $e) |
|
| 46 | + { |
|
| 47 | + print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 48 | 48 | return false; |
| 49 | - } |
|
| 49 | + } |
|
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | function checkLogin() |
| 53 | 53 | { |
| 54 | - $ga_google_authtoken = get_option('geodir_ga_auth_token'); |
|
| 54 | + $ga_google_authtoken = get_option('geodir_ga_auth_token'); |
|
| 55 | 55 | |
| 56 | - if (!empty($ga_google_authtoken)) |
|
| 57 | - { |
|
| 56 | + if (!empty($ga_google_authtoken)) |
|
| 57 | + { |
|
| 58 | 58 | try |
| 59 | - { |
|
| 60 | - $this->client->setAccessToken($ga_google_authtoken); |
|
| 59 | + { |
|
| 60 | + $this->client->setAccessToken($ga_google_authtoken); |
|
| 61 | 61 | } |
| 62 | 62 | catch( Google_AuthException $e ) |
| 63 | - { |
|
| 64 | - print '(cas:72) GeoDirectory was unable to authenticate you with |
|
| 63 | + { |
|
| 64 | + print '(cas:72) GeoDirectory was unable to authenticate you with |
|
| 65 | 65 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
| 66 | 66 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
| 67 | 67 | or an SSL issue preventing Google from Authenticating. <br><br> |
| 68 | 68 | <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
| 69 | 69 | |
| 70 | - return false; |
|
| 71 | - } |
|
| 72 | - } |
|
| 73 | - else |
|
| 74 | - { |
|
| 75 | - $authCode = get_option('geodir_ga_auth_code'); |
|
| 76 | - |
|
| 77 | - if (empty($authCode)) return false; |
|
| 78 | - |
|
| 79 | - try |
|
| 80 | - { |
|
| 81 | - $accessToken = $this->client->authenticate($authCode); |
|
| 82 | - } |
|
| 83 | - catch( Exception $e ) |
|
| 84 | - { |
|
| 85 | - print '(cas:72) GeoDirectory was unable to authenticate you with |
|
| 70 | + return false; |
|
| 71 | + } |
|
| 72 | + } |
|
| 73 | + else |
|
| 74 | + { |
|
| 75 | + $authCode = get_option('geodir_ga_auth_code'); |
|
| 76 | + |
|
| 77 | + if (empty($authCode)) return false; |
|
| 78 | + |
|
| 79 | + try |
|
| 80 | + { |
|
| 81 | + $accessToken = $this->client->authenticate($authCode); |
|
| 82 | + } |
|
| 83 | + catch( Exception $e ) |
|
| 84 | + { |
|
| 85 | + print '(cas:72) GeoDirectory was unable to authenticate you with |
|
| 86 | 86 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
| 87 | 87 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
| 88 | 88 | or an SSL issue preventing Google from Authenticating. <br><br> |
| 89 | 89 | <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
| 90 | 90 | |
| 91 | - return false; |
|
| 92 | - } |
|
| 93 | - |
|
| 94 | - if($accessToken) |
|
| 95 | - { |
|
| 96 | - $this->client->setAccessToken($accessToken); |
|
| 97 | - update_option('geodir_ga_auth_token', $accessToken); |
|
| 98 | - } |
|
| 99 | - else |
|
| 100 | - { |
|
| 101 | - return false; |
|
| 102 | - } |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - $this->token = $this->client->getAccessToken(); |
|
| 106 | - return true; |
|
| 91 | + return false; |
|
| 92 | + } |
|
| 93 | + |
|
| 94 | + if($accessToken) |
|
| 95 | + { |
|
| 96 | + $this->client->setAccessToken($accessToken); |
|
| 97 | + update_option('geodir_ga_auth_token', $accessToken); |
|
| 98 | + } |
|
| 99 | + else |
|
| 100 | + { |
|
| 101 | + return false; |
|
| 102 | + } |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + $this->token = $this->client->getAccessToken(); |
|
| 106 | + return true; |
|
| 107 | 107 | } |
| 108 | 108 | |
| 109 | 109 | function deauthorize() |
| 110 | 110 | { |
| 111 | - update_option('geodir_ga_auth_code', ''); |
|
| 112 | - update_option('geodir_ga_auth_token', ''); |
|
| 111 | + update_option('geodir_ga_auth_code', ''); |
|
| 112 | + update_option('geodir_ga_auth_token', ''); |
|
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | function getSingleProfile() |
| 116 | 116 | { |
| 117 | - $webproperty_id = get_option('geodir_ga_account_id'); |
|
| 118 | - list($pre, $account_id, $post) = explode('-',$webproperty_id); |
|
| 119 | - |
|
| 120 | - if (empty($webproperty_id)) return false; |
|
| 121 | - |
|
| 122 | - try { |
|
| 123 | - $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id); |
|
| 124 | - } |
|
| 125 | - catch (Google_ServiceException $e) |
|
| 126 | - { |
|
| 127 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
| 128 | - return false; |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - $profile_id = $profiles->items[0]->id; |
|
| 132 | - if (empty($profile_id)) return false; |
|
| 133 | - |
|
| 134 | - $account_array = array(); |
|
| 135 | - array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id)); |
|
| 136 | - return $account_array; |
|
| 117 | + $webproperty_id = get_option('geodir_ga_account_id'); |
|
| 118 | + list($pre, $account_id, $post) = explode('-',$webproperty_id); |
|
| 119 | + |
|
| 120 | + if (empty($webproperty_id)) return false; |
|
| 121 | + |
|
| 122 | + try { |
|
| 123 | + $profiles = $this->analytics->management_profiles->listManagementProfiles($account_id, $webproperty_id); |
|
| 124 | + } |
|
| 125 | + catch (Google_ServiceException $e) |
|
| 126 | + { |
|
| 127 | + print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
| 128 | + return false; |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + $profile_id = $profiles->items[0]->id; |
|
| 132 | + if (empty($profile_id)) return false; |
|
| 133 | + |
|
| 134 | + $account_array = array(); |
|
| 135 | + array_push($account_array, array('id'=>$profile_id, 'ga:webPropertyId'=>$webproperty_id)); |
|
| 136 | + return $account_array; |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | - function getAllProfiles() |
|
| 140 | - { |
|
| 141 | - $profile_array = array(); |
|
| 139 | + function getAllProfiles() |
|
| 140 | + { |
|
| 141 | + $profile_array = array(); |
|
| 142 | 142 | |
| 143 | - try { |
|
| 144 | - $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all'); |
|
| 145 | - } |
|
| 146 | - catch (Google_ServiceException $e) |
|
| 147 | - { |
|
| 148 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
| 149 | - } |
|
| 150 | - |
|
| 151 | - |
|
| 152 | - if( !empty( $profiles->items ) ) |
|
| 153 | - { |
|
| 154 | - foreach( $profiles->items as $profile ) |
|
| 155 | - { |
|
| 156 | - $profile_array[ $profile->id ] = str_replace('http://','',$profile->name ); |
|
| 157 | - } |
|
| 158 | - } |
|
| 159 | - |
|
| 160 | - return $profile_array; |
|
| 161 | - } |
|
| 143 | + try { |
|
| 144 | + $profiles = $this->analytics->management_webproperties->listManagementWebproperties('~all'); |
|
| 145 | + } |
|
| 146 | + catch (Google_ServiceException $e) |
|
| 147 | + { |
|
| 148 | + print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
| 149 | + } |
|
| 150 | + |
|
| 151 | + |
|
| 152 | + if( !empty( $profiles->items ) ) |
|
| 153 | + { |
|
| 154 | + foreach( $profiles->items as $profile ) |
|
| 155 | + { |
|
| 156 | + $profile_array[ $profile->id ] = str_replace('http://','',$profile->name ); |
|
| 157 | + } |
|
| 158 | + } |
|
| 159 | + |
|
| 160 | + return $profile_array; |
|
| 161 | + } |
|
| 162 | 162 | |
| 163 | 163 | function getAnalyticsAccounts() |
| 164 | 164 | { |
@@ -241,13 +241,13 @@ discard block |
||
| 241 | 241 | $params['max-results'] = $limit; |
| 242 | 242 | } |
| 243 | 243 | |
| 244 | - // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking |
|
| 245 | - $filtered_id = str_replace( 'ga:', '', $this->accountId ); |
|
| 244 | + // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking |
|
| 245 | + $filtered_id = str_replace( 'ga:', '', $this->accountId ); |
|
| 246 | 246 | |
| 247 | - if(!$filtered_id){ |
|
| 248 | - echo 'Error - Account ID is blank'; |
|
| 249 | - return false; |
|
| 250 | - } |
|
| 247 | + if(!$filtered_id){ |
|
| 248 | + echo 'Error - Account ID is blank'; |
|
| 249 | + return false; |
|
| 250 | + } |
|
| 251 | 251 | |
| 252 | 252 | if($realtime){ |
| 253 | 253 | return $analytics->data_realtime->get( |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | } |
| 45 | 45 | catch (Google_ServiceException $e) |
| 46 | 46 | { |
| 47 | - print '(cas:48) There was an Analytics API service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 47 | + print '(cas:48) There was an Analytics API service error '.$e->getCode().':'.$e->getMessage(); |
|
| 48 | 48 | return false; |
| 49 | 49 | } |
| 50 | 50 | } |
@@ -59,13 +59,13 @@ discard block |
||
| 59 | 59 | { |
| 60 | 60 | $this->client->setAccessToken($ga_google_authtoken); |
| 61 | 61 | } |
| 62 | - catch( Google_AuthException $e ) |
|
| 62 | + catch (Google_AuthException $e) |
|
| 63 | 63 | { |
| 64 | 64 | print '(cas:72) GeoDirectory was unable to authenticate you with |
| 65 | 65 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
| 66 | 66 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
| 67 | 67 | or an SSL issue preventing Google from Authenticating. <br><br> |
| 68 | - <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 68 | + <br><br><strong>Tech Info </strong> ' . $e->getCode().':'.$e->getMessage(); |
|
| 69 | 69 | |
| 70 | 70 | return false; |
| 71 | 71 | } |
@@ -80,18 +80,18 @@ discard block |
||
| 80 | 80 | { |
| 81 | 81 | $accessToken = $this->client->authenticate($authCode); |
| 82 | 82 | } |
| 83 | - catch( Exception $e ) |
|
| 83 | + catch (Exception $e) |
|
| 84 | 84 | { |
| 85 | 85 | print '(cas:72) GeoDirectory was unable to authenticate you with |
| 86 | 86 | Google using the Auth Token you pasted into the input box on the previous step. <br><br> |
| 87 | 87 | This could mean either you pasted the token wrong, or the time/date on your server is wrong, |
| 88 | 88 | or an SSL issue preventing Google from Authenticating. <br><br> |
| 89 | - <br><br><strong>Tech Info </strong> ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 89 | + <br><br><strong>Tech Info </strong> ' . $e->getCode().':'.$e->getMessage(); |
|
| 90 | 90 | |
| 91 | 91 | return false; |
| 92 | 92 | } |
| 93 | 93 | |
| 94 | - if($accessToken) |
|
| 94 | + if ($accessToken) |
|
| 95 | 95 | { |
| 96 | 96 | $this->client->setAccessToken($accessToken); |
| 97 | 97 | update_option('geodir_ga_auth_token', $accessToken); |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | } |
| 103 | 103 | } |
| 104 | 104 | |
| 105 | - $this->token = $this->client->getAccessToken(); |
|
| 105 | + $this->token = $this->client->getAccessToken(); |
|
| 106 | 106 | return true; |
| 107 | 107 | } |
| 108 | 108 | |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | function getSingleProfile() |
| 116 | 116 | { |
| 117 | 117 | $webproperty_id = get_option('geodir_ga_account_id'); |
| 118 | - list($pre, $account_id, $post) = explode('-',$webproperty_id); |
|
| 118 | + list($pre, $account_id, $post) = explode('-', $webproperty_id); |
|
| 119 | 119 | |
| 120 | 120 | if (empty($webproperty_id)) return false; |
| 121 | 121 | |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | } |
| 125 | 125 | catch (Google_ServiceException $e) |
| 126 | 126 | { |
| 127 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
| 127 | + print 'There was an Analytics API service error '.$e->getCode().': '.$e->getMessage(); |
|
| 128 | 128 | return false; |
| 129 | 129 | } |
| 130 | 130 | |
@@ -145,15 +145,15 @@ discard block |
||
| 145 | 145 | } |
| 146 | 146 | catch (Google_ServiceException $e) |
| 147 | 147 | { |
| 148 | - print 'There was an Analytics API service error ' . $e->getCode() . ': ' . $e->getMessage(); |
|
| 148 | + print 'There was an Analytics API service error '.$e->getCode().': '.$e->getMessage(); |
|
| 149 | 149 | } |
| 150 | 150 | |
| 151 | 151 | |
| 152 | - if( !empty( $profiles->items ) ) |
|
| 152 | + if (!empty($profiles->items)) |
|
| 153 | 153 | { |
| 154 | - foreach( $profiles->items as $profile ) |
|
| 154 | + foreach ($profiles->items as $profile) |
|
| 155 | 155 | { |
| 156 | - $profile_array[ $profile->id ] = str_replace('http://','',$profile->name ); |
|
| 156 | + $profile_array[$profile->id] = str_replace('http://', '', $profile->name); |
|
| 157 | 157 | } |
| 158 | 158 | } |
| 159 | 159 | |
@@ -242,20 +242,20 @@ discard block |
||
| 242 | 242 | } |
| 243 | 243 | |
| 244 | 244 | // Just incase, the ga: is still used in the account id, strip it out to prevent it breaking |
| 245 | - $filtered_id = str_replace( 'ga:', '', $this->accountId ); |
|
| 245 | + $filtered_id = str_replace('ga:', '', $this->accountId); |
|
| 246 | 246 | |
| 247 | - if(!$filtered_id){ |
|
| 247 | + if (!$filtered_id) { |
|
| 248 | 248 | echo 'Error - Account ID is blank'; |
| 249 | 249 | return false; |
| 250 | 250 | } |
| 251 | 251 | |
| 252 | - if($realtime){ |
|
| 252 | + if ($realtime) { |
|
| 253 | 253 | return $analytics->data_realtime->get( |
| 254 | 254 | 'ga:'.$filtered_id, |
| 255 | 255 | $metric, |
| 256 | 256 | $params |
| 257 | 257 | ); |
| 258 | - }else{ |
|
| 258 | + } else { |
|
| 259 | 259 | return $analytics->data_ga->get( |
| 260 | 260 | 'ga:'.$filtered_id, |
| 261 | 261 | $startDate, |
@@ -279,7 +279,7 @@ discard block |
||
| 279 | 279 | **/ |
| 280 | 280 | function verifyStartDate($date) |
| 281 | 281 | { |
| 282 | - if ( strtotime($date) > strtotime('2005-01-01') ) |
|
| 282 | + if (strtotime($date) > strtotime('2005-01-01')) |
|
| 283 | 283 | return $date; |
| 284 | 284 | else |
| 285 | 285 | return '2005-01-01'; |
@@ -55,7 +55,7 @@ |
||
| 55 | 55 | * @param string $page Page url to use in analytics filters. |
| 56 | 56 | * @param bool $ga_start The start date of the data to include in YYYY-MM-DD format. |
| 57 | 57 | * @param bool $ga_end The end date of the data to include in YYYY-MM-DD format. |
| 58 | - * @return string Html text content. |
|
| 58 | + * @return false|null Html text content. |
|
| 59 | 59 | */ |
| 60 | 60 | function geodir_getGoogleAnalytics($page, $ga_start, $ga_end) |
| 61 | 61 | {
|
@@ -17,34 +17,34 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | function geodir_sec2hms($sec, $padHours = false) |
| 19 | 19 | {
|
| 20 | - // holds formatted string |
|
| 21 | - $hms = ""; |
|
| 22 | - // there are 3600 seconds in an hour, so if we |
|
| 23 | - // divide total seconds by 3600 and throw away |
|
| 24 | - // the remainder, we've got the number of hours |
|
| 25 | - $hours = intval(intval($sec) / 3600); |
|
| 26 | - |
|
| 27 | - // add to $hms, with a leading 0 if asked for |
|
| 28 | - $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':'; |
|
| 29 | - |
|
| 30 | - // dividing the total seconds by 60 will give us |
|
| 31 | - // the number of minutes, but we're interested in |
|
| 32 | - // minutes past the hour: to get that, we need to |
|
| 33 | - // divide by 60 again and keep the remainder |
|
| 34 | - $minutes = intval(($sec / 60) % 60); |
|
| 35 | - |
|
| 36 | - // then add to $hms (with a leading 0 if needed) |
|
| 37 | - $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':'; |
|
| 38 | - |
|
| 39 | - // seconds are simple - just divide the total |
|
| 40 | - // seconds by 60 and keep the remainder |
|
| 41 | - $seconds = intval($sec % 60); |
|
| 42 | - |
|
| 43 | - // add to $hms, again with a leading 0 if needed |
|
| 44 | - $hms .= str_pad($seconds, 2, "0", STR_PAD_LEFT); |
|
| 45 | - |
|
| 46 | - // done! |
|
| 47 | - return $hms; |
|
| 20 | + // holds formatted string |
|
| 21 | + $hms = ""; |
|
| 22 | + // there are 3600 seconds in an hour, so if we |
|
| 23 | + // divide total seconds by 3600 and throw away |
|
| 24 | + // the remainder, we've got the number of hours |
|
| 25 | + $hours = intval(intval($sec) / 3600); |
|
| 26 | + |
|
| 27 | + // add to $hms, with a leading 0 if asked for |
|
| 28 | + $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':'; |
|
| 29 | + |
|
| 30 | + // dividing the total seconds by 60 will give us |
|
| 31 | + // the number of minutes, but we're interested in |
|
| 32 | + // minutes past the hour: to get that, we need to |
|
| 33 | + // divide by 60 again and keep the remainder |
|
| 34 | + $minutes = intval(($sec / 60) % 60); |
|
| 35 | + |
|
| 36 | + // then add to $hms (with a leading 0 if needed) |
|
| 37 | + $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':'; |
|
| 38 | + |
|
| 39 | + // seconds are simple - just divide the total |
|
| 40 | + // seconds by 60 and keep the remainder |
|
| 41 | + $seconds = intval($sec % 60); |
|
| 42 | + |
|
| 43 | + // add to $hms, again with a leading 0 if needed |
|
| 44 | + $hms .= str_pad($seconds, 2, "0", STR_PAD_LEFT); |
|
| 45 | + |
|
| 46 | + // done! |
|
| 47 | + return $hms; |
|
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** |
@@ -60,122 +60,122 @@ discard block |
||
| 60 | 60 | function geodir_getGoogleAnalytics($page, $ga_start, $ga_end) |
| 61 | 61 | {
|
| 62 | 62 | |
| 63 | - // NEW ANALYTICS |
|
| 64 | - |
|
| 65 | - $start_date = ''; |
|
| 66 | - $end_date = ''; |
|
| 67 | - $dimensions = ''; |
|
| 68 | - $sort = ''; |
|
| 69 | - $filters = "ga:pagePath==".$page; |
|
| 70 | - $metrics = "ga:pageviews"; |
|
| 71 | - $realtime = false; |
|
| 72 | - $limit = false; |
|
| 73 | - if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){
|
|
| 74 | - $start_date = date('Y-m-d', strtotime("-6 day"));
|
|
| 75 | - $end_date = date('Y-m-d');
|
|
| 76 | - $dimensions = "ga:date,ga:nthDay"; |
|
| 77 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
|
|
| 78 | - $start_date = date('Y-m-d', strtotime("-13 day"));
|
|
| 79 | - $end_date = date('Y-m-d', strtotime("-7 day"));
|
|
| 80 | - $dimensions = "ga:date,ga:nthDay"; |
|
| 81 | - } |
|
| 82 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
|
|
| 83 | - $start_date = date('Y')."-01-01";
|
|
| 84 | - $end_date = date('Y-m-d');
|
|
| 85 | - $dimensions = "ga:month,ga:nthMonth"; |
|
| 86 | - } |
|
| 87 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
|
|
| 88 | - $start_date = date('Y', strtotime("-1 year"))."-01-01";
|
|
| 89 | - $end_date = date('Y', strtotime("-1 year"))."-12-31";
|
|
| 90 | - $dimensions = "ga:month,ga:nthMonth"; |
|
| 91 | - } |
|
| 92 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
|
|
| 93 | - $start_date = "14daysAgo"; |
|
| 94 | - $end_date = "yesterday"; |
|
| 95 | - $dimensions = "ga:country"; |
|
| 96 | - $sort = "ga:pageviews"; |
|
| 97 | - $limit = 5; |
|
| 98 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
|
|
| 99 | - $metrics = "rt:activeUsers"; |
|
| 100 | - $realtime = true; |
|
| 101 | - } |
|
| 102 | - |
|
| 103 | - # Create a new Gdata call |
|
| 104 | - $gaApi = new GDGoogleAnalyticsStats(); |
|
| 105 | - |
|
| 106 | - # Check if Google sucessfully logged in |
|
| 107 | - if (!$gaApi->checkLogin()){
|
|
| 108 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
|
|
| 109 | - return false; |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - $account = $gaApi->getSingleProfile(); |
|
| 113 | - |
|
| 114 | - if(!isset($account[0]['id'])){
|
|
| 115 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
|
|
| 116 | - return false; |
|
| 117 | - } |
|
| 118 | - |
|
| 119 | - $account = $account[0]['id']; |
|
| 120 | - |
|
| 121 | - # Set the account to the one requested |
|
| 122 | - $gaApi->setAccount($account); |
|
| 123 | - |
|
| 124 | - |
|
| 125 | - |
|
| 126 | - # Get the metrics needed to build the visits graph; |
|
| 127 | - try {
|
|
| 128 | - $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
|
| 129 | - } |
|
| 130 | - catch (Exception $e) {
|
|
| 131 | - print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 132 | - } |
|
| 133 | - |
|
| 134 | - |
|
| 135 | - //print_r($stats); |
|
| 136 | - echo json_encode($stats); |
|
| 137 | - exit; |
|
| 63 | + // NEW ANALYTICS |
|
| 64 | + |
|
| 65 | + $start_date = ''; |
|
| 66 | + $end_date = ''; |
|
| 67 | + $dimensions = ''; |
|
| 68 | + $sort = ''; |
|
| 69 | + $filters = "ga:pagePath==".$page; |
|
| 70 | + $metrics = "ga:pageviews"; |
|
| 71 | + $realtime = false; |
|
| 72 | + $limit = false; |
|
| 73 | + if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){
|
|
| 74 | + $start_date = date('Y-m-d', strtotime("-6 day"));
|
|
| 75 | + $end_date = date('Y-m-d');
|
|
| 76 | + $dimensions = "ga:date,ga:nthDay"; |
|
| 77 | + }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
|
|
| 78 | + $start_date = date('Y-m-d', strtotime("-13 day"));
|
|
| 79 | + $end_date = date('Y-m-d', strtotime("-7 day"));
|
|
| 80 | + $dimensions = "ga:date,ga:nthDay"; |
|
| 81 | + } |
|
| 82 | + elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
|
|
| 83 | + $start_date = date('Y')."-01-01";
|
|
| 84 | + $end_date = date('Y-m-d');
|
|
| 85 | + $dimensions = "ga:month,ga:nthMonth"; |
|
| 86 | + } |
|
| 87 | + elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
|
|
| 88 | + $start_date = date('Y', strtotime("-1 year"))."-01-01";
|
|
| 89 | + $end_date = date('Y', strtotime("-1 year"))."-12-31";
|
|
| 90 | + $dimensions = "ga:month,ga:nthMonth"; |
|
| 91 | + } |
|
| 92 | + elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
|
|
| 93 | + $start_date = "14daysAgo"; |
|
| 94 | + $end_date = "yesterday"; |
|
| 95 | + $dimensions = "ga:country"; |
|
| 96 | + $sort = "ga:pageviews"; |
|
| 97 | + $limit = 5; |
|
| 98 | + }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
|
|
| 99 | + $metrics = "rt:activeUsers"; |
|
| 100 | + $realtime = true; |
|
| 101 | + } |
|
| 102 | + |
|
| 103 | + # Create a new Gdata call |
|
| 104 | + $gaApi = new GDGoogleAnalyticsStats(); |
|
| 105 | + |
|
| 106 | + # Check if Google sucessfully logged in |
|
| 107 | + if (!$gaApi->checkLogin()){
|
|
| 108 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
|
|
| 109 | + return false; |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + $account = $gaApi->getSingleProfile(); |
|
| 113 | + |
|
| 114 | + if(!isset($account[0]['id'])){
|
|
| 115 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
|
|
| 116 | + return false; |
|
| 117 | + } |
|
| 118 | + |
|
| 119 | + $account = $account[0]['id']; |
|
| 120 | + |
|
| 121 | + # Set the account to the one requested |
|
| 122 | + $gaApi->setAccount($account); |
|
| 123 | + |
|
| 124 | + |
|
| 125 | + |
|
| 126 | + # Get the metrics needed to build the visits graph; |
|
| 127 | + try {
|
|
| 128 | + $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
|
| 129 | + } |
|
| 130 | + catch (Exception $e) {
|
|
| 131 | + print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + |
|
| 135 | + //print_r($stats); |
|
| 136 | + echo json_encode($stats); |
|
| 137 | + exit; |
|
| 138 | 138 | |
| 139 | 139 | |
| 140 | 140 | }// end GA function |
| 141 | 141 | |
| 142 | 142 | |
| 143 | 143 | function geodir_ga_get_token(){
|
| 144 | - $at = get_option('gd_ga_access_token');
|
|
| 145 | - $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at; |
|
| 146 | - $response = wp_remote_get($use_url,array('timeout' => 15));
|
|
| 144 | + $at = get_option('gd_ga_access_token');
|
|
| 145 | + $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at; |
|
| 146 | + $response = wp_remote_get($use_url,array('timeout' => 15));
|
|
| 147 | 147 | |
| 148 | - if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
|
|
| 148 | + if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
|
|
| 149 | 149 | |
| 150 | - return $at; |
|
| 151 | - }else{//else get new access token
|
|
| 150 | + return $at; |
|
| 151 | + }else{//else get new access token
|
|
| 152 | 152 | |
| 153 | - $refresh_at = get_option('gd_ga_refresh_token');
|
|
| 154 | - if(!$refresh_at){
|
|
| 155 | - echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit;
|
|
| 156 | - } |
|
| 153 | + $refresh_at = get_option('gd_ga_refresh_token');
|
|
| 154 | + if(!$refresh_at){
|
|
| 155 | + echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit;
|
|
| 156 | + } |
|
| 157 | 157 | |
| 158 | - $rat_url = "https://www.googleapis.com/oauth2/v3/token?"; |
|
| 159 | - $client_id = "client_id=".get_option('geodir_ga_client_id');
|
|
| 160 | - $client_secret = "&client_secret=".get_option('geodir_ga_client_secret');
|
|
| 161 | - $refresh_token = "&refresh_token=".$refresh_at; |
|
| 162 | - $grant_type = "&grant_type=refresh_token"; |
|
| 158 | + $rat_url = "https://www.googleapis.com/oauth2/v3/token?"; |
|
| 159 | + $client_id = "client_id=".get_option('geodir_ga_client_id');
|
|
| 160 | + $client_secret = "&client_secret=".get_option('geodir_ga_client_secret');
|
|
| 161 | + $refresh_token = "&refresh_token=".$refresh_at; |
|
| 162 | + $grant_type = "&grant_type=refresh_token"; |
|
| 163 | 163 | |
| 164 | - $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type; |
|
| 164 | + $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type; |
|
| 165 | 165 | |
| 166 | - $rat_response = wp_remote_post($rat_url_use,array('timeout' => 15));
|
|
| 167 | - if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) {
|
|
| 168 | - $parts = json_decode($rat_response['body']); |
|
| 166 | + $rat_response = wp_remote_post($rat_url_use,array('timeout' => 15));
|
|
| 167 | + if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) {
|
|
| 168 | + $parts = json_decode($rat_response['body']); |
|
| 169 | 169 | |
| 170 | 170 | |
| 171 | - update_option('gd_ga_access_token', $parts->access_token);
|
|
| 172 | - return $parts->access_token; |
|
| 171 | + update_option('gd_ga_access_token', $parts->access_token);
|
|
| 172 | + return $parts->access_token; |
|
| 173 | 173 | |
| 174 | - }else{
|
|
| 175 | - echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
|
|
| 176 | - } |
|
| 174 | + }else{
|
|
| 175 | + echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
|
|
| 176 | + } |
|
| 177 | 177 | |
| 178 | 178 | |
| 179 | - } |
|
| 179 | + } |
|
| 180 | 180 | |
| 181 | 181 | } |
| 182 | 182 | \ No newline at end of file |
@@ -25,7 +25,7 @@ discard block |
||
| 25 | 25 | $hours = intval(intval($sec) / 3600); |
| 26 | 26 | |
| 27 | 27 | // add to $hms, with a leading 0 if asked for |
| 28 | - $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT) . ':' : $hours . ':'; |
|
| 28 | + $hms .= ($padHours) ? str_pad($hours, 2, "0", STR_PAD_LEFT).':' : $hours.':'; |
|
| 29 | 29 | |
| 30 | 30 | // dividing the total seconds by 60 will give us |
| 31 | 31 | // the number of minutes, but we're interested in |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | $minutes = intval(($sec / 60) % 60); |
| 35 | 35 | |
| 36 | 36 | // then add to $hms (with a leading 0 if needed) |
| 37 | - $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT) . ':'; |
|
| 37 | + $hms .= str_pad($minutes, 2, "0", STR_PAD_LEFT).':'; |
|
| 38 | 38 | |
| 39 | 39 | // seconds are simple - just divide the total |
| 40 | 40 | // seconds by 60 and keep the remainder |
@@ -70,32 +70,32 @@ discard block |
||
| 70 | 70 | $metrics = "ga:pageviews"; |
| 71 | 71 | $realtime = false; |
| 72 | 72 | $limit = false; |
| 73 | - if(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisweek'){
|
|
| 73 | + if (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'thisweek') {
|
|
| 74 | 74 | $start_date = date('Y-m-d', strtotime("-6 day"));
|
| 75 | 75 | $end_date = date('Y-m-d');
|
| 76 | 76 | $dimensions = "ga:date,ga:nthDay"; |
| 77 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
|
|
| 77 | + }elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'lastweek') {
|
|
| 78 | 78 | $start_date = date('Y-m-d', strtotime("-13 day"));
|
| 79 | 79 | $end_date = date('Y-m-d', strtotime("-7 day"));
|
| 80 | 80 | $dimensions = "ga:date,ga:nthDay"; |
| 81 | 81 | } |
| 82 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
|
|
| 82 | + elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'thisyear') {
|
|
| 83 | 83 | $start_date = date('Y')."-01-01";
|
| 84 | 84 | $end_date = date('Y-m-d');
|
| 85 | 85 | $dimensions = "ga:month,ga:nthMonth"; |
| 86 | 86 | } |
| 87 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
|
|
| 87 | + elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'lastyear') {
|
|
| 88 | 88 | $start_date = date('Y', strtotime("-1 year"))."-01-01";
|
| 89 | 89 | $end_date = date('Y', strtotime("-1 year"))."-12-31";
|
| 90 | 90 | $dimensions = "ga:month,ga:nthMonth"; |
| 91 | 91 | } |
| 92 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
|
|
| 92 | + elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'country') {
|
|
| 93 | 93 | $start_date = "14daysAgo"; |
| 94 | 94 | $end_date = "yesterday"; |
| 95 | 95 | $dimensions = "ga:country"; |
| 96 | 96 | $sort = "ga:pageviews"; |
| 97 | - $limit = 5; |
|
| 98 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
|
|
| 97 | + $limit = 5; |
|
| 98 | + }elseif (isset($_REQUEST['ga_type']) && $_REQUEST['ga_type'] == 'realtime') {
|
|
| 99 | 99 | $metrics = "rt:activeUsers"; |
| 100 | 100 | $realtime = true; |
| 101 | 101 | } |
@@ -104,15 +104,15 @@ discard block |
||
| 104 | 104 | $gaApi = new GDGoogleAnalyticsStats(); |
| 105 | 105 | |
| 106 | 106 | # Check if Google sucessfully logged in |
| 107 | - if (!$gaApi->checkLogin()){
|
|
| 108 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
|
|
| 107 | + if (!$gaApi->checkLogin()) {
|
|
| 108 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings', 'geodirectory')));
|
|
| 109 | 109 | return false; |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | 112 | $account = $gaApi->getSingleProfile(); |
| 113 | 113 | |
| 114 | - if(!isset($account[0]['id'])){
|
|
| 115 | - echo json_encode(array('error'=>__('Please check Google Analytics Settings','geodirectory')));
|
|
| 114 | + if (!isset($account[0]['id'])) {
|
|
| 115 | + echo json_encode(array('error'=>__('Please check Google Analytics Settings', 'geodirectory')));
|
|
| 116 | 116 | return false; |
| 117 | 117 | } |
| 118 | 118 | |
@@ -125,10 +125,10 @@ discard block |
||
| 125 | 125 | |
| 126 | 126 | # Get the metrics needed to build the visits graph; |
| 127 | 127 | try {
|
| 128 | - $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
|
| 128 | + $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit, $realtime); |
|
| 129 | 129 | } |
| 130 | 130 | catch (Exception $e) {
|
| 131 | - print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
|
| 131 | + print 'GA Summary Widget - there was a service error '.$e->getCode().':'.$e->getMessage(); |
|
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | |
@@ -140,19 +140,19 @@ discard block |
||
| 140 | 140 | }// end GA function |
| 141 | 141 | |
| 142 | 142 | |
| 143 | -function geodir_ga_get_token(){
|
|
| 143 | +function geodir_ga_get_token() {
|
|
| 144 | 144 | $at = get_option('gd_ga_access_token');
|
| 145 | 145 | $use_url = "https://www.googleapis.com/oauth2/v1/tokeninfo?access_token=".$at; |
| 146 | - $response = wp_remote_get($use_url,array('timeout' => 15));
|
|
| 146 | + $response = wp_remote_get($use_url, array('timeout' => 15));
|
|
| 147 | 147 | |
| 148 | - if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
|
|
| 148 | + if (!empty($response['response']['code']) && $response['response']['code'] == 200) {//access token is valid
|
|
| 149 | 149 | |
| 150 | 150 | return $at; |
| 151 | - }else{//else get new access token
|
|
| 151 | + } else {//else get new access token
|
|
| 152 | 152 | |
| 153 | 153 | $refresh_at = get_option('gd_ga_refresh_token');
|
| 154 | - if(!$refresh_at){
|
|
| 155 | - echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory')));exit;
|
|
| 154 | + if (!$refresh_at) {
|
|
| 155 | + echo json_encode(array('error'=>__('Not authorized, please click authorized in GD > Google analytic settings.', 'geodirectory'))); exit;
|
|
| 156 | 156 | } |
| 157 | 157 | |
| 158 | 158 | $rat_url = "https://www.googleapis.com/oauth2/v3/token?"; |
@@ -163,16 +163,16 @@ discard block |
||
| 163 | 163 | |
| 164 | 164 | $rat_url_use = $rat_url.$client_id.$client_secret.$refresh_token.$grant_type; |
| 165 | 165 | |
| 166 | - $rat_response = wp_remote_post($rat_url_use,array('timeout' => 15));
|
|
| 167 | - if(!empty($rat_response['response']['code']) && $rat_response['response']['code']==200) {
|
|
| 166 | + $rat_response = wp_remote_post($rat_url_use, array('timeout' => 15));
|
|
| 167 | + if (!empty($rat_response['response']['code']) && $rat_response['response']['code'] == 200) {
|
|
| 168 | 168 | $parts = json_decode($rat_response['body']); |
| 169 | 169 | |
| 170 | 170 | |
| 171 | 171 | update_option('gd_ga_access_token', $parts->access_token);
|
| 172 | 172 | return $parts->access_token; |
| 173 | 173 | |
| 174 | - }else{
|
|
| 175 | - echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
|
|
| 174 | + } else {
|
|
| 175 | + echo json_encode(array('error'=>__('Login failed', 'geodirectory'))); exit;
|
|
| 176 | 176 | } |
| 177 | 177 | |
| 178 | 178 | |
@@ -74,28 +74,25 @@ discard block |
||
| 74 | 74 | $start_date = date('Y-m-d', strtotime("-6 day"));
|
| 75 | 75 | $end_date = date('Y-m-d');
|
| 76 | 76 | $dimensions = "ga:date,ga:nthDay"; |
| 77 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
|
|
| 77 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastweek'){
|
|
| 78 | 78 | $start_date = date('Y-m-d', strtotime("-13 day"));
|
| 79 | 79 | $end_date = date('Y-m-d', strtotime("-7 day"));
|
| 80 | 80 | $dimensions = "ga:date,ga:nthDay"; |
| 81 | - } |
|
| 82 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
|
|
| 81 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='thisyear'){
|
|
| 83 | 82 | $start_date = date('Y')."-01-01";
|
| 84 | 83 | $end_date = date('Y-m-d');
|
| 85 | 84 | $dimensions = "ga:month,ga:nthMonth"; |
| 86 | - } |
|
| 87 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
|
|
| 85 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='lastyear'){
|
|
| 88 | 86 | $start_date = date('Y', strtotime("-1 year"))."-01-01";
|
| 89 | 87 | $end_date = date('Y', strtotime("-1 year"))."-12-31";
|
| 90 | 88 | $dimensions = "ga:month,ga:nthMonth"; |
| 91 | - } |
|
| 92 | - elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
|
|
| 89 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='country'){
|
|
| 93 | 90 | $start_date = "14daysAgo"; |
| 94 | 91 | $end_date = "yesterday"; |
| 95 | 92 | $dimensions = "ga:country"; |
| 96 | 93 | $sort = "ga:pageviews"; |
| 97 | 94 | $limit = 5; |
| 98 | - }elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
|
|
| 95 | + } elseif(isset($_REQUEST['ga_type']) && $_REQUEST['ga_type']=='realtime'){
|
|
| 99 | 96 | $metrics = "rt:activeUsers"; |
| 100 | 97 | $realtime = true; |
| 101 | 98 | } |
@@ -126,8 +123,7 @@ discard block |
||
| 126 | 123 | # Get the metrics needed to build the visits graph; |
| 127 | 124 | try {
|
| 128 | 125 | $stats = $gaApi->getMetrics($metrics, $start_date, $end_date, $dimensions, $sort, $filters, $limit , $realtime); |
| 129 | - } |
|
| 130 | - catch (Exception $e) {
|
|
| 126 | + } catch (Exception $e) {
|
|
| 131 | 127 | print 'GA Summary Widget - there was a service error ' . $e->getCode() . ':' . $e->getMessage(); |
| 132 | 128 | } |
| 133 | 129 | |
@@ -148,7 +144,7 @@ discard block |
||
| 148 | 144 | if(!empty($response['response']['code']) && $response['response']['code']==200) {//access token is valid
|
| 149 | 145 | |
| 150 | 146 | return $at; |
| 151 | - }else{//else get new access token
|
|
| 147 | + } else{//else get new access token
|
|
| 152 | 148 | |
| 153 | 149 | $refresh_at = get_option('gd_ga_refresh_token');
|
| 154 | 150 | if(!$refresh_at){
|
@@ -171,7 +167,7 @@ discard block |
||
| 171 | 167 | update_option('gd_ga_access_token', $parts->access_token);
|
| 172 | 168 | return $parts->access_token; |
| 173 | 169 | |
| 174 | - }else{
|
|
| 170 | + } else{
|
|
| 175 | 171 | echo json_encode(array('error'=>__('Login failed', 'geodirectory')));exit;
|
| 176 | 172 | } |
| 177 | 173 | |
@@ -31,30 +31,30 @@ discard block |
||
| 31 | 31 | * CHECK FOR OLD COMPATIBILITY PACKS AND DISABLE IF THEY ARE ACTIVE |
| 32 | 32 | */ |
| 33 | 33 | if (is_admin()) {
|
| 34 | - /** |
|
| 35 | - * Include WordPress core file so we can use core functions to check for active plugins. |
|
| 36 | - */ |
|
| 37 | - include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 34 | + /** |
|
| 35 | + * Include WordPress core file so we can use core functions to check for active plugins. |
|
| 36 | + */ |
|
| 37 | + include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 38 | 38 | |
| 39 | - if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) {
|
|
| 40 | - deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php');
|
|
| 41 | - } |
|
| 39 | + if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) {
|
|
| 40 | + deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php');
|
|
| 41 | + } |
|
| 42 | 42 | |
| 43 | - if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) {
|
|
| 44 | - deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php');
|
|
| 45 | - } |
|
| 43 | + if (is_plugin_active('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php')) {
|
|
| 44 | + deactivate_plugins('geodirectory-x-theme-compatibility-pack/geodir_x_compatibility.php');
|
|
| 45 | + } |
|
| 46 | 46 | |
| 47 | - if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) {
|
|
| 48 | - deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php');
|
|
| 49 | - } |
|
| 47 | + if (is_plugin_active('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php')) {
|
|
| 48 | + deactivate_plugins('geodirectory-enfold-theme-compatibility-pack/geodir_enfold_compatibility.php');
|
|
| 49 | + } |
|
| 50 | 50 | |
| 51 | - if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) {
|
|
| 52 | - deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php');
|
|
| 53 | - } |
|
| 51 | + if (is_plugin_active('geodir_avada_compatibility/geodir_avada_compatibility.php')) {
|
|
| 52 | + deactivate_plugins('geodir_avada_compatibility/geodir_avada_compatibility.php');
|
|
| 53 | + } |
|
| 54 | 54 | |
| 55 | - if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) {
|
|
| 56 | - deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php');
|
|
| 57 | - } |
|
| 55 | + if (is_plugin_active('geodir_compat_pack_divi/geodir_divi_compatibility.php')) {
|
|
| 56 | + deactivate_plugins('geodir_compat_pack_divi/geodir_divi_compatibility.php');
|
|
| 57 | + } |
|
| 58 | 58 | |
| 59 | 59 | } |
| 60 | 60 | |
@@ -130,19 +130,19 @@ discard block |
||
| 130 | 130 | * @package GeoDirectory |
| 131 | 131 | */ |
| 132 | 132 | function geodir_error_log($log){
|
| 133 | - /* |
|
| 133 | + /* |
|
| 134 | 134 | * A filter to override the WP_DEBUG setting for function geodir_error_log(). |
| 135 | 135 | * |
| 136 | 136 | * @since 1.5.7 |
| 137 | 137 | */ |
| 138 | - $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
| 139 | - if ( true === $should_log ) {
|
|
| 140 | - if ( is_array( $log ) || is_object( $log ) ) {
|
|
| 141 | - error_log( print_r( $log, true ) ); |
|
| 142 | - } else {
|
|
| 143 | - error_log( $log ); |
|
| 144 | - } |
|
| 145 | - } |
|
| 138 | + $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
| 139 | + if ( true === $should_log ) {
|
|
| 140 | + if ( is_array( $log ) || is_object( $log ) ) {
|
|
| 141 | + error_log( print_r( $log, true ) ); |
|
| 142 | + } else {
|
|
| 143 | + error_log( $log ); |
|
| 144 | + } |
|
| 145 | + } |
|
| 146 | 146 | } |
| 147 | 147 | /** |
| 148 | 148 | * Include all plugin functions. |
@@ -181,72 +181,72 @@ discard block |
||
| 181 | 181 | */ |
| 182 | 182 | if (is_admin() || defined( 'GD_TESTING_MODE' )) {
|
| 183 | 183 | |
| 184 | - /** |
|
| 185 | - * Include functions used in admin area only. |
|
| 186 | - * |
|
| 187 | - * @since 1.0.0 |
|
| 188 | - */ |
|
| 189 | - require_once('geodirectory-admin/admin_functions.php');
|
|
| 190 | - /** |
|
| 191 | - * Most actions/hooks used in admin area only are called from here. |
|
| 192 | - * |
|
| 193 | - * @since 1.6.11 |
|
| 194 | - */ |
|
| 195 | - require_once('geodirectory-admin/admin_dummy_data_functions.php');
|
|
| 196 | - /** |
|
| 197 | - * Most actions/hooks used in admin area only are called from here. |
|
| 198 | - * |
|
| 199 | - * @since 1.0.0 |
|
| 200 | - */ |
|
| 201 | - require_once('geodirectory-admin/admin_hooks_actions.php');
|
|
| 202 | - /** |
|
| 203 | - * Most admin JS and CSS is called from here. |
|
| 204 | - * |
|
| 205 | - * @since 1.0.0 |
|
| 206 | - */ |
|
| 207 | - require_once('geodirectory-admin/admin_template_tags.php');
|
|
| 208 | - /** |
|
| 209 | - * Include Google Analytics Class. |
|
| 210 | - * |
|
| 211 | - * @since 1.6.11 |
|
| 212 | - */ |
|
| 213 | - require_once('geodirectory-admin/class.analytics.stats.php');
|
|
| 214 | - /** |
|
| 215 | - * Include any functions needed for upgrades. |
|
| 216 | - * |
|
| 217 | - * @since 1.0.0 |
|
| 218 | - */ |
|
| 219 | - require_once(geodir_plugin_path() . '/upgrade.php'); |
|
| 220 | - if (get_option('geodir_installed') != 1) {
|
|
| 221 | - /** |
|
| 222 | - * Define language constants, here as they are not loaded yet. |
|
| 223 | - * |
|
| 224 | - * @since 1.0.0 |
|
| 225 | - */ |
|
| 226 | - require_once(geodir_plugin_path() . '/language.php'); |
|
| 227 | - /** |
|
| 228 | - * Include the plugin install file that sets up the databases and any options on first run. |
|
| 229 | - * |
|
| 230 | - * @since 1.0.0 |
|
| 231 | - */ |
|
| 232 | - require_once('geodirectory-admin/admin_install.php');
|
|
| 233 | - register_activation_hook(__FILE__, 'geodir_activation'); |
|
| 234 | - } |
|
| 235 | - register_deactivation_hook(__FILE__, 'geodir_deactivation'); |
|
| 236 | - |
|
| 237 | - /* |
|
| 184 | + /** |
|
| 185 | + * Include functions used in admin area only. |
|
| 186 | + * |
|
| 187 | + * @since 1.0.0 |
|
| 188 | + */ |
|
| 189 | + require_once('geodirectory-admin/admin_functions.php');
|
|
| 190 | + /** |
|
| 191 | + * Most actions/hooks used in admin area only are called from here. |
|
| 192 | + * |
|
| 193 | + * @since 1.6.11 |
|
| 194 | + */ |
|
| 195 | + require_once('geodirectory-admin/admin_dummy_data_functions.php');
|
|
| 196 | + /** |
|
| 197 | + * Most actions/hooks used in admin area only are called from here. |
|
| 198 | + * |
|
| 199 | + * @since 1.0.0 |
|
| 200 | + */ |
|
| 201 | + require_once('geodirectory-admin/admin_hooks_actions.php');
|
|
| 202 | + /** |
|
| 203 | + * Most admin JS and CSS is called from here. |
|
| 204 | + * |
|
| 205 | + * @since 1.0.0 |
|
| 206 | + */ |
|
| 207 | + require_once('geodirectory-admin/admin_template_tags.php');
|
|
| 208 | + /** |
|
| 209 | + * Include Google Analytics Class. |
|
| 210 | + * |
|
| 211 | + * @since 1.6.11 |
|
| 212 | + */ |
|
| 213 | + require_once('geodirectory-admin/class.analytics.stats.php');
|
|
| 214 | + /** |
|
| 215 | + * Include any functions needed for upgrades. |
|
| 216 | + * |
|
| 217 | + * @since 1.0.0 |
|
| 218 | + */ |
|
| 219 | + require_once(geodir_plugin_path() . '/upgrade.php'); |
|
| 220 | + if (get_option('geodir_installed') != 1) {
|
|
| 221 | + /** |
|
| 222 | + * Define language constants, here as they are not loaded yet. |
|
| 223 | + * |
|
| 224 | + * @since 1.0.0 |
|
| 225 | + */ |
|
| 226 | + require_once(geodir_plugin_path() . '/language.php'); |
|
| 227 | + /** |
|
| 228 | + * Include the plugin install file that sets up the databases and any options on first run. |
|
| 229 | + * |
|
| 230 | + * @since 1.0.0 |
|
| 231 | + */ |
|
| 232 | + require_once('geodirectory-admin/admin_install.php');
|
|
| 233 | + register_activation_hook(__FILE__, 'geodir_activation'); |
|
| 234 | + } |
|
| 235 | + register_deactivation_hook(__FILE__, 'geodir_deactivation'); |
|
| 236 | + |
|
| 237 | + /* |
|
| 238 | 238 | * Show a upgrade warning message if applicable. |
| 239 | 239 | * |
| 240 | 240 | * @since 1.5.6 |
| 241 | 241 | */ |
| 242 | - global $pagenow; |
|
| 242 | + global $pagenow; |
|
| 243 | 243 | if ( 'plugins.php' === $pagenow ) |
| 244 | - {
|
|
| 245 | - // Better update message |
|
| 246 | - $file = basename( __FILE__ ); |
|
| 247 | - $folder = basename( dirname( __FILE__ ) ); |
|
| 248 | - $hook = "in_plugin_update_message-{$folder}/{$file}";
|
|
| 249 | - add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
| 250 | - } |
|
| 244 | + {
|
|
| 245 | + // Better update message |
|
| 246 | + $file = basename( __FILE__ ); |
|
| 247 | + $folder = basename( dirname( __FILE__ ) ); |
|
| 248 | + $hook = "in_plugin_update_message-{$folder}/{$file}";
|
|
| 249 | + add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
| 250 | + } |
|
| 251 | 251 | |
| 252 | 252 | } |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | /** |
| 35 | 35 | * Include WordPress core file so we can use core functions to check for active plugins. |
| 36 | 36 | */ |
| 37 | - include_once(ABSPATH . 'wp-admin/includes/plugin.php'); |
|
| 37 | + include_once(ABSPATH.'wp-admin/includes/plugin.php'); |
|
| 38 | 38 | |
| 39 | 39 | if (is_plugin_active('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php')) {
|
| 40 | 40 | deactivate_plugins('geodirectory-genesis-compatibility-pack/geodir_genesis_compatibility.php');
|
@@ -68,8 +68,8 @@ discard block |
||
| 68 | 68 | * @global string $plugin_file_name Base file name. 'geodirectory/geodirectory.php'. |
| 69 | 69 | */ |
| 70 | 70 | global $wpdb, $plugin_prefix, $geodir_addon_list, $plugin_file_name; |
| 71 | -$plugin_prefix = $wpdb->prefix . 'geodir_'; |
|
| 72 | -$plugin_file_name = basename(plugin_dir_path(__FILE__)) . '/' . basename(__FILE__); |
|
| 71 | +$plugin_prefix = $wpdb->prefix.'geodir_'; |
|
| 72 | +$plugin_file_name = basename(plugin_dir_path(__FILE__)).'/'.basename(__FILE__); |
|
| 73 | 73 | |
| 74 | 74 | /* |
| 75 | 75 | * This will store the cached post custom fields per package for each page load so not to run for each listing. |
@@ -84,24 +84,24 @@ discard block |
||
| 84 | 84 | /** |
| 85 | 85 | * Define constants |
| 86 | 86 | */ |
| 87 | -if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ ));
|
|
| 87 | +if (!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path(__FILE__));
|
|
| 88 | 88 | |
| 89 | 89 | /* |
| 90 | 90 | * Declare database table names. All since version 1.0.0 |
| 91 | 91 | */ |
| 92 | 92 | |
| 93 | 93 | /** Define the database name for the countries table. */ |
| 94 | -if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries');
|
|
| 94 | +if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix.'countries');
|
|
| 95 | 95 | /** Define the database name for the custom fields table. */ |
| 96 | -if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields');
|
|
| 96 | +if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix.'custom_fields');
|
|
| 97 | 97 | /** Define the database name for the icons table. */ |
| 98 | -if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon');
|
|
| 98 | +if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix.'post_icon');
|
|
| 99 | 99 | /** Define the database name for the attachments table. */ |
| 100 | -if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments');
|
|
| 100 | +if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix.'attachments');
|
|
| 101 | 101 | /** Define the database name for the review table. */ |
| 102 | -if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review');
|
|
| 102 | +if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix.'post_review');
|
|
| 103 | 103 | /** Define the database name for the custom sort fields table. */ |
| 104 | -if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields');
|
|
| 104 | +if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix.'custom_sort_fields');
|
|
| 105 | 105 | |
| 106 | 106 | /* |
| 107 | 107 | * Define our Google Analytic app settings |
@@ -109,7 +109,7 @@ discard block |
||
| 109 | 109 | if (!defined('GEODIR_GA_CLIENTID')) define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com');
|
| 110 | 110 | if (!defined('GEODIR_GA_CLIENTSECRET')) define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); //don't worry - this don't need to be secret in our case
|
| 111 | 111 | if (!defined('GEODIR_GA_REDIRECT')) define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
|
| 112 | -if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
|
|
| 112 | +if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics'); //.readonly
|
|
| 113 | 113 | |
| 114 | 114 | |
| 115 | 115 | /* |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory');
|
| 119 | 119 | |
| 120 | 120 | // Load geodirectory plugin textdomain. |
| 121 | -add_action( 'init', 'geodir_load_textdomain' ); |
|
| 121 | +add_action('init', 'geodir_load_textdomain');
|
|
| 122 | 122 | |
| 123 | 123 | /* |
| 124 | 124 | * A function to log GD errors no matter the type given. |
@@ -129,18 +129,18 @@ discard block |
||
| 129 | 129 | * @param mixed $log The thing that should be logged. |
| 130 | 130 | * @package GeoDirectory |
| 131 | 131 | */ |
| 132 | -function geodir_error_log($log){
|
|
| 132 | +function geodir_error_log($log) {
|
|
| 133 | 133 | /* |
| 134 | 134 | * A filter to override the WP_DEBUG setting for function geodir_error_log(). |
| 135 | 135 | * |
| 136 | 136 | * @since 1.5.7 |
| 137 | 137 | */ |
| 138 | - $should_log = apply_filters( 'geodir_log_errors', WP_DEBUG); |
|
| 139 | - if ( true === $should_log ) {
|
|
| 140 | - if ( is_array( $log ) || is_object( $log ) ) {
|
|
| 141 | - error_log( print_r( $log, true ) ); |
|
| 138 | + $should_log = apply_filters('geodir_log_errors', WP_DEBUG);
|
|
| 139 | + if (true === $should_log) {
|
|
| 140 | + if (is_array($log) || is_object($log)) {
|
|
| 141 | + error_log(print_r($log, true)); |
|
| 142 | 142 | } else {
|
| 143 | - error_log( $log ); |
|
| 143 | + error_log($log); |
|
| 144 | 144 | } |
| 145 | 145 | } |
| 146 | 146 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | /* |
| 180 | 180 | * Admin init + activation hooks |
| 181 | 181 | */ |
| 182 | -if (is_admin() || defined( 'GD_TESTING_MODE' )) {
|
|
| 182 | +if (is_admin() || defined('GD_TESTING_MODE')) {
|
|
| 183 | 183 | |
| 184 | 184 | /** |
| 185 | 185 | * Include functions used in admin area only. |
@@ -216,14 +216,14 @@ discard block |
||
| 216 | 216 | * |
| 217 | 217 | * @since 1.0.0 |
| 218 | 218 | */ |
| 219 | - require_once(geodir_plugin_path() . '/upgrade.php'); |
|
| 219 | + require_once(geodir_plugin_path().'/upgrade.php'); |
|
| 220 | 220 | if (get_option('geodir_installed') != 1) {
|
| 221 | 221 | /** |
| 222 | 222 | * Define language constants, here as they are not loaded yet. |
| 223 | 223 | * |
| 224 | 224 | * @since 1.0.0 |
| 225 | 225 | */ |
| 226 | - require_once(geodir_plugin_path() . '/language.php'); |
|
| 226 | + require_once(geodir_plugin_path().'/language.php'); |
|
| 227 | 227 | /** |
| 228 | 228 | * Include the plugin install file that sets up the databases and any options on first run. |
| 229 | 229 | * |
@@ -240,13 +240,13 @@ discard block |
||
| 240 | 240 | * @since 1.5.6 |
| 241 | 241 | */ |
| 242 | 242 | global $pagenow; |
| 243 | - if ( 'plugins.php' === $pagenow ) |
|
| 243 | + if ('plugins.php' === $pagenow)
|
|
| 244 | 244 | {
|
| 245 | 245 | // Better update message |
| 246 | - $file = basename( __FILE__ ); |
|
| 247 | - $folder = basename( dirname( __FILE__ ) ); |
|
| 246 | + $file = basename(__FILE__); |
|
| 247 | + $folder = basename(dirname(__FILE__)); |
|
| 248 | 248 | $hook = "in_plugin_update_message-{$folder}/{$file}";
|
| 249 | - add_action( $hook, 'geodire_admin_upgrade_notice', 20, 2 ); |
|
| 249 | + add_action($hook, 'geodire_admin_upgrade_notice', 20, 2); |
|
| 250 | 250 | } |
| 251 | 251 | |
| 252 | 252 | } |
@@ -79,43 +79,71 @@ |
||
| 79 | 79 | /** |
| 80 | 80 | * Do not store any revisions (except the one autosave per post). |
| 81 | 81 | */ |
| 82 | -if (!defined('WP_POST_REVISIONS')) define('WP_POST_REVISIONS', 0);
|
|
| 82 | +if (!defined('WP_POST_REVISIONS')) { |
|
| 83 | + define('WP_POST_REVISIONS', 0); |
|
| 84 | +} |
|
| 83 | 85 | |
| 84 | 86 | /** |
| 85 | 87 | * Define constants |
| 86 | 88 | */ |
| 87 | -if(!defined('GEODIRECTORY_PLUGIN_DIR')) define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ ));
|
|
| 89 | +if(!defined('GEODIRECTORY_PLUGIN_DIR')) { |
|
| 90 | + define('GEODIRECTORY_PLUGIN_DIR', plugin_dir_path( __FILE__ )); |
|
| 91 | +} |
|
| 88 | 92 | |
| 89 | 93 | /* |
| 90 | 94 | * Declare database table names. All since version 1.0.0 |
| 91 | 95 | */ |
| 92 | 96 | |
| 93 | 97 | /** Define the database name for the countries table. */ |
| 94 | -if (!defined('GEODIR_COUNTRIES_TABLE')) define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries');
|
|
| 98 | +if (!defined('GEODIR_COUNTRIES_TABLE')) { |
|
| 99 | + define('GEODIR_COUNTRIES_TABLE', $plugin_prefix . 'countries'); |
|
| 100 | +} |
|
| 95 | 101 | /** Define the database name for the custom fields table. */ |
| 96 | -if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields');
|
|
| 102 | +if (!defined('GEODIR_CUSTOM_FIELDS_TABLE')) { |
|
| 103 | + define('GEODIR_CUSTOM_FIELDS_TABLE', $plugin_prefix . 'custom_fields'); |
|
| 104 | +} |
|
| 97 | 105 | /** Define the database name for the icons table. */ |
| 98 | -if (!defined('GEODIR_ICON_TABLE')) define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon');
|
|
| 106 | +if (!defined('GEODIR_ICON_TABLE')) { |
|
| 107 | + define('GEODIR_ICON_TABLE', $plugin_prefix . 'post_icon'); |
|
| 108 | +} |
|
| 99 | 109 | /** Define the database name for the attachments table. */ |
| 100 | -if (!defined('GEODIR_ATTACHMENT_TABLE')) define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments');
|
|
| 110 | +if (!defined('GEODIR_ATTACHMENT_TABLE')) { |
|
| 111 | + define('GEODIR_ATTACHMENT_TABLE', $plugin_prefix . 'attachments'); |
|
| 112 | +} |
|
| 101 | 113 | /** Define the database name for the review table. */ |
| 102 | -if (!defined('GEODIR_REVIEW_TABLE')) define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review');
|
|
| 114 | +if (!defined('GEODIR_REVIEW_TABLE')) { |
|
| 115 | + define('GEODIR_REVIEW_TABLE', $plugin_prefix . 'post_review'); |
|
| 116 | +} |
|
| 103 | 117 | /** Define the database name for the custom sort fields table. */ |
| 104 | -if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields');
|
|
| 118 | +if (!defined('GEODIR_CUSTOM_SORT_FIELDS_TABLE')) { |
|
| 119 | + define('GEODIR_CUSTOM_SORT_FIELDS_TABLE', $plugin_prefix . 'custom_sort_fields'); |
|
| 120 | +} |
|
| 105 | 121 | |
| 106 | 122 | /* |
| 107 | 123 | * Define our Google Analytic app settings |
| 108 | 124 | */ |
| 109 | -if (!defined('GEODIR_GA_CLIENTID')) define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com');
|
|
| 110 | -if (!defined('GEODIR_GA_CLIENTSECRET')) define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); //don't worry - this don't need to be secret in our case
|
|
| 111 | -if (!defined('GEODIR_GA_REDIRECT')) define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob');
|
|
| 112 | -if (!defined('GEODIR_GA_SCOPE')) define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics');//.readonly
|
|
| 125 | +if (!defined('GEODIR_GA_CLIENTID')) { |
|
| 126 | + define('GEODIR_GA_CLIENTID', '687912069872-sdpsjssrdt7t3ao1dnv1ib71hkckbt5s.apps.googleusercontent.com'); |
|
| 127 | +} |
|
| 128 | +if (!defined('GEODIR_GA_CLIENTSECRET')) { |
|
| 129 | + define('GEODIR_GA_CLIENTSECRET', 'yBVkDpqJ1B9nAETHy738Zn8C'); |
|
| 130 | +} |
|
| 131 | +//don't worry - this don't need to be secret in our case |
|
| 132 | +if (!defined('GEODIR_GA_REDIRECT')) { |
|
| 133 | + define('GEODIR_GA_REDIRECT', 'urn:ietf:wg:oauth:2.0:oob'); |
|
| 134 | +} |
|
| 135 | +if (!defined('GEODIR_GA_SCOPE')) { |
|
| 136 | + define('GEODIR_GA_SCOPE', 'https://www.googleapis.com/auth/analytics'); |
|
| 137 | +} |
|
| 138 | +//.readonly |
|
| 113 | 139 | |
| 114 | 140 | |
| 115 | 141 | /* |
| 116 | 142 | * Localisation items. |
| 117 | 143 | */ |
| 118 | -if (!defined('GEODIRECTORY_TEXTDOMAIN')) define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory');
|
|
| 144 | +if (!defined('GEODIRECTORY_TEXTDOMAIN')) { |
|
| 145 | + define('GEODIRECTORY_TEXTDOMAIN', 'geodirectory'); |
|
| 146 | +} |
|
| 119 | 147 | |
| 120 | 148 | // Load geodirectory plugin textdomain. |
| 121 | 149 | add_action( 'init', 'geodir_load_textdomain' ); |
@@ -184,8 +184,9 @@ discard block |
||
| 184 | 184 | |
| 185 | 185 | $thumb_img_arr = array(); |
| 186 | 186 | |
| 187 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | - $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 187 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') { |
|
| 188 | + $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | + } |
|
| 189 | 190 | |
| 190 | 191 | $totImg = ''; |
| 191 | 192 | $image_limit = ''; |
@@ -236,7 +237,9 @@ discard block |
||
| 236 | 237 | {
|
| 237 | 238 | global $menu, $geodirectory; |
| 238 | 239 | |
| 239 | - if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 240 | + if (current_user_can('manage_options')) { |
|
| 241 | + $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory'); |
|
| 242 | + } |
|
| 240 | 243 | |
| 241 | 244 | add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
| 242 | 245 | |
@@ -300,7 +303,9 @@ discard block |
||
| 300 | 303 | */ |
| 301 | 304 | function geodir_admin_custom_menu_order() |
| 302 | 305 | {
|
| 303 | - if (!current_user_can('manage_options')) return false;
|
|
| 306 | + if (!current_user_can('manage_options')) { |
|
| 307 | + return false; |
|
| 308 | + } |
|
| 304 | 309 | return true; |
| 305 | 310 | } |
| 306 | 311 | } |
@@ -331,10 +336,11 @@ discard block |
||
| 331 | 336 | case 'fail': |
| 332 | 337 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 333 | 338 | |
| 334 | - if ($gderr == 21) |
|
| 335 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 336 | - else |
|
| 337 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 339 | + if ($gderr == 21) { |
|
| 340 | + echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>'; |
|
| 341 | + } else { |
|
| 342 | + echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>'; |
|
| 343 | + } |
|
| 338 | 344 | break; |
| 339 | 345 | } |
| 340 | 346 | } |
@@ -385,8 +391,12 @@ discard block |
||
| 385 | 391 | include_once('option-pages/' . $current_tab . '_array.php');
|
| 386 | 392 | } |
| 387 | 393 | if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
| 388 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 394 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) { |
|
| 395 | + die(__('Action failed. Please refresh the page and retry.', 'geodirectory')); |
|
| 396 | + } |
|
| 397 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) { |
|
| 398 | + die(__('Action failed. Please refresh the page and retry.', 'geodirectory')); |
|
| 399 | + } |
|
| 390 | 400 | |
| 391 | 401 | /** |
| 392 | 402 | * Fires before updating geodirectory admin settings. |
@@ -398,8 +408,9 @@ discard block |
||
| 398 | 408 | */ |
| 399 | 409 | do_action('geodir_before_update_options', $current_tab, $geodir_settings);
|
| 400 | 410 | |
| 401 | - if (!empty($geodir_settings[$current_tab])) |
|
| 402 | - geodir_update_options($geodir_settings[$current_tab]); |
|
| 411 | + if (!empty($geodir_settings[$current_tab])) { |
|
| 412 | + geodir_update_options($geodir_settings[$current_tab]); |
|
| 413 | + } |
|
| 403 | 414 | |
| 404 | 415 | /** |
| 405 | 416 | * Called after GeoDirectory options settings are updated. |
@@ -447,11 +458,14 @@ discard block |
||
| 447 | 458 | * @return bool Returns true if saved. |
| 448 | 459 | */ |
| 449 | 460 | function geodir_update_options($options, $dummy = false) {
|
| 450 | - if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 461 | + if ((!isset($_POST) || !$_POST) && !$dummy) { |
|
| 462 | + return false; |
|
| 463 | + } |
|
| 451 | 464 | |
| 452 | 465 | foreach ($options as $value) {
|
| 453 | - if ($dummy && isset($value['std'])) |
|
| 454 | - $_POST[$value['id']] = $value['std']; |
|
| 466 | + if ($dummy && isset($value['std'])) { |
|
| 467 | + $_POST[$value['id']] = $value['std']; |
|
| 468 | + } |
|
| 455 | 469 | |
| 456 | 470 | |
| 457 | 471 | if (isset($value['type']) && $value['type'] == 'checkbox') : |
@@ -460,25 +474,23 @@ discard block |
||
| 460 | 474 | update_option($value['id'], $_POST[$value['id']]); |
| 461 | 475 | } else {
|
| 462 | 476 | update_option($value['id'], 0); |
| 463 | - } |
|
| 464 | - |
|
| 465 | - elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 477 | + } elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 466 | 478 | |
| 467 | 479 | if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
| 468 | 480 | update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
| 469 | 481 | update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
| 470 | 482 | if (isset($_POST[$value['id'] . '_crop'])) : |
| 471 | 483 | update_option($value['id'] . '_crop', 1); |
| 472 | - else : |
|
| 473 | - update_option($value['id'] . '_crop', 0); |
|
| 484 | + else { |
|
| 485 | + : |
|
| 486 | + update_option($value['id'] . '_crop', 0); |
|
| 487 | + } |
|
| 474 | 488 | endif; |
| 475 | 489 | } else {
|
| 476 | 490 | update_option($value['id'] . '_width', $value['std']); |
| 477 | 491 | update_option($value['id'] . '_height', $value['std']); |
| 478 | 492 | update_option($value['id'] . '_crop', 1); |
| 479 | - } |
|
| 480 | - |
|
| 481 | - elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 493 | + } elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | 494 | $post_types = array(); |
| 483 | 495 | $categories = array(); |
| 484 | 496 | |
@@ -523,8 +535,9 @@ discard block |
||
| 523 | 535 | $image_name_arr = explode('/', get_option($value['id']));
|
| 524 | 536 | $noimg_name = end($image_name_arr); |
| 525 | 537 | $img_path = $uploads['path'] . '/' . $noimg_name; |
| 526 | - if (file_exists($img_path)) |
|
| 527 | - unlink($img_path); |
|
| 538 | + if (file_exists($img_path)) { |
|
| 539 | + unlink($img_path); |
|
| 540 | + } |
|
| 528 | 541 | } |
| 529 | 542 | |
| 530 | 543 | update_option($value['id'], ''); |
@@ -540,8 +553,10 @@ discard block |
||
| 540 | 553 | foreach ($uploadedfile as $key => $uplaod): |
| 541 | 554 | if ($key == 'name'): |
| 542 | 555 | $uplaods[$key] = $filename; |
| 543 | - else : |
|
| 544 | - $uplaods[$key] = $uplaod; |
|
| 556 | + else { |
|
| 557 | + : |
|
| 558 | + $uplaods[$key] = $uplaod; |
|
| 559 | + } |
|
| 545 | 560 | endif; |
| 546 | 561 | endforeach; |
| 547 | 562 | |
@@ -551,8 +566,9 @@ discard block |
||
| 551 | 566 | $image_name_arr = explode('/', get_option($value['id']));
|
| 552 | 567 | $noimg_name = end($image_name_arr); |
| 553 | 568 | $img_path = $uploads['path'] . '/' . $noimg_name; |
| 554 | - if (file_exists($img_path)) |
|
| 555 | - unlink($img_path); |
|
| 569 | + if (file_exists($img_path)) { |
|
| 570 | + unlink($img_path); |
|
| 571 | + } |
|
| 556 | 572 | } |
| 557 | 573 | |
| 558 | 574 | $upload_overrides = array('test_form' => false);
|
@@ -567,10 +583,12 @@ discard block |
||
| 567 | 583 | endif; |
| 568 | 584 | |
| 569 | 585 | |
| 570 | - else : |
|
| 586 | + else { |
|
| 587 | + : |
|
| 571 | 588 | // same menu setting per theme. |
| 572 | 589 | if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
| 573 | - $theme = wp_get_theme(); |
|
| 590 | + $theme = wp_get_theme(); |
|
| 591 | + } |
|
| 574 | 592 | update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
| 575 | 593 | } |
| 576 | 594 | |
@@ -582,8 +600,9 @@ discard block |
||
| 582 | 600 | |
| 583 | 601 | endif; |
| 584 | 602 | } |
| 585 | - if ($dummy) |
|
| 586 | - $_POST = array(); |
|
| 603 | + if ($dummy) { |
|
| 604 | + $_POST = array(); |
|
| 605 | + } |
|
| 587 | 606 | return true; |
| 588 | 607 | |
| 589 | 608 | } |
@@ -729,9 +748,12 @@ discard block |
||
| 729 | 748 | $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
| 730 | 749 | 'categorys' => __('Categories', 'geodirectory'));
|
| 731 | 750 | |
| 732 | - if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 751 | + if (($offset = array_search('author', array_keys($columns))) === false) { |
|
| 752 | + // if the key doesn't exist |
|
| 733 | 753 | {
|
| 734 | - $offset = 0; // should we prepend $array with $data? |
|
| 754 | + $offset = 0; |
|
| 755 | + } |
|
| 756 | + // should we prepend $array with $data? |
|
| 735 | 757 | $offset = count($columns); // or should we append $array with $data? lets pick this one... |
| 736 | 758 | } |
| 737 | 759 | |
@@ -791,11 +813,13 @@ discard block |
||
| 791 | 813 | $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
| 792 | 814 | } |
| 793 | 815 | /* If no expire_date is found, output a default message. */ |
| 794 | - if (empty($expire_date)) |
|
| 795 | - echo __('Unknown', 'geodirectory');
|
|
| 816 | + if (empty($expire_date)) { |
|
| 817 | + echo __('Unknown', 'geodirectory'); |
|
| 818 | + } |
|
| 796 | 819 | /* If there is a expire_date, append 'days left' to the text string. */ |
| 797 | - else |
|
| 798 | - echo $expire_date . $date_diff_text; |
|
| 820 | + else { |
|
| 821 | + echo $expire_date . $date_diff_text; |
|
| 822 | + } |
|
| 799 | 823 | break; |
| 800 | 824 | |
| 801 | 825 | /* If displaying the 'categorys' column. */ |
@@ -868,21 +892,26 @@ discard block |
||
| 868 | 892 | |
| 869 | 893 | $geodir_posttypes = geodir_get_posttypes(); |
| 870 | 894 | |
| 871 | - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | - return; |
|
| 895 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE) { |
|
| 896 | + return; |
|
| 897 | + } |
|
| 873 | 898 | |
| 874 | 899 | if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
| 875 | - if (isset($_REQUEST['_status'])) |
|
| 876 | - geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 900 | + if (isset($_REQUEST['_status'])) { |
|
| 901 | + geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 902 | + } |
|
| 877 | 903 | |
| 878 | - if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | - return; |
|
| 904 | + if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) { |
|
| 905 | + return; |
|
| 906 | + } |
|
| 880 | 907 | |
| 881 | - if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | - return; |
|
| 908 | + if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) { |
|
| 909 | + return; |
|
| 910 | + } |
|
| 883 | 911 | |
| 884 | - if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | - return; |
|
| 912 | + if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) { |
|
| 913 | + return; |
|
| 914 | + } |
|
| 886 | 915 | |
| 887 | 916 | geodir_save_listing($_REQUEST); |
| 888 | 917 | } |
@@ -907,10 +936,18 @@ discard block |
||
| 907 | 936 | $tab_id = ''; |
| 908 | 937 | $i = 0; |
| 909 | 938 | foreach ($options as $value) : |
| 910 | - if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | - if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | - if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | - if (!isset($value['std'])) $value['std'] = ''; |
|
| 939 | + if (!isset($value['name'])) { |
|
| 940 | + $value['name'] = ''; |
|
| 941 | + } |
|
| 942 | + if (!isset($value['class'])) { |
|
| 943 | + $value['class'] = ''; |
|
| 944 | + } |
|
| 945 | + if (!isset($value['css'])) { |
|
| 946 | + $value['css'] = ''; |
|
| 947 | + } |
|
| 948 | + if (!isset($value['std'])) { |
|
| 949 | + $value['std'] = ''; |
|
| 950 | + } |
|
| 914 | 951 | $desc = ''; |
| 915 | 952 | switch ($value['type']) : |
| 916 | 953 | case 'dummy_installer': |
@@ -926,11 +963,13 @@ discard block |
||
| 926 | 963 | |
| 927 | 964 | $i++; |
| 928 | 965 | |
| 929 | - if (isset($value['id']) && $value['id']) |
|
| 930 | - $tab_id = $value['id']; |
|
| 966 | + if (isset($value['id']) && $value['id']) { |
|
| 967 | + $tab_id = $value['id']; |
|
| 968 | + } |
|
| 931 | 969 | |
| 932 | - if (isset($value['desc']) && $value['desc']) |
|
| 933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 970 | + if (isset($value['desc']) && $value['desc']) { |
|
| 971 | + $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 972 | + } |
|
| 934 | 973 | |
| 935 | 974 | if (isset($value['name']) && $value['name']) {
|
| 936 | 975 | if ($first_title === true) {
|
@@ -961,10 +1000,12 @@ discard block |
||
| 961 | 1000 | break; |
| 962 | 1001 | |
| 963 | 1002 | case 'sectionstart': |
| 964 | - if (isset($value['desc']) && $value['desc']) |
|
| 965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | - if (isset($value['name']) && $value['name']) |
|
| 967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 1003 | + if (isset($value['desc']) && $value['desc']) { |
|
| 1004 | + $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 1005 | + } |
|
| 1006 | + if (isset($value['name']) && $value['name']) { |
|
| 1007 | + echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 1008 | + } |
|
| 968 | 1009 | /** |
| 969 | 1010 | * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
| 970 | 1011 | * |
@@ -972,7 +1013,9 @@ discard block |
||
| 972 | 1013 | * |
| 973 | 1014 | * @since 1.0.0 |
| 974 | 1015 | */ |
| 975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 1016 | + if (isset($value['id']) && $value['id']) { |
|
| 1017 | + do_action('geodir_settings_' . sanitize_title($value['id']) . '_start'); |
|
| 1018 | + } |
|
| 976 | 1019 | echo '<table class="form-table">' . "\n\n"; |
| 977 | 1020 | |
| 978 | 1021 | break; |
@@ -984,7 +1027,9 @@ discard block |
||
| 984 | 1027 | * |
| 985 | 1028 | * @since 1.0.0 |
| 986 | 1029 | */ |
| 987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 1030 | + if (isset($value['id']) && $value['id']) { |
|
| 1031 | + do_action('geodir_settings_' . sanitize_title($value['id']) . '_end'); |
|
| 1032 | + } |
|
| 988 | 1033 | echo '</table>'; |
| 989 | 1034 | /** |
| 990 | 1035 | * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
@@ -993,7 +1038,9 @@ discard block |
||
| 993 | 1038 | * |
| 994 | 1039 | * @since 1.0.0 |
| 995 | 1040 | */ |
| 996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 1041 | + if (isset($value['id']) && $value['id']) { |
|
| 1042 | + do_action('geodir_settings_' . sanitize_title($value['id']) . '_after'); |
|
| 1043 | + } |
|
| 997 | 1044 | break; |
| 998 | 1045 | case 'text': |
| 999 | 1046 | ?> |
@@ -1065,17 +1112,32 @@ discard block |
||
| 1065 | 1112 | <?php _e('Width', 'geodirectory'); ?> <input
|
| 1066 | 1113 | name="<?php echo esc_attr($value['id']); ?>_width" |
| 1067 | 1114 | id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3" |
| 1068 | - value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1115 | + value="<?php if ($size = get_option($value['id'] . '_width')) { |
|
| 1116 | + echo stripslashes($size); |
|
| 1117 | +} else { |
|
| 1118 | + echo $value['std']; |
|
| 1119 | +} |
|
| 1120 | +?>"/> |
|
| 1069 | 1121 | |
| 1070 | 1122 | <?php _e('Height', 'geodirectory'); ?> <input
|
| 1071 | 1123 | name="<?php echo esc_attr($value['id']); ?>_height" |
| 1072 | 1124 | id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3" |
| 1073 | - value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1125 | + value="<?php if ($size = get_option($value['id'] . '_height')) { |
|
| 1126 | + echo stripslashes($size); |
|
| 1127 | +} else { |
|
| 1128 | + echo $value['std']; |
|
| 1129 | +} |
|
| 1130 | +?>"/> |
|
| 1074 | 1131 | |
| 1075 | 1132 | <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
|
| 1076 | 1133 | name="<?php echo esc_attr($value['id']); ?>_crop" |
| 1077 | 1134 | id="<?php echo esc_attr($value['id']); ?>_crop" |
| 1078 | - type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label> |
|
| 1135 | + type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') { |
|
| 1136 | + checked(get_option($value['id'] . '_crop'), 1); |
|
| 1137 | +} else { |
|
| 1138 | + checked(1); |
|
| 1139 | +} |
|
| 1140 | +?> /></label> |
|
| 1079 | 1141 | |
| 1080 | 1142 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1081 | 1143 | </tr><?php |
@@ -1089,17 +1151,22 @@ discard block |
||
| 1089 | 1151 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
| 1090 | 1152 | id="<?php echo esc_attr($value['id']); ?>" |
| 1091 | 1153 | style="<?php echo esc_attr($value['css']); ?>" |
| 1092 | - class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
|
| 1154 | + class="<?php if (isset($value['class'])) { |
|
| 1155 | + echo $value['class']; |
|
| 1156 | +} |
|
| 1157 | +?>" |
|
| 1093 | 1158 | option-ajaxchosen="false"> |
| 1094 | 1159 | <?php |
| 1095 | 1160 | foreach ($value['options'] as $key => $val) {
|
| 1096 | 1161 | $geodir_select_value = ''; |
| 1097 | 1162 | if ($option_value != '') {
|
| 1098 | - if ($option_value != '' && $option_value == $key) |
|
| 1099 | - $geodir_select_value = ' selected="selected" '; |
|
| 1163 | + if ($option_value != '' && $option_value == $key) { |
|
| 1164 | + $geodir_select_value = ' selected="selected" '; |
|
| 1165 | + } |
|
| 1100 | 1166 | } else {
|
| 1101 | - if ($value['std'] == $key) |
|
| 1102 | - $geodir_select_value = ' selected="selected" '; |
|
| 1167 | + if ($value['std'] == $key) { |
|
| 1168 | + $geodir_select_value = ' selected="selected" '; |
|
| 1169 | + } |
|
| 1103 | 1170 | } |
| 1104 | 1171 | ?> |
| 1105 | 1172 | <option |
@@ -1124,8 +1191,14 @@ discard block |
||
| 1124 | 1191 | <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]" |
| 1125 | 1192 | id="<?php echo esc_attr($value['id']); ?>" |
| 1126 | 1193 | style="<?php echo esc_attr($value['css']); ?>" |
| 1127 | - class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
|
| 1128 | - data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
|
| 1194 | + class="<?php if (isset($value['class'])) { |
|
| 1195 | + echo $value['class']; |
|
| 1196 | +} |
|
| 1197 | +?>" |
|
| 1198 | + data-placeholder="<?php if (isset($value['placeholder_text'])) { |
|
| 1199 | + echo $value['placeholder_text']; |
|
| 1200 | +} |
|
| 1201 | +?>" |
|
| 1129 | 1202 | option-ajaxchosen="false"> |
| 1130 | 1203 | <?php |
| 1131 | 1204 | foreach ($value['options'] as $key => $val) {
|
@@ -1152,7 +1225,10 @@ discard block |
||
| 1152 | 1225 | <td class="forminp"> |
| 1153 | 1226 | <input type="file" name="<?php echo esc_attr($value['id']); ?>" |
| 1154 | 1227 | id="<?php echo esc_attr($value['id']); ?>" style="<?php echo esc_attr($value['css']); ?>" |
| 1155 | - class="<?php if (isset($value['class'])) echo $value['class']; ?>"/> |
|
| 1228 | + class="<?php if (isset($value['class'])) { |
|
| 1229 | + echo $value['class']; |
|
| 1230 | +} |
|
| 1231 | +?>"/> |
|
| 1156 | 1232 | <?php if (get_option($value['id'])) { ?>
|
| 1157 | 1233 | <input type="hidden" name="<?php echo esc_attr($value['id']); ?>_remove" |
| 1158 | 1234 | id="<?php echo esc_attr($value['id']); ?>_remove" value="0"> |
@@ -1233,13 +1309,15 @@ discard block |
||
| 1233 | 1309 | 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
| 1234 | 1310 | ); |
| 1235 | 1311 | $geodir_default_map_language = get_option('geodir_default_map_language');
|
| 1236 | - if (empty($geodir_default_map_language)) |
|
| 1237 | - $geodir_default_map_language = 'en'; |
|
| 1312 | + if (empty($geodir_default_map_language)) { |
|
| 1313 | + $geodir_default_map_language = 'en'; |
|
| 1314 | + } |
|
| 1238 | 1315 | foreach ($arr_map_langages as $language_key => $language_txt) {
|
| 1239 | - if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1240 | - $geodir_default_language_selected = "selected='selected'"; |
|
| 1241 | - else |
|
| 1242 | - $geodir_default_language_selected = ''; |
|
| 1316 | + if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) { |
|
| 1317 | + $geodir_default_language_selected = "selected='selected'"; |
|
| 1318 | + } else { |
|
| 1319 | + $geodir_default_language_selected = ''; |
|
| 1320 | + } |
|
| 1243 | 1321 | |
| 1244 | 1322 | ?> |
| 1245 | 1323 | <option |
@@ -1259,14 +1337,16 @@ discard block |
||
| 1259 | 1337 | <?php |
| 1260 | 1338 | $post_types = geodir_get_posttypes('array');
|
| 1261 | 1339 | $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
| 1262 | - if (empty($geodir_default_map_search_pt)) |
|
| 1263 | - $geodir_default_map_search_pt = 'gd_place'; |
|
| 1340 | + if (empty($geodir_default_map_search_pt)) { |
|
| 1341 | + $geodir_default_map_search_pt = 'gd_place'; |
|
| 1342 | + } |
|
| 1264 | 1343 | if (is_array($post_types)) {
|
| 1265 | 1344 | foreach ($post_types as $key => $post_types_obj) {
|
| 1266 | - if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1267 | - $geodir_search_pt_selected = "selected='selected'"; |
|
| 1268 | - else |
|
| 1269 | - $geodir_search_pt_selected = ''; |
|
| 1345 | + if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) { |
|
| 1346 | + $geodir_search_pt_selected = "selected='selected'"; |
|
| 1347 | + } else { |
|
| 1348 | + $geodir_search_pt_selected = ''; |
|
| 1349 | + } |
|
| 1270 | 1350 | |
| 1271 | 1351 | ?> |
| 1272 | 1352 | <option |
@@ -1386,7 +1466,7 @@ discard block |
||
| 1386 | 1466 | id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
| 1387 | 1467 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1388 | 1468 | echo 'checked="checked"'; |
| 1389 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1469 | + } elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1390 | 1470 | <?php echo $value['desc']; ?></label><br> |
| 1391 | 1471 | </fieldset> |
| 1392 | 1472 | <?php |
@@ -1406,10 +1486,18 @@ discard block |
||
| 1406 | 1486 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1407 | 1487 | <td class="forminp"> |
| 1408 | 1488 | <textarea |
| 1409 | - <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1489 | + <?php if (isset($value['args'])) { |
|
| 1490 | + echo $value['args'] . ' '; |
|
| 1491 | +} |
|
| 1492 | +?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1410 | 1493 | id="<?php echo esc_attr($value['id']); ?>" |
| 1411 | 1494 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1412 | - style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span |
|
| 1495 | + style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) { |
|
| 1496 | + echo esc_textarea(stripslashes(get_option($value['id']))); |
|
| 1497 | +} else { |
|
| 1498 | + echo esc_textarea($value['std']); |
|
| 1499 | +} |
|
| 1500 | +?></textarea><span |
|
| 1413 | 1501 | class="description"><?php echo $value['desc'] ?></span> |
| 1414 | 1502 | |
| 1415 | 1503 | </td> |
@@ -1421,10 +1509,11 @@ discard block |
||
| 1421 | 1509 | <tr valign="top"> |
| 1422 | 1510 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1423 | 1511 | <td class="forminp"><?php |
| 1424 | - if (get_option($value['id'])) |
|
| 1425 | - $content = stripslashes(get_option($value['id'])); |
|
| 1426 | - else |
|
| 1427 | - $content = $value['std']; |
|
| 1512 | + if (get_option($value['id'])) { |
|
| 1513 | + $content = stripslashes(get_option($value['id'])); |
|
| 1514 | + } else { |
|
| 1515 | + $content = $value['std']; |
|
| 1516 | + } |
|
| 1428 | 1517 | |
| 1429 | 1518 | $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
| 1430 | 1519 | |
@@ -1464,7 +1553,9 @@ discard block |
||
| 1464 | 1553 | 'echo' => false, |
| 1465 | 1554 | 'selected' => $page_setting); |
| 1466 | 1555 | |
| 1467 | - if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1556 | + if (isset($value['args'])) { |
|
| 1557 | + $args = wp_parse_args($value['args'], $args); |
|
| 1558 | + } |
|
| 1468 | 1559 | |
| 1469 | 1560 | ?> |
| 1470 | 1561 | <tr valign="top" class="single_select_page"> |
@@ -1483,8 +1574,10 @@ discard block |
||
| 1483 | 1574 | if (strstr($country_setting, ':')) : |
| 1484 | 1575 | $country = current(explode(':', $country_setting));
|
| 1485 | 1576 | $state = end(explode(':', $country_setting));
|
| 1486 | - else : |
|
| 1487 | - $country = $country_setting; |
|
| 1577 | + else { |
|
| 1578 | + : |
|
| 1579 | + $country = $country_setting; |
|
| 1580 | + } |
|
| 1488 | 1581 | $state = '*'; |
| 1489 | 1582 | endif; |
| 1490 | 1583 | ?> |
@@ -1511,8 +1604,10 @@ discard block |
||
| 1511 | 1604 | data-placeholder="<?php _e('Choose countries…', 'geodirectory'); ?>"
|
| 1512 | 1605 | title="Country" class="chosen_select"> |
| 1513 | 1606 | <?php |
| 1514 | - if ($countries) foreach ($countries as $key => $val) : |
|
| 1515 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1607 | + if ($countries) { |
|
| 1608 | + foreach ($countries as $key => $val) : |
|
| 1609 | + echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1610 | + } |
|
| 1516 | 1611 | endforeach; |
| 1517 | 1612 | ?> |
| 1518 | 1613 | </select> |
@@ -1747,8 +1842,9 @@ discard block |
||
| 1747 | 1842 | endforeach; |
| 1748 | 1843 | endif; |
| 1749 | 1844 | |
| 1750 | - if (!empty($place_img_array)) |
|
| 1751 | - $curImages = implode(',', $place_img_array);
|
|
| 1845 | + if (!empty($place_img_array)) { |
|
| 1846 | + $curImages = implode(',', $place_img_array); |
|
| 1847 | + } |
|
| 1752 | 1848 | |
| 1753 | 1849 | |
| 1754 | 1850 | // adjust values here |
@@ -2094,16 +2190,17 @@ discard block |
||
| 2094 | 2190 | global $post, $typenow, $current_screen; |
| 2095 | 2191 | |
| 2096 | 2192 | $post_type = NULL; |
| 2097 | - if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2098 | - $post_type = get_post_type($_REQUEST['post']); |
|
| 2099 | - elseif ($post && isset($post->post_type)) |
|
| 2100 | - $post_type = $post->post_type; |
|
| 2101 | - elseif ($typenow) |
|
| 2102 | - $post_type = $typenow; |
|
| 2103 | - elseif ($current_screen && isset($current_screen->post_type)) |
|
| 2104 | - $post_type = $current_screen->post_type; |
|
| 2105 | - elseif (isset($_REQUEST['post_type'])) |
|
| 2106 | - $post_type = sanitize_key($_REQUEST['post_type']); |
|
| 2193 | + if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) { |
|
| 2194 | + $post_type = get_post_type($_REQUEST['post']); |
|
| 2195 | + } elseif ($post && isset($post->post_type)) { |
|
| 2196 | + $post_type = $post->post_type; |
|
| 2197 | + } elseif ($typenow) { |
|
| 2198 | + $post_type = $typenow; |
|
| 2199 | + } elseif ($current_screen && isset($current_screen->post_type)) { |
|
| 2200 | + $post_type = $current_screen->post_type; |
|
| 2201 | + } elseif (isset($_REQUEST['post_type'])) { |
|
| 2202 | + $post_type = sanitize_key($_REQUEST['post_type']); |
|
| 2203 | + } |
|
| 2107 | 2204 | |
| 2108 | 2205 | |
| 2109 | 2206 | return $post_type; |
@@ -2163,9 +2260,10 @@ discard block |
||
| 2163 | 2260 | function geodir_hide_admin_preview_button() {
|
| 2164 | 2261 | global $post_type; |
| 2165 | 2262 | $post_types = geodir_get_posttypes(); |
| 2166 | - if(in_array($post_type, $post_types)) |
|
| 2167 | - echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2168 | -} |
|
| 2263 | + if(in_array($post_type, $post_types)) { |
|
| 2264 | + echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>'; |
|
| 2265 | + } |
|
| 2266 | + } |
|
| 2169 | 2267 | add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
| 2170 | 2268 | add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
| 2171 | 2269 | |
@@ -5367,8 +5465,9 @@ discard block |
||
| 5367 | 5465 | function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
| 5368 | 5466 | global $wpdb, $plugin_prefix; |
| 5369 | 5467 | |
| 5370 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5371 | - return new stdClass; |
|
| 5468 | + if ( ! post_type_exists( $post_type ) ) { |
|
| 5469 | + return new stdClass; |
|
| 5470 | + } |
|
| 5372 | 5471 | |
| 5373 | 5472 | $table = $plugin_prefix . $post_type . '_detail'; |
| 5374 | 5473 | |
@@ -6203,7 +6302,9 @@ discard block |
||
| 6203 | 6302 | |
| 6204 | 6303 | if ($page_found) : |
| 6205 | 6304 | // Page exists |
| 6206 | - if (!$option_value) update_option($option, $page_found); |
|
| 6305 | + if (!$option_value) { |
|
| 6306 | + update_option($option, $page_found); |
|
| 6307 | + } |
|
| 6207 | 6308 | return; |
| 6208 | 6309 | endif; |
| 6209 | 6310 | |
@@ -6578,7 +6679,7 @@ discard block |
||
| 6578 | 6679 | $accounts = geodir_ga_get_analytics_accounts(); |
| 6579 | 6680 | if(is_array($accounts)){
|
| 6580 | 6681 | $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
| 6581 | - }elseif(get_option('geodir_ga_account_id')){
|
|
| 6682 | + } elseif(get_option('geodir_ga_account_id')){
|
|
| 6582 | 6683 | $accounts = array(); |
| 6583 | 6684 | $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
| 6584 | 6685 | } |
@@ -6599,14 +6700,16 @@ discard block |
||
| 6599 | 6700 | |
| 6600 | 6701 | |
| 6601 | 6702 | # Create a new Gdata call |
| 6602 | - if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6603 | - $stats = new GDGoogleAnalyticsStats(); |
|
| 6604 | - else |
|
| 6605 | - return false; |
|
| 6703 | + if ( trim(get_option('geodir_ga_auth_code')) != '' ) { |
|
| 6704 | + $stats = new GDGoogleAnalyticsStats(); |
|
| 6705 | + } else { |
|
| 6706 | + return false; |
|
| 6707 | + } |
|
| 6606 | 6708 | |
| 6607 | 6709 | # Check if Google sucessfully logged in |
| 6608 | - if ( ! $stats->checkLogin() ) |
|
| 6609 | - return false; |
|
| 6710 | + if ( ! $stats->checkLogin() ) { |
|
| 6711 | + return false; |
|
| 6712 | + } |
|
| 6610 | 6713 | |
| 6611 | 6714 | # Get a list of accounts |
| 6612 | 6715 | $accounts = $stats->getAllProfiles(); |
@@ -6617,8 +6720,8 @@ discard block |
||
| 6617 | 6720 | if ( count($accounts) > 0 ){
|
| 6618 | 6721 | update_option('geodir_gd_uids',$accounts);
|
| 6619 | 6722 | return $accounts; |
| 6723 | + } else { |
|
| 6724 | + return false; |
|
| 6725 | + } |
|
| 6620 | 6726 | } |
| 6621 | - else |
|
| 6622 | - return false; |
|
| 6623 | -} |
|
| 6624 | 6727 | |
@@ -13,125 +13,125 @@ discard block |
||
| 13 | 13 | * @package GeoDirectory |
| 14 | 14 | */ |
| 15 | 15 | function geodir_deactivation() {
|
| 16 | - // Update installed variable |
|
| 17 | - update_option("geodir_installed", 0);
|
|
| 16 | + // Update installed variable |
|
| 17 | + update_option("geodir_installed", 0);
|
|
| 18 | 18 | |
| 19 | - // Remove rewrite rules and then recreate rewrite rules. |
|
| 20 | - flush_rewrite_rules(); |
|
| 19 | + // Remove rewrite rules and then recreate rewrite rules. |
|
| 20 | + flush_rewrite_rules(); |
|
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | if (!function_exists('geodir_admin_styles')) {
|
| 24 | - /** |
|
| 25 | - * Enqueue Admin Styles. |
|
| 26 | - * |
|
| 27 | - * @since 1.0.0 |
|
| 28 | - * @package GeoDirectory |
|
| 29 | - */ |
|
| 30 | - function geodir_admin_styles() {
|
|
| 31 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | - wp_enqueue_style('geodirectory-admin-css');
|
|
| 24 | + /** |
|
| 25 | + * Enqueue Admin Styles. |
|
| 26 | + * |
|
| 27 | + * @since 1.0.0 |
|
| 28 | + * @package GeoDirectory |
|
| 29 | + */ |
|
| 30 | + function geodir_admin_styles() {
|
|
| 31 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | + wp_enqueue_style('geodirectory-admin-css');
|
|
| 33 | 33 | |
| 34 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | - wp_enqueue_style('geodirectory-frontend-style');
|
|
| 34 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | + wp_enqueue_style('geodirectory-frontend-style');
|
|
| 36 | 36 | |
| 37 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | - wp_enqueue_style('geodir-chosen-style');
|
|
| 37 | + wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | + wp_enqueue_style('geodir-chosen-style');
|
|
| 39 | 39 | |
| 40 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | - wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
|
| 40 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | + wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
|
| 42 | 42 | |
| 43 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | - wp_enqueue_style('geodirectory-jquery-ui-css');
|
|
| 43 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | + wp_enqueue_style('geodirectory-jquery-ui-css');
|
|
| 45 | 45 | |
| 46 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | - wp_enqueue_style('geodirectory-custom-fields-css');
|
|
| 46 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | + wp_enqueue_style('geodirectory-custom-fields-css');
|
|
| 48 | 48 | |
| 49 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | - wp_enqueue_style('geodirectory-pluplodar-css');
|
|
| 49 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | + wp_enqueue_style('geodirectory-pluplodar-css');
|
|
| 51 | 51 | |
| 52 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | - wp_enqueue_style('geodir-rating-style');
|
|
| 52 | + wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | + wp_enqueue_style('geodir-rating-style');
|
|
| 54 | 54 | |
| 55 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | - wp_enqueue_style('geodir-rtl-style');
|
|
| 57 | - } |
|
| 55 | + wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | + wp_enqueue_style('geodir-rtl-style');
|
|
| 57 | + } |
|
| 58 | 58 | } |
| 59 | 59 | |
| 60 | 60 | if (!function_exists('geodir_admin_styles_req')) {
|
| 61 | - /** |
|
| 62 | - * Loads stylesheets from CDN. |
|
| 63 | - * |
|
| 64 | - * @since 1.0.0 |
|
| 65 | - * @package GeoDirectory |
|
| 66 | - */ |
|
| 67 | - function geodir_admin_styles_req() |
|
| 68 | - {
|
|
| 61 | + /** |
|
| 62 | + * Loads stylesheets from CDN. |
|
| 63 | + * |
|
| 64 | + * @since 1.0.0 |
|
| 65 | + * @package GeoDirectory |
|
| 66 | + */ |
|
| 67 | + function geodir_admin_styles_req() |
|
| 68 | + {
|
|
| 69 | 69 | |
| 70 | - wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | - wp_enqueue_style('font-awesome');
|
|
| 70 | + wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
|
| 71 | + wp_enqueue_style('font-awesome');
|
|
| 72 | 72 | |
| 73 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | - wp_enqueue_script('geodirectory-admin');
|
|
| 73 | + wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | + wp_enqueue_script('geodirectory-admin');
|
|
| 75 | 75 | |
| 76 | - } |
|
| 76 | + } |
|
| 77 | 77 | } |
| 78 | 78 | |
| 79 | 79 | if (!function_exists('geodir_admin_scripts')) {
|
| 80 | - /** |
|
| 81 | - * Enqueue Admin Scripts. |
|
| 82 | - * |
|
| 83 | - * @since 1.0.0 |
|
| 84 | - * @package GeoDirectory |
|
| 85 | - */ |
|
| 86 | - function geodir_admin_scripts() |
|
| 87 | - {
|
|
| 88 | - $geodir_map_name = geodir_map_name(); |
|
| 80 | + /** |
|
| 81 | + * Enqueue Admin Scripts. |
|
| 82 | + * |
|
| 83 | + * @since 1.0.0 |
|
| 84 | + * @package GeoDirectory |
|
| 85 | + */ |
|
| 86 | + function geodir_admin_scripts() |
|
| 87 | + {
|
|
| 88 | + $geodir_map_name = geodir_map_name(); |
|
| 89 | 89 | |
| 90 | - wp_enqueue_script('jquery');
|
|
| 90 | + wp_enqueue_script('jquery');
|
|
| 91 | 91 | |
| 92 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 92 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 93 | 93 | |
| 94 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | - wp_enqueue_script('chosen');
|
|
| 94 | + wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | + wp_enqueue_script('chosen');
|
|
| 96 | 96 | |
| 97 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | - wp_enqueue_script('geodirectory-choose-ajax');
|
|
| 97 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | + wp_enqueue_script('geodirectory-choose-ajax');
|
|
| 99 | 99 | |
| 100 | - if (isset($_REQUEST['listing_type'])) {
|
|
| 101 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | - } |
|
| 100 | + if (isset($_REQUEST['listing_type'])) {
|
|
| 101 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | + } |
|
| 103 | 103 | |
| 104 | - wp_enqueue_script('geodirectory-custom-fields-script');
|
|
| 105 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 104 | + wp_enqueue_script('geodirectory-custom-fields-script');
|
|
| 105 | + $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 106 | 106 | |
| 107 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 107 | + wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 108 | 108 | |
| 109 | - if (in_array($geodir_map_name, array('auto', 'google'))) {
|
|
| 110 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 112 | - /** This filter is documented in geodirectory_template_tags.php */ |
|
| 113 | - $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
|
| 114 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 115 | - } |
|
| 109 | + if (in_array($geodir_map_name, array('auto', 'google'))) {
|
|
| 110 | + $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | + $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 112 | + /** This filter is documented in geodirectory_template_tags.php */ |
|
| 113 | + $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
|
| 114 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - if ($geodir_map_name == 'osm') {
|
|
| 118 | - // Leaflet OpenStreetMap |
|
| 119 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | - wp_enqueue_style('geodirectory-leaflet-style');
|
|
| 117 | + if ($geodir_map_name == 'osm') {
|
|
| 118 | + // Leaflet OpenStreetMap |
|
| 119 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | + wp_enqueue_style('geodirectory-leaflet-style');
|
|
| 121 | 121 | |
| 122 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | - wp_enqueue_script('geodirectory-leaflet-script');
|
|
| 122 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | + wp_enqueue_script('geodirectory-leaflet-script');
|
|
| 124 | 124 | |
| 125 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | - wp_enqueue_script('geodirectory-leaflet-geo-script');
|
|
| 127 | - } |
|
| 128 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 125 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | + wp_enqueue_script('geodirectory-leaflet-geo-script');
|
|
| 127 | + } |
|
| 128 | + wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 129 | 129 | |
| 130 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 131 | - wp_enqueue_script('geodirectory-goMap-script');
|
|
| 130 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 131 | + wp_enqueue_script('geodirectory-goMap-script');
|
|
| 132 | 132 | |
| 133 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | - wp_enqueue_script('geodirectory-goMap-script');
|
|
| 133 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | + wp_enqueue_script('geodirectory-goMap-script');
|
|
| 135 | 135 | |
| 136 | 136 | // font awesome rating script |
| 137 | 137 | if (get_option('geodir_reviewrating_enable_font_awesome')) {
|
@@ -142,167 +142,167 @@ discard block |
||
| 142 | 142 | wp_enqueue_script('geodir-jRating-js');
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | - wp_enqueue_script('geodir-on-document-load');
|
|
| 147 | - |
|
| 148 | - |
|
| 149 | - // SCRIPT FOR UPLOAD |
|
| 150 | - wp_enqueue_script('plupload-all');
|
|
| 151 | - wp_enqueue_script('jquery-ui-sortable');
|
|
| 152 | - |
|
| 153 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | - wp_enqueue_script('geodirectory-plupload-script');
|
|
| 155 | - |
|
| 156 | - // SCRIPT FOR UPLOAD END |
|
| 157 | - |
|
| 158 | - |
|
| 159 | - // place js config array for plupload |
|
| 160 | - $plupload_init = array( |
|
| 161 | - 'runtimes' => 'html5,silverlight,flash,html4', |
|
| 162 | - 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
| 163 | - 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
| 164 | - 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
| 165 | - 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
| 166 | - 'multiple_queues' => true, |
|
| 167 | - 'max_file_size' => geodir_max_upload_size(), |
|
| 168 | - 'url' => admin_url('admin-ajax.php'),
|
|
| 169 | - 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
|
|
| 170 | - 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
|
|
| 171 | - 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
|
|
| 172 | - 'multipart' => true, |
|
| 173 | - 'urlstream_upload' => true, |
|
| 174 | - 'multi_selection' => false, // will be added per uploader |
|
| 175 | - // additional post data to send to our ajax hook |
|
| 176 | - 'multipart_params' => array( |
|
| 177 | - '_ajax_nonce' => "", // will be added per uploader |
|
| 178 | - 'action' => 'plupload_action', // the ajax action name |
|
| 179 | - 'imgid' => 0 // will be added per uploader |
|
| 180 | - ) |
|
| 181 | - ); |
|
| 182 | - $base_plupload_config = json_encode($plupload_init); |
|
| 183 | - |
|
| 184 | - |
|
| 185 | - $thumb_img_arr = array(); |
|
| 186 | - |
|
| 187 | - if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | - $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | - |
|
| 190 | - $totImg = ''; |
|
| 191 | - $image_limit = ''; |
|
| 192 | - if (!empty($thumb_img_arr)) {
|
|
| 193 | - $totImg = count($thumb_img_arr); |
|
| 194 | - } |
|
| 145 | + wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | + wp_enqueue_script('geodir-on-document-load');
|
|
| 147 | + |
|
| 148 | + |
|
| 149 | + // SCRIPT FOR UPLOAD |
|
| 150 | + wp_enqueue_script('plupload-all');
|
|
| 151 | + wp_enqueue_script('jquery-ui-sortable');
|
|
| 152 | + |
|
| 153 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | + wp_enqueue_script('geodirectory-plupload-script');
|
|
| 155 | + |
|
| 156 | + // SCRIPT FOR UPLOAD END |
|
| 157 | + |
|
| 158 | + |
|
| 159 | + // place js config array for plupload |
|
| 160 | + $plupload_init = array( |
|
| 161 | + 'runtimes' => 'html5,silverlight,flash,html4', |
|
| 162 | + 'browse_button' => 'plupload-browse-button', // will be adjusted per uploader |
|
| 163 | + 'container' => 'plupload-upload-ui', // will be adjusted per uploader |
|
| 164 | + 'drop_element' => 'dropbox', // will be adjusted per uploader |
|
| 165 | + 'file_data_name' => 'async-upload', // will be adjusted per uploader |
|
| 166 | + 'multiple_queues' => true, |
|
| 167 | + 'max_file_size' => geodir_max_upload_size(), |
|
| 168 | + 'url' => admin_url('admin-ajax.php'),
|
|
| 169 | + 'flash_swf_url' => includes_url('js/plupload/plupload.flash.swf'),
|
|
| 170 | + 'silverlight_xap_url' => includes_url('js/plupload/plupload.silverlight.xap'),
|
|
| 171 | + 'filters' => array(array('title' => __('Allowed Files', 'geodirectory'), 'extensions' => '*')),
|
|
| 172 | + 'multipart' => true, |
|
| 173 | + 'urlstream_upload' => true, |
|
| 174 | + 'multi_selection' => false, // will be added per uploader |
|
| 175 | + // additional post data to send to our ajax hook |
|
| 176 | + 'multipart_params' => array( |
|
| 177 | + '_ajax_nonce' => "", // will be added per uploader |
|
| 178 | + 'action' => 'plupload_action', // the ajax action name |
|
| 179 | + 'imgid' => 0 // will be added per uploader |
|
| 180 | + ) |
|
| 181 | + ); |
|
| 182 | + $base_plupload_config = json_encode($plupload_init); |
|
| 183 | + |
|
| 184 | + |
|
| 185 | + $thumb_img_arr = array(); |
|
| 186 | + |
|
| 187 | + if (isset($_REQUEST['pid']) && $_REQUEST['pid'] != '') |
|
| 188 | + $thumb_img_arr = geodir_get_images($_REQUEST['pid']); |
|
| 189 | + |
|
| 190 | + $totImg = ''; |
|
| 191 | + $image_limit = ''; |
|
| 192 | + if (!empty($thumb_img_arr)) {
|
|
| 193 | + $totImg = count($thumb_img_arr); |
|
| 194 | + } |
|
| 195 | 195 | |
| 196 | - $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
|
|
| 197 | - 'totalImg' => $totImg, |
|
| 198 | - 'image_limit' => $image_limit, |
|
| 199 | - 'upload_img_size' => geodir_max_upload_size()); |
|
| 196 | + $gd_plupload_init = array('base_plupload_config' => $base_plupload_config,
|
|
| 197 | + 'totalImg' => $totImg, |
|
| 198 | + 'image_limit' => $image_limit, |
|
| 199 | + 'upload_img_size' => geodir_max_upload_size()); |
|
| 200 | 200 | |
| 201 | - wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
|
|
| 201 | + wp_localize_script('geodirectory-plupload-script', 'gd_plupload', $gd_plupload_init);
|
|
| 202 | 202 | |
| 203 | - $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
|
|
| 204 | - wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
|
| 203 | + $ajax_cons_data = array('url' => __(admin_url('admin-ajax.php')));
|
|
| 204 | + wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
|
| 205 | 205 | |
| 206 | 206 | |
| 207 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | - wp_enqueue_script('geodirectory-admin-script');
|
|
| 207 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | + wp_enqueue_script('geodirectory-admin-script');
|
|
| 209 | 209 | |
| 210 | - wp_enqueue_style('farbtastic');
|
|
| 211 | - wp_enqueue_script('farbtastic');
|
|
| 210 | + wp_enqueue_style('farbtastic');
|
|
| 211 | + wp_enqueue_script('farbtastic');
|
|
| 212 | 212 | |
| 213 | - $screen = get_current_screen(); |
|
| 214 | - if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
|
| 215 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | - } |
|
| 213 | + $screen = get_current_screen(); |
|
| 214 | + if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
|
| 215 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | + } |
|
| 217 | 217 | |
| 218 | - $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 219 | - wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
|
| 218 | + $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 219 | + wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
|
| 220 | 220 | |
| 221 | - } |
|
| 221 | + } |
|
| 222 | 222 | } |
| 223 | 223 | |
| 224 | 224 | if (!function_exists('geodir_admin_menu')) {
|
| 225 | - /** |
|
| 226 | - * Admin Menus |
|
| 227 | - * |
|
| 228 | - * Sets up the admin menus in wordpress. |
|
| 229 | - * |
|
| 230 | - * @since 1.0.0 |
|
| 231 | - * @package GeoDirectory |
|
| 232 | - * @global array $menu Menu array. |
|
| 233 | - * @global object $geodirectory GeoDirectory plugin object. |
|
| 234 | - */ |
|
| 235 | - function geodir_admin_menu() |
|
| 236 | - {
|
|
| 237 | - global $menu, $geodirectory; |
|
| 225 | + /** |
|
| 226 | + * Admin Menus |
|
| 227 | + * |
|
| 228 | + * Sets up the admin menus in wordpress. |
|
| 229 | + * |
|
| 230 | + * @since 1.0.0 |
|
| 231 | + * @package GeoDirectory |
|
| 232 | + * @global array $menu Menu array. |
|
| 233 | + * @global object $geodirectory GeoDirectory plugin object. |
|
| 234 | + */ |
|
| 235 | + function geodir_admin_menu() |
|
| 236 | + {
|
|
| 237 | + global $menu, $geodirectory; |
|
| 238 | 238 | |
| 239 | - if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 239 | + if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
|
| 240 | 240 | |
| 241 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 241 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 242 | 242 | |
| 243 | 243 | |
| 244 | - } |
|
| 244 | + } |
|
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | if (!function_exists('geodir_admin_menu_order')) {
|
| 248 | - /** |
|
| 249 | - * Order admin menus. |
|
| 250 | - * |
|
| 251 | - * @since 1.0.0 |
|
| 252 | - * @package GeoDirectory |
|
| 253 | - * @param array $menu_order Menu order array. |
|
| 254 | - * @return array Modified menu order array. |
|
| 255 | - */ |
|
| 256 | - function geodir_admin_menu_order($menu_order) |
|
| 257 | - {
|
|
| 258 | - |
|
| 259 | - // Initialize our custom order array |
|
| 260 | - $geodir_menu_order = array(); |
|
| 261 | - |
|
| 262 | - // Get the index of our custom separator |
|
| 263 | - $geodir_separator = array_search('separator-geodirectory', $menu_order);
|
|
| 264 | - |
|
| 265 | - // Get index of posttype menu |
|
| 266 | - $post_types = geodir_get_posttypes(); |
|
| 267 | - |
|
| 268 | - // Loop through menu order and do some rearranging |
|
| 269 | - foreach ($menu_order as $index => $item) : |
|
| 270 | - |
|
| 271 | - if ((('geodirectory') == $item)) :
|
|
| 272 | - $geodir_menu_order[] = 'separator-geodirectory'; |
|
| 273 | - if (!empty($post_types)) {
|
|
| 274 | - foreach ($post_types as $post_type) {
|
|
| 275 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 276 | - } |
|
| 277 | - } |
|
| 278 | - $geodir_menu_order[] = $item; |
|
| 248 | + /** |
|
| 249 | + * Order admin menus. |
|
| 250 | + * |
|
| 251 | + * @since 1.0.0 |
|
| 252 | + * @package GeoDirectory |
|
| 253 | + * @param array $menu_order Menu order array. |
|
| 254 | + * @return array Modified menu order array. |
|
| 255 | + */ |
|
| 256 | + function geodir_admin_menu_order($menu_order) |
|
| 257 | + {
|
|
| 279 | 258 | |
| 280 | - unset($menu_order[$geodir_separator]); |
|
| 281 | - //unset( $menu_order[$geodir_places] ); |
|
| 282 | - elseif (!in_array($item, array('separator-geodirectory'))) :
|
|
| 283 | - $geodir_menu_order[] = $item; |
|
| 284 | - endif; |
|
| 259 | + // Initialize our custom order array |
|
| 260 | + $geodir_menu_order = array(); |
|
| 285 | 261 | |
| 286 | - endforeach; |
|
| 262 | + // Get the index of our custom separator |
|
| 263 | + $geodir_separator = array_search('separator-geodirectory', $menu_order);
|
|
| 287 | 264 | |
| 288 | - // Return order |
|
| 289 | - return $geodir_menu_order; |
|
| 290 | - } |
|
| 265 | + // Get index of posttype menu |
|
| 266 | + $post_types = geodir_get_posttypes(); |
|
| 267 | + |
|
| 268 | + // Loop through menu order and do some rearranging |
|
| 269 | + foreach ($menu_order as $index => $item) : |
|
| 270 | + |
|
| 271 | + if ((('geodirectory') == $item)) :
|
|
| 272 | + $geodir_menu_order[] = 'separator-geodirectory'; |
|
| 273 | + if (!empty($post_types)) {
|
|
| 274 | + foreach ($post_types as $post_type) {
|
|
| 275 | + $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 276 | + } |
|
| 277 | + } |
|
| 278 | + $geodir_menu_order[] = $item; |
|
| 279 | + |
|
| 280 | + unset($menu_order[$geodir_separator]); |
|
| 281 | + //unset( $menu_order[$geodir_places] ); |
|
| 282 | + elseif (!in_array($item, array('separator-geodirectory'))) :
|
|
| 283 | + $geodir_menu_order[] = $item; |
|
| 284 | + endif; |
|
| 285 | + |
|
| 286 | + endforeach; |
|
| 287 | + |
|
| 288 | + // Return order |
|
| 289 | + return $geodir_menu_order; |
|
| 290 | + } |
|
| 291 | 291 | } |
| 292 | 292 | |
| 293 | 293 | if (!function_exists('geodir_admin_custom_menu_order')) {
|
| 294 | - /** |
|
| 295 | - * Enables custom menu order. |
|
| 296 | - * |
|
| 297 | - * @since 1.0.0 |
|
| 298 | - * @package GeoDirectory |
|
| 299 | - * @return bool |
|
| 300 | - */ |
|
| 301 | - function geodir_admin_custom_menu_order() |
|
| 302 | - {
|
|
| 303 | - if (!current_user_can('manage_options')) return false;
|
|
| 304 | - return true; |
|
| 305 | - } |
|
| 294 | + /** |
|
| 295 | + * Enables custom menu order. |
|
| 296 | + * |
|
| 297 | + * @since 1.0.0 |
|
| 298 | + * @package GeoDirectory |
|
| 299 | + * @return bool |
|
| 300 | + */ |
|
| 301 | + function geodir_admin_custom_menu_order() |
|
| 302 | + {
|
|
| 303 | + if (!current_user_can('manage_options')) return false;
|
|
| 304 | + return true; |
|
| 305 | + } |
|
| 306 | 306 | } |
| 307 | 307 | |
| 308 | 308 | /** |
@@ -313,51 +313,51 @@ discard block |
||
| 313 | 313 | */ |
| 314 | 314 | function geodir_before_admin_panel() |
| 315 | 315 | {
|
| 316 | - if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
|
| 317 | - echo '<div id="message" class="updated fade"> |
|
| 316 | + if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
|
| 317 | + echo '<div id="message" class="updated fade"> |
|
| 318 | 318 | <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
|
| 319 | 319 | <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
|
| 320 | 320 | </div>'; |
| 321 | 321 | |
| 322 | - } |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
|
| 325 | - switch ($_REQUEST['msg']) {
|
|
| 326 | - case 'success': |
|
| 327 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 328 | - flush_rewrite_rules(false); |
|
| 324 | + if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
|
| 325 | + switch ($_REQUEST['msg']) {
|
|
| 326 | + case 'success': |
|
| 327 | + echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 328 | + flush_rewrite_rules(false); |
|
| 329 | 329 | |
| 330 | - break; |
|
| 330 | + break; |
|
| 331 | 331 | case 'fail': |
| 332 | 332 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 333 | 333 | |
| 334 | 334 | if ($gderr == 21) |
| 335 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 335 | + echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 336 | 336 | else |
| 337 | 337 | echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
| 338 | - break; |
|
| 339 | - } |
|
| 340 | - } |
|
| 338 | + break; |
|
| 339 | + } |
|
| 340 | + } |
|
| 341 | 341 | |
| 342 | - $geodir_load_map = get_option('geodir_load_map');
|
|
| 343 | - $need_map_key = false; |
|
| 344 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 345 | - $need_map_key = true; |
|
| 346 | - } |
|
| 342 | + $geodir_load_map = get_option('geodir_load_map');
|
|
| 343 | + $need_map_key = false; |
|
| 344 | + if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 345 | + $need_map_key = true; |
|
| 346 | + } |
|
| 347 | 347 | |
| 348 | - if (!geodir_get_map_api_key() && $need_map_key) {
|
|
| 349 | - echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 350 | - } |
|
| 348 | + if (!geodir_get_map_api_key() && $need_map_key) {
|
|
| 349 | + echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 350 | + } |
|
| 351 | 351 | |
| 352 | - if (!geodir_is_default_location_set()) {
|
|
| 353 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 352 | + if (!geodir_is_default_location_set()) {
|
|
| 353 | + echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 354 | 354 | |
| 355 | - } |
|
| 355 | + } |
|
| 356 | 356 | |
| 357 | - if (!function_exists('curl_init')) {
|
|
| 358 | - echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 357 | + if (!function_exists('curl_init')) {
|
|
| 358 | + echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 359 | 359 | |
| 360 | - } |
|
| 360 | + } |
|
| 361 | 361 | |
| 362 | 362 | |
| 363 | 363 | |
@@ -374,19 +374,19 @@ discard block |
||
| 374 | 374 | */ |
| 375 | 375 | function geodir_handle_option_form_submit($current_tab) |
| 376 | 376 | {
|
| 377 | - global $geodir_settings; |
|
| 378 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 379 | - /** |
|
| 380 | - * Contains settings array for current tab. |
|
| 381 | - * |
|
| 382 | - * @since 1.0.0 |
|
| 383 | - * @package GeoDirectory |
|
| 384 | - */ |
|
| 385 | - include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 386 | - } |
|
| 387 | - if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
| 388 | - if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 377 | + global $geodir_settings; |
|
| 378 | + if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 379 | + /** |
|
| 380 | + * Contains settings array for current tab. |
|
| 381 | + * |
|
| 382 | + * @since 1.0.0 |
|
| 383 | + * @package GeoDirectory |
|
| 384 | + */ |
|
| 385 | + include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 386 | + } |
|
| 387 | + if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
|
| 388 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Fires before updating geodirectory admin settings. |
@@ -398,38 +398,38 @@ discard block |
||
| 398 | 398 | */ |
| 399 | 399 | do_action('geodir_before_update_options', $current_tab, $geodir_settings);
|
| 400 | 400 | |
| 401 | - if (!empty($geodir_settings[$current_tab])) |
|
| 402 | - geodir_update_options($geodir_settings[$current_tab]); |
|
| 401 | + if (!empty($geodir_settings[$current_tab])) |
|
| 402 | + geodir_update_options($geodir_settings[$current_tab]); |
|
| 403 | 403 | |
| 404 | - /** |
|
| 405 | - * Called after GeoDirectory options settings are updated. |
|
| 406 | - * |
|
| 407 | - * @since 1.0.0 |
|
| 408 | - * @param array $geodir_settings The array of GeoDirectory settings. |
|
| 409 | - * @see 'geodir_before_update_options' |
|
| 410 | - */ |
|
| 411 | - do_action('geodir_update_options', $geodir_settings);
|
|
| 404 | + /** |
|
| 405 | + * Called after GeoDirectory options settings are updated. |
|
| 406 | + * |
|
| 407 | + * @since 1.0.0 |
|
| 408 | + * @param array $geodir_settings The array of GeoDirectory settings. |
|
| 409 | + * @see 'geodir_before_update_options' |
|
| 410 | + */ |
|
| 411 | + do_action('geodir_update_options', $geodir_settings);
|
|
| 412 | 412 | |
| 413 | - /** |
|
| 414 | - * Called after GeoDirectory options settings are updated. |
|
| 415 | - * |
|
| 416 | - * Provides tab specific settings. |
|
| 417 | - * |
|
| 418 | - * @since 1.0.0 |
|
| 419 | - * @param string $current_tab The current settings tab name. |
|
| 420 | - * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
| 421 | - */ |
|
| 422 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 413 | + /** |
|
| 414 | + * Called after GeoDirectory options settings are updated. |
|
| 415 | + * |
|
| 416 | + * Provides tab specific settings. |
|
| 417 | + * |
|
| 418 | + * @since 1.0.0 |
|
| 419 | + * @param string $current_tab The current settings tab name. |
|
| 420 | + * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
|
| 421 | + */ |
|
| 422 | + do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 423 | 423 | |
| 424 | - flush_rewrite_rules(false); |
|
| 424 | + flush_rewrite_rules(false); |
|
| 425 | 425 | |
| 426 | - $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
| 426 | + $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
|
| 427 | 427 | |
| 428 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 428 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 429 | 429 | |
| 430 | - wp_redirect($redirect_url); |
|
| 431 | - exit(); |
|
| 432 | - endif; |
|
| 430 | + wp_redirect($redirect_url); |
|
| 431 | + exit(); |
|
| 432 | + endif; |
|
| 433 | 433 | |
| 434 | 434 | |
| 435 | 435 | } |
@@ -447,144 +447,144 @@ discard block |
||
| 447 | 447 | * @return bool Returns true if saved. |
| 448 | 448 | */ |
| 449 | 449 | function geodir_update_options($options, $dummy = false) {
|
| 450 | - if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 450 | + if ((!isset($_POST) || !$_POST) && !$dummy) return false; |
|
| 451 | 451 | |
| 452 | - foreach ($options as $value) {
|
|
| 453 | - if ($dummy && isset($value['std'])) |
|
| 454 | - $_POST[$value['id']] = $value['std']; |
|
| 452 | + foreach ($options as $value) {
|
|
| 453 | + if ($dummy && isset($value['std'])) |
|
| 454 | + $_POST[$value['id']] = $value['std']; |
|
| 455 | 455 | |
| 456 | 456 | |
| 457 | - if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
| 457 | + if (isset($value['type']) && $value['type'] == 'checkbox') : |
|
| 458 | 458 | |
| 459 | - if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 460 | - update_option($value['id'], $_POST[$value['id']]); |
|
| 461 | - } else {
|
|
| 462 | - update_option($value['id'], 0); |
|
| 463 | - } |
|
| 459 | + if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 460 | + update_option($value['id'], $_POST[$value['id']]); |
|
| 461 | + } else {
|
|
| 462 | + update_option($value['id'], 0); |
|
| 463 | + } |
|
| 464 | 464 | |
| 465 | - elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 465 | + elseif (isset($value['type']) && $value['type'] == 'image_width') : |
|
| 466 | 466 | |
| 467 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | - update_option($value['id'] . '_crop', 1); |
|
| 472 | - else : |
|
| 473 | - update_option($value['id'] . '_crop', 0); |
|
| 474 | - endif; |
|
| 475 | - } else {
|
|
| 476 | - update_option($value['id'] . '_width', $value['std']); |
|
| 477 | - update_option($value['id'] . '_height', $value['std']); |
|
| 478 | - update_option($value['id'] . '_crop', 1); |
|
| 479 | - } |
|
| 467 | + if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | + update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | + update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | + if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | + update_option($value['id'] . '_crop', 1); |
|
| 472 | + else : |
|
| 473 | + update_option($value['id'] . '_crop', 0); |
|
| 474 | + endif; |
|
| 475 | + } else {
|
|
| 476 | + update_option($value['id'] . '_width', $value['std']); |
|
| 477 | + update_option($value['id'] . '_height', $value['std']); |
|
| 478 | + update_option($value['id'] . '_crop', 1); |
|
| 479 | + } |
|
| 480 | 480 | |
| 481 | - elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | - $post_types = array(); |
|
| 483 | - $categories = array(); |
|
| 481 | + elseif (isset($value['type']) && $value['type'] == 'map') : |
|
| 482 | + $post_types = array(); |
|
| 483 | + $categories = array(); |
|
| 484 | 484 | |
| 485 | - if (!empty($_POST['home_map_post_types'])) : |
|
| 486 | - foreach ($_POST['home_map_post_types'] as $post_type) : |
|
| 487 | - $post_types[] = $post_type; |
|
| 488 | - endforeach; |
|
| 489 | - endif; |
|
| 485 | + if (!empty($_POST['home_map_post_types'])) : |
|
| 486 | + foreach ($_POST['home_map_post_types'] as $post_type) : |
|
| 487 | + $post_types[] = $post_type; |
|
| 488 | + endforeach; |
|
| 489 | + endif; |
|
| 490 | 490 | |
| 491 | - update_option('geodir_exclude_post_type_on_map', $post_types);
|
|
| 491 | + update_option('geodir_exclude_post_type_on_map', $post_types);
|
|
| 492 | 492 | |
| 493 | - if (!empty($_POST['post_category'])) : |
|
| 494 | - foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
| 495 | - $categories[$texonomy] = array(); |
|
| 496 | - foreach ($cat_arr as $category) : |
|
| 497 | - $categories[$texonomy][] = $category; |
|
| 498 | - endforeach; |
|
| 499 | - $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
| 500 | - endforeach; |
|
| 501 | - endif; |
|
| 502 | - update_option('geodir_exclude_cat_on_map', $categories);
|
|
| 503 | - update_option('geodir_exclude_cat_on_map_upgrade', 1);
|
|
| 504 | - elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
| 493 | + if (!empty($_POST['post_category'])) : |
|
| 494 | + foreach ($_POST['post_category'] as $texonomy => $cat_arr) : |
|
| 495 | + $categories[$texonomy] = array(); |
|
| 496 | + foreach ($cat_arr as $category) : |
|
| 497 | + $categories[$texonomy][] = $category; |
|
| 498 | + endforeach; |
|
| 499 | + $categories[$texonomy] = !empty($categories[$texonomy]) ? array_unique($categories[$texonomy]) : array(); |
|
| 500 | + endforeach; |
|
| 501 | + endif; |
|
| 502 | + update_option('geodir_exclude_cat_on_map', $categories);
|
|
| 503 | + update_option('geodir_exclude_cat_on_map_upgrade', 1);
|
|
| 504 | + elseif (isset($value['type']) && $value['type'] == 'map_default_settings') : |
|
| 505 | 505 | |
| 506 | 506 | |
| 507 | - if (!empty($_POST['geodir_default_map_language'])): |
|
| 508 | - update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
|
|
| 509 | - endif; |
|
| 507 | + if (!empty($_POST['geodir_default_map_language'])): |
|
| 508 | + update_option('geodir_default_map_language', $_POST['geodir_default_map_language']);
|
|
| 509 | + endif; |
|
| 510 | 510 | |
| 511 | 511 | |
| 512 | - if (!empty($_POST['geodir_default_map_search_pt'])): |
|
| 513 | - update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
|
|
| 514 | - endif; |
|
| 512 | + if (!empty($_POST['geodir_default_map_search_pt'])): |
|
| 513 | + update_option('geodir_default_map_search_pt', $_POST['geodir_default_map_search_pt']);
|
|
| 514 | + endif; |
|
| 515 | 515 | |
| 516 | 516 | |
| 517 | - elseif (isset($value['type']) && $value['type'] == 'file') : |
|
| 517 | + elseif (isset($value['type']) && $value['type'] == 'file') : |
|
| 518 | 518 | |
| 519 | 519 | |
| 520 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 520 | + if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 521 | 521 | |
| 522 | - if (get_option($value['id'])) {
|
|
| 523 | - $image_name_arr = explode('/', get_option($value['id']));
|
|
| 524 | - $noimg_name = end($image_name_arr); |
|
| 525 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 526 | - if (file_exists($img_path)) |
|
| 527 | - unlink($img_path); |
|
| 528 | - } |
|
| 522 | + if (get_option($value['id'])) {
|
|
| 523 | + $image_name_arr = explode('/', get_option($value['id']));
|
|
| 524 | + $noimg_name = end($image_name_arr); |
|
| 525 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 526 | + if (file_exists($img_path)) |
|
| 527 | + unlink($img_path); |
|
| 528 | + } |
|
| 529 | 529 | |
| 530 | - update_option($value['id'], ''); |
|
| 531 | - } |
|
| 530 | + update_option($value['id'], ''); |
|
| 531 | + } |
|
| 532 | 532 | |
| 533 | - $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
| 534 | - $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
| 535 | - |
|
| 536 | - if (!empty($filename)): |
|
| 537 | - $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
| 538 | - $uplaods = array(); |
|
| 539 | - |
|
| 540 | - foreach ($uploadedfile as $key => $uplaod): |
|
| 541 | - if ($key == 'name'): |
|
| 542 | - $uplaods[$key] = $filename; |
|
| 543 | - else : |
|
| 544 | - $uplaods[$key] = $uplaod; |
|
| 545 | - endif; |
|
| 546 | - endforeach; |
|
| 547 | - |
|
| 548 | - $uploads = wp_upload_dir(); |
|
| 549 | - |
|
| 550 | - if (get_option($value['id'])) {
|
|
| 551 | - $image_name_arr = explode('/', get_option($value['id']));
|
|
| 552 | - $noimg_name = end($image_name_arr); |
|
| 553 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 554 | - if (file_exists($img_path)) |
|
| 555 | - unlink($img_path); |
|
| 556 | - } |
|
| 533 | + $uploadedfile = isset($_FILES[$value['id']]) ? $_FILES[$value['id']] : ''; |
|
| 534 | + $filename = isset($_FILES[$value['id']]['name']) ? $_FILES[$value['id']]['name'] : ''; |
|
| 535 | + |
|
| 536 | + if (!empty($filename)): |
|
| 537 | + $ext = pathinfo($filename, PATHINFO_EXTENSION); |
|
| 538 | + $uplaods = array(); |
|
| 539 | + |
|
| 540 | + foreach ($uploadedfile as $key => $uplaod): |
|
| 541 | + if ($key == 'name'): |
|
| 542 | + $uplaods[$key] = $filename; |
|
| 543 | + else : |
|
| 544 | + $uplaods[$key] = $uplaod; |
|
| 545 | + endif; |
|
| 546 | + endforeach; |
|
| 547 | + |
|
| 548 | + $uploads = wp_upload_dir(); |
|
| 549 | + |
|
| 550 | + if (get_option($value['id'])) {
|
|
| 551 | + $image_name_arr = explode('/', get_option($value['id']));
|
|
| 552 | + $noimg_name = end($image_name_arr); |
|
| 553 | + $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 554 | + if (file_exists($img_path)) |
|
| 555 | + unlink($img_path); |
|
| 556 | + } |
|
| 557 | 557 | |
| 558 | - $upload_overrides = array('test_form' => false);
|
|
| 559 | - $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
| 558 | + $upload_overrides = array('test_form' => false);
|
|
| 559 | + $movefile = wp_handle_upload($uplaods, $upload_overrides); |
|
| 560 | 560 | |
| 561 | - update_option($value['id'], $movefile['url']); |
|
| 561 | + update_option($value['id'], $movefile['url']); |
|
| 562 | 562 | |
| 563 | - endif; |
|
| 563 | + endif; |
|
| 564 | 564 | |
| 565 | - if (!get_option($value['id']) && isset($value['value'])): |
|
| 566 | - update_option($value['id'], $value['value']); |
|
| 567 | - endif; |
|
| 565 | + if (!get_option($value['id']) && isset($value['value'])): |
|
| 566 | + update_option($value['id'], $value['value']); |
|
| 567 | + endif; |
|
| 568 | 568 | |
| 569 | 569 | |
| 570 | - else : |
|
| 571 | - // same menu setting per theme. |
|
| 572 | - if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
|
| 573 | - $theme = wp_get_theme(); |
|
| 574 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 575 | - } |
|
| 570 | + else : |
|
| 571 | + // same menu setting per theme. |
|
| 572 | + if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
|
| 573 | + $theme = wp_get_theme(); |
|
| 574 | + update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 575 | + } |
|
| 576 | 576 | |
| 577 | - if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 578 | - update_option($value['id'], $_POST[$value['id']]); |
|
| 579 | - } else {
|
|
| 580 | - delete_option($value['id']); |
|
| 581 | - } |
|
| 577 | + if (isset($value['id']) && isset($_POST[$value['id']])) {
|
|
| 578 | + update_option($value['id'], $_POST[$value['id']]); |
|
| 579 | + } else {
|
|
| 580 | + delete_option($value['id']); |
|
| 581 | + } |
|
| 582 | 582 | |
| 583 | - endif; |
|
| 584 | - } |
|
| 585 | - if ($dummy) |
|
| 586 | - $_POST = array(); |
|
| 587 | - return true; |
|
| 583 | + endif; |
|
| 584 | + } |
|
| 585 | + if ($dummy) |
|
| 586 | + $_POST = array(); |
|
| 587 | + return true; |
|
| 588 | 588 | |
| 589 | 589 | } |
| 590 | 590 | |
@@ -633,33 +633,33 @@ discard block |
||
| 633 | 633 | function places_custom_fields_tab($tabs) |
| 634 | 634 | {
|
| 635 | 635 | |
| 636 | - $geodir_post_types = get_option('geodir_post_types');
|
|
| 636 | + $geodir_post_types = get_option('geodir_post_types');
|
|
| 637 | 637 | |
| 638 | - if (!empty($geodir_post_types)) {
|
|
| 638 | + if (!empty($geodir_post_types)) {
|
|
| 639 | 639 | |
| 640 | - foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
| 640 | + foreach ($geodir_post_types as $geodir_post_type => $geodir_posttype_info): |
|
| 641 | 641 | |
| 642 | - $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
|
| 642 | + $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
|
| 643 | 643 | |
| 644 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | - 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
|
|
| 646 | - 'subtabs' => array( |
|
| 647 | - array('subtab' => 'custom_fields',
|
|
| 648 | - 'label' => __('Custom Fields', 'geodirectory'),
|
|
| 649 | - 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 650 | - array('subtab' => 'sorting_options',
|
|
| 651 | - 'label' => __('Sorting Options', 'geodirectory'),
|
|
| 652 | - 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 653 | - ), |
|
| 654 | - 'tab_index' => 9, |
|
| 655 | - 'request' => array('listing_type' => $geodir_post_type)
|
|
| 656 | - ); |
|
| 644 | + $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 645 | + 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
|
|
| 646 | + 'subtabs' => array( |
|
| 647 | + array('subtab' => 'custom_fields',
|
|
| 648 | + 'label' => __('Custom Fields', 'geodirectory'),
|
|
| 649 | + 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 650 | + array('subtab' => 'sorting_options',
|
|
| 651 | + 'label' => __('Sorting Options', 'geodirectory'),
|
|
| 652 | + 'request' => array('listing_type' => $geodir_post_type)),
|
|
| 653 | + ), |
|
| 654 | + 'tab_index' => 9, |
|
| 655 | + 'request' => array('listing_type' => $geodir_post_type)
|
|
| 656 | + ); |
|
| 657 | 657 | |
| 658 | - endforeach; |
|
| 658 | + endforeach; |
|
| 659 | 659 | |
| 660 | - } |
|
| 660 | + } |
|
| 661 | 661 | |
| 662 | - return $tabs; |
|
| 662 | + return $tabs; |
|
| 663 | 663 | } |
| 664 | 664 | |
| 665 | 665 | |
@@ -675,9 +675,9 @@ discard block |
||
| 675 | 675 | */ |
| 676 | 676 | function geodir_tools_setting_tab($tabs) |
| 677 | 677 | {
|
| 678 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 679 | - $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
|
| 680 | - return $tabs; |
|
| 678 | + wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 679 | + $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
|
| 680 | + return $tabs; |
|
| 681 | 681 | } |
| 682 | 682 | |
| 683 | 683 | /** |
@@ -692,8 +692,8 @@ discard block |
||
| 692 | 692 | */ |
| 693 | 693 | function geodir_compatibility_setting_tab($tabs) |
| 694 | 694 | {
|
| 695 | - $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
|
|
| 696 | - return $tabs; |
|
| 695 | + $tabs['compatibility_settings'] = array('label' => __('Theme Compatibility', 'geodirectory'));
|
|
| 696 | + return $tabs; |
|
| 697 | 697 | } |
| 698 | 698 | |
| 699 | 699 | |
@@ -709,144 +709,144 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | function geodir_extend_geodirectory_setting_tab($tabs) |
| 711 | 711 | {
|
| 712 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | - return $tabs; |
|
| 712 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | + return $tabs; |
|
| 714 | 714 | } |
| 715 | 715 | |
| 716 | 716 | |
| 717 | 717 | if (!function_exists('geodir_edit_post_columns')) {
|
| 718 | - /** |
|
| 719 | - * Modify admin post listing page columns. |
|
| 720 | - * |
|
| 721 | - * @since 1.0.0 |
|
| 722 | - * @package GeoDirectory |
|
| 723 | - * @param array $columns The column array. |
|
| 724 | - * @return array Altered column array. |
|
| 725 | - */ |
|
| 726 | - function geodir_edit_post_columns($columns) |
|
| 727 | - {
|
|
| 728 | - |
|
| 729 | - $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
|
| 730 | - 'categorys' => __('Categories', 'geodirectory'));
|
|
| 731 | - |
|
| 732 | - if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 733 | - {
|
|
| 734 | - $offset = 0; // should we prepend $array with $data? |
|
| 735 | - $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
| 736 | - } |
|
| 718 | + /** |
|
| 719 | + * Modify admin post listing page columns. |
|
| 720 | + * |
|
| 721 | + * @since 1.0.0 |
|
| 722 | + * @package GeoDirectory |
|
| 723 | + * @param array $columns The column array. |
|
| 724 | + * @return array Altered column array. |
|
| 725 | + */ |
|
| 726 | + function geodir_edit_post_columns($columns) |
|
| 727 | + {
|
|
| 737 | 728 | |
| 738 | - $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
| 729 | + $new_columns = array('location' => __('Location (ID)', 'geodirectory'),
|
|
| 730 | + 'categorys' => __('Categories', 'geodirectory'));
|
|
| 739 | 731 | |
| 740 | - $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
|
|
| 732 | + if (($offset = array_search('author', array_keys($columns))) === false) // if the key doesn't exist
|
|
| 733 | + {
|
|
| 734 | + $offset = 0; // should we prepend $array with $data? |
|
| 735 | + $offset = count($columns); // or should we append $array with $data? lets pick this one... |
|
| 736 | + } |
|
| 741 | 737 | |
| 742 | - return $columns; |
|
| 743 | - } |
|
| 738 | + $columns = array_merge(array_slice($columns, 0, $offset), $new_columns, array_slice($columns, $offset)); |
|
| 739 | + |
|
| 740 | + $columns = array_merge($columns, array('expire' => __('Expires', 'geodirectory')));
|
|
| 741 | + |
|
| 742 | + return $columns; |
|
| 743 | + } |
|
| 744 | 744 | } |
| 745 | 745 | |
| 746 | 746 | |
| 747 | 747 | if (!function_exists('geodir_manage_post_columns')) {
|
| 748 | - /** |
|
| 749 | - * Adds content to our custom post listing page columns. |
|
| 750 | - * |
|
| 751 | - * @since 1.0.0 |
|
| 752 | - * @package GeoDirectory |
|
| 753 | - * @global object $wpdb WordPress Database object. |
|
| 754 | - * @global object $post WordPress Post object. |
|
| 755 | - * @param string $column The column name. |
|
| 756 | - * @param int $post_id The post ID. |
|
| 757 | - */ |
|
| 758 | - function geodir_manage_post_columns($column, $post_id) |
|
| 759 | - {
|
|
| 760 | - global $post, $wpdb; |
|
| 761 | - |
|
| 762 | - switch ($column): |
|
| 763 | - /* If displaying the 'city' column. */ |
|
| 764 | - case 'location' : |
|
| 765 | - $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
| 766 | - $location = geodir_get_location($location_id); |
|
| 767 | - /* If no city is found, output a default message. */ |
|
| 768 | - if (empty($location)) {
|
|
| 769 | - _e('Unknown', 'geodirectory');
|
|
| 770 | - } else {
|
|
| 771 | - /* If there is a city id, append 'city name' to the text string. */ |
|
| 772 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 774 | - } |
|
| 775 | - break; |
|
| 776 | - |
|
| 777 | - /* If displaying the 'expire' column. */ |
|
| 778 | - case 'expire' : |
|
| 779 | - $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
| 780 | - $d1 = $expire_date; // get expire_date |
|
| 781 | - $d2 = date('Y-m-d'); // get current date
|
|
| 782 | - $state = __('days left', 'geodirectory');
|
|
| 783 | - $date_diff_text = ''; |
|
| 784 | - $expire_class = 'expire_left'; |
|
| 785 | - if ($expire_date != 'Never') {
|
|
| 786 | - if (strtotime($d1) < strtotime($d2)) {
|
|
| 787 | - $state = __('days overdue', 'geodirectory');
|
|
| 788 | - $expire_class = 'expire_over'; |
|
| 789 | - } |
|
| 790 | - $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
| 791 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 792 | - } |
|
| 793 | - /* If no expire_date is found, output a default message. */ |
|
| 794 | - if (empty($expire_date)) |
|
| 795 | - echo __('Unknown', 'geodirectory');
|
|
| 796 | - /* If there is a expire_date, append 'days left' to the text string. */ |
|
| 797 | - else |
|
| 798 | - echo $expire_date . $date_diff_text; |
|
| 799 | - break; |
|
| 800 | - |
|
| 801 | - /* If displaying the 'categorys' column. */ |
|
| 802 | - case 'categorys' : |
|
| 803 | - |
|
| 804 | - /* Get the categorys for the post. */ |
|
| 805 | - |
|
| 806 | - |
|
| 807 | - $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
| 808 | - |
|
| 809 | - /* If terms were found. */ |
|
| 810 | - if (!empty($terms)) {
|
|
| 811 | - $out = array(); |
|
| 812 | - /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
| 813 | - foreach ($terms as $term) {
|
|
| 814 | - if (!strstr($term->taxonomy, 'tag')) {
|
|
| 815 | - $out[] = sprintf('<a href="%s">%s</a>',
|
|
| 816 | - esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
|
|
| 817 | - esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
|
|
| 818 | - ); |
|
| 819 | - } |
|
| 820 | - } |
|
| 821 | - /* Join the terms, separating them with a comma. */ |
|
| 822 | - echo(join(', ', $out));
|
|
| 823 | - } /* If no terms were found, output a default message. */ |
|
| 824 | - else {
|
|
| 825 | - _e('No Categories', 'geodirectory');
|
|
| 826 | - } |
|
| 827 | - break; |
|
| 748 | + /** |
|
| 749 | + * Adds content to our custom post listing page columns. |
|
| 750 | + * |
|
| 751 | + * @since 1.0.0 |
|
| 752 | + * @package GeoDirectory |
|
| 753 | + * @global object $wpdb WordPress Database object. |
|
| 754 | + * @global object $post WordPress Post object. |
|
| 755 | + * @param string $column The column name. |
|
| 756 | + * @param int $post_id The post ID. |
|
| 757 | + */ |
|
| 758 | + function geodir_manage_post_columns($column, $post_id) |
|
| 759 | + {
|
|
| 760 | + global $post, $wpdb; |
|
| 761 | + |
|
| 762 | + switch ($column): |
|
| 763 | + /* If displaying the 'city' column. */ |
|
| 764 | + case 'location' : |
|
| 765 | + $location_id = geodir_get_post_meta($post->ID, 'post_location_id', true); |
|
| 766 | + $location = geodir_get_location($location_id); |
|
| 767 | + /* If no city is found, output a default message. */ |
|
| 768 | + if (empty($location)) {
|
|
| 769 | + _e('Unknown', 'geodirectory');
|
|
| 770 | + } else {
|
|
| 771 | + /* If there is a city id, append 'city name' to the text string. */ |
|
| 772 | + $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | + echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 774 | + } |
|
| 775 | + break; |
|
| 776 | + |
|
| 777 | + /* If displaying the 'expire' column. */ |
|
| 778 | + case 'expire' : |
|
| 779 | + $expire_date = geodir_get_post_meta($post->ID, 'expire_date', true); |
|
| 780 | + $d1 = $expire_date; // get expire_date |
|
| 781 | + $d2 = date('Y-m-d'); // get current date
|
|
| 782 | + $state = __('days left', 'geodirectory');
|
|
| 783 | + $date_diff_text = ''; |
|
| 784 | + $expire_class = 'expire_left'; |
|
| 785 | + if ($expire_date != 'Never') {
|
|
| 786 | + if (strtotime($d1) < strtotime($d2)) {
|
|
| 787 | + $state = __('days overdue', 'geodirectory');
|
|
| 788 | + $expire_class = 'expire_over'; |
|
| 789 | + } |
|
| 790 | + $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
|
| 791 | + $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 792 | + } |
|
| 793 | + /* If no expire_date is found, output a default message. */ |
|
| 794 | + if (empty($expire_date)) |
|
| 795 | + echo __('Unknown', 'geodirectory');
|
|
| 796 | + /* If there is a expire_date, append 'days left' to the text string. */ |
|
| 797 | + else |
|
| 798 | + echo $expire_date . $date_diff_text; |
|
| 799 | + break; |
|
| 828 | 800 | |
| 829 | - endswitch; |
|
| 830 | - } |
|
| 801 | + /* If displaying the 'categorys' column. */ |
|
| 802 | + case 'categorys' : |
|
| 803 | + |
|
| 804 | + /* Get the categorys for the post. */ |
|
| 805 | + |
|
| 806 | + |
|
| 807 | + $terms = wp_get_object_terms($post_id, get_object_taxonomies($post)); |
|
| 808 | + |
|
| 809 | + /* If terms were found. */ |
|
| 810 | + if (!empty($terms)) {
|
|
| 811 | + $out = array(); |
|
| 812 | + /* Loop through each term, linking to the 'edit posts' page for the specific term. */ |
|
| 813 | + foreach ($terms as $term) {
|
|
| 814 | + if (!strstr($term->taxonomy, 'tag')) {
|
|
| 815 | + $out[] = sprintf('<a href="%s">%s</a>',
|
|
| 816 | + esc_url(add_query_arg(array('post_type' => $post->post_type, $term->taxonomy => $term->slug), 'edit.php')),
|
|
| 817 | + esc_html(sanitize_term_field('name', $term->name, $term->term_id, $term->taxonomy, 'display'))
|
|
| 818 | + ); |
|
| 819 | + } |
|
| 820 | + } |
|
| 821 | + /* Join the terms, separating them with a comma. */ |
|
| 822 | + echo(join(', ', $out));
|
|
| 823 | + } /* If no terms were found, output a default message. */ |
|
| 824 | + else {
|
|
| 825 | + _e('No Categories', 'geodirectory');
|
|
| 826 | + } |
|
| 827 | + break; |
|
| 828 | + |
|
| 829 | + endswitch; |
|
| 830 | + } |
|
| 831 | 831 | } |
| 832 | 832 | |
| 833 | 833 | |
| 834 | 834 | if (!function_exists('geodir_post_sortable_columns')) {
|
| 835 | - /** |
|
| 836 | - * Makes admin post listing page columns sortable. |
|
| 837 | - * |
|
| 838 | - * @since 1.0.0 |
|
| 839 | - * @package GeoDirectory |
|
| 840 | - * @param array $columns The column array. |
|
| 841 | - * @return array Altered column array. |
|
| 842 | - */ |
|
| 843 | - function geodir_post_sortable_columns($columns) |
|
| 844 | - {
|
|
| 845 | - |
|
| 846 | - $columns['expire'] = 'expire'; |
|
| 847 | - |
|
| 848 | - return $columns; |
|
| 849 | - } |
|
| 835 | + /** |
|
| 836 | + * Makes admin post listing page columns sortable. |
|
| 837 | + * |
|
| 838 | + * @since 1.0.0 |
|
| 839 | + * @package GeoDirectory |
|
| 840 | + * @param array $columns The column array. |
|
| 841 | + * @return array Altered column array. |
|
| 842 | + */ |
|
| 843 | + function geodir_post_sortable_columns($columns) |
|
| 844 | + {
|
|
| 845 | + |
|
| 846 | + $columns['expire'] = 'expire'; |
|
| 847 | + |
|
| 848 | + return $columns; |
|
| 849 | + } |
|
| 850 | 850 | } |
| 851 | 851 | |
| 852 | 852 | /** |
@@ -860,32 +860,32 @@ discard block |
||
| 860 | 860 | * @param int $post_id The post ID. |
| 861 | 861 | */ |
| 862 | 862 | function geodir_post_information_save($post_id, $post) {
|
| 863 | - global $wpdb, $current_user; |
|
| 863 | + global $wpdb, $current_user; |
|
| 864 | 864 | |
| 865 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 866 | - return; |
|
| 867 | - } |
|
| 865 | + if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 866 | + return; |
|
| 867 | + } |
|
| 868 | 868 | |
| 869 | - $geodir_posttypes = geodir_get_posttypes(); |
|
| 869 | + $geodir_posttypes = geodir_get_posttypes(); |
|
| 870 | 870 | |
| 871 | - if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | - return; |
|
| 871 | + if (defined('DOING_AUTOSAVE') && DOING_AUTOSAVE)
|
|
| 872 | + return; |
|
| 873 | 873 | |
| 874 | - if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 875 | - if (isset($_REQUEST['_status'])) |
|
| 876 | - geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 874 | + if (!wp_is_post_revision($post_id) && isset($post->post_type) && in_array($post->post_type, $geodir_posttypes)) {
|
|
| 875 | + if (isset($_REQUEST['_status'])) |
|
| 876 | + geodir_change_post_status($post_id, $_REQUEST['_status']); |
|
| 877 | 877 | |
| 878 | - if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | - return; |
|
| 878 | + if (isset($_REQUEST['action']) && ($_REQUEST['action'] == 'trash' || $_REQUEST['action'] == 'untrash')) |
|
| 879 | + return; |
|
| 880 | 880 | |
| 881 | - if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | - return; |
|
| 881 | + if (!isset($_POST['geodir_post_info_noncename']) || !wp_verify_nonce($_POST['geodir_post_info_noncename'], plugin_basename(__FILE__))) |
|
| 882 | + return; |
|
| 883 | 883 | |
| 884 | - if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | - return; |
|
| 884 | + if (!isset($_POST['geodir_post_attachments_noncename']) || !wp_verify_nonce($_POST['geodir_post_attachments_noncename'], plugin_basename(__FILE__))) |
|
| 885 | + return; |
|
| 886 | 886 | |
| 887 | - geodir_save_listing($_REQUEST); |
|
| 888 | - } |
|
| 887 | + geodir_save_listing($_REQUEST); |
|
| 888 | + } |
|
| 889 | 889 | } |
| 890 | 890 | |
| 891 | 891 | /** |
@@ -901,102 +901,102 @@ discard block |
||
| 901 | 901 | */ |
| 902 | 902 | function geodir_admin_fields($options) |
| 903 | 903 | {
|
| 904 | - global $geodirectory; |
|
| 905 | - |
|
| 906 | - $first_title = true; |
|
| 907 | - $tab_id = ''; |
|
| 908 | - $i = 0; |
|
| 909 | - foreach ($options as $value) : |
|
| 910 | - if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | - if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | - if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | - if (!isset($value['std'])) $value['std'] = ''; |
|
| 914 | - $desc = ''; |
|
| 915 | - switch ($value['type']) : |
|
| 916 | - case 'dummy_installer': |
|
| 917 | - $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
| 918 | - geodir_autoinstall_admin_header($post_type); |
|
| 919 | - break; |
|
| 920 | - case 'title': |
|
| 921 | - |
|
| 922 | - if ($i == 0) {
|
|
| 923 | - echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
| 924 | - echo '<div class="inner_content_tab_main">'; |
|
| 925 | - } |
|
| 904 | + global $geodirectory; |
|
| 905 | + |
|
| 906 | + $first_title = true; |
|
| 907 | + $tab_id = ''; |
|
| 908 | + $i = 0; |
|
| 909 | + foreach ($options as $value) : |
|
| 910 | + if (!isset($value['name'])) $value['name'] = ''; |
|
| 911 | + if (!isset($value['class'])) $value['class'] = ''; |
|
| 912 | + if (!isset($value['css'])) $value['css'] = ''; |
|
| 913 | + if (!isset($value['std'])) $value['std'] = ''; |
|
| 914 | + $desc = ''; |
|
| 915 | + switch ($value['type']) : |
|
| 916 | + case 'dummy_installer': |
|
| 917 | + $post_type = isset($value['post_type']) ? $value['post_type'] : 'gd_place'; |
|
| 918 | + geodir_autoinstall_admin_header($post_type); |
|
| 919 | + break; |
|
| 920 | + case 'title': |
|
| 921 | + |
|
| 922 | + if ($i == 0) {
|
|
| 923 | + echo '<dl id="geodir_oiption_tabs" class="gd-tab-head"></dl>'; |
|
| 924 | + echo '<div class="inner_content_tab_main">'; |
|
| 925 | + } |
|
| 926 | 926 | |
| 927 | - $i++; |
|
| 927 | + $i++; |
|
| 928 | 928 | |
| 929 | - if (isset($value['id']) && $value['id']) |
|
| 930 | - $tab_id = $value['id']; |
|
| 929 | + if (isset($value['id']) && $value['id']) |
|
| 930 | + $tab_id = $value['id']; |
|
| 931 | 931 | |
| 932 | - if (isset($value['desc']) && $value['desc']) |
|
| 933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 932 | + if (isset($value['desc']) && $value['desc']) |
|
| 933 | + $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 934 | 934 | |
| 935 | - if (isset($value['name']) && $value['name']) {
|
|
| 936 | - if ($first_title === true) {
|
|
| 937 | - $first_title = false; |
|
| 938 | - } else {
|
|
| 939 | - echo '</div>'; |
|
| 940 | - } |
|
| 941 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 935 | + if (isset($value['name']) && $value['name']) {
|
|
| 936 | + if ($first_title === true) {
|
|
| 937 | + $first_title = false; |
|
| 938 | + } else {
|
|
| 939 | + echo '</div>'; |
|
| 940 | + } |
|
| 941 | + echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 942 | 942 | |
| 943 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | - } |
|
| 943 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | + } |
|
| 945 | 945 | |
| 946 | - /** |
|
| 947 | - * Called after a GeoDirectory settings title is output in the GD settings page. |
|
| 948 | - * |
|
| 949 | - * The action is called dynamically geodir_settings_$value['id']. |
|
| 950 | - * |
|
| 951 | - * @since 1.0.0 |
|
| 952 | - */ |
|
| 953 | - do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 954 | - break; |
|
| 955 | - |
|
| 956 | - case 'no_tabs': |
|
| 957 | - |
|
| 958 | - echo '<div class="inner_content_tab_main">'; |
|
| 959 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | - |
|
| 961 | - break; |
|
| 962 | - |
|
| 963 | - case 'sectionstart': |
|
| 964 | - if (isset($value['desc']) && $value['desc']) |
|
| 965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | - if (isset($value['name']) && $value['name']) |
|
| 967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 968 | - /** |
|
| 969 | - * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
| 970 | - * |
|
| 971 | - * The action is called dynamically geodir_settings_$value['id']_start. |
|
| 972 | - * |
|
| 973 | - * @since 1.0.0 |
|
| 974 | - */ |
|
| 975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | - echo '<table class="form-table">' . "\n\n"; |
|
| 977 | - |
|
| 978 | - break; |
|
| 979 | - case 'sectionend': |
|
| 980 | - /** |
|
| 981 | - * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 982 | - * |
|
| 983 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 984 | - * |
|
| 985 | - * @since 1.0.0 |
|
| 986 | - */ |
|
| 987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 988 | - echo '</table>'; |
|
| 989 | - /** |
|
| 990 | - * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 991 | - * |
|
| 992 | - * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 993 | - * |
|
| 994 | - * @since 1.0.0 |
|
| 995 | - */ |
|
| 996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 997 | - break; |
|
| 998 | - case 'text': |
|
| 999 | - ?> |
|
| 946 | + /** |
|
| 947 | + * Called after a GeoDirectory settings title is output in the GD settings page. |
|
| 948 | + * |
|
| 949 | + * The action is called dynamically geodir_settings_$value['id']. |
|
| 950 | + * |
|
| 951 | + * @since 1.0.0 |
|
| 952 | + */ |
|
| 953 | + do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 954 | + break; |
|
| 955 | + |
|
| 956 | + case 'no_tabs': |
|
| 957 | + |
|
| 958 | + echo '<div class="inner_content_tab_main">'; |
|
| 959 | + echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | + |
|
| 961 | + break; |
|
| 962 | + |
|
| 963 | + case 'sectionstart': |
|
| 964 | + if (isset($value['desc']) && $value['desc']) |
|
| 965 | + $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 966 | + if (isset($value['name']) && $value['name']) |
|
| 967 | + echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 968 | + /** |
|
| 969 | + * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
|
| 970 | + * |
|
| 971 | + * The action is called dynamically geodir_settings_$value['id']_start. |
|
| 972 | + * |
|
| 973 | + * @since 1.0.0 |
|
| 974 | + */ |
|
| 975 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | + echo '<table class="form-table">' . "\n\n"; |
|
| 977 | + |
|
| 978 | + break; |
|
| 979 | + case 'sectionend': |
|
| 980 | + /** |
|
| 981 | + * Called before a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 982 | + * |
|
| 983 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 984 | + * |
|
| 985 | + * @since 1.0.0 |
|
| 986 | + */ |
|
| 987 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 988 | + echo '</table>'; |
|
| 989 | + /** |
|
| 990 | + * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
|
| 991 | + * |
|
| 992 | + * The action is called dynamically geodir_settings_$value['id']_end. |
|
| 993 | + * |
|
| 994 | + * @since 1.0.0 |
|
| 995 | + */ |
|
| 996 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 997 | + break; |
|
| 998 | + case 'text': |
|
| 999 | + ?> |
|
| 1000 | 1000 | <tr valign="top"> |
| 1001 | 1001 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1002 | 1002 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1005,15 +1005,15 @@ discard block |
||
| 1005 | 1005 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1006 | 1006 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1007 | 1007 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1008 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1009 | - } else {
|
|
| 1010 | - echo esc_attr($value['std']); |
|
| 1011 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1008 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1009 | + } else {
|
|
| 1010 | + echo esc_attr($value['std']); |
|
| 1011 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1012 | 1012 | </tr><?php |
| 1013 | - break; |
|
| 1013 | + break; |
|
| 1014 | 1014 | |
| 1015 | - case 'map-key': |
|
| 1016 | - ?> |
|
| 1015 | + case 'map-key': |
|
| 1016 | + ?> |
|
| 1017 | 1017 | <tr valign="top"> |
| 1018 | 1018 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1019 | 1019 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1022,17 +1022,17 @@ discard block |
||
| 1022 | 1022 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1023 | 1023 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1024 | 1024 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1025 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1026 | - } else {
|
|
| 1027 | - echo esc_attr($value['std']); |
|
| 1028 | - } ?>"/> |
|
| 1025 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1026 | + } else {
|
|
| 1027 | + echo esc_attr($value['std']); |
|
| 1028 | + } ?>"/> |
|
| 1029 | 1029 | <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
|
| 1030 | 1030 | <span class="description"><?php echo $value['desc']; ?></span></td> |
| 1031 | 1031 | </tr><?php |
| 1032 | - break; |
|
| 1032 | + break; |
|
| 1033 | 1033 | |
| 1034 | - case 'password': |
|
| 1035 | - ?> |
|
| 1034 | + case 'password': |
|
| 1035 | + ?> |
|
| 1036 | 1036 | <tr valign="top"> |
| 1037 | 1037 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1038 | 1038 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
@@ -1041,42 +1041,42 @@ discard block |
||
| 1041 | 1041 | <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
| 1042 | 1042 | style="<?php echo esc_attr($value['css']); ?>" |
| 1043 | 1043 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1044 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1045 | - } else {
|
|
| 1046 | - echo esc_attr($value['std']); |
|
| 1047 | - } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1044 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1045 | + } else {
|
|
| 1046 | + echo esc_attr($value['std']); |
|
| 1047 | + } ?>"/> <span class="description"><?php echo $value['desc']; ?></span></td> |
|
| 1048 | 1048 | </tr><?php |
| 1049 | - break; |
|
| 1049 | + break; |
|
| 1050 | 1050 | |
| 1051 | - case 'html_content': |
|
| 1052 | - ?> |
|
| 1051 | + case 'html_content': |
|
| 1052 | + ?> |
|
| 1053 | 1053 | <tr valign="top"> |
| 1054 | 1054 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1055 | 1055 | <td class="forminp"><span class="description"><?php echo $value['desc']; ?></span></td> |
| 1056 | 1056 | </tr><?php |
| 1057 | - break; |
|
| 1057 | + break; |
|
| 1058 | 1058 | |
| 1059 | - case 'color' : |
|
| 1060 | - ?> |
|
| 1059 | + case 'color' : |
|
| 1060 | + ?> |
|
| 1061 | 1061 | <tr valign="top"> |
| 1062 | 1062 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1063 | 1063 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1064 | 1064 | id="<?php echo esc_attr($value['id']); ?>" type="text" |
| 1065 | 1065 | style="<?php echo esc_attr($value['css']); ?>" |
| 1066 | 1066 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1067 | - echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1068 | - } else {
|
|
| 1069 | - echo esc_attr($value['std']); |
|
| 1070 | - } ?>" class="colorpick"/> <span |
|
| 1067 | + echo esc_attr(stripslashes(get_option($value['id']))); |
|
| 1068 | + } else {
|
|
| 1069 | + echo esc_attr($value['std']); |
|
| 1070 | + } ?>" class="colorpick"/> <span |
|
| 1071 | 1071 | class="description"><?php echo $value['desc']; ?></span> |
| 1072 | 1072 | |
| 1073 | 1073 | <div id="colorPickerDiv_<?php echo esc_attr($value['id']); ?>" class="colorpickdiv" |
| 1074 | 1074 | style="z-index: 100;background:#eee;border:1px solid #ccc;position:absolute;display:none;"></div> |
| 1075 | 1075 | </td> |
| 1076 | 1076 | </tr><?php |
| 1077 | - break; |
|
| 1078 | - case 'image_width' : |
|
| 1079 | - ?> |
|
| 1077 | + break; |
|
| 1078 | + case 'image_width' : |
|
| 1079 | + ?> |
|
| 1080 | 1080 | <tr valign="top"> |
| 1081 | 1081 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1082 | 1082 | <td class="forminp"> |
@@ -1098,11 +1098,11 @@ discard block |
||
| 1098 | 1098 | |
| 1099 | 1099 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1100 | 1100 | </tr><?php |
| 1101 | - break; |
|
| 1102 | - case 'select': |
|
| 1103 | - $option_value = get_option($value['id']); |
|
| 1104 | - $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
| 1105 | - ?> |
|
| 1101 | + break; |
|
| 1102 | + case 'select': |
|
| 1103 | + $option_value = get_option($value['id']); |
|
| 1104 | + $option_value = !empty($option_value) ? stripslashes_deep($option_value) : $option_value; |
|
| 1105 | + ?> |
|
| 1106 | 1106 | <tr valign="top"> |
| 1107 | 1107 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1108 | 1108 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1111,33 +1111,33 @@ discard block |
||
| 1111 | 1111 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
| 1112 | 1112 | option-ajaxchosen="false"> |
| 1113 | 1113 | <?php |
| 1114 | - foreach ($value['options'] as $key => $val) {
|
|
| 1115 | - $geodir_select_value = ''; |
|
| 1116 | - if ($option_value != '') {
|
|
| 1117 | - if ($option_value != '' && $option_value == $key) |
|
| 1118 | - $geodir_select_value = ' selected="selected" '; |
|
| 1119 | - } else {
|
|
| 1120 | - if ($value['std'] == $key) |
|
| 1121 | - $geodir_select_value = ' selected="selected" '; |
|
| 1122 | - } |
|
| 1123 | - ?> |
|
| 1114 | + foreach ($value['options'] as $key => $val) {
|
|
| 1115 | + $geodir_select_value = ''; |
|
| 1116 | + if ($option_value != '') {
|
|
| 1117 | + if ($option_value != '' && $option_value == $key) |
|
| 1118 | + $geodir_select_value = ' selected="selected" '; |
|
| 1119 | + } else {
|
|
| 1120 | + if ($value['std'] == $key) |
|
| 1121 | + $geodir_select_value = ' selected="selected" '; |
|
| 1122 | + } |
|
| 1123 | + ?> |
|
| 1124 | 1124 | <option |
| 1125 | 1125 | value="<?php echo esc_attr($key); ?>" <?php echo $geodir_select_value; ?> ><?php echo ucfirst($val) ?></option> |
| 1126 | 1126 | <?php |
| 1127 | - } |
|
| 1128 | - ?> |
|
| 1127 | + } |
|
| 1128 | + ?> |
|
| 1129 | 1129 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1130 | 1130 | </td> |
| 1131 | 1131 | </tr><?php |
| 1132 | - break; |
|
| 1132 | + break; |
|
| 1133 | 1133 | |
| 1134 | - case 'multiselect': |
|
| 1135 | - $option_values = get_option($value['id']); |
|
| 1136 | - if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
|
|
| 1137 | - $option_values = $value['std']; |
|
| 1138 | - } |
|
| 1139 | - $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
| 1140 | - ?> |
|
| 1134 | + case 'multiselect': |
|
| 1135 | + $option_values = get_option($value['id']); |
|
| 1136 | + if ($option_values === '' && !empty($value['std']) && is_array($value['std'])) {
|
|
| 1137 | + $option_values = $value['std']; |
|
| 1138 | + } |
|
| 1139 | + $option_values = !empty($option_values) ? stripslashes_deep($option_values) : $option_values; |
|
| 1140 | + ?> |
|
| 1141 | 1141 | <tr valign="top"> |
| 1142 | 1142 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1143 | 1143 | <td class="forminp"><select multiple="multiple" name="<?php echo esc_attr($value['id']); ?>[]" |
@@ -1147,25 +1147,25 @@ discard block |
||
| 1147 | 1147 | data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
| 1148 | 1148 | option-ajaxchosen="false"> |
| 1149 | 1149 | <?php |
| 1150 | - foreach ($value['options'] as $key => $val) {
|
|
| 1151 | - if (strpos($key, 'optgroup_start-') === 0) {
|
|
| 1152 | - ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
| 1153 | - } else if (strpos($key, 'optgroup_end-') === 0) {
|
|
| 1154 | - ?></optgroup><?php |
|
| 1155 | - } else {
|
|
| 1156 | - ?> |
|
| 1150 | + foreach ($value['options'] as $key => $val) {
|
|
| 1151 | + if (strpos($key, 'optgroup_start-') === 0) {
|
|
| 1152 | + ?><optgroup label="<?php echo ucfirst($val); ?>"><?php |
|
| 1153 | + } else if (strpos($key, 'optgroup_end-') === 0) {
|
|
| 1154 | + ?></optgroup><?php |
|
| 1155 | + } else {
|
|
| 1156 | + ?> |
|
| 1157 | 1157 | <option |
| 1158 | 1158 | value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
| 1159 | 1159 | <?php |
| 1160 | - } |
|
| 1161 | - } |
|
| 1162 | - ?> |
|
| 1160 | + } |
|
| 1161 | + } |
|
| 1162 | + ?> |
|
| 1163 | 1163 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1164 | 1164 | </td> |
| 1165 | 1165 | </tr><?php |
| 1166 | - break; |
|
| 1167 | - case 'file': |
|
| 1168 | - ?> |
|
| 1166 | + break; |
|
| 1167 | + case 'file': |
|
| 1168 | + ?> |
|
| 1169 | 1169 | <tr valign="top"> |
| 1170 | 1170 | <th scope="row" class="titledesc"><?php echo $value['name']; ?></th> |
| 1171 | 1171 | <td class="forminp"> |
@@ -1185,87 +1185,87 @@ discard block |
||
| 1185 | 1185 | <?php } ?> |
| 1186 | 1186 | </td> |
| 1187 | 1187 | </tr><?php |
| 1188 | - break; |
|
| 1189 | - case 'map_default_settings' : |
|
| 1190 | - ?> |
|
| 1188 | + break; |
|
| 1189 | + case 'map_default_settings' : |
|
| 1190 | + ?> |
|
| 1191 | 1191 | |
| 1192 | 1192 | <tr valign="top"> |
| 1193 | 1193 | <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
|
| 1194 | 1194 | <td width="60%"> |
| 1195 | 1195 | <select name="geodir_default_map_language" style="width:60%"> |
| 1196 | 1196 | <?php |
| 1197 | - $arr_map_langages = array( |
|
| 1198 | - 'ar' => __('ARABIC', 'geodirectory'),
|
|
| 1199 | - 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1200 | - 'bg' => __('BULGARIAN', 'geodirectory'),
|
|
| 1201 | - 'bn' => __('BENGALI', 'geodirectory'),
|
|
| 1202 | - 'ca' => __('CATALAN', 'geodirectory'),
|
|
| 1203 | - 'cs' => __('CZECH', 'geodirectory'),
|
|
| 1204 | - 'da' => __('DANISH', 'geodirectory'),
|
|
| 1205 | - 'de' => __('GERMAN', 'geodirectory'),
|
|
| 1206 | - 'el' => __('GREEK', 'geodirectory'),
|
|
| 1207 | - 'en' => __('ENGLISH', 'geodirectory'),
|
|
| 1208 | - 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
|
|
| 1209 | - 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
|
|
| 1210 | - 'es' => __('SPANISH', 'geodirectory'),
|
|
| 1211 | - 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1212 | - 'fa' => __('FARSI', 'geodirectory'),
|
|
| 1213 | - 'fi' => __('FINNISH', 'geodirectory'),
|
|
| 1214 | - 'fil' => __('FILIPINO', 'geodirectory'),
|
|
| 1215 | - 'fr' => __('FRENCH', 'geodirectory'),
|
|
| 1216 | - 'gl' => __('GALICIAN', 'geodirectory'),
|
|
| 1217 | - 'gu' => __('GUJARATI', 'geodirectory'),
|
|
| 1218 | - 'hi' => __('HINDI', 'geodirectory'),
|
|
| 1219 | - 'hr' => __('CROATIAN', 'geodirectory'),
|
|
| 1220 | - 'hu' => __('HUNGARIAN', 'geodirectory'),
|
|
| 1221 | - 'id' => __('INDONESIAN', 'geodirectory'),
|
|
| 1222 | - 'it' => __('ITALIAN', 'geodirectory'),
|
|
| 1223 | - 'iw' => __('HEBREW', 'geodirectory'),
|
|
| 1224 | - 'ja' => __('JAPANESE', 'geodirectory'),
|
|
| 1225 | - 'kn' => __('KANNADA', 'geodirectory'),
|
|
| 1226 | - 'ko' => __('KOREAN', 'geodirectory'),
|
|
| 1227 | - 'lt' => __('LITHUANIAN', 'geodirectory'),
|
|
| 1228 | - 'lv' => __('LATVIAN', 'geodirectory'),
|
|
| 1229 | - 'ml' => __('MALAYALAM', 'geodirectory'),
|
|
| 1230 | - 'mr' => __('MARATHI', 'geodirectory'),
|
|
| 1231 | - 'nl' => __('DUTCH', 'geodirectory'),
|
|
| 1232 | - 'no' => __('NORWEGIAN', 'geodirectory'),
|
|
| 1233 | - 'pl' => __('POLISH', 'geodirectory'),
|
|
| 1234 | - 'pt' => __('PORTUGUESE', 'geodirectory'),
|
|
| 1235 | - 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
|
|
| 1236 | - 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
|
|
| 1237 | - 'ro' => __('ROMANIAN', 'geodirectory'),
|
|
| 1238 | - 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1239 | - 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1240 | - 'sk' => __('SLOVAK', 'geodirectory'),
|
|
| 1241 | - 'sl' => __('SLOVENIAN', 'geodirectory'),
|
|
| 1242 | - 'sr' => __('SERBIAN', 'geodirectory'),
|
|
| 1243 | - 'sv' => __(' SWEDISH', 'geodirectory'),
|
|
| 1244 | - 'tl' => __('TAGALOG', 'geodirectory'),
|
|
| 1245 | - 'ta' => __('TAMIL', 'geodirectory'),
|
|
| 1246 | - 'te' => __('TELUGU', 'geodirectory'),
|
|
| 1247 | - 'th' => __('THAI', 'geodirectory'),
|
|
| 1248 | - 'tr' => __('TURKISH', 'geodirectory'),
|
|
| 1249 | - 'uk' => __('UKRAINIAN', 'geodirectory'),
|
|
| 1250 | - 'vi' => __('VIETNAMESE', 'geodirectory'),
|
|
| 1251 | - 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
|
|
| 1252 | - 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
|
| 1253 | - ); |
|
| 1254 | - $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 1255 | - if (empty($geodir_default_map_language)) |
|
| 1256 | - $geodir_default_map_language = 'en'; |
|
| 1257 | - foreach ($arr_map_langages as $language_key => $language_txt) {
|
|
| 1258 | - if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1259 | - $geodir_default_language_selected = "selected='selected'"; |
|
| 1260 | - else |
|
| 1261 | - $geodir_default_language_selected = ''; |
|
| 1262 | - |
|
| 1263 | - ?> |
|
| 1197 | + $arr_map_langages = array( |
|
| 1198 | + 'ar' => __('ARABIC', 'geodirectory'),
|
|
| 1199 | + 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1200 | + 'bg' => __('BULGARIAN', 'geodirectory'),
|
|
| 1201 | + 'bn' => __('BENGALI', 'geodirectory'),
|
|
| 1202 | + 'ca' => __('CATALAN', 'geodirectory'),
|
|
| 1203 | + 'cs' => __('CZECH', 'geodirectory'),
|
|
| 1204 | + 'da' => __('DANISH', 'geodirectory'),
|
|
| 1205 | + 'de' => __('GERMAN', 'geodirectory'),
|
|
| 1206 | + 'el' => __('GREEK', 'geodirectory'),
|
|
| 1207 | + 'en' => __('ENGLISH', 'geodirectory'),
|
|
| 1208 | + 'en-AU' => __('ENGLISH (AUSTRALIAN)', 'geodirectory'),
|
|
| 1209 | + 'en-GB' => __('ENGLISH (GREAT BRITAIN)', 'geodirectory'),
|
|
| 1210 | + 'es' => __('SPANISH', 'geodirectory'),
|
|
| 1211 | + 'eu' => __('BASQUE', 'geodirectory'),
|
|
| 1212 | + 'fa' => __('FARSI', 'geodirectory'),
|
|
| 1213 | + 'fi' => __('FINNISH', 'geodirectory'),
|
|
| 1214 | + 'fil' => __('FILIPINO', 'geodirectory'),
|
|
| 1215 | + 'fr' => __('FRENCH', 'geodirectory'),
|
|
| 1216 | + 'gl' => __('GALICIAN', 'geodirectory'),
|
|
| 1217 | + 'gu' => __('GUJARATI', 'geodirectory'),
|
|
| 1218 | + 'hi' => __('HINDI', 'geodirectory'),
|
|
| 1219 | + 'hr' => __('CROATIAN', 'geodirectory'),
|
|
| 1220 | + 'hu' => __('HUNGARIAN', 'geodirectory'),
|
|
| 1221 | + 'id' => __('INDONESIAN', 'geodirectory'),
|
|
| 1222 | + 'it' => __('ITALIAN', 'geodirectory'),
|
|
| 1223 | + 'iw' => __('HEBREW', 'geodirectory'),
|
|
| 1224 | + 'ja' => __('JAPANESE', 'geodirectory'),
|
|
| 1225 | + 'kn' => __('KANNADA', 'geodirectory'),
|
|
| 1226 | + 'ko' => __('KOREAN', 'geodirectory'),
|
|
| 1227 | + 'lt' => __('LITHUANIAN', 'geodirectory'),
|
|
| 1228 | + 'lv' => __('LATVIAN', 'geodirectory'),
|
|
| 1229 | + 'ml' => __('MALAYALAM', 'geodirectory'),
|
|
| 1230 | + 'mr' => __('MARATHI', 'geodirectory'),
|
|
| 1231 | + 'nl' => __('DUTCH', 'geodirectory'),
|
|
| 1232 | + 'no' => __('NORWEGIAN', 'geodirectory'),
|
|
| 1233 | + 'pl' => __('POLISH', 'geodirectory'),
|
|
| 1234 | + 'pt' => __('PORTUGUESE', 'geodirectory'),
|
|
| 1235 | + 'pt-BR' => __('PORTUGUESE (BRAZIL)', 'geodirectory'),
|
|
| 1236 | + 'pt-PT' => __('PORTUGUESE (PORTUGAL)', 'geodirectory'),
|
|
| 1237 | + 'ro' => __('ROMANIAN', 'geodirectory'),
|
|
| 1238 | + 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1239 | + 'ru' => __('RUSSIAN', 'geodirectory'),
|
|
| 1240 | + 'sk' => __('SLOVAK', 'geodirectory'),
|
|
| 1241 | + 'sl' => __('SLOVENIAN', 'geodirectory'),
|
|
| 1242 | + 'sr' => __('SERBIAN', 'geodirectory'),
|
|
| 1243 | + 'sv' => __(' SWEDISH', 'geodirectory'),
|
|
| 1244 | + 'tl' => __('TAGALOG', 'geodirectory'),
|
|
| 1245 | + 'ta' => __('TAMIL', 'geodirectory'),
|
|
| 1246 | + 'te' => __('TELUGU', 'geodirectory'),
|
|
| 1247 | + 'th' => __('THAI', 'geodirectory'),
|
|
| 1248 | + 'tr' => __('TURKISH', 'geodirectory'),
|
|
| 1249 | + 'uk' => __('UKRAINIAN', 'geodirectory'),
|
|
| 1250 | + 'vi' => __('VIETNAMESE', 'geodirectory'),
|
|
| 1251 | + 'zh-CN' => __('CHINESE (SIMPLIFIED)', 'geodirectory'),
|
|
| 1252 | + 'zh-TW' => __('CHINESE (TRADITIONAL)', 'geodirectory'),
|
|
| 1253 | + ); |
|
| 1254 | + $geodir_default_map_language = get_option('geodir_default_map_language');
|
|
| 1255 | + if (empty($geodir_default_map_language)) |
|
| 1256 | + $geodir_default_map_language = 'en'; |
|
| 1257 | + foreach ($arr_map_langages as $language_key => $language_txt) {
|
|
| 1258 | + if (!empty($geodir_default_map_language) && $language_key == $geodir_default_map_language) |
|
| 1259 | + $geodir_default_language_selected = "selected='selected'"; |
|
| 1260 | + else |
|
| 1261 | + $geodir_default_language_selected = ''; |
|
| 1262 | + |
|
| 1263 | + ?> |
|
| 1264 | 1264 | <option |
| 1265 | 1265 | value="<?php echo $language_key?>" <?php echo $geodir_default_language_selected; ?>><?php echo $language_txt; ?></option> |
| 1266 | 1266 | |
| 1267 | 1267 | <?php } |
| 1268 | - ?> |
|
| 1268 | + ?> |
|
| 1269 | 1269 | </select> |
| 1270 | 1270 | </td> |
| 1271 | 1271 | </tr> |
@@ -1276,46 +1276,46 @@ discard block |
||
| 1276 | 1276 | <td width="60%"> |
| 1277 | 1277 | <select name="geodir_default_map_search_pt" style="width:60%"> |
| 1278 | 1278 | <?php |
| 1279 | - $post_types = geodir_get_posttypes('array');
|
|
| 1280 | - $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
|
| 1281 | - if (empty($geodir_default_map_search_pt)) |
|
| 1282 | - $geodir_default_map_search_pt = 'gd_place'; |
|
| 1283 | - if (is_array($post_types)) {
|
|
| 1284 | - foreach ($post_types as $key => $post_types_obj) {
|
|
| 1285 | - if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1286 | - $geodir_search_pt_selected = "selected='selected'"; |
|
| 1287 | - else |
|
| 1288 | - $geodir_search_pt_selected = ''; |
|
| 1289 | - |
|
| 1290 | - ?> |
|
| 1279 | + $post_types = geodir_get_posttypes('array');
|
|
| 1280 | + $geodir_default_map_search_pt = get_option('geodir_default_map_search_pt');
|
|
| 1281 | + if (empty($geodir_default_map_search_pt)) |
|
| 1282 | + $geodir_default_map_search_pt = 'gd_place'; |
|
| 1283 | + if (is_array($post_types)) {
|
|
| 1284 | + foreach ($post_types as $key => $post_types_obj) {
|
|
| 1285 | + if (!empty($geodir_default_map_search_pt) && $key == $geodir_default_map_search_pt) |
|
| 1286 | + $geodir_search_pt_selected = "selected='selected'"; |
|
| 1287 | + else |
|
| 1288 | + $geodir_search_pt_selected = ''; |
|
| 1289 | + |
|
| 1290 | + ?> |
|
| 1291 | 1291 | <option |
| 1292 | 1292 | value="<?php echo $key?>" <?php echo $geodir_search_pt_selected; ?>><?php echo __($post_types_obj['labels']['singular_name'], 'geodirectory'); ?></option> |
| 1293 | 1293 | |
| 1294 | 1294 | <?php } |
| 1295 | 1295 | |
| 1296 | - } |
|
| 1296 | + } |
|
| 1297 | 1297 | |
| 1298 | - ?> |
|
| 1298 | + ?> |
|
| 1299 | 1299 | </select> |
| 1300 | 1300 | </td> |
| 1301 | 1301 | </tr> |
| 1302 | 1302 | |
| 1303 | 1303 | <?php |
| 1304 | - break; |
|
| 1304 | + break; |
|
| 1305 | 1305 | |
| 1306 | - case 'map': |
|
| 1307 | - ?> |
|
| 1306 | + case 'map': |
|
| 1307 | + ?> |
|
| 1308 | 1308 | <tr valign="top"> |
| 1309 | 1309 | <td class="forminp"> |
| 1310 | 1310 | <?php |
| 1311 | - global $post_cat, $cat_display; |
|
| 1312 | - $post_types = geodir_get_posttypes('object');
|
|
| 1313 | - $cat_display = 'checkbox'; |
|
| 1314 | - $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
|
| 1315 | - $gd_cats = get_option('geodir_exclude_cat_on_map');
|
|
| 1316 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | - $count = 1; |
|
| 1318 | - ?> |
|
| 1311 | + global $post_cat, $cat_display; |
|
| 1312 | + $post_types = geodir_get_posttypes('object');
|
|
| 1313 | + $cat_display = 'checkbox'; |
|
| 1314 | + $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
|
| 1315 | + $gd_cats = get_option('geodir_exclude_cat_on_map');
|
|
| 1316 | + $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | + $count = 1; |
|
| 1318 | + ?> |
|
| 1319 | 1319 | <table width="70%" class="widefat"> |
| 1320 | 1320 | <thead> |
| 1321 | 1321 | <tr> |
@@ -1324,18 +1324,18 @@ discard block |
||
| 1324 | 1324 | <th><b><?php echo DESIGN_POST_TYPE_CAT; ?></b></th> |
| 1325 | 1325 | </tr> |
| 1326 | 1326 | <?php |
| 1327 | - $gd_categs = $gd_cats; |
|
| 1328 | - foreach ($post_types as $key => $post_types_obj) : |
|
| 1329 | - $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
| 1330 | - $gd_taxonomy = geodir_get_taxonomies($key); |
|
| 1331 | - if ($gd_cats_upgrade) {
|
|
| 1332 | - $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
| 1333 | - $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
| 1334 | - $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
| 1335 | - } |
|
| 1336 | - $post_cat = implode(',', $gd_cats);
|
|
| 1337 | - $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
| 1338 | - ?> |
|
| 1327 | + $gd_categs = $gd_cats; |
|
| 1328 | + foreach ($post_types as $key => $post_types_obj) : |
|
| 1329 | + $checked = is_array($gd_post_types) && in_array($key, $gd_post_types) ? 'checked="checked"' : ''; |
|
| 1330 | + $gd_taxonomy = geodir_get_taxonomies($key); |
|
| 1331 | + if ($gd_cats_upgrade) {
|
|
| 1332 | + $gd_cat_taxonomy = isset($gd_taxonomy[0]) ? $gd_taxonomy[0] : ''; |
|
| 1333 | + $gd_cats = isset($gd_categs[$gd_cat_taxonomy]) ? $gd_categs[$gd_cat_taxonomy] : array(); |
|
| 1334 | + $gd_cats = !empty($gd_cats) && is_array($gd_cats) ? array_unique($gd_cats) : array(); |
|
| 1335 | + } |
|
| 1336 | + $post_cat = implode(',', $gd_cats);
|
|
| 1337 | + $gd_taxonomy_list = geodir_custom_taxonomy_walker($gd_taxonomy); |
|
| 1338 | + ?> |
|
| 1339 | 1339 | <tr> |
| 1340 | 1340 | <td valign="top" width="5%"><?php echo $count; ?></td> |
| 1341 | 1341 | <td valign="top" width="25%" id="td_post_types"><input type="checkbox" |
@@ -1356,19 +1356,19 @@ discard block |
||
| 1356 | 1356 | </td> |
| 1357 | 1357 | </tr> |
| 1358 | 1358 | <?php |
| 1359 | - break; |
|
| 1359 | + break; |
|
| 1360 | 1360 | |
| 1361 | - case 'checkbox' : |
|
| 1361 | + case 'checkbox' : |
|
| 1362 | 1362 | |
| 1363 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
| 1364 | - ?> |
|
| 1363 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'start')) : |
|
| 1364 | + ?> |
|
| 1365 | 1365 | <tr valign="top"> |
| 1366 | 1366 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1367 | 1367 | <td class="forminp"> |
| 1368 | 1368 | <?php |
| 1369 | - endif; |
|
| 1369 | + endif; |
|
| 1370 | 1370 | |
| 1371 | - ?> |
|
| 1371 | + ?> |
|
| 1372 | 1372 | <fieldset> |
| 1373 | 1373 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1374 | 1374 | <label for="<?php echo $value['id'] ?>"> |
@@ -1378,49 +1378,49 @@ discard block |
||
| 1378 | 1378 | </fieldset> |
| 1379 | 1379 | <?php |
| 1380 | 1380 | |
| 1381 | - if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
| 1382 | - ?> |
|
| 1381 | + if (!isset($value['checkboxgroup']) || (isset($value['checkboxgroup']) && $value['checkboxgroup'] == 'end')) : |
|
| 1382 | + ?> |
|
| 1383 | 1383 | </td> |
| 1384 | 1384 | </tr> |
| 1385 | 1385 | <?php |
| 1386 | - endif; |
|
| 1386 | + endif; |
|
| 1387 | 1387 | |
| 1388 | - break; |
|
| 1388 | + break; |
|
| 1389 | 1389 | |
| 1390 | - case 'radio' : |
|
| 1390 | + case 'radio' : |
|
| 1391 | 1391 | |
| 1392 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
| 1393 | - ?> |
|
| 1392 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'start')) : |
|
| 1393 | + ?> |
|
| 1394 | 1394 | <tr valign="top"> |
| 1395 | 1395 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1396 | 1396 | <td class="forminp"> |
| 1397 | 1397 | <?php |
| 1398 | - endif; |
|
| 1398 | + endif; |
|
| 1399 | 1399 | |
| 1400 | - ?> |
|
| 1400 | + ?> |
|
| 1401 | 1401 | <fieldset> |
| 1402 | 1402 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1403 | 1403 | <label for="<?php echo $value['id'];?>"> |
| 1404 | 1404 | <input name="<?php echo esc_attr($value['id']); ?>" |
| 1405 | 1405 | id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
| 1406 | 1406 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1407 | - echo 'checked="checked"'; |
|
| 1408 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1407 | + echo 'checked="checked"'; |
|
| 1408 | + }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1409 | 1409 | <?php echo $value['desc']; ?></label><br> |
| 1410 | 1410 | </fieldset> |
| 1411 | 1411 | <?php |
| 1412 | 1412 | |
| 1413 | - if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
| 1414 | - ?> |
|
| 1413 | + if (!isset($value['radiogroup']) || (isset($value['radiogroup']) && $value['radiogroup'] == 'end')) : |
|
| 1414 | + ?> |
|
| 1415 | 1415 | </td> |
| 1416 | 1416 | </tr> |
| 1417 | 1417 | <?php |
| 1418 | - endif; |
|
| 1418 | + endif; |
|
| 1419 | 1419 | |
| 1420 | - break; |
|
| 1420 | + break; |
|
| 1421 | 1421 | |
| 1422 | - case 'textarea': |
|
| 1423 | - ?> |
|
| 1422 | + case 'textarea': |
|
| 1423 | + ?> |
|
| 1424 | 1424 | <tr valign="top"> |
| 1425 | 1425 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1426 | 1426 | <td class="forminp"> |
@@ -1433,30 +1433,30 @@ discard block |
||
| 1433 | 1433 | |
| 1434 | 1434 | </td> |
| 1435 | 1435 | </tr><?php |
| 1436 | - break; |
|
| 1436 | + break; |
|
| 1437 | 1437 | |
| 1438 | - case 'editor': |
|
| 1439 | - ?> |
|
| 1438 | + case 'editor': |
|
| 1439 | + ?> |
|
| 1440 | 1440 | <tr valign="top"> |
| 1441 | 1441 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1442 | 1442 | <td class="forminp"><?php |
| 1443 | - if (get_option($value['id'])) |
|
| 1444 | - $content = stripslashes(get_option($value['id'])); |
|
| 1445 | - else |
|
| 1446 | - $content = $value['std']; |
|
| 1443 | + if (get_option($value['id'])) |
|
| 1444 | + $content = stripslashes(get_option($value['id'])); |
|
| 1445 | + else |
|
| 1446 | + $content = $value['std']; |
|
| 1447 | 1447 | |
| 1448 | - $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
|
| 1448 | + $editor_settings = array('media_buttons' => false, 'textarea_rows' => 10);
|
|
| 1449 | 1449 | |
| 1450 | - wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
| 1450 | + wp_editor($content, esc_attr($value['id']), $editor_settings); |
|
| 1451 | 1451 | |
| 1452 | - ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
| 1452 | + ?> <span class="description"><?php echo $value['desc'] ?></span> |
|
| 1453 | 1453 | |
| 1454 | 1454 | </td> |
| 1455 | 1455 | </tr><?php |
| 1456 | - break; |
|
| 1456 | + break; |
|
| 1457 | 1457 | |
| 1458 | - case 'single_select_page' : |
|
| 1459 | - // WPML |
|
| 1458 | + case 'single_select_page' : |
|
| 1459 | + // WPML |
|
| 1460 | 1460 | $switch_lang = false; |
| 1461 | 1461 | $disabled = ''; |
| 1462 | 1462 | if (geodir_is_wpml() && isset($_REQUEST['tab']) && $_REQUEST['tab'] == 'permalink_settings') {
|
@@ -1474,18 +1474,18 @@ discard block |
||
| 1474 | 1474 | // |
| 1475 | 1475 | $page_setting = (int)get_option($value['id']); |
| 1476 | 1476 | |
| 1477 | - $args = array('name' => $value['id'],
|
|
| 1478 | - 'id' => $value['id'], |
|
| 1479 | - 'sort_column' => 'menu_order', |
|
| 1480 | - 'sort_order' => 'ASC', |
|
| 1481 | - 'show_option_none' => ' ', |
|
| 1482 | - 'class' => $value['class'], |
|
| 1483 | - 'echo' => false, |
|
| 1484 | - 'selected' => $page_setting); |
|
| 1477 | + $args = array('name' => $value['id'],
|
|
| 1478 | + 'id' => $value['id'], |
|
| 1479 | + 'sort_column' => 'menu_order', |
|
| 1480 | + 'sort_order' => 'ASC', |
|
| 1481 | + 'show_option_none' => ' ', |
|
| 1482 | + 'class' => $value['class'], |
|
| 1483 | + 'echo' => false, |
|
| 1484 | + 'selected' => $page_setting); |
|
| 1485 | 1485 | |
| 1486 | - if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1486 | + if (isset($value['args'])) $args = wp_parse_args($value['args'], $args); |
|
| 1487 | 1487 | |
| 1488 | - ?> |
|
| 1488 | + ?> |
|
| 1489 | 1489 | <tr valign="top" class="single_select_page"> |
| 1490 | 1490 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1491 | 1491 | <td class="forminp"> |
@@ -1496,17 +1496,17 @@ discard block |
||
| 1496 | 1496 | if ($switch_lang) {
|
| 1497 | 1497 | $sitepress->switch_lang($switch_lang, true); |
| 1498 | 1498 | } |
| 1499 | - break; |
|
| 1500 | - case 'single_select_country' : |
|
| 1501 | - $country_setting = (string)get_option($value['id']); |
|
| 1502 | - if (strstr($country_setting, ':')) : |
|
| 1503 | - $country = current(explode(':', $country_setting));
|
|
| 1504 | - $state = end(explode(':', $country_setting));
|
|
| 1505 | - else : |
|
| 1506 | - $country = $country_setting; |
|
| 1507 | - $state = '*'; |
|
| 1508 | - endif; |
|
| 1509 | - ?> |
|
| 1499 | + break; |
|
| 1500 | + case 'single_select_country' : |
|
| 1501 | + $country_setting = (string)get_option($value['id']); |
|
| 1502 | + if (strstr($country_setting, ':')) : |
|
| 1503 | + $country = current(explode(':', $country_setting));
|
|
| 1504 | + $state = end(explode(':', $country_setting));
|
|
| 1505 | + else : |
|
| 1506 | + $country = $country_setting; |
|
| 1507 | + $state = '*'; |
|
| 1508 | + endif; |
|
| 1509 | + ?> |
|
| 1510 | 1510 | <tr valign="top"> |
| 1511 | 1511 | <th scope="rpw" class="titledesc"><?php echo $value['name'] ?></th> |
| 1512 | 1512 | <td class="forminp"><select name="<?php echo esc_attr($value['id']); ?>" |
@@ -1517,12 +1517,12 @@ discard block |
||
| 1517 | 1517 | </select> <span class="description"><?php echo $value['desc'] ?></span> |
| 1518 | 1518 | </td> |
| 1519 | 1519 | </tr><?php |
| 1520 | - break; |
|
| 1521 | - case 'multi_select_countries' : |
|
| 1522 | - $countries = $geodirectory->countries->countries; |
|
| 1523 | - asort($countries); |
|
| 1524 | - $selections = (array)get_option($value['id']); |
|
| 1525 | - ?> |
|
| 1520 | + break; |
|
| 1521 | + case 'multi_select_countries' : |
|
| 1522 | + $countries = $geodirectory->countries->countries; |
|
| 1523 | + asort($countries); |
|
| 1524 | + $selections = (array)get_option($value['id']); |
|
| 1525 | + ?> |
|
| 1526 | 1526 | <tr valign="top"> |
| 1527 | 1527 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1528 | 1528 | <td class="forminp"> |
@@ -1530,21 +1530,21 @@ discard block |
||
| 1530 | 1530 | data-placeholder="<?php _e('Choose countries…', 'geodirectory'); ?>"
|
| 1531 | 1531 | title="Country" class="chosen_select"> |
| 1532 | 1532 | <?php |
| 1533 | - if ($countries) foreach ($countries as $key => $val) : |
|
| 1534 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1535 | - endforeach; |
|
| 1536 | - ?> |
|
| 1533 | + if ($countries) foreach ($countries as $key => $val) : |
|
| 1534 | + echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1535 | + endforeach; |
|
| 1536 | + ?> |
|
| 1537 | 1537 | </select> |
| 1538 | 1538 | </td> |
| 1539 | 1539 | </tr> |
| 1540 | 1540 | |
| 1541 | 1541 | <?php |
| 1542 | 1542 | |
| 1543 | - break; |
|
| 1543 | + break; |
|
| 1544 | 1544 | |
| 1545 | - case 'google_analytics' : |
|
| 1546 | - $selections = (array)get_option($value['id']); |
|
| 1547 | - ?> |
|
| 1545 | + case 'google_analytics' : |
|
| 1546 | + $selections = (array)get_option($value['id']); |
|
| 1547 | + ?> |
|
| 1548 | 1548 | <tr valign="top"> |
| 1549 | 1549 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1550 | 1550 | <td class="forminp"> |
@@ -1552,62 +1552,62 @@ discard block |
||
| 1552 | 1552 | |
| 1553 | 1553 | <?php |
| 1554 | 1554 | |
| 1555 | - $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
| 1556 | - $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
| 1557 | - $state = "&state=123";//any string |
|
| 1558 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1559 | - $response_type = "&response_type=code"; |
|
| 1560 | - $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
|
| 1561 | - $access_type = "&access_type=offline"; |
|
| 1562 | - $approval_prompt = "&approval_prompt=force"; |
|
| 1555 | + $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
|
| 1556 | + $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
|
| 1557 | + $state = "&state=123";//any string |
|
| 1558 | + $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1559 | + $response_type = "&response_type=code"; |
|
| 1560 | + $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
|
| 1561 | + $access_type = "&access_type=offline"; |
|
| 1562 | + $approval_prompt = "&approval_prompt=force"; |
|
| 1563 | 1563 | |
| 1564 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1564 | + $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1565 | 1565 | |
| 1566 | 1566 | |
| 1567 | - if (get_option('geodir_ga_auth_token')) {
|
|
| 1568 | - ?> |
|
| 1567 | + if (get_option('geodir_ga_auth_token')) {
|
|
| 1568 | + ?> |
|
| 1569 | 1569 | <span class="button-primary" |
| 1570 | 1570 | onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
| 1571 | 1571 | <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
|
| 1572 | 1572 | <?php |
| 1573 | - global $gd_ga_errors; |
|
| 1574 | - if(!empty($gd_ga_errors)){
|
|
| 1575 | - print_r($gd_ga_errors); |
|
| 1576 | - } |
|
| 1577 | - } else {
|
|
| 1578 | - ?> |
|
| 1573 | + global $gd_ga_errors; |
|
| 1574 | + if(!empty($gd_ga_errors)){
|
|
| 1575 | + print_r($gd_ga_errors); |
|
| 1576 | + } |
|
| 1577 | + } else {
|
|
| 1578 | + ?> |
|
| 1579 | 1579 | <span class="button-primary" |
| 1580 | 1580 | onclick="window.open('<?php echo geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
|
| 1581 | 1581 | <?php |
| 1582 | - } |
|
| 1583 | - ?> |
|
| 1582 | + } |
|
| 1583 | + ?> |
|
| 1584 | 1584 | </td> |
| 1585 | 1585 | </tr> |
| 1586 | 1586 | |
| 1587 | 1587 | <?php |
| 1588 | 1588 | |
| 1589 | 1589 | |
| 1590 | - break; |
|
| 1590 | + break; |
|
| 1591 | 1591 | |
| 1592 | - case 'field_seperator' : |
|
| 1592 | + case 'field_seperator' : |
|
| 1593 | 1593 | |
| 1594 | - ?> |
|
| 1594 | + ?> |
|
| 1595 | 1595 | <tr valign="top"> |
| 1596 | 1596 | <td colspan="2" class="forminp geodir_line_seperator"></td> |
| 1597 | 1597 | </tr> |
| 1598 | 1598 | <?php |
| 1599 | 1599 | |
| 1600 | - break; |
|
| 1600 | + break; |
|
| 1601 | 1601 | |
| 1602 | - endswitch; |
|
| 1602 | + endswitch; |
|
| 1603 | 1603 | |
| 1604 | - endforeach; |
|
| 1604 | + endforeach; |
|
| 1605 | 1605 | |
| 1606 | - if ($first_title === false) {
|
|
| 1607 | - echo "</div>"; |
|
| 1608 | - } |
|
| 1606 | + if ($first_title === false) {
|
|
| 1607 | + echo "</div>"; |
|
| 1608 | + } |
|
| 1609 | 1609 | |
| 1610 | - ?> |
|
| 1610 | + ?> |
|
| 1611 | 1611 | |
| 1612 | 1612 | <script type="text/javascript"> |
| 1613 | 1613 | |
@@ -1667,33 +1667,33 @@ discard block |
||
| 1667 | 1667 | */ |
| 1668 | 1668 | function geodir_post_info_setting() |
| 1669 | 1669 | {
|
| 1670 | - global $post, $post_id; |
|
| 1671 | - |
|
| 1672 | - $post_type = get_post_type(); |
|
| 1673 | - |
|
| 1674 | - $package_info = array(); |
|
| 1675 | - |
|
| 1676 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1677 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
| 1678 | - echo '<div id="geodir_wrapper">'; |
|
| 1679 | - /** |
|
| 1680 | - * Called before the GD custom fields are output in the wp-admin area. |
|
| 1681 | - * |
|
| 1682 | - * @since 1.0.0 |
|
| 1683 | - * @see 'geodir_after_default_field_in_meta_box' |
|
| 1684 | - */ |
|
| 1685 | - do_action('geodir_before_default_field_in_meta_box');
|
|
| 1686 | - //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
| 1687 | - // to display all fields in one information box |
|
| 1688 | - geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
| 1689 | - /** |
|
| 1690 | - * Called after the GD custom fields are output in the wp-admin area. |
|
| 1691 | - * |
|
| 1692 | - * @since 1.0.0 |
|
| 1693 | - * @see 'geodir_before_default_field_in_meta_box' |
|
| 1694 | - */ |
|
| 1695 | - do_action('geodir_after_default_field_in_meta_box');
|
|
| 1696 | - echo '</div>'; |
|
| 1670 | + global $post, $post_id; |
|
| 1671 | + |
|
| 1672 | + $post_type = get_post_type(); |
|
| 1673 | + |
|
| 1674 | + $package_info = array(); |
|
| 1675 | + |
|
| 1676 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1677 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_info_noncename'); |
|
| 1678 | + echo '<div id="geodir_wrapper">'; |
|
| 1679 | + /** |
|
| 1680 | + * Called before the GD custom fields are output in the wp-admin area. |
|
| 1681 | + * |
|
| 1682 | + * @since 1.0.0 |
|
| 1683 | + * @see 'geodir_after_default_field_in_meta_box' |
|
| 1684 | + */ |
|
| 1685 | + do_action('geodir_before_default_field_in_meta_box');
|
|
| 1686 | + //geodir_get_custom_fields_html($package_info->pid,'default',$post_type); |
|
| 1687 | + // to display all fields in one information box |
|
| 1688 | + geodir_get_custom_fields_html($package_info->pid, 'all', $post_type); |
|
| 1689 | + /** |
|
| 1690 | + * Called after the GD custom fields are output in the wp-admin area. |
|
| 1691 | + * |
|
| 1692 | + * @since 1.0.0 |
|
| 1693 | + * @see 'geodir_before_default_field_in_meta_box' |
|
| 1694 | + */ |
|
| 1695 | + do_action('geodir_after_default_field_in_meta_box');
|
|
| 1696 | + echo '</div>'; |
|
| 1697 | 1697 | } |
| 1698 | 1698 | |
| 1699 | 1699 | /** |
@@ -1706,18 +1706,18 @@ discard block |
||
| 1706 | 1706 | */ |
| 1707 | 1707 | function geodir_post_addinfo_setting() |
| 1708 | 1708 | {
|
| 1709 | - global $post, $post_id; |
|
| 1709 | + global $post, $post_id; |
|
| 1710 | 1710 | |
| 1711 | - $post_type = get_post_type(); |
|
| 1711 | + $post_type = get_post_type(); |
|
| 1712 | 1712 | |
| 1713 | - $package_info = array(); |
|
| 1713 | + $package_info = array(); |
|
| 1714 | 1714 | |
| 1715 | - $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1715 | + $package_info = geodir_post_package_info($package_info, $post, $post_type); |
|
| 1716 | 1716 | |
| 1717 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
| 1718 | - echo '<div id="geodir_wrapper">'; |
|
| 1719 | - geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
| 1720 | - echo '</div>'; |
|
| 1717 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_addinfo_noncename'); |
|
| 1718 | + echo '<div id="geodir_wrapper">'; |
|
| 1719 | + geodir_get_custom_fields_html($package_info->pid, 'custom', $post_type); |
|
| 1720 | + echo '</div>'; |
|
| 1721 | 1721 | |
| 1722 | 1722 | } |
| 1723 | 1723 | |
@@ -1731,60 +1731,60 @@ discard block |
||
| 1731 | 1731 | */ |
| 1732 | 1732 | function geodir_post_attachments() |
| 1733 | 1733 | {
|
| 1734 | - global $post, $post_id; |
|
| 1734 | + global $post, $post_id; |
|
| 1735 | 1735 | |
| 1736 | - wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
| 1736 | + wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
|
| 1737 | 1737 | |
| 1738 | - if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
|
| 1739 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1740 | - geodir_show_featured_image($post_id, 'thumbnail'); |
|
| 1741 | - } |
|
| 1738 | + if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
|
| 1739 | + echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1740 | + geodir_show_featured_image($post_id, 'thumbnail'); |
|
| 1741 | + } |
|
| 1742 | 1742 | |
| 1743 | - $image_limit = 0; |
|
| 1743 | + $image_limit = 0; |
|
| 1744 | 1744 | |
| 1745 | - ?> |
|
| 1745 | + ?> |
|
| 1746 | 1746 | |
| 1747 | 1747 | |
| 1748 | 1748 | <h5 class="form_title"> |
| 1749 | 1749 | <?php if ($image_limit != 0 && $image_limit == 1) {
|
| 1750 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1751 | - } ?> |
|
| 1750 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1751 | + } ?> |
|
| 1752 | 1752 | <?php if ($image_limit != 0 && $image_limit > 1) {
|
| 1753 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1754 | - } ?> |
|
| 1753 | + echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1754 | + } ?> |
|
| 1755 | 1755 | <?php if ($image_limit == 0) {
|
| 1756 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1757 | - } ?> |
|
| 1756 | + echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1757 | + } ?> |
|
| 1758 | 1758 | </h5> |
| 1759 | 1759 | |
| 1760 | 1760 | |
| 1761 | 1761 | <?php |
| 1762 | 1762 | |
| 1763 | - $curImages = geodir_get_images($post_id); |
|
| 1764 | - $place_img_array = array(); |
|
| 1763 | + $curImages = geodir_get_images($post_id); |
|
| 1764 | + $place_img_array = array(); |
|
| 1765 | 1765 | |
| 1766 | - if (!empty($curImages)): |
|
| 1767 | - foreach ($curImages as $p_img): |
|
| 1768 | - $place_img_array[] = $p_img->src; |
|
| 1769 | - endforeach; |
|
| 1770 | - endif; |
|
| 1766 | + if (!empty($curImages)): |
|
| 1767 | + foreach ($curImages as $p_img): |
|
| 1768 | + $place_img_array[] = $p_img->src; |
|
| 1769 | + endforeach; |
|
| 1770 | + endif; |
|
| 1771 | 1771 | |
| 1772 | - if (!empty($place_img_array)) |
|
| 1773 | - $curImages = implode(',', $place_img_array);
|
|
| 1772 | + if (!empty($place_img_array)) |
|
| 1773 | + $curImages = implode(',', $place_img_array);
|
|
| 1774 | 1774 | |
| 1775 | 1775 | |
| 1776 | - // adjust values here |
|
| 1777 | - $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1776 | + // adjust values here |
|
| 1777 | + $id = "post_images"; // this will be the name of form field. Image url(s) will be submitted in $_POST using this key. So if $id == �img1� then $_POST[�img1�] will have all the image urls |
|
| 1778 | 1778 | |
| 1779 | - $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
| 1779 | + $svalue = $curImages; // this will be initial value of the above form field. Image urls. |
|
| 1780 | 1780 | |
| 1781 | - $multiple = true; // allow multiple files upload |
|
| 1781 | + $multiple = true; // allow multiple files upload |
|
| 1782 | 1782 | |
| 1783 | - $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1783 | + $width = geodir_media_image_large_width(); // If you want to automatically resize all uploaded images then provide width here (in pixels) |
|
| 1784 | 1784 | |
| 1785 | - $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1785 | + $height = geodir_media_image_large_height(); // If you want to automatically resize all uploaded images then provide height here (in pixels) |
|
| 1786 | 1786 | |
| 1787 | - ?> |
|
| 1787 | + ?> |
|
| 1788 | 1788 | |
| 1789 | 1789 | <div class="gtd-form_row clearfix" id="<?php echo $id; ?>dropbox" style="border:1px solid #999999;padding:5px;text-align:center;"> |
| 1790 | 1790 | <input type="hidden" name="<?php echo $id; ?>" id="<?php echo $id; ?>" value="<?php echo $svalue; ?>"/> |
@@ -1826,13 +1826,13 @@ discard block |
||
| 1826 | 1826 | */ |
| 1827 | 1827 | function geodir_action_post_updated($post_ID, $post_after, $post_before) |
| 1828 | 1828 | {
|
| 1829 | - $post_type = get_post_type($post_ID); |
|
| 1829 | + $post_type = get_post_type($post_ID); |
|
| 1830 | 1830 | |
| 1831 | - if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1832 | - if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
|
|
| 1833 | - geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
| 1834 | - } |
|
| 1835 | - } |
|
| 1831 | + if (isset($_POST['action']) && $_POST['action'] == 'inline-save') {
|
|
| 1832 | + if ($post_type != '' && in_array($post_type, geodir_get_posttypes()) && !wp_is_post_revision($post_ID) && !empty($post_after->post_title) && $post_after->post_title != $post_before->post_title) {
|
|
| 1833 | + geodir_save_post_meta($post_ID, 'post_title', $post_after->post_title); |
|
| 1834 | + } |
|
| 1835 | + } |
|
| 1836 | 1836 | } |
| 1837 | 1837 | |
| 1838 | 1838 | /** |
@@ -1847,39 +1847,39 @@ discard block |
||
| 1847 | 1847 | */ |
| 1848 | 1848 | function geodir_notification_add_bcc_option($settings) |
| 1849 | 1849 | {
|
| 1850 | - if (!empty($settings)) {
|
|
| 1851 | - $new_settings = array(); |
|
| 1852 | - foreach ($settings as $setting) {
|
|
| 1853 | - if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
|
|
| 1854 | - $geodir_bcc_listing_published_yes = array( |
|
| 1855 | - 'name' => __('Listing published', 'geodirectory'),
|
|
| 1856 | - 'desc' => __('Yes', 'geodirectory'),
|
|
| 1857 | - 'id' => 'geodir_bcc_listing_published', |
|
| 1858 | - 'std' => 'yes', |
|
| 1859 | - 'type' => 'radio', |
|
| 1860 | - 'value' => '1', |
|
| 1861 | - 'radiogroup' => 'start' |
|
| 1862 | - ); |
|
| 1863 | - |
|
| 1864 | - $geodir_bcc_listing_published_no = array( |
|
| 1865 | - 'name' => __('Listing published', 'geodirectory'),
|
|
| 1866 | - 'desc' => __('No', 'geodirectory'),
|
|
| 1867 | - 'id' => 'geodir_bcc_listing_published', |
|
| 1868 | - 'std' => 'yes', |
|
| 1869 | - 'type' => 'radio', |
|
| 1870 | - 'value' => '0', |
|
| 1871 | - 'radiogroup' => 'end' |
|
| 1872 | - ); |
|
| 1873 | - |
|
| 1874 | - $new_settings[] = $geodir_bcc_listing_published_yes; |
|
| 1875 | - $new_settings[] = $geodir_bcc_listing_published_no; |
|
| 1876 | - } |
|
| 1877 | - $new_settings[] = $setting; |
|
| 1878 | - } |
|
| 1879 | - $settings = $new_settings; |
|
| 1880 | - } |
|
| 1850 | + if (!empty($settings)) {
|
|
| 1851 | + $new_settings = array(); |
|
| 1852 | + foreach ($settings as $setting) {
|
|
| 1853 | + if (isset($setting['id']) && $setting['id'] == 'site_bcc_options' && isset($setting['type']) && $setting['type'] == 'sectionend') {
|
|
| 1854 | + $geodir_bcc_listing_published_yes = array( |
|
| 1855 | + 'name' => __('Listing published', 'geodirectory'),
|
|
| 1856 | + 'desc' => __('Yes', 'geodirectory'),
|
|
| 1857 | + 'id' => 'geodir_bcc_listing_published', |
|
| 1858 | + 'std' => 'yes', |
|
| 1859 | + 'type' => 'radio', |
|
| 1860 | + 'value' => '1', |
|
| 1861 | + 'radiogroup' => 'start' |
|
| 1862 | + ); |
|
| 1863 | + |
|
| 1864 | + $geodir_bcc_listing_published_no = array( |
|
| 1865 | + 'name' => __('Listing published', 'geodirectory'),
|
|
| 1866 | + 'desc' => __('No', 'geodirectory'),
|
|
| 1867 | + 'id' => 'geodir_bcc_listing_published', |
|
| 1868 | + 'std' => 'yes', |
|
| 1869 | + 'type' => 'radio', |
|
| 1870 | + 'value' => '0', |
|
| 1871 | + 'radiogroup' => 'end' |
|
| 1872 | + ); |
|
| 1873 | + |
|
| 1874 | + $new_settings[] = $geodir_bcc_listing_published_yes; |
|
| 1875 | + $new_settings[] = $geodir_bcc_listing_published_no; |
|
| 1876 | + } |
|
| 1877 | + $new_settings[] = $setting; |
|
| 1878 | + } |
|
| 1879 | + $settings = $new_settings; |
|
| 1880 | + } |
|
| 1881 | 1881 | |
| 1882 | - return $settings; |
|
| 1882 | + return $settings; |
|
| 1883 | 1883 | } |
| 1884 | 1884 | |
| 1885 | 1885 | |
@@ -1894,19 +1894,19 @@ discard block |
||
| 1894 | 1894 | */ |
| 1895 | 1895 | function get_gd_theme_compat_callback() |
| 1896 | 1896 | {
|
| 1897 | - global $wpdb; |
|
| 1898 | - $themes = get_option('gd_theme_compats');
|
|
| 1899 | - |
|
| 1900 | - if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
|
|
| 1901 | - if (isset($_POST['export'])) {
|
|
| 1902 | - echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
| 1903 | - } else {
|
|
| 1904 | - echo json_encode($themes[$_POST['theme']]); |
|
| 1905 | - } |
|
| 1897 | + global $wpdb; |
|
| 1898 | + $themes = get_option('gd_theme_compats');
|
|
| 1906 | 1899 | |
| 1907 | - } |
|
| 1900 | + if (isset($_POST['theme']) && isset($themes[$_POST['theme']]) && !empty($themes[$_POST['theme']])) {
|
|
| 1901 | + if (isset($_POST['export'])) {
|
|
| 1902 | + echo json_encode(array($_POST['theme'] => $themes[$_POST['theme']])); |
|
| 1903 | + } else {
|
|
| 1904 | + echo json_encode($themes[$_POST['theme']]); |
|
| 1905 | + } |
|
| 1906 | + |
|
| 1907 | + } |
|
| 1908 | 1908 | |
| 1909 | - die(); |
|
| 1909 | + die(); |
|
| 1910 | 1910 | } |
| 1911 | 1911 | |
| 1912 | 1912 | add_action('wp_ajax_get_gd_theme_compat_import_callback', 'get_gd_theme_compat_import_callback');
|
@@ -1920,20 +1920,20 @@ discard block |
||
| 1920 | 1920 | */ |
| 1921 | 1921 | function get_gd_theme_compat_import_callback() |
| 1922 | 1922 | {
|
| 1923 | - global $wpdb; |
|
| 1924 | - $themes = get_option('gd_theme_compats');
|
|
| 1925 | - if (isset($_POST['theme']) && !empty($_POST['theme'])) {
|
|
| 1926 | - $json = json_decode(stripslashes($_POST['theme']), true); |
|
| 1927 | - if (!empty($json) && is_array($json)) {
|
|
| 1928 | - $key = sanitize_text_field(key($json)); |
|
| 1929 | - $themes[$key] = $json[$key]; |
|
| 1930 | - update_option('gd_theme_compats', $themes);
|
|
| 1931 | - echo $key; |
|
| 1932 | - die(); |
|
| 1933 | - } |
|
| 1934 | - } |
|
| 1935 | - echo '0'; |
|
| 1936 | - die(); |
|
| 1923 | + global $wpdb; |
|
| 1924 | + $themes = get_option('gd_theme_compats');
|
|
| 1925 | + if (isset($_POST['theme']) && !empty($_POST['theme'])) {
|
|
| 1926 | + $json = json_decode(stripslashes($_POST['theme']), true); |
|
| 1927 | + if (!empty($json) && is_array($json)) {
|
|
| 1928 | + $key = sanitize_text_field(key($json)); |
|
| 1929 | + $themes[$key] = $json[$key]; |
|
| 1930 | + update_option('gd_theme_compats', $themes);
|
|
| 1931 | + echo $key; |
|
| 1932 | + die(); |
|
| 1933 | + } |
|
| 1934 | + } |
|
| 1935 | + echo '0'; |
|
| 1936 | + die(); |
|
| 1937 | 1937 | } |
| 1938 | 1938 | |
| 1939 | 1939 | |
@@ -1946,39 +1946,39 @@ discard block |
||
| 1946 | 1946 | */ |
| 1947 | 1947 | function gd_set_theme_compat() |
| 1948 | 1948 | {
|
| 1949 | - global $wpdb; |
|
| 1950 | - $theme = wp_get_theme(); |
|
| 1949 | + global $wpdb; |
|
| 1950 | + $theme = wp_get_theme(); |
|
| 1951 | 1951 | |
| 1952 | - if ($theme->parent()) {
|
|
| 1953 | - $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 1954 | - } else {
|
|
| 1955 | - $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 1956 | - } |
|
| 1952 | + if ($theme->parent()) {
|
|
| 1953 | + $theme_name = str_replace(" ", "_", $theme->parent()->get('Name'));
|
|
| 1954 | + } else {
|
|
| 1955 | + $theme_name = str_replace(" ", "_", $theme->get('Name'));
|
|
| 1956 | + } |
|
| 1957 | 1957 | |
| 1958 | - $theme_compats = get_option('gd_theme_compats');
|
|
| 1959 | - $current_compat = get_option('gd_theme_compat');
|
|
| 1960 | - $current_compat = str_replace("_custom", "", $current_compat);
|
|
| 1958 | + $theme_compats = get_option('gd_theme_compats');
|
|
| 1959 | + $current_compat = get_option('gd_theme_compat');
|
|
| 1960 | + $current_compat = str_replace("_custom", "", $current_compat);
|
|
| 1961 | 1961 | |
| 1962 | - if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
|
|
| 1963 | - return; |
|
| 1964 | - }// if already running correct compat then bail |
|
| 1962 | + if ($current_compat == $theme_name && strpos(get_option('gd_theme_compat'), "_custom") !== false) {
|
|
| 1963 | + return; |
|
| 1964 | + }// if already running correct compat then bail |
|
| 1965 | 1965 | |
| 1966 | - if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
|
|
| 1967 | - update_option('gd_theme_compat', $theme_name);
|
|
| 1968 | - update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
|
|
| 1966 | + if (isset($theme_compats[$theme_name])) {// if there is a compat avail then set it
|
|
| 1967 | + update_option('gd_theme_compat', $theme_name);
|
|
| 1968 | + update_option('theme_compatibility_setting', $theme_compats[$theme_name]);
|
|
| 1969 | 1969 | |
| 1970 | - // if there are default options to set then set them |
|
| 1971 | - if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
|
|
| 1970 | + // if there are default options to set then set them |
|
| 1971 | + if (isset($theme_compats[$theme_name]['geodir_theme_compat_default_options']) && !empty($theme_compats[$theme_name]['geodir_theme_compat_default_options'])) {
|
|
| 1972 | 1972 | |
| 1973 | - foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
|
|
| 1974 | - update_option($key, $val); |
|
| 1975 | - } |
|
| 1976 | - } |
|
| 1973 | + foreach ($theme_compats[$theme_name]['geodir_theme_compat_default_options'] as $key => $val) {
|
|
| 1974 | + update_option($key, $val); |
|
| 1975 | + } |
|
| 1976 | + } |
|
| 1977 | 1977 | |
| 1978 | - } else {
|
|
| 1979 | - update_option('gd_theme_compat', '');
|
|
| 1980 | - update_option('theme_compatibility_setting', '');
|
|
| 1981 | - } |
|
| 1978 | + } else {
|
|
| 1979 | + update_option('gd_theme_compat', '');
|
|
| 1980 | + update_option('theme_compatibility_setting', '');
|
|
| 1981 | + } |
|
| 1982 | 1982 | |
| 1983 | 1983 | |
| 1984 | 1984 | } |
@@ -1993,9 +1993,9 @@ discard block |
||
| 1993 | 1993 | */ |
| 1994 | 1994 | function gd_check_avada_compat() |
| 1995 | 1995 | {
|
| 1996 | - if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
|
|
| 1997 | - add_action('admin_notices', 'gd_avada_compat_warning');
|
|
| 1998 | - } |
|
| 1996 | + if (function_exists('avada_load_textdomain') && !get_option('avada_nag')) {
|
|
| 1997 | + add_action('admin_notices', 'gd_avada_compat_warning');
|
|
| 1998 | + } |
|
| 1999 | 1999 | } |
| 2000 | 2000 | |
| 2001 | 2001 | |
@@ -2008,22 +2008,22 @@ discard block |
||
| 2008 | 2008 | function gd_avada_compat_warning() |
| 2009 | 2009 | {
|
| 2010 | 2010 | |
| 2011 | - /* |
|
| 2011 | + /* |
|
| 2012 | 2012 | $msg_type = error |
| 2013 | 2013 | $msg_type = updated fade |
| 2014 | 2014 | $msg_type = update-nag |
| 2015 | 2015 | */ |
| 2016 | 2016 | |
| 2017 | - $plugin = 'avada-nag'; |
|
| 2018 | - $timestamp = 'avada-nag1234'; |
|
| 2019 | - $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
|
| 2020 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | - echo "<p>$message</p>"; |
|
| 2024 | - echo "</div>"; |
|
| 2017 | + $plugin = 'avada-nag'; |
|
| 2018 | + $timestamp = 'avada-nag1234'; |
|
| 2019 | + $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
|
| 2020 | + echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | + echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | + echo "<p>$message</p>"; |
|
| 2024 | + echo "</div>"; |
|
| 2025 | 2025 | |
| 2026 | - ?> |
|
| 2026 | + ?> |
|
| 2027 | 2027 | <script> |
| 2028 | 2028 | function gdRemoveANotification($plugin, $timestamp) {
|
| 2029 | 2029 | |
@@ -2091,10 +2091,10 @@ discard block |
||
| 2091 | 2091 | */ |
| 2092 | 2092 | function geodir_avada_remove_notification() |
| 2093 | 2093 | {
|
| 2094 | - update_option('avada_nag', TRUE);
|
|
| 2094 | + update_option('avada_nag', TRUE);
|
|
| 2095 | 2095 | |
| 2096 | - // Always die in functions echoing ajax content |
|
| 2097 | - die(); |
|
| 2096 | + // Always die in functions echoing ajax content |
|
| 2097 | + die(); |
|
| 2098 | 2098 | } |
| 2099 | 2099 | |
| 2100 | 2100 | |
@@ -2116,9 +2116,9 @@ discard block |
||
| 2116 | 2116 | global $post, $typenow, $current_screen; |
| 2117 | 2117 | |
| 2118 | 2118 | $post_type = NULL; |
| 2119 | - if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2119 | + if (isset($_REQUEST['post']) && get_post_type($_REQUEST['post'])) |
|
| 2120 | 2120 | $post_type = get_post_type($_REQUEST['post']); |
| 2121 | - elseif ($post && isset($post->post_type)) |
|
| 2121 | + elseif ($post && isset($post->post_type)) |
|
| 2122 | 2122 | $post_type = $post->post_type; |
| 2123 | 2123 | elseif ($typenow) |
| 2124 | 2124 | $post_type = $typenow; |
@@ -2153,7 +2153,7 @@ discard block |
||
| 2153 | 2153 | // Don't allow same slug url for listing and location |
| 2154 | 2154 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
|
| 2155 | 2155 | $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
|
| 2156 | - wp_redirect($redirect_url); |
|
| 2156 | + wp_redirect($redirect_url); |
|
| 2157 | 2157 | exit; |
| 2158 | 2158 | } |
| 2159 | 2159 | |
@@ -2183,10 +2183,10 @@ discard block |
||
| 2183 | 2183 | * @package GeoDirectory |
| 2184 | 2184 | */ |
| 2185 | 2185 | function geodir_hide_admin_preview_button() {
|
| 2186 | - global $post_type; |
|
| 2187 | - $post_types = geodir_get_posttypes(); |
|
| 2188 | - if(in_array($post_type, $post_types)) |
|
| 2189 | - echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2186 | + global $post_type; |
|
| 2187 | + $post_types = geodir_get_posttypes(); |
|
| 2188 | + if(in_array($post_type, $post_types)) |
|
| 2189 | + echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
|
| 2190 | 2190 | } |
| 2191 | 2191 | add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
| 2192 | 2192 | add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
@@ -2201,7 +2201,7 @@ discard block |
||
| 2201 | 2201 | */ |
| 2202 | 2202 | function geodir_import_export_tab( $tabs ) {
|
| 2203 | 2203 | $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
| 2204 | - return $tabs; |
|
| 2204 | + return $tabs; |
|
| 2205 | 2205 | } |
| 2206 | 2206 | |
| 2207 | 2207 | /** |
@@ -2216,26 +2216,26 @@ discard block |
||
| 2216 | 2216 | function geodir_import_export_page() {
|
| 2217 | 2217 | $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
| 2218 | 2218 | $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
| 2219 | - /** |
|
| 2220 | - * Filter sample category data csv file url. |
|
| 2221 | - * |
|
| 2222 | - * @since 1.0.0 |
|
| 2223 | - * @package GeoDirectory |
|
| 2224 | - * |
|
| 2225 | - * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
| 2226 | - */ |
|
| 2219 | + /** |
|
| 2220 | + * Filter sample category data csv file url. |
|
| 2221 | + * |
|
| 2222 | + * @since 1.0.0 |
|
| 2223 | + * @package GeoDirectory |
|
| 2224 | + * |
|
| 2225 | + * @param string $gd_cats_sample_csv Sample category data csv file url. |
|
| 2226 | + */ |
|
| 2227 | 2227 | $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
| 2228 | 2228 | |
| 2229 | 2229 | $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
| 2230 | - /** |
|
| 2231 | - * Filter sample post data csv file url. |
|
| 2232 | - * |
|
| 2233 | - * @since 1.0.0 |
|
| 2234 | - * @package GeoDirectory |
|
| 2235 | - * |
|
| 2236 | - * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
| 2237 | - */ |
|
| 2238 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2230 | + /** |
|
| 2231 | + * Filter sample post data csv file url. |
|
| 2232 | + * |
|
| 2233 | + * @since 1.0.0 |
|
| 2234 | + * @package GeoDirectory |
|
| 2235 | + * |
|
| 2236 | + * @param string $gd_posts_sample_csv Sample post data csv file url. |
|
| 2237 | + */ |
|
| 2238 | + $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2239 | 2239 | |
| 2240 | 2240 | $gd_posttypes = geodir_get_posttypes( 'array' ); |
| 2241 | 2241 | |
@@ -2258,14 +2258,14 @@ discard block |
||
| 2258 | 2258 | $gd_chunksize_options[100000] = 100000; |
| 2259 | 2259 | |
| 2260 | 2260 | /** |
| 2261 | - * Filter max entries per export csv file. |
|
| 2262 | - * |
|
| 2263 | - * @since 1.5.6 |
|
| 2264 | - * @package GeoDirectory |
|
| 2265 | - * |
|
| 2266 | - * @param string $gd_chunksize_options Entries options. |
|
| 2267 | - */ |
|
| 2268 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2261 | + * Filter max entries per export csv file. |
|
| 2262 | + * |
|
| 2263 | + * @since 1.5.6 |
|
| 2264 | + * @package GeoDirectory |
|
| 2265 | + * |
|
| 2266 | + * @param string $gd_chunksize_options Entries options. |
|
| 2267 | + */ |
|
| 2268 | + $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2269 | 2269 | |
| 2270 | 2270 | $gd_chunksize_option = ''; |
| 2271 | 2271 | foreach ($gd_chunksize_options as $value => $title) {
|
@@ -2282,12 +2282,12 @@ discard block |
||
| 2282 | 2282 | <div class="gd-content-heading"> |
| 2283 | 2283 | |
| 2284 | 2284 | <?php |
| 2285 | - ini_set('max_execution_time', 999999);
|
|
| 2286 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2287 | - ini_restore('max_execution_time');
|
|
| 2285 | + ini_set('max_execution_time', 999999);
|
|
| 2286 | + $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2287 | + ini_restore('max_execution_time');
|
|
| 2288 | 2288 | |
| 2289 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | - ?> |
|
| 2289 | + if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | + ?> |
|
| 2291 | 2291 | <div id="gd_ie_reqs" class="metabox-holder"> |
| 2292 | 2292 | <div class="meta-box-sortables ui-sortable"> |
| 2293 | 2293 | <div class="postbox"> |
@@ -2460,7 +2460,7 @@ discard block |
||
| 2460 | 2460 | * Called just after the sample CSV download link. |
| 2461 | 2461 | * |
| 2462 | 2462 | * @since 1.0.0 |
| 2463 | - * @package GeoDirectory |
|
| 2463 | + * @package GeoDirectory |
|
| 2464 | 2464 | */ |
| 2465 | 2465 | do_action('geodir_sample_cats_csv_download_link');
|
| 2466 | 2466 | ?> |
@@ -2545,11 +2545,11 @@ discard block |
||
| 2545 | 2545 | * |
| 2546 | 2546 | * Called after the last setting on the GD > Import & Export page. |
| 2547 | 2547 | * @since 1.4.6 |
| 2548 | - * @package GeoDirectory |
|
| 2548 | + * @package GeoDirectory |
|
| 2549 | 2549 | * |
| 2550 | 2550 | * @param array $gd_posttypes GD post types. |
| 2551 | - * @param array $gd_chunksize_options File chunk size options. |
|
| 2552 | - * @param string $nonce Wordpress security token for GD import & export. |
|
| 2551 | + * @param array $gd_chunksize_options File chunk size options. |
|
| 2552 | + * @param string $nonce Wordpress security token for GD import & export. |
|
| 2553 | 2553 | */ |
| 2554 | 2554 | do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
| 2555 | 2555 | ?> |
@@ -3236,44 +3236,44 @@ discard block |
||
| 3236 | 3236 | function geodir_init_filesystem() |
| 3237 | 3237 | {
|
| 3238 | 3238 | |
| 3239 | - if(!function_exists('get_filesystem_method')){
|
|
| 3240 | - require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
| 3241 | - } |
|
| 3242 | - $access_type = get_filesystem_method(); |
|
| 3243 | - if ($access_type === 'direct') {
|
|
| 3244 | - /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
| 3245 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3246 | - |
|
| 3247 | - /* initialize the API */ |
|
| 3248 | - if (!WP_Filesystem($creds)) {
|
|
| 3249 | - /* any problems and we exit */ |
|
| 3250 | - //return '@@@3'; |
|
| 3251 | - return false; |
|
| 3252 | - } |
|
| 3239 | + if(!function_exists('get_filesystem_method')){
|
|
| 3240 | + require_once(ABSPATH."/wp-admin/includes/file.php"); |
|
| 3241 | + } |
|
| 3242 | + $access_type = get_filesystem_method(); |
|
| 3243 | + if ($access_type === 'direct') {
|
|
| 3244 | + /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
|
| 3245 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3246 | + |
|
| 3247 | + /* initialize the API */ |
|
| 3248 | + if (!WP_Filesystem($creds)) {
|
|
| 3249 | + /* any problems and we exit */ |
|
| 3250 | + //return '@@@3'; |
|
| 3251 | + return false; |
|
| 3252 | + } |
|
| 3253 | 3253 | |
| 3254 | - global $wp_filesystem; |
|
| 3255 | - return $wp_filesystem; |
|
| 3256 | - /* do our file manipulations below */ |
|
| 3257 | - } elseif (defined('FTP_USER')) {
|
|
| 3258 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3254 | + global $wp_filesystem; |
|
| 3255 | + return $wp_filesystem; |
|
| 3256 | + /* do our file manipulations below */ |
|
| 3257 | + } elseif (defined('FTP_USER')) {
|
|
| 3258 | + $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3259 | + |
|
| 3260 | + /* initialize the API */ |
|
| 3261 | + if (!WP_Filesystem($creds)) {
|
|
| 3262 | + /* any problems and we exit */ |
|
| 3263 | + //return '@@@33'; |
|
| 3264 | + return false; |
|
| 3265 | + } |
|
| 3259 | 3266 | |
| 3260 | - /* initialize the API */ |
|
| 3261 | - if (!WP_Filesystem($creds)) {
|
|
| 3262 | - /* any problems and we exit */ |
|
| 3263 | - //return '@@@33'; |
|
| 3264 | - return false; |
|
| 3265 | - } |
|
| 3267 | + global $wp_filesystem; |
|
| 3268 | + //return '@@@1'; |
|
| 3269 | + return $wp_filesystem; |
|
| 3266 | 3270 | |
| 3267 | - global $wp_filesystem; |
|
| 3268 | - //return '@@@1'; |
|
| 3269 | - return $wp_filesystem; |
|
| 3270 | - |
|
| 3271 | - } else {
|
|
| 3272 | - //return '@@@2'; |
|
| 3273 | - /* don't have direct write access. Prompt user with our notice */ |
|
| 3274 | - add_action('admin_notice', 'geodir_filesystem_notice');
|
|
| 3275 | - return false; |
|
| 3276 | - } |
|
| 3271 | + } else {
|
|
| 3272 | + //return '@@@2'; |
|
| 3273 | + /* don't have direct write access. Prompt user with our notice */ |
|
| 3274 | + add_action('admin_notice', 'geodir_filesystem_notice');
|
|
| 3275 | + return false; |
|
| 3276 | + } |
|
| 3277 | 3277 | |
| 3278 | 3278 | } |
| 3279 | 3279 | |
@@ -3291,10 +3291,10 @@ discard block |
||
| 3291 | 3291 | */ |
| 3292 | 3292 | function geodir_filesystem_notice() |
| 3293 | 3293 | { if ( defined( 'DOING_AJAX' ) ){return;}
|
| 3294 | - $access_type = get_filesystem_method(); |
|
| 3295 | - if ($access_type === 'direct') {
|
|
| 3296 | - } elseif (!defined('FTP_USER')) {
|
|
| 3297 | - ?> |
|
| 3294 | + $access_type = get_filesystem_method(); |
|
| 3295 | + if ($access_type === 'direct') {
|
|
| 3296 | + } elseif (!defined('FTP_USER')) {
|
|
| 3297 | + ?> |
|
| 3298 | 3298 | <div class="error"> |
| 3299 | 3299 | <p><?php _e('GeoDirectory does not have access to your filesystem, thing like import/export will not work. Please define your details in wp-config.php as explained here', 'geodirectory'); ?>
|
| 3300 | 3300 | <a target="_blank" href="http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants">http://codex.wordpress.org/Editing_wp-config.php#WordPress_Upgrade_Constants</a> |
@@ -3321,1258 +3321,1258 @@ discard block |
||
| 3321 | 3321 | * @return string Json data. |
| 3322 | 3322 | */ |
| 3323 | 3323 | function geodir_ajax_import_export() {
|
| 3324 | - global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
| 3324 | + global $wpdb, $plugin_prefix, $current_user, $wp_filesystem; |
|
| 3325 | 3325 | |
| 3326 | - error_reporting(0); |
|
| 3326 | + error_reporting(0); |
|
| 3327 | 3327 | |
| 3328 | - $xstart = microtime(true); |
|
| 3328 | + $xstart = microtime(true); |
|
| 3329 | 3329 | |
| 3330 | - // try to set higher limits for import |
|
| 3331 | - $max_input_time = ini_get('max_input_time');
|
|
| 3332 | - $max_execution_time = ini_get('max_execution_time');
|
|
| 3333 | - $memory_limit= ini_get('memory_limit');
|
|
| 3330 | + // try to set higher limits for import |
|
| 3331 | + $max_input_time = ini_get('max_input_time');
|
|
| 3332 | + $max_execution_time = ini_get('max_execution_time');
|
|
| 3333 | + $memory_limit= ini_get('memory_limit');
|
|
| 3334 | 3334 | |
| 3335 | - if(!$max_input_time || $max_input_time<3000){
|
|
| 3336 | - ini_set('max_input_time', 3000);
|
|
| 3337 | - } |
|
| 3335 | + if(!$max_input_time || $max_input_time<3000){
|
|
| 3336 | + ini_set('max_input_time', 3000);
|
|
| 3337 | + } |
|
| 3338 | 3338 | |
| 3339 | - if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3340 | - ini_set('max_execution_time', 3000);
|
|
| 3341 | - } |
|
| 3339 | + if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3340 | + ini_set('max_execution_time', 3000);
|
|
| 3341 | + } |
|
| 3342 | 3342 | |
| 3343 | - if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3344 | - if(str_replace('M','',$memory_limit)<256){
|
|
| 3345 | - ini_set('memory_limit', '256M');
|
|
| 3346 | - } |
|
| 3347 | - } |
|
| 3343 | + if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3344 | + if(str_replace('M','',$memory_limit)<256){
|
|
| 3345 | + ini_set('memory_limit', '256M');
|
|
| 3346 | + } |
|
| 3347 | + } |
|
| 3348 | 3348 | |
| 3349 | - $json = array(); |
|
| 3349 | + $json = array(); |
|
| 3350 | 3350 | |
| 3351 | - if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3352 | - wp_send_json( $json ); |
|
| 3353 | - } |
|
| 3351 | + if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3352 | + wp_send_json( $json ); |
|
| 3353 | + } |
|
| 3354 | 3354 | |
| 3355 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3356 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3355 | + $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3356 | + $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | + $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3358 | 3358 | |
| 3359 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3360 | - wp_send_json( $json ); |
|
| 3361 | - } |
|
| 3359 | + if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3360 | + wp_send_json( $json ); |
|
| 3361 | + } |
|
| 3362 | 3362 | |
| 3363 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3365 | - $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
| 3366 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3363 | + $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | + $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3365 | + $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
|
| 3366 | + $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3367 | 3367 | |
| 3368 | - $wp_filesystem = geodir_init_filesystem(); |
|
| 3369 | - if (!$wp_filesystem) {
|
|
| 3370 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3371 | - wp_send_json( $json ); |
|
| 3372 | - } |
|
| 3368 | + $wp_filesystem = geodir_init_filesystem(); |
|
| 3369 | + if (!$wp_filesystem) {
|
|
| 3370 | + $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3371 | + wp_send_json( $json ); |
|
| 3372 | + } |
|
| 3373 | 3373 | |
| 3374 | - if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
|
| 3375 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3376 | - wp_send_json( $json ); |
|
| 3377 | - } |
|
| 3374 | + if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
|
| 3375 | + $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3376 | + wp_send_json( $json ); |
|
| 3377 | + } |
|
| 3378 | 3378 | |
| 3379 | - $csv_file_dir = geodir_path_import_export( false ); |
|
| 3380 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3381 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3382 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3383 | - wp_send_json( $json ); |
|
| 3384 | - } |
|
| 3385 | - } |
|
| 3379 | + $csv_file_dir = geodir_path_import_export( false ); |
|
| 3380 | + if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3381 | + if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3382 | + $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3383 | + wp_send_json( $json ); |
|
| 3384 | + } |
|
| 3385 | + } |
|
| 3386 | 3386 | |
| 3387 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 3388 | - $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 3389 | - |
|
| 3390 | - switch ( $task ) {
|
|
| 3391 | - case 'export_posts': {
|
|
| 3392 | - // WPML |
|
| 3393 | - $is_wpml = geodir_is_wpml(); |
|
| 3394 | - if ($is_wpml) {
|
|
| 3395 | - global $sitepress; |
|
| 3396 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3387 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 3388 | + $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
|
| 3389 | + |
|
| 3390 | + switch ( $task ) {
|
|
| 3391 | + case 'export_posts': {
|
|
| 3392 | + // WPML |
|
| 3393 | + $is_wpml = geodir_is_wpml(); |
|
| 3394 | + if ($is_wpml) {
|
|
| 3395 | + global $sitepress; |
|
| 3396 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3397 | 3397 | |
| 3398 | - $sitepress->switch_lang('all', true);
|
|
| 3399 | - } |
|
| 3400 | - // WPML |
|
| 3401 | - if ( $post_type == 'gd_event' ) {
|
|
| 3402 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3403 | - } |
|
| 3404 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3398 | + $sitepress->switch_lang('all', true);
|
|
| 3399 | + } |
|
| 3400 | + // WPML |
|
| 3401 | + if ( $post_type == 'gd_event' ) {
|
|
| 3402 | + add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3403 | + } |
|
| 3404 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3405 | 3405 | |
| 3406 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3407 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3408 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3409 | - } |
|
| 3410 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3411 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3412 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3413 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3414 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3406 | + $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3407 | + if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3408 | + $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3409 | + } |
|
| 3410 | + $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3411 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3412 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3413 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3414 | + $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3415 | 3415 | |
| 3416 | - $chunk_file_paths = array(); |
|
| 3416 | + $chunk_file_paths = array(); |
|
| 3417 | 3417 | |
| 3418 | - if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3419 | - $json['total'] = $posts_count; |
|
| 3420 | - // WPML |
|
| 3421 | - if ($is_wpml) {
|
|
| 3422 | - $sitepress->switch_lang($active_lang, true); |
|
| 3423 | - } |
|
| 3424 | - // WPML |
|
| 3425 | - wp_send_json( $json ); |
|
| 3426 | - gd_die(); |
|
| 3427 | - } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3428 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3429 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3430 | - $percentage = min( $percentage, 100 ); |
|
| 3418 | + if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3419 | + $json['total'] = $posts_count; |
|
| 3420 | + // WPML |
|
| 3421 | + if ($is_wpml) {
|
|
| 3422 | + $sitepress->switch_lang($active_lang, true); |
|
| 3423 | + } |
|
| 3424 | + // WPML |
|
| 3425 | + wp_send_json( $json ); |
|
| 3426 | + gd_die(); |
|
| 3427 | + } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3428 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3429 | + $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3430 | + $percentage = min( $percentage, 100 ); |
|
| 3431 | 3431 | |
| 3432 | - $json['percentage'] = $percentage; |
|
| 3433 | - // WPML |
|
| 3434 | - if ($is_wpml) {
|
|
| 3435 | - $sitepress->switch_lang($active_lang, true); |
|
| 3436 | - } |
|
| 3437 | - // WPML |
|
| 3438 | - wp_send_json( $json ); |
|
| 3439 | - gd_die(); |
|
| 3440 | - } else {
|
|
| 3441 | - if ( !$posts_count > 0 ) {
|
|
| 3442 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3443 | - } else {
|
|
| 3444 | - $total_posts = $posts_count; |
|
| 3445 | - if ($chunk_per_page > $total_posts) {
|
|
| 3446 | - $chunk_per_page = $total_posts; |
|
| 3447 | - } |
|
| 3448 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3432 | + $json['percentage'] = $percentage; |
|
| 3433 | + // WPML |
|
| 3434 | + if ($is_wpml) {
|
|
| 3435 | + $sitepress->switch_lang($active_lang, true); |
|
| 3436 | + } |
|
| 3437 | + // WPML |
|
| 3438 | + wp_send_json( $json ); |
|
| 3439 | + gd_die(); |
|
| 3440 | + } else {
|
|
| 3441 | + if ( !$posts_count > 0 ) {
|
|
| 3442 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3443 | + } else {
|
|
| 3444 | + $total_posts = $posts_count; |
|
| 3445 | + if ($chunk_per_page > $total_posts) {
|
|
| 3446 | + $chunk_per_page = $total_posts; |
|
| 3447 | + } |
|
| 3448 | + $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3449 | 3449 | |
| 3450 | - $j = $chunk_page_no; |
|
| 3451 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3450 | + $j = $chunk_page_no; |
|
| 3451 | + $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3452 | 3452 | |
| 3453 | - $per_page = 500; |
|
| 3454 | - if ($per_page > $chunk_per_page) {
|
|
| 3455 | - $per_page = $chunk_per_page; |
|
| 3456 | - } |
|
| 3457 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3453 | + $per_page = 500; |
|
| 3454 | + if ($per_page > $chunk_per_page) {
|
|
| 3455 | + $per_page = $chunk_per_page; |
|
| 3456 | + } |
|
| 3457 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3458 | 3458 | |
| 3459 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3460 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3459 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3460 | + $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3461 | 3461 | |
| 3462 | - $clear = $i == 0 ? true : false; |
|
| 3463 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3464 | - } |
|
| 3462 | + $clear = $i == 0 ? true : false; |
|
| 3463 | + geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3464 | + } |
|
| 3465 | 3465 | |
| 3466 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3467 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3468 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3469 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3470 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3466 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3467 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3468 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3469 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3470 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3471 | 3471 | |
| 3472 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3473 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3474 | - } |
|
| 3472 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3473 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3474 | + } |
|
| 3475 | 3475 | |
| 3476 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3477 | - $json['total'] = $posts_count; |
|
| 3478 | - $json['files'] = $chunk_file_paths; |
|
| 3479 | - } else {
|
|
| 3480 | - if ($j > 1) {
|
|
| 3481 | - $json['total'] = $posts_count; |
|
| 3482 | - $json['files'] = array(); |
|
| 3483 | - } else {
|
|
| 3484 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3485 | - } |
|
| 3486 | - } |
|
| 3487 | - } |
|
| 3488 | - // WPML |
|
| 3489 | - if ($is_wpml) {
|
|
| 3490 | - $sitepress->switch_lang($active_lang, true); |
|
| 3491 | - } |
|
| 3492 | - // WPML |
|
| 3493 | - wp_send_json( $json ); |
|
| 3494 | - } |
|
| 3495 | - } |
|
| 3496 | - break; |
|
| 3497 | - case 'export_cats': {
|
|
| 3498 | - // WPML |
|
| 3499 | - $is_wpml = geodir_is_wpml(); |
|
| 3500 | - if ($is_wpml) {
|
|
| 3501 | - global $sitepress; |
|
| 3502 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3476 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3477 | + $json['total'] = $posts_count; |
|
| 3478 | + $json['files'] = $chunk_file_paths; |
|
| 3479 | + } else {
|
|
| 3480 | + if ($j > 1) {
|
|
| 3481 | + $json['total'] = $posts_count; |
|
| 3482 | + $json['files'] = array(); |
|
| 3483 | + } else {
|
|
| 3484 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3485 | + } |
|
| 3486 | + } |
|
| 3487 | + } |
|
| 3488 | + // WPML |
|
| 3489 | + if ($is_wpml) {
|
|
| 3490 | + $sitepress->switch_lang($active_lang, true); |
|
| 3491 | + } |
|
| 3492 | + // WPML |
|
| 3493 | + wp_send_json( $json ); |
|
| 3494 | + } |
|
| 3495 | + } |
|
| 3496 | + break; |
|
| 3497 | + case 'export_cats': {
|
|
| 3498 | + // WPML |
|
| 3499 | + $is_wpml = geodir_is_wpml(); |
|
| 3500 | + if ($is_wpml) {
|
|
| 3501 | + global $sitepress; |
|
| 3502 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3503 | 3503 | |
| 3504 | - $sitepress->switch_lang('all', true);
|
|
| 3505 | - } |
|
| 3506 | - // WPML |
|
| 3507 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3504 | + $sitepress->switch_lang('all', true);
|
|
| 3505 | + } |
|
| 3506 | + // WPML |
|
| 3507 | + $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3508 | 3508 | |
| 3509 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3510 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3511 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3512 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3513 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3509 | + $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3510 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3511 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3512 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3513 | + $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3514 | 3514 | |
| 3515 | - $chunk_file_paths = array(); |
|
| 3515 | + $chunk_file_paths = array(); |
|
| 3516 | 3516 | |
| 3517 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3518 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3519 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3520 | - $percentage = min( $percentage, 100 ); |
|
| 3517 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3518 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3519 | + $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3520 | + $percentage = min( $percentage, 100 ); |
|
| 3521 | 3521 | |
| 3522 | - $json['percentage'] = $percentage; |
|
| 3523 | - // WPML |
|
| 3524 | - if ($is_wpml) {
|
|
| 3525 | - $sitepress->switch_lang($active_lang, true); |
|
| 3526 | - } |
|
| 3527 | - // WPML |
|
| 3528 | - wp_send_json( $json ); |
|
| 3529 | - } else {
|
|
| 3530 | - if ( !$terms_count > 0 ) {
|
|
| 3531 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3532 | - } else {
|
|
| 3533 | - $total_terms = $terms_count; |
|
| 3534 | - if ($chunk_per_page > $terms_count) {
|
|
| 3535 | - $chunk_per_page = $terms_count; |
|
| 3536 | - } |
|
| 3537 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3522 | + $json['percentage'] = $percentage; |
|
| 3523 | + // WPML |
|
| 3524 | + if ($is_wpml) {
|
|
| 3525 | + $sitepress->switch_lang($active_lang, true); |
|
| 3526 | + } |
|
| 3527 | + // WPML |
|
| 3528 | + wp_send_json( $json ); |
|
| 3529 | + } else {
|
|
| 3530 | + if ( !$terms_count > 0 ) {
|
|
| 3531 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3532 | + } else {
|
|
| 3533 | + $total_terms = $terms_count; |
|
| 3534 | + if ($chunk_per_page > $terms_count) {
|
|
| 3535 | + $chunk_per_page = $terms_count; |
|
| 3536 | + } |
|
| 3537 | + $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3538 | 3538 | |
| 3539 | - $j = $chunk_page_no; |
|
| 3540 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3539 | + $j = $chunk_page_no; |
|
| 3540 | + $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3541 | 3541 | |
| 3542 | - $per_page = 500; |
|
| 3543 | - if ($per_page > $chunk_per_page) {
|
|
| 3544 | - $per_page = $chunk_per_page; |
|
| 3545 | - } |
|
| 3546 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3542 | + $per_page = 500; |
|
| 3543 | + if ($per_page > $chunk_per_page) {
|
|
| 3544 | + $per_page = $chunk_per_page; |
|
| 3545 | + } |
|
| 3546 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3547 | 3547 | |
| 3548 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3549 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3548 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3549 | + $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3550 | 3550 | |
| 3551 | - $clear = $i == 0 ? true : false; |
|
| 3552 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3553 | - } |
|
| 3551 | + $clear = $i == 0 ? true : false; |
|
| 3552 | + geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3553 | + } |
|
| 3554 | 3554 | |
| 3555 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3556 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3557 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3558 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3559 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3555 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3556 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3557 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3558 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3559 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3560 | 3560 | |
| 3561 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3562 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3563 | - } |
|
| 3561 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3562 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3563 | + } |
|
| 3564 | 3564 | |
| 3565 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3566 | - $json['total'] = $terms_count; |
|
| 3567 | - $json['files'] = $chunk_file_paths; |
|
| 3568 | - } else {
|
|
| 3569 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3570 | - } |
|
| 3571 | - } |
|
| 3572 | - // WPML |
|
| 3573 | - if ($is_wpml) {
|
|
| 3574 | - $sitepress->switch_lang($active_lang, true); |
|
| 3575 | - } |
|
| 3576 | - // WPML |
|
| 3577 | - wp_send_json( $json ); |
|
| 3578 | - } |
|
| 3579 | - } |
|
| 3580 | - break; |
|
| 3581 | - case 'export_locations': {
|
|
| 3582 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3583 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3584 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3585 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3586 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3565 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3566 | + $json['total'] = $terms_count; |
|
| 3567 | + $json['files'] = $chunk_file_paths; |
|
| 3568 | + } else {
|
|
| 3569 | + $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3570 | + } |
|
| 3571 | + } |
|
| 3572 | + // WPML |
|
| 3573 | + if ($is_wpml) {
|
|
| 3574 | + $sitepress->switch_lang($active_lang, true); |
|
| 3575 | + } |
|
| 3576 | + // WPML |
|
| 3577 | + wp_send_json( $json ); |
|
| 3578 | + } |
|
| 3579 | + } |
|
| 3580 | + break; |
|
| 3581 | + case 'export_locations': {
|
|
| 3582 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3583 | + $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3584 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3585 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3586 | + $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3587 | 3587 | |
| 3588 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3588 | + $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3589 | 3589 | |
| 3590 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3591 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3592 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3593 | - $percentage = min( $percentage, 100 ); |
|
| 3590 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3591 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3592 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3593 | + $percentage = min( $percentage, 100 ); |
|
| 3594 | 3594 | |
| 3595 | - $json['percentage'] = $percentage; |
|
| 3596 | - wp_send_json( $json ); |
|
| 3597 | - } else {
|
|
| 3598 | - $chunk_file_paths = array(); |
|
| 3595 | + $json['percentage'] = $percentage; |
|
| 3596 | + wp_send_json( $json ); |
|
| 3597 | + } else {
|
|
| 3598 | + $chunk_file_paths = array(); |
|
| 3599 | 3599 | |
| 3600 | - if ( !$items_count > 0 ) {
|
|
| 3601 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3602 | - } else {
|
|
| 3603 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3604 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3600 | + if ( !$items_count > 0 ) {
|
|
| 3601 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3602 | + } else {
|
|
| 3603 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3604 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3605 | 3605 | |
| 3606 | - $j = $chunk_page_no; |
|
| 3607 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3606 | + $j = $chunk_page_no; |
|
| 3607 | + $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3608 | 3608 | |
| 3609 | - $per_page = 500; |
|
| 3610 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3611 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3609 | + $per_page = 500; |
|
| 3610 | + $per_page = min( $per_page, $chunk_per_page ); |
|
| 3611 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3612 | 3612 | |
| 3613 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3614 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3613 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3614 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3615 | 3615 | |
| 3616 | - $clear = $i == 0 ? true : false; |
|
| 3617 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3618 | - } |
|
| 3616 | + $clear = $i == 0 ? true : false; |
|
| 3617 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3618 | + } |
|
| 3619 | 3619 | |
| 3620 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3621 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3622 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3623 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3624 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3620 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3621 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3622 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3623 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3624 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3625 | 3625 | |
| 3626 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3627 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3628 | - } |
|
| 3626 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3627 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3628 | + } |
|
| 3629 | 3629 | |
| 3630 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3631 | - $json['total'] = $items_count; |
|
| 3632 | - $json['files'] = $chunk_file_paths; |
|
| 3633 | - } else {
|
|
| 3634 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3635 | - } |
|
| 3636 | - } |
|
| 3637 | - wp_send_json( $json ); |
|
| 3638 | - } |
|
| 3639 | - } |
|
| 3640 | - break; |
|
| 3641 | - case 'export_hoods': {
|
|
| 3642 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3643 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3644 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3645 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3646 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3630 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3631 | + $json['total'] = $items_count; |
|
| 3632 | + $json['files'] = $chunk_file_paths; |
|
| 3633 | + } else {
|
|
| 3634 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3635 | + } |
|
| 3636 | + } |
|
| 3637 | + wp_send_json( $json ); |
|
| 3638 | + } |
|
| 3639 | + } |
|
| 3640 | + break; |
|
| 3641 | + case 'export_hoods': {
|
|
| 3642 | + $file_url_base = geodir_path_import_export() . '/'; |
|
| 3643 | + $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3644 | + $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3645 | + $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3646 | + $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3647 | 3647 | |
| 3648 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3648 | + $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3649 | 3649 | |
| 3650 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3651 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3652 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3653 | - $percentage = min( $percentage, 100 ); |
|
| 3650 | + if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3651 | + $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3652 | + $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3653 | + $percentage = min( $percentage, 100 ); |
|
| 3654 | 3654 | |
| 3655 | - $json['percentage'] = $percentage; |
|
| 3656 | - wp_send_json( $json ); |
|
| 3657 | - } else {
|
|
| 3658 | - $chunk_file_paths = array(); |
|
| 3655 | + $json['percentage'] = $percentage; |
|
| 3656 | + wp_send_json( $json ); |
|
| 3657 | + } else {
|
|
| 3658 | + $chunk_file_paths = array(); |
|
| 3659 | 3659 | |
| 3660 | - if ( !$items_count > 0 ) {
|
|
| 3661 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3662 | - } else {
|
|
| 3663 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3664 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3660 | + if ( !$items_count > 0 ) {
|
|
| 3661 | + $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3662 | + } else {
|
|
| 3663 | + $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3664 | + $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3665 | 3665 | |
| 3666 | - $j = $chunk_page_no; |
|
| 3667 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3666 | + $j = $chunk_page_no; |
|
| 3667 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3668 | 3668 | |
| 3669 | - $per_page = 500; |
|
| 3670 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3671 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3669 | + $per_page = 500; |
|
| 3670 | + $per_page = min( $per_page, $chunk_per_page ); |
|
| 3671 | + $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3672 | 3672 | |
| 3673 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3674 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3673 | + for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3674 | + $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3675 | 3675 | |
| 3676 | - $clear = $i == 0 ? true : false; |
|
| 3677 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3678 | - } |
|
| 3676 | + $clear = $i == 0 ? true : false; |
|
| 3677 | + geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3678 | + } |
|
| 3679 | 3679 | |
| 3680 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3681 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3682 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3683 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3684 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3680 | + if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3681 | + $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3682 | + $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3683 | + $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3684 | + $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3685 | 3685 | |
| 3686 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3687 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3688 | - } |
|
| 3686 | + $file_url = $file_url_base . $chunk_file_name; |
|
| 3687 | + $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3688 | + } |
|
| 3689 | 3689 | |
| 3690 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3691 | - $json['total'] = $items_count; |
|
| 3692 | - $json['files'] = $chunk_file_paths; |
|
| 3693 | - } else {
|
|
| 3694 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3695 | - } |
|
| 3696 | - } |
|
| 3697 | - wp_send_json( $json ); |
|
| 3698 | - } |
|
| 3699 | - } |
|
| 3700 | - break; |
|
| 3701 | - case 'prepare_import': |
|
| 3702 | - case 'import_cat': |
|
| 3703 | - case 'import_post': |
|
| 3704 | - case 'import_loc': |
|
| 3705 | - case 'import_hood': {
|
|
| 3706 | - // WPML |
|
| 3707 | - $is_wpml = geodir_is_wpml(); |
|
| 3708 | - if ($is_wpml) {
|
|
| 3709 | - global $sitepress; |
|
| 3710 | - $active_lang = ICL_LANGUAGE_CODE; |
|
| 3711 | - } |
|
| 3712 | - // WPML |
|
| 3690 | + if ( !empty($chunk_file_paths) ) {
|
|
| 3691 | + $json['total'] = $items_count; |
|
| 3692 | + $json['files'] = $chunk_file_paths; |
|
| 3693 | + } else {
|
|
| 3694 | + $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3695 | + } |
|
| 3696 | + } |
|
| 3697 | + wp_send_json( $json ); |
|
| 3698 | + } |
|
| 3699 | + } |
|
| 3700 | + break; |
|
| 3701 | + case 'prepare_import': |
|
| 3702 | + case 'import_cat': |
|
| 3703 | + case 'import_post': |
|
| 3704 | + case 'import_loc': |
|
| 3705 | + case 'import_hood': {
|
|
| 3706 | + // WPML |
|
| 3707 | + $is_wpml = geodir_is_wpml(); |
|
| 3708 | + if ($is_wpml) {
|
|
| 3709 | + global $sitepress; |
|
| 3710 | + $active_lang = ICL_LANGUAGE_CODE; |
|
| 3711 | + } |
|
| 3712 | + // WPML |
|
| 3713 | 3713 | |
| 3714 | - ini_set( 'auto_detect_line_endings', true ); |
|
| 3714 | + ini_set( 'auto_detect_line_endings', true ); |
|
| 3715 | 3715 | |
| 3716 | - $uploads = wp_upload_dir(); |
|
| 3717 | - $uploads_dir = $uploads['path']; |
|
| 3718 | - $uploads_subdir = $uploads['subdir']; |
|
| 3716 | + $uploads = wp_upload_dir(); |
|
| 3717 | + $uploads_dir = $uploads['path']; |
|
| 3718 | + $uploads_subdir = $uploads['subdir']; |
|
| 3719 | 3719 | |
| 3720 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3721 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3720 | + $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3721 | + $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3722 | 3722 | |
| 3723 | - $csv_file_arr = explode( '/', $csv_file ); |
|
| 3724 | - $csv_filename = end( $csv_file_arr ); |
|
| 3725 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3723 | + $csv_file_arr = explode( '/', $csv_file ); |
|
| 3724 | + $csv_filename = end( $csv_file_arr ); |
|
| 3725 | + $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3726 | 3726 | |
| 3727 | - $json['file'] = $csv_file; |
|
| 3728 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3729 | - $file = array(); |
|
| 3727 | + $json['file'] = $csv_file; |
|
| 3728 | + $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3729 | + $file = array(); |
|
| 3730 | 3730 | |
| 3731 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3732 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3731 | + if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3732 | + $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3733 | 3733 | |
| 3734 | - if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
|
| 3735 | - $json['error'] = NULL; |
|
| 3736 | - $json['rows'] = 0; |
|
| 3734 | + if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
|
| 3735 | + $json['error'] = NULL; |
|
| 3736 | + $json['rows'] = 0; |
|
| 3737 | 3737 | |
| 3738 | - $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
| 3739 | - setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 3740 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3741 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3742 | - if ( !empty( $data ) ) {
|
|
| 3743 | - $file[] = $data; |
|
| 3744 | - } |
|
| 3745 | - } |
|
| 3746 | - fclose($handle); |
|
| 3747 | - } |
|
| 3748 | - setlocale(LC_ALL, $lc_all); |
|
| 3738 | + $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
|
| 3739 | + setlocale(LC_ALL, 'en_US.UTF-8'); |
|
| 3740 | + if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3741 | + while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3742 | + if ( !empty( $data ) ) {
|
|
| 3743 | + $file[] = $data; |
|
| 3744 | + } |
|
| 3745 | + } |
|
| 3746 | + fclose($handle); |
|
| 3747 | + } |
|
| 3748 | + setlocale(LC_ALL, $lc_all); |
|
| 3749 | 3749 | |
| 3750 | - $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
| 3750 | + $json['rows'] = (!empty($file) && count($file) > 1) ? count($file) - 1 : 0; |
|
| 3751 | 3751 | |
| 3752 | - if (!$json['rows'] > 0) {
|
|
| 3753 | - $json['error'] = __('No data found in csv file.', 'geodirectory');
|
|
| 3754 | - } |
|
| 3755 | - } else {
|
|
| 3756 | - wp_send_json( $json ); |
|
| 3757 | - } |
|
| 3758 | - } else {
|
|
| 3759 | - wp_send_json( $json ); |
|
| 3760 | - } |
|
| 3752 | + if (!$json['rows'] > 0) {
|
|
| 3753 | + $json['error'] = __('No data found in csv file.', 'geodirectory');
|
|
| 3754 | + } |
|
| 3755 | + } else {
|
|
| 3756 | + wp_send_json( $json ); |
|
| 3757 | + } |
|
| 3758 | + } else {
|
|
| 3759 | + wp_send_json( $json ); |
|
| 3760 | + } |
|
| 3761 | 3761 | |
| 3762 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3763 | - wp_send_json( $json ); |
|
| 3764 | - } |
|
| 3762 | + if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3763 | + wp_send_json( $json ); |
|
| 3764 | + } |
|
| 3765 | 3765 | |
| 3766 | - $total = $json['rows']; |
|
| 3767 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3768 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3766 | + $total = $json['rows']; |
|
| 3767 | + $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3768 | + $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3769 | 3769 | |
| 3770 | - $count = $limit; |
|
| 3770 | + $count = $limit; |
|
| 3771 | 3771 | |
| 3772 | - if ($count < $total) {
|
|
| 3773 | - $count = $processed + $count; |
|
| 3774 | - if ($count > $total) {
|
|
| 3775 | - $count = $total; |
|
| 3776 | - } |
|
| 3777 | - } else {
|
|
| 3778 | - $count = $total; |
|
| 3779 | - } |
|
| 3772 | + if ($count < $total) {
|
|
| 3773 | + $count = $processed + $count; |
|
| 3774 | + if ($count > $total) {
|
|
| 3775 | + $count = $total; |
|
| 3776 | + } |
|
| 3777 | + } else {
|
|
| 3778 | + $count = $total; |
|
| 3779 | + } |
|
| 3780 | 3780 | |
| 3781 | - $created = 0; |
|
| 3782 | - $updated = 0; |
|
| 3783 | - $skipped = 0; |
|
| 3784 | - $invalid = 0; |
|
| 3785 | - $invalid_addr = 0; |
|
| 3786 | - $images = 0; |
|
| 3781 | + $created = 0; |
|
| 3782 | + $updated = 0; |
|
| 3783 | + $skipped = 0; |
|
| 3784 | + $invalid = 0; |
|
| 3785 | + $invalid_addr = 0; |
|
| 3786 | + $images = 0; |
|
| 3787 | 3787 | |
| 3788 | - $gd_post_info = array(); |
|
| 3789 | - $countpost = 0; |
|
| 3788 | + $gd_post_info = array(); |
|
| 3789 | + $countpost = 0; |
|
| 3790 | 3790 | |
| 3791 | - $post_types = geodir_get_posttypes(); |
|
| 3791 | + $post_types = geodir_get_posttypes(); |
|
| 3792 | 3792 | |
| 3793 | - if ( $task == 'import_cat' ) {
|
|
| 3794 | - if (!empty($file)) {
|
|
| 3795 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 3793 | + if ( $task == 'import_cat' ) {
|
|
| 3794 | + if (!empty($file)) {
|
|
| 3795 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 3796 | 3796 | |
| 3797 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 3798 | - $json['error'] = CSV_INVAILD_FILE; |
|
| 3799 | - wp_send_json( $json ); |
|
| 3800 | - exit; |
|
| 3801 | - } |
|
| 3797 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 3798 | + $json['error'] = CSV_INVAILD_FILE; |
|
| 3799 | + wp_send_json( $json ); |
|
| 3800 | + exit; |
|
| 3801 | + } |
|
| 3802 | 3802 | |
| 3803 | - $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
|
|
| 3803 | + $gd_error_log = __('GD IMPORT CATEGORIES [ROW %d]:', 'geodirectory');
|
|
| 3804 | 3804 | |
| 3805 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 3806 | - $index = $processed + $i; |
|
| 3805 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 3806 | + $index = $processed + $i; |
|
| 3807 | 3807 | |
| 3808 | - if (isset($file[$index])) {
|
|
| 3809 | - $row = $file[$index]; |
|
| 3810 | - $row = array_map( 'trim', $row ); |
|
| 3811 | - //$row = array_map( 'utf8_encode', $row ); |
|
| 3808 | + if (isset($file[$index])) {
|
|
| 3809 | + $row = $file[$index]; |
|
| 3810 | + $row = array_map( 'trim', $row ); |
|
| 3811 | + //$row = array_map( 'utf8_encode', $row ); |
|
| 3812 | 3812 | |
| 3813 | - $cat_id = ''; |
|
| 3814 | - $cat_name = ''; |
|
| 3815 | - $cat_slug = ''; |
|
| 3816 | - $cat_posttype = ''; |
|
| 3817 | - $cat_parent = ''; |
|
| 3818 | - $cat_description = ''; |
|
| 3819 | - $cat_schema = ''; |
|
| 3820 | - $cat_top_description = ''; |
|
| 3821 | - $cat_image = ''; |
|
| 3822 | - $cat_icon = ''; |
|
| 3823 | - $cat_language = ''; |
|
| 3824 | - $cat_id_original = ''; |
|
| 3813 | + $cat_id = ''; |
|
| 3814 | + $cat_name = ''; |
|
| 3815 | + $cat_slug = ''; |
|
| 3816 | + $cat_posttype = ''; |
|
| 3817 | + $cat_parent = ''; |
|
| 3818 | + $cat_description = ''; |
|
| 3819 | + $cat_schema = ''; |
|
| 3820 | + $cat_top_description = ''; |
|
| 3821 | + $cat_image = ''; |
|
| 3822 | + $cat_icon = ''; |
|
| 3823 | + $cat_language = ''; |
|
| 3824 | + $cat_id_original = ''; |
|
| 3825 | 3825 | |
| 3826 | - $c = 0; |
|
| 3827 | - foreach ($columns as $column ) {
|
|
| 3828 | - if ( $column == 'cat_id' ) {
|
|
| 3829 | - $cat_id = (int)$row[$c]; |
|
| 3830 | - } else if ( $column == 'cat_name' ) {
|
|
| 3831 | - $cat_name = $row[$c]; |
|
| 3832 | - } else if ( $column == 'cat_slug' ) {
|
|
| 3833 | - $cat_slug = $row[$c]; |
|
| 3834 | - } else if ( $column == 'cat_posttype' ) {
|
|
| 3835 | - $cat_posttype = $row[$c]; |
|
| 3836 | - } else if ( $column == 'cat_parent' ) {
|
|
| 3837 | - $cat_parent = trim($row[$c]); |
|
| 3838 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3839 | - $cat_schema = $row[$c]; |
|
| 3840 | - } else if ( $column == 'cat_description' ) {
|
|
| 3841 | - $cat_description = $row[$c]; |
|
| 3842 | - } else if ( $column == 'cat_top_description' ) {
|
|
| 3843 | - $cat_top_description = $row[$c]; |
|
| 3844 | - } else if ( $column == 'cat_image' ) {
|
|
| 3845 | - $cat_image = $row[$c]; |
|
| 3846 | - } else if ( $column == 'cat_icon' ) {
|
|
| 3847 | - $cat_icon = $row[$c]; |
|
| 3848 | - } |
|
| 3849 | - // WPML |
|
| 3850 | - if ( $is_wpml ) {
|
|
| 3851 | - if ( $column == 'cat_language' ) {
|
|
| 3852 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3853 | - } else if ( $column == 'cat_id_original' ) {
|
|
| 3854 | - $cat_id_original = (int)$row[$c]; |
|
| 3855 | - } |
|
| 3856 | - } |
|
| 3857 | - // WPML |
|
| 3858 | - $c++; |
|
| 3859 | - } |
|
| 3826 | + $c = 0; |
|
| 3827 | + foreach ($columns as $column ) {
|
|
| 3828 | + if ( $column == 'cat_id' ) {
|
|
| 3829 | + $cat_id = (int)$row[$c]; |
|
| 3830 | + } else if ( $column == 'cat_name' ) {
|
|
| 3831 | + $cat_name = $row[$c]; |
|
| 3832 | + } else if ( $column == 'cat_slug' ) {
|
|
| 3833 | + $cat_slug = $row[$c]; |
|
| 3834 | + } else if ( $column == 'cat_posttype' ) {
|
|
| 3835 | + $cat_posttype = $row[$c]; |
|
| 3836 | + } else if ( $column == 'cat_parent' ) {
|
|
| 3837 | + $cat_parent = trim($row[$c]); |
|
| 3838 | + } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3839 | + $cat_schema = $row[$c]; |
|
| 3840 | + } else if ( $column == 'cat_description' ) {
|
|
| 3841 | + $cat_description = $row[$c]; |
|
| 3842 | + } else if ( $column == 'cat_top_description' ) {
|
|
| 3843 | + $cat_top_description = $row[$c]; |
|
| 3844 | + } else if ( $column == 'cat_image' ) {
|
|
| 3845 | + $cat_image = $row[$c]; |
|
| 3846 | + } else if ( $column == 'cat_icon' ) {
|
|
| 3847 | + $cat_icon = $row[$c]; |
|
| 3848 | + } |
|
| 3849 | + // WPML |
|
| 3850 | + if ( $is_wpml ) {
|
|
| 3851 | + if ( $column == 'cat_language' ) {
|
|
| 3852 | + $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3853 | + } else if ( $column == 'cat_id_original' ) {
|
|
| 3854 | + $cat_id_original = (int)$row[$c]; |
|
| 3855 | + } |
|
| 3856 | + } |
|
| 3857 | + // WPML |
|
| 3858 | + $c++; |
|
| 3859 | + } |
|
| 3860 | 3860 | |
| 3861 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3862 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3861 | + if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3862 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3863 | 3863 | |
| 3864 | - $invalid++; |
|
| 3865 | - continue; |
|
| 3866 | - } |
|
| 3864 | + $invalid++; |
|
| 3865 | + continue; |
|
| 3866 | + } |
|
| 3867 | 3867 | |
| 3868 | - // WPML |
|
| 3869 | - if ($is_wpml && $cat_language != '') {
|
|
| 3870 | - $sitepress->switch_lang($cat_language, true); |
|
| 3871 | - } |
|
| 3872 | - // WPML |
|
| 3868 | + // WPML |
|
| 3869 | + if ($is_wpml && $cat_language != '') {
|
|
| 3870 | + $sitepress->switch_lang($cat_language, true); |
|
| 3871 | + } |
|
| 3872 | + // WPML |
|
| 3873 | 3873 | |
| 3874 | - $term_data = array(); |
|
| 3875 | - $term_data['name'] = $cat_name; |
|
| 3876 | - $term_data['slug'] = $cat_slug; |
|
| 3877 | - $term_data['description'] = $cat_description; |
|
| 3878 | - $term_data['cat_schema'] = $cat_schema; |
|
| 3879 | - $term_data['top_description'] = $cat_top_description; |
|
| 3880 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3881 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3874 | + $term_data = array(); |
|
| 3875 | + $term_data['name'] = $cat_name; |
|
| 3876 | + $term_data['slug'] = $cat_slug; |
|
| 3877 | + $term_data['description'] = $cat_description; |
|
| 3878 | + $term_data['cat_schema'] = $cat_schema; |
|
| 3879 | + $term_data['top_description'] = $cat_top_description; |
|
| 3880 | + $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3881 | + $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3882 | 3882 | |
| 3883 | - //$term_data = array_map( 'utf8_encode', $term_data ); |
|
| 3883 | + //$term_data = array_map( 'utf8_encode', $term_data ); |
|
| 3884 | 3884 | |
| 3885 | - $taxonomy = $cat_posttype . 'category'; |
|
| 3885 | + $taxonomy = $cat_posttype . 'category'; |
|
| 3886 | 3886 | |
| 3887 | - $term_data['taxonomy'] = $taxonomy; |
|
| 3887 | + $term_data['taxonomy'] = $taxonomy; |
|
| 3888 | 3888 | |
| 3889 | - $term_parent_id = 0; |
|
| 3890 | - if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3891 | - $term_parent = ''; |
|
| 3889 | + $term_parent_id = 0; |
|
| 3890 | + if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3891 | + $term_parent = ''; |
|
| 3892 | 3892 | |
| 3893 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3894 | - // |
|
| 3895 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3896 | - // |
|
| 3897 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3898 | - // |
|
| 3899 | - } else {
|
|
| 3900 | - $term_parent_data = array(); |
|
| 3901 | - $term_parent_data['name'] = $cat_parent; |
|
| 3902 | - //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
| 3903 | - $term_parent_data['taxonomy'] = $taxonomy; |
|
| 3893 | + if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3894 | + // |
|
| 3895 | + } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3896 | + // |
|
| 3897 | + } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3898 | + // |
|
| 3899 | + } else {
|
|
| 3900 | + $term_parent_data = array(); |
|
| 3901 | + $term_parent_data['name'] = $cat_parent; |
|
| 3902 | + //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
|
| 3903 | + $term_parent_data['taxonomy'] = $taxonomy; |
|
| 3904 | 3904 | |
| 3905 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3906 | - } |
|
| 3905 | + $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3906 | + } |
|
| 3907 | 3907 | |
| 3908 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3909 | - $term_parent_id = (int)$term_parent->term_id; |
|
| 3910 | - } |
|
| 3911 | - } |
|
| 3912 | - $term_data['parent'] = (int)$term_parent_id; |
|
| 3908 | + if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3909 | + $term_parent_id = (int)$term_parent->term_id; |
|
| 3910 | + } |
|
| 3911 | + } |
|
| 3912 | + $term_data['parent'] = (int)$term_parent_id; |
|
| 3913 | 3913 | |
| 3914 | - $term_id = NULL; |
|
| 3915 | - if ( $import_choice == 'update' ) {
|
|
| 3916 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3917 | - $term_data['term_id'] = $term['term_id']; |
|
| 3914 | + $term_id = NULL; |
|
| 3915 | + if ( $import_choice == 'update' ) {
|
|
| 3916 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3917 | + $term_data['term_id'] = $term['term_id']; |
|
| 3918 | 3918 | |
| 3919 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3920 | - $updated++; |
|
| 3921 | - } else {
|
|
| 3922 | - $invalid++; |
|
| 3923 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3924 | - } |
|
| 3925 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3926 | - $term_data['term_id'] = $term['term_id']; |
|
| 3919 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3920 | + $updated++; |
|
| 3921 | + } else {
|
|
| 3922 | + $invalid++; |
|
| 3923 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3924 | + } |
|
| 3925 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3926 | + $term_data['term_id'] = $term['term_id']; |
|
| 3927 | 3927 | |
| 3928 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3929 | - $updated++; |
|
| 3930 | - } else {
|
|
| 3931 | - $invalid++; |
|
| 3932 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3933 | - } |
|
| 3934 | - } else {
|
|
| 3935 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3936 | - $created++; |
|
| 3937 | - } else {
|
|
| 3938 | - $invalid++; |
|
| 3939 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3940 | - } |
|
| 3941 | - } |
|
| 3942 | - } else if ( $import_choice == 'skip' ) {
|
|
| 3943 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3944 | - $skipped++; |
|
| 3945 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3946 | - $skipped++; |
|
| 3947 | - } else {
|
|
| 3948 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3949 | - $created++; |
|
| 3950 | - } else {
|
|
| 3951 | - $invalid++; |
|
| 3952 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3953 | - } |
|
| 3954 | - } |
|
| 3955 | - } else {
|
|
| 3956 | - $invalid++; |
|
| 3957 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3958 | - } |
|
| 3928 | + if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3929 | + $updated++; |
|
| 3930 | + } else {
|
|
| 3931 | + $invalid++; |
|
| 3932 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3933 | + } |
|
| 3934 | + } else {
|
|
| 3935 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3936 | + $created++; |
|
| 3937 | + } else {
|
|
| 3938 | + $invalid++; |
|
| 3939 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3940 | + } |
|
| 3941 | + } |
|
| 3942 | + } else if ( $import_choice == 'skip' ) {
|
|
| 3943 | + if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3944 | + $skipped++; |
|
| 3945 | + } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3946 | + $skipped++; |
|
| 3947 | + } else {
|
|
| 3948 | + if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3949 | + $created++; |
|
| 3950 | + } else {
|
|
| 3951 | + $invalid++; |
|
| 3952 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3953 | + } |
|
| 3954 | + } |
|
| 3955 | + } else {
|
|
| 3956 | + $invalid++; |
|
| 3957 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3958 | + } |
|
| 3959 | 3959 | |
| 3960 | - if ( $term_id ) {
|
|
| 3961 | - // WPML |
|
| 3962 | - if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
|
| 3963 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3964 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3965 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 3966 | - |
|
| 3967 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3960 | + if ( $term_id ) {
|
|
| 3961 | + // WPML |
|
| 3962 | + if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
|
| 3963 | + $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3964 | + $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3965 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 3966 | + |
|
| 3967 | + $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3968 | 3968 | |
| 3969 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3970 | - } |
|
| 3971 | - // WPML |
|
| 3969 | + $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3970 | + } |
|
| 3971 | + // WPML |
|
| 3972 | 3972 | |
| 3973 | - if ( isset( $term_data['top_description'] ) ) {
|
|
| 3974 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3975 | - } |
|
| 3973 | + if ( isset( $term_data['top_description'] ) ) {
|
|
| 3974 | + update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3975 | + } |
|
| 3976 | 3976 | |
| 3977 | - if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3978 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3979 | - } |
|
| 3977 | + if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3978 | + update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3979 | + } |
|
| 3980 | 3980 | |
| 3981 | - $attachment = false; |
|
| 3982 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3983 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3984 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3981 | + $attachment = false; |
|
| 3982 | + if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3983 | + $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3984 | + $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3985 | 3985 | |
| 3986 | - if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3987 | - $attachment = true; |
|
| 3988 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3989 | - } |
|
| 3990 | - } |
|
| 3986 | + if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3987 | + $attachment = true; |
|
| 3988 | + update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3989 | + } |
|
| 3990 | + } |
|
| 3991 | 3991 | |
| 3992 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3993 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3994 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3995 | - |
|
| 3996 | - if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3997 | - $attachment = true; |
|
| 3998 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 3999 | - } |
|
| 4000 | - } |
|
| 3992 | + if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3993 | + $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3994 | + $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3995 | + |
|
| 3996 | + if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3997 | + $attachment = true; |
|
| 3998 | + update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 3999 | + } |
|
| 4000 | + } |
|
| 4001 | 4001 | |
| 4002 | - if ( $attachment ) {
|
|
| 4003 | - $images++; |
|
| 4004 | - } |
|
| 4005 | - } |
|
| 4002 | + if ( $attachment ) {
|
|
| 4003 | + $images++; |
|
| 4004 | + } |
|
| 4005 | + } |
|
| 4006 | 4006 | |
| 4007 | - // WPML |
|
| 4008 | - if ($is_wpml && $cat_language != '') {
|
|
| 4009 | - $sitepress->switch_lang($active_lang, true); |
|
| 4010 | - } |
|
| 4011 | - // WPML |
|
| 4012 | - } |
|
| 4013 | - } |
|
| 4014 | - } |
|
| 4007 | + // WPML |
|
| 4008 | + if ($is_wpml && $cat_language != '') {
|
|
| 4009 | + $sitepress->switch_lang($active_lang, true); |
|
| 4010 | + } |
|
| 4011 | + // WPML |
|
| 4012 | + } |
|
| 4013 | + } |
|
| 4014 | + } |
|
| 4015 | 4015 | |
| 4016 | - $json = array(); |
|
| 4017 | - $json['processed'] = $limit; |
|
| 4018 | - $json['created'] = $created; |
|
| 4019 | - $json['updated'] = $updated; |
|
| 4020 | - $json['skipped'] = $skipped; |
|
| 4021 | - $json['invalid'] = $invalid; |
|
| 4022 | - $json['images'] = $images; |
|
| 4016 | + $json = array(); |
|
| 4017 | + $json['processed'] = $limit; |
|
| 4018 | + $json['created'] = $created; |
|
| 4019 | + $json['updated'] = $updated; |
|
| 4020 | + $json['skipped'] = $skipped; |
|
| 4021 | + $json['invalid'] = $invalid; |
|
| 4022 | + $json['images'] = $images; |
|
| 4023 | 4023 | |
| 4024 | - wp_send_json( $json ); |
|
| 4025 | - exit; |
|
| 4026 | - } else if ( $task == 'import_post' ) {
|
|
| 4027 | - $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4028 | - //run some stuff to make the import quicker |
|
| 4029 | - wp_defer_term_counting( true ); |
|
| 4030 | - wp_defer_comment_counting( true ); |
|
| 4031 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4024 | + wp_send_json( $json ); |
|
| 4025 | + exit; |
|
| 4026 | + } else if ( $task == 'import_post' ) {
|
|
| 4027 | + $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4028 | + //run some stuff to make the import quicker |
|
| 4029 | + wp_defer_term_counting( true ); |
|
| 4030 | + wp_defer_comment_counting( true ); |
|
| 4031 | + $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4032 | 4032 | // |
| 4033 | 4033 | // remove_all_actions('publish_post');
|
| 4034 | 4034 | // remove_all_actions('transition_post_status');
|
| 4035 | 4035 | // remove_all_actions('publish_future_post');
|
| 4036 | 4036 | |
| 4037 | - if (!empty($file)) {
|
|
| 4038 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4039 | - $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
| 4040 | - $default_status = 'publish'; |
|
| 4041 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4037 | + if (!empty($file)) {
|
|
| 4038 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4039 | + $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
|
| 4040 | + $default_status = 'publish'; |
|
| 4041 | + $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4042 | 4042 | |
| 4043 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4043 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4044 | 4044 | |
| 4045 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4046 | - $json['error'] = CSV_INVAILD_FILE; |
|
| 4047 | - wp_send_json( $json ); |
|
| 4048 | - exit; |
|
| 4049 | - } |
|
| 4050 | - $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4051 | - $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
|
| 4052 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4053 | - $processed_actual = 0; |
|
| 4054 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4055 | - $index = $processed + $i; |
|
| 4056 | - $gd_post = array(); |
|
| 4045 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4046 | + $json['error'] = CSV_INVAILD_FILE; |
|
| 4047 | + wp_send_json( $json ); |
|
| 4048 | + exit; |
|
| 4049 | + } |
|
| 4050 | + $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4051 | + $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
|
| 4052 | + $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4053 | + $processed_actual = 0; |
|
| 4054 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4055 | + $index = $processed + $i; |
|
| 4056 | + $gd_post = array(); |
|
| 4057 | 4057 | |
| 4058 | - if (isset($file[$index])) {
|
|
| 4059 | - $processed_actual++; |
|
| 4060 | - $row = $file[$index]; |
|
| 4061 | - $row = array_map( 'trim', $row ); |
|
| 4062 | - //$row = array_map( 'utf8_encode', $row ); |
|
| 4063 | - $row = array_map( 'addslashes_gpc', $row ); |
|
| 4058 | + if (isset($file[$index])) {
|
|
| 4059 | + $processed_actual++; |
|
| 4060 | + $row = $file[$index]; |
|
| 4061 | + $row = array_map( 'trim', $row ); |
|
| 4062 | + //$row = array_map( 'utf8_encode', $row ); |
|
| 4063 | + $row = array_map( 'addslashes_gpc', $row ); |
|
| 4064 | 4064 | |
| 4065 | - $post_id = ''; |
|
| 4066 | - $post_title = ''; |
|
| 4067 | - $post_author = ''; |
|
| 4068 | - $post_content = ''; |
|
| 4069 | - $post_category_arr = array(); |
|
| 4070 | - $default_category = ''; |
|
| 4071 | - $post_tags = array(); |
|
| 4072 | - $post_type = ''; |
|
| 4073 | - $post_status = ''; |
|
| 4074 | - $geodir_video = ''; |
|
| 4075 | - $post_address = ''; |
|
| 4076 | - $post_city = ''; |
|
| 4077 | - $post_region = ''; |
|
| 4078 | - $post_country = ''; |
|
| 4079 | - $post_zip = ''; |
|
| 4080 | - $post_latitude = ''; |
|
| 4081 | - $post_longitude = ''; |
|
| 4082 | - $post_neighbourhood = ''; |
|
| 4083 | - $neighbourhood_latitude = ''; |
|
| 4084 | - $neighbourhood_longitude = ''; |
|
| 4085 | - $geodir_timing = ''; |
|
| 4086 | - $geodir_contact = ''; |
|
| 4087 | - $geodir_email = ''; |
|
| 4088 | - $geodir_website = ''; |
|
| 4089 | - $geodir_twitter = ''; |
|
| 4090 | - $geodir_facebook = ''; |
|
| 4091 | - $geodir_twitter = ''; |
|
| 4092 | - $post_images = array(); |
|
| 4065 | + $post_id = ''; |
|
| 4066 | + $post_title = ''; |
|
| 4067 | + $post_author = ''; |
|
| 4068 | + $post_content = ''; |
|
| 4069 | + $post_category_arr = array(); |
|
| 4070 | + $default_category = ''; |
|
| 4071 | + $post_tags = array(); |
|
| 4072 | + $post_type = ''; |
|
| 4073 | + $post_status = ''; |
|
| 4074 | + $geodir_video = ''; |
|
| 4075 | + $post_address = ''; |
|
| 4076 | + $post_city = ''; |
|
| 4077 | + $post_region = ''; |
|
| 4078 | + $post_country = ''; |
|
| 4079 | + $post_zip = ''; |
|
| 4080 | + $post_latitude = ''; |
|
| 4081 | + $post_longitude = ''; |
|
| 4082 | + $post_neighbourhood = ''; |
|
| 4083 | + $neighbourhood_latitude = ''; |
|
| 4084 | + $neighbourhood_longitude = ''; |
|
| 4085 | + $geodir_timing = ''; |
|
| 4086 | + $geodir_contact = ''; |
|
| 4087 | + $geodir_email = ''; |
|
| 4088 | + $geodir_website = ''; |
|
| 4089 | + $geodir_twitter = ''; |
|
| 4090 | + $geodir_facebook = ''; |
|
| 4091 | + $geodir_twitter = ''; |
|
| 4092 | + $post_images = array(); |
|
| 4093 | 4093 | |
| 4094 | - $expire_date = 'Never'; |
|
| 4094 | + $expire_date = 'Never'; |
|
| 4095 | 4095 | |
| 4096 | - $language = ''; |
|
| 4097 | - $original_post_id = ''; |
|
| 4096 | + $language = ''; |
|
| 4097 | + $original_post_id = ''; |
|
| 4098 | 4098 | |
| 4099 | - $c = 0; |
|
| 4100 | - foreach ($columns as $column ) {
|
|
| 4101 | - $gd_post[$column] = $row[$c]; |
|
| 4099 | + $c = 0; |
|
| 4100 | + foreach ($columns as $column ) {
|
|
| 4101 | + $gd_post[$column] = $row[$c]; |
|
| 4102 | 4102 | |
| 4103 | - if ( $column == 'post_id' ) {
|
|
| 4104 | - $post_id = $row[$c]; |
|
| 4105 | - } else if ( $column == 'post_title' ) {
|
|
| 4106 | - $post_title = sanitize_text_field($row[$c]); |
|
| 4107 | - } else if ( $column == 'post_author' ) {
|
|
| 4108 | - $post_author = $row[$c]; |
|
| 4109 | - } else if ( $column == 'post_content' ) {
|
|
| 4110 | - $post_content = $row[$c]; |
|
| 4111 | - } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4112 | - $post_category_arr = explode( ',', $row[$c] ); |
|
| 4113 | - } else if ( $column == 'default_category' ) {
|
|
| 4114 | - $default_category = wp_kses_normalize_entities($row[$c]); |
|
| 4115 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4116 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4117 | - } else if ( $column == 'post_type' ) {
|
|
| 4118 | - $post_type = $row[$c]; |
|
| 4119 | - } else if ( $column == 'post_status' ) {
|
|
| 4120 | - $post_status = sanitize_key( $row[$c] ); |
|
| 4121 | - } else if ( $column == 'is_featured' ) {
|
|
| 4122 | - $is_featured = (int)$row[$c]; |
|
| 4123 | - } else if ( $column == 'geodir_video' ) {
|
|
| 4124 | - $geodir_video = $row[$c]; |
|
| 4125 | - } else if ( $column == 'post_address' ) {
|
|
| 4126 | - $post_address = sanitize_text_field($row[$c]); |
|
| 4127 | - } else if ( $column == 'post_city' ) {
|
|
| 4128 | - $post_city = sanitize_text_field($row[$c]); |
|
| 4129 | - } else if ( $column == 'post_region' ) {
|
|
| 4130 | - $post_region = sanitize_text_field($row[$c]); |
|
| 4131 | - } else if ( $column == 'post_country' ) {
|
|
| 4132 | - $post_country = sanitize_text_field($row[$c]); |
|
| 4133 | - } else if ( $column == 'post_zip' ) {
|
|
| 4134 | - $post_zip = sanitize_text_field($row[$c]); |
|
| 4135 | - } else if ( $column == 'post_latitude' ) {
|
|
| 4136 | - $post_latitude = sanitize_text_field($row[$c]); |
|
| 4137 | - } else if ( $column == 'post_longitude' ) {
|
|
| 4138 | - $post_longitude = sanitize_text_field($row[$c]); |
|
| 4139 | - } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4140 | - $post_neighbourhood = sanitize_text_field($row[$c]); |
|
| 4141 | - unset($gd_post[$column]); |
|
| 4142 | - } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4143 | - $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
| 4144 | - } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4145 | - $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
| 4146 | - } else if ( $column == 'geodir_timing' ) {
|
|
| 4147 | - $geodir_timing = sanitize_text_field($row[$c]); |
|
| 4148 | - } else if ( $column == 'geodir_contact' ) {
|
|
| 4149 | - $geodir_contact = sanitize_text_field($row[$c]); |
|
| 4150 | - } else if ( $column == 'geodir_email' ) {
|
|
| 4151 | - $geodir_email = sanitize_email($row[$c]); |
|
| 4152 | - } else if ( $column == 'geodir_website' ) {
|
|
| 4153 | - $geodir_website = sanitize_text_field($row[$c]); |
|
| 4154 | - } else if ( $column == 'geodir_twitter' ) {
|
|
| 4155 | - $geodir_twitter = sanitize_text_field($row[$c]); |
|
| 4156 | - } else if ( $column == 'geodir_facebook' ) {
|
|
| 4157 | - $geodir_facebook = sanitize_text_field($row[$c]); |
|
| 4158 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4159 | - $post_images[] = $row[$c]; |
|
| 4160 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4161 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4162 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4163 | - $row[$c] = str_replace('/', '-', $row[$c]);
|
|
| 4164 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4165 | - } |
|
| 4166 | - // WPML |
|
| 4167 | - if ($is_wpml) {
|
|
| 4168 | - if ($column == 'language') {
|
|
| 4169 | - $language = geodir_strtolower(trim($row[$c])); |
|
| 4170 | - } else if ($column == 'original_post_id') {
|
|
| 4171 | - $original_post_id = (int)$row[$c]; |
|
| 4172 | - } |
|
| 4173 | - } |
|
| 4174 | - // WPML |
|
| 4175 | - $c++; |
|
| 4176 | - } |
|
| 4177 | - // listing claimed or not |
|
| 4178 | - if ($is_claim_active && isset($gd_post['claimed'])) {
|
|
| 4179 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4180 | - } |
|
| 4103 | + if ( $column == 'post_id' ) {
|
|
| 4104 | + $post_id = $row[$c]; |
|
| 4105 | + } else if ( $column == 'post_title' ) {
|
|
| 4106 | + $post_title = sanitize_text_field($row[$c]); |
|
| 4107 | + } else if ( $column == 'post_author' ) {
|
|
| 4108 | + $post_author = $row[$c]; |
|
| 4109 | + } else if ( $column == 'post_content' ) {
|
|
| 4110 | + $post_content = $row[$c]; |
|
| 4111 | + } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4112 | + $post_category_arr = explode( ',', $row[$c] ); |
|
| 4113 | + } else if ( $column == 'default_category' ) {
|
|
| 4114 | + $default_category = wp_kses_normalize_entities($row[$c]); |
|
| 4115 | + } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4116 | + $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4117 | + } else if ( $column == 'post_type' ) {
|
|
| 4118 | + $post_type = $row[$c]; |
|
| 4119 | + } else if ( $column == 'post_status' ) {
|
|
| 4120 | + $post_status = sanitize_key( $row[$c] ); |
|
| 4121 | + } else if ( $column == 'is_featured' ) {
|
|
| 4122 | + $is_featured = (int)$row[$c]; |
|
| 4123 | + } else if ( $column == 'geodir_video' ) {
|
|
| 4124 | + $geodir_video = $row[$c]; |
|
| 4125 | + } else if ( $column == 'post_address' ) {
|
|
| 4126 | + $post_address = sanitize_text_field($row[$c]); |
|
| 4127 | + } else if ( $column == 'post_city' ) {
|
|
| 4128 | + $post_city = sanitize_text_field($row[$c]); |
|
| 4129 | + } else if ( $column == 'post_region' ) {
|
|
| 4130 | + $post_region = sanitize_text_field($row[$c]); |
|
| 4131 | + } else if ( $column == 'post_country' ) {
|
|
| 4132 | + $post_country = sanitize_text_field($row[$c]); |
|
| 4133 | + } else if ( $column == 'post_zip' ) {
|
|
| 4134 | + $post_zip = sanitize_text_field($row[$c]); |
|
| 4135 | + } else if ( $column == 'post_latitude' ) {
|
|
| 4136 | + $post_latitude = sanitize_text_field($row[$c]); |
|
| 4137 | + } else if ( $column == 'post_longitude' ) {
|
|
| 4138 | + $post_longitude = sanitize_text_field($row[$c]); |
|
| 4139 | + } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4140 | + $post_neighbourhood = sanitize_text_field($row[$c]); |
|
| 4141 | + unset($gd_post[$column]); |
|
| 4142 | + } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4143 | + $neighbourhood_latitude = sanitize_text_field($row[$c]); |
|
| 4144 | + } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4145 | + $neighbourhood_longitude = sanitize_text_field($row[$c]); |
|
| 4146 | + } else if ( $column == 'geodir_timing' ) {
|
|
| 4147 | + $geodir_timing = sanitize_text_field($row[$c]); |
|
| 4148 | + } else if ( $column == 'geodir_contact' ) {
|
|
| 4149 | + $geodir_contact = sanitize_text_field($row[$c]); |
|
| 4150 | + } else if ( $column == 'geodir_email' ) {
|
|
| 4151 | + $geodir_email = sanitize_email($row[$c]); |
|
| 4152 | + } else if ( $column == 'geodir_website' ) {
|
|
| 4153 | + $geodir_website = sanitize_text_field($row[$c]); |
|
| 4154 | + } else if ( $column == 'geodir_twitter' ) {
|
|
| 4155 | + $geodir_twitter = sanitize_text_field($row[$c]); |
|
| 4156 | + } else if ( $column == 'geodir_facebook' ) {
|
|
| 4157 | + $geodir_facebook = sanitize_text_field($row[$c]); |
|
| 4158 | + } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4159 | + $post_images[] = $row[$c]; |
|
| 4160 | + } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4161 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4162 | + } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4163 | + $row[$c] = str_replace('/', '-', $row[$c]);
|
|
| 4164 | + $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4165 | + } |
|
| 4166 | + // WPML |
|
| 4167 | + if ($is_wpml) {
|
|
| 4168 | + if ($column == 'language') {
|
|
| 4169 | + $language = geodir_strtolower(trim($row[$c])); |
|
| 4170 | + } else if ($column == 'original_post_id') {
|
|
| 4171 | + $original_post_id = (int)$row[$c]; |
|
| 4172 | + } |
|
| 4173 | + } |
|
| 4174 | + // WPML |
|
| 4175 | + $c++; |
|
| 4176 | + } |
|
| 4177 | + // listing claimed or not |
|
| 4178 | + if ($is_claim_active && isset($gd_post['claimed'])) {
|
|
| 4179 | + $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4180 | + } |
|
| 4181 | 4181 | |
| 4182 | - // WPML |
|
| 4183 | - if ($is_wpml && $language != '') {
|
|
| 4184 | - $sitepress->switch_lang($language, true); |
|
| 4185 | - } |
|
| 4186 | - // WPML |
|
| 4182 | + // WPML |
|
| 4183 | + if ($is_wpml && $language != '') {
|
|
| 4184 | + $sitepress->switch_lang($language, true); |
|
| 4185 | + } |
|
| 4186 | + // WPML |
|
| 4187 | 4187 | |
| 4188 | - $gd_post['IMAGE'] = $post_images; |
|
| 4188 | + $gd_post['IMAGE'] = $post_images; |
|
| 4189 | 4189 | |
| 4190 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4191 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4190 | + $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4191 | + $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4192 | 4192 | |
| 4193 | - $valid = true; |
|
| 4193 | + $valid = true; |
|
| 4194 | 4194 | |
| 4195 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4196 | - $invalid++; |
|
| 4197 | - $valid = false; |
|
| 4198 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4199 | - } |
|
| 4200 | - $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4201 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4202 | - if ( $location_allowed ) {
|
|
| 4203 | - $location_result = geodir_get_default_location(); |
|
| 4204 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4205 | - $invalid_addr++; |
|
| 4206 | - $valid = false; |
|
| 4207 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4208 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4209 | - if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4210 | - $invalid_addr++; |
|
| 4211 | - $valid = false; |
|
| 4212 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4213 | - } else {
|
|
| 4214 | - if (!$location_manager) {
|
|
| 4215 | - $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4216 | - } |
|
| 4217 | - } |
|
| 4218 | - } |
|
| 4219 | - } |
|
| 4220 | - $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4221 | - if ( !$valid ) {
|
|
| 4222 | - continue; |
|
| 4223 | - } |
|
| 4195 | + if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4196 | + $invalid++; |
|
| 4197 | + $valid = false; |
|
| 4198 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4199 | + } |
|
| 4200 | + $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4201 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4202 | + if ( $location_allowed ) {
|
|
| 4203 | + $location_result = geodir_get_default_location(); |
|
| 4204 | + if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4205 | + $invalid_addr++; |
|
| 4206 | + $valid = false; |
|
| 4207 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4208 | + } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4209 | + if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4210 | + $invalid_addr++; |
|
| 4211 | + $valid = false; |
|
| 4212 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4213 | + } else {
|
|
| 4214 | + if (!$location_manager) {
|
|
| 4215 | + $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4216 | + } |
|
| 4217 | + } |
|
| 4218 | + } |
|
| 4219 | + } |
|
| 4220 | + $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4221 | + if ( !$valid ) {
|
|
| 4222 | + continue; |
|
| 4223 | + } |
|
| 4224 | 4224 | |
| 4225 | - $cat_taxonomy = $post_type . 'category'; |
|
| 4226 | - $tags_taxonomy = $post_type . '_tags'; |
|
| 4225 | + $cat_taxonomy = $post_type . 'category'; |
|
| 4226 | + $tags_taxonomy = $post_type . '_tags'; |
|
| 4227 | 4227 | |
| 4228 | - if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
|
| 4229 | - $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
| 4230 | - } |
|
| 4228 | + if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
|
| 4229 | + $post_category_arr = array_merge(array($default_category), $post_category_arr); |
|
| 4230 | + } |
|
| 4231 | 4231 | |
| 4232 | - $post_category = array(); |
|
| 4233 | - $default_category_id = NULL; |
|
| 4234 | - if ( !empty( $post_category_arr ) ) {
|
|
| 4235 | - foreach ( $post_category_arr as $value ) {
|
|
| 4236 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4232 | + $post_category = array(); |
|
| 4233 | + $default_category_id = NULL; |
|
| 4234 | + if ( !empty( $post_category_arr ) ) {
|
|
| 4235 | + foreach ( $post_category_arr as $value ) {
|
|
| 4236 | + $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4237 | 4237 | |
| 4238 | - if ( $category_name != '' ) {
|
|
| 4239 | - $term_category = array(); |
|
| 4238 | + if ( $category_name != '' ) {
|
|
| 4239 | + $term_category = array(); |
|
| 4240 | 4240 | |
| 4241 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4242 | - $term_category = $term; |
|
| 4243 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4244 | - $term_category = $term; |
|
| 4245 | - } else {
|
|
| 4246 | - $term_data = array(); |
|
| 4247 | - $term_data['name'] = $category_name; |
|
| 4248 | - $term_data['taxonomy'] = $cat_taxonomy; |
|
| 4241 | + if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4242 | + $term_category = $term; |
|
| 4243 | + } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4244 | + $term_category = $term; |
|
| 4245 | + } else {
|
|
| 4246 | + $term_data = array(); |
|
| 4247 | + $term_data['name'] = $category_name; |
|
| 4248 | + $term_data['taxonomy'] = $cat_taxonomy; |
|
| 4249 | 4249 | |
| 4250 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4251 | - if ( $term_id ) {
|
|
| 4252 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4253 | - } |
|
| 4254 | - } |
|
| 4250 | + $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4251 | + if ( $term_id ) {
|
|
| 4252 | + $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4253 | + } |
|
| 4254 | + } |
|
| 4255 | 4255 | |
| 4256 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4257 | - $post_category[] = intval($term_category->term_id); |
|
| 4256 | + if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4257 | + $post_category[] = intval($term_category->term_id); |
|
| 4258 | 4258 | |
| 4259 | - if ($category_name == $default_category) {
|
|
| 4260 | - $default_category_id = intval($term_category->term_id); |
|
| 4261 | - } |
|
| 4262 | - } |
|
| 4263 | - } |
|
| 4264 | - } |
|
| 4265 | - } |
|
| 4266 | - $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4267 | - $save_post = array(); |
|
| 4268 | - $save_post['post_title'] = $post_title; |
|
| 4269 | - $save_post['post_content'] = $post_content; |
|
| 4270 | - $save_post['post_type'] = $post_type; |
|
| 4271 | - $save_post['post_author'] = $post_author; |
|
| 4272 | - $save_post['post_status'] = $post_status; |
|
| 4273 | - $save_post['post_category'] = $post_category; |
|
| 4274 | - $save_post['post_tags'] = $post_tags; |
|
| 4275 | - |
|
| 4276 | - $saved_post_id = NULL; |
|
| 4277 | - if ( $import_choice == 'update' ) {
|
|
| 4278 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4259 | + if ($category_name == $default_category) {
|
|
| 4260 | + $default_category_id = intval($term_category->term_id); |
|
| 4261 | + } |
|
| 4262 | + } |
|
| 4263 | + } |
|
| 4264 | + } |
|
| 4265 | + } |
|
| 4266 | + $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4267 | + $save_post = array(); |
|
| 4268 | + $save_post['post_title'] = $post_title; |
|
| 4269 | + $save_post['post_content'] = $post_content; |
|
| 4270 | + $save_post['post_type'] = $post_type; |
|
| 4271 | + $save_post['post_author'] = $post_author; |
|
| 4272 | + $save_post['post_status'] = $post_status; |
|
| 4273 | + $save_post['post_category'] = $post_category; |
|
| 4274 | + $save_post['post_tags'] = $post_tags; |
|
| 4275 | + |
|
| 4276 | + $saved_post_id = NULL; |
|
| 4277 | + if ( $import_choice == 'update' ) {
|
|
| 4278 | + $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4279 | 4279 | |
| 4280 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4281 | - $save_post['ID'] = $post_id; |
|
| 4280 | + if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4281 | + $save_post['ID'] = $post_id; |
|
| 4282 | 4282 | |
| 4283 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4284 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4285 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4286 | - $saved_post_id = 0; |
|
| 4287 | - } else {
|
|
| 4288 | - $saved_post_id = $post_id; |
|
| 4289 | - $updated++; |
|
| 4290 | - } |
|
| 4291 | - } |
|
| 4292 | - } else {
|
|
| 4293 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4294 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4295 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4296 | - $saved_post_id = 0; |
|
| 4297 | - } else {
|
|
| 4298 | - $created++; |
|
| 4299 | - } |
|
| 4300 | - } |
|
| 4301 | - } |
|
| 4283 | + if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4284 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4285 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4286 | + $saved_post_id = 0; |
|
| 4287 | + } else {
|
|
| 4288 | + $saved_post_id = $post_id; |
|
| 4289 | + $updated++; |
|
| 4290 | + } |
|
| 4291 | + } |
|
| 4292 | + } else {
|
|
| 4293 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4294 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4295 | + $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4296 | + $saved_post_id = 0; |
|
| 4297 | + } else {
|
|
| 4298 | + $created++; |
|
| 4299 | + } |
|
| 4300 | + } |
|
| 4301 | + } |
|
| 4302 | 4302 | |
| 4303 | - if ( !$saved_post_id > 0 ) {
|
|
| 4304 | - $invalid++; |
|
| 4305 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4306 | - } |
|
| 4307 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4308 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4309 | - $skipped++; |
|
| 4310 | - } else {
|
|
| 4311 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4312 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4313 | - $invalid++; |
|
| 4303 | + if ( !$saved_post_id > 0 ) {
|
|
| 4304 | + $invalid++; |
|
| 4305 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4306 | + } |
|
| 4307 | + } else if ( $import_choice == 'skip' ) {
|
|
| 4308 | + if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4309 | + $skipped++; |
|
| 4310 | + } else {
|
|
| 4311 | + if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4312 | + if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4313 | + $invalid++; |
|
| 4314 | 4314 | |
| 4315 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4316 | - $saved_post_id = 0; |
|
| 4317 | - } else {
|
|
| 4318 | - $created++; |
|
| 4319 | - } |
|
| 4320 | - } else {
|
|
| 4321 | - $invalid++; |
|
| 4315 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4316 | + $saved_post_id = 0; |
|
| 4317 | + } else {
|
|
| 4318 | + $created++; |
|
| 4319 | + } |
|
| 4320 | + } else {
|
|
| 4321 | + $invalid++; |
|
| 4322 | 4322 | |
| 4323 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4324 | - } |
|
| 4325 | - } |
|
| 4326 | - } else {
|
|
| 4327 | - $invalid++; |
|
| 4323 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4324 | + } |
|
| 4325 | + } |
|
| 4326 | + } else {
|
|
| 4327 | + $invalid++; |
|
| 4328 | 4328 | |
| 4329 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4330 | - } |
|
| 4331 | - $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4332 | - if ( (int)$saved_post_id > 0 ) {
|
|
| 4333 | - // WPML |
|
| 4334 | - if ($is_wpml && $original_post_id > 0 && $language != '') {
|
|
| 4335 | - $wpml_post_type = 'post_' . $post_type; |
|
| 4336 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4337 | - $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 4338 | - |
|
| 4339 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4329 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4330 | + } |
|
| 4331 | + $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4332 | + if ( (int)$saved_post_id > 0 ) {
|
|
| 4333 | + // WPML |
|
| 4334 | + if ($is_wpml && $original_post_id > 0 && $language != '') {
|
|
| 4335 | + $wpml_post_type = 'post_' . $post_type; |
|
| 4336 | + $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4337 | + $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
|
| 4338 | + |
|
| 4339 | + $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4340 | 4340 | |
| 4341 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4342 | - } |
|
| 4343 | - // WPML |
|
| 4344 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4341 | + $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4342 | + } |
|
| 4343 | + // WPML |
|
| 4344 | + $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4345 | 4345 | |
| 4346 | - $gd_post['post_id'] = $saved_post_id; |
|
| 4347 | - $gd_post['ID'] = $saved_post_id; |
|
| 4348 | - $gd_post['post_tags'] = $post_tags; |
|
| 4349 | - $gd_post['post_title'] = $post_title; |
|
| 4350 | - $gd_post['post_status'] = $post_status; |
|
| 4351 | - $gd_post['submit_time'] = time(); |
|
| 4352 | - $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
| 4346 | + $gd_post['post_id'] = $saved_post_id; |
|
| 4347 | + $gd_post['ID'] = $saved_post_id; |
|
| 4348 | + $gd_post['post_tags'] = $post_tags; |
|
| 4349 | + $gd_post['post_title'] = $post_title; |
|
| 4350 | + $gd_post['post_status'] = $post_status; |
|
| 4351 | + $gd_post['submit_time'] = time(); |
|
| 4352 | + $gd_post['submit_ip'] = $_SERVER['REMOTE_ADDR']; |
|
| 4353 | 4353 | |
| 4354 | - // post location |
|
| 4355 | - $post_location_id = 0; |
|
| 4356 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4357 | - $gd_post['post_neighbourhood'] = ''; |
|
| 4354 | + // post location |
|
| 4355 | + $post_location_id = 0; |
|
| 4356 | + if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4357 | + $gd_post['post_neighbourhood'] = ''; |
|
| 4358 | 4358 | |
| 4359 | - $post_location_info = array( |
|
| 4360 | - 'city' => $post_city, |
|
| 4361 | - 'region' => $post_region, |
|
| 4362 | - 'country' => $post_country, |
|
| 4363 | - 'geo_lat' => $post_latitude, |
|
| 4364 | - 'geo_lng' => $post_longitude |
|
| 4365 | - ); |
|
| 4366 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4367 | - $post_location_id = $location_id; |
|
| 4368 | - } |
|
| 4359 | + $post_location_info = array( |
|
| 4360 | + 'city' => $post_city, |
|
| 4361 | + 'region' => $post_region, |
|
| 4362 | + 'country' => $post_country, |
|
| 4363 | + 'geo_lat' => $post_latitude, |
|
| 4364 | + 'geo_lng' => $post_longitude |
|
| 4365 | + ); |
|
| 4366 | + if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4367 | + $post_location_id = $location_id; |
|
| 4368 | + } |
|
| 4369 | 4369 | |
| 4370 | - if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
|
|
| 4371 | - $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
| 4370 | + if ($post_location_id > 0 && $neighbourhood_active && !empty($post_neighbourhood)) {
|
|
| 4371 | + $neighbourhood_info = geodir_location_neighbourhood_by_name_loc_id($post_neighbourhood, $post_location_id); |
|
| 4372 | 4372 | |
| 4373 | - $hood_data = array(); |
|
| 4374 | - $hood_data['hood_location_id'] = $post_location_id; |
|
| 4375 | - $hood_data['hood_name'] = $post_neighbourhood; |
|
| 4373 | + $hood_data = array(); |
|
| 4374 | + $hood_data['hood_location_id'] = $post_location_id; |
|
| 4375 | + $hood_data['hood_name'] = $post_neighbourhood; |
|
| 4376 | 4376 | |
| 4377 | - if (!empty($neighbourhood_info)) {
|
|
| 4378 | - $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
| 4379 | - $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
| 4377 | + if (!empty($neighbourhood_info)) {
|
|
| 4378 | + $hood_data['hood_id'] = $neighbourhood_info->hood_id; |
|
| 4379 | + $hood_data['hood_slug'] = $neighbourhood_info->hood_slug; |
|
| 4380 | 4380 | |
| 4381 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4382 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4383 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4384 | - } |
|
| 4385 | - } |
|
| 4381 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4382 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4383 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4384 | + } |
|
| 4385 | + } |
|
| 4386 | 4386 | |
| 4387 | - if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4388 | - $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4389 | - $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4390 | - } |
|
| 4387 | + if (empty($neighbourhood_latitude) || empty($neighbourhood_longitude)) {
|
|
| 4388 | + $neighbourhood_latitude = $neighbourhood_info->hood_latitude; |
|
| 4389 | + $neighbourhood_longitude = $neighbourhood_info->hood_longitude; |
|
| 4390 | + } |
|
| 4391 | 4391 | |
| 4392 | - $hood_data['hood_latitude'] = $post_latitude; |
|
| 4393 | - $hood_data['hood_longitude'] = $post_longitude; |
|
| 4394 | - |
|
| 4395 | - $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
| 4396 | - if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
|
|
| 4397 | - $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
| 4398 | - } |
|
| 4399 | - } |
|
| 4400 | - } |
|
| 4401 | - $gd_post['post_location_id'] = $post_location_id; |
|
| 4392 | + $hood_data['hood_latitude'] = $post_latitude; |
|
| 4393 | + $hood_data['hood_longitude'] = $post_longitude; |
|
| 4394 | + |
|
| 4395 | + $neighbourhood_info = geodir_location_insert_update_neighbourhood($hood_data); |
|
| 4396 | + if (!empty($neighbourhood_info) && isset($neighbourhood_info->hood_slug)) {
|
|
| 4397 | + $gd_post['post_neighbourhood'] = $neighbourhood_info->hood_slug; |
|
| 4398 | + } |
|
| 4399 | + } |
|
| 4400 | + } |
|
| 4401 | + $gd_post['post_location_id'] = $post_location_id; |
|
| 4402 | 4402 | |
| 4403 | - // post package info |
|
| 4404 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4405 | - if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
|
| 4406 | - $package_id = $gd_post_info->package_id; |
|
| 4407 | - } |
|
| 4403 | + // post package info |
|
| 4404 | + $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4405 | + if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
|
| 4406 | + $package_id = $gd_post_info->package_id; |
|
| 4407 | + } |
|
| 4408 | 4408 | |
| 4409 | - $package_info = array(); |
|
| 4410 | - if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
|
| 4411 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4409 | + $package_info = array(); |
|
| 4410 | + if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
|
| 4411 | + $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4412 | 4412 | |
| 4413 | - if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
|
| 4414 | - $package_info = array(); |
|
| 4415 | - } |
|
| 4416 | - } |
|
| 4413 | + if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
|
| 4414 | + $package_info = array(); |
|
| 4415 | + } |
|
| 4416 | + } |
|
| 4417 | 4417 | |
| 4418 | - if (empty($package_info)) {
|
|
| 4419 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4420 | - } |
|
| 4418 | + if (empty($package_info)) {
|
|
| 4419 | + $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4420 | + } |
|
| 4421 | 4421 | |
| 4422 | - if (!empty($package_info)) {
|
|
| 4423 | - $package_id = $package_info['pid']; |
|
| 4422 | + if (!empty($package_info)) {
|
|
| 4423 | + $package_id = $package_info['pid']; |
|
| 4424 | 4424 | |
| 4425 | - if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
|
| 4426 | - $gd_post['expire_date'] = $expire_date; |
|
| 4427 | - } else {
|
|
| 4428 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4429 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4430 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4431 | - } else {
|
|
| 4432 | - $gd_post['expire_date'] = 'Never'; |
|
| 4433 | - } |
|
| 4434 | - } |
|
| 4425 | + if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
|
| 4426 | + $gd_post['expire_date'] = $expire_date; |
|
| 4427 | + } else {
|
|
| 4428 | + if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4429 | + $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4430 | + $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4431 | + } else {
|
|
| 4432 | + $gd_post['expire_date'] = 'Never'; |
|
| 4433 | + } |
|
| 4434 | + } |
|
| 4435 | 4435 | |
| 4436 | - $gd_post['package_id'] = $package_id; |
|
| 4437 | - } |
|
| 4436 | + $gd_post['package_id'] = $package_id; |
|
| 4437 | + } |
|
| 4438 | 4438 | |
| 4439 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4439 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4440 | 4440 | |
| 4441 | - if ($post_type == 'gd_event') {
|
|
| 4442 | - $gd_post = geodir_imex_process_event_data($gd_post); |
|
| 4443 | - } |
|
| 4441 | + if ($post_type == 'gd_event') {
|
|
| 4442 | + $gd_post = geodir_imex_process_event_data($gd_post); |
|
| 4443 | + } |
|
| 4444 | 4444 | |
| 4445 | - if (isset($gd_post['post_id'])) {
|
|
| 4446 | - unset($gd_post['post_id']); |
|
| 4447 | - } |
|
| 4445 | + if (isset($gd_post['post_id'])) {
|
|
| 4446 | + unset($gd_post['post_id']); |
|
| 4447 | + } |
|
| 4448 | 4448 | |
| 4449 | - // Export franchise fields |
|
| 4450 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4451 | - if ($is_franchise_active) {
|
|
| 4452 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4453 | - $gd_franchise_lock = array(); |
|
| 4449 | + // Export franchise fields |
|
| 4450 | + $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4451 | + if ($is_franchise_active) {
|
|
| 4452 | + if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4453 | + $gd_franchise_lock = array(); |
|
| 4454 | 4454 | |
| 4455 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4456 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4457 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4458 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4459 | - } |
|
| 4455 | + if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4456 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4457 | + $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4458 | + $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4459 | + } |
|
| 4460 | 4460 | |
| 4461 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4462 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4463 | - } else {
|
|
| 4464 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4465 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4466 | - } |
|
| 4467 | - } |
|
| 4468 | - } |
|
| 4461 | + update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4462 | + update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4463 | + } else {
|
|
| 4464 | + if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4465 | + geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4466 | + } |
|
| 4467 | + } |
|
| 4468 | + } |
|
| 4469 | 4469 | |
| 4470 | - if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
|
| 4471 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4472 | - if ($default_category_id) {
|
|
| 4473 | - $save_post['post_default_category'] = $default_category_id; |
|
| 4474 | - $gd_post['default_category'] = $default_category_id; |
|
| 4475 | - } |
|
| 4476 | - $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
| 4477 | - } |
|
| 4478 | - $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4479 | - // Save post info |
|
| 4480 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4481 | - $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4482 | - // post taxonomies |
|
| 4483 | - if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4484 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4470 | + if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
|
| 4471 | + $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4472 | + if ($default_category_id) {
|
|
| 4473 | + $save_post['post_default_category'] = $default_category_id; |
|
| 4474 | + $gd_post['default_category'] = $default_category_id; |
|
| 4475 | + } |
|
| 4476 | + $gd_post[$cat_taxonomy] = $save_post['post_category']; |
|
| 4477 | + } |
|
| 4478 | + $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4479 | + // Save post info |
|
| 4480 | + geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4481 | + $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4482 | + // post taxonomies |
|
| 4483 | + if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4484 | + wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4485 | 4485 | |
| 4486 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4487 | - if ($default_category_id) {
|
|
| 4488 | - $post_default_category = $default_category_id; |
|
| 4489 | - } |
|
| 4490 | - $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
| 4491 | - $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
|
| 4492 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4486 | + $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4487 | + if ($default_category_id) {
|
|
| 4488 | + $post_default_category = $default_category_id; |
|
| 4489 | + } |
|
| 4490 | + $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
|
| 4491 | + $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
|
| 4492 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4493 | 4493 | |
| 4494 | - if ($post_category_str != '' && $post_default_category) {
|
|
| 4495 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4496 | - } |
|
| 4494 | + if ($post_category_str != '' && $post_default_category) {
|
|
| 4495 | + $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4496 | + } |
|
| 4497 | 4497 | |
| 4498 | - $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
| 4498 | + $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
|
| 4499 | 4499 | |
| 4500 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4501 | - } |
|
| 4502 | - $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4503 | - if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4504 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4505 | - } |
|
| 4506 | - $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4507 | - // Post images |
|
| 4508 | - if ( !empty( $post_images ) ) {
|
|
| 4509 | - $post_images = array_unique($post_images); |
|
| 4500 | + geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4501 | + } |
|
| 4502 | + $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4503 | + if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4504 | + wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4505 | + } |
|
| 4506 | + $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4507 | + // Post images |
|
| 4508 | + if ( !empty( $post_images ) ) {
|
|
| 4509 | + $post_images = array_unique($post_images); |
|
| 4510 | 4510 | |
| 4511 | - $old_post_images_arr = array(); |
|
| 4512 | - $saved_post_images_arr = array(); |
|
| 4511 | + $old_post_images_arr = array(); |
|
| 4512 | + $saved_post_images_arr = array(); |
|
| 4513 | 4513 | |
| 4514 | - $order = 1; |
|
| 4514 | + $order = 1; |
|
| 4515 | 4515 | |
| 4516 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4517 | - $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4518 | - if (!empty($old_post_images)) {
|
|
| 4519 | - foreach( $old_post_images as $old_post_image ) {
|
|
| 4520 | - if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
|
| 4521 | - $old_post_images_arr[] = $old_post_image->file; |
|
| 4522 | - } |
|
| 4523 | - } |
|
| 4524 | - } |
|
| 4516 | + $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4517 | + $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4518 | + if (!empty($old_post_images)) {
|
|
| 4519 | + foreach( $old_post_images as $old_post_image ) {
|
|
| 4520 | + if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
|
| 4521 | + $old_post_images_arr[] = $old_post_image->file; |
|
| 4522 | + } |
|
| 4523 | + } |
|
| 4524 | + } |
|
| 4525 | 4525 | |
| 4526 | - foreach ( $post_images as $post_image ) {
|
|
| 4527 | - $image_name = basename( $post_image ); |
|
| 4528 | - $saved_post_images_arr[] = $image_name; |
|
| 4526 | + foreach ( $post_images as $post_image ) {
|
|
| 4527 | + $image_name = basename( $post_image ); |
|
| 4528 | + $saved_post_images_arr[] = $image_name; |
|
| 4529 | 4529 | |
| 4530 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4531 | - continue; // Skip if image already exists. |
|
| 4532 | - } |
|
| 4530 | + if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4531 | + continue; // Skip if image already exists. |
|
| 4532 | + } |
|
| 4533 | 4533 | |
| 4534 | - $image_name_parts = explode( '.', $image_name ); |
|
| 4535 | - array_pop( $image_name_parts ); |
|
| 4536 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4537 | - $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4538 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4539 | - $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4540 | - if ( !empty( $arr_file_type ) ) {
|
|
| 4541 | - $uploaded_file_type = $arr_file_type['type']; |
|
| 4534 | + $image_name_parts = explode( '.', $image_name ); |
|
| 4535 | + array_pop( $image_name_parts ); |
|
| 4536 | + $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4537 | + $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4538 | + $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4539 | + $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4540 | + if ( !empty( $arr_file_type ) ) {
|
|
| 4541 | + $uploaded_file_type = $arr_file_type['type']; |
|
| 4542 | 4542 | |
| 4543 | - $attachment = array(); |
|
| 4544 | - $attachment['post_id'] = $saved_post_id; |
|
| 4545 | - $attachment['title'] = $proper_image_name; |
|
| 4546 | - $attachment['content'] = ''; |
|
| 4547 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4548 | - $attachment['mime_type'] = $uploaded_file_type; |
|
| 4549 | - $attachment['menu_order'] = $order; |
|
| 4550 | - $attachment['is_featured'] = 0; |
|
| 4551 | - |
|
| 4552 | - $attachment_set = ''; |
|
| 4553 | - foreach ( $attachment as $key => $val ) {
|
|
| 4554 | - if ( $val != '' ) {
|
|
| 4555 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4556 | - } |
|
| 4557 | - } |
|
| 4558 | - $attachment_set = trim( $attachment_set, ", " ); |
|
| 4543 | + $attachment = array(); |
|
| 4544 | + $attachment['post_id'] = $saved_post_id; |
|
| 4545 | + $attachment['title'] = $proper_image_name; |
|
| 4546 | + $attachment['content'] = ''; |
|
| 4547 | + $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4548 | + $attachment['mime_type'] = $uploaded_file_type; |
|
| 4549 | + $attachment['menu_order'] = $order; |
|
| 4550 | + $attachment['is_featured'] = 0; |
|
| 4551 | + |
|
| 4552 | + $attachment_set = ''; |
|
| 4553 | + foreach ( $attachment as $key => $val ) {
|
|
| 4554 | + if ( $val != '' ) {
|
|
| 4555 | + $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4556 | + } |
|
| 4557 | + } |
|
| 4558 | + $attachment_set = trim( $attachment_set, ", " ); |
|
| 4559 | 4559 | |
| 4560 | - // Add new attachment |
|
| 4561 | - $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4562 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4563 | - $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4564 | - $order++; |
|
| 4565 | - } |
|
| 4566 | - } |
|
| 4567 | - |
|
| 4568 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4569 | - // Remove previous attachment |
|
| 4570 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4571 | - $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4572 | - if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4573 | - geodir_set_wp_featured_image($saved_post_id); |
|
| 4574 | - $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4575 | - /* |
|
| 4560 | + // Add new attachment |
|
| 4561 | + $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4562 | + $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4563 | + $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4564 | + $order++; |
|
| 4565 | + } |
|
| 4566 | + } |
|
| 4567 | + |
|
| 4568 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4569 | + // Remove previous attachment |
|
| 4570 | + $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4571 | + $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4572 | + if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4573 | + geodir_set_wp_featured_image($saved_post_id); |
|
| 4574 | + $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4575 | + /* |
|
| 4576 | 4576 | $menu_order = 1; |
| 4577 | 4577 | |
| 4578 | 4578 | foreach ( $saved_post_images_arr as $img_name ) {
|
@@ -4585,288 +4585,288 @@ discard block |
||
| 4585 | 4585 | } |
| 4586 | 4586 | $menu_order++; |
| 4587 | 4587 | }*/ |
| 4588 | - } |
|
| 4588 | + } |
|
| 4589 | 4589 | |
| 4590 | - if ( $order > 1 ) {
|
|
| 4591 | - $images++; |
|
| 4592 | - } |
|
| 4593 | - } |
|
| 4594 | - $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4595 | - /** This action is documented in geodirectory-functions/post-functions.php */ |
|
| 4596 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4597 | - $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4598 | - if (isset($is_featured)) {
|
|
| 4599 | - geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
| 4600 | - } |
|
| 4601 | - if (isset($gd_post['alive_days'])) {
|
|
| 4602 | - geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
| 4603 | - } |
|
| 4604 | - if (isset($gd_post['expire_date'])) {
|
|
| 4605 | - geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
| 4606 | - } |
|
| 4607 | - $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4608 | - } |
|
| 4590 | + if ( $order > 1 ) {
|
|
| 4591 | + $images++; |
|
| 4592 | + } |
|
| 4593 | + } |
|
| 4594 | + $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4595 | + /** This action is documented in geodirectory-functions/post-functions.php */ |
|
| 4596 | + do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4597 | + $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4598 | + if (isset($is_featured)) {
|
|
| 4599 | + geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
|
| 4600 | + } |
|
| 4601 | + if (isset($gd_post['alive_days'])) {
|
|
| 4602 | + geodir_save_post_meta($saved_post_id, 'alive_days', $gd_post['alive_days']); |
|
| 4603 | + } |
|
| 4604 | + if (isset($gd_post['expire_date'])) {
|
|
| 4605 | + geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
|
| 4606 | + } |
|
| 4607 | + $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4608 | + } |
|
| 4609 | 4609 | |
| 4610 | - // WPML |
|
| 4611 | - if ($is_wpml && $language != '') {
|
|
| 4612 | - $sitepress->switch_lang($active_lang, true); |
|
| 4613 | - } |
|
| 4614 | - // WPML |
|
| 4615 | - } |
|
| 4616 | - } |
|
| 4617 | - } |
|
| 4610 | + // WPML |
|
| 4611 | + if ($is_wpml && $language != '') {
|
|
| 4612 | + $sitepress->switch_lang($active_lang, true); |
|
| 4613 | + } |
|
| 4614 | + // WPML |
|
| 4615 | + } |
|
| 4616 | + } |
|
| 4617 | + } |
|
| 4618 | 4618 | |
| 4619 | - //undo some stuff to make the import quicker |
|
| 4620 | - wp_defer_term_counting( false ); |
|
| 4621 | - wp_defer_comment_counting( false ); |
|
| 4622 | - $wpdb->query( 'COMMIT;' ); |
|
| 4623 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4624 | - $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4625 | - $json = array(); |
|
| 4626 | - $json['processed'] = $processed_actual; |
|
| 4627 | - $json['created'] = $created; |
|
| 4628 | - $json['updated'] = $updated; |
|
| 4629 | - $json['skipped'] = $skipped; |
|
| 4630 | - $json['invalid'] = $invalid; |
|
| 4631 | - $json['invalid_addr'] = $invalid_addr; |
|
| 4632 | - $json['images'] = $images; |
|
| 4633 | - $json['timing'] = microtime(true)-$xstart; |
|
| 4634 | - $json['timings'] = $xtimings; |
|
| 4619 | + //undo some stuff to make the import quicker |
|
| 4620 | + wp_defer_term_counting( false ); |
|
| 4621 | + wp_defer_comment_counting( false ); |
|
| 4622 | + $wpdb->query( 'COMMIT;' ); |
|
| 4623 | + $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4624 | + $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4625 | + $json = array(); |
|
| 4626 | + $json['processed'] = $processed_actual; |
|
| 4627 | + $json['created'] = $created; |
|
| 4628 | + $json['updated'] = $updated; |
|
| 4629 | + $json['skipped'] = $skipped; |
|
| 4630 | + $json['invalid'] = $invalid; |
|
| 4631 | + $json['invalid_addr'] = $invalid_addr; |
|
| 4632 | + $json['images'] = $images; |
|
| 4633 | + $json['timing'] = microtime(true)-$xstart; |
|
| 4634 | + $json['timings'] = $xtimings; |
|
| 4635 | 4635 | |
| 4636 | 4636 | |
| 4637 | - wp_send_json( $json ); |
|
| 4638 | - exit; |
|
| 4639 | - } else if ( $task == 'import_loc' ) {
|
|
| 4640 | - global $gd_post_types; |
|
| 4641 | - $gd_post_types = $post_types; |
|
| 4637 | + wp_send_json( $json ); |
|
| 4638 | + exit; |
|
| 4639 | + } else if ( $task == 'import_loc' ) {
|
|
| 4640 | + global $gd_post_types; |
|
| 4641 | + $gd_post_types = $post_types; |
|
| 4642 | 4642 | |
| 4643 | - if (!empty($file)) {
|
|
| 4644 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4643 | + if (!empty($file)) {
|
|
| 4644 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4645 | 4645 | |
| 4646 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4647 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4648 | - wp_send_json( $json ); |
|
| 4649 | - } |
|
| 4646 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4647 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4648 | + wp_send_json( $json ); |
|
| 4649 | + } |
|
| 4650 | 4650 | |
| 4651 | - $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
|
| 4652 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4653 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4654 | - $index = $processed + $i; |
|
| 4651 | + $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
|
| 4652 | + $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4653 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4654 | + $index = $processed + $i; |
|
| 4655 | 4655 | |
| 4656 | - if (isset($file[$index])) {
|
|
| 4657 | - $row = $file[$index]; |
|
| 4658 | - $row = array_map( 'trim', $row ); |
|
| 4659 | - $data = array(); |
|
| 4656 | + if (isset($file[$index])) {
|
|
| 4657 | + $row = $file[$index]; |
|
| 4658 | + $row = array_map( 'trim', $row ); |
|
| 4659 | + $data = array(); |
|
| 4660 | 4660 | |
| 4661 | - foreach ($columns as $c => $column ) {
|
|
| 4662 | - if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
|
| 4663 | - $data[$column] = $row[$c]; |
|
| 4664 | - } |
|
| 4665 | - } |
|
| 4661 | + foreach ($columns as $c => $column ) {
|
|
| 4662 | + if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
|
| 4663 | + $data[$column] = $row[$c]; |
|
| 4664 | + } |
|
| 4665 | + } |
|
| 4666 | 4666 | |
| 4667 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4668 | - $invalid++; |
|
| 4669 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4670 | - continue; |
|
| 4671 | - } |
|
| 4667 | + if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4668 | + $invalid++; |
|
| 4669 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4670 | + continue; |
|
| 4671 | + } |
|
| 4672 | 4672 | |
| 4673 | - $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
| 4673 | + $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
|
| 4674 | 4674 | |
| 4675 | - if ( $import_choice == 'update' ) {
|
|
| 4676 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4677 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4678 | - $updated++; |
|
| 4679 | - } else {
|
|
| 4680 | - $invalid++; |
|
| 4681 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4682 | - } |
|
| 4683 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4684 | - $data['location_id'] = (int)$location->location_id; |
|
| 4675 | + if ( $import_choice == 'update' ) {
|
|
| 4676 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4677 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4678 | + $updated++; |
|
| 4679 | + } else {
|
|
| 4680 | + $invalid++; |
|
| 4681 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4682 | + } |
|
| 4683 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4684 | + $data['location_id'] = (int)$location->location_id; |
|
| 4685 | 4685 | |
| 4686 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4687 | - $data['location_id'] = (int)$location->location_id; |
|
| 4688 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | - $data['location_id'] = (int)$location->location_id; |
|
| 4690 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4691 | - $data['location_id'] = (int)$location->location_id; |
|
| 4692 | - } |
|
| 4686 | + if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4687 | + $data['location_id'] = (int)$location->location_id; |
|
| 4688 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | + $data['location_id'] = (int)$location->location_id; |
|
| 4690 | + } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4691 | + $data['location_id'] = (int)$location->location_id; |
|
| 4692 | + } |
|
| 4693 | 4693 | |
| 4694 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4695 | - $updated++; |
|
| 4696 | - } else {
|
|
| 4697 | - $invalid++; |
|
| 4698 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4699 | - } |
|
| 4700 | - } else {
|
|
| 4701 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4702 | - $created++; |
|
| 4703 | - } else {
|
|
| 4704 | - $invalid++; |
|
| 4705 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4706 | - } |
|
| 4707 | - } |
|
| 4708 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4709 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4710 | - $skipped++; |
|
| 4711 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4712 | - $skipped++; |
|
| 4713 | - } else {
|
|
| 4714 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4715 | - $created++; |
|
| 4716 | - } else {
|
|
| 4717 | - $invalid++; |
|
| 4718 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4719 | - } |
|
| 4720 | - } |
|
| 4721 | - } else {
|
|
| 4722 | - $invalid++; |
|
| 4723 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4724 | - } |
|
| 4725 | - } |
|
| 4726 | - } |
|
| 4727 | - } |
|
| 4694 | + if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4695 | + $updated++; |
|
| 4696 | + } else {
|
|
| 4697 | + $invalid++; |
|
| 4698 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4699 | + } |
|
| 4700 | + } else {
|
|
| 4701 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4702 | + $created++; |
|
| 4703 | + } else {
|
|
| 4704 | + $invalid++; |
|
| 4705 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4706 | + } |
|
| 4707 | + } |
|
| 4708 | + } elseif ( $import_choice == 'skip' ) {
|
|
| 4709 | + if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4710 | + $skipped++; |
|
| 4711 | + } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4712 | + $skipped++; |
|
| 4713 | + } else {
|
|
| 4714 | + if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4715 | + $created++; |
|
| 4716 | + } else {
|
|
| 4717 | + $invalid++; |
|
| 4718 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4719 | + } |
|
| 4720 | + } |
|
| 4721 | + } else {
|
|
| 4722 | + $invalid++; |
|
| 4723 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4724 | + } |
|
| 4725 | + } |
|
| 4726 | + } |
|
| 4727 | + } |
|
| 4728 | 4728 | |
| 4729 | - $json = array(); |
|
| 4730 | - $json['processed'] = $limit; |
|
| 4731 | - $json['created'] = $created; |
|
| 4732 | - $json['updated'] = $updated; |
|
| 4733 | - $json['skipped'] = $skipped; |
|
| 4734 | - $json['invalid'] = $invalid; |
|
| 4735 | - $json['images'] = $images; |
|
| 4729 | + $json = array(); |
|
| 4730 | + $json['processed'] = $limit; |
|
| 4731 | + $json['created'] = $created; |
|
| 4732 | + $json['updated'] = $updated; |
|
| 4733 | + $json['skipped'] = $skipped; |
|
| 4734 | + $json['invalid'] = $invalid; |
|
| 4735 | + $json['images'] = $images; |
|
| 4736 | 4736 | |
| 4737 | - wp_send_json( $json ); |
|
| 4738 | - } else if ( $task == 'import_hood' ) {
|
|
| 4739 | - if (!empty($file)) {
|
|
| 4740 | - $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4737 | + wp_send_json( $json ); |
|
| 4738 | + } else if ( $task == 'import_hood' ) {
|
|
| 4739 | + if (!empty($file)) {
|
|
| 4740 | + $columns = isset($file[0]) ? $file[0] : NULL; |
|
| 4741 | 4741 | |
| 4742 | - if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4743 | - $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4744 | - wp_send_json( $json ); |
|
| 4745 | - } |
|
| 4742 | + if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
|
| 4743 | + $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
|
| 4744 | + wp_send_json( $json ); |
|
| 4745 | + } |
|
| 4746 | 4746 | |
| 4747 | - $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
|
| 4748 | - $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4749 | - for ($i = 1; $i <= $limit; $i++) {
|
|
| 4750 | - $index = $processed + $i; |
|
| 4747 | + $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
|
| 4748 | + $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4749 | + for ($i = 1; $i <= $limit; $i++) {
|
|
| 4750 | + $index = $processed + $i; |
|
| 4751 | 4751 | |
| 4752 | - if (isset($file[$index])) {
|
|
| 4753 | - $row = $file[$index]; |
|
| 4754 | - $row = array_map( 'trim', $row ); |
|
| 4755 | - $data = array(); |
|
| 4752 | + if (isset($file[$index])) {
|
|
| 4753 | + $row = $file[$index]; |
|
| 4754 | + $row = array_map( 'trim', $row ); |
|
| 4755 | + $data = array(); |
|
| 4756 | 4756 | |
| 4757 | - foreach ($columns as $c => $column) {
|
|
| 4758 | - if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
|
|
| 4759 | - $data[$column] = sanitize_text_field($row[$c]); |
|
| 4760 | - } |
|
| 4761 | - } |
|
| 4757 | + foreach ($columns as $c => $column) {
|
|
| 4758 | + if (in_array($column, array('neighbourhood_id', 'neighbourhood_name', 'neighbourhood_slug', 'latitude', 'longitude', 'location_id', 'city', 'region', 'country'))) {
|
|
| 4759 | + $data[$column] = sanitize_text_field($row[$c]); |
|
| 4760 | + } |
|
| 4761 | + } |
|
| 4762 | 4762 | |
| 4763 | - if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4764 | - $invalid++; |
|
| 4765 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4766 | - continue; |
|
| 4767 | - } |
|
| 4763 | + if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4764 | + $invalid++; |
|
| 4765 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4766 | + continue; |
|
| 4767 | + } |
|
| 4768 | 4768 | |
| 4769 | - $location_info = array(); |
|
| 4770 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4771 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4772 | - } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
|
| 4773 | - $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
|
| 4774 | - } |
|
| 4769 | + $location_info = array(); |
|
| 4770 | + if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4771 | + $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4772 | + } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
|
| 4773 | + $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
|
| 4774 | + } |
|
| 4775 | 4775 | |
| 4776 | - if (empty($location_info)) {
|
|
| 4777 | - $invalid++; |
|
| 4778 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4779 | - continue; |
|
| 4780 | - } |
|
| 4776 | + if (empty($location_info)) {
|
|
| 4777 | + $invalid++; |
|
| 4778 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4779 | + continue; |
|
| 4780 | + } |
|
| 4781 | 4781 | |
| 4782 | - $location_id = $location_info->location_id; |
|
| 4782 | + $location_id = $location_info->location_id; |
|
| 4783 | 4783 | |
| 4784 | - $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
| 4784 | + $data['neighbourhood_id'] = isset($data['neighbourhood_id']) ? absint($data['neighbourhood_id']) : 0; |
|
| 4785 | 4785 | |
| 4786 | - $hood_data = array(); |
|
| 4787 | - $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
| 4788 | - $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
| 4789 | - $hood_data['hood_latitude'] = $data['latitude']; |
|
| 4790 | - $hood_data['hood_longitude'] = $data['longitude']; |
|
| 4791 | - $hood_data['hood_location_id'] = $location_id; |
|
| 4786 | + $hood_data = array(); |
|
| 4787 | + $hood_data['hood_name'] = $data['neighbourhood_name']; |
|
| 4788 | + $hood_data['hood_slug'] = $data['neighbourhood_slug']; |
|
| 4789 | + $hood_data['hood_latitude'] = $data['latitude']; |
|
| 4790 | + $hood_data['hood_longitude'] = $data['longitude']; |
|
| 4791 | + $hood_data['hood_location_id'] = $location_id; |
|
| 4792 | 4792 | |
| 4793 | - if ( $import_choice == 'update' ) {
|
|
| 4794 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4795 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4793 | + if ( $import_choice == 'update' ) {
|
|
| 4794 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4795 | + $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4796 | 4796 | |
| 4797 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4798 | - $updated++; |
|
| 4799 | - } else {
|
|
| 4800 | - $invalid++; |
|
| 4801 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4802 | - } |
|
| 4803 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4804 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4797 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4798 | + $updated++; |
|
| 4799 | + } else {
|
|
| 4800 | + $invalid++; |
|
| 4801 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4802 | + } |
|
| 4803 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4804 | + $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4805 | 4805 | |
| 4806 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4807 | - $updated++; |
|
| 4808 | - } else {
|
|
| 4809 | - $invalid++; |
|
| 4810 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4811 | - } |
|
| 4812 | - } else {
|
|
| 4813 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4814 | - $created++; |
|
| 4815 | - } else {
|
|
| 4816 | - $invalid++; |
|
| 4817 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4818 | - } |
|
| 4819 | - } |
|
| 4820 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4821 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4822 | - $skipped++; |
|
| 4823 | - } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4824 | - $skipped++; |
|
| 4825 | - } else {
|
|
| 4806 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4807 | + $updated++; |
|
| 4808 | + } else {
|
|
| 4809 | + $invalid++; |
|
| 4810 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4811 | + } |
|
| 4812 | + } else {
|
|
| 4813 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4814 | + $created++; |
|
| 4815 | + } else {
|
|
| 4816 | + $invalid++; |
|
| 4817 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4818 | + } |
|
| 4819 | + } |
|
| 4820 | + } elseif ( $import_choice == 'skip' ) {
|
|
| 4821 | + if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4822 | + $skipped++; |
|
| 4823 | + } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
|
| 4824 | + $skipped++; |
|
| 4825 | + } else {
|
|
| 4826 | 4826 | |
| 4827 | - if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4828 | - $created++; |
|
| 4829 | - } else {
|
|
| 4830 | - $invalid++; |
|
| 4831 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4832 | - } |
|
| 4833 | - } |
|
| 4834 | - } else {
|
|
| 4835 | - $invalid++; |
|
| 4836 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4837 | - } |
|
| 4838 | - } |
|
| 4839 | - } |
|
| 4840 | - } |
|
| 4827 | + if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
|
| 4828 | + $created++; |
|
| 4829 | + } else {
|
|
| 4830 | + $invalid++; |
|
| 4831 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4832 | + } |
|
| 4833 | + } |
|
| 4834 | + } else {
|
|
| 4835 | + $invalid++; |
|
| 4836 | + geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4837 | + } |
|
| 4838 | + } |
|
| 4839 | + } |
|
| 4840 | + } |
|
| 4841 | 4841 | |
| 4842 | - $json = array(); |
|
| 4843 | - $json['processed'] = $limit; |
|
| 4844 | - $json['created'] = $created; |
|
| 4845 | - $json['updated'] = $updated; |
|
| 4846 | - $json['skipped'] = $skipped; |
|
| 4847 | - $json['invalid'] = $invalid; |
|
| 4848 | - $json['images'] = $images; |
|
| 4842 | + $json = array(); |
|
| 4843 | + $json['processed'] = $limit; |
|
| 4844 | + $json['created'] = $created; |
|
| 4845 | + $json['updated'] = $updated; |
|
| 4846 | + $json['skipped'] = $skipped; |
|
| 4847 | + $json['invalid'] = $invalid; |
|
| 4848 | + $json['images'] = $images; |
|
| 4849 | 4849 | |
| 4850 | - wp_send_json( $json ); |
|
| 4851 | - } |
|
| 4852 | - } |
|
| 4853 | - break; |
|
| 4854 | - case 'import_finish':{
|
|
| 4855 | - /** |
|
| 4856 | - * Run an action when an import finishes. |
|
| 4857 | - * |
|
| 4858 | - * This action can be used to fire functions after an import ends. |
|
| 4859 | - * |
|
| 4860 | - * @since 1.5.3 |
|
| 4861 | - * @package GeoDirectory |
|
| 4862 | - */ |
|
| 4863 | - do_action('geodir_import_finished');
|
|
| 4864 | - } |
|
| 4865 | - break; |
|
| 4850 | + wp_send_json( $json ); |
|
| 4851 | + } |
|
| 4852 | + } |
|
| 4853 | + break; |
|
| 4854 | + case 'import_finish':{
|
|
| 4855 | + /** |
|
| 4856 | + * Run an action when an import finishes. |
|
| 4857 | + * |
|
| 4858 | + * This action can be used to fire functions after an import ends. |
|
| 4859 | + * |
|
| 4860 | + * @since 1.5.3 |
|
| 4861 | + * @package GeoDirectory |
|
| 4862 | + */ |
|
| 4863 | + do_action('geodir_import_finished');
|
|
| 4864 | + } |
|
| 4865 | + break; |
|
| 4866 | 4866 | |
| 4867 | - } |
|
| 4868 | - echo '0'; |
|
| 4869 | - gd_die(); |
|
| 4867 | + } |
|
| 4868 | + echo '0'; |
|
| 4869 | + gd_die(); |
|
| 4870 | 4870 | } |
| 4871 | 4871 | |
| 4872 | 4872 | /** |
@@ -4910,12 +4910,12 @@ discard block |
||
| 4910 | 4910 | $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
| 4911 | 4911 | } |
| 4912 | 4912 | |
| 4913 | - if( !empty( $term ) ) {
|
|
| 4913 | + if( !empty( $term ) ) {
|
|
| 4914 | 4914 | $result = wp_insert_term( $term, $taxonomy, $args ); |
| 4915 | - if( !is_wp_error( $result ) ) {
|
|
| 4916 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4917 | - } |
|
| 4918 | - } |
|
| 4915 | + if( !is_wp_error( $result ) ) {
|
|
| 4916 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4917 | + } |
|
| 4918 | + } |
|
| 4919 | 4919 | |
| 4920 | 4920 | return false; |
| 4921 | 4921 | } |
@@ -4961,16 +4961,16 @@ discard block |
||
| 4961 | 4961 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
| 4962 | 4962 | |
| 4963 | 4963 | if( !is_wp_error( $result ) ) {
|
| 4964 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4965 | - } |
|
| 4964 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4965 | + } |
|
| 4966 | 4966 | } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
| 4967 | 4967 | $term_data['term_id'] = $term_info['term_id']; |
| 4968 | 4968 | |
| 4969 | 4969 | $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
| 4970 | 4970 | |
| 4971 | 4971 | if( !is_wp_error( $result ) ) {
|
| 4972 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4973 | - } |
|
| 4972 | + return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4973 | + } |
|
| 4974 | 4974 | } else {
|
| 4975 | 4975 | return geodir_imex_insert_term( $taxonomy, $term_data ); |
| 4976 | 4976 | } |
@@ -4992,47 +4992,47 @@ discard block |
||
| 4992 | 4992 | * @return int Posts count. |
| 4993 | 4993 | */ |
| 4994 | 4994 | function geodir_get_posts_count( $post_type ) {
|
| 4995 | - global $wpdb, $plugin_prefix; |
|
| 4995 | + global $wpdb, $plugin_prefix; |
|
| 4996 | 4996 | |
| 4997 | - if ( !post_type_exists( $post_type ) ) {
|
|
| 4998 | - return 0; |
|
| 4999 | - } |
|
| 4997 | + if ( !post_type_exists( $post_type ) ) {
|
|
| 4998 | + return 0; |
|
| 4999 | + } |
|
| 5000 | 5000 | |
| 5001 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5001 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5002 | 5002 | |
| 5003 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5004 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5005 | - $where_statuses = ''; |
|
| 5006 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5007 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5008 | - } |
|
| 5003 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5004 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5005 | + $where_statuses = ''; |
|
| 5006 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5007 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5008 | + } |
|
| 5009 | 5009 | |
| 5010 | - /** |
|
| 5011 | - * Filter the SQL where clause part to filter posts count in import/export. |
|
| 5012 | - * |
|
| 5013 | - * @since 1.6.4 |
|
| 5014 | - * @package GeoDirectory |
|
| 5015 | - * |
|
| 5016 | - * @param string $where SQL where clause part. |
|
| 5017 | - */ |
|
| 5018 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5019 | - |
|
| 5020 | - $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5021 | - |
|
| 5022 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5010 | + /** |
|
| 5011 | + * Filter the SQL where clause part to filter posts count in import/export. |
|
| 5012 | + * |
|
| 5013 | + * @since 1.6.4 |
|
| 5014 | + * @package GeoDirectory |
|
| 5015 | + * |
|
| 5016 | + * @param string $where SQL where clause part. |
|
| 5017 | + */ |
|
| 5018 | + $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5019 | + |
|
| 5020 | + $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5021 | + |
|
| 5022 | + $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5023 | 5023 | |
| 5024 | - /** |
|
| 5025 | - * Modify returned post counts for the current post type. |
|
| 5026 | - * |
|
| 5027 | - * @since 1.4.6 |
|
| 5028 | - * @package GeoDirectory |
|
| 5029 | - * |
|
| 5030 | - * @param int $posts_count Post counts. |
|
| 5031 | - * @param string $post_type Post type. |
|
| 5032 | - */ |
|
| 5033 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5034 | - |
|
| 5035 | - return $posts_count; |
|
| 5024 | + /** |
|
| 5025 | + * Modify returned post counts for the current post type. |
|
| 5026 | + * |
|
| 5027 | + * @since 1.4.6 |
|
| 5028 | + * @package GeoDirectory |
|
| 5029 | + * |
|
| 5030 | + * @param int $posts_count Post counts. |
|
| 5031 | + * @param string $post_type Post type. |
|
| 5032 | + */ |
|
| 5033 | + $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5034 | + |
|
| 5035 | + return $posts_count; |
|
| 5036 | 5036 | } |
| 5037 | 5037 | |
| 5038 | 5038 | /** |
@@ -5061,10 +5061,10 @@ discard block |
||
| 5061 | 5061 | |
| 5062 | 5062 | if ( !empty( $posts ) ) {
|
| 5063 | 5063 | $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
| 5064 | - $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 5065 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5066 | - $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
|
| 5067 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5064 | + $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
|
| 5065 | + $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5066 | + $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
|
| 5067 | + $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5068 | 5068 | |
| 5069 | 5069 | $csv_row = array(); |
| 5070 | 5070 | $csv_row[] = 'post_id'; |
@@ -5096,7 +5096,7 @@ discard block |
||
| 5096 | 5096 | } |
| 5097 | 5097 | $csv_row[] = 'post_status'; |
| 5098 | 5098 | $csv_row[] = 'is_featured'; |
| 5099 | - // Export claim listing field |
|
| 5099 | + // Export claim listing field |
|
| 5100 | 5100 | if ($is_claim_active) {
|
| 5101 | 5101 | $csv_row[] = 'claimed'; |
| 5102 | 5102 | } |
@@ -5105,7 +5105,7 @@ discard block |
||
| 5105 | 5105 | $csv_row[] = 'alive_days'; |
| 5106 | 5106 | $csv_row[] = 'expire_date'; |
| 5107 | 5107 | } |
| 5108 | - $csv_row[] = 'post_date'; |
|
| 5108 | + $csv_row[] = 'post_date'; |
|
| 5109 | 5109 | $csv_row[] = 'post_address'; |
| 5110 | 5110 | $csv_row[] = 'post_city'; |
| 5111 | 5111 | $csv_row[] = 'post_region'; |
@@ -5113,11 +5113,11 @@ discard block |
||
| 5113 | 5113 | $csv_row[] = 'post_zip'; |
| 5114 | 5114 | $csv_row[] = 'post_latitude'; |
| 5115 | 5115 | $csv_row[] = 'post_longitude'; |
| 5116 | - if ($neighbourhood_active) {
|
|
| 5117 | - $csv_row[] = 'post_neighbourhood'; |
|
| 5118 | - $csv_row[] = 'neighbourhood_latitude'; |
|
| 5119 | - $csv_row[] = 'neighbourhood_longitude'; |
|
| 5120 | - } |
|
| 5116 | + if ($neighbourhood_active) {
|
|
| 5117 | + $csv_row[] = 'post_neighbourhood'; |
|
| 5118 | + $csv_row[] = 'neighbourhood_latitude'; |
|
| 5119 | + $csv_row[] = 'neighbourhood_longitude'; |
|
| 5120 | + } |
|
| 5121 | 5121 | $csv_row[] = 'geodir_timing'; |
| 5122 | 5122 | $csv_row[] = 'geodir_contact'; |
| 5123 | 5123 | $csv_row[] = 'geodir_email'; |
@@ -5149,21 +5149,21 @@ discard block |
||
| 5149 | 5149 | $csv_row[] = 'franchise'; |
| 5150 | 5150 | } |
| 5151 | 5151 | |
| 5152 | - /** |
|
| 5153 | - * Filter columns field names of gd export listings csv. |
|
| 5154 | - * |
|
| 5155 | - * @since 1.6.5 |
|
| 5156 | - * @package GeoDirectory |
|
| 5157 | - * |
|
| 5158 | - * @param array $csv_row Column names being exported in csv. |
|
| 5159 | - * @param string $post_type The post type. |
|
| 5160 | - */ |
|
| 5161 | - $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
|
|
| 5152 | + /** |
|
| 5153 | + * Filter columns field names of gd export listings csv. |
|
| 5154 | + * |
|
| 5155 | + * @since 1.6.5 |
|
| 5156 | + * @package GeoDirectory |
|
| 5157 | + * |
|
| 5158 | + * @param array $csv_row Column names being exported in csv. |
|
| 5159 | + * @param string $post_type The post type. |
|
| 5160 | + */ |
|
| 5161 | + $csv_row = apply_filters('geodir_export_listing_csv_column_names', $csv_row, $post_type);
|
|
| 5162 | 5162 | |
| 5163 | 5163 | $csv_rows[] = $csv_row; |
| 5164 | 5164 | |
| 5165 | 5165 | $images_count = 5; |
| 5166 | - $xx=0; |
|
| 5166 | + $xx=0; |
|
| 5167 | 5167 | foreach ( $posts as $post ) {$xx++;
|
| 5168 | 5168 | $post_id = $post['ID']; |
| 5169 | 5169 | |
@@ -5294,15 +5294,15 @@ discard block |
||
| 5294 | 5294 | } |
| 5295 | 5295 | $csv_row[] = $post_info['post_status']; // post_status |
| 5296 | 5296 | $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
| 5297 | - if ($is_claim_active) {
|
|
| 5298 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5299 | - } |
|
| 5297 | + if ($is_claim_active) {
|
|
| 5298 | + $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5299 | + } |
|
| 5300 | 5300 | if ($is_payment_plugin) {
|
| 5301 | 5301 | $csv_row[] = (int)$post_info['package_id']; // package_id |
| 5302 | 5302 | $csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days |
| 5303 | 5303 | $csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
|
| 5304 | 5304 | } |
| 5305 | - $csv_row[] = $post_info['post_date']; // post_date |
|
| 5305 | + $csv_row[] = $post_info['post_date']; // post_date |
|
| 5306 | 5306 | $csv_row[] = stripslashes($post_info['post_address']); // post_address |
| 5307 | 5307 | $csv_row[] = stripslashes($post_info['post_city']); // post_city |
| 5308 | 5308 | $csv_row[] = stripslashes($post_info['post_region']); // post_region |
@@ -5310,21 +5310,21 @@ discard block |
||
| 5310 | 5310 | $csv_row[] = stripslashes($post_info['post_zip']); // post_zip |
| 5311 | 5311 | $csv_row[] = $post_info['post_latitude']; // post_latitude |
| 5312 | 5312 | $csv_row[] = $post_info['post_longitude']; // post_longitude |
| 5313 | - if ($neighbourhood_active) {
|
|
| 5314 | - $post_neighbourhood = ''; |
|
| 5315 | - $neighbourhood_latitude = ''; |
|
| 5316 | - $neighbourhood_longitude = ''; |
|
| 5317 | - if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
|
|
| 5318 | - if (!empty($hood_info)) {
|
|
| 5319 | - $post_neighbourhood = $hood_info->hood_name; |
|
| 5320 | - $neighbourhood_latitude = $hood_info->hood_latitude; |
|
| 5321 | - $neighbourhood_longitude = $hood_info->hood_longitude; |
|
| 5322 | - } |
|
| 5323 | - } |
|
| 5324 | - $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
| 5325 | - $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
| 5326 | - $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
| 5327 | - } |
|
| 5313 | + if ($neighbourhood_active) {
|
|
| 5314 | + $post_neighbourhood = ''; |
|
| 5315 | + $neighbourhood_latitude = ''; |
|
| 5316 | + $neighbourhood_longitude = ''; |
|
| 5317 | + if (!empty($post_info['post_neighbourhood']) && ($hood_info = geodir_location_get_neighbourhood_by_id($post_info['post_neighbourhood'], true, $post_info['post_location_id']))) {
|
|
| 5318 | + if (!empty($hood_info)) {
|
|
| 5319 | + $post_neighbourhood = $hood_info->hood_name; |
|
| 5320 | + $neighbourhood_latitude = $hood_info->hood_latitude; |
|
| 5321 | + $neighbourhood_longitude = $hood_info->hood_longitude; |
|
| 5322 | + } |
|
| 5323 | + } |
|
| 5324 | + $csv_row[] = stripslashes($post_neighbourhood); // post_neighbourhood |
|
| 5325 | + $csv_row[] = $neighbourhood_latitude; // neighbourhood_latitude |
|
| 5326 | + $csv_row[] = $neighbourhood_longitude; // neighbourhood_longitude |
|
| 5327 | + } |
|
| 5328 | 5328 | $csv_row[] = stripslashes($post_info['geodir_timing']); // geodir_timing |
| 5329 | 5329 | $csv_row[] = stripslashes($post_info['geodir_contact']); // geodir_contact |
| 5330 | 5330 | $csv_row[] = stripslashes($post_info['geodir_email']); // geodir_email |
@@ -5364,16 +5364,16 @@ discard block |
||
| 5364 | 5364 | $csv_row[] = (int)$franchise; // franchise id |
| 5365 | 5365 | } |
| 5366 | 5366 | |
| 5367 | - /** |
|
| 5368 | - * Filter columns values of gd export listings csv file |
|
| 5369 | - * |
|
| 5370 | - * @since 1.6.5 |
|
| 5371 | - * @package GeoDirectory |
|
| 5372 | - * |
|
| 5373 | - * @param array $csv_row Field values being exported in csv. |
|
| 5374 | - * @param array $post_info The post info. |
|
| 5375 | - */ |
|
| 5376 | - $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
|
| 5367 | + /** |
|
| 5368 | + * Filter columns values of gd export listings csv file |
|
| 5369 | + * |
|
| 5370 | + * @since 1.6.5 |
|
| 5371 | + * @package GeoDirectory |
|
| 5372 | + * |
|
| 5373 | + * @param array $csv_row Field values being exported in csv. |
|
| 5374 | + * @param array $post_info The post info. |
|
| 5375 | + */ |
|
| 5376 | + $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
|
| 5377 | 5377 | |
| 5378 | 5378 | for ( $c = 0; $c < $images_count; $c++ ) {
|
| 5379 | 5379 | $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
@@ -5406,64 +5406,64 @@ discard block |
||
| 5406 | 5406 | * @return array Array of posts data. |
| 5407 | 5407 | */ |
| 5408 | 5408 | function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
| 5409 | - global $wpdb, $plugin_prefix; |
|
| 5409 | + global $wpdb, $plugin_prefix; |
|
| 5410 | 5410 | |
| 5411 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5412 | - return new stdClass; |
|
| 5411 | + if ( ! post_type_exists( $post_type ) ) |
|
| 5412 | + return new stdClass; |
|
| 5413 | 5413 | |
| 5414 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5414 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5415 | 5415 | |
| 5416 | - $limit = ''; |
|
| 5417 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5418 | - $offset = ( $page_no - 1 ) * $per_page; |
|
| 5416 | + $limit = ''; |
|
| 5417 | + if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5418 | + $offset = ( $page_no - 1 ) * $per_page; |
|
| 5419 | 5419 | |
| 5420 | - if ( $offset > 0 ) {
|
|
| 5421 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5422 | - } else {
|
|
| 5423 | - $limit = " LIMIT " . $per_page; |
|
| 5424 | - } |
|
| 5425 | - } |
|
| 5420 | + if ( $offset > 0 ) {
|
|
| 5421 | + $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5422 | + } else {
|
|
| 5423 | + $limit = " LIMIT " . $per_page; |
|
| 5424 | + } |
|
| 5425 | + } |
|
| 5426 | 5426 | |
| 5427 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5428 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5429 | - $where_statuses = ''; |
|
| 5430 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5431 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5432 | - } |
|
| 5427 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5428 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5429 | + $where_statuses = ''; |
|
| 5430 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5431 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5432 | + } |
|
| 5433 | 5433 | |
| 5434 | - /** |
|
| 5435 | - * Filter the SQL where clause part to filter posts in import/export. |
|
| 5436 | - * |
|
| 5437 | - * @since 1.6.4 |
|
| 5438 | - * @package GeoDirectory |
|
| 5439 | - * |
|
| 5440 | - * @param string $where SQL where clause part. |
|
| 5441 | - */ |
|
| 5442 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5443 | - |
|
| 5444 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5445 | - /** |
|
| 5446 | - * Modify returned posts SQL query for the current post type. |
|
| 5447 | - * |
|
| 5448 | - * @since 1.4.6 |
|
| 5449 | - * @package GeoDirectory |
|
| 5450 | - * |
|
| 5451 | - * @param int $query The SQL query. |
|
| 5452 | - * @param string $post_type Post type. |
|
| 5453 | - */ |
|
| 5454 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5455 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5456 | - |
|
| 5457 | - /** |
|
| 5458 | - * Modify returned post results for the current post type. |
|
| 5459 | - * |
|
| 5460 | - * @since 1.4.6 |
|
| 5461 | - * @package GeoDirectory |
|
| 5462 | - * |
|
| 5463 | - * @param object $results An object containing all post ids. |
|
| 5464 | - * @param string $post_type Post type. |
|
| 5465 | - */ |
|
| 5466 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5434 | + /** |
|
| 5435 | + * Filter the SQL where clause part to filter posts in import/export. |
|
| 5436 | + * |
|
| 5437 | + * @since 1.6.4 |
|
| 5438 | + * @package GeoDirectory |
|
| 5439 | + * |
|
| 5440 | + * @param string $where SQL where clause part. |
|
| 5441 | + */ |
|
| 5442 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5443 | + |
|
| 5444 | + $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5445 | + /** |
|
| 5446 | + * Modify returned posts SQL query for the current post type. |
|
| 5447 | + * |
|
| 5448 | + * @since 1.4.6 |
|
| 5449 | + * @package GeoDirectory |
|
| 5450 | + * |
|
| 5451 | + * @param int $query The SQL query. |
|
| 5452 | + * @param string $post_type Post type. |
|
| 5453 | + */ |
|
| 5454 | + $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5455 | + $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5456 | + |
|
| 5457 | + /** |
|
| 5458 | + * Modify returned post results for the current post type. |
|
| 5459 | + * |
|
| 5460 | + * @since 1.4.6 |
|
| 5461 | + * @package GeoDirectory |
|
| 5462 | + * |
|
| 5463 | + * @param object $results An object containing all post ids. |
|
| 5464 | + * @param string $post_type Post type. |
|
| 5465 | + */ |
|
| 5466 | + return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5467 | 5467 | } |
| 5468 | 5468 | |
| 5469 | 5469 | /** |
@@ -5482,26 +5482,26 @@ discard block |
||
| 5482 | 5482 | * @return string The SQL query. |
| 5483 | 5483 | */ |
| 5484 | 5484 | function geodir_imex_get_events_query( $query, $post_type ) {
|
| 5485 | - if ( $post_type == 'gd_event' ) {
|
|
| 5486 | - global $wpdb, $plugin_prefix; |
|
| 5485 | + if ( $post_type == 'gd_event' ) {
|
|
| 5486 | + global $wpdb, $plugin_prefix; |
|
| 5487 | 5487 | |
| 5488 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5489 | - $schedule_table = EVENT_SCHEDULE; |
|
| 5488 | + $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5489 | + $schedule_table = EVENT_SCHEDULE; |
|
| 5490 | 5490 | |
| 5491 | - // Skip listing with statuses trash, auto-draft etc... |
|
| 5492 | - $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5493 | - $where_statuses = ''; |
|
| 5494 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5495 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5496 | - } |
|
| 5491 | + // Skip listing with statuses trash, auto-draft etc... |
|
| 5492 | + $skip_statuses = geodir_imex_export_skip_statuses(); |
|
| 5493 | + $where_statuses = ''; |
|
| 5494 | + if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5495 | + $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5496 | + } |
|
| 5497 | 5497 | |
| 5498 | - /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
| 5499 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5498 | + /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
|
| 5499 | + $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5500 | 5500 | |
| 5501 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5502 | - } |
|
| 5501 | + $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5502 | + } |
|
| 5503 | 5503 | |
| 5504 | - return $query; |
|
| 5504 | + return $query; |
|
| 5505 | 5505 | } |
| 5506 | 5506 | |
| 5507 | 5507 | /** |
@@ -5523,36 +5523,36 @@ discard block |
||
| 5523 | 5523 | * @return int Total terms count. |
| 5524 | 5524 | */ |
| 5525 | 5525 | function geodir_get_terms_count( $post_type ) {
|
| 5526 | - $args = array( 'hide_empty' => 0 ); |
|
| 5526 | + $args = array( 'hide_empty' => 0 ); |
|
| 5527 | 5527 | |
| 5528 | - remove_all_filters( 'get_terms' ); |
|
| 5528 | + remove_all_filters( 'get_terms' ); |
|
| 5529 | 5529 | |
| 5530 | - $taxonomy = $post_type . 'category'; |
|
| 5530 | + $taxonomy = $post_type . 'category'; |
|
| 5531 | 5531 | |
| 5532 | - // WPML |
|
| 5533 | - $is_wpml = geodir_is_wpml(); |
|
| 5534 | - $active_lang = 'all'; |
|
| 5535 | - if ( $is_wpml ) {
|
|
| 5536 | - global $sitepress; |
|
| 5537 | - $active_lang = $sitepress->get_current_language(); |
|
| 5532 | + // WPML |
|
| 5533 | + $is_wpml = geodir_is_wpml(); |
|
| 5534 | + $active_lang = 'all'; |
|
| 5535 | + if ( $is_wpml ) {
|
|
| 5536 | + global $sitepress; |
|
| 5537 | + $active_lang = $sitepress->get_current_language(); |
|
| 5538 | 5538 | |
| 5539 | - if ( $active_lang != 'all' ) {
|
|
| 5540 | - $sitepress->switch_lang( 'all', true ); |
|
| 5541 | - } |
|
| 5542 | - } |
|
| 5543 | - // WPML |
|
| 5539 | + if ( $active_lang != 'all' ) {
|
|
| 5540 | + $sitepress->switch_lang( 'all', true ); |
|
| 5541 | + } |
|
| 5542 | + } |
|
| 5543 | + // WPML |
|
| 5544 | 5544 | |
| 5545 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5545 | + $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5546 | 5546 | |
| 5547 | - // WPML |
|
| 5548 | - if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5549 | - global $sitepress; |
|
| 5550 | - $sitepress->switch_lang( $active_lang, true ); |
|
| 5551 | - } |
|
| 5552 | - // WPML |
|
| 5553 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5547 | + // WPML |
|
| 5548 | + if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5549 | + global $sitepress; |
|
| 5550 | + $sitepress->switch_lang( $active_lang, true ); |
|
| 5551 | + } |
|
| 5552 | + // WPML |
|
| 5553 | + $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5554 | 5554 | |
| 5555 | - return $count_terms; |
|
| 5555 | + return $count_terms; |
|
| 5556 | 5556 | } |
| 5557 | 5557 | |
| 5558 | 5558 | /** |
@@ -5591,11 +5591,11 @@ discard block |
||
| 5591 | 5591 | $csv_row[] = 'cat_posttype'; |
| 5592 | 5592 | $csv_row[] = 'cat_parent'; |
| 5593 | 5593 | $csv_row[] = 'cat_schema'; |
| 5594 | - // WPML |
|
| 5594 | + // WPML |
|
| 5595 | 5595 | $is_wpml = geodir_is_wpml(); |
| 5596 | 5596 | if ($is_wpml) {
|
| 5597 | 5597 | $csv_row[] = 'cat_language'; |
| 5598 | - $csv_row[] = 'cat_id_original'; |
|
| 5598 | + $csv_row[] = 'cat_id_original'; |
|
| 5599 | 5599 | } |
| 5600 | 5600 | // WPML |
| 5601 | 5601 | $csv_row[] = 'cat_description'; |
@@ -5625,10 +5625,10 @@ discard block |
||
| 5625 | 5625 | $csv_row[] = $post_type; |
| 5626 | 5626 | $csv_row[] = $cat_parent; |
| 5627 | 5627 | $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
| 5628 | - // WPML |
|
| 5628 | + // WPML |
|
| 5629 | 5629 | if ($is_wpml) {
|
| 5630 | 5630 | $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
| 5631 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5631 | + $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5632 | 5632 | } |
| 5633 | 5633 | // WPML |
| 5634 | 5634 | $csv_row[] = $term->description; |
@@ -6046,43 +6046,43 @@ discard block |
||
| 6046 | 6046 | * @param string $status Post status. |
| 6047 | 6047 | */ |
| 6048 | 6048 | function geodir_create_page($slug, $option, $page_title = '', $page_content = '', $post_parent = 0, $status = 'publish') {
|
| 6049 | - global $wpdb, $current_user; |
|
| 6050 | - |
|
| 6051 | - $option_value = get_option($option); |
|
| 6052 | - |
|
| 6053 | - if ($option_value > 0) : |
|
| 6054 | - if (get_post($option_value)) : |
|
| 6055 | - // Page exists |
|
| 6056 | - return; |
|
| 6057 | - endif; |
|
| 6058 | - endif; |
|
| 6059 | - |
|
| 6060 | - $page_found = $wpdb->get_var( |
|
| 6061 | - $wpdb->prepare( |
|
| 6062 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6063 | - array($slug) |
|
| 6064 | - ) |
|
| 6065 | - ); |
|
| 6066 | - |
|
| 6067 | - if ($page_found) : |
|
| 6068 | - // Page exists |
|
| 6069 | - if (!$option_value) update_option($option, $page_found); |
|
| 6070 | - return; |
|
| 6071 | - endif; |
|
| 6072 | - |
|
| 6073 | - $page_data = array( |
|
| 6074 | - 'post_status' => $status, |
|
| 6075 | - 'post_type' => 'page', |
|
| 6076 | - 'post_author' => $current_user->ID, |
|
| 6077 | - 'post_name' => $slug, |
|
| 6078 | - 'post_title' => $page_title, |
|
| 6079 | - 'post_content' => $page_content, |
|
| 6080 | - 'post_parent' => $post_parent, |
|
| 6081 | - 'comment_status' => 'closed' |
|
| 6082 | - ); |
|
| 6083 | - $page_id = wp_insert_post($page_data); |
|
| 6084 | - |
|
| 6085 | - add_option($option, $page_id); |
|
| 6049 | + global $wpdb, $current_user; |
|
| 6050 | + |
|
| 6051 | + $option_value = get_option($option); |
|
| 6052 | + |
|
| 6053 | + if ($option_value > 0) : |
|
| 6054 | + if (get_post($option_value)) : |
|
| 6055 | + // Page exists |
|
| 6056 | + return; |
|
| 6057 | + endif; |
|
| 6058 | + endif; |
|
| 6059 | + |
|
| 6060 | + $page_found = $wpdb->get_var( |
|
| 6061 | + $wpdb->prepare( |
|
| 6062 | + "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6063 | + array($slug) |
|
| 6064 | + ) |
|
| 6065 | + ); |
|
| 6066 | + |
|
| 6067 | + if ($page_found) : |
|
| 6068 | + // Page exists |
|
| 6069 | + if (!$option_value) update_option($option, $page_found); |
|
| 6070 | + return; |
|
| 6071 | + endif; |
|
| 6072 | + |
|
| 6073 | + $page_data = array( |
|
| 6074 | + 'post_status' => $status, |
|
| 6075 | + 'post_type' => 'page', |
|
| 6076 | + 'post_author' => $current_user->ID, |
|
| 6077 | + 'post_name' => $slug, |
|
| 6078 | + 'post_title' => $page_title, |
|
| 6079 | + 'post_content' => $page_content, |
|
| 6080 | + 'post_parent' => $post_parent, |
|
| 6081 | + 'comment_status' => 'closed' |
|
| 6082 | + ); |
|
| 6083 | + $page_id = wp_insert_post($page_data); |
|
| 6084 | + |
|
| 6085 | + add_option($option, $page_id); |
|
| 6086 | 6086 | |
| 6087 | 6087 | } |
| 6088 | 6088 | |
@@ -6113,9 +6113,9 @@ discard block |
||
| 6113 | 6113 | * @package GeoDirectory |
| 6114 | 6114 | */ |
| 6115 | 6115 | function geodir_admin_upgrade_notice() {
|
| 6116 | - $class = "error"; |
|
| 6117 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6118 | - echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
| 6116 | + $class = "error"; |
|
| 6117 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6118 | + echo"<div class=\"$class\"> <p>$message</p></div>"; |
|
| 6119 | 6119 | } |
| 6120 | 6120 | |
| 6121 | 6121 | /** |
@@ -6128,18 +6128,18 @@ discard block |
||
| 6128 | 6128 | */ |
| 6129 | 6129 | function geodire_admin_upgrade_notice( $plugin_data, $r ) |
| 6130 | 6130 | {
|
| 6131 | - // readme contents |
|
| 6132 | - $args = array( |
|
| 6133 | - 'timeout' => 15, |
|
| 6134 | - 'redirection' => 5 |
|
| 6135 | - ); |
|
| 6136 | - $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
| 6137 | - $data = wp_remote_get( $url, $args ); |
|
| 6131 | + // readme contents |
|
| 6132 | + $args = array( |
|
| 6133 | + 'timeout' => 15, |
|
| 6134 | + 'redirection' => 5 |
|
| 6135 | + ); |
|
| 6136 | + $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
|
| 6137 | + $data = wp_remote_get( $url, $args ); |
|
| 6138 | 6138 | |
| 6139 | - if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
|
| 6139 | + if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
|
| 6140 | 6140 | |
| 6141 | - geodir_in_plugin_update_message($data['body']); |
|
| 6142 | - } |
|
| 6141 | + geodir_in_plugin_update_message($data['body']); |
|
| 6142 | + } |
|
| 6143 | 6143 | } |
| 6144 | 6144 | |
| 6145 | 6145 | |
@@ -6147,28 +6147,28 @@ discard block |
||
| 6147 | 6147 | * @param string $content http response body |
| 6148 | 6148 | */ |
| 6149 | 6149 | function geodir_in_plugin_update_message($content) {
|
| 6150 | - // Output Upgrade Notice |
|
| 6151 | - $matches = null; |
|
| 6152 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6153 | - $upgrade_notice = ''; |
|
| 6154 | - if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6155 | - if(empty($matches)){return;}
|
|
| 6156 | - |
|
| 6157 | - $version = trim( $matches[1] ); |
|
| 6158 | - if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6159 | - |
|
| 6160 | - |
|
| 6161 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6162 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6163 | - $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
| 6164 | - foreach ( $notices as $index => $line ) {
|
|
| 6165 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6166 | - } |
|
| 6167 | - $upgrade_notice .= '</div> '; |
|
| 6168 | - } |
|
| 6169 | - } |
|
| 6170 | - } |
|
| 6171 | - echo $upgrade_notice; |
|
| 6150 | + // Output Upgrade Notice |
|
| 6151 | + $matches = null; |
|
| 6152 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6153 | + $upgrade_notice = ''; |
|
| 6154 | + if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6155 | + if(empty($matches)){return;}
|
|
| 6156 | + |
|
| 6157 | + $version = trim( $matches[1] ); |
|
| 6158 | + if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6159 | + |
|
| 6160 | + |
|
| 6161 | + $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6162 | + if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6163 | + $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
|
| 6164 | + foreach ( $notices as $index => $line ) {
|
|
| 6165 | + $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6166 | + } |
|
| 6167 | + $upgrade_notice .= '</div> '; |
|
| 6168 | + } |
|
| 6169 | + } |
|
| 6170 | + } |
|
| 6171 | + echo $upgrade_notice; |
|
| 6172 | 6172 | } |
| 6173 | 6173 | |
| 6174 | 6174 | /** |
@@ -6201,19 +6201,19 @@ discard block |
||
| 6201 | 6201 | * @param array Listing statuses to be skipped. |
| 6202 | 6202 | */ |
| 6203 | 6203 | function geodir_imex_export_skip_statuses() {
|
| 6204 | - $statuses = array( 'trash', 'auto-draft' ); |
|
| 6204 | + $statuses = array( 'trash', 'auto-draft' ); |
|
| 6205 | 6205 | |
| 6206 | - /** |
|
| 6207 | - * Filter the statuses to skip during GD export listings. |
|
| 6208 | - * |
|
| 6209 | - * @since 1.6.0 |
|
| 6210 | - * @package GeoDirectory |
|
| 6211 | - * |
|
| 6212 | - * @param array $statuses Listing statuses to be skipped. |
|
| 6213 | - */ |
|
| 6214 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6206 | + /** |
|
| 6207 | + * Filter the statuses to skip during GD export listings. |
|
| 6208 | + * |
|
| 6209 | + * @since 1.6.0 |
|
| 6210 | + * @package GeoDirectory |
|
| 6211 | + * |
|
| 6212 | + * @param array $statuses Listing statuses to be skipped. |
|
| 6213 | + */ |
|
| 6214 | + $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6215 | 6215 | |
| 6216 | - return $statuses; |
|
| 6216 | + return $statuses; |
|
| 6217 | 6217 | } |
| 6218 | 6218 | |
| 6219 | 6219 | /** |
@@ -6228,24 +6228,24 @@ discard block |
||
| 6228 | 6228 | * @global string $typenow Current post type. |
| 6229 | 6229 | */ |
| 6230 | 6230 | function geodir_admin_dequeue_scripts() {
|
| 6231 | - global $typenow; |
|
| 6231 | + global $typenow; |
|
| 6232 | 6232 | |
| 6233 | - // EDD |
|
| 6234 | - if (wp_script_is('jquery-chosen', 'enqueued')) {
|
|
| 6235 | - wp_dequeue_script('jquery-chosen');
|
|
| 6236 | - } |
|
| 6233 | + // EDD |
|
| 6234 | + if (wp_script_is('jquery-chosen', 'enqueued')) {
|
|
| 6235 | + wp_dequeue_script('jquery-chosen');
|
|
| 6236 | + } |
|
| 6237 | 6237 | |
| 6238 | - // Ultimate Addons for Visual Composer |
|
| 6239 | - if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
|
|
| 6240 | - wp_dequeue_script('ultimate-vc-backend-script');
|
|
| 6241 | - } |
|
| 6238 | + // Ultimate Addons for Visual Composer |
|
| 6239 | + if (wp_script_is('ultimate-vc-backend-script', 'enqueued')) {
|
|
| 6240 | + wp_dequeue_script('ultimate-vc-backend-script');
|
|
| 6241 | + } |
|
| 6242 | 6242 | |
| 6243 | - // Fix conflict Fusion Builder jquery chosen with GD jquery chosen. |
|
| 6244 | - if (class_exists('FusionBuilder')) {
|
|
| 6245 | - if (wp_script_is('fusion_builder_chosen_js', 'enqueued') && $typenow && in_array($typenow, geodir_get_posttypes())) {
|
|
| 6246 | - wp_dequeue_script('fusion_builder_chosen_js');
|
|
| 6247 | - } |
|
| 6248 | - } |
|
| 6243 | + // Fix conflict Fusion Builder jquery chosen with GD jquery chosen. |
|
| 6244 | + if (class_exists('FusionBuilder')) {
|
|
| 6245 | + if (wp_script_is('fusion_builder_chosen_js', 'enqueued') && $typenow && in_array($typenow, geodir_get_posttypes())) {
|
|
| 6246 | + wp_dequeue_script('fusion_builder_chosen_js');
|
|
| 6247 | + } |
|
| 6248 | + } |
|
| 6249 | 6249 | } |
| 6250 | 6250 | |
| 6251 | 6251 | /** |
@@ -6261,48 +6261,48 @@ discard block |
||
| 6261 | 6261 | * @return string SQL where clause part. |
| 6262 | 6262 | */ |
| 6263 | 6263 | function geodir_imex_get_filter_where($where = '', $post_type = '') {
|
| 6264 | - global $wpdb; |
|
| 6264 | + global $wpdb; |
|
| 6265 | 6265 | |
| 6266 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6266 | + $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6267 | 6267 | |
| 6268 | - if ( !empty( $filters ) ) {
|
|
| 6269 | - foreach ( $filters as $field => $value ) {
|
|
| 6270 | - switch ($field) {
|
|
| 6271 | - case 'start_date': |
|
| 6272 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6273 | - break; |
|
| 6274 | - case 'end_date': |
|
| 6275 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6276 | - break; |
|
| 6277 | - } |
|
| 6278 | - } |
|
| 6279 | - } |
|
| 6268 | + if ( !empty( $filters ) ) {
|
|
| 6269 | + foreach ( $filters as $field => $value ) {
|
|
| 6270 | + switch ($field) {
|
|
| 6271 | + case 'start_date': |
|
| 6272 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6273 | + break; |
|
| 6274 | + case 'end_date': |
|
| 6275 | + $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6276 | + break; |
|
| 6277 | + } |
|
| 6278 | + } |
|
| 6279 | + } |
|
| 6280 | 6280 | |
| 6281 | - return $where; |
|
| 6281 | + return $where; |
|
| 6282 | 6282 | } |
| 6283 | 6283 | add_filter('geodir_get_posts_count', 'geodir_imex_get_filter_where', 10, 2);
|
| 6284 | 6284 | add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
|
| 6285 | 6285 | |
| 6286 | 6286 | |
| 6287 | 6287 | function geodir_fix_for_primer_theme(){
|
| 6288 | - if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6289 | - global $pagenow; |
|
| 6288 | + if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6289 | + global $pagenow; |
|
| 6290 | 6290 | |
| 6291 | - if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6291 | + if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6292 | 6292 | |
| 6293 | - $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6293 | + $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6294 | 6294 | |
| 6295 | - $post_types = geodir_get_posttypes(); |
|
| 6296 | - if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6297 | - global $primer_customizer_layouts; |
|
| 6298 | - remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6299 | - } |
|
| 6300 | - } |
|
| 6295 | + $post_types = geodir_get_posttypes(); |
|
| 6296 | + if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6297 | + global $primer_customizer_layouts; |
|
| 6298 | + remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6299 | + } |
|
| 6300 | + } |
|
| 6301 | 6301 | |
| 6302 | 6302 | } |
| 6303 | 6303 | |
| 6304 | 6304 | if(is_admin()){
|
| 6305 | - add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6305 | + add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6306 | 6306 | } |
| 6307 | 6307 | |
| 6308 | 6308 | |
@@ -6435,94 +6435,94 @@ discard block |
||
| 6435 | 6435 | |
| 6436 | 6436 | function geodir_ga_activation_url() {
|
| 6437 | 6437 | |
| 6438 | - return add_query_arg( array( |
|
| 6439 | - 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
|
| 6440 | - 'scope' => GEODIR_GA_SCOPE, |
|
| 6441 | - 'response_type' => 'code', |
|
| 6442 | - 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
| 6443 | - 'client_id' => GEODIR_GA_CLIENTID, |
|
| 6444 | - ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6438 | + return add_query_arg( array( |
|
| 6439 | + 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
|
| 6440 | + 'scope' => GEODIR_GA_SCOPE, |
|
| 6441 | + 'response_type' => 'code', |
|
| 6442 | + 'redirect_uri' => GEODIR_GA_REDIRECT, |
|
| 6443 | + 'client_id' => GEODIR_GA_CLIENTID, |
|
| 6444 | + ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6445 | 6445 | |
| 6446 | - return $url; |
|
| 6446 | + return $url; |
|
| 6447 | 6447 | } |
| 6448 | 6448 | |
| 6449 | 6449 | function geodir_gd_accounts(){
|
| 6450 | - $accounts = array(); |
|
| 6451 | - $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6452 | - if($useAuth){
|
|
| 6453 | - try {
|
|
| 6454 | - $accounts = geodir_ga_get_analytics_accounts(); |
|
| 6455 | - } catch (Exception $e) {
|
|
| 6456 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6457 | - } |
|
| 6450 | + $accounts = array(); |
|
| 6451 | + $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6452 | + if($useAuth){
|
|
| 6453 | + try {
|
|
| 6454 | + $accounts = geodir_ga_get_analytics_accounts(); |
|
| 6455 | + } catch (Exception $e) {
|
|
| 6456 | + geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6457 | + } |
|
| 6458 | 6458 | |
| 6459 | - if(is_array($accounts)){
|
|
| 6460 | - $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6461 | - }elseif(get_option('geodir_ga_account_id')){
|
|
| 6462 | - $accounts = array(); |
|
| 6463 | - $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6464 | - } |
|
| 6465 | - } |
|
| 6466 | - return $accounts; |
|
| 6459 | + if(is_array($accounts)){
|
|
| 6460 | + $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6461 | + }elseif(get_option('geodir_ga_account_id')){
|
|
| 6462 | + $accounts = array(); |
|
| 6463 | + $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6464 | + } |
|
| 6465 | + } |
|
| 6466 | + return $accounts; |
|
| 6467 | 6467 | } |
| 6468 | 6468 | |
| 6469 | 6469 | function geodir_ga_get_analytics_accounts() |
| 6470 | 6470 | {
|
| 6471 | - global $gd_ga_errors; |
|
| 6472 | - $accounts = array(); |
|
| 6471 | + global $gd_ga_errors; |
|
| 6472 | + $accounts = array(); |
|
| 6473 | 6473 | |
| 6474 | - if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6474 | + if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6475 | 6475 | |
| 6476 | 6476 | |
| 6477 | - if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6478 | - return get_option('geodir_gd_uids');
|
|
| 6479 | - } |
|
| 6477 | + if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6478 | + return get_option('geodir_gd_uids');
|
|
| 6479 | + } |
|
| 6480 | 6480 | |
| 6481 | - # Create a new Gdata call |
|
| 6482 | - if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6483 | - $stats = new GDGoogleAnalyticsStats(); |
|
| 6484 | - else |
|
| 6485 | - return false; |
|
| 6481 | + # Create a new Gdata call |
|
| 6482 | + if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6483 | + $stats = new GDGoogleAnalyticsStats(); |
|
| 6484 | + else |
|
| 6485 | + return false; |
|
| 6486 | 6486 | |
| 6487 | - # Check if Google sucessfully logged in |
|
| 6488 | - if ( ! $stats->checkLogin() ) |
|
| 6489 | - return false; |
|
| 6487 | + # Check if Google sucessfully logged in |
|
| 6488 | + if ( ! $stats->checkLogin() ) |
|
| 6489 | + return false; |
|
| 6490 | 6490 | |
| 6491 | - # Get a list of accounts |
|
| 6492 | - try {
|
|
| 6493 | - $accounts = $stats->getAllProfiles(); |
|
| 6494 | - } catch (Exception $e) {
|
|
| 6495 | - $gd_ga_errors[] = $e->getMessage(); |
|
| 6496 | - return false; |
|
| 6497 | - } |
|
| 6491 | + # Get a list of accounts |
|
| 6492 | + try {
|
|
| 6493 | + $accounts = $stats->getAllProfiles(); |
|
| 6494 | + } catch (Exception $e) {
|
|
| 6495 | + $gd_ga_errors[] = $e->getMessage(); |
|
| 6496 | + return false; |
|
| 6497 | + } |
|
| 6498 | 6498 | |
| 6499 | 6499 | |
| 6500 | - natcasesort ($accounts); |
|
| 6500 | + natcasesort ($accounts); |
|
| 6501 | 6501 | |
| 6502 | - # Return the account array if there are accounts |
|
| 6503 | - if ( count($accounts) > 0 ){
|
|
| 6504 | - update_option('geodir_gd_uids',$accounts);
|
|
| 6505 | - return $accounts; |
|
| 6506 | - } |
|
| 6507 | - else |
|
| 6508 | - return false; |
|
| 6502 | + # Return the account array if there are accounts |
|
| 6503 | + if ( count($accounts) > 0 ){
|
|
| 6504 | + update_option('geodir_gd_uids',$accounts);
|
|
| 6505 | + return $accounts; |
|
| 6506 | + } |
|
| 6507 | + else |
|
| 6508 | + return false; |
|
| 6509 | 6509 | } |
| 6510 | 6510 | |
| 6511 | 6511 | add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' ); |
| 6512 | 6512 | function geodir_ga_deauthorize(){
|
| 6513 | 6513 | |
| 6514 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6514 | + if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6515 | 6515 | |
| 6516 | - die( 'Security check' ); |
|
| 6516 | + die( 'Security check' ); |
|
| 6517 | 6517 | |
| 6518 | - } else {
|
|
| 6519 | - update_option('geodir_ga_auth_token','');
|
|
| 6520 | - update_option('geodir_ga_auth_code','');
|
|
| 6521 | - update_option('geodir_gd_uids','');
|
|
| 6518 | + } else {
|
|
| 6519 | + update_option('geodir_ga_auth_token','');
|
|
| 6520 | + update_option('geodir_ga_auth_code','');
|
|
| 6521 | + update_option('geodir_gd_uids','');
|
|
| 6522 | 6522 | |
| 6523 | 6523 | |
| 6524 | - echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
|
| 6525 | - } |
|
| 6524 | + echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
|
| 6525 | + } |
|
| 6526 | 6526 | |
| 6527 | - die(); |
|
| 6527 | + die(); |
|
| 6528 | 6528 | } |
| 6529 | 6529 | \ No newline at end of file |
@@ -28,31 +28,31 @@ discard block |
||
| 28 | 28 | * @package GeoDirectory |
| 29 | 29 | */ |
| 30 | 30 | function geodir_admin_styles() {
|
| 31 | - wp_register_style('geodirectory-admin-css', geodir_plugin_url() . '/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 31 | + wp_register_style('geodirectory-admin-css', geodir_plugin_url().'/geodirectory-assets/css/admin.css', array(), GEODIRECTORY_VERSION);
|
|
| 32 | 32 | wp_enqueue_style('geodirectory-admin-css');
|
| 33 | 33 | |
| 34 | - wp_register_style('geodirectory-frontend-style', geodir_plugin_url() . '/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 34 | + wp_register_style('geodirectory-frontend-style', geodir_plugin_url().'/geodirectory-assets/css/style.css', array(), GEODIRECTORY_VERSION);
|
|
| 35 | 35 | wp_enqueue_style('geodirectory-frontend-style');
|
| 36 | 36 | |
| 37 | - wp_register_style('geodir-chosen-style', geodir_plugin_url() . '/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 37 | + wp_register_style('geodir-chosen-style', geodir_plugin_url().'/geodirectory-assets/css/chosen.css', array(), GEODIRECTORY_VERSION);
|
|
| 38 | 38 | wp_enqueue_style('geodir-chosen-style');
|
| 39 | 39 | |
| 40 | - wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 40 | + wp_register_style('geodirectory-jquery-ui-timepicker-css', geodir_plugin_url().'/geodirectory-assets/css/jquery.ui.timepicker.css', array(), GEODIRECTORY_VERSION);
|
|
| 41 | 41 | wp_enqueue_style('geodirectory-jquery-ui-timepicker-css');
|
| 42 | 42 | |
| 43 | - wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url() . '/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 43 | + wp_register_style('geodirectory-jquery-ui-css', geodir_plugin_url().'/geodirectory-assets/css/jquery-ui.css', array(), GEODIRECTORY_VERSION);
|
|
| 44 | 44 | wp_enqueue_style('geodirectory-jquery-ui-css');
|
| 45 | 45 | |
| 46 | - wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url() . '/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 46 | + wp_register_style('geodirectory-custom-fields-css', geodir_plugin_url().'/geodirectory-assets/css/custom_field.css', array(), GEODIRECTORY_VERSION);
|
|
| 47 | 47 | wp_enqueue_style('geodirectory-custom-fields-css');
|
| 48 | 48 | |
| 49 | - wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url() . '/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 49 | + wp_register_style('geodirectory-pluplodar-css', geodir_plugin_url().'/geodirectory-assets/css/pluploader.css', array(), GEODIRECTORY_VERSION);
|
|
| 50 | 50 | wp_enqueue_style('geodirectory-pluplodar-css');
|
| 51 | 51 | |
| 52 | - wp_register_style('geodir-rating-style', geodir_plugin_url() . '/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 52 | + wp_register_style('geodir-rating-style', geodir_plugin_url().'/geodirectory-assets/css/jRating.jquery.css', array(), GEODIRECTORY_VERSION);
|
|
| 53 | 53 | wp_enqueue_style('geodir-rating-style');
|
| 54 | 54 | |
| 55 | - wp_register_style('geodir-rtl-style', geodir_plugin_url() . '/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 55 | + wp_register_style('geodir-rtl-style', geodir_plugin_url().'/geodirectory-assets/css/rtl.css', array(), GEODIRECTORY_VERSION);
|
|
| 56 | 56 | wp_enqueue_style('geodir-rtl-style');
|
| 57 | 57 | } |
| 58 | 58 | } |
@@ -70,7 +70,7 @@ discard block |
||
| 70 | 70 | wp_register_style('font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css', array(), GEODIRECTORY_VERSION);
|
| 71 | 71 | wp_enqueue_style('font-awesome');
|
| 72 | 72 | |
| 73 | - wp_register_script('geodirectory-admin', geodir_plugin_url() . '/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 73 | + wp_register_script('geodirectory-admin', geodir_plugin_url().'/geodirectory-assets/js/admin-req.min.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 74 | 74 | wp_enqueue_script('geodirectory-admin');
|
| 75 | 75 | |
| 76 | 76 | } |
@@ -89,60 +89,60 @@ discard block |
||
| 89 | 89 | |
| 90 | 90 | wp_enqueue_script('jquery');
|
| 91 | 91 | |
| 92 | - wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 92 | + wp_enqueue_script('geodirectory-jquery-ui-timepicker-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.ui.timepicker.js', array('jquery-ui-datepicker', 'jquery-ui-slider'), '', true);
|
|
| 93 | 93 | |
| 94 | - wp_register_script('chosen', geodir_plugin_url() . '/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 94 | + wp_register_script('chosen', geodir_plugin_url().'/geodirectory-assets/js/chosen.jquery.js', array('jquery'), GEODIRECTORY_VERSION);
|
|
| 95 | 95 | wp_enqueue_script('chosen');
|
| 96 | 96 | |
| 97 | - wp_register_script('geodirectory-choose-ajax', geodir_plugin_url() . '/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 97 | + wp_register_script('geodirectory-choose-ajax', geodir_plugin_url().'/geodirectory-assets/js/ajax-chosen.js', array(), GEODIRECTORY_VERSION);
|
|
| 98 | 98 | wp_enqueue_script('geodirectory-choose-ajax');
|
| 99 | 99 | |
| 100 | 100 | if (isset($_REQUEST['listing_type'])) {
|
| 101 | - wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url() . '/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 101 | + wp_register_script('geodirectory-custom-fields-script', geodir_plugin_url().'/geodirectory-assets/js/custom_fields.js', array(), GEODIRECTORY_VERSION);
|
|
| 102 | 102 | } |
| 103 | 103 | |
| 104 | 104 | wp_enqueue_script('geodirectory-custom-fields-script');
|
| 105 | - $plugin_path = geodir_plugin_url() . '/geodirectory-functions/cat-meta-functions'; |
|
| 105 | + $plugin_path = geodir_plugin_url().'/geodirectory-functions/cat-meta-functions'; |
|
| 106 | 106 | |
| 107 | - wp_enqueue_script('tax-meta-clss', $plugin_path . '/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 107 | + wp_enqueue_script('tax-meta-clss', $plugin_path.'/js/tax-meta-clss.js', array('jquery'), null, true);
|
|
| 108 | 108 | |
| 109 | 109 | if (in_array($geodir_map_name, array('auto', 'google'))) {
|
| 110 | - $map_lang = "&language=" . geodir_get_map_default_language(); |
|
| 111 | - $map_key = "&key=" . geodir_get_map_api_key(); |
|
| 110 | + $map_lang = "&language=".geodir_get_map_default_language(); |
|
| 111 | + $map_key = "&key=".geodir_get_map_api_key(); |
|
| 112 | 112 | /** This filter is documented in geodirectory_template_tags.php */ |
| 113 | 113 | $map_extra = apply_filters('geodir_googlemap_script_extra', '');
|
| 114 | - wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?' . $map_lang . $map_key . $map_extra, '', NULL);
|
|
| 114 | + wp_enqueue_script('geodirectory-googlemap-script', 'https://maps.google.com/maps/api/js?'.$map_lang.$map_key.$map_extra, '', NULL);
|
|
| 115 | 115 | } |
| 116 | 116 | |
| 117 | 117 | if ($geodir_map_name == 'osm') {
|
| 118 | 118 | // Leaflet OpenStreetMap |
| 119 | - wp_register_style('geodirectory-leaflet-style', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 119 | + wp_register_style('geodirectory-leaflet-style', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.css', array(), GEODIRECTORY_VERSION);
|
|
| 120 | 120 | wp_enqueue_style('geodirectory-leaflet-style');
|
| 121 | 121 | |
| 122 | - wp_register_script('geodirectory-leaflet-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 122 | + wp_register_script('geodirectory-leaflet-script', geodir_plugin_url().'/geodirectory-assets/leaflet/leaflet.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 123 | 123 | wp_enqueue_script('geodirectory-leaflet-script');
|
| 124 | 124 | |
| 125 | - wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url() . '/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 125 | + wp_register_script('geodirectory-leaflet-geo-script', geodir_plugin_url().'/geodirectory-assets/leaflet/osm.geocode.js', array('geodirectory-leaflet-script'), GEODIRECTORY_VERSION);
|
|
| 126 | 126 | wp_enqueue_script('geodirectory-leaflet-geo-script');
|
| 127 | 127 | } |
| 128 | - wp_enqueue_script( 'jquery-ui-autocomplete' ); |
|
| 128 | + wp_enqueue_script('jquery-ui-autocomplete');
|
|
| 129 | 129 | |
| 130 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION,true);
|
|
| 130 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.min.js', array(), GEODIRECTORY_VERSION, true);
|
|
| 131 | 131 | wp_enqueue_script('geodirectory-goMap-script');
|
| 132 | 132 | |
| 133 | - wp_register_script('geodirectory-goMap-script', geodir_plugin_url() . '/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 133 | + wp_register_script('geodirectory-goMap-script', geodir_plugin_url().'/geodirectory-assets/js/goMap.js', array(), GEODIRECTORY_VERSION);
|
|
| 134 | 134 | wp_enqueue_script('geodirectory-goMap-script');
|
| 135 | 135 | |
| 136 | 136 | // font awesome rating script |
| 137 | 137 | if (get_option('geodir_reviewrating_enable_font_awesome')) {
|
| 138 | - wp_register_script('geodir-barrating-js', geodir_plugin_url() . '/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 138 | + wp_register_script('geodir-barrating-js', geodir_plugin_url().'/geodirectory-assets/js/jquery.barrating.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 139 | 139 | wp_enqueue_script('geodir-barrating-js');
|
| 140 | 140 | } else { // default rating script
|
| 141 | - wp_register_script('geodir-jRating-js', geodir_plugin_url() . '/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
|
|
| 141 | + wp_register_script('geodir-jRating-js', geodir_plugin_url().'/geodirectory-assets/js/jRating.jquery.js', array(), GEODIRECTORY_VERSION);
|
|
| 142 | 142 | wp_enqueue_script('geodir-jRating-js');
|
| 143 | 143 | } |
| 144 | 144 | |
| 145 | - wp_register_script('geodir-on-document-load', geodir_plugin_url() . '/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 145 | + wp_register_script('geodir-on-document-load', geodir_plugin_url().'/geodirectory-assets/js/on_document_load.min.js', array(), GEODIRECTORY_VERSION);
|
|
| 146 | 146 | wp_enqueue_script('geodir-on-document-load');
|
| 147 | 147 | |
| 148 | 148 | |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | wp_enqueue_script('plupload-all');
|
| 151 | 151 | wp_enqueue_script('jquery-ui-sortable');
|
| 152 | 152 | |
| 153 | - wp_register_script('geodirectory-plupload-script', geodir_plugin_url() . '/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 153 | + wp_register_script('geodirectory-plupload-script', geodir_plugin_url().'/geodirectory-assets/js/geodirectory-plupload.js', array(), GEODIRECTORY_VERSION);
|
|
| 154 | 154 | wp_enqueue_script('geodirectory-plupload-script');
|
| 155 | 155 | |
| 156 | 156 | // SCRIPT FOR UPLOAD END |
@@ -204,7 +204,7 @@ discard block |
||
| 204 | 204 | wp_localize_script('geodirectory-custom-fields-script', 'geodir_admin_ajax', $ajax_cons_data);
|
| 205 | 205 | |
| 206 | 206 | |
| 207 | - wp_register_script('geodirectory-admin-script', geodir_plugin_url() . '/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 207 | + wp_register_script('geodirectory-admin-script', geodir_plugin_url().'/geodirectory-assets/js/admin.js', array(), GEODIRECTORY_VERSION);
|
|
| 208 | 208 | wp_enqueue_script('geodirectory-admin-script');
|
| 209 | 209 | |
| 210 | 210 | wp_enqueue_style('farbtastic');
|
@@ -212,10 +212,10 @@ discard block |
||
| 212 | 212 | |
| 213 | 213 | $screen = get_current_screen(); |
| 214 | 214 | if ($screen->base == 'post' && in_array($screen->post_type, geodir_get_posttypes())) {
|
| 215 | - wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url() . '/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 215 | + wp_enqueue_script('geodirectory-listing-validation-script', geodir_plugin_url().'/geodirectory-assets/js/listing_validation_admin.js');
|
|
| 216 | 216 | } |
| 217 | 217 | |
| 218 | - $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl') . '?geodir_ajax=true')));
|
|
| 218 | + $ajax_cons_data = array('url' => esc_url(__(get_option('siteurl').'?geodir_ajax=true')));
|
|
| 219 | 219 | wp_localize_script('geodirectory-admin-script', 'geodir_ajax', $ajax_cons_data);
|
| 220 | 220 | |
| 221 | 221 | } |
@@ -238,7 +238,7 @@ discard block |
||
| 238 | 238 | |
| 239 | 239 | if (current_user_can('manage_options')) $menu[] = array('', 'read', 'separator-geodirectory', '', 'wp-menu-separator geodirectory');
|
| 240 | 240 | |
| 241 | - add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url() . '/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 241 | + add_menu_page(__('Geodirectory', 'geodirectory'), __('Geodirectory', 'geodirectory'), 'manage_options', 'geodirectory', 'geodir_admin_panel', geodir_plugin_url().'/geodirectory-assets/images/favicon.ico', '55.1984');
|
|
| 242 | 242 | |
| 243 | 243 | |
| 244 | 244 | } |
@@ -272,7 +272,7 @@ discard block |
||
| 272 | 272 | $geodir_menu_order[] = 'separator-geodirectory'; |
| 273 | 273 | if (!empty($post_types)) {
|
| 274 | 274 | foreach ($post_types as $post_type) {
|
| 275 | - $geodir_menu_order[] = 'edit.php?post_type=' . $post_type; |
|
| 275 | + $geodir_menu_order[] = 'edit.php?post_type='.$post_type; |
|
| 276 | 276 | } |
| 277 | 277 | } |
| 278 | 278 | $geodir_menu_order[] = $item; |
@@ -315,8 +315,8 @@ discard block |
||
| 315 | 315 | {
|
| 316 | 316 | if (isset($_REQUEST['installed']) && $_REQUEST['installed'] != '') {
|
| 317 | 317 | echo '<div id="message" class="updated fade"> |
| 318 | - <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory') . ' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">' . __('Support us by leaving a rating!', 'geodirectory') . '</a></p>
|
|
| 319 | - <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory') . '</strong></p>
|
|
| 318 | + <p style="float:right;">' . __('Like Geodirectory?', 'geodirectory').' <a href="http://wordpress.org/extend/plugins/Geodirectory/" target="_blank">'.__('Support us by leaving a rating!', 'geodirectory').'</a></p>
|
|
| 319 | + <p><strong>' . __('Geodirectory has been installed and setup. Enjoy :)', 'geodirectory').'</strong></p>
|
|
| 320 | 320 | </div>'; |
| 321 | 321 | |
| 322 | 322 | } |
@@ -324,7 +324,7 @@ discard block |
||
| 324 | 324 | if (isset($_REQUEST['msg']) && $_REQUEST['msg'] != '') {
|
| 325 | 325 | switch ($_REQUEST['msg']) {
|
| 326 | 326 | case 'success': |
| 327 | - echo '<div id="message" class="updated fade"><p><strong>' . __('Your settings have been saved.', 'geodirectory') . '</strong></p></div>';
|
|
| 327 | + echo '<div id="message" class="updated fade"><p><strong>'.__('Your settings have been saved.', 'geodirectory').'</strong></p></div>';
|
|
| 328 | 328 | flush_rewrite_rules(false); |
| 329 | 329 | |
| 330 | 330 | break; |
@@ -332,30 +332,30 @@ discard block |
||
| 332 | 332 | $gderr = isset($_REQUEST['gderr']) ? $_REQUEST['gderr'] : ''; |
| 333 | 333 | |
| 334 | 334 | if ($gderr == 21) |
| 335 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 335 | + echo '<div id="message" class="error fade"><p><strong>'.__('Error: You can not add same permalinks for both Listing and Location, please try again.', 'geodirectory').'</strong></p></div>';
|
|
| 336 | 336 | else |
| 337 | - echo '<div id="message" class="error fade"><p><strong>' . __('Error: Your settings have not been saved, please try again.', 'geodirectory') . '</strong></p></div>';
|
|
| 337 | + echo '<div id="message" class="error fade"><p><strong>'.__('Error: Your settings have not been saved, please try again.', 'geodirectory').'</strong></p></div>';
|
|
| 338 | 338 | break; |
| 339 | 339 | } |
| 340 | 340 | } |
| 341 | 341 | |
| 342 | 342 | $geodir_load_map = get_option('geodir_load_map');
|
| 343 | 343 | $need_map_key = false; |
| 344 | - if($geodir_load_map=='' || $geodir_load_map=='google' || $geodir_load_map=='auto' ){
|
|
| 344 | + if ($geodir_load_map == '' || $geodir_load_map == 'google' || $geodir_load_map == 'auto') {
|
|
| 345 | 345 | $need_map_key = true; |
| 346 | 346 | } |
| 347 | 347 | |
| 348 | 348 | if (!geodir_get_map_api_key() && $need_map_key) {
|
| 349 | - echo '<div class="error"><p><strong>' . sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 349 | + echo '<div class="error"><p><strong>'.sprintf(__('Google Maps API KEY not set, %sclick here%s to set one OR use Open Street Maps instead.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=design_settings&active_tab=geodir_map_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 350 | 350 | } |
| 351 | 351 | |
| 352 | 352 | if (!geodir_is_default_location_set()) {
|
| 353 | - echo '<div class="updated fade"><p><strong>' . sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\'' . admin_url('admin.php?page=geodirectory&tab=default_location_settings') . '\'>', '</a>') . '</strong></p></div>';
|
|
| 353 | + echo '<div class="updated fade"><p><strong>'.sprintf(__('Please %sclick here%s to set a default location, this will make the plugin work properly.', 'geodirectory'), '<a href=\''.admin_url('admin.php?page=geodirectory&tab=default_location_settings').'\'>', '</a>').'</strong></p></div>';
|
|
| 354 | 354 | |
| 355 | 355 | } |
| 356 | 356 | |
| 357 | 357 | if (!function_exists('curl_init')) {
|
| 358 | - echo '<div class="error"><p><strong>' . __('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory') . '</strong></p></div>';
|
|
| 358 | + echo '<div class="error"><p><strong>'.__('CURL is not installed on this server, this can cause problems, please ask your server admin to install it.', 'geodirectory').'</strong></p></div>';
|
|
| 359 | 359 | |
| 360 | 360 | } |
| 361 | 361 | |
@@ -375,18 +375,18 @@ discard block |
||
| 375 | 375 | function geodir_handle_option_form_submit($current_tab) |
| 376 | 376 | {
|
| 377 | 377 | global $geodir_settings; |
| 378 | - if (file_exists(dirname(__FILE__) . '/option-pages/' . $current_tab . '_array.php')) {
|
|
| 378 | + if (file_exists(dirname(__FILE__).'/option-pages/'.$current_tab.'_array.php')) {
|
|
| 379 | 379 | /** |
| 380 | 380 | * Contains settings array for current tab. |
| 381 | 381 | * |
| 382 | 382 | * @since 1.0.0 |
| 383 | 383 | * @package GeoDirectory |
| 384 | 384 | */ |
| 385 | - include_once('option-pages/' . $current_tab . '_array.php');
|
|
| 385 | + include_once('option-pages/'.$current_tab.'_array.php');
|
|
| 386 | 386 | } |
| 387 | 387 | if (isset($_POST) && $_POST && isset($_REQUEST['page']) && $_REQUEST['page'] == 'geodirectory') : |
| 388 | 388 | if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'geodir-settings')) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
| 389 | - if (!wp_verify_nonce($_REQUEST['_wpnonce-' . $current_tab], 'geodir-settings-' . $current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 389 | + if (!wp_verify_nonce($_REQUEST['_wpnonce-'.$current_tab], 'geodir-settings-'.$current_tab)) die(__('Action failed. Please refresh the page and retry.', 'geodirectory'));
|
|
| 390 | 390 | |
| 391 | 391 | /** |
| 392 | 392 | * Fires before updating geodirectory admin settings. |
@@ -419,13 +419,13 @@ discard block |
||
| 419 | 419 | * @param string $current_tab The current settings tab name. |
| 420 | 420 | * @param array $geodir_settings[$current_tab] The array of settings for the current settings tab. |
| 421 | 421 | */ |
| 422 | - do_action('geodir_update_options_' . $current_tab, $geodir_settings[$current_tab]);
|
|
| 422 | + do_action('geodir_update_options_'.$current_tab, $geodir_settings[$current_tab]);
|
|
| 423 | 423 | |
| 424 | 424 | flush_rewrite_rules(false); |
| 425 | 425 | |
| 426 | 426 | $current_tab = isset($_REQUEST['tab']) ? $_REQUEST['tab'] : ''; |
| 427 | 427 | |
| 428 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $_REQUEST['active_tab'] . '&msg=success');
|
|
| 428 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$_REQUEST['active_tab'].'&msg=success');
|
|
| 429 | 429 | |
| 430 | 430 | wp_redirect($redirect_url); |
| 431 | 431 | exit(); |
@@ -464,18 +464,18 @@ discard block |
||
| 464 | 464 | |
| 465 | 465 | elseif (isset($value['type']) && $value['type'] == 'image_width') : |
| 466 | 466 | |
| 467 | - if (isset($value['id']) && isset($_POST[$value['id'] . '_width'])) {
|
|
| 468 | - update_option($value['id'] . '_width', $_POST[$value['id'] . '_width']); |
|
| 469 | - update_option($value['id'] . '_height', $_POST[$value['id'] . '_height']); |
|
| 470 | - if (isset($_POST[$value['id'] . '_crop'])) : |
|
| 471 | - update_option($value['id'] . '_crop', 1); |
|
| 467 | + if (isset($value['id']) && isset($_POST[$value['id'].'_width'])) {
|
|
| 468 | + update_option($value['id'].'_width', $_POST[$value['id'].'_width']); |
|
| 469 | + update_option($value['id'].'_height', $_POST[$value['id'].'_height']); |
|
| 470 | + if (isset($_POST[$value['id'].'_crop'])) : |
|
| 471 | + update_option($value['id'].'_crop', 1); |
|
| 472 | 472 | else : |
| 473 | - update_option($value['id'] . '_crop', 0); |
|
| 473 | + update_option($value['id'].'_crop', 0); |
|
| 474 | 474 | endif; |
| 475 | 475 | } else {
|
| 476 | - update_option($value['id'] . '_width', $value['std']); |
|
| 477 | - update_option($value['id'] . '_height', $value['std']); |
|
| 478 | - update_option($value['id'] . '_crop', 1); |
|
| 476 | + update_option($value['id'].'_width', $value['std']); |
|
| 477 | + update_option($value['id'].'_height', $value['std']); |
|
| 478 | + update_option($value['id'].'_crop', 1); |
|
| 479 | 479 | } |
| 480 | 480 | |
| 481 | 481 | elseif (isset($value['type']) && $value['type'] == 'map') : |
@@ -517,12 +517,12 @@ discard block |
||
| 517 | 517 | elseif (isset($value['type']) && $value['type'] == 'file') : |
| 518 | 518 | |
| 519 | 519 | |
| 520 | - if (isset($_POST[$value['id'] . '_remove']) && $_POST[$value['id'] . '_remove']) {// if remove is set then remove the file
|
|
| 520 | + if (isset($_POST[$value['id'].'_remove']) && $_POST[$value['id'].'_remove']) {// if remove is set then remove the file
|
|
| 521 | 521 | |
| 522 | 522 | if (get_option($value['id'])) {
|
| 523 | 523 | $image_name_arr = explode('/', get_option($value['id']));
|
| 524 | 524 | $noimg_name = end($image_name_arr); |
| 525 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 525 | + $img_path = $uploads['path'].'/'.$noimg_name; |
|
| 526 | 526 | if (file_exists($img_path)) |
| 527 | 527 | unlink($img_path); |
| 528 | 528 | } |
@@ -550,7 +550,7 @@ discard block |
||
| 550 | 550 | if (get_option($value['id'])) {
|
| 551 | 551 | $image_name_arr = explode('/', get_option($value['id']));
|
| 552 | 552 | $noimg_name = end($image_name_arr); |
| 553 | - $img_path = $uploads['path'] . '/' . $noimg_name; |
|
| 553 | + $img_path = $uploads['path'].'/'.$noimg_name; |
|
| 554 | 554 | if (file_exists($img_path)) |
| 555 | 555 | unlink($img_path); |
| 556 | 556 | } |
@@ -571,7 +571,7 @@ discard block |
||
| 571 | 571 | // same menu setting per theme. |
| 572 | 572 | if (isset($value['id']) && $value['id'] == 'geodir_theme_location_nav' && isset($_POST[$value['id']])) {
|
| 573 | 573 | $theme = wp_get_theme(); |
| 574 | - update_option('geodir_theme_location_nav_' . $theme->name, $_POST[$value['id']]);
|
|
| 574 | + update_option('geodir_theme_location_nav_'.$theme->name, $_POST[$value['id']]);
|
|
| 575 | 575 | } |
| 576 | 576 | |
| 577 | 577 | if (isset($value['id']) && isset($_POST[$value['id']])) {
|
@@ -641,7 +641,7 @@ discard block |
||
| 641 | 641 | |
| 642 | 642 | $listing_slug = __($geodir_posttype_info['labels']['singular_name'], 'geodirectory'); |
| 643 | 643 | |
| 644 | - $tabs[$geodir_post_type . '_fields_settings'] = array( |
|
| 644 | + $tabs[$geodir_post_type.'_fields_settings'] = array( |
|
| 645 | 645 | 'label' => wp_sprintf(__('%s Settings', 'geodirectory'), $listing_slug),
|
| 646 | 646 | 'subtabs' => array( |
| 647 | 647 | array('subtab' => 'custom_fields',
|
@@ -675,7 +675,7 @@ discard block |
||
| 675 | 675 | */ |
| 676 | 676 | function geodir_tools_setting_tab($tabs) |
| 677 | 677 | {
|
| 678 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 678 | + wp_enqueue_script('jquery-ui-progressbar');
|
|
| 679 | 679 | $tabs['tools_settings'] = array('label' => __('GD Tools', 'geodirectory'));
|
| 680 | 680 | return $tabs; |
| 681 | 681 | } |
@@ -709,7 +709,7 @@ discard block |
||
| 709 | 709 | */ |
| 710 | 710 | function geodir_extend_geodirectory_setting_tab($tabs) |
| 711 | 711 | {
|
| 712 | - $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory'). ' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 712 | + $tabs['extend_geodirectory_settings'] = array('label' => __('Extend Geodirectory', 'geodirectory').' <i class="fa fa-plug"></i>', 'url' => 'https://wpgeodirectory.com', 'target' => '_blank');
|
|
| 713 | 713 | return $tabs; |
| 714 | 714 | } |
| 715 | 715 | |
@@ -769,8 +769,8 @@ discard block |
||
| 769 | 769 | _e('Unknown', 'geodirectory');
|
| 770 | 770 | } else {
|
| 771 | 771 | /* If there is a city id, append 'city name' to the text string. */ |
| 772 | - $add_location_id = $location_id > 0 ? ' (' . $location_id . ')' : '';
|
|
| 773 | - echo(__($location->country, 'geodirectory') . '-' . $location->region . '-' . $location->city . $add_location_id); |
|
| 772 | + $add_location_id = $location_id > 0 ? ' ('.$location_id.')' : '';
|
|
| 773 | + echo(__($location->country, 'geodirectory').'-'.$location->region.'-'.$location->city.$add_location_id); |
|
| 774 | 774 | } |
| 775 | 775 | break; |
| 776 | 776 | |
@@ -788,14 +788,14 @@ discard block |
||
| 788 | 788 | $expire_class = 'expire_over'; |
| 789 | 789 | } |
| 790 | 790 | $date_diff = round(abs(strtotime($d1) - strtotime($d2)) / 86400); // get the difference in days |
| 791 | - $date_diff_text = '<br /><span class="' . $expire_class . '">(' . $date_diff . ' ' . $state . ')</span>';
|
|
| 791 | + $date_diff_text = '<br /><span class="'.$expire_class.'">('.$date_diff.' '.$state.')</span>';
|
|
| 792 | 792 | } |
| 793 | 793 | /* If no expire_date is found, output a default message. */ |
| 794 | 794 | if (empty($expire_date)) |
| 795 | 795 | echo __('Unknown', 'geodirectory');
|
| 796 | 796 | /* If there is a expire_date, append 'days left' to the text string. */ |
| 797 | 797 | else |
| 798 | - echo $expire_date . $date_diff_text; |
|
| 798 | + echo $expire_date.$date_diff_text; |
|
| 799 | 799 | break; |
| 800 | 800 | |
| 801 | 801 | /* If displaying the 'categorys' column. */ |
@@ -862,7 +862,7 @@ discard block |
||
| 862 | 862 | function geodir_post_information_save($post_id, $post) {
|
| 863 | 863 | global $wpdb, $current_user; |
| 864 | 864 | |
| 865 | - if (isset($post->post_type) && ($post->post_type=='nav_menu_item' || $post->post_type=='page' || $post->post_type=='post')) {
|
|
| 865 | + if (isset($post->post_type) && ($post->post_type == 'nav_menu_item' || $post->post_type == 'page' || $post->post_type == 'post')) {
|
|
| 866 | 866 | return; |
| 867 | 867 | } |
| 868 | 868 | |
@@ -930,7 +930,7 @@ discard block |
||
| 930 | 930 | $tab_id = $value['id']; |
| 931 | 931 | |
| 932 | 932 | if (isset($value['desc']) && $value['desc']) |
| 933 | - $desc = '<span style=" text-transform:none;">:- ' . $value['desc'] . '</span>'; |
|
| 933 | + $desc = '<span style=" text-transform:none;">:- '.$value['desc'].'</span>'; |
|
| 934 | 934 | |
| 935 | 935 | if (isset($value['name']) && $value['name']) {
|
| 936 | 936 | if ($first_title === true) {
|
@@ -938,9 +938,9 @@ discard block |
||
| 938 | 938 | } else {
|
| 939 | 939 | echo '</div>'; |
| 940 | 940 | } |
| 941 | - echo '<dd id="' . trim($tab_id) . '" class="geodir_option_tabs" ><a href="javascript:void(0);">' . $value['name'] . '</a></dd>'; |
|
| 941 | + echo '<dd id="'.trim($tab_id).'" class="geodir_option_tabs" ><a href="javascript:void(0);">'.$value['name'].'</a></dd>'; |
|
| 942 | 942 | |
| 943 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 943 | + echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 944 | 944 | } |
| 945 | 945 | |
| 946 | 946 | /** |
@@ -950,21 +950,21 @@ discard block |
||
| 950 | 950 | * |
| 951 | 951 | * @since 1.0.0 |
| 952 | 952 | */ |
| 953 | - do_action('geodir_settings_' . sanitize_title($value['id']));
|
|
| 953 | + do_action('geodir_settings_'.sanitize_title($value['id']));
|
|
| 954 | 954 | break; |
| 955 | 955 | |
| 956 | 956 | case 'no_tabs': |
| 957 | 957 | |
| 958 | 958 | echo '<div class="inner_content_tab_main">'; |
| 959 | - echo '<div id="sub_' . trim($tab_id) . '" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 959 | + echo '<div id="sub_'.trim($tab_id).'" class="gd-content-heading" style=" margin-bottom:10px;" >'; |
|
| 960 | 960 | |
| 961 | 961 | break; |
| 962 | 962 | |
| 963 | 963 | case 'sectionstart': |
| 964 | 964 | if (isset($value['desc']) && $value['desc']) |
| 965 | - $desc = '<span style=" text-transform:none;"> - ' . $value['desc'] . '</span>'; |
|
| 965 | + $desc = '<span style=" text-transform:none;"> - '.$value['desc'].'</span>'; |
|
| 966 | 966 | if (isset($value['name']) && $value['name']) |
| 967 | - echo '<h3>' . $value['name'] . $desc . '</h3>'; |
|
| 967 | + echo '<h3>'.$value['name'].$desc.'</h3>'; |
|
| 968 | 968 | /** |
| 969 | 969 | * Called after a GeoDirectory settings sectionstart is output in the GD settings page. |
| 970 | 970 | * |
@@ -972,8 +972,8 @@ discard block |
||
| 972 | 972 | * |
| 973 | 973 | * @since 1.0.0 |
| 974 | 974 | */ |
| 975 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_start');
|
|
| 976 | - echo '<table class="form-table">' . "\n\n"; |
|
| 975 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_start');
|
|
| 976 | + echo '<table class="form-table">'."\n\n"; |
|
| 977 | 977 | |
| 978 | 978 | break; |
| 979 | 979 | case 'sectionend': |
@@ -984,7 +984,7 @@ discard block |
||
| 984 | 984 | * |
| 985 | 985 | * @since 1.0.0 |
| 986 | 986 | */ |
| 987 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_end');
|
|
| 987 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_end');
|
|
| 988 | 988 | echo '</table>'; |
| 989 | 989 | /** |
| 990 | 990 | * Called after a GeoDirectory settings sectionend is output in the GD settings page. |
@@ -993,7 +993,7 @@ discard block |
||
| 993 | 993 | * |
| 994 | 994 | * @since 1.0.0 |
| 995 | 995 | */ |
| 996 | - if (isset($value['id']) && $value['id']) do_action('geodir_settings_' . sanitize_title($value['id']) . '_after');
|
|
| 996 | + if (isset($value['id']) && $value['id']) do_action('geodir_settings_'.sanitize_title($value['id']).'_after');
|
|
| 997 | 997 | break; |
| 998 | 998 | case 'text': |
| 999 | 999 | ?> |
@@ -1002,7 +1002,7 @@ discard block |
||
| 1002 | 1002 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1003 | 1003 | id="<?php echo esc_attr($value['id']); ?>" |
| 1004 | 1004 | type="<?php echo esc_attr($value['type']); ?>" |
| 1005 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1005 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1006 | 1006 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1007 | 1007 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1008 | 1008 | echo esc_attr(stripslashes(get_option($value['id']))); |
@@ -1019,14 +1019,14 @@ discard block |
||
| 1019 | 1019 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1020 | 1020 | id="<?php echo esc_attr($value['id']); ?>" |
| 1021 | 1021 | type="<?php echo esc_attr($value['type']); ?>" |
| 1022 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1022 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1023 | 1023 | style=" <?php echo esc_attr($value['css']); ?>" |
| 1024 | 1024 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1025 | 1025 | echo esc_attr(stripslashes(get_option($value['id']))); |
| 1026 | 1026 | } else {
|
| 1027 | 1027 | echo esc_attr($value['std']); |
| 1028 | 1028 | } ?>"/> |
| 1029 | - <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )','geodirectory');?>" ><?php _e('Generate API Key','geodirectory');?></a>
|
|
| 1029 | + <a href='https://console.developers.google.com/henhouse/?pb=["hh-1","maps_backend",null,[],"https://developers.google.com",null,["static_maps_backend","street_view_image_backend","maps_embed_backend","places_backend","geocoding_backend","directions_backend","distance_matrix_backend","geolocation","elevation_backend","timezone_backend","maps_backend"],null]&TB_iframe=true&width=600&height=400' class="thickbox button-primary" name="<?php _e('Generate API Key - ( MUST be logged in to your Google account )', 'geodirectory'); ?>" ><?php _e('Generate API Key', 'geodirectory'); ?></a>
|
|
| 1030 | 1030 | <span class="description"><?php echo $value['desc']; ?></span></td> |
| 1031 | 1031 | </tr><?php |
| 1032 | 1032 | break; |
@@ -1038,7 +1038,7 @@ discard block |
||
| 1038 | 1038 | <td class="forminp"><input name="<?php echo esc_attr($value['id']); ?>" |
| 1039 | 1039 | id="<?php echo esc_attr($value['id']); ?>" |
| 1040 | 1040 | type="<?php echo esc_attr($value['type']); ?>" |
| 1041 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1041 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1042 | 1042 | style="<?php echo esc_attr($value['css']); ?>" |
| 1043 | 1043 | value="<?php if (get_option($value['id']) !== false && get_option($value['id']) !== null) {
|
| 1044 | 1044 | echo esc_attr(stripslashes(get_option($value['id']))); |
@@ -1084,17 +1084,17 @@ discard block |
||
| 1084 | 1084 | <?php _e('Width', 'geodirectory'); ?> <input
|
| 1085 | 1085 | name="<?php echo esc_attr($value['id']); ?>_width" |
| 1086 | 1086 | id="<?php echo esc_attr($value['id']); ?>_width" type="text" size="3" |
| 1087 | - value="<?php if ($size = get_option($value['id'] . '_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1087 | + value="<?php if ($size = get_option($value['id'].'_width')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1088 | 1088 | |
| 1089 | 1089 | <?php _e('Height', 'geodirectory'); ?> <input
|
| 1090 | 1090 | name="<?php echo esc_attr($value['id']); ?>_height" |
| 1091 | 1091 | id="<?php echo esc_attr($value['id']); ?>_height" type="text" size="3" |
| 1092 | - value="<?php if ($size = get_option($value['id'] . '_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1092 | + value="<?php if ($size = get_option($value['id'].'_height')) echo stripslashes($size); else echo $value['std']; ?>"/> |
|
| 1093 | 1093 | |
| 1094 | 1094 | <label><?php _e('Hard Crop', 'geodirectory'); ?> <input
|
| 1095 | 1095 | name="<?php echo esc_attr($value['id']); ?>_crop" |
| 1096 | 1096 | id="<?php echo esc_attr($value['id']); ?>_crop" |
| 1097 | - type="checkbox" <?php if (get_option($value['id'] . '_crop') != '') checked(get_option($value['id'] . '_crop'), 1); else checked(1); ?> /></label> |
|
| 1097 | + type="checkbox" <?php if (get_option($value['id'].'_crop') != '') checked(get_option($value['id'].'_crop'), 1); else checked(1); ?> /></label> |
|
| 1098 | 1098 | |
| 1099 | 1099 | <span class="description"><?php echo $value['desc'] ?></span></td> |
| 1100 | 1100 | </tr><?php |
@@ -1144,7 +1144,7 @@ discard block |
||
| 1144 | 1144 | id="<?php echo esc_attr($value['id']); ?>" |
| 1145 | 1145 | style="<?php echo esc_attr($value['css']); ?>" |
| 1146 | 1146 | class="<?php if (isset($value['class'])) echo $value['class']; ?>" |
| 1147 | - data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text'];?>" |
|
| 1147 | + data-placeholder="<?php if (isset($value['placeholder_text'])) echo $value['placeholder_text']; ?>" |
|
| 1148 | 1148 | option-ajaxchosen="false"> |
| 1149 | 1149 | <?php |
| 1150 | 1150 | foreach ($value['options'] as $key => $val) {
|
@@ -1155,7 +1155,7 @@ discard block |
||
| 1155 | 1155 | } else {
|
| 1156 | 1156 | ?> |
| 1157 | 1157 | <option |
| 1158 | - value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values)));?>><?php echo ucfirst($val) ?></option> |
|
| 1158 | + value="<?php echo esc_attr($key); ?>" <?php selected(true, (is_array($option_values) && in_array($key, $option_values))); ?>><?php echo ucfirst($val) ?></option> |
|
| 1159 | 1159 | <?php |
| 1160 | 1160 | } |
| 1161 | 1161 | } |
@@ -1190,7 +1190,7 @@ discard block |
||
| 1190 | 1190 | ?> |
| 1191 | 1191 | |
| 1192 | 1192 | <tr valign="top"> |
| 1193 | - <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory');?></th>
|
|
| 1193 | + <th class="titledesc" width="40%"><?php _e('Default map language', 'geodirectory'); ?></th>
|
|
| 1194 | 1194 | <td width="60%"> |
| 1195 | 1195 | <select name="geodir_default_map_language" style="width:60%"> |
| 1196 | 1196 | <?php |
@@ -1272,7 +1272,7 @@ discard block |
||
| 1272 | 1272 | |
| 1273 | 1273 | <tr valign="top"> |
| 1274 | 1274 | <th class="titledesc" |
| 1275 | - width="40%"><?php _e('Default post type search on map', 'geodirectory');?></th>
|
|
| 1275 | + width="40%"><?php _e('Default post type search on map', 'geodirectory'); ?></th>
|
|
| 1276 | 1276 | <td width="60%"> |
| 1277 | 1277 | <select name="geodir_default_map_search_pt" style="width:60%"> |
| 1278 | 1278 | <?php |
@@ -1313,7 +1313,7 @@ discard block |
||
| 1313 | 1313 | $cat_display = 'checkbox'; |
| 1314 | 1314 | $gd_post_types = get_option('geodir_exclude_post_type_on_map');
|
| 1315 | 1315 | $gd_cats = get_option('geodir_exclude_cat_on_map');
|
| 1316 | - $gd_cats_upgrade = (int)get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1316 | + $gd_cats_upgrade = (int) get_option('geodir_exclude_cat_on_map_upgrade');
|
|
| 1317 | 1317 | $count = 1; |
| 1318 | 1318 | ?> |
| 1319 | 1319 | <table width="70%" class="widefat"> |
@@ -1342,7 +1342,7 @@ discard block |
||
| 1342 | 1342 | name="home_map_post_types[]" |
| 1343 | 1343 | id="<?php echo esc_attr($value['id']); ?>" |
| 1344 | 1344 | value="<?php echo $key; ?>" |
| 1345 | - class="map_post_type" <?php echo $checked;?> /> |
|
| 1345 | + class="map_post_type" <?php echo $checked; ?> /> |
|
| 1346 | 1346 | <?php echo __($post_types_obj->labels->singular_name, 'geodirectory'); ?></td> |
| 1347 | 1347 | <td width="40%"> |
| 1348 | 1348 | <div class="home_map_category" style="overflow:auto;width:200px;height:100px;" |
@@ -1400,12 +1400,12 @@ discard block |
||
| 1400 | 1400 | ?> |
| 1401 | 1401 | <fieldset> |
| 1402 | 1402 | <legend class="screen-reader-text"><span><?php echo $value['name'] ?></span></legend> |
| 1403 | - <label for="<?php echo $value['id'];?>"> |
|
| 1403 | + <label for="<?php echo $value['id']; ?>"> |
|
| 1404 | 1404 | <input name="<?php echo esc_attr($value['id']); ?>" |
| 1405 | - id="<?php echo esc_attr($value['id'] . $value['value']); ?>" type="radio" |
|
| 1405 | + id="<?php echo esc_attr($value['id'].$value['value']); ?>" type="radio" |
|
| 1406 | 1406 | value="<?php echo $value['value'] ?>" <?php if (get_option($value['id']) == $value['value']) {
|
| 1407 | 1407 | echo 'checked="checked"'; |
| 1408 | - }elseif(get_option($value['id'])=='' && $value['std']==$value['value']){echo 'checked="checked"';} ?> />
|
|
| 1408 | + }elseif (get_option($value['id']) == '' && $value['std'] == $value['value']) {echo 'checked="checked"'; } ?> />
|
|
| 1409 | 1409 | <?php echo $value['desc']; ?></label><br> |
| 1410 | 1410 | </fieldset> |
| 1411 | 1411 | <?php |
@@ -1425,9 +1425,9 @@ discard block |
||
| 1425 | 1425 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1426 | 1426 | <td class="forminp"> |
| 1427 | 1427 | <textarea |
| 1428 | - <?php if (isset($value['args'])) echo $value['args'] . ' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1428 | + <?php if (isset($value['args'])) echo $value['args'].' '; ?>name="<?php echo esc_attr($value['id']); ?>" |
|
| 1429 | 1429 | id="<?php echo esc_attr($value['id']); ?>" |
| 1430 | - <?php if(isset($value['placeholder'])){?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1430 | + <?php if (isset($value['placeholder'])) {?>placeholder="<?php echo esc_attr($value['placeholder']); ?>"<?php }?>
|
|
| 1431 | 1431 | style="<?php echo esc_attr($value['css']); ?>"><?php if (get_option($value['id'])) echo esc_textarea(stripslashes(get_option($value['id']))); else echo esc_textarea($value['std']); ?></textarea><span |
| 1432 | 1432 | class="description"><?php echo $value['desc'] ?></span> |
| 1433 | 1433 | |
@@ -1472,7 +1472,7 @@ discard block |
||
| 1472 | 1472 | } |
| 1473 | 1473 | } |
| 1474 | 1474 | // |
| 1475 | - $page_setting = (int)get_option($value['id']); |
|
| 1475 | + $page_setting = (int) get_option($value['id']); |
|
| 1476 | 1476 | |
| 1477 | 1477 | $args = array('name' => $value['id'],
|
| 1478 | 1478 | 'id' => $value['id'], |
@@ -1489,7 +1489,7 @@ discard block |
||
| 1489 | 1489 | <tr valign="top" class="single_select_page"> |
| 1490 | 1490 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
| 1491 | 1491 | <td class="forminp"> |
| 1492 | - <?php echo str_replace(' id=', " data-placeholder='" . __('Select a page...', 'geodirectory') . "' style='" . $value['css'] . "' class='" . $value['class'] . "' " . $disabled . " id=", wp_dropdown_pages($args)); ?>
|
|
| 1492 | + <?php echo str_replace(' id=', " data-placeholder='".__('Select a page...', 'geodirectory')."' style='".$value['css']."' class='".$value['class']."' ".$disabled." id=", wp_dropdown_pages($args)); ?>
|
|
| 1493 | 1493 | <span class="description"><?php echo $value['desc'] ?></span> |
| 1494 | 1494 | </td> |
| 1495 | 1495 | </tr><?php |
@@ -1498,7 +1498,7 @@ discard block |
||
| 1498 | 1498 | } |
| 1499 | 1499 | break; |
| 1500 | 1500 | case 'single_select_country' : |
| 1501 | - $country_setting = (string)get_option($value['id']); |
|
| 1501 | + $country_setting = (string) get_option($value['id']); |
|
| 1502 | 1502 | if (strstr($country_setting, ':')) : |
| 1503 | 1503 | $country = current(explode(':', $country_setting));
|
| 1504 | 1504 | $state = end(explode(':', $country_setting));
|
@@ -1521,7 +1521,7 @@ discard block |
||
| 1521 | 1521 | case 'multi_select_countries' : |
| 1522 | 1522 | $countries = $geodirectory->countries->countries; |
| 1523 | 1523 | asort($countries); |
| 1524 | - $selections = (array)get_option($value['id']); |
|
| 1524 | + $selections = (array) get_option($value['id']); |
|
| 1525 | 1525 | ?> |
| 1526 | 1526 | <tr valign="top"> |
| 1527 | 1527 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
@@ -1531,7 +1531,7 @@ discard block |
||
| 1531 | 1531 | title="Country" class="chosen_select"> |
| 1532 | 1532 | <?php |
| 1533 | 1533 | if ($countries) foreach ($countries as $key => $val) : |
| 1534 | - echo '<option value="' . $key . '" ' . selected(in_array($key, $selections), true, false) . '>' . $val . '</option>'; |
|
| 1534 | + echo '<option value="'.$key.'" '.selected(in_array($key, $selections), true, false).'>'.$val.'</option>'; |
|
| 1535 | 1535 | endforeach; |
| 1536 | 1536 | ?> |
| 1537 | 1537 | </select> |
@@ -1543,7 +1543,7 @@ discard block |
||
| 1543 | 1543 | break; |
| 1544 | 1544 | |
| 1545 | 1545 | case 'google_analytics' : |
| 1546 | - $selections = (array)get_option($value['id']); |
|
| 1546 | + $selections = (array) get_option($value['id']); |
|
| 1547 | 1547 | ?> |
| 1548 | 1548 | <tr valign="top"> |
| 1549 | 1549 | <th scope="row" class="titledesc"><?php echo $value['name'] ?></th> |
@@ -1554,30 +1554,30 @@ discard block |
||
| 1554 | 1554 | |
| 1555 | 1555 | $oAuthURL = "https://accounts.google.com/o/oauth2/auth?"; |
| 1556 | 1556 | $scope = "scope=https://www.googleapis.com/auth/analytics.readonly"; |
| 1557 | - $state = "&state=123";//any string |
|
| 1558 | - $redirect_uri = "&redirect_uri=" . admin_url('admin-ajax.php') . "?action=geodir_ga_callback";
|
|
| 1557 | + $state = "&state=123"; //any string |
|
| 1558 | + $redirect_uri = "&redirect_uri=".admin_url('admin-ajax.php')."?action=geodir_ga_callback";
|
|
| 1559 | 1559 | $response_type = "&response_type=code"; |
| 1560 | 1560 | $client_id = "&client_id=".get_option('geodir_ga_client_id');
|
| 1561 | 1561 | $access_type = "&access_type=offline"; |
| 1562 | 1562 | $approval_prompt = "&approval_prompt=force"; |
| 1563 | 1563 | |
| 1564 | - $auth_url = $oAuthURL . $scope . $state . $redirect_uri . $response_type . $client_id . $access_type . $approval_prompt; |
|
| 1564 | + $auth_url = $oAuthURL.$scope.$state.$redirect_uri.$response_type.$client_id.$access_type.$approval_prompt; |
|
| 1565 | 1565 | |
| 1566 | 1566 | |
| 1567 | 1567 | if (get_option('geodir_ga_auth_token')) {
|
| 1568 | 1568 | ?> |
| 1569 | 1569 | <span class="button-primary" |
| 1570 | - onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize');?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
|
| 1570 | + onclick="gd_GA_Deauthorize('<?php echo wp_create_nonce('gd_ga_deauthorize'); ?>');"><?php _e('Deauthorize', 'geodirectory'); ?></span>
|
|
| 1571 | 1571 | <span style="color: green; font-weight: bold;"><?php _e('Authorized', 'geodirectory'); ?></span>
|
| 1572 | 1572 | <?php |
| 1573 | 1573 | global $gd_ga_errors; |
| 1574 | - if(!empty($gd_ga_errors)){
|
|
| 1574 | + if (!empty($gd_ga_errors)) {
|
|
| 1575 | 1575 | print_r($gd_ga_errors); |
| 1576 | 1576 | } |
| 1577 | 1577 | } else {
|
| 1578 | 1578 | ?> |
| 1579 | 1579 | <span class="button-primary" |
| 1580 | - onclick="window.open('<?php echo geodir_ga_activation_url();?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory');?></span>
|
|
| 1580 | + onclick="window.open('<?php echo geodir_ga_activation_url(); ?>', 'activate','width=700, height=600, menubar=0, status=0, location=0, toolbar=0')"><?php _e('Authorize', 'geodirectory'); ?></span>
|
|
| 1581 | 1581 | <?php |
| 1582 | 1582 | } |
| 1583 | 1583 | ?> |
@@ -1648,9 +1648,9 @@ discard block |
||
| 1648 | 1648 | |
| 1649 | 1649 | <?php if (isset($_REQUEST['active_tab']) && $_REQUEST['active_tab'] != '') { ?>
|
| 1650 | 1650 | jQuery('.geodir_option_tabs').removeClass('gd-tab-active');
|
| 1651 | - jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').addClass('gd-tab-active');
|
|
| 1651 | + jQuery('#<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').addClass('gd-tab-active');
|
|
| 1652 | 1652 | jQuery('.gd-content-heading').hide();
|
| 1653 | - jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']);?>').show();
|
|
| 1653 | + jQuery('#sub_<?php echo sanitize_text_field($_REQUEST['active_tab']); ?>').show();
|
|
| 1654 | 1654 | <?php } ?> |
| 1655 | 1655 | }); |
| 1656 | 1656 | </script> |
@@ -1736,7 +1736,7 @@ discard block |
||
| 1736 | 1736 | wp_nonce_field(plugin_basename(__FILE__), 'geodir_post_attachments_noncename'); |
| 1737 | 1737 | |
| 1738 | 1738 | if (geodir_get_featured_image($post_id, 'thumbnail')) {
|
| 1739 | - echo '<h4>' . __('Featured Image', 'geodirectory') . '</h4>';
|
|
| 1739 | + echo '<h4>'.__('Featured Image', 'geodirectory').'</h4>';
|
|
| 1740 | 1740 | geodir_show_featured_image($post_id, 'thumbnail'); |
| 1741 | 1741 | } |
| 1742 | 1742 | |
@@ -1747,13 +1747,13 @@ discard block |
||
| 1747 | 1747 | |
| 1748 | 1748 | <h5 class="form_title"> |
| 1749 | 1749 | <?php if ($image_limit != 0 && $image_limit == 1) {
|
| 1750 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('image with this package', 'geodirectory') . ')</small>';
|
|
| 1750 | + echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('image with this package', 'geodirectory').')</small>';
|
|
| 1751 | 1751 | } ?> |
| 1752 | 1752 | <?php if ($image_limit != 0 && $image_limit > 1) {
|
| 1753 | - echo '<br /><small>(' . __('You can upload', 'geodirectory') . ' ' . $image_limit . ' ' . __('images with this package', 'geodirectory') . ')</small>';
|
|
| 1753 | + echo '<br /><small>('.__('You can upload', 'geodirectory').' '.$image_limit.' '.__('images with this package', 'geodirectory').')</small>';
|
|
| 1754 | 1754 | } ?> |
| 1755 | 1755 | <?php if ($image_limit == 0) {
|
| 1756 | - echo '<br /><small>(' . __('You can upload unlimited images with this package', 'geodirectory') . ')</small>';
|
|
| 1756 | + echo '<br /><small>('.__('You can upload unlimited images with this package', 'geodirectory').')</small>';
|
|
| 1757 | 1757 | } ?> |
| 1758 | 1758 | </h5> |
| 1759 | 1759 | |
@@ -1792,10 +1792,10 @@ discard block |
||
| 1792 | 1792 | <div |
| 1793 | 1793 | class="plupload-upload-uic hide-if-no-js <?php if ($multiple): ?>plupload-upload-uic-multiple<?php endif; ?>" |
| 1794 | 1794 | id="<?php echo $id; ?>plupload-upload-ui"> |
| 1795 | - <h4><?php _e('Drop files to upload', 'geodirectory');?></h4>
|
|
| 1795 | + <h4><?php _e('Drop files to upload', 'geodirectory'); ?></h4>
|
|
| 1796 | 1796 | <input id="<?php echo $id; ?>plupload-browse-button" type="button" |
| 1797 | 1797 | value="<?php _e('Select Files', 'geodirectory'); ?>" class="button"/>
|
| 1798 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id . 'pluploadan'); ?>"></span> |
|
| 1798 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce($id.'pluploadan'); ?>"></span> |
|
| 1799 | 1799 | <?php if ($width && $height): ?> |
| 1800 | 1800 | <span class="plupload-resize"></span> |
| 1801 | 1801 | <span class="plupload-width" id="plupload-width<?php echo $width; ?>"></span> |
@@ -1807,7 +1807,7 @@ discard block |
||
| 1807 | 1807 | id="<?php echo $id; ?>plupload-thumbs" style="border-top:1px solid #ccc; padding-top:10px;"> |
| 1808 | 1808 | </div> |
| 1809 | 1809 | <span |
| 1810 | - id="upload-msg"><?php _e('Please drag & drop the images to rearrange the order', 'geodirectory');?></span>
|
|
| 1810 | + id="upload-msg"><?php _e('Please drag & drop the images to rearrange the order', 'geodirectory'); ?></span>
|
|
| 1811 | 1811 | <span id="<?php echo $id; ?>upload-error" style="display:none"></span> |
| 1812 | 1812 | </div> |
| 1813 | 1813 | |
@@ -2017,9 +2017,9 @@ discard block |
||
| 2017 | 2017 | $plugin = 'avada-nag'; |
| 2018 | 2018 | $timestamp = 'avada-nag1234'; |
| 2019 | 2019 | $message = __('Welcome to GeoDirectory, please have a look <a href="https://docs.wpgeodirectory.com/category/getting-started/" target="_blank">here</a> to get started. :)', 'geodirectory');
|
| 2020 | - echo '<div id="' . $timestamp . '" class="error">'; |
|
| 2021 | - echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\'' . $plugin . '\',\'' . $timestamp . '\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | - echo "<img class='gd-icon-noti' src='" . plugin_dir_url('') . "geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2020 | + echo '<div id="'.$timestamp.'" class="error">'; |
|
| 2021 | + echo '<span class="gd-remove-noti" onclick="gdRemoveANotification(\''.$plugin.'\',\''.$timestamp.'\');" ><i class="fa fa-times"></i></span>'; |
|
| 2022 | + echo "<img class='gd-icon-noti' src='".plugin_dir_url('')."geodirectory/geodirectory-assets/images/favicon.ico' > ";
|
|
| 2023 | 2023 | echo "<p>$message</p>"; |
| 2024 | 2024 | echo "</div>"; |
| 2025 | 2025 | |
@@ -2152,7 +2152,7 @@ discard block |
||
| 2152 | 2152 | |
| 2153 | 2153 | // Don't allow same slug url for listing and location |
| 2154 | 2154 | if (geodir_strtolower($listing_prefix) == geodir_strtolower($location_prefix)) {
|
| 2155 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab . '&msg=fail&gderr=21');
|
|
| 2155 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab.'&msg=fail&gderr=21');
|
|
| 2156 | 2156 | wp_redirect($redirect_url); |
| 2157 | 2157 | exit; |
| 2158 | 2158 | } |
@@ -2164,7 +2164,7 @@ discard block |
||
| 2164 | 2164 | $default_language = $sitepress->get_default_language(); |
| 2165 | 2165 | |
| 2166 | 2166 | if ($current_language != 'all' && $current_language != $default_language) {
|
| 2167 | - $redirect_url = admin_url('admin.php?page=geodirectory&tab=' . $current_tab . '&active_tab=' . $active_tab);
|
|
| 2167 | + $redirect_url = admin_url('admin.php?page=geodirectory&tab='.$current_tab.'&active_tab='.$active_tab);
|
|
| 2168 | 2168 | wp_redirect($redirect_url); |
| 2169 | 2169 | exit; |
| 2170 | 2170 | } |
@@ -2185,11 +2185,11 @@ discard block |
||
| 2185 | 2185 | function geodir_hide_admin_preview_button() {
|
| 2186 | 2186 | global $post_type; |
| 2187 | 2187 | $post_types = geodir_get_posttypes(); |
| 2188 | - if(in_array($post_type, $post_types)) |
|
| 2188 | + if (in_array($post_type, $post_types)) |
|
| 2189 | 2189 | echo '<style type="text/css">#post-preview, #view-post-btn{display: none;}</style>';
|
| 2190 | 2190 | } |
| 2191 | -add_action( 'admin_head-post-new.php', 'geodir_hide_admin_preview_button' ); |
|
| 2192 | -add_action( 'admin_head-post.php', 'geodir_hide_admin_preview_button' ); |
|
| 2191 | +add_action('admin_head-post-new.php', 'geodir_hide_admin_preview_button');
|
|
| 2192 | +add_action('admin_head-post.php', 'geodir_hide_admin_preview_button');
|
|
| 2193 | 2193 | |
| 2194 | 2194 | /** |
| 2195 | 2195 | * Add the tab in left sidebar menu fro import & export page. |
@@ -2199,8 +2199,8 @@ discard block |
||
| 2199 | 2199 | * |
| 2200 | 2200 | * @return array Array of tab data. |
| 2201 | 2201 | */ |
| 2202 | -function geodir_import_export_tab( $tabs ) {
|
|
| 2203 | - $tabs['import_export'] = array( 'label' => __( 'Import & Export', 'geodirectory' ) ); |
|
| 2202 | +function geodir_import_export_tab($tabs) {
|
|
| 2203 | + $tabs['import_export'] = array('label' => __('Import & Export', 'geodirectory'));
|
|
| 2204 | 2204 | return $tabs; |
| 2205 | 2205 | } |
| 2206 | 2206 | |
@@ -2214,8 +2214,8 @@ discard block |
||
| 2214 | 2214 | * @return string Html content. |
| 2215 | 2215 | */ |
| 2216 | 2216 | function geodir_import_export_page() {
|
| 2217 | - $nonce = wp_create_nonce( 'geodir_import_export_nonce' ); |
|
| 2218 | - $gd_cats_sample_csv = geodir_plugin_url() . '/geodirectory-assets/gd_sample_categories.csv'; |
|
| 2217 | + $nonce = wp_create_nonce('geodir_import_export_nonce');
|
|
| 2218 | + $gd_cats_sample_csv = geodir_plugin_url().'/geodirectory-assets/gd_sample_categories.csv'; |
|
| 2219 | 2219 | /** |
| 2220 | 2220 | * Filter sample category data csv file url. |
| 2221 | 2221 | * |
@@ -2224,9 +2224,9 @@ discard block |
||
| 2224 | 2224 | * |
| 2225 | 2225 | * @param string $gd_cats_sample_csv Sample category data csv file url. |
| 2226 | 2226 | */ |
| 2227 | - $gd_cats_sample_csv = apply_filters( 'geodir_export_cats_sample_csv', $gd_cats_sample_csv ); |
|
| 2227 | + $gd_cats_sample_csv = apply_filters('geodir_export_cats_sample_csv', $gd_cats_sample_csv);
|
|
| 2228 | 2228 | |
| 2229 | - $gd_posts_sample_csv = geodir_plugin_url() . '/geodirectory-assets/place_listing.csv'; |
|
| 2229 | + $gd_posts_sample_csv = geodir_plugin_url().'/geodirectory-assets/place_listing.csv'; |
|
| 2230 | 2230 | /** |
| 2231 | 2231 | * Filter sample post data csv file url. |
| 2232 | 2232 | * |
@@ -2235,15 +2235,15 @@ discard block |
||
| 2235 | 2235 | * |
| 2236 | 2236 | * @param string $gd_posts_sample_csv Sample post data csv file url. |
| 2237 | 2237 | */ |
| 2238 | - $gd_posts_sample_csv = apply_filters( 'geodir_export_posts_sample_csv', $gd_posts_sample_csv ); |
|
| 2238 | + $gd_posts_sample_csv = apply_filters('geodir_export_posts_sample_csv', $gd_posts_sample_csv);
|
|
| 2239 | 2239 | |
| 2240 | - $gd_posttypes = geodir_get_posttypes( 'array' ); |
|
| 2240 | + $gd_posttypes = geodir_get_posttypes('array');
|
|
| 2241 | 2241 | |
| 2242 | 2242 | $gd_posttypes_option = ''; |
| 2243 | - foreach ( $gd_posttypes as $gd_posttype => $row ) {
|
|
| 2244 | - $gd_posttypes_option .= '<option value="' . $gd_posttype . '" data-cats="' . (int)geodir_get_terms_count( $gd_posttype ) . '" data-posts="' . (int)geodir_get_posts_count( $gd_posttype ) . '">' . __( $row['labels']['name'], 'geodirectory' ) . '</option>'; |
|
| 2243 | + foreach ($gd_posttypes as $gd_posttype => $row) {
|
|
| 2244 | + $gd_posttypes_option .= '<option value="'.$gd_posttype.'" data-cats="'.(int) geodir_get_terms_count($gd_posttype).'" data-posts="'.(int) geodir_get_posts_count($gd_posttype).'">'.__($row['labels']['name'], 'geodirectory').'</option>'; |
|
| 2245 | 2245 | } |
| 2246 | - wp_enqueue_script( 'jquery-ui-progressbar' ); |
|
| 2246 | + wp_enqueue_script('jquery-ui-progressbar');
|
|
| 2247 | 2247 | |
| 2248 | 2248 | $gd_chunksize_options = array(); |
| 2249 | 2249 | $gd_chunksize_options[100] = 100; |
@@ -2265,50 +2265,50 @@ discard block |
||
| 2265 | 2265 | * |
| 2266 | 2266 | * @param string $gd_chunksize_options Entries options. |
| 2267 | 2267 | */ |
| 2268 | - $gd_chunksize_options = apply_filters( 'geodir_export_csv_chunksize_options', $gd_chunksize_options ); |
|
| 2268 | + $gd_chunksize_options = apply_filters('geodir_export_csv_chunksize_options', $gd_chunksize_options);
|
|
| 2269 | 2269 | |
| 2270 | 2270 | $gd_chunksize_option = ''; |
| 2271 | 2271 | foreach ($gd_chunksize_options as $value => $title) {
|
| 2272 | - $gd_chunksize_option .= '<option value="' . $value . '" ' . selected($value, 5000, false) . '>' . $title . '</option>'; |
|
| 2272 | + $gd_chunksize_option .= '<option value="'.$value.'" '.selected($value, 5000, false).'>'.$title.'</option>'; |
|
| 2273 | 2273 | } |
| 2274 | 2274 | |
| 2275 | 2275 | $uploads = wp_upload_dir(); |
| 2276 | - $upload_dir = wp_sprintf( CSV_TRANSFER_IMG_FOLDER, str_replace( ABSPATH, '', $uploads['path'] ) ); |
|
| 2276 | + $upload_dir = wp_sprintf(CSV_TRANSFER_IMG_FOLDER, str_replace(ABSPATH, '', $uploads['path'])); |
|
| 2277 | 2277 | ?> |
| 2278 | 2278 | </form> |
| 2279 | 2279 | <div class="inner_content_tab_main gd-import-export"> |
| 2280 | - <h3><?php _e( 'GD Import & Export CSV', 'geodirectory' ) ;?></h3> |
|
| 2281 | - <span class="description"><?php _e( 'Import & export csv for GD listings & categories.', 'geodirectory' ) ;?></span> |
|
| 2280 | + <h3><?php _e('GD Import & Export CSV', 'geodirectory'); ?></h3>
|
|
| 2281 | + <span class="description"><?php _e('Import & export csv for GD listings & categories.', 'geodirectory'); ?></span>
|
|
| 2282 | 2282 | <div class="gd-content-heading"> |
| 2283 | 2283 | |
| 2284 | 2284 | <?php |
| 2285 | 2285 | ini_set('max_execution_time', 999999);
|
| 2286 | - $ini_max_execution_time_check = @ini_get( 'max_execution_time' ); |
|
| 2286 | + $ini_max_execution_time_check = @ini_get('max_execution_time');
|
|
| 2287 | 2287 | ini_restore('max_execution_time');
|
| 2288 | 2288 | |
| 2289 | - if($ini_max_execution_time_check != 999999){ // only show these setting to the user if we can't change the ini setting
|
|
| 2289 | + if ($ini_max_execution_time_check != 999999) { // only show these setting to the user if we can't change the ini setting
|
|
| 2290 | 2290 | ?> |
| 2291 | 2291 | <div id="gd_ie_reqs" class="metabox-holder"> |
| 2292 | 2292 | <div class="meta-box-sortables ui-sortable"> |
| 2293 | 2293 | <div class="postbox"> |
| 2294 | - <h3 class="hndle"><span style='vertical-align:top;'><?php echo __( 'PHP Requirements for GD Import & Export CSV', 'geodirectory' );?></span></h3> |
|
| 2294 | + <h3 class="hndle"><span style='vertical-align:top;'><?php echo __('PHP Requirements for GD Import & Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2295 | 2295 | <div class="inside"> |
| 2296 | - <span class="description"><?php echo __( 'Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory' );?></span> |
|
| 2296 | + <span class="description"><?php echo __('Note: In case GD import & export csv not working for larger data then please check and configure following php settings.', 'geodirectory'); ?></span>
|
|
| 2297 | 2297 | <table class="form-table"> |
| 2298 | 2298 | <thead> |
| 2299 | 2299 | <tr> |
| 2300 | - <th><?php _e( 'PHP Settings', 'geodirectory' );?></th><th><?php _e( 'Current Value', 'geodirectory' );?></th><th><?php _e( 'Recommended Value', 'geodirectory' );?></th> |
|
| 2300 | + <th><?php _e('PHP Settings', 'geodirectory'); ?></th><th><?php _e('Current Value', 'geodirectory'); ?></th><th><?php _e('Recommended Value', 'geodirectory'); ?></th>
|
|
| 2301 | 2301 | </tr> |
| 2302 | 2302 | </thead> |
| 2303 | 2303 | <tbody> |
| 2304 | 2304 | <tr> |
| 2305 | - <td>max_input_time</td><td><?php echo @ini_get( 'max_input_time' );?></td><td>3000</td> |
|
| 2305 | + <td>max_input_time</td><td><?php echo @ini_get('max_input_time'); ?></td><td>3000</td>
|
|
| 2306 | 2306 | </tr> |
| 2307 | 2307 | <tr> |
| 2308 | - <td>max_execution_time</td><td><?php echo @ini_get( 'max_execution_time' );?></td><td>3000</td> |
|
| 2308 | + <td>max_execution_time</td><td><?php echo @ini_get('max_execution_time'); ?></td><td>3000</td>
|
|
| 2309 | 2309 | </tr> |
| 2310 | 2310 | <tr> |
| 2311 | - <td>memory_limit</td><td><?php echo @ini_get( 'memory_limit' );?></td><td>256M</td> |
|
| 2311 | + <td>memory_limit</td><td><?php echo @ini_get('memory_limit'); ?></td><td>256M</td>
|
|
| 2312 | 2312 | </tr> |
| 2313 | 2313 | </tbody> |
| 2314 | 2314 | </table> |
@@ -2320,21 +2320,21 @@ discard block |
||
| 2320 | 2320 | <div id="gd_ie_imposts" class="metabox-holder"> |
| 2321 | 2321 | <div class="meta-box-sortables ui-sortable"> |
| 2322 | 2322 | <div id="gd_ie_im_posts" class="postbox gd-hndle-pbox"> |
| 2323 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Listings: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2324 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Import CSV', 'geodirectory' );?></span></h3> |
|
| 2323 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Listings: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2324 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Import CSV', 'geodirectory'); ?></span></h3>
|
|
| 2325 | 2325 | <div class="inside"> |
| 2326 | 2326 | <table class="form-table"> |
| 2327 | 2327 | <tbody> |
| 2328 | 2328 | <tr> |
| 2329 | 2329 | <td class="gd-imex-box"> |
| 2330 | 2330 | <div class="gd-im-choices"> |
| 2331 | - <p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e( 'Update listing if post with post_id already exists.', 'geodirectory' );?></label></p> |
|
| 2332 | - <p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e( 'Ignore listing if post with post_id already exists.', 'geodirectory' );?></label></p> |
|
| 2331 | + <p><input type="radio" value="update" name="gd_im_choicepost" id="gd_im_pchoice_u" /><label for="gd_im_pchoice_u"><?php _e('Update listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
|
|
| 2332 | + <p><input type="radio" checked="checked" value="skip" name="gd_im_choicepost" id="gd_im_pchoice_s" /><label for="gd_im_pchoice_s"><?php _e('Ignore listing if post with post_id already exists.', 'geodirectory'); ?></label></p>
|
|
| 2333 | 2333 | </div> |
| 2334 | 2334 | <div class="plupload-upload-uic hide-if-no-js" id="gd_im_postplupload-upload-ui"> |
| 2335 | 2335 | <input type="text" readonly="readonly" name="gd_im_post_file" class="gd-imex-file gd_im_post_file" id="gd_im_post" onclick="jQuery('#gd_im_postplupload-browse-button').trigger('click');" />
|
| 2336 | - <input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample"> |
|
| 2337 | - <input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv;?>" /> |
|
| 2336 | + <input id="gd_im_postplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-pupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imposts_sample" id="gd_ie_imposts_sample">
|
|
| 2337 | + <input type="hidden" id="gd_ie_imposts_csv" value="<?php echo $gd_posts_sample_csv; ?>" /> |
|
| 2338 | 2338 | <?php |
| 2339 | 2339 | /** |
| 2340 | 2340 | * Called just after the sample CSV download link. |
@@ -2343,7 +2343,7 @@ discard block |
||
| 2343 | 2343 | */ |
| 2344 | 2344 | do_action('geodir_sample_csv_download_link');
|
| 2345 | 2345 | ?> |
| 2346 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_postpluploadan' ); ?>"></span> |
|
| 2346 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_postpluploadan'); ?>"></span>
|
|
| 2347 | 2347 | <div class="filelist"></div> |
| 2348 | 2348 | </div> |
| 2349 | 2349 | <span id="gd_im_catupload-error" style="display:none"></span> |
@@ -2361,7 +2361,7 @@ discard block |
||
| 2361 | 2361 | <input type="hidden" id="gd_terminateaction" value="continue"/> |
| 2362 | 2362 | </div> |
| 2363 | 2363 | <div class="gd-import-progress" id="gd-import-progress" style="display:none"> |
| 2364 | - <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
|
|
| 2364 | + <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
|
|
| 2365 | 2365 | id="gd-import-done">0</font> / <font id="gd-import-total">0</font> ( <font |
| 2366 | 2366 | id="gd-import-perc">0%</font> ) |
| 2367 | 2367 | <div class="gd-fileprogress"></div> |
@@ -2373,10 +2373,10 @@ discard block |
||
| 2373 | 2373 | <div class="gd-imex-btns" style="display:none;"> |
| 2374 | 2374 | <input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/> |
| 2375 | 2375 | <input onclick="gd_imex_PrepareImport(this, 'post')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" /> |
| 2376 | - <input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/> |
|
| 2377 | - <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
|
|
| 2376 | + <input onclick="gd_imex_ContinueImport(this, 'post')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
|
|
| 2377 | + <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'post')"/>
|
|
| 2378 | 2378 | <div id="gd_process_data" style="display:none"> |
| 2379 | - <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
|
|
| 2379 | + <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
|
|
| 2380 | 2380 | </div> |
| 2381 | 2381 | </div> |
| 2382 | 2382 | </td> |
@@ -2390,30 +2390,30 @@ discard block |
||
| 2390 | 2390 | <div id="gd_ie_excategs" class="metabox-holder"> |
| 2391 | 2391 | <div class="meta-box-sortables ui-sortable"> |
| 2392 | 2392 | <div id="gd_ie_ex_posts" class="postbox gd-hndle-pbox"> |
| 2393 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - Listings: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2394 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Listings: Export CSV', 'geodirectory' );?></span></h3> |
|
| 2393 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - Listings: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2394 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Listings: Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2395 | 2395 | <div class="inside"> |
| 2396 | 2396 | <table class="form-table"> |
| 2397 | 2397 | <tbody> |
| 2398 | 2398 | <tr> |
| 2399 | 2399 | <td class="fld"><label for="gd_post_type"> |
| 2400 | - <?php _e( 'Post Type:', 'geodirectory' );?> |
|
| 2400 | + <?php _e('Post Type:', 'geodirectory'); ?>
|
|
| 2401 | 2401 | </label></td> |
| 2402 | 2402 | <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"> |
| 2403 | - <?php echo $gd_posttypes_option;?> |
|
| 2403 | + <?php echo $gd_posttypes_option; ?> |
|
| 2404 | 2404 | </select></td> |
| 2405 | 2405 | </tr> |
| 2406 | 2406 | <tr> |
| 2407 | - <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td> |
|
| 2408 | - <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td> |
|
| 2407 | + <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
|
|
| 2408 | + <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
|
|
| 2409 | 2409 | </tr> |
| 2410 | 2410 | <tr class="gd-imex-dates"> |
| 2411 | - <td class="fld"><label><?php _e( 'Published Date:', 'geodirectory' );?></label></td> |
|
| 2412 | - <td><label><span class="label-responsive"><?php _e( 'Start date:', 'geodirectory' );?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e( 'End date:', 'geodirectory' );?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td> |
|
| 2411 | + <td class="fld"><label><?php _e('Published Date:', 'geodirectory'); ?></label></td>
|
|
| 2412 | + <td><label><span class="label-responsive"><?php _e('Start date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_start_date" name="gd_imex[start_date]" data-type="date" /></label><label><span class="label-responsive"><?php _e('End date:', 'geodirectory'); ?></span><input type="text" id="gd_imex_end_date" name="gd_imex[end_date]" data-type="date" /></label></td>
|
|
| 2413 | 2413 | </tr> |
| 2414 | 2414 | <tr> |
| 2415 | 2415 | <td class="fld" style="vertical-align:top"><label> |
| 2416 | - <?php _e( 'Progress:', 'geodirectory' );?> |
|
| 2416 | + <?php _e('Progress:', 'geodirectory'); ?>
|
|
| 2417 | 2417 | </label></td> |
| 2418 | 2418 | <td><div id='gd_progressbar_box'> |
| 2419 | 2419 | <div id="gd_progressbar" class="gd_progressbar"> |
@@ -2421,13 +2421,13 @@ discard block |
||
| 2421 | 2421 | </div> |
| 2422 | 2422 | </div> |
| 2423 | 2423 | <p style="display:inline-block"> |
| 2424 | - <?php _e( 'Elapsed Time:', 'geodirectory' );?> |
|
| 2424 | + <?php _e('Elapsed Time:', 'geodirectory'); ?>
|
|
| 2425 | 2425 | </p> |
| 2426 | 2426 | |
| 2427 | 2427 | <p id="gd_timer" class="gd_timer">00:00:00</p></td> |
| 2428 | 2428 | </tr> |
| 2429 | 2429 | <tr class="gd-ie-actions"> |
| 2430 | - <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit"> |
|
| 2430 | + <td style="vertical-align:top"><input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_exposts_submit" id="gd_ie_exposts_submit">
|
|
| 2431 | 2431 | </td> |
| 2432 | 2432 | <td id="gd_ie_ex_files" class="gd-ie-files"></td> |
| 2433 | 2433 | </tr> |
@@ -2440,21 +2440,21 @@ discard block |
||
| 2440 | 2440 | <div id="gd_ie_imcategs" class="metabox-holder"> |
| 2441 | 2441 | <div class="meta-box-sortables ui-sortable"> |
| 2442 | 2442 | <div id="gd_ie_imcats" class="postbox gd-hndle-pbox"> |
| 2443 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Import CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2444 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Import CSV', 'geodirectory' );?></span></h3> |
|
| 2443 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Import CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2444 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Import CSV', 'geodirectory'); ?></span></h3>
|
|
| 2445 | 2445 | <div class="inside"> |
| 2446 | 2446 | <table class="form-table"> |
| 2447 | 2447 | <tbody> |
| 2448 | 2448 | <tr> |
| 2449 | 2449 | <td class="gd-imex-box"> |
| 2450 | 2450 | <div class="gd-im-choices"> |
| 2451 | - <p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e( 'Update item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p> |
|
| 2452 | - <p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e( 'Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory' );?></label></p> |
|
| 2451 | + <p><input type="radio" value="update" name="gd_im_choicecat" id="gd_im_cchoice_u" /><label for="gd_im_cchoice_u"><?php _e('Update item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
|
|
| 2452 | + <p><input type="radio" checked="checked" value="skip" name="gd_im_choicecat" id="gd_im_cchoice_s" /><label for="gd_im_cchoice_s"><?php _e('Ignore item if item with cat_id/cat_slug already exists.', 'geodirectory'); ?></label></p>
|
|
| 2453 | 2453 | </div> |
| 2454 | 2454 | <div class="plupload-upload-uic hide-if-no-js" id="gd_im_catplupload-upload-ui"> |
| 2455 | 2455 | <input type="text" readonly="readonly" name="gd_im_cat_file" class="gd-imex-file gd_im_cat_file" id="gd_im_cat" onclick="jQuery('#gd_im_catplupload-browse-button').trigger('click');" />
|
| 2456 | - <input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr( __( 'Download Sample CSV', 'geodirectory' ) );?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample"> |
|
| 2457 | - <input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv;?>" /> |
|
| 2456 | + <input id="gd_im_catplupload-browse-button" type="button" value="<?php echo SELECT_UPLOAD_CSV; ?>" class="gd-imex-cupload button-primary" /><input type="button" value="<?php echo esc_attr(__('Download Sample CSV', 'geodirectory')); ?>" class="button-secondary" name="gd_ie_imcats_sample" id="gd_ie_imcats_sample">
|
|
| 2457 | + <input type="hidden" id="gd_ie_imcats_csv" value="<?php echo $gd_cats_sample_csv; ?>" /> |
|
| 2458 | 2458 | <?php |
| 2459 | 2459 | /** |
| 2460 | 2460 | * Called just after the sample CSV download link. |
@@ -2464,7 +2464,7 @@ discard block |
||
| 2464 | 2464 | */ |
| 2465 | 2465 | do_action('geodir_sample_cats_csv_download_link');
|
| 2466 | 2466 | ?> |
| 2467 | - <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce( 'gd_im_catpluploadan' ); ?>"></span> |
|
| 2467 | + <span class="ajaxnonceplu" id="ajaxnonceplu<?php echo wp_create_nonce('gd_im_catpluploadan'); ?>"></span>
|
|
| 2468 | 2468 | <div class="filelist"></div> |
| 2469 | 2469 | </div> |
| 2470 | 2470 | <span id="gd_im_catupload-error" style="display:none"></span> |
@@ -2481,7 +2481,7 @@ discard block |
||
| 2481 | 2481 | <input type="hidden" id="gd_terminateaction" value="continue"/> |
| 2482 | 2482 | </div> |
| 2483 | 2483 | <div class="gd-import-progress" id="gd-import-progress" style="display:none"> |
| 2484 | - <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory');?> </b><font
|
|
| 2484 | + <div class="gd-import-file"><b><?php _e("Import Data Status :", 'geodirectory'); ?> </b><font
|
|
| 2485 | 2485 | id="gd-import-done">0</font> / <font id="gd-import-total">0</font> ( <font |
| 2486 | 2486 | id="gd-import-perc">0%</font> ) |
| 2487 | 2487 | <div class="gd-fileprogress"></div> |
@@ -2493,10 +2493,10 @@ discard block |
||
| 2493 | 2493 | <div class="gd-imex-btns" style="display:none;"> |
| 2494 | 2494 | <input type="hidden" class="geodir_import_file" name="geodir_import_file" value="save"/> |
| 2495 | 2495 | <input onclick="gd_imex_PrepareImport(this, 'cat')" type="button" value="<?php echo CSV_IMPORT_DATA; ?>" id="gd_import_data" class="button-primary" /> |
| 2496 | - <input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e( "Continue Import Data", 'geodirectory' );?>" id="gd_continue_data" class="button-primary" style="display:none"/> |
|
| 2497 | - <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory');?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
|
|
| 2496 | + <input onclick="gd_imex_ContinueImport(this, 'cat')" type="button" value="<?php _e("Continue Import Data", 'geodirectory'); ?>" id="gd_continue_data" class="button-primary" style="display:none"/>
|
|
| 2497 | + <input type="button" value="<?php _e("Terminate Import Data", 'geodirectory'); ?>" id="gd_stop_import" class="button-primary" name="gd_stop_import" style="display:none" onclick="gd_imex_TerminateImport(this, 'cat')"/>
|
|
| 2498 | 2498 | <div id="gd_process_data" style="display:none"> |
| 2499 | - <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory');?>
|
|
| 2499 | + <span class="spinner is-active" style="display:inline-block;margin:0 5px 0 5px;float:left"></span><?php _e("Wait, processing import data...", 'geodirectory'); ?>
|
|
| 2500 | 2500 | </div> |
| 2501 | 2501 | </div> |
| 2502 | 2502 | </td> |
@@ -2510,26 +2510,26 @@ discard block |
||
| 2510 | 2510 | <div id="gd_ie_excategs" class="metabox-holder"> |
| 2511 | 2511 | <div class="meta-box-sortables ui-sortable"> |
| 2512 | 2512 | <div id="gd_ie_ex_cats" class="postbox gd-hndle-pbox"> |
| 2513 | - <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e( 'Toggle panel - GD Categories: Export CSV', 'geodirectory' );?></span><span aria-hidden="true" class="toggle-indicator"></span></button> |
|
| 2514 | - <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __( 'GD Categories: Export CSV', 'geodirectory' );?></span></h3> |
|
| 2513 | + <button class="handlediv button-link" type="button"><span class="screen-reader-text"><?php _e('Toggle panel - GD Categories: Export CSV', 'geodirectory'); ?></span><span aria-hidden="true" class="toggle-indicator"></span></button>
|
|
| 2514 | + <h3 class="hndle gd-hndle-click"><span style='vertical-align:top;'><?php echo __('GD Categories: Export CSV', 'geodirectory'); ?></span></h3>
|
|
| 2515 | 2515 | <div class="inside"> |
| 2516 | 2516 | <table class="form-table"> |
| 2517 | 2517 | <tbody> |
| 2518 | 2518 | <tr> |
| 2519 | - <td class="fld"><label for="gd_post_type"><?php _e( 'Post Type:', 'geodirectory' );?></label></td> |
|
| 2520 | - <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option;?></select></td> |
|
| 2519 | + <td class="fld"><label for="gd_post_type"><?php _e('Post Type:', 'geodirectory'); ?></label></td>
|
|
| 2520 | + <td><select name="gd_post_type" id="gd_post_type" style="min-width:140px"><?php echo $gd_posttypes_option; ?></select></td> |
|
| 2521 | 2521 | </tr> |
| 2522 | 2522 | <tr> |
| 2523 | - <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e( 'Max entries per csv file:', 'geodirectory' );?></label></td> |
|
| 2524 | - <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option;?></select><span class="description"><?php _e( 'Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory' );?></span></td> |
|
| 2523 | + <td class="fld" style="vertical-align:top"><label for="gd_chunk_size"><?php _e('Max entries per csv file:', 'geodirectory'); ?></label></td>
|
|
| 2524 | + <td><select name="gd_chunk_size" id="gd_chunk_size" style="min-width:140px"><?php echo $gd_chunksize_option; ?></select><span class="description"><?php _e('Please select the maximum number of entries per csv file (defaults to 5000, you might want to lower this to prevent memory issues on some installs)', 'geodirectory'); ?></span></td>
|
|
| 2525 | 2525 | </tr> |
| 2526 | 2526 | <tr> |
| 2527 | - <td class="fld" style="vertical-align:top"><label><?php _e( 'Progress:', 'geodirectory' );?></label></td> |
|
| 2528 | - <td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e( 'Elapsed Time:', 'geodirectory' );?></p> <p id="gd_timer" class="gd_timer">00:00:00</p></td> |
|
| 2527 | + <td class="fld" style="vertical-align:top"><label><?php _e('Progress:', 'geodirectory'); ?></label></td>
|
|
| 2528 | + <td><div id='gd_progressbar_box'><div id="gd_progressbar" class="gd_progressbar"><div class="gd-progress-label"></div></div></div><p style="display:inline-block"><?php _e('Elapsed Time:', 'geodirectory'); ?></p> <p id="gd_timer" class="gd_timer">00:00:00</p></td>
|
|
| 2529 | 2529 | </tr> |
| 2530 | 2530 | <tr class="gd-ie-actions"> |
| 2531 | 2531 | <td style="vertical-align:top"> |
| 2532 | - <input type="submit" value="<?php echo esc_attr( __( 'Export CSV', 'geodirectory' ) );?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit"> |
|
| 2532 | + <input type="submit" value="<?php echo esc_attr(__('Export CSV', 'geodirectory')); ?>" class="button-primary" name="gd_ie_excats_submit" id="gd_ie_excats_submit">
|
|
| 2533 | 2533 | </td> |
| 2534 | 2534 | <td id="gd_ie_ex_files" class="gd-ie-files"></td> |
| 2535 | 2535 | </tr> |
@@ -2551,7 +2551,7 @@ discard block |
||
| 2551 | 2551 | * @param array $gd_chunksize_options File chunk size options. |
| 2552 | 2552 | * @param string $nonce Wordpress security token for GD import & export. |
| 2553 | 2553 | */ |
| 2554 | - do_action( 'geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce ); |
|
| 2554 | + do_action('geodir_import_export', $gd_posttypes, $gd_chunksize_options, $nonce);
|
|
| 2555 | 2555 | ?> |
| 2556 | 2556 | </div> |
| 2557 | 2557 | </div> |
@@ -2570,7 +2570,7 @@ discard block |
||
| 2570 | 2570 | jQuery.ajax({
|
| 2571 | 2571 | url: ajaxurl, |
| 2572 | 2572 | type: "POST", |
| 2573 | - data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce;?>', |
|
| 2573 | + data: 'action=geodir_import_export&task=prepare_import&_pt=' + type + '&_file=' + uploadedFile + '&_nonce=<?php echo $nonce; ?>', |
|
| 2574 | 2574 | dataType: 'json', |
| 2575 | 2575 | cache: false, |
| 2576 | 2576 | success: function(data) {
|
@@ -2622,7 +2622,7 @@ discard block |
||
| 2622 | 2622 | |
| 2623 | 2623 | jQuery(cont).find('.filelist .file').remove();
|
| 2624 | 2624 | |
| 2625 | - jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr( PLZ_SELECT_CSV_FILE );?></p>");
|
|
| 2625 | + jQuery('#gd-import-msg', cont).find('#message').removeClass('updated').addClass('error').html("<p><?php echo esc_attr(PLZ_SELECT_CSV_FILE); ?></p>");
|
|
| 2626 | 2626 | jQuery('#gd-import-msg', cont).show();
|
| 2627 | 2627 | |
| 2628 | 2628 | return false; |
@@ -2681,7 +2681,7 @@ discard block |
||
| 2681 | 2681 | jQuery.ajax({
|
| 2682 | 2682 | url: ajaxurl, |
| 2683 | 2683 | type: "POST", |
| 2684 | - data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce;?>', |
|
| 2684 | + data: 'action=geodir_import_export&task=import_' + type + '&_pt=' + type + '&_file=' + uploadedFile + gddata + '&_ch=' + choice + '&_nonce=<?php echo $nonce; ?>', |
|
| 2685 | 2685 | dataType : 'json', |
| 2686 | 2686 | cache: false, |
| 2687 | 2687 | success: function (data) {
|
@@ -2870,27 +2870,27 @@ discard block |
||
| 2870 | 2870 | |
| 2871 | 2871 | var gdMsg = '<p></p>'; |
| 2872 | 2872 | if ( processed > 0 ) {
|
| 2873 | - var msgParse = '<p><?php echo addslashes( sprintf( __( 'Total %s item(s) found.', 'geodirectory' ), '%s' ) );?></p>'; |
|
| 2873 | + var msgParse = '<p><?php echo addslashes(sprintf(__('Total %s item(s) found.', 'geodirectory'), '%s')); ?></p>';
|
|
| 2874 | 2874 | msgParse = msgParse.replace("%s", processed);
|
| 2875 | 2875 | gdMsg += msgParse; |
| 2876 | 2876 | } |
| 2877 | 2877 | |
| 2878 | 2878 | if ( updated > 0 ) {
|
| 2879 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) updated.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2879 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) updated.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2880 | 2880 | msgParse = msgParse.replace("%s", updated);
|
| 2881 | 2881 | msgParse = msgParse.replace("%d", processed);
|
| 2882 | 2882 | gdMsg += msgParse; |
| 2883 | 2883 | } |
| 2884 | 2884 | |
| 2885 | 2885 | if ( created > 0 ) {
|
| 2886 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) added.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2886 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) added.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2887 | 2887 | msgParse = msgParse.replace("%s", created);
|
| 2888 | 2888 | msgParse = msgParse.replace("%d", processed);
|
| 2889 | 2889 | gdMsg += msgParse; |
| 2890 | 2890 | } |
| 2891 | 2891 | |
| 2892 | 2892 | if ( skipped > 0 ) {
|
| 2893 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) ignored due to already exists.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2893 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) ignored due to already exists.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2894 | 2894 | msgParse = msgParse.replace("%s", skipped);
|
| 2895 | 2895 | msgParse = msgParse.replace("%d", processed);
|
| 2896 | 2896 | gdMsg += msgParse; |
@@ -2900,17 +2900,17 @@ discard block |
||
| 2900 | 2900 | if (type=='loc') {
|
| 2901 | 2901 | invalid_addr = invalid; |
| 2902 | 2902 | } |
| 2903 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2903 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2904 | 2904 | msgParse = msgParse.replace("%s", invalid_addr);
|
| 2905 | 2905 | msgParse = msgParse.replace("%d", total);
|
| 2906 | 2906 | gdMsg += msgParse; |
| 2907 | 2907 | } |
| 2908 | 2908 | |
| 2909 | 2909 | if (invalid > 0 && type!='loc') {
|
| 2910 | - var msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2910 | + var msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to blank title/invalid post type/invalid characters used in data.', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2911 | 2911 | |
| 2912 | 2912 | if (type=='hood') {
|
| 2913 | - msgParse = '<p><?php echo addslashes( sprintf( __( '%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ), '%s', '%d' ) );?></p>'; |
|
| 2913 | + msgParse = '<p><?php echo addslashes(sprintf(__('%s / %s item(s) could not be added due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory'), '%s', '%d')); ?></p>';
|
|
| 2914 | 2914 | } |
| 2915 | 2915 | msgParse = msgParse.replace("%s", invalid);
|
| 2916 | 2916 | msgParse = msgParse.replace("%d", total);
|
@@ -2918,7 +2918,7 @@ discard block |
||
| 2918 | 2918 | } |
| 2919 | 2919 | |
| 2920 | 2920 | if (images > 0) {
|
| 2921 | - gdMsg += '<p><?php echo addslashes( $upload_dir );?></p>'; |
|
| 2921 | + gdMsg += '<p><?php echo addslashes($upload_dir); ?></p>'; |
|
| 2922 | 2922 | } |
| 2923 | 2923 | gdMsg += '<p></p>'; |
| 2924 | 2924 | jQuery('#gd-import-msg', cont).find('#message').removeClass('error').addClass('updated').html(gdMsg);
|
@@ -3082,9 +3082,9 @@ discard block |
||
| 3082 | 3082 | if (typeof filters !== 'undefined' && filters && doFilter) {
|
| 3083 | 3083 | getTotal = true; |
| 3084 | 3084 | attach += '&_c=1'; |
| 3085 | - gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Preparing...', 'geodirectory' ) );?>'); |
|
| 3085 | + gd_progressbar(el, 0, '<i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Preparing...', 'geodirectory')); ?>');
|
|
| 3086 | 3086 | } else {
|
| 3087 | - gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>'); |
|
| 3087 | + gd_progressbar(el, 0, '0% (0 / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3088 | 3088 | } |
| 3089 | 3089 | jQuery(el).find('#gd_timer').text('00:00:01');
|
| 3090 | 3090 | jQuery('#gd_ie_ex_files', el).html('');
|
@@ -3093,7 +3093,7 @@ discard block |
||
| 3093 | 3093 | jQuery.ajax({
|
| 3094 | 3094 | url: ajaxurl, |
| 3095 | 3095 | type: "POST", |
| 3096 | - data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page + attach, |
|
| 3096 | + data: 'action=geodir_import_export&task=export_posts&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page + attach, |
|
| 3097 | 3097 | dataType : 'json', |
| 3098 | 3098 | cache: false, |
| 3099 | 3099 | beforeSend: function (jqXHR, settings) {},
|
@@ -3118,11 +3118,11 @@ discard block |
||
| 3118 | 3118 | } else {
|
| 3119 | 3119 | if (pages < page || pages == page) {
|
| 3120 | 3120 | window.clearInterval(timer_posts); |
| 3121 | - gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
|
|
| 3121 | + gd_progressbar(el, 100, '100% (' + total_posts + ' / ' + total_posts + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
|
|
| 3122 | 3122 | } else {
|
| 3123 | 3123 | var percentage = Math.round(((page * chunk_size) / total_posts) * 100); |
| 3124 | 3124 | percentage = percentage > 100 ? 100 : percentage; |
| 3125 | - gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>');
|
|
| 3125 | + gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_posts + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3126 | 3126 | } |
| 3127 | 3127 | if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
|
| 3128 | 3128 | var obj_files = data.files; |
@@ -3153,7 +3153,7 @@ discard block |
||
| 3153 | 3153 | |
| 3154 | 3154 | function gd_process_export_cats(el, post_type, total_cats, chunk_size, pages, page) {
|
| 3155 | 3155 | if (page < 2) {
|
| 3156 | - gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr( __( 'Exporting...', 'geodirectory' ) );?>'); |
|
| 3156 | + gd_progressbar(el, 0, '0% (0 / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php echo esc_attr(__('Exporting...', 'geodirectory')); ?>');
|
|
| 3157 | 3157 | jQuery(el).find('#gd_timer').text('00:00:01');
|
| 3158 | 3158 | jQuery('#gd_ie_ex_files', el).html('');
|
| 3159 | 3159 | } |
@@ -3161,7 +3161,7 @@ discard block |
||
| 3161 | 3161 | jQuery.ajax({
|
| 3162 | 3162 | url: ajaxurl, |
| 3163 | 3163 | type: "POST", |
| 3164 | - data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce;?>&_p=' + page, |
|
| 3164 | + data: 'action=geodir_import_export&task=export_cats&_pt=' + post_type + '&_n=' + chunk_size + '&_nonce=<?php echo $nonce; ?>&_p=' + page, |
|
| 3165 | 3165 | dataType : 'json', |
| 3166 | 3166 | cache: false, |
| 3167 | 3167 | beforeSend: function (jqXHR, settings) {},
|
@@ -3175,11 +3175,11 @@ discard block |
||
| 3175 | 3175 | } else {
|
| 3176 | 3176 | if (pages < page || pages == page) {
|
| 3177 | 3177 | window.clearInterval(timer_cats); |
| 3178 | - gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr( __( 'Complete!', 'geodirectory' ) );?>');
|
|
| 3178 | + gd_progressbar(el, 100, '100% (' + total_cats + ' / ' + total_cats + ') <i class="fa fa-check"></i><?php echo esc_attr(__('Complete!', 'geodirectory')); ?>');
|
|
| 3179 | 3179 | } else {
|
| 3180 | 3180 | var percentage = Math.round(((page * chunk_size) / total_cats) * 100); |
| 3181 | 3181 | percentage = percentage > 100 ? 100 : percentage; |
| 3182 | - gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e( 'Exporting...', 'geodirectory' );?>');
|
|
| 3182 | + gd_progressbar(el, percentage, '' + percentage + '% (' + ( page * chunk_size ) + ' / ' + total_cats + ') <i class="fa fa-refresh fa-spin"></i><?php esc_attr_e('Exporting...', 'geodirectory'); ?>');
|
|
| 3183 | 3183 | } |
| 3184 | 3184 | if (typeof data.files != 'undefined' && jQuery(data.files).length ) {
|
| 3185 | 3185 | var obj_files = data.files; |
@@ -3236,13 +3236,13 @@ discard block |
||
| 3236 | 3236 | function geodir_init_filesystem() |
| 3237 | 3237 | {
|
| 3238 | 3238 | |
| 3239 | - if(!function_exists('get_filesystem_method')){
|
|
| 3239 | + if (!function_exists('get_filesystem_method')) {
|
|
| 3240 | 3240 | require_once(ABSPATH."/wp-admin/includes/file.php"); |
| 3241 | 3241 | } |
| 3242 | 3242 | $access_type = get_filesystem_method(); |
| 3243 | 3243 | if ($access_type === 'direct') {
|
| 3244 | 3244 | /* you can safely run request_filesystem_credentials() without any issues and don't need to worry about passing in a URL */ |
| 3245 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3245 | + $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array()); |
|
| 3246 | 3246 | |
| 3247 | 3247 | /* initialize the API */ |
| 3248 | 3248 | if (!WP_Filesystem($creds)) {
|
@@ -3255,7 +3255,7 @@ discard block |
||
| 3255 | 3255 | return $wp_filesystem; |
| 3256 | 3256 | /* do our file manipulations below */ |
| 3257 | 3257 | } elseif (defined('FTP_USER')) {
|
| 3258 | - $creds = request_filesystem_credentials(trailingslashit(site_url()) . 'wp-admin/', '', false, false, array()); |
|
| 3258 | + $creds = request_filesystem_credentials(trailingslashit(site_url()).'wp-admin/', '', false, false, array()); |
|
| 3259 | 3259 | |
| 3260 | 3260 | /* initialize the API */ |
| 3261 | 3261 | if (!WP_Filesystem($creds)) {
|
@@ -3290,7 +3290,7 @@ discard block |
||
| 3290 | 3290 | * @package GeoDirectory |
| 3291 | 3291 | */ |
| 3292 | 3292 | function geodir_filesystem_notice() |
| 3293 | -{ if ( defined( 'DOING_AJAX' ) ){return;}
|
|
| 3293 | +{ if (defined('DOING_AJAX')) {return; }
|
|
| 3294 | 3294 | $access_type = get_filesystem_method(); |
| 3295 | 3295 | if ($access_type === 'direct') {
|
| 3296 | 3296 | } elseif (!defined('FTP_USER')) {
|
@@ -3330,64 +3330,64 @@ discard block |
||
| 3330 | 3330 | // try to set higher limits for import |
| 3331 | 3331 | $max_input_time = ini_get('max_input_time');
|
| 3332 | 3332 | $max_execution_time = ini_get('max_execution_time');
|
| 3333 | - $memory_limit= ini_get('memory_limit');
|
|
| 3333 | + $memory_limit = ini_get('memory_limit');
|
|
| 3334 | 3334 | |
| 3335 | - if(!$max_input_time || $max_input_time<3000){
|
|
| 3335 | + if (!$max_input_time || $max_input_time < 3000) {
|
|
| 3336 | 3336 | ini_set('max_input_time', 3000);
|
| 3337 | 3337 | } |
| 3338 | 3338 | |
| 3339 | - if(!$max_execution_time || $max_execution_time<3000){
|
|
| 3339 | + if (!$max_execution_time || $max_execution_time < 3000) {
|
|
| 3340 | 3340 | ini_set('max_execution_time', 3000);
|
| 3341 | 3341 | } |
| 3342 | 3342 | |
| 3343 | - if($memory_limit && str_replace('M','',$memory_limit)){
|
|
| 3344 | - if(str_replace('M','',$memory_limit)<256){
|
|
| 3343 | + if ($memory_limit && str_replace('M', '', $memory_limit)) {
|
|
| 3344 | + if (str_replace('M', '', $memory_limit) < 256) {
|
|
| 3345 | 3345 | ini_set('memory_limit', '256M');
|
| 3346 | 3346 | } |
| 3347 | 3347 | } |
| 3348 | 3348 | |
| 3349 | 3349 | $json = array(); |
| 3350 | 3350 | |
| 3351 | - if ( !current_user_can( 'manage_options' ) ) {
|
|
| 3352 | - wp_send_json( $json ); |
|
| 3351 | + if (!current_user_can('manage_options')) {
|
|
| 3352 | + wp_send_json($json); |
|
| 3353 | 3353 | } |
| 3354 | 3354 | |
| 3355 | - $task = isset( $_REQUEST['task'] ) ? $_REQUEST['task'] : NULL; |
|
| 3356 | - $nonce = isset( $_REQUEST['_nonce'] ) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | - $stat = isset( $_REQUEST['_st'] ) ? $_REQUEST['_st'] : false; |
|
| 3355 | + $task = isset($_REQUEST['task']) ? $_REQUEST['task'] : NULL; |
|
| 3356 | + $nonce = isset($_REQUEST['_nonce']) ? $_REQUEST['_nonce'] : NULL; |
|
| 3357 | + $stat = isset($_REQUEST['_st']) ? $_REQUEST['_st'] : false; |
|
| 3358 | 3358 | |
| 3359 | - if ( !wp_verify_nonce( $nonce, 'geodir_import_export_nonce' ) ) {
|
|
| 3360 | - wp_send_json( $json ); |
|
| 3359 | + if (!wp_verify_nonce($nonce, 'geodir_import_export_nonce')) {
|
|
| 3360 | + wp_send_json($json); |
|
| 3361 | 3361 | } |
| 3362 | 3362 | |
| 3363 | - $post_type = isset( $_REQUEST['_pt'] ) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | - $chunk_per_page = isset( $_REQUEST['_n'] ) ? absint($_REQUEST['_n']) : NULL; |
|
| 3363 | + $post_type = isset($_REQUEST['_pt']) ? $_REQUEST['_pt'] : NULL; |
|
| 3364 | + $chunk_per_page = isset($_REQUEST['_n']) ? absint($_REQUEST['_n']) : NULL; |
|
| 3365 | 3365 | $chunk_per_page = $chunk_per_page < 50 || $chunk_per_page > 100000 ? 5000 : $chunk_per_page; |
| 3366 | - $chunk_page_no = isset( $_REQUEST['_p'] ) ? absint($_REQUEST['_p']) : 1; |
|
| 3366 | + $chunk_page_no = isset($_REQUEST['_p']) ? absint($_REQUEST['_p']) : 1; |
|
| 3367 | 3367 | |
| 3368 | 3368 | $wp_filesystem = geodir_init_filesystem(); |
| 3369 | 3369 | if (!$wp_filesystem) {
|
| 3370 | - $json['error'] = __( 'Filesystem ERROR: Could not access filesystem.', 'geodirectory' ); |
|
| 3371 | - wp_send_json( $json ); |
|
| 3370 | + $json['error'] = __('Filesystem ERROR: Could not access filesystem.', 'geodirectory');
|
|
| 3371 | + wp_send_json($json); |
|
| 3372 | 3372 | } |
| 3373 | 3373 | |
| 3374 | 3374 | if (!empty($wp_filesystem) && isset($wp_filesystem->errors) && is_wp_error($wp_filesystem->errors) && $wp_filesystem->errors->get_error_code()) {
|
| 3375 | - $json['error'] = __( 'Filesystem ERROR: ' . $wp_filesystem->errors->get_error_message(), 'geodirectory' ); |
|
| 3376 | - wp_send_json( $json ); |
|
| 3375 | + $json['error'] = __('Filesystem ERROR: '.$wp_filesystem->errors->get_error_message(), 'geodirectory');
|
|
| 3376 | + wp_send_json($json); |
|
| 3377 | 3377 | } |
| 3378 | 3378 | |
| 3379 | - $csv_file_dir = geodir_path_import_export( false ); |
|
| 3380 | - if ( !$wp_filesystem->is_dir( $csv_file_dir ) ) {
|
|
| 3381 | - if ( !$wp_filesystem->mkdir( $csv_file_dir, FS_CHMOD_DIR ) ) {
|
|
| 3382 | - $json['error'] = __( 'ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3383 | - wp_send_json( $json ); |
|
| 3379 | + $csv_file_dir = geodir_path_import_export(false); |
|
| 3380 | + if (!$wp_filesystem->is_dir($csv_file_dir)) {
|
|
| 3381 | + if (!$wp_filesystem->mkdir($csv_file_dir, FS_CHMOD_DIR)) {
|
|
| 3382 | + $json['error'] = __('ERROR: Could not create cache directory. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3383 | + wp_send_json($json); |
|
| 3384 | 3384 | } |
| 3385 | 3385 | } |
| 3386 | 3386 | |
| 3387 | 3387 | $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
| 3388 | 3388 | $neighbourhood_active = $location_manager && get_option('location_neighbourhoods') ? true : false;
|
| 3389 | 3389 | |
| 3390 | - switch ( $task ) {
|
|
| 3390 | + switch ($task) {
|
|
| 3391 | 3391 | case 'export_posts': {
|
| 3392 | 3392 | // WPML |
| 3393 | 3393 | $is_wpml = geodir_is_wpml(); |
@@ -3398,36 +3398,36 @@ discard block |
||
| 3398 | 3398 | $sitepress->switch_lang('all', true);
|
| 3399 | 3399 | } |
| 3400 | 3400 | // WPML |
| 3401 | - if ( $post_type == 'gd_event' ) {
|
|
| 3402 | - add_filter( 'geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2 ); |
|
| 3401 | + if ($post_type == 'gd_event') {
|
|
| 3402 | + add_filter('geodir_imex_export_posts_query', 'geodir_imex_get_events_query', 10, 2);
|
|
| 3403 | 3403 | } |
| 3404 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3404 | + $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL; |
|
| 3405 | 3405 | |
| 3406 | - $file_name = $post_type . '_' . date( 'dmyHi' ); |
|
| 3407 | - if ( $filters && isset( $filters['start_date'] ) && isset( $filters['end_date'] ) ) {
|
|
| 3408 | - $file_name = $post_type . '_' . date_i18n( 'dmy', strtotime( $filters['start_date'] ) ) . '_' . date_i18n( 'dmy', strtotime( $filters['end_date'] ) ); |
|
| 3406 | + $file_name = $post_type.'_'.date('dmyHi');
|
|
| 3407 | + if ($filters && isset($filters['start_date']) && isset($filters['end_date'])) {
|
|
| 3408 | + $file_name = $post_type.'_'.date_i18n('dmy', strtotime($filters['start_date'])).'_'.date_i18n('dmy', strtotime($filters['end_date']));
|
|
| 3409 | 3409 | } |
| 3410 | - $posts_count = geodir_get_posts_count( $post_type ); |
|
| 3411 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3412 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3413 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3414 | - $file_path_temp = $csv_file_dir . '/' . $post_type . '_' . $nonce . '.csv'; |
|
| 3410 | + $posts_count = geodir_get_posts_count($post_type); |
|
| 3411 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3412 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3413 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3414 | + $file_path_temp = $csv_file_dir.'/'.$post_type.'_'.$nonce.'.csv'; |
|
| 3415 | 3415 | |
| 3416 | 3416 | $chunk_file_paths = array(); |
| 3417 | 3417 | |
| 3418 | - if ( isset( $_REQUEST['_c'] ) ) {
|
|
| 3418 | + if (isset($_REQUEST['_c'])) {
|
|
| 3419 | 3419 | $json['total'] = $posts_count; |
| 3420 | 3420 | // WPML |
| 3421 | 3421 | if ($is_wpml) {
|
| 3422 | 3422 | $sitepress->switch_lang($active_lang, true); |
| 3423 | 3423 | } |
| 3424 | 3424 | // WPML |
| 3425 | - wp_send_json( $json ); |
|
| 3425 | + wp_send_json($json); |
|
| 3426 | 3426 | gd_die(); |
| 3427 | - } else if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3428 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3429 | - $percentage = count( $posts_count ) > 0 && $line_count > 0 ? ceil( $line_count / $posts_count ) * 100 : 0; |
|
| 3430 | - $percentage = min( $percentage, 100 ); |
|
| 3427 | + } else if (isset($_REQUEST['_st'])) {
|
|
| 3428 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3429 | + $percentage = count($posts_count) > 0 && $line_count > 0 ? ceil($line_count / $posts_count) * 100 : 0; |
|
| 3430 | + $percentage = min($percentage, 100); |
|
| 3431 | 3431 | |
| 3432 | 3432 | $json['percentage'] = $percentage; |
| 3433 | 3433 | // WPML |
@@ -3435,45 +3435,45 @@ discard block |
||
| 3435 | 3435 | $sitepress->switch_lang($active_lang, true); |
| 3436 | 3436 | } |
| 3437 | 3437 | // WPML |
| 3438 | - wp_send_json( $json ); |
|
| 3438 | + wp_send_json($json); |
|
| 3439 | 3439 | gd_die(); |
| 3440 | 3440 | } else {
|
| 3441 | - if ( !$posts_count > 0 ) {
|
|
| 3442 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3441 | + if (!$posts_count > 0) {
|
|
| 3442 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3443 | 3443 | } else {
|
| 3444 | 3444 | $total_posts = $posts_count; |
| 3445 | 3445 | if ($chunk_per_page > $total_posts) {
|
| 3446 | 3446 | $chunk_per_page = $total_posts; |
| 3447 | 3447 | } |
| 3448 | - $chunk_total_pages = ceil( $total_posts / $chunk_per_page ); |
|
| 3448 | + $chunk_total_pages = ceil($total_posts / $chunk_per_page); |
|
| 3449 | 3449 | |
| 3450 | 3450 | $j = $chunk_page_no; |
| 3451 | - $chunk_save_posts = geodir_imex_get_posts( $post_type, $chunk_per_page, $j ); |
|
| 3451 | + $chunk_save_posts = geodir_imex_get_posts($post_type, $chunk_per_page, $j); |
|
| 3452 | 3452 | |
| 3453 | 3453 | $per_page = 500; |
| 3454 | 3454 | if ($per_page > $chunk_per_page) {
|
| 3455 | 3455 | $per_page = $chunk_per_page; |
| 3456 | 3456 | } |
| 3457 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3457 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3458 | 3458 | |
| 3459 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3460 | - $save_posts = array_slice( $chunk_save_posts , ( $i * $per_page ), $per_page ); |
|
| 3459 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3460 | + $save_posts = array_slice($chunk_save_posts, ($i * $per_page), $per_page); |
|
| 3461 | 3461 | |
| 3462 | 3462 | $clear = $i == 0 ? true : false; |
| 3463 | - geodir_save_csv_data( $file_path_temp, $save_posts, $clear ); |
|
| 3463 | + geodir_save_csv_data($file_path_temp, $save_posts, $clear); |
|
| 3464 | 3464 | } |
| 3465 | 3465 | |
| 3466 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3467 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3468 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3469 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3470 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3466 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3467 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3468 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3469 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3470 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3471 | 3471 | |
| 3472 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3473 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3472 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3473 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3474 | 3474 | } |
| 3475 | 3475 | |
| 3476 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3476 | + if (!empty($chunk_file_paths)) {
|
|
| 3477 | 3477 | $json['total'] = $posts_count; |
| 3478 | 3478 | $json['files'] = $chunk_file_paths; |
| 3479 | 3479 | } else {
|
@@ -3481,7 +3481,7 @@ discard block |
||
| 3481 | 3481 | $json['total'] = $posts_count; |
| 3482 | 3482 | $json['files'] = array(); |
| 3483 | 3483 | } else {
|
| 3484 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3484 | + $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3485 | 3485 | } |
| 3486 | 3486 | } |
| 3487 | 3487 | } |
@@ -3490,7 +3490,7 @@ discard block |
||
| 3490 | 3490 | $sitepress->switch_lang($active_lang, true); |
| 3491 | 3491 | } |
| 3492 | 3492 | // WPML |
| 3493 | - wp_send_json( $json ); |
|
| 3493 | + wp_send_json($json); |
|
| 3494 | 3494 | } |
| 3495 | 3495 | } |
| 3496 | 3496 | break; |
@@ -3504,20 +3504,20 @@ discard block |
||
| 3504 | 3504 | $sitepress->switch_lang('all', true);
|
| 3505 | 3505 | } |
| 3506 | 3506 | // WPML |
| 3507 | - $file_name = $post_type . 'category_' . date( 'dmyHi' ); |
|
| 3507 | + $file_name = $post_type.'category_'.date('dmyHi');
|
|
| 3508 | 3508 | |
| 3509 | - $terms_count = geodir_get_terms_count( $post_type ); |
|
| 3510 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3511 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3512 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3513 | - $file_path_temp = $csv_file_dir . '/' . $post_type . 'category_' . $nonce . '.csv'; |
|
| 3509 | + $terms_count = geodir_get_terms_count($post_type); |
|
| 3510 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3511 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3512 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3513 | + $file_path_temp = $csv_file_dir.'/'.$post_type.'category_'.$nonce.'.csv'; |
|
| 3514 | 3514 | |
| 3515 | 3515 | $chunk_file_paths = array(); |
| 3516 | 3516 | |
| 3517 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3518 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3519 | - $percentage = count( $terms_count ) > 0 && $line_count > 0 ? ceil( $line_count / $terms_count ) * 100 : 0; |
|
| 3520 | - $percentage = min( $percentage, 100 ); |
|
| 3517 | + if (isset($_REQUEST['_st'])) {
|
|
| 3518 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3519 | + $percentage = count($terms_count) > 0 && $line_count > 0 ? ceil($line_count / $terms_count) * 100 : 0; |
|
| 3520 | + $percentage = min($percentage, 100); |
|
| 3521 | 3521 | |
| 3522 | 3522 | $json['percentage'] = $percentage; |
| 3523 | 3523 | // WPML |
@@ -3525,48 +3525,48 @@ discard block |
||
| 3525 | 3525 | $sitepress->switch_lang($active_lang, true); |
| 3526 | 3526 | } |
| 3527 | 3527 | // WPML |
| 3528 | - wp_send_json( $json ); |
|
| 3528 | + wp_send_json($json); |
|
| 3529 | 3529 | } else {
|
| 3530 | - if ( !$terms_count > 0 ) {
|
|
| 3531 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3530 | + if (!$terms_count > 0) {
|
|
| 3531 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3532 | 3532 | } else {
|
| 3533 | 3533 | $total_terms = $terms_count; |
| 3534 | 3534 | if ($chunk_per_page > $terms_count) {
|
| 3535 | 3535 | $chunk_per_page = $terms_count; |
| 3536 | 3536 | } |
| 3537 | - $chunk_total_pages = ceil( $total_terms / $chunk_per_page ); |
|
| 3537 | + $chunk_total_pages = ceil($total_terms / $chunk_per_page); |
|
| 3538 | 3538 | |
| 3539 | 3539 | $j = $chunk_page_no; |
| 3540 | - $chunk_save_terms = geodir_imex_get_terms( $post_type, $chunk_per_page, $j ); |
|
| 3540 | + $chunk_save_terms = geodir_imex_get_terms($post_type, $chunk_per_page, $j); |
|
| 3541 | 3541 | |
| 3542 | 3542 | $per_page = 500; |
| 3543 | 3543 | if ($per_page > $chunk_per_page) {
|
| 3544 | 3544 | $per_page = $chunk_per_page; |
| 3545 | 3545 | } |
| 3546 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3546 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3547 | 3547 | |
| 3548 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3549 | - $save_terms = array_slice( $chunk_save_terms , ( $i * $per_page ), $per_page ); |
|
| 3548 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3549 | + $save_terms = array_slice($chunk_save_terms, ($i * $per_page), $per_page); |
|
| 3550 | 3550 | |
| 3551 | 3551 | $clear = $i == 0 ? true : false; |
| 3552 | - geodir_save_csv_data( $file_path_temp, $save_terms, $clear ); |
|
| 3552 | + geodir_save_csv_data($file_path_temp, $save_terms, $clear); |
|
| 3553 | 3553 | } |
| 3554 | 3554 | |
| 3555 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3556 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3557 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3558 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3559 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3555 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3556 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3557 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3558 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3559 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3560 | 3560 | |
| 3561 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3562 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3561 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3562 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3563 | 3563 | } |
| 3564 | 3564 | |
| 3565 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3565 | + if (!empty($chunk_file_paths)) {
|
|
| 3566 | 3566 | $json['total'] = $terms_count; |
| 3567 | 3567 | $json['files'] = $chunk_file_paths; |
| 3568 | 3568 | } else {
|
| 3569 | - $json['error'] = __( 'ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory' ); |
|
| 3569 | + $json['error'] = __('ERROR: Could not create csv file. This is usually due to inconsistent file permissions.', 'geodirectory');
|
|
| 3570 | 3570 | } |
| 3571 | 3571 | } |
| 3572 | 3572 | // WPML |
@@ -3574,127 +3574,127 @@ discard block |
||
| 3574 | 3574 | $sitepress->switch_lang($active_lang, true); |
| 3575 | 3575 | } |
| 3576 | 3576 | // WPML |
| 3577 | - wp_send_json( $json ); |
|
| 3577 | + wp_send_json($json); |
|
| 3578 | 3578 | } |
| 3579 | 3579 | } |
| 3580 | 3580 | break; |
| 3581 | 3581 | case 'export_locations': {
|
| 3582 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3583 | - $file_name = 'gd_locations_' . date( 'dmyHi' ); |
|
| 3584 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3585 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3586 | - $file_path_temp = $csv_file_dir . '/gd_locations_' . $nonce . '.csv'; |
|
| 3582 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3583 | + $file_name = 'gd_locations_'.date('dmyHi');
|
|
| 3584 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3585 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3586 | + $file_path_temp = $csv_file_dir.'/gd_locations_'.$nonce.'.csv'; |
|
| 3587 | 3587 | |
| 3588 | - $items_count = (int)geodir_location_imex_count_locations(); |
|
| 3588 | + $items_count = (int) geodir_location_imex_count_locations(); |
|
| 3589 | 3589 | |
| 3590 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3591 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3592 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3593 | - $percentage = min( $percentage, 100 ); |
|
| 3590 | + if (isset($_REQUEST['_st'])) {
|
|
| 3591 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3592 | + $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0; |
|
| 3593 | + $percentage = min($percentage, 100); |
|
| 3594 | 3594 | |
| 3595 | 3595 | $json['percentage'] = $percentage; |
| 3596 | - wp_send_json( $json ); |
|
| 3596 | + wp_send_json($json); |
|
| 3597 | 3597 | } else {
|
| 3598 | 3598 | $chunk_file_paths = array(); |
| 3599 | 3599 | |
| 3600 | - if ( !$items_count > 0 ) {
|
|
| 3601 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3600 | + if (!$items_count > 0) {
|
|
| 3601 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3602 | 3602 | } else {
|
| 3603 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3604 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3603 | + $chunk_per_page = min($chunk_per_page, $items_count); |
|
| 3604 | + $chunk_total_pages = ceil($items_count / $chunk_per_page); |
|
| 3605 | 3605 | |
| 3606 | 3606 | $j = $chunk_page_no; |
| 3607 | - $chunk_save_items = geodir_location_imex_locations_data( $chunk_per_page, $j ); |
|
| 3607 | + $chunk_save_items = geodir_location_imex_locations_data($chunk_per_page, $j); |
|
| 3608 | 3608 | |
| 3609 | 3609 | $per_page = 500; |
| 3610 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3611 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3610 | + $per_page = min($per_page, $chunk_per_page); |
|
| 3611 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3612 | 3612 | |
| 3613 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3614 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3613 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3614 | + $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page); |
|
| 3615 | 3615 | |
| 3616 | 3616 | $clear = $i == 0 ? true : false; |
| 3617 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3617 | + geodir_save_csv_data($file_path_temp, $save_items, $clear); |
|
| 3618 | 3618 | } |
| 3619 | 3619 | |
| 3620 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3621 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3622 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3623 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3624 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3620 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3621 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3622 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3623 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3624 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3625 | 3625 | |
| 3626 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3627 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3626 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3627 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3628 | 3628 | } |
| 3629 | 3629 | |
| 3630 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3630 | + if (!empty($chunk_file_paths)) {
|
|
| 3631 | 3631 | $json['total'] = $items_count; |
| 3632 | 3632 | $json['files'] = $chunk_file_paths; |
| 3633 | 3633 | } else {
|
| 3634 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3634 | + $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
|
|
| 3635 | 3635 | } |
| 3636 | 3636 | } |
| 3637 | - wp_send_json( $json ); |
|
| 3637 | + wp_send_json($json); |
|
| 3638 | 3638 | } |
| 3639 | 3639 | } |
| 3640 | 3640 | break; |
| 3641 | 3641 | case 'export_hoods': {
|
| 3642 | - $file_url_base = geodir_path_import_export() . '/'; |
|
| 3643 | - $file_name = 'gd_neighbourhoods_' . date( 'dmyHi' ); |
|
| 3644 | - $file_url = $file_url_base . $file_name . '.csv'; |
|
| 3645 | - $file_path = $csv_file_dir . '/' . $file_name . '.csv'; |
|
| 3646 | - $file_path_temp = $csv_file_dir . '/gd_neighbourhoods_' . $nonce . '.csv'; |
|
| 3642 | + $file_url_base = geodir_path_import_export().'/'; |
|
| 3643 | + $file_name = 'gd_neighbourhoods_'.date('dmyHi');
|
|
| 3644 | + $file_url = $file_url_base.$file_name.'.csv'; |
|
| 3645 | + $file_path = $csv_file_dir.'/'.$file_name.'.csv'; |
|
| 3646 | + $file_path_temp = $csv_file_dir.'/gd_neighbourhoods_'.$nonce.'.csv'; |
|
| 3647 | 3647 | |
| 3648 | - $items_count = (int)geodir_location_imex_count_neighbourhoods(); |
|
| 3648 | + $items_count = (int) geodir_location_imex_count_neighbourhoods(); |
|
| 3649 | 3649 | |
| 3650 | - if ( isset( $_REQUEST['_st'] ) ) {
|
|
| 3651 | - $line_count = (int)geodir_import_export_line_count( $file_path_temp ); |
|
| 3652 | - $percentage = count( $items_count ) > 0 && $line_count > 0 ? ceil( $line_count / $items_count ) * 100 : 0; |
|
| 3653 | - $percentage = min( $percentage, 100 ); |
|
| 3650 | + if (isset($_REQUEST['_st'])) {
|
|
| 3651 | + $line_count = (int) geodir_import_export_line_count($file_path_temp); |
|
| 3652 | + $percentage = count($items_count) > 0 && $line_count > 0 ? ceil($line_count / $items_count) * 100 : 0; |
|
| 3653 | + $percentage = min($percentage, 100); |
|
| 3654 | 3654 | |
| 3655 | 3655 | $json['percentage'] = $percentage; |
| 3656 | - wp_send_json( $json ); |
|
| 3656 | + wp_send_json($json); |
|
| 3657 | 3657 | } else {
|
| 3658 | 3658 | $chunk_file_paths = array(); |
| 3659 | 3659 | |
| 3660 | - if ( !$items_count > 0 ) {
|
|
| 3661 | - $json['error'] = __( 'No records to export.', 'geodirectory' ); |
|
| 3660 | + if (!$items_count > 0) {
|
|
| 3661 | + $json['error'] = __('No records to export.', 'geodirectory');
|
|
| 3662 | 3662 | } else {
|
| 3663 | - $chunk_per_page = min( $chunk_per_page, $items_count ); |
|
| 3664 | - $chunk_total_pages = ceil( $items_count / $chunk_per_page ); |
|
| 3663 | + $chunk_per_page = min($chunk_per_page, $items_count); |
|
| 3664 | + $chunk_total_pages = ceil($items_count / $chunk_per_page); |
|
| 3665 | 3665 | |
| 3666 | 3666 | $j = $chunk_page_no; |
| 3667 | - $chunk_save_items = geodir_location_imex_neighbourhoods_data( $chunk_per_page, $j ); |
|
| 3667 | + $chunk_save_items = geodir_location_imex_neighbourhoods_data($chunk_per_page, $j); |
|
| 3668 | 3668 | |
| 3669 | 3669 | $per_page = 500; |
| 3670 | - $per_page = min( $per_page, $chunk_per_page ); |
|
| 3671 | - $total_pages = ceil( $chunk_per_page / $per_page ); |
|
| 3670 | + $per_page = min($per_page, $chunk_per_page); |
|
| 3671 | + $total_pages = ceil($chunk_per_page / $per_page); |
|
| 3672 | 3672 | |
| 3673 | - for ( $i = 0; $i <= $total_pages; $i++ ) {
|
|
| 3674 | - $save_items = array_slice( $chunk_save_items , ( $i * $per_page ), $per_page ); |
|
| 3673 | + for ($i = 0; $i <= $total_pages; $i++) {
|
|
| 3674 | + $save_items = array_slice($chunk_save_items, ($i * $per_page), $per_page); |
|
| 3675 | 3675 | |
| 3676 | 3676 | $clear = $i == 0 ? true : false; |
| 3677 | - geodir_save_csv_data( $file_path_temp, $save_items, $clear ); |
|
| 3677 | + geodir_save_csv_data($file_path_temp, $save_items, $clear); |
|
| 3678 | 3678 | } |
| 3679 | 3679 | |
| 3680 | - if ( $wp_filesystem->exists( $file_path_temp ) ) {
|
|
| 3681 | - $chunk_page_no = $chunk_total_pages > 1 ? '-' . $j : ''; |
|
| 3682 | - $chunk_file_name = $file_name . $chunk_page_no . '.csv'; |
|
| 3683 | - $file_path = $csv_file_dir . '/' . $chunk_file_name; |
|
| 3684 | - $wp_filesystem->move( $file_path_temp, $file_path, true ); |
|
| 3680 | + if ($wp_filesystem->exists($file_path_temp)) {
|
|
| 3681 | + $chunk_page_no = $chunk_total_pages > 1 ? '-'.$j : ''; |
|
| 3682 | + $chunk_file_name = $file_name.$chunk_page_no.'.csv'; |
|
| 3683 | + $file_path = $csv_file_dir.'/'.$chunk_file_name; |
|
| 3684 | + $wp_filesystem->move($file_path_temp, $file_path, true); |
|
| 3685 | 3685 | |
| 3686 | - $file_url = $file_url_base . $chunk_file_name; |
|
| 3687 | - $chunk_file_paths[] = array('i' => $j . '.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3686 | + $file_url = $file_url_base.$chunk_file_name; |
|
| 3687 | + $chunk_file_paths[] = array('i' => $j.'.', 'u' => $file_url, 's' => size_format(filesize($file_path), 2));
|
|
| 3688 | 3688 | } |
| 3689 | 3689 | |
| 3690 | - if ( !empty($chunk_file_paths) ) {
|
|
| 3690 | + if (!empty($chunk_file_paths)) {
|
|
| 3691 | 3691 | $json['total'] = $items_count; |
| 3692 | 3692 | $json['files'] = $chunk_file_paths; |
| 3693 | 3693 | } else {
|
| 3694 | - $json['error'] = __( 'Fail, something wrong to create csv file.', 'geodirectory' ); |
|
| 3694 | + $json['error'] = __('Fail, something wrong to create csv file.', 'geodirectory');
|
|
| 3695 | 3695 | } |
| 3696 | 3696 | } |
| 3697 | - wp_send_json( $json ); |
|
| 3697 | + wp_send_json($json); |
|
| 3698 | 3698 | } |
| 3699 | 3699 | } |
| 3700 | 3700 | break; |
@@ -3711,25 +3711,25 @@ discard block |
||
| 3711 | 3711 | } |
| 3712 | 3712 | // WPML |
| 3713 | 3713 | |
| 3714 | - ini_set( 'auto_detect_line_endings', true ); |
|
| 3714 | + ini_set('auto_detect_line_endings', true);
|
|
| 3715 | 3715 | |
| 3716 | 3716 | $uploads = wp_upload_dir(); |
| 3717 | 3717 | $uploads_dir = $uploads['path']; |
| 3718 | 3718 | $uploads_subdir = $uploads['subdir']; |
| 3719 | 3719 | |
| 3720 | - $csv_file = isset( $_POST['_file'] ) ? $_POST['_file'] : NULL; |
|
| 3721 | - $import_choice = isset( $_REQUEST['_ch'] ) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3720 | + $csv_file = isset($_POST['_file']) ? $_POST['_file'] : NULL; |
|
| 3721 | + $import_choice = isset($_REQUEST['_ch']) ? $_REQUEST['_ch'] : 'skip'; |
|
| 3722 | 3722 | |
| 3723 | - $csv_file_arr = explode( '/', $csv_file ); |
|
| 3724 | - $csv_filename = end( $csv_file_arr ); |
|
| 3725 | - $target_path = $uploads_dir . '/temp_' . $current_user->data->ID . '/' . $csv_filename; |
|
| 3723 | + $csv_file_arr = explode('/', $csv_file);
|
|
| 3724 | + $csv_filename = end($csv_file_arr); |
|
| 3725 | + $target_path = $uploads_dir.'/temp_'.$current_user->data->ID.'/'.$csv_filename; |
|
| 3726 | 3726 | |
| 3727 | 3727 | $json['file'] = $csv_file; |
| 3728 | - $json['error'] = __( 'The uploaded file is not a valid csv file. Please try again.', 'geodirectory' ); |
|
| 3728 | + $json['error'] = __('The uploaded file is not a valid csv file. Please try again.', 'geodirectory');
|
|
| 3729 | 3729 | $file = array(); |
| 3730 | 3730 | |
| 3731 | - if ( $csv_file && $wp_filesystem->is_file( $target_path ) && $wp_filesystem->exists( $target_path ) ) {
|
|
| 3732 | - $wp_filetype = wp_check_filetype_and_ext( $target_path, $csv_filename ); |
|
| 3731 | + if ($csv_file && $wp_filesystem->is_file($target_path) && $wp_filesystem->exists($target_path)) {
|
|
| 3732 | + $wp_filetype = wp_check_filetype_and_ext($target_path, $csv_filename); |
|
| 3733 | 3733 | |
| 3734 | 3734 | if (!empty($wp_filetype) && isset($wp_filetype['ext']) && geodir_strtolower($wp_filetype['ext']) == 'csv') {
|
| 3735 | 3735 | $json['error'] = NULL; |
@@ -3737,9 +3737,9 @@ discard block |
||
| 3737 | 3737 | |
| 3738 | 3738 | $lc_all = setlocale(LC_ALL, 0); // Fix issue of fgetcsv ignores special characters when they are at the beginning of line |
| 3739 | 3739 | setlocale(LC_ALL, 'en_US.UTF-8'); |
| 3740 | - if ( ( $handle = fopen($target_path, "r" ) ) !== FALSE ) {
|
|
| 3741 | - while ( ( $data = fgetcsv( $handle, 100000, "," ) ) !== FALSE ) {
|
|
| 3742 | - if ( !empty( $data ) ) {
|
|
| 3740 | + if (($handle = fopen($target_path, "r")) !== FALSE) {
|
|
| 3741 | + while (($data = fgetcsv($handle, 100000, ",")) !== FALSE) {
|
|
| 3742 | + if (!empty($data)) {
|
|
| 3743 | 3743 | $file[] = $data; |
| 3744 | 3744 | } |
| 3745 | 3745 | } |
@@ -3753,19 +3753,19 @@ discard block |
||
| 3753 | 3753 | $json['error'] = __('No data found in csv file.', 'geodirectory');
|
| 3754 | 3754 | } |
| 3755 | 3755 | } else {
|
| 3756 | - wp_send_json( $json ); |
|
| 3756 | + wp_send_json($json); |
|
| 3757 | 3757 | } |
| 3758 | 3758 | } else {
|
| 3759 | - wp_send_json( $json ); |
|
| 3759 | + wp_send_json($json); |
|
| 3760 | 3760 | } |
| 3761 | 3761 | |
| 3762 | - if ( $task == 'prepare_import' || !empty( $json['error'] ) ) {
|
|
| 3763 | - wp_send_json( $json ); |
|
| 3762 | + if ($task == 'prepare_import' || !empty($json['error'])) {
|
|
| 3763 | + wp_send_json($json); |
|
| 3764 | 3764 | } |
| 3765 | 3765 | |
| 3766 | 3766 | $total = $json['rows']; |
| 3767 | - $limit = isset($_POST['limit']) ? (int)$_POST['limit'] : 1; |
|
| 3768 | - $processed = isset($_POST['processed']) ? (int)$_POST['processed'] : 0; |
|
| 3767 | + $limit = isset($_POST['limit']) ? (int) $_POST['limit'] : 1; |
|
| 3768 | + $processed = isset($_POST['processed']) ? (int) $_POST['processed'] : 0; |
|
| 3769 | 3769 | |
| 3770 | 3770 | $count = $limit; |
| 3771 | 3771 | |
@@ -3790,13 +3790,13 @@ discard block |
||
| 3790 | 3790 | |
| 3791 | 3791 | $post_types = geodir_get_posttypes(); |
| 3792 | 3792 | |
| 3793 | - if ( $task == 'import_cat' ) {
|
|
| 3793 | + if ($task == 'import_cat') {
|
|
| 3794 | 3794 | if (!empty($file)) {
|
| 3795 | 3795 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 3796 | 3796 | |
| 3797 | 3797 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 3798 | 3798 | $json['error'] = CSV_INVAILD_FILE; |
| 3799 | - wp_send_json( $json ); |
|
| 3799 | + wp_send_json($json); |
|
| 3800 | 3800 | exit; |
| 3801 | 3801 | } |
| 3802 | 3802 | |
@@ -3807,7 +3807,7 @@ discard block |
||
| 3807 | 3807 | |
| 3808 | 3808 | if (isset($file[$index])) {
|
| 3809 | 3809 | $row = $file[$index]; |
| 3810 | - $row = array_map( 'trim', $row ); |
|
| 3810 | + $row = array_map('trim', $row);
|
|
| 3811 | 3811 | //$row = array_map( 'utf8_encode', $row ); |
| 3812 | 3812 | |
| 3813 | 3813 | $cat_id = ''; |
@@ -3824,42 +3824,42 @@ discard block |
||
| 3824 | 3824 | $cat_id_original = ''; |
| 3825 | 3825 | |
| 3826 | 3826 | $c = 0; |
| 3827 | - foreach ($columns as $column ) {
|
|
| 3828 | - if ( $column == 'cat_id' ) {
|
|
| 3829 | - $cat_id = (int)$row[$c]; |
|
| 3830 | - } else if ( $column == 'cat_name' ) {
|
|
| 3827 | + foreach ($columns as $column) {
|
|
| 3828 | + if ($column == 'cat_id') {
|
|
| 3829 | + $cat_id = (int) $row[$c]; |
|
| 3830 | + } else if ($column == 'cat_name') {
|
|
| 3831 | 3831 | $cat_name = $row[$c]; |
| 3832 | - } else if ( $column == 'cat_slug' ) {
|
|
| 3832 | + } else if ($column == 'cat_slug') {
|
|
| 3833 | 3833 | $cat_slug = $row[$c]; |
| 3834 | - } else if ( $column == 'cat_posttype' ) {
|
|
| 3834 | + } else if ($column == 'cat_posttype') {
|
|
| 3835 | 3835 | $cat_posttype = $row[$c]; |
| 3836 | - } else if ( $column == 'cat_parent' ) {
|
|
| 3836 | + } else if ($column == 'cat_parent') {
|
|
| 3837 | 3837 | $cat_parent = trim($row[$c]); |
| 3838 | - } else if ( $column == 'cat_schema' && $row[$c] != '' ) {
|
|
| 3838 | + } else if ($column == 'cat_schema' && $row[$c] != '') {
|
|
| 3839 | 3839 | $cat_schema = $row[$c]; |
| 3840 | - } else if ( $column == 'cat_description' ) {
|
|
| 3840 | + } else if ($column == 'cat_description') {
|
|
| 3841 | 3841 | $cat_description = $row[$c]; |
| 3842 | - } else if ( $column == 'cat_top_description' ) {
|
|
| 3842 | + } else if ($column == 'cat_top_description') {
|
|
| 3843 | 3843 | $cat_top_description = $row[$c]; |
| 3844 | - } else if ( $column == 'cat_image' ) {
|
|
| 3844 | + } else if ($column == 'cat_image') {
|
|
| 3845 | 3845 | $cat_image = $row[$c]; |
| 3846 | - } else if ( $column == 'cat_icon' ) {
|
|
| 3846 | + } else if ($column == 'cat_icon') {
|
|
| 3847 | 3847 | $cat_icon = $row[$c]; |
| 3848 | 3848 | } |
| 3849 | 3849 | // WPML |
| 3850 | - if ( $is_wpml ) {
|
|
| 3851 | - if ( $column == 'cat_language' ) {
|
|
| 3852 | - $cat_language = geodir_strtolower( trim( $row[$c] ) ); |
|
| 3853 | - } else if ( $column == 'cat_id_original' ) {
|
|
| 3854 | - $cat_id_original = (int)$row[$c]; |
|
| 3850 | + if ($is_wpml) {
|
|
| 3851 | + if ($column == 'cat_language') {
|
|
| 3852 | + $cat_language = geodir_strtolower(trim($row[$c])); |
|
| 3853 | + } else if ($column == 'cat_id_original') {
|
|
| 3854 | + $cat_id_original = (int) $row[$c]; |
|
| 3855 | 3855 | } |
| 3856 | 3856 | } |
| 3857 | 3857 | // WPML |
| 3858 | 3858 | $c++; |
| 3859 | 3859 | } |
| 3860 | 3860 | |
| 3861 | - if ( $cat_name == '' || !in_array( $cat_posttype, $post_types ) ) {
|
|
| 3862 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 3861 | + if ($cat_name == '' || !in_array($cat_posttype, $post_types)) {
|
|
| 3862 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
|
|
| 3863 | 3863 | |
| 3864 | 3864 | $invalid++; |
| 3865 | 3865 | continue; |
@@ -3877,24 +3877,24 @@ discard block |
||
| 3877 | 3877 | $term_data['description'] = $cat_description; |
| 3878 | 3878 | $term_data['cat_schema'] = $cat_schema; |
| 3879 | 3879 | $term_data['top_description'] = $cat_top_description; |
| 3880 | - $term_data['image'] = $cat_image != '' ? basename( $cat_image ) : ''; |
|
| 3881 | - $term_data['icon'] = $cat_icon != '' ? basename( $cat_icon ) : ''; |
|
| 3880 | + $term_data['image'] = $cat_image != '' ? basename($cat_image) : ''; |
|
| 3881 | + $term_data['icon'] = $cat_icon != '' ? basename($cat_icon) : ''; |
|
| 3882 | 3882 | |
| 3883 | 3883 | //$term_data = array_map( 'utf8_encode', $term_data ); |
| 3884 | 3884 | |
| 3885 | - $taxonomy = $cat_posttype . 'category'; |
|
| 3885 | + $taxonomy = $cat_posttype.'category'; |
|
| 3886 | 3886 | |
| 3887 | 3887 | $term_data['taxonomy'] = $taxonomy; |
| 3888 | 3888 | |
| 3889 | 3889 | $term_parent_id = 0; |
| 3890 | - if ($cat_parent != "" || (int)$cat_parent > 0) {
|
|
| 3890 | + if ($cat_parent != "" || (int) $cat_parent > 0) {
|
|
| 3891 | 3891 | $term_parent = ''; |
| 3892 | 3892 | |
| 3893 | - if ( $term_parent = get_term_by( 'name', $cat_parent, $taxonomy ) ) {
|
|
| 3893 | + if ($term_parent = get_term_by('name', $cat_parent, $taxonomy)) {
|
|
| 3894 | 3894 | // |
| 3895 | - } else if ( $term_parent = get_term_by( 'slug', $cat_parent, $taxonomy ) ) {
|
|
| 3895 | + } else if ($term_parent = get_term_by('slug', $cat_parent, $taxonomy)) {
|
|
| 3896 | 3896 | // |
| 3897 | - } else if ( $term_parent = get_term_by( 'id', $cat_parent, $taxonomy ) ) {
|
|
| 3897 | + } else if ($term_parent = get_term_by('id', $cat_parent, $taxonomy)) {
|
|
| 3898 | 3898 | // |
| 3899 | 3899 | } else {
|
| 3900 | 3900 | $term_parent_data = array(); |
@@ -3902,104 +3902,104 @@ discard block |
||
| 3902 | 3902 | //$term_parent_data = array_map( 'utf8_encode', $term_parent_data ); |
| 3903 | 3903 | $term_parent_data['taxonomy'] = $taxonomy; |
| 3904 | 3904 | |
| 3905 | - $term_parent_id = (int)geodir_imex_insert_term( $taxonomy, $term_parent_data ); |
|
| 3905 | + $term_parent_id = (int) geodir_imex_insert_term($taxonomy, $term_parent_data); |
|
| 3906 | 3906 | } |
| 3907 | 3907 | |
| 3908 | - if ( !empty( $term_parent ) && !is_wp_error( $term_parent ) ) {
|
|
| 3909 | - $term_parent_id = (int)$term_parent->term_id; |
|
| 3908 | + if (!empty($term_parent) && !is_wp_error($term_parent)) {
|
|
| 3909 | + $term_parent_id = (int) $term_parent->term_id; |
|
| 3910 | 3910 | } |
| 3911 | 3911 | } |
| 3912 | - $term_data['parent'] = (int)$term_parent_id; |
|
| 3912 | + $term_data['parent'] = (int) $term_parent_id; |
|
| 3913 | 3913 | |
| 3914 | 3914 | $term_id = NULL; |
| 3915 | - if ( $import_choice == 'update' ) {
|
|
| 3916 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3915 | + if ($import_choice == 'update') {
|
|
| 3916 | + if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
|
|
| 3917 | 3917 | $term_data['term_id'] = $term['term_id']; |
| 3918 | 3918 | |
| 3919 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3919 | + if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
|
|
| 3920 | 3920 | $updated++; |
| 3921 | 3921 | } else {
|
| 3922 | 3922 | $invalid++; |
| 3923 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3923 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3924 | 3924 | } |
| 3925 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3925 | + } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 3926 | 3926 | $term_data['term_id'] = $term['term_id']; |
| 3927 | 3927 | |
| 3928 | - if ( $term_id = geodir_imex_update_term( $taxonomy, $term_data ) ) {
|
|
| 3928 | + if ($term_id = geodir_imex_update_term($taxonomy, $term_data)) {
|
|
| 3929 | 3929 | $updated++; |
| 3930 | 3930 | } else {
|
| 3931 | 3931 | $invalid++; |
| 3932 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3932 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3933 | 3933 | } |
| 3934 | 3934 | } else {
|
| 3935 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3935 | + if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
|
|
| 3936 | 3936 | $created++; |
| 3937 | 3937 | } else {
|
| 3938 | 3938 | $invalid++; |
| 3939 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3939 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3940 | 3940 | } |
| 3941 | 3941 | } |
| 3942 | - } else if ( $import_choice == 'skip' ) {
|
|
| 3943 | - if ( $cat_id > 0 && $term = (array)term_exists( $cat_id, $taxonomy ) ) {
|
|
| 3942 | + } else if ($import_choice == 'skip') {
|
|
| 3943 | + if ($cat_id > 0 && $term = (array) term_exists($cat_id, $taxonomy)) {
|
|
| 3944 | 3944 | $skipped++; |
| 3945 | - } else if ( $term_data['slug'] != '' && $term = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 3945 | + } else if ($term_data['slug'] != '' && $term = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 3946 | 3946 | $skipped++; |
| 3947 | 3947 | } else {
|
| 3948 | - if ( $term_id = geodir_imex_insert_term( $taxonomy, $term_data ) ) {
|
|
| 3948 | + if ($term_id = geodir_imex_insert_term($taxonomy, $term_data)) {
|
|
| 3949 | 3949 | $created++; |
| 3950 | 3950 | } else {
|
| 3951 | 3951 | $invalid++; |
| 3952 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3952 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be updated due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3953 | 3953 | } |
| 3954 | 3954 | } |
| 3955 | 3955 | } else {
|
| 3956 | 3956 | $invalid++; |
| 3957 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory' ) ); |
|
| 3957 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to invalid data (check & remove if any invalid characters used in data)', 'geodirectory'));
|
|
| 3958 | 3958 | } |
| 3959 | 3959 | |
| 3960 | - if ( $term_id ) {
|
|
| 3960 | + if ($term_id) {
|
|
| 3961 | 3961 | // WPML |
| 3962 | 3962 | if ($is_wpml && $cat_id_original > 0 && $cat_language != '') {
|
| 3963 | - $wpml_element_type = 'tax_' . $taxonomy; |
|
| 3964 | - $source_language = geodir_get_language_for_element( $cat_id_original, $wpml_element_type ); |
|
| 3963 | + $wpml_element_type = 'tax_'.$taxonomy; |
|
| 3964 | + $source_language = geodir_get_language_for_element($cat_id_original, $wpml_element_type); |
|
| 3965 | 3965 | $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
| 3966 | 3966 | |
| 3967 | - $trid = $sitepress->get_element_trid( $cat_id_original, $wpml_element_type ); |
|
| 3967 | + $trid = $sitepress->get_element_trid($cat_id_original, $wpml_element_type); |
|
| 3968 | 3968 | |
| 3969 | - $sitepress->set_element_language_details( $term_id, $wpml_element_type, $trid, $cat_language, $source_language ); |
|
| 3969 | + $sitepress->set_element_language_details($term_id, $wpml_element_type, $trid, $cat_language, $source_language); |
|
| 3970 | 3970 | } |
| 3971 | 3971 | // WPML |
| 3972 | 3972 | |
| 3973 | - if ( isset( $term_data['top_description'] ) ) {
|
|
| 3974 | - update_tax_meta( $term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype ); |
|
| 3973 | + if (isset($term_data['top_description'])) {
|
|
| 3974 | + update_tax_meta($term_id, 'ct_cat_top_desc', $term_data['top_description'], $cat_posttype); |
|
| 3975 | 3975 | } |
| 3976 | 3976 | |
| 3977 | - if ( isset( $term_data['cat_schema'] ) ) {
|
|
| 3978 | - update_tax_meta( $term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype ); |
|
| 3977 | + if (isset($term_data['cat_schema'])) {
|
|
| 3978 | + update_tax_meta($term_id, 'ct_cat_schema', $term_data['cat_schema'], $cat_posttype); |
|
| 3979 | 3979 | } |
| 3980 | 3980 | |
| 3981 | 3981 | $attachment = false; |
| 3982 | - if ( isset( $term_data['image'] ) && $term_data['image'] != '' ) {
|
|
| 3983 | - $cat_image = geodir_get_default_catimage( $term_id, $cat_posttype ); |
|
| 3984 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 3982 | + if (isset($term_data['image']) && $term_data['image'] != '') {
|
|
| 3983 | + $cat_image = geodir_get_default_catimage($term_id, $cat_posttype); |
|
| 3984 | + $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; |
|
| 3985 | 3985 | |
| 3986 | - if ( basename($cat_image) != $term_data['image'] ) {
|
|
| 3986 | + if (basename($cat_image) != $term_data['image']) {
|
|
| 3987 | 3987 | $attachment = true; |
| 3988 | - update_tax_meta( $term_id, 'ct_cat_default_img', array( 'id' => 'image', 'src' => $uploads['url'] . '/' . $term_data['image'] ), $cat_posttype ); |
|
| 3988 | + update_tax_meta($term_id, 'ct_cat_default_img', array('id' => 'image', 'src' => $uploads['url'].'/'.$term_data['image']), $cat_posttype);
|
|
| 3989 | 3989 | } |
| 3990 | 3990 | } |
| 3991 | 3991 | |
| 3992 | - if ( isset( $term_data['icon'] ) && $term_data['icon'] != '' ) {
|
|
| 3993 | - $cat_icon = get_tax_meta( $term_id, 'ct_cat_icon', false, $cat_posttype ); |
|
| 3994 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 3992 | + if (isset($term_data['icon']) && $term_data['icon'] != '') {
|
|
| 3993 | + $cat_icon = get_tax_meta($term_id, 'ct_cat_icon', false, $cat_posttype); |
|
| 3994 | + $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : ''; |
|
| 3995 | 3995 | |
| 3996 | - if ( basename($cat_icon) != $term_data['icon'] ) {
|
|
| 3996 | + if (basename($cat_icon) != $term_data['icon']) {
|
|
| 3997 | 3997 | $attachment = true; |
| 3998 | - update_tax_meta( $term_id, 'ct_cat_icon', array( 'id' => 'icon', 'src' => $uploads['url'] . '/' . $term_data['icon'] ), $cat_posttype ); |
|
| 3998 | + update_tax_meta($term_id, 'ct_cat_icon', array('id' => 'icon', 'src' => $uploads['url'].'/'.$term_data['icon']), $cat_posttype);
|
|
| 3999 | 3999 | } |
| 4000 | 4000 | } |
| 4001 | 4001 | |
| 4002 | - if ( $attachment ) {
|
|
| 4002 | + if ($attachment) {
|
|
| 4003 | 4003 | $images++; |
| 4004 | 4004 | } |
| 4005 | 4005 | } |
@@ -4021,35 +4021,35 @@ discard block |
||
| 4021 | 4021 | $json['invalid'] = $invalid; |
| 4022 | 4022 | $json['images'] = $images; |
| 4023 | 4023 | |
| 4024 | - wp_send_json( $json ); |
|
| 4024 | + wp_send_json($json); |
|
| 4025 | 4025 | exit; |
| 4026 | - } else if ( $task == 'import_post' ) {
|
|
| 4027 | - $xtimings['###1'] = microtime(true)-$xstart; |
|
| 4026 | + } else if ($task == 'import_post') {
|
|
| 4027 | + $xtimings['###1'] = microtime(true) - $xstart; |
|
| 4028 | 4028 | //run some stuff to make the import quicker |
| 4029 | - wp_defer_term_counting( true ); |
|
| 4030 | - wp_defer_comment_counting( true ); |
|
| 4031 | - $wpdb->query( 'SET autocommit = 0;' ); |
|
| 4029 | + wp_defer_term_counting(true); |
|
| 4030 | + wp_defer_comment_counting(true); |
|
| 4031 | + $wpdb->query('SET autocommit = 0;');
|
|
| 4032 | 4032 | // |
| 4033 | 4033 | // remove_all_actions('publish_post');
|
| 4034 | 4034 | // remove_all_actions('transition_post_status');
|
| 4035 | 4035 | // remove_all_actions('publish_future_post');
|
| 4036 | 4036 | |
| 4037 | 4037 | if (!empty($file)) {
|
| 4038 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4038 | + $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 4039 | 4039 | $wp_post_statuses = get_post_statuses(); // All of the WordPress supported post statuses. |
| 4040 | 4040 | $default_status = 'publish'; |
| 4041 | - $current_date = date_i18n( 'Y-m-d', time() ); |
|
| 4041 | + $current_date = date_i18n('Y-m-d', time());
|
|
| 4042 | 4042 | |
| 4043 | 4043 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 4044 | 4044 | |
| 4045 | 4045 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4046 | 4046 | $json['error'] = CSV_INVAILD_FILE; |
| 4047 | - wp_send_json( $json ); |
|
| 4047 | + wp_send_json($json); |
|
| 4048 | 4048 | exit; |
| 4049 | 4049 | } |
| 4050 | - $xtimings['###2'] = microtime(true)-$xstart; |
|
| 4050 | + $xtimings['###2'] = microtime(true) - $xstart; |
|
| 4051 | 4051 | $gd_error_log = __('GD IMPORT LISTINGS [ROW %d]:', 'geodirectory');
|
| 4052 | - $wp_chars_error = __( '(check & remove if any invalid characters used in data)', 'geodirectory' ); |
|
| 4052 | + $wp_chars_error = __('(check & remove if any invalid characters used in data)', 'geodirectory');
|
|
| 4053 | 4053 | $processed_actual = 0; |
| 4054 | 4054 | for ($i = 1; $i <= $limit; $i++) {
|
| 4055 | 4055 | $index = $processed + $i; |
@@ -4058,9 +4058,9 @@ discard block |
||
| 4058 | 4058 | if (isset($file[$index])) {
|
| 4059 | 4059 | $processed_actual++; |
| 4060 | 4060 | $row = $file[$index]; |
| 4061 | - $row = array_map( 'trim', $row ); |
|
| 4061 | + $row = array_map('trim', $row);
|
|
| 4062 | 4062 | //$row = array_map( 'utf8_encode', $row ); |
| 4063 | - $row = array_map( 'addslashes_gpc', $row ); |
|
| 4063 | + $row = array_map('addslashes_gpc', $row);
|
|
| 4064 | 4064 | |
| 4065 | 4065 | $post_id = ''; |
| 4066 | 4066 | $post_title = ''; |
@@ -4097,78 +4097,78 @@ discard block |
||
| 4097 | 4097 | $original_post_id = ''; |
| 4098 | 4098 | |
| 4099 | 4099 | $c = 0; |
| 4100 | - foreach ($columns as $column ) {
|
|
| 4100 | + foreach ($columns as $column) {
|
|
| 4101 | 4101 | $gd_post[$column] = $row[$c]; |
| 4102 | 4102 | |
| 4103 | - if ( $column == 'post_id' ) {
|
|
| 4103 | + if ($column == 'post_id') {
|
|
| 4104 | 4104 | $post_id = $row[$c]; |
| 4105 | - } else if ( $column == 'post_title' ) {
|
|
| 4105 | + } else if ($column == 'post_title') {
|
|
| 4106 | 4106 | $post_title = sanitize_text_field($row[$c]); |
| 4107 | - } else if ( $column == 'post_author' ) {
|
|
| 4107 | + } else if ($column == 'post_author') {
|
|
| 4108 | 4108 | $post_author = $row[$c]; |
| 4109 | - } else if ( $column == 'post_content' ) {
|
|
| 4109 | + } else if ($column == 'post_content') {
|
|
| 4110 | 4110 | $post_content = $row[$c]; |
| 4111 | - } else if ( $column == 'post_category' && $row[$c] != '' ) {
|
|
| 4112 | - $post_category_arr = explode( ',', $row[$c] ); |
|
| 4113 | - } else if ( $column == 'default_category' ) {
|
|
| 4111 | + } else if ($column == 'post_category' && $row[$c] != '') {
|
|
| 4112 | + $post_category_arr = explode(',', $row[$c]);
|
|
| 4113 | + } else if ($column == 'default_category') {
|
|
| 4114 | 4114 | $default_category = wp_kses_normalize_entities($row[$c]); |
| 4115 | - } else if ( $column == 'post_tags' && $row[$c] != '' ) {
|
|
| 4116 | - $post_tags = explode( ',', sanitize_text_field($row[$c]) ); |
|
| 4117 | - } else if ( $column == 'post_type' ) {
|
|
| 4115 | + } else if ($column == 'post_tags' && $row[$c] != '') {
|
|
| 4116 | + $post_tags = explode(',', sanitize_text_field($row[$c]));
|
|
| 4117 | + } else if ($column == 'post_type') {
|
|
| 4118 | 4118 | $post_type = $row[$c]; |
| 4119 | - } else if ( $column == 'post_status' ) {
|
|
| 4120 | - $post_status = sanitize_key( $row[$c] ); |
|
| 4121 | - } else if ( $column == 'is_featured' ) {
|
|
| 4122 | - $is_featured = (int)$row[$c]; |
|
| 4123 | - } else if ( $column == 'geodir_video' ) {
|
|
| 4119 | + } else if ($column == 'post_status') {
|
|
| 4120 | + $post_status = sanitize_key($row[$c]); |
|
| 4121 | + } else if ($column == 'is_featured') {
|
|
| 4122 | + $is_featured = (int) $row[$c]; |
|
| 4123 | + } else if ($column == 'geodir_video') {
|
|
| 4124 | 4124 | $geodir_video = $row[$c]; |
| 4125 | - } else if ( $column == 'post_address' ) {
|
|
| 4125 | + } else if ($column == 'post_address') {
|
|
| 4126 | 4126 | $post_address = sanitize_text_field($row[$c]); |
| 4127 | - } else if ( $column == 'post_city' ) {
|
|
| 4127 | + } else if ($column == 'post_city') {
|
|
| 4128 | 4128 | $post_city = sanitize_text_field($row[$c]); |
| 4129 | - } else if ( $column == 'post_region' ) {
|
|
| 4129 | + } else if ($column == 'post_region') {
|
|
| 4130 | 4130 | $post_region = sanitize_text_field($row[$c]); |
| 4131 | - } else if ( $column == 'post_country' ) {
|
|
| 4131 | + } else if ($column == 'post_country') {
|
|
| 4132 | 4132 | $post_country = sanitize_text_field($row[$c]); |
| 4133 | - } else if ( $column == 'post_zip' ) {
|
|
| 4133 | + } else if ($column == 'post_zip') {
|
|
| 4134 | 4134 | $post_zip = sanitize_text_field($row[$c]); |
| 4135 | - } else if ( $column == 'post_latitude' ) {
|
|
| 4135 | + } else if ($column == 'post_latitude') {
|
|
| 4136 | 4136 | $post_latitude = sanitize_text_field($row[$c]); |
| 4137 | - } else if ( $column == 'post_longitude' ) {
|
|
| 4137 | + } else if ($column == 'post_longitude') {
|
|
| 4138 | 4138 | $post_longitude = sanitize_text_field($row[$c]); |
| 4139 | - } else if ( $column == 'post_neighbourhood' ) {
|
|
| 4139 | + } else if ($column == 'post_neighbourhood') {
|
|
| 4140 | 4140 | $post_neighbourhood = sanitize_text_field($row[$c]); |
| 4141 | 4141 | unset($gd_post[$column]); |
| 4142 | - } else if ( $column == 'neighbourhood_latitude' ) {
|
|
| 4142 | + } else if ($column == 'neighbourhood_latitude') {
|
|
| 4143 | 4143 | $neighbourhood_latitude = sanitize_text_field($row[$c]); |
| 4144 | - } else if ( $column == 'neighbourhood_longitude' ) {
|
|
| 4144 | + } else if ($column == 'neighbourhood_longitude') {
|
|
| 4145 | 4145 | $neighbourhood_longitude = sanitize_text_field($row[$c]); |
| 4146 | - } else if ( $column == 'geodir_timing' ) {
|
|
| 4146 | + } else if ($column == 'geodir_timing') {
|
|
| 4147 | 4147 | $geodir_timing = sanitize_text_field($row[$c]); |
| 4148 | - } else if ( $column == 'geodir_contact' ) {
|
|
| 4148 | + } else if ($column == 'geodir_contact') {
|
|
| 4149 | 4149 | $geodir_contact = sanitize_text_field($row[$c]); |
| 4150 | - } else if ( $column == 'geodir_email' ) {
|
|
| 4150 | + } else if ($column == 'geodir_email') {
|
|
| 4151 | 4151 | $geodir_email = sanitize_email($row[$c]); |
| 4152 | - } else if ( $column == 'geodir_website' ) {
|
|
| 4152 | + } else if ($column == 'geodir_website') {
|
|
| 4153 | 4153 | $geodir_website = sanitize_text_field($row[$c]); |
| 4154 | - } else if ( $column == 'geodir_twitter' ) {
|
|
| 4154 | + } else if ($column == 'geodir_twitter') {
|
|
| 4155 | 4155 | $geodir_twitter = sanitize_text_field($row[$c]); |
| 4156 | - } else if ( $column == 'geodir_facebook' ) {
|
|
| 4156 | + } else if ($column == 'geodir_facebook') {
|
|
| 4157 | 4157 | $geodir_facebook = sanitize_text_field($row[$c]); |
| 4158 | - } else if ( $column == 'IMAGE' && !empty( $row[$c] ) && $row[$c] != '' ) {
|
|
| 4158 | + } else if ($column == 'IMAGE' && !empty($row[$c]) && $row[$c] != '') {
|
|
| 4159 | 4159 | $post_images[] = $row[$c]; |
| 4160 | - } else if ( $column == 'alive_days' && (int)$row[$c] > 0 ) {
|
|
| 4161 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$row[$c] . ' days' ) ); |
|
| 4162 | - } else if ( $column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never' ) {
|
|
| 4160 | + } else if ($column == 'alive_days' && (int) $row[$c] > 0) {
|
|
| 4161 | + $expire_date = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $row[$c].' days'));
|
|
| 4162 | + } else if ($column == 'expire_date' && $row[$c] != '' && geodir_strtolower($row[$c]) != 'never') {
|
|
| 4163 | 4163 | $row[$c] = str_replace('/', '-', $row[$c]);
|
| 4164 | - $expire_date = date_i18n( 'Y-m-d', strtotime( $row[$c] ) ); |
|
| 4164 | + $expire_date = date_i18n('Y-m-d', strtotime($row[$c]));
|
|
| 4165 | 4165 | } |
| 4166 | 4166 | // WPML |
| 4167 | 4167 | if ($is_wpml) {
|
| 4168 | 4168 | if ($column == 'language') {
|
| 4169 | 4169 | $language = geodir_strtolower(trim($row[$c])); |
| 4170 | 4170 | } else if ($column == 'original_post_id') {
|
| 4171 | - $original_post_id = (int)$row[$c]; |
|
| 4171 | + $original_post_id = (int) $row[$c]; |
|
| 4172 | 4172 | } |
| 4173 | 4173 | } |
| 4174 | 4174 | // WPML |
@@ -4176,7 +4176,7 @@ discard block |
||
| 4176 | 4176 | } |
| 4177 | 4177 | // listing claimed or not |
| 4178 | 4178 | if ($is_claim_active && isset($gd_post['claimed'])) {
|
| 4179 | - $gd_post['claimed'] = (int)$gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4179 | + $gd_post['claimed'] = (int) $gd_post['claimed'] == 1 ? 1 : 0; |
|
| 4180 | 4180 | } |
| 4181 | 4181 | |
| 4182 | 4182 | // WPML |
@@ -4187,43 +4187,43 @@ discard block |
||
| 4187 | 4187 | |
| 4188 | 4188 | $gd_post['IMAGE'] = $post_images; |
| 4189 | 4189 | |
| 4190 | - $post_status = !empty( $post_status ) ? sanitize_key( $post_status ) : $default_status; |
|
| 4191 | - $post_status = !empty( $wp_post_statuses ) && !isset( $wp_post_statuses[$post_status] ) ? $default_status : $post_status; |
|
| 4190 | + $post_status = !empty($post_status) ? sanitize_key($post_status) : $default_status; |
|
| 4191 | + $post_status = !empty($wp_post_statuses) && !isset($wp_post_statuses[$post_status]) ? $default_status : $post_status; |
|
| 4192 | 4192 | |
| 4193 | 4193 | $valid = true; |
| 4194 | 4194 | |
| 4195 | - if ( $post_title == '' || !in_array( $post_type, $post_types ) ) {
|
|
| 4195 | + if ($post_title == '' || !in_array($post_type, $post_types)) {
|
|
| 4196 | 4196 | $invalid++; |
| 4197 | 4197 | $valid = false; |
| 4198 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank title/invalid post type', 'geodirectory' ) ); |
|
| 4198 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank title/invalid post type', 'geodirectory'));
|
|
| 4199 | 4199 | } |
| 4200 | - $xtimings['###3'] = microtime(true)-$xstart; |
|
| 4201 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 4202 | - if ( $location_allowed ) {
|
|
| 4200 | + $xtimings['###3'] = microtime(true) - $xstart; |
|
| 4201 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 4202 | + if ($location_allowed) {
|
|
| 4203 | 4203 | $location_result = geodir_get_default_location(); |
| 4204 | - if ( $post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '' ) {
|
|
| 4204 | + if ($post_address == '' || $post_city == '' || $post_region == '' || $post_country == '' || $post_latitude == '' || $post_longitude == '') {
|
|
| 4205 | 4205 | $invalid_addr++; |
| 4206 | 4206 | $valid = false; |
| 4207 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4208 | - } else if ( !empty( $location_result ) && $location_result->location_id == 0 ) {
|
|
| 4209 | - if ( ( geodir_strtolower( $post_city ) != geodir_strtolower( $location_result->city ) ) || ( geodir_strtolower( $post_region ) != geodir_strtolower( $location_result->region ) ) || (geodir_strtolower( $post_country ) != geodir_strtolower( $location_result->country ) ) ) {
|
|
| 4207 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
|
|
| 4208 | + } else if (!empty($location_result) && $location_result->location_id == 0) {
|
|
| 4209 | + if ((geodir_strtolower($post_city) != geodir_strtolower($location_result->city)) || (geodir_strtolower($post_region) != geodir_strtolower($location_result->region)) || (geodir_strtolower($post_country) != geodir_strtolower($location_result->country))) {
|
|
| 4210 | 4210 | $invalid_addr++; |
| 4211 | 4211 | $valid = false; |
| 4212 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . __( 'Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory' ) ); |
|
| 4212 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.__('Could not be added due to blank/invalid address(city, region, country, latitude, longitude).', 'geodirectory'));
|
|
| 4213 | 4213 | } else {
|
| 4214 | 4214 | if (!$location_manager) {
|
| 4215 | - $gd_post['post_locations'] = '[' . $location_result->city_slug . '],[' . $location_result->region_slug . '],[' . $location_result->country_slug . ']'; // Set the default location when location manager not activated. |
|
| 4215 | + $gd_post['post_locations'] = '['.$location_result->city_slug.'],['.$location_result->region_slug.'],['.$location_result->country_slug.']'; // Set the default location when location manager not activated. |
|
| 4216 | 4216 | } |
| 4217 | 4217 | } |
| 4218 | 4218 | } |
| 4219 | 4219 | } |
| 4220 | - $xtimings['###4'] = microtime(true)-$xstart; |
|
| 4221 | - if ( !$valid ) {
|
|
| 4220 | + $xtimings['###4'] = microtime(true) - $xstart; |
|
| 4221 | + if (!$valid) {
|
|
| 4222 | 4222 | continue; |
| 4223 | 4223 | } |
| 4224 | 4224 | |
| 4225 | - $cat_taxonomy = $post_type . 'category'; |
|
| 4226 | - $tags_taxonomy = $post_type . '_tags'; |
|
| 4225 | + $cat_taxonomy = $post_type.'category'; |
|
| 4226 | + $tags_taxonomy = $post_type.'_tags'; |
|
| 4227 | 4227 | |
| 4228 | 4228 | if ($default_category != '' && !in_array($default_category, $post_category_arr)) {
|
| 4229 | 4229 | $post_category_arr = array_merge(array($default_category), $post_category_arr); |
@@ -4231,29 +4231,29 @@ discard block |
||
| 4231 | 4231 | |
| 4232 | 4232 | $post_category = array(); |
| 4233 | 4233 | $default_category_id = NULL; |
| 4234 | - if ( !empty( $post_category_arr ) ) {
|
|
| 4235 | - foreach ( $post_category_arr as $value ) {
|
|
| 4236 | - $category_name = wp_kses_normalize_entities( trim( $value ) ); |
|
| 4234 | + if (!empty($post_category_arr)) {
|
|
| 4235 | + foreach ($post_category_arr as $value) {
|
|
| 4236 | + $category_name = wp_kses_normalize_entities(trim($value)); |
|
| 4237 | 4237 | |
| 4238 | - if ( $category_name != '' ) {
|
|
| 4238 | + if ($category_name != '') {
|
|
| 4239 | 4239 | $term_category = array(); |
| 4240 | 4240 | |
| 4241 | - if ( $term = get_term_by( 'name', $category_name, $cat_taxonomy ) ) {
|
|
| 4241 | + if ($term = get_term_by('name', $category_name, $cat_taxonomy)) {
|
|
| 4242 | 4242 | $term_category = $term; |
| 4243 | - } else if ( $term = get_term_by( 'slug', $category_name, $cat_taxonomy ) ) {
|
|
| 4243 | + } else if ($term = get_term_by('slug', $category_name, $cat_taxonomy)) {
|
|
| 4244 | 4244 | $term_category = $term; |
| 4245 | 4245 | } else {
|
| 4246 | 4246 | $term_data = array(); |
| 4247 | 4247 | $term_data['name'] = $category_name; |
| 4248 | 4248 | $term_data['taxonomy'] = $cat_taxonomy; |
| 4249 | 4249 | |
| 4250 | - $term_id = geodir_imex_insert_term( $cat_taxonomy, $term_data ); |
|
| 4251 | - if ( $term_id ) {
|
|
| 4252 | - $term_category = get_term( $term_id, $cat_taxonomy ); |
|
| 4250 | + $term_id = geodir_imex_insert_term($cat_taxonomy, $term_data); |
|
| 4251 | + if ($term_id) {
|
|
| 4252 | + $term_category = get_term($term_id, $cat_taxonomy); |
|
| 4253 | 4253 | } |
| 4254 | 4254 | } |
| 4255 | 4255 | |
| 4256 | - if ( !empty( $term_category ) && !is_wp_error( $term_category ) ) {
|
|
| 4256 | + if (!empty($term_category) && !is_wp_error($term_category)) {
|
|
| 4257 | 4257 | $post_category[] = intval($term_category->term_id); |
| 4258 | 4258 | |
| 4259 | 4259 | if ($category_name == $default_category) {
|
@@ -4263,7 +4263,7 @@ discard block |
||
| 4263 | 4263 | } |
| 4264 | 4264 | } |
| 4265 | 4265 | } |
| 4266 | - $xtimings['###5'] = microtime(true)-$xstart; |
|
| 4266 | + $xtimings['###5'] = microtime(true) - $xstart; |
|
| 4267 | 4267 | $save_post = array(); |
| 4268 | 4268 | $save_post['post_title'] = $post_title; |
| 4269 | 4269 | $save_post['post_content'] = $post_content; |
@@ -4274,15 +4274,15 @@ discard block |
||
| 4274 | 4274 | $save_post['post_tags'] = $post_tags; |
| 4275 | 4275 | |
| 4276 | 4276 | $saved_post_id = NULL; |
| 4277 | - if ( $import_choice == 'update' ) {
|
|
| 4278 | - $gd_wp_error = __( 'Unable to add listing, please check the listing data.', 'geodirectory' ); |
|
| 4277 | + if ($import_choice == 'update') {
|
|
| 4278 | + $gd_wp_error = __('Unable to add listing, please check the listing data.', 'geodirectory');
|
|
| 4279 | 4279 | |
| 4280 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4280 | + if ($post_id > 0 && get_post($post_id)) {
|
|
| 4281 | 4281 | $save_post['ID'] = $post_id; |
| 4282 | 4282 | |
| 4283 | - if ( $saved_post_id = wp_update_post( $save_post, true ) ) {
|
|
| 4284 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4285 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4283 | + if ($saved_post_id = wp_update_post($save_post, true)) {
|
|
| 4284 | + if (is_wp_error($saved_post_id)) {
|
|
| 4285 | + $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error; |
|
| 4286 | 4286 | $saved_post_id = 0; |
| 4287 | 4287 | } else {
|
| 4288 | 4288 | $saved_post_id = $post_id; |
@@ -4290,9 +4290,9 @@ discard block |
||
| 4290 | 4290 | } |
| 4291 | 4291 | } |
| 4292 | 4292 | } else {
|
| 4293 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4294 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4295 | - $gd_wp_error = $saved_post_id->get_error_message() . ' ' . $wp_chars_error; |
|
| 4293 | + if ($saved_post_id = wp_insert_post($save_post, true)) {
|
|
| 4294 | + if (is_wp_error($saved_post_id)) {
|
|
| 4295 | + $gd_wp_error = $saved_post_id->get_error_message().' '.$wp_chars_error; |
|
| 4296 | 4296 | $saved_post_id = 0; |
| 4297 | 4297 | } else {
|
| 4298 | 4298 | $created++; |
@@ -4300,19 +4300,19 @@ discard block |
||
| 4300 | 4300 | } |
| 4301 | 4301 | } |
| 4302 | 4302 | |
| 4303 | - if ( !$saved_post_id > 0 ) {
|
|
| 4303 | + if (!$saved_post_id > 0) {
|
|
| 4304 | 4304 | $invalid++; |
| 4305 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_wp_error ); |
|
| 4305 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_wp_error); |
|
| 4306 | 4306 | } |
| 4307 | - } else if ( $import_choice == 'skip' ) {
|
|
| 4308 | - if ( $post_id > 0 && get_post( $post_id ) ) {
|
|
| 4307 | + } else if ($import_choice == 'skip') {
|
|
| 4308 | + if ($post_id > 0 && get_post($post_id)) {
|
|
| 4309 | 4309 | $skipped++; |
| 4310 | 4310 | } else {
|
| 4311 | - if ( $saved_post_id = wp_insert_post( $save_post, true ) ) {
|
|
| 4312 | - if ( is_wp_error( $saved_post_id ) ) {
|
|
| 4311 | + if ($saved_post_id = wp_insert_post($save_post, true)) {
|
|
| 4312 | + if (is_wp_error($saved_post_id)) {
|
|
| 4313 | 4313 | $invalid++; |
| 4314 | 4314 | |
| 4315 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $saved_post_id->get_error_message() . ' ' . $wp_chars_error ); |
|
| 4315 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$saved_post_id->get_error_message().' '.$wp_chars_error); |
|
| 4316 | 4316 | $saved_post_id = 0; |
| 4317 | 4317 | } else {
|
| 4318 | 4318 | $created++; |
@@ -4320,28 +4320,28 @@ discard block |
||
| 4320 | 4320 | } else {
|
| 4321 | 4321 | $invalid++; |
| 4322 | 4322 | |
| 4323 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4323 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error); |
|
| 4324 | 4324 | } |
| 4325 | 4325 | } |
| 4326 | 4326 | } else {
|
| 4327 | 4327 | $invalid++; |
| 4328 | 4328 | |
| 4329 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $wp_chars_error ); |
|
| 4329 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$wp_chars_error); |
|
| 4330 | 4330 | } |
| 4331 | - $xtimings['###6'] = microtime(true)-$xstart; |
|
| 4332 | - if ( (int)$saved_post_id > 0 ) {
|
|
| 4331 | + $xtimings['###6'] = microtime(true) - $xstart; |
|
| 4332 | + if ((int) $saved_post_id > 0) {
|
|
| 4333 | 4333 | // WPML |
| 4334 | 4334 | if ($is_wpml && $original_post_id > 0 && $language != '') {
|
| 4335 | - $wpml_post_type = 'post_' . $post_type; |
|
| 4336 | - $source_language = geodir_get_language_for_element( $original_post_id, $wpml_post_type ); |
|
| 4335 | + $wpml_post_type = 'post_'.$post_type; |
|
| 4336 | + $source_language = geodir_get_language_for_element($original_post_id, $wpml_post_type); |
|
| 4337 | 4337 | $source_language = $source_language != '' ? $source_language : $sitepress->get_default_language(); |
| 4338 | 4338 | |
| 4339 | - $trid = $sitepress->get_element_trid( $original_post_id, $wpml_post_type ); |
|
| 4339 | + $trid = $sitepress->get_element_trid($original_post_id, $wpml_post_type); |
|
| 4340 | 4340 | |
| 4341 | - $sitepress->set_element_language_details( $saved_post_id, $wpml_post_type, $trid, $language, $source_language ); |
|
| 4341 | + $sitepress->set_element_language_details($saved_post_id, $wpml_post_type, $trid, $language, $source_language); |
|
| 4342 | 4342 | } |
| 4343 | 4343 | // WPML |
| 4344 | - $gd_post_info = geodir_get_post_info( $saved_post_id ); |
|
| 4344 | + $gd_post_info = geodir_get_post_info($saved_post_id); |
|
| 4345 | 4345 | |
| 4346 | 4346 | $gd_post['post_id'] = $saved_post_id; |
| 4347 | 4347 | $gd_post['ID'] = $saved_post_id; |
@@ -4353,7 +4353,7 @@ discard block |
||
| 4353 | 4353 | |
| 4354 | 4354 | // post location |
| 4355 | 4355 | $post_location_id = 0; |
| 4356 | - if ( $location_allowed && !empty( $location_result ) && $location_result->location_id > 0 ) {
|
|
| 4356 | + if ($location_allowed && !empty($location_result) && $location_result->location_id > 0) {
|
|
| 4357 | 4357 | $gd_post['post_neighbourhood'] = ''; |
| 4358 | 4358 | |
| 4359 | 4359 | $post_location_info = array( |
@@ -4363,7 +4363,7 @@ discard block |
||
| 4363 | 4363 | 'geo_lat' => $post_latitude, |
| 4364 | 4364 | 'geo_lng' => $post_longitude |
| 4365 | 4365 | ); |
| 4366 | - if ( $location_id = (int)geodir_add_new_location( $post_location_info ) ) {
|
|
| 4366 | + if ($location_id = (int) geodir_add_new_location($post_location_info)) {
|
|
| 4367 | 4367 | $post_location_id = $location_id; |
| 4368 | 4368 | } |
| 4369 | 4369 | |
@@ -4401,14 +4401,14 @@ discard block |
||
| 4401 | 4401 | $gd_post['post_location_id'] = $post_location_id; |
| 4402 | 4402 | |
| 4403 | 4403 | // post package info |
| 4404 | - $package_id = isset( $gd_post['package_id'] ) && !empty( $gd_post['package_id'] ) ? (int)$gd_post['package_id'] : 0; |
|
| 4404 | + $package_id = isset($gd_post['package_id']) && !empty($gd_post['package_id']) ? (int) $gd_post['package_id'] : 0; |
|
| 4405 | 4405 | if (!$package_id && !empty($gd_post_info) && isset($gd_post_info->package_id) && $gd_post_info->package_id) {
|
| 4406 | 4406 | $package_id = $gd_post_info->package_id; |
| 4407 | 4407 | } |
| 4408 | 4408 | |
| 4409 | 4409 | $package_info = array(); |
| 4410 | 4410 | if ($package_id && function_exists('geodir_get_package_info_by_id')) {
|
| 4411 | - $package_info = (array)geodir_get_package_info_by_id($package_id); |
|
| 4411 | + $package_info = (array) geodir_get_package_info_by_id($package_id); |
|
| 4412 | 4412 | |
| 4413 | 4413 | if (!(!empty($package_info) && isset($package_info['post_type']) && $package_info['post_type'] == $post_type)) {
|
| 4414 | 4414 | $package_info = array(); |
@@ -4416,18 +4416,18 @@ discard block |
||
| 4416 | 4416 | } |
| 4417 | 4417 | |
| 4418 | 4418 | if (empty($package_info)) {
|
| 4419 | - $package_info = (array)geodir_post_package_info( array(), '', $post_type ); |
|
| 4419 | + $package_info = (array) geodir_post_package_info(array(), '', $post_type); |
|
| 4420 | 4420 | } |
| 4421 | 4421 | |
| 4422 | - if (!empty($package_info)) {
|
|
| 4422 | + if (!empty($package_info)) {
|
|
| 4423 | 4423 | $package_id = $package_info['pid']; |
| 4424 | 4424 | |
| 4425 | 4425 | if (isset($gd_post['alive_days']) || isset($gd_post['expire_date'])) {
|
| 4426 | 4426 | $gd_post['expire_date'] = $expire_date; |
| 4427 | 4427 | } else {
|
| 4428 | - if ( isset( $package_info['days'] ) && (int)$package_info['days'] > 0 ) {
|
|
| 4429 | - $gd_post['alive_days'] = (int)$package_info['days']; |
|
| 4430 | - $gd_post['expire_date'] = date_i18n( 'Y-m-d', strtotime( $current_date . '+' . (int)$package_info['days'] . ' days' ) ); |
|
| 4428 | + if (isset($package_info['days']) && (int) $package_info['days'] > 0) {
|
|
| 4429 | + $gd_post['alive_days'] = (int) $package_info['days']; |
|
| 4430 | + $gd_post['expire_date'] = date_i18n('Y-m-d', strtotime($current_date.'+'.(int) $package_info['days'].' days'));
|
|
| 4431 | 4431 | } else {
|
| 4432 | 4432 | $gd_post['expire_date'] = 'Never'; |
| 4433 | 4433 | } |
@@ -4436,7 +4436,7 @@ discard block |
||
| 4436 | 4436 | $gd_post['package_id'] = $package_id; |
| 4437 | 4437 | } |
| 4438 | 4438 | |
| 4439 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 4439 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 4440 | 4440 | |
| 4441 | 4441 | if ($post_type == 'gd_event') {
|
| 4442 | 4442 | $gd_post = geodir_imex_process_event_data($gd_post); |
@@ -4447,65 +4447,65 @@ discard block |
||
| 4447 | 4447 | } |
| 4448 | 4448 | |
| 4449 | 4449 | // Export franchise fields |
| 4450 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 4450 | + $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
|
|
| 4451 | 4451 | if ($is_franchise_active) {
|
| 4452 | - if ( isset( $gd_post['gd_is_franchise'] ) && (int)$gd_post['gd_is_franchise'] == 1 ) {
|
|
| 4452 | + if (isset($gd_post['gd_is_franchise']) && (int) $gd_post['gd_is_franchise'] == 1) {
|
|
| 4453 | 4453 | $gd_franchise_lock = array(); |
| 4454 | 4454 | |
| 4455 | - if ( isset( $gd_post['gd_franchise_lock'] ) ) {
|
|
| 4456 | - $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock'] );
|
|
| 4457 | - $gd_franchise_lock = trim( $gd_franchise_lock ); |
|
| 4458 | - $gd_franchise_lock = explode( ",", $gd_franchise_lock ); |
|
| 4455 | + if (isset($gd_post['gd_franchise_lock'])) {
|
|
| 4456 | + $gd_franchise_lock = str_replace(" ", "", $gd_post['gd_franchise_lock']);
|
|
| 4457 | + $gd_franchise_lock = trim($gd_franchise_lock); |
|
| 4458 | + $gd_franchise_lock = explode(",", $gd_franchise_lock);
|
|
| 4459 | 4459 | } |
| 4460 | 4460 | |
| 4461 | - update_post_meta( $saved_post_id, 'gd_is_franchise', 1 ); |
|
| 4462 | - update_post_meta( $saved_post_id, 'gd_franchise_lock', $gd_franchise_lock ); |
|
| 4461 | + update_post_meta($saved_post_id, 'gd_is_franchise', 1); |
|
| 4462 | + update_post_meta($saved_post_id, 'gd_franchise_lock', $gd_franchise_lock); |
|
| 4463 | 4463 | } else {
|
| 4464 | - if ( isset( $gd_post['franchise'] ) && (int)$gd_post['franchise'] > 0 && geodir_franchise_check( (int)$gd_post['franchise'] ) ) {
|
|
| 4465 | - geodir_save_post_meta( $saved_post_id, 'franchise', (int)$gd_post['franchise'] ); |
|
| 4464 | + if (isset($gd_post['franchise']) && (int) $gd_post['franchise'] > 0 && geodir_franchise_check((int) $gd_post['franchise'])) {
|
|
| 4465 | + geodir_save_post_meta($saved_post_id, 'franchise', (int) $gd_post['franchise']); |
|
| 4466 | 4466 | } |
| 4467 | 4467 | } |
| 4468 | 4468 | } |
| 4469 | 4469 | |
| 4470 | 4470 | if (!empty($save_post['post_category']) && is_array($save_post['post_category'])) {
|
| 4471 | - $save_post['post_category'] = array_unique( array_map( 'intval', $save_post['post_category'] ) ); |
|
| 4471 | + $save_post['post_category'] = array_unique(array_map('intval', $save_post['post_category']));
|
|
| 4472 | 4472 | if ($default_category_id) {
|
| 4473 | 4473 | $save_post['post_default_category'] = $default_category_id; |
| 4474 | 4474 | $gd_post['default_category'] = $default_category_id; |
| 4475 | 4475 | } |
| 4476 | 4476 | $gd_post[$cat_taxonomy] = $save_post['post_category']; |
| 4477 | 4477 | } |
| 4478 | - $xtimings['###7'] = microtime(true)-$xstart; |
|
| 4478 | + $xtimings['###7'] = microtime(true) - $xstart; |
|
| 4479 | 4479 | // Save post info |
| 4480 | - geodir_save_post_info( $saved_post_id, $gd_post ); |
|
| 4481 | - $xtimings['###8'] = microtime(true)-$xstart; |
|
| 4480 | + geodir_save_post_info($saved_post_id, $gd_post); |
|
| 4481 | + $xtimings['###8'] = microtime(true) - $xstart; |
|
| 4482 | 4482 | // post taxonomies |
| 4483 | - if ( !empty( $save_post['post_category'] ) ) {
|
|
| 4484 | - wp_set_object_terms( $saved_post_id, $save_post['post_category'], $cat_taxonomy ); |
|
| 4483 | + if (!empty($save_post['post_category'])) {
|
|
| 4484 | + wp_set_object_terms($saved_post_id, $save_post['post_category'], $cat_taxonomy); |
|
| 4485 | 4485 | |
| 4486 | - $post_default_category = isset( $save_post['post_default_category'] ) ? $save_post['post_default_category'] : ''; |
|
| 4486 | + $post_default_category = isset($save_post['post_default_category']) ? $save_post['post_default_category'] : ''; |
|
| 4487 | 4487 | if ($default_category_id) {
|
| 4488 | 4488 | $post_default_category = $default_category_id; |
| 4489 | 4489 | } |
| 4490 | 4490 | $post_cat_ids = geodir_get_post_meta($saved_post_id, $cat_taxonomy); |
| 4491 | 4491 | $save_post['post_category'] = !empty($post_cat_ids) ? explode(",", trim($post_cat_ids, ",")) : $save_post['post_category'];
|
| 4492 | - $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']) . ',y:' : '';
|
|
| 4492 | + $post_category_str = !empty($save_post['post_category']) ? implode(",y:#", $save_post['post_category']).',y:' : '';
|
|
| 4493 | 4493 | |
| 4494 | 4494 | if ($post_category_str != '' && $post_default_category) {
|
| 4495 | - $post_category_str = str_replace($post_default_category . ',y:', $post_default_category . ',y,d:', $post_category_str); |
|
| 4495 | + $post_category_str = str_replace($post_default_category.',y:', $post_default_category.',y,d:', $post_category_str); |
|
| 4496 | 4496 | } |
| 4497 | 4497 | |
| 4498 | 4498 | $post_category_str = $post_category_str != '' ? array($cat_taxonomy => $post_category_str) : ''; |
| 4499 | 4499 | |
| 4500 | - geodir_set_postcat_structure( $saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str ); |
|
| 4500 | + geodir_set_postcat_structure($saved_post_id, $cat_taxonomy, $post_default_category, $post_category_str); |
|
| 4501 | 4501 | } |
| 4502 | - $xtimings['###8.1'] = microtime(true)-$xstart; |
|
| 4503 | - if ( !empty( $save_post['post_tags'] ) ) {
|
|
| 4504 | - wp_set_object_terms( $saved_post_id, $save_post['post_tags'], $tags_taxonomy ); |
|
| 4502 | + $xtimings['###8.1'] = microtime(true) - $xstart; |
|
| 4503 | + if (!empty($save_post['post_tags'])) {
|
|
| 4504 | + wp_set_object_terms($saved_post_id, $save_post['post_tags'], $tags_taxonomy); |
|
| 4505 | 4505 | } |
| 4506 | - $xtimings['###9'] = microtime(true)-$xstart; |
|
| 4506 | + $xtimings['###9'] = microtime(true) - $xstart; |
|
| 4507 | 4507 | // Post images |
| 4508 | - if ( !empty( $post_images ) ) {
|
|
| 4508 | + if (!empty($post_images)) {
|
|
| 4509 | 4509 | $post_images = array_unique($post_images); |
| 4510 | 4510 | |
| 4511 | 4511 | $old_post_images_arr = array(); |
@@ -4513,65 +4513,65 @@ discard block |
||
| 4513 | 4513 | |
| 4514 | 4514 | $order = 1; |
| 4515 | 4515 | |
| 4516 | - $old_post_images = geodir_get_images( $saved_post_id ); |
|
| 4517 | - $xtimings['###9.1'] = microtime(true)-$xstart; |
|
| 4516 | + $old_post_images = geodir_get_images($saved_post_id); |
|
| 4517 | + $xtimings['###9.1'] = microtime(true) - $xstart; |
|
| 4518 | 4518 | if (!empty($old_post_images)) {
|
| 4519 | - foreach( $old_post_images as $old_post_image ) {
|
|
| 4519 | + foreach ($old_post_images as $old_post_image) {
|
|
| 4520 | 4520 | if (!empty($old_post_image) && isset($old_post_image->file) && $old_post_image->file != '') {
|
| 4521 | 4521 | $old_post_images_arr[] = $old_post_image->file; |
| 4522 | 4522 | } |
| 4523 | 4523 | } |
| 4524 | 4524 | } |
| 4525 | 4525 | |
| 4526 | - foreach ( $post_images as $post_image ) {
|
|
| 4527 | - $image_name = basename( $post_image ); |
|
| 4526 | + foreach ($post_images as $post_image) {
|
|
| 4527 | + $image_name = basename($post_image); |
|
| 4528 | 4528 | $saved_post_images_arr[] = $image_name; |
| 4529 | 4529 | |
| 4530 | - if (!empty($old_post_images_arr) && in_array( $image_name, $old_post_images_arr) ) {
|
|
| 4530 | + if (!empty($old_post_images_arr) && in_array($image_name, $old_post_images_arr)) {
|
|
| 4531 | 4531 | continue; // Skip if image already exists. |
| 4532 | 4532 | } |
| 4533 | 4533 | |
| 4534 | - $image_name_parts = explode( '.', $image_name ); |
|
| 4535 | - array_pop( $image_name_parts ); |
|
| 4536 | - $proper_image_name = implode( '.', $image_name_parts ); |
|
| 4537 | - $xtimings['###9.2'] = microtime(true)-$xstart; |
|
| 4538 | - $arr_file_type = wp_check_filetype( $image_name ); |
|
| 4539 | - $xtimings['###9.3'] = microtime(true)-$xstart; |
|
| 4540 | - if ( !empty( $arr_file_type ) ) {
|
|
| 4534 | + $image_name_parts = explode('.', $image_name);
|
|
| 4535 | + array_pop($image_name_parts); |
|
| 4536 | + $proper_image_name = implode('.', $image_name_parts);
|
|
| 4537 | + $xtimings['###9.2'] = microtime(true) - $xstart; |
|
| 4538 | + $arr_file_type = wp_check_filetype($image_name); |
|
| 4539 | + $xtimings['###9.3'] = microtime(true) - $xstart; |
|
| 4540 | + if (!empty($arr_file_type)) {
|
|
| 4541 | 4541 | $uploaded_file_type = $arr_file_type['type']; |
| 4542 | 4542 | |
| 4543 | 4543 | $attachment = array(); |
| 4544 | 4544 | $attachment['post_id'] = $saved_post_id; |
| 4545 | 4545 | $attachment['title'] = $proper_image_name; |
| 4546 | 4546 | $attachment['content'] = ''; |
| 4547 | - $attachment['file'] = $uploads_subdir . '/' . $image_name; |
|
| 4547 | + $attachment['file'] = $uploads_subdir.'/'.$image_name; |
|
| 4548 | 4548 | $attachment['mime_type'] = $uploaded_file_type; |
| 4549 | 4549 | $attachment['menu_order'] = $order; |
| 4550 | 4550 | $attachment['is_featured'] = 0; |
| 4551 | 4551 | |
| 4552 | 4552 | $attachment_set = ''; |
| 4553 | - foreach ( $attachment as $key => $val ) {
|
|
| 4554 | - if ( $val != '' ) {
|
|
| 4555 | - $attachment_set .= $key . " = '" . $val . "', "; |
|
| 4553 | + foreach ($attachment as $key => $val) {
|
|
| 4554 | + if ($val != '') {
|
|
| 4555 | + $attachment_set .= $key." = '".$val."', "; |
|
| 4556 | 4556 | } |
| 4557 | 4557 | } |
| 4558 | - $attachment_set = trim( $attachment_set, ", " ); |
|
| 4558 | + $attachment_set = trim($attachment_set, ", "); |
|
| 4559 | 4559 | |
| 4560 | 4560 | // Add new attachment |
| 4561 | - $xtimings['###9.4'] = microtime(true)-$xstart; |
|
| 4562 | - $wpdb->query( "INSERT INTO " . GEODIR_ATTACHMENT_TABLE . " SET " . $attachment_set ); |
|
| 4563 | - $xtimings['###9.5'] = microtime(true)-$xstart; |
|
| 4561 | + $xtimings['###9.4'] = microtime(true) - $xstart; |
|
| 4562 | + $wpdb->query("INSERT INTO ".GEODIR_ATTACHMENT_TABLE." SET ".$attachment_set);
|
|
| 4563 | + $xtimings['###9.5'] = microtime(true) - $xstart; |
|
| 4564 | 4564 | $order++; |
| 4565 | 4565 | } |
| 4566 | 4566 | } |
| 4567 | 4567 | |
| 4568 | - $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/" . implode("' AND file NOT LIKE '%/", $saved_post_images_arr) . "' )" : '';
|
|
| 4568 | + $saved_post_images_sql = !empty($saved_post_images_arr) ? " AND ( file NOT LIKE '%/".implode("' AND file NOT LIKE '%/", $saved_post_images_arr)."' )" : '';
|
|
| 4569 | 4569 | // Remove previous attachment |
| 4570 | - $wpdb->query( "DELETE FROM " . GEODIR_ATTACHMENT_TABLE . " WHERE post_id = " . (int)$saved_post_id . " " . $saved_post_images_sql ); |
|
| 4571 | - $xtimings['###9.6'] = microtime(true)-$xstart; |
|
| 4572 | - if ( !empty( $saved_post_images_arr ) ) {
|
|
| 4570 | + $wpdb->query("DELETE FROM ".GEODIR_ATTACHMENT_TABLE." WHERE post_id = ".(int) $saved_post_id." ".$saved_post_images_sql);
|
|
| 4571 | + $xtimings['###9.6'] = microtime(true) - $xstart; |
|
| 4572 | + if (!empty($saved_post_images_arr)) {
|
|
| 4573 | 4573 | geodir_set_wp_featured_image($saved_post_id); |
| 4574 | - $xtimings['###9.7'] = microtime(true)-$xstart; |
|
| 4574 | + $xtimings['###9.7'] = microtime(true) - $xstart; |
|
| 4575 | 4575 | /* |
| 4576 | 4576 | $menu_order = 1; |
| 4577 | 4577 | |
@@ -4587,14 +4587,14 @@ discard block |
||
| 4587 | 4587 | }*/ |
| 4588 | 4588 | } |
| 4589 | 4589 | |
| 4590 | - if ( $order > 1 ) {
|
|
| 4590 | + if ($order > 1) {
|
|
| 4591 | 4591 | $images++; |
| 4592 | 4592 | } |
| 4593 | 4593 | } |
| 4594 | - $xtimings['###10'] = microtime(true)-$xstart; |
|
| 4594 | + $xtimings['###10'] = microtime(true) - $xstart; |
|
| 4595 | 4595 | /** This action is documented in geodirectory-functions/post-functions.php */ |
| 4596 | - do_action( 'geodir_after_save_listing', $saved_post_id, $gd_post ); |
|
| 4597 | - $xtimings['###11'] = microtime(true)-$xstart; |
|
| 4596 | + do_action('geodir_after_save_listing', $saved_post_id, $gd_post);
|
|
| 4597 | + $xtimings['###11'] = microtime(true) - $xstart; |
|
| 4598 | 4598 | if (isset($is_featured)) {
|
| 4599 | 4599 | geodir_save_post_meta($saved_post_id, 'is_featured', $is_featured); |
| 4600 | 4600 | } |
@@ -4604,7 +4604,7 @@ discard block |
||
| 4604 | 4604 | if (isset($gd_post['expire_date'])) {
|
| 4605 | 4605 | geodir_save_post_meta($saved_post_id, 'expire_date', $gd_post['expire_date']); |
| 4606 | 4606 | } |
| 4607 | - $xtimings['###12'] = microtime(true)-$xstart; |
|
| 4607 | + $xtimings['###12'] = microtime(true) - $xstart; |
|
| 4608 | 4608 | } |
| 4609 | 4609 | |
| 4610 | 4610 | // WPML |
@@ -4617,11 +4617,11 @@ discard block |
||
| 4617 | 4617 | } |
| 4618 | 4618 | |
| 4619 | 4619 | //undo some stuff to make the import quicker |
| 4620 | - wp_defer_term_counting( false ); |
|
| 4621 | - wp_defer_comment_counting( false ); |
|
| 4622 | - $wpdb->query( 'COMMIT;' ); |
|
| 4623 | - $wpdb->query( 'SET autocommit = 1;' ); |
|
| 4624 | - $xtimings['###13'] = microtime(true)-$xstart; |
|
| 4620 | + wp_defer_term_counting(false); |
|
| 4621 | + wp_defer_comment_counting(false); |
|
| 4622 | + $wpdb->query('COMMIT;');
|
|
| 4623 | + $wpdb->query('SET autocommit = 1;');
|
|
| 4624 | + $xtimings['###13'] = microtime(true) - $xstart; |
|
| 4625 | 4625 | $json = array(); |
| 4626 | 4626 | $json['processed'] = $processed_actual; |
| 4627 | 4627 | $json['created'] = $created; |
@@ -4630,13 +4630,13 @@ discard block |
||
| 4630 | 4630 | $json['invalid'] = $invalid; |
| 4631 | 4631 | $json['invalid_addr'] = $invalid_addr; |
| 4632 | 4632 | $json['images'] = $images; |
| 4633 | - $json['timing'] = microtime(true)-$xstart; |
|
| 4633 | + $json['timing'] = microtime(true) - $xstart; |
|
| 4634 | 4634 | $json['timings'] = $xtimings; |
| 4635 | 4635 | |
| 4636 | 4636 | |
| 4637 | - wp_send_json( $json ); |
|
| 4637 | + wp_send_json($json); |
|
| 4638 | 4638 | exit; |
| 4639 | - } else if ( $task == 'import_loc' ) {
|
|
| 4639 | + } else if ($task == 'import_loc') {
|
|
| 4640 | 4640 | global $gd_post_types; |
| 4641 | 4641 | $gd_post_types = $post_types; |
| 4642 | 4642 | |
@@ -4645,82 +4645,82 @@ discard block |
||
| 4645 | 4645 | |
| 4646 | 4646 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4647 | 4647 | $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
| 4648 | - wp_send_json( $json ); |
|
| 4648 | + wp_send_json($json); |
|
| 4649 | 4649 | } |
| 4650 | 4650 | |
| 4651 | 4651 | $gd_error_log = __('GD IMPORT LOCATIONS [ROW %d]:', 'geodirectory');
|
| 4652 | - $gd_error_location = __( 'Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory' ); |
|
| 4652 | + $gd_error_location = __('Could not be saved due to blank/invalid address(city, region, country, latitude, longitude)', 'geodirectory');
|
|
| 4653 | 4653 | for ($i = 1; $i <= $limit; $i++) {
|
| 4654 | 4654 | $index = $processed + $i; |
| 4655 | 4655 | |
| 4656 | 4656 | if (isset($file[$index])) {
|
| 4657 | 4657 | $row = $file[$index]; |
| 4658 | - $row = array_map( 'trim', $row ); |
|
| 4658 | + $row = array_map('trim', $row);
|
|
| 4659 | 4659 | $data = array(); |
| 4660 | 4660 | |
| 4661 | - foreach ($columns as $c => $column ) {
|
|
| 4661 | + foreach ($columns as $c => $column) {
|
|
| 4662 | 4662 | if (in_array($column, array('location_id', 'latitude', 'longitude', 'city', 'city_slug', 'region', 'country', 'city_meta_title', 'city_meta_desc', 'city_desc', 'region_meta_title', 'region_meta_desc', 'region_desc', 'country_meta_title', 'country_meta_desc', 'country_desc'))) {
|
| 4663 | 4663 | $data[$column] = $row[$c]; |
| 4664 | 4664 | } |
| 4665 | 4665 | } |
| 4666 | 4666 | |
| 4667 | - if ( empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude']) ) {
|
|
| 4667 | + if (empty($data['city']) || empty($data['region']) || empty($data['country']) || empty($data['latitude']) || empty($data['longitude'])) {
|
|
| 4668 | 4668 | $invalid++; |
| 4669 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4669 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4670 | 4670 | continue; |
| 4671 | 4671 | } |
| 4672 | 4672 | |
| 4673 | 4673 | $data['location_id'] = isset($data['location_id']) ? absint($data['location_id']) : 0; |
| 4674 | 4674 | |
| 4675 | - if ( $import_choice == 'update' ) {
|
|
| 4676 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4677 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4675 | + if ($import_choice == 'update') {
|
|
| 4676 | + if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
|
|
| 4677 | + if ($location_id = geodir_location_update_city($data, true, $location)) {
|
|
| 4678 | 4678 | $updated++; |
| 4679 | 4679 | } else {
|
| 4680 | 4680 | $invalid++; |
| 4681 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4681 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4682 | 4682 | } |
| 4683 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4684 | - $data['location_id'] = (int)$location->location_id; |
|
| 4683 | + } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
|
|
| 4684 | + $data['location_id'] = (int) $location->location_id; |
|
| 4685 | 4685 | |
| 4686 | - if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region'] ) ) ) {
|
|
| 4687 | - $data['location_id'] = (int)$location->location_id; |
|
| 4688 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'region' => $data['region'] ) ) ) {
|
|
| 4689 | - $data['location_id'] = (int)$location->location_id; |
|
| 4690 | - } else if ( $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'], 'country' => $data['country'] ) ) ) {
|
|
| 4691 | - $data['location_id'] = (int)$location->location_id; |
|
| 4686 | + if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country'], 'region' => $data['region']))) {
|
|
| 4687 | + $data['location_id'] = (int) $location->location_id; |
|
| 4688 | + } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'region' => $data['region']))) {
|
|
| 4689 | + $data['location_id'] = (int) $location->location_id; |
|
| 4690 | + } else if ($location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug'], 'country' => $data['country']))) {
|
|
| 4691 | + $data['location_id'] = (int) $location->location_id; |
|
| 4692 | 4692 | } |
| 4693 | 4693 | |
| 4694 | - if ( $location_id = geodir_location_update_city( $data, true, $location ) ) {
|
|
| 4694 | + if ($location_id = geodir_location_update_city($data, true, $location)) {
|
|
| 4695 | 4695 | $updated++; |
| 4696 | 4696 | } else {
|
| 4697 | 4697 | $invalid++; |
| 4698 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4698 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4699 | 4699 | } |
| 4700 | 4700 | } else {
|
| 4701 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4701 | + if ($location_id = geodir_location_insert_city($data, true)) {
|
|
| 4702 | 4702 | $created++; |
| 4703 | 4703 | } else {
|
| 4704 | 4704 | $invalid++; |
| 4705 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4705 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4706 | 4706 | } |
| 4707 | 4707 | } |
| 4708 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4709 | - if ( (int)$data['location_id'] > 0 && $location = geodir_get_location_by_id( '', (int)$data['location_id'] ) ) {
|
|
| 4708 | + } elseif ($import_choice == 'skip') {
|
|
| 4709 | + if ((int) $data['location_id'] > 0 && $location = geodir_get_location_by_id('', (int) $data['location_id'])) {
|
|
| 4710 | 4710 | $skipped++; |
| 4711 | - } else if ( !empty( $data['city_slug'] ) && $location = geodir_get_location_by_slug( 'city', array( 'city_slug' => $data['city_slug'] ) ) ) {
|
|
| 4711 | + } else if (!empty($data['city_slug']) && $location = geodir_get_location_by_slug('city', array('city_slug' => $data['city_slug']))) {
|
|
| 4712 | 4712 | $skipped++; |
| 4713 | 4713 | } else {
|
| 4714 | - if ( $location_id = geodir_location_insert_city( $data, true ) ) {
|
|
| 4714 | + if ($location_id = geodir_location_insert_city($data, true)) {
|
|
| 4715 | 4715 | $created++; |
| 4716 | 4716 | } else {
|
| 4717 | 4717 | $invalid++; |
| 4718 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4718 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4719 | 4719 | } |
| 4720 | 4720 | } |
| 4721 | 4721 | } else {
|
| 4722 | 4722 | $invalid++; |
| 4723 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_location ); |
|
| 4723 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_location); |
|
| 4724 | 4724 | } |
| 4725 | 4725 | } |
| 4726 | 4726 | } |
@@ -4734,24 +4734,24 @@ discard block |
||
| 4734 | 4734 | $json['invalid'] = $invalid; |
| 4735 | 4735 | $json['images'] = $images; |
| 4736 | 4736 | |
| 4737 | - wp_send_json( $json ); |
|
| 4738 | - } else if ( $task == 'import_hood' ) {
|
|
| 4737 | + wp_send_json($json); |
|
| 4738 | + } else if ($task == 'import_hood') {
|
|
| 4739 | 4739 | if (!empty($file)) {
|
| 4740 | 4740 | $columns = isset($file[0]) ? $file[0] : NULL; |
| 4741 | 4741 | |
| 4742 | 4742 | if (empty($columns) || (!empty($columns) && $columns[0] == '')) {
|
| 4743 | 4743 | $json['error'] = __('File you are uploading is not valid. Columns does not matching.', 'geodirectory');
|
| 4744 | - wp_send_json( $json ); |
|
| 4744 | + wp_send_json($json); |
|
| 4745 | 4745 | } |
| 4746 | 4746 | |
| 4747 | 4747 | $gd_error_log = __('GD IMPORT NEIGHBOURHOODS [ROW %d]:', 'geodirectory');
|
| 4748 | - $gd_error_hood = __( 'Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory' ); |
|
| 4748 | + $gd_error_hood = __('Could not be saved due to invalid neighbourhood data(name, latitude, longitude) or invalid location data(either location_id or city/region/country is empty)', 'geodirectory');
|
|
| 4749 | 4749 | for ($i = 1; $i <= $limit; $i++) {
|
| 4750 | 4750 | $index = $processed + $i; |
| 4751 | 4751 | |
| 4752 | 4752 | if (isset($file[$index])) {
|
| 4753 | 4753 | $row = $file[$index]; |
| 4754 | - $row = array_map( 'trim', $row ); |
|
| 4754 | + $row = array_map('trim', $row);
|
|
| 4755 | 4755 | $data = array(); |
| 4756 | 4756 | |
| 4757 | 4757 | foreach ($columns as $c => $column) {
|
@@ -4762,20 +4762,20 @@ discard block |
||
| 4762 | 4762 | |
| 4763 | 4763 | if (empty($data['neighbourhood_name']) || empty($data['latitude']) || empty($data['longitude'])) {
|
| 4764 | 4764 | $invalid++; |
| 4765 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4765 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4766 | 4766 | continue; |
| 4767 | 4767 | } |
| 4768 | 4768 | |
| 4769 | 4769 | $location_info = array(); |
| 4770 | - if (!empty($data['location_id']) && (int)$data['location_id'] > 0) {
|
|
| 4771 | - $location_info = geodir_get_location_by_id('', (int)$data['location_id']);
|
|
| 4770 | + if (!empty($data['location_id']) && (int) $data['location_id'] > 0) {
|
|
| 4771 | + $location_info = geodir_get_location_by_id('', (int) $data['location_id']);
|
|
| 4772 | 4772 | } else if (!empty($data['city']) && !empty($data['region']) && !empty($data['country'])) {
|
| 4773 | 4773 | $location_info = geodir_get_location_by_slug('city', array('fields' => 'location_id', 'city' => $data['city'], 'country' => $data['country'], 'region' => $data['region']));
|
| 4774 | 4774 | } |
| 4775 | 4775 | |
| 4776 | 4776 | if (empty($location_info)) {
|
| 4777 | 4777 | $invalid++; |
| 4778 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4778 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4779 | 4779 | continue; |
| 4780 | 4780 | } |
| 4781 | 4781 | |
@@ -4790,35 +4790,35 @@ discard block |
||
| 4790 | 4790 | $hood_data['hood_longitude'] = $data['longitude']; |
| 4791 | 4791 | $hood_data['hood_location_id'] = $location_id; |
| 4792 | 4792 | |
| 4793 | - if ( $import_choice == 'update' ) {
|
|
| 4794 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4795 | - $hood_data['hood_id'] = (int)$data['neighbourhood_id']; |
|
| 4793 | + if ($import_choice == 'update') {
|
|
| 4794 | + if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
|
|
| 4795 | + $hood_data['hood_id'] = (int) $data['neighbourhood_id']; |
|
| 4796 | 4796 | |
| 4797 | 4797 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 4798 | 4798 | $updated++; |
| 4799 | 4799 | } else {
|
| 4800 | 4800 | $invalid++; |
| 4801 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4801 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4802 | 4802 | } |
| 4803 | 4803 | } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
| 4804 | - $hood_data['hood_id'] = (int)$neighbourhood->hood_id; |
|
| 4804 | + $hood_data['hood_id'] = (int) $neighbourhood->hood_id; |
|
| 4805 | 4805 | |
| 4806 | 4806 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 4807 | 4807 | $updated++; |
| 4808 | 4808 | } else {
|
| 4809 | 4809 | $invalid++; |
| 4810 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4810 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4811 | 4811 | } |
| 4812 | 4812 | } else {
|
| 4813 | 4813 | if ($neighbourhood = geodir_location_insert_update_neighbourhood($hood_data)) {
|
| 4814 | 4814 | $created++; |
| 4815 | 4815 | } else {
|
| 4816 | 4816 | $invalid++; |
| 4817 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4817 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4818 | 4818 | } |
| 4819 | 4819 | } |
| 4820 | - } elseif ( $import_choice == 'skip' ) {
|
|
| 4821 | - if ((int)$data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int)$data['neighbourhood_id']))) {
|
|
| 4820 | + } elseif ($import_choice == 'skip') {
|
|
| 4821 | + if ((int) $data['neighbourhood_id'] > 0 && ($neighbourhood = geodir_location_get_neighbourhood_by_id((int) $data['neighbourhood_id']))) {
|
|
| 4822 | 4822 | $skipped++; |
| 4823 | 4823 | } else if (!empty($data['neighbourhood_slug']) && ($neighbourhood = geodir_location_get_neighbourhood_by_id($data['neighbourhood_slug'], true))) {
|
| 4824 | 4824 | $skipped++; |
@@ -4828,12 +4828,12 @@ discard block |
||
| 4828 | 4828 | $created++; |
| 4829 | 4829 | } else {
|
| 4830 | 4830 | $invalid++; |
| 4831 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4831 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4832 | 4832 | } |
| 4833 | 4833 | } |
| 4834 | 4834 | } else {
|
| 4835 | 4835 | $invalid++; |
| 4836 | - geodir_error_log( wp_sprintf( $gd_error_log, ($index + 1) ) . ' ' . $gd_error_hood ); |
|
| 4836 | + geodir_error_log(wp_sprintf($gd_error_log, ($index + 1)).' '.$gd_error_hood); |
|
| 4837 | 4837 | } |
| 4838 | 4838 | } |
| 4839 | 4839 | } |
@@ -4847,7 +4847,7 @@ discard block |
||
| 4847 | 4847 | $json['invalid'] = $invalid; |
| 4848 | 4848 | $json['images'] = $images; |
| 4849 | 4849 | |
| 4850 | - wp_send_json( $json ); |
|
| 4850 | + wp_send_json($json); |
|
| 4851 | 4851 | } |
| 4852 | 4852 | } |
| 4853 | 4853 | break; |
@@ -4891,29 +4891,29 @@ discard block |
||
| 4891 | 4891 | * } |
| 4892 | 4892 | * @return int|bool Term id when success, false when fail. |
| 4893 | 4893 | */ |
| 4894 | -function geodir_imex_insert_term( $taxonomy, $term_data ) {
|
|
| 4895 | - if ( empty( $taxonomy ) || empty( $term_data ) ) {
|
|
| 4894 | +function geodir_imex_insert_term($taxonomy, $term_data) {
|
|
| 4895 | + if (empty($taxonomy) || empty($term_data)) {
|
|
| 4896 | 4896 | return false; |
| 4897 | 4897 | } |
| 4898 | 4898 | |
| 4899 | - $term = isset( $term_data['name'] ) && !empty( $term_data['name'] ) ? $term_data['name'] : ''; |
|
| 4899 | + $term = isset($term_data['name']) && !empty($term_data['name']) ? $term_data['name'] : ''; |
|
| 4900 | 4900 | $args = array(); |
| 4901 | - $args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : ''; |
|
| 4902 | - $args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : ''; |
|
| 4903 | - $args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : ''; |
|
| 4901 | + $args['description'] = isset($term_data['description']) ? $term_data['description'] : ''; |
|
| 4902 | + $args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : ''; |
|
| 4903 | + $args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : ''; |
|
| 4904 | 4904 | |
| 4905 | - if ( ( !empty( $args['slug'] ) && term_exists( $args['slug'], $taxonomy ) ) || empty( $args['slug'] ) ) {
|
|
| 4906 | - $term_args = array_merge( $term_data, $args ); |
|
| 4907 | - $defaults = array( 'alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => ''); |
|
| 4908 | - $term_args = wp_parse_args( $term_args, $defaults ); |
|
| 4909 | - $term_args = sanitize_term( $term_args, $taxonomy, 'db' ); |
|
| 4910 | - $args['slug'] = wp_unique_term_slug( $args['slug'], (object)$term_args ); |
|
| 4905 | + if ((!empty($args['slug']) && term_exists($args['slug'], $taxonomy)) || empty($args['slug'])) {
|
|
| 4906 | + $term_args = array_merge($term_data, $args); |
|
| 4907 | + $defaults = array('alias_of' => '', 'description' => '', 'parent' => 0, 'slug' => '');
|
|
| 4908 | + $term_args = wp_parse_args($term_args, $defaults); |
|
| 4909 | + $term_args = sanitize_term($term_args, $taxonomy, 'db'); |
|
| 4910 | + $args['slug'] = wp_unique_term_slug($args['slug'], (object) $term_args); |
|
| 4911 | 4911 | } |
| 4912 | 4912 | |
| 4913 | - if( !empty( $term ) ) {
|
|
| 4914 | - $result = wp_insert_term( $term, $taxonomy, $args ); |
|
| 4915 | - if( !is_wp_error( $result ) ) {
|
|
| 4916 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4913 | + if (!empty($term)) {
|
|
| 4914 | + $result = wp_insert_term($term, $taxonomy, $args); |
|
| 4915 | + if (!is_wp_error($result)) {
|
|
| 4916 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 4917 | 4917 | } |
| 4918 | 4918 | } |
| 4919 | 4919 | |
@@ -4943,36 +4943,36 @@ discard block |
||
| 4943 | 4943 | * } |
| 4944 | 4944 | * @return int|bool Term id when success, false when fail. |
| 4945 | 4945 | */ |
| 4946 | -function geodir_imex_update_term( $taxonomy, $term_data ) {
|
|
| 4947 | - if ( empty( $taxonomy ) || empty( $term_data ) ) {
|
|
| 4946 | +function geodir_imex_update_term($taxonomy, $term_data) {
|
|
| 4947 | + if (empty($taxonomy) || empty($term_data)) {
|
|
| 4948 | 4948 | return false; |
| 4949 | 4949 | } |
| 4950 | 4950 | |
| 4951 | - $term_id = isset( $term_data['term_id'] ) && !empty( $term_data['term_id'] ) ? $term_data['term_id'] : 0; |
|
| 4951 | + $term_id = isset($term_data['term_id']) && !empty($term_data['term_id']) ? $term_data['term_id'] : 0; |
|
| 4952 | 4952 | |
| 4953 | 4953 | $args = array(); |
| 4954 | - $args['description'] = isset( $term_data['description'] ) ? $term_data['description'] : ''; |
|
| 4955 | - $args['slug'] = isset( $term_data['slug'] ) ? $term_data['slug'] : ''; |
|
| 4956 | - $args['parent'] = isset( $term_data['parent'] ) ? (int)$term_data['parent'] : ''; |
|
| 4954 | + $args['description'] = isset($term_data['description']) ? $term_data['description'] : ''; |
|
| 4955 | + $args['slug'] = isset($term_data['slug']) ? $term_data['slug'] : ''; |
|
| 4956 | + $args['parent'] = isset($term_data['parent']) ? (int) $term_data['parent'] : ''; |
|
| 4957 | 4957 | |
| 4958 | - if ( $term_id > 0 && $term_info = (array)get_term( $term_id, $taxonomy ) ) {
|
|
| 4958 | + if ($term_id > 0 && $term_info = (array) get_term($term_id, $taxonomy)) {
|
|
| 4959 | 4959 | $term_data['term_id'] = $term_info['term_id']; |
| 4960 | 4960 | |
| 4961 | - $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
|
| 4961 | + $result = wp_update_term($term_data['term_id'], $taxonomy, $term_data); |
|
| 4962 | 4962 | |
| 4963 | - if( !is_wp_error( $result ) ) {
|
|
| 4964 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4963 | + if (!is_wp_error($result)) {
|
|
| 4964 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 4965 | 4965 | } |
| 4966 | - } else if ( $term_data['slug'] != '' && $term_info = (array)term_exists( $term_data['slug'], $taxonomy ) ) {
|
|
| 4966 | + } else if ($term_data['slug'] != '' && $term_info = (array) term_exists($term_data['slug'], $taxonomy)) {
|
|
| 4967 | 4967 | $term_data['term_id'] = $term_info['term_id']; |
| 4968 | 4968 | |
| 4969 | - $result = wp_update_term( $term_data['term_id'], $taxonomy, $term_data ); |
|
| 4969 | + $result = wp_update_term($term_data['term_id'], $taxonomy, $term_data); |
|
| 4970 | 4970 | |
| 4971 | - if( !is_wp_error( $result ) ) {
|
|
| 4972 | - return isset( $result['term_id'] ) ? $result['term_id'] : 0; |
|
| 4971 | + if (!is_wp_error($result)) {
|
|
| 4972 | + return isset($result['term_id']) ? $result['term_id'] : 0; |
|
| 4973 | 4973 | } |
| 4974 | 4974 | } else {
|
| 4975 | - return geodir_imex_insert_term( $taxonomy, $term_data ); |
|
| 4975 | + return geodir_imex_insert_term($taxonomy, $term_data); |
|
| 4976 | 4976 | } |
| 4977 | 4977 | |
| 4978 | 4978 | return false; |
@@ -4991,20 +4991,20 @@ discard block |
||
| 4991 | 4991 | * @param string $post_type Post type. |
| 4992 | 4992 | * @return int Posts count. |
| 4993 | 4993 | */ |
| 4994 | -function geodir_get_posts_count( $post_type ) {
|
|
| 4994 | +function geodir_get_posts_count($post_type) {
|
|
| 4995 | 4995 | global $wpdb, $plugin_prefix; |
| 4996 | 4996 | |
| 4997 | - if ( !post_type_exists( $post_type ) ) {
|
|
| 4997 | + if (!post_type_exists($post_type)) {
|
|
| 4998 | 4998 | return 0; |
| 4999 | 4999 | } |
| 5000 | 5000 | |
| 5001 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5001 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5002 | 5002 | |
| 5003 | 5003 | // Skip listing with statuses trash, auto-draft etc... |
| 5004 | 5004 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5005 | 5005 | $where_statuses = ''; |
| 5006 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5007 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5006 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5007 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5008 | 5008 | } |
| 5009 | 5009 | |
| 5010 | 5010 | /** |
@@ -5015,11 +5015,11 @@ discard block |
||
| 5015 | 5015 | * |
| 5016 | 5016 | * @param string $where SQL where clause part. |
| 5017 | 5017 | */ |
| 5018 | - $where_statuses = apply_filters( 'geodir_get_posts_count', $where_statuses, $post_type ); |
|
| 5018 | + $where_statuses = apply_filters('geodir_get_posts_count', $where_statuses, $post_type);
|
|
| 5019 | 5019 | |
| 5020 | - $query = $wpdb->prepare( "SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses, $post_type );
|
|
| 5020 | + $query = $wpdb->prepare("SELECT COUNT({$wpdb->posts}.ID) FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses, $post_type);
|
|
| 5021 | 5021 | |
| 5022 | - $posts_count = (int)$wpdb->get_var( $query ); |
|
| 5022 | + $posts_count = (int) $wpdb->get_var($query); |
|
| 5023 | 5023 | |
| 5024 | 5024 | /** |
| 5025 | 5025 | * Modify returned post counts for the current post type. |
@@ -5030,7 +5030,7 @@ discard block |
||
| 5030 | 5030 | * @param int $posts_count Post counts. |
| 5031 | 5031 | * @param string $post_type Post type. |
| 5032 | 5032 | */ |
| 5033 | - $posts_count = apply_filters( 'geodir_imex_count_posts', $posts_count, $post_type ); |
|
| 5033 | + $posts_count = apply_filters('geodir_imex_count_posts', $posts_count, $post_type);
|
|
| 5034 | 5034 | |
| 5035 | 5035 | return $posts_count; |
| 5036 | 5036 | } |
@@ -5052,19 +5052,19 @@ discard block |
||
| 5052 | 5052 | * @param int $page_no Page number. Default 0. |
| 5053 | 5053 | * @return array Array of posts data. |
| 5054 | 5054 | */ |
| 5055 | -function geodir_imex_get_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5055 | +function geodir_imex_get_posts($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5056 | 5056 | global $wp_filesystem; |
| 5057 | 5057 | |
| 5058 | - $posts = geodir_get_export_posts( $post_type, $per_page, $page_no ); |
|
| 5058 | + $posts = geodir_get_export_posts($post_type, $per_page, $page_no); |
|
| 5059 | 5059 | |
| 5060 | 5060 | $csv_rows = array(); |
| 5061 | 5061 | |
| 5062 | - if ( !empty( $posts ) ) {
|
|
| 5063 | - $is_payment_plugin = is_plugin_active( 'geodir_payment_manager/geodir_payment_manager.php' ); |
|
| 5062 | + if (!empty($posts)) {
|
|
| 5063 | + $is_payment_plugin = is_plugin_active('geodir_payment_manager/geodir_payment_manager.php');
|
|
| 5064 | 5064 | $location_manager = function_exists('geodir_location_plugin_activated') ? true : false; // Check location manager installed & active.
|
| 5065 | - $location_allowed = function_exists( 'geodir_cpt_no_location' ) && geodir_cpt_no_location( $post_type ) ? false : true; |
|
| 5065 | + $location_allowed = function_exists('geodir_cpt_no_location') && geodir_cpt_no_location($post_type) ? false : true;
|
|
| 5066 | 5066 | $neighbourhood_active = $location_manager && $location_allowed && get_option('location_neighbourhoods') ? true : false;
|
| 5067 | - $is_claim_active = is_plugin_active( 'geodir_claim_listing/geodir_claim_listing.php' ) && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5067 | + $is_claim_active = is_plugin_active('geodir_claim_listing/geodir_claim_listing.php') && get_option('geodir_claim_enable') === 'yes' ? true : false;
|
|
| 5068 | 5068 | |
| 5069 | 5069 | $csv_row = array(); |
| 5070 | 5070 | $csv_row[] = 'post_id'; |
@@ -5075,7 +5075,7 @@ discard block |
||
| 5075 | 5075 | $csv_row[] = 'default_category'; |
| 5076 | 5076 | $csv_row[] = 'post_tags'; |
| 5077 | 5077 | $csv_row[] = 'post_type'; |
| 5078 | - if ( $post_type == 'gd_event' ) {
|
|
| 5078 | + if ($post_type == 'gd_event') {
|
|
| 5079 | 5079 | $csv_row[] = 'event_date'; |
| 5080 | 5080 | $csv_row[] = 'event_enddate'; |
| 5081 | 5081 | $csv_row[] = 'starttime'; |
@@ -5134,15 +5134,15 @@ discard block |
||
| 5134 | 5134 | } |
| 5135 | 5135 | // WPML |
| 5136 | 5136 | |
| 5137 | - $custom_fields = geodir_imex_get_custom_fields( $post_type ); |
|
| 5138 | - if ( !empty( $custom_fields ) ) {
|
|
| 5139 | - foreach ( $custom_fields as $custom_field ) {
|
|
| 5137 | + $custom_fields = geodir_imex_get_custom_fields($post_type); |
|
| 5138 | + if (!empty($custom_fields)) {
|
|
| 5139 | + foreach ($custom_fields as $custom_field) {
|
|
| 5140 | 5140 | $csv_row[] = $custom_field->htmlvar_name; |
| 5141 | 5141 | } |
| 5142 | 5142 | } |
| 5143 | 5143 | |
| 5144 | 5144 | // Export franchise fields |
| 5145 | - $is_franchise_active = is_plugin_active( 'geodir_franchise/geodir_franchise.php' ) && geodir_franchise_enabled( $post_type ) ? true : false; |
|
| 5145 | + $is_franchise_active = is_plugin_active('geodir_franchise/geodir_franchise.php') && geodir_franchise_enabled($post_type) ? true : false;
|
|
| 5146 | 5146 | if ($is_franchise_active) {
|
| 5147 | 5147 | $csv_row[] = 'gd_is_franchise'; |
| 5148 | 5148 | $csv_row[] = 'gd_franchise_lock'; |
@@ -5163,28 +5163,28 @@ discard block |
||
| 5163 | 5163 | $csv_rows[] = $csv_row; |
| 5164 | 5164 | |
| 5165 | 5165 | $images_count = 5; |
| 5166 | - $xx=0; |
|
| 5167 | - foreach ( $posts as $post ) {$xx++;
|
|
| 5166 | + $xx = 0; |
|
| 5167 | + foreach ($posts as $post) {$xx++;
|
|
| 5168 | 5168 | $post_id = $post['ID']; |
| 5169 | 5169 | |
| 5170 | - $gd_post_info = geodir_get_post_info( $post_id ); |
|
| 5171 | - $post_info = (array)$gd_post_info; |
|
| 5170 | + $gd_post_info = geodir_get_post_info($post_id); |
|
| 5171 | + $post_info = (array) $gd_post_info; |
|
| 5172 | 5172 | |
| 5173 | - $taxonomy_category = $post_type . 'category'; |
|
| 5174 | - $taxonomy_tags = $post_type . '_tags'; |
|
| 5173 | + $taxonomy_category = $post_type.'category'; |
|
| 5174 | + $taxonomy_tags = $post_type.'_tags'; |
|
| 5175 | 5175 | |
| 5176 | 5176 | $post_category = ''; |
| 5177 | 5177 | $default_category_id = $gd_post_info->default_category; |
| 5178 | 5178 | $default_category = ''; |
| 5179 | 5179 | $post_tags = ''; |
| 5180 | - $terms = wp_get_post_terms( $post_id, array( $taxonomy_category, $taxonomy_tags ) ); |
|
| 5180 | + $terms = wp_get_post_terms($post_id, array($taxonomy_category, $taxonomy_tags)); |
|
| 5181 | 5181 | |
| 5182 | - if ( !empty( $terms ) && !is_wp_error( $terms ) ) {
|
|
| 5182 | + if (!empty($terms) && !is_wp_error($terms)) {
|
|
| 5183 | 5183 | $post_category = array(); |
| 5184 | 5184 | $post_tags = array(); |
| 5185 | 5185 | |
| 5186 | - foreach ( $terms as $term ) {
|
|
| 5187 | - if ( $term->taxonomy == $taxonomy_category ) {
|
|
| 5186 | + foreach ($terms as $term) {
|
|
| 5187 | + if ($term->taxonomy == $taxonomy_category) {
|
|
| 5188 | 5188 | $post_category[] = $term->name; |
| 5189 | 5189 | |
| 5190 | 5190 | if ($default_category_id == $term->term_id) {
|
@@ -5192,7 +5192,7 @@ discard block |
||
| 5192 | 5192 | } |
| 5193 | 5193 | } |
| 5194 | 5194 | |
| 5195 | - if ( $term->taxonomy == $taxonomy_tags ) {
|
|
| 5195 | + if ($term->taxonomy == $taxonomy_tags) {
|
|
| 5196 | 5196 | $post_tags[] = $term->name; |
| 5197 | 5197 | } |
| 5198 | 5198 | } |
@@ -5200,47 +5200,47 @@ discard block |
||
| 5200 | 5200 | if (empty($default_category) && !empty($post_category)) {
|
| 5201 | 5201 | $default_category = $post_category[0]; // Set first one as default category. |
| 5202 | 5202 | } |
| 5203 | - $post_category = !empty( $post_category ) ? implode( ',', $post_category ) : ''; |
|
| 5204 | - $post_tags = !empty( $post_tags ) ? implode( ',', $post_tags ) : ''; |
|
| 5203 | + $post_category = !empty($post_category) ? implode(',', $post_category) : '';
|
|
| 5204 | + $post_tags = !empty($post_tags) ? implode(',', $post_tags) : '';
|
|
| 5205 | 5205 | } |
| 5206 | 5206 | |
| 5207 | 5207 | // Franchise data |
| 5208 | - if ($is_franchise_active && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 && geodir_franchise_check((int)$post_info['franchise'])) {
|
|
| 5208 | + if ($is_franchise_active && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 && geodir_franchise_check((int) $post_info['franchise'])) {
|
|
| 5209 | 5209 | $franchise_id = $post_info['franchise']; |
| 5210 | 5210 | $gd_franchise_info = geodir_get_post_info($franchise_id); |
| 5211 | 5211 | |
| 5212 | 5212 | if (geodir_franchise_pkg_is_active($gd_franchise_info)) {
|
| 5213 | - $franchise_info = (array)$gd_franchise_info; |
|
| 5213 | + $franchise_info = (array) $gd_franchise_info; |
|
| 5214 | 5214 | $locked_fields = geodir_franchise_get_locked_fields($franchise_id, true); |
| 5215 | 5215 | |
| 5216 | 5216 | if (!empty($locked_fields)) {
|
| 5217 | - foreach( $locked_fields as $locked_field) {
|
|
| 5217 | + foreach ($locked_fields as $locked_field) {
|
|
| 5218 | 5218 | if (isset($post_info[$locked_field]) && isset($franchise_info[$locked_field])) {
|
| 5219 | 5219 | $post_info[$locked_field] = $franchise_info[$locked_field]; |
| 5220 | 5220 | } |
| 5221 | 5221 | |
| 5222 | 5222 | if (in_array($taxonomy_category, $locked_fields) || in_array('post_tags', $locked_fields)) {
|
| 5223 | - $franchise_terms = wp_get_post_terms( $franchise_id, array( $taxonomy_category, $taxonomy_tags ) ); |
|
| 5223 | + $franchise_terms = wp_get_post_terms($franchise_id, array($taxonomy_category, $taxonomy_tags)); |
|
| 5224 | 5224 | |
| 5225 | - if ( !empty( $franchise_terms ) && !is_wp_error( $franchise_terms ) ) {
|
|
| 5225 | + if (!empty($franchise_terms) && !is_wp_error($franchise_terms)) {
|
|
| 5226 | 5226 | $franchise_post_category = array(); |
| 5227 | 5227 | $franchise_post_tags = array(); |
| 5228 | 5228 | |
| 5229 | - foreach ( $franchise_terms as $franchise_term ) {
|
|
| 5230 | - if ( $franchise_term->taxonomy == $taxonomy_category ) {
|
|
| 5229 | + foreach ($franchise_terms as $franchise_term) {
|
|
| 5230 | + if ($franchise_term->taxonomy == $taxonomy_category) {
|
|
| 5231 | 5231 | $franchise_post_category[] = $franchise_term->name; |
| 5232 | 5232 | } |
| 5233 | 5233 | |
| 5234 | - if ( $franchise_term->taxonomy == $taxonomy_tags ) {
|
|
| 5234 | + if ($franchise_term->taxonomy == $taxonomy_tags) {
|
|
| 5235 | 5235 | $franchise_post_tags[] = $franchise_term->name; |
| 5236 | 5236 | } |
| 5237 | 5237 | } |
| 5238 | 5238 | |
| 5239 | 5239 | if (in_array($taxonomy_category, $locked_fields)) {
|
| 5240 | - $post_category = !empty( $franchise_post_category ) ? implode( ',', $franchise_post_category ) : ''; |
|
| 5240 | + $post_category = !empty($franchise_post_category) ? implode(',', $franchise_post_category) : '';
|
|
| 5241 | 5241 | } |
| 5242 | 5242 | if (in_array('post_tags', $locked_fields)) {
|
| 5243 | - $post_tags = !empty( $franchise_post_tags ) ? implode( ',', $franchise_post_tags ) : ''; |
|
| 5243 | + $post_tags = !empty($franchise_post_tags) ? implode(',', $franchise_post_tags) : '';
|
|
| 5244 | 5244 | } |
| 5245 | 5245 | } |
| 5246 | 5246 | } |
@@ -5249,18 +5249,18 @@ discard block |
||
| 5249 | 5249 | } |
| 5250 | 5250 | } |
| 5251 | 5251 | |
| 5252 | - $post_images = geodir_get_images( $post_id ); |
|
| 5252 | + $post_images = geodir_get_images($post_id); |
|
| 5253 | 5253 | $current_images = array(); |
| 5254 | - if ( !empty( $post_images ) ) {
|
|
| 5255 | - foreach ( $post_images as $post_image ) {
|
|
| 5256 | - $post_image = (array)$post_image; |
|
| 5257 | - $image = !empty( $post_image ) && isset( $post_image['path'] ) && $wp_filesystem->is_file( $post_image['path'] ) && $wp_filesystem->exists( $post_image['path'] ) ? $post_image['src'] : ''; |
|
| 5258 | - if ( $image ) {
|
|
| 5254 | + if (!empty($post_images)) {
|
|
| 5255 | + foreach ($post_images as $post_image) {
|
|
| 5256 | + $post_image = (array) $post_image; |
|
| 5257 | + $image = !empty($post_image) && isset($post_image['path']) && $wp_filesystem->is_file($post_image['path']) && $wp_filesystem->exists($post_image['path']) ? $post_image['src'] : ''; |
|
| 5258 | + if ($image) {
|
|
| 5259 | 5259 | $current_images[] = $image; |
| 5260 | 5260 | } |
| 5261 | 5261 | } |
| 5262 | 5262 | |
| 5263 | - $images_count = max( $images_count, count( $current_images ) ); |
|
| 5263 | + $images_count = max($images_count, count($current_images)); |
|
| 5264 | 5264 | } |
| 5265 | 5265 | |
| 5266 | 5266 | $csv_row = array(); |
@@ -5272,7 +5272,7 @@ discard block |
||
| 5272 | 5272 | $csv_row[] = $default_category; // default_category |
| 5273 | 5273 | $csv_row[] = $post_tags; // post_tags |
| 5274 | 5274 | $csv_row[] = $post_type; // post_type |
| 5275 | - if ( $post_type == 'gd_event' ) {
|
|
| 5275 | + if ($post_type == 'gd_event') {
|
|
| 5276 | 5276 | $event_data = geodir_imex_get_event_data($post, $gd_post_info); |
| 5277 | 5277 | $csv_row[] = $event_data['event_date']; // event_date |
| 5278 | 5278 | $csv_row[] = $event_data['event_enddate']; // enddate |
@@ -5293,12 +5293,12 @@ discard block |
||
| 5293 | 5293 | $csv_row[] = $event_data['recurring_end_date']; // repeat_end |
| 5294 | 5294 | } |
| 5295 | 5295 | $csv_row[] = $post_info['post_status']; // post_status |
| 5296 | - $csv_row[] = (int)$post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
|
| 5296 | + $csv_row[] = (int) $post_info['is_featured'] == 1 ? 1 : ''; // is_featured |
|
| 5297 | 5297 | if ($is_claim_active) {
|
| 5298 | - $csv_row[] = !empty($post_info['claimed']) && (int)$post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5298 | + $csv_row[] = !empty($post_info['claimed']) && (int) $post_info['claimed'] == 1 ? 1 : ''; // claimed |
|
| 5299 | 5299 | } |
| 5300 | 5300 | if ($is_payment_plugin) {
|
| 5301 | - $csv_row[] = (int)$post_info['package_id']; // package_id |
|
| 5301 | + $csv_row[] = (int) $post_info['package_id']; // package_id |
|
| 5302 | 5302 | $csv_row[] = $post_info['alive_days'] !== '' ? absint($post_info['alive_days']) : ''; // alive_days |
| 5303 | 5303 | $csv_row[] = $post_info['expire_date'] != '' && geodir_strtolower($post_info['expire_date']) != 'never' ? date_i18n('Y-m-d', strtotime($post_info['expire_date'])) : 'Never'; // expire_date
|
| 5304 | 5304 | } |
@@ -5335,14 +5335,14 @@ discard block |
||
| 5335 | 5335 | $csv_row[] = stripslashes($post_info['geodir_special_offers']); // geodir_special_offers |
| 5336 | 5336 | // WPML |
| 5337 | 5337 | if ($is_wpml) {
|
| 5338 | - $csv_row[] = geodir_get_language_for_element( $post_id, 'post_' . $post_type ); |
|
| 5339 | - $csv_row[] = geodir_imex_original_post_id( $post_id, 'post_' . $post_type ); |
|
| 5338 | + $csv_row[] = geodir_get_language_for_element($post_id, 'post_'.$post_type); |
|
| 5339 | + $csv_row[] = geodir_imex_original_post_id($post_id, 'post_'.$post_type); |
|
| 5340 | 5340 | } |
| 5341 | 5341 | // WPML |
| 5342 | 5342 | |
| 5343 | - if ( !empty( $custom_fields ) ) {
|
|
| 5344 | - foreach ( $custom_fields as $custom_field ) {
|
|
| 5345 | - $csv_row[] = isset( $post_info[$custom_field->htmlvar_name] ) ? $post_info[$custom_field->htmlvar_name] : ''; |
|
| 5343 | + if (!empty($custom_fields)) {
|
|
| 5344 | + foreach ($custom_fields as $custom_field) {
|
|
| 5345 | + $csv_row[] = isset($post_info[$custom_field->htmlvar_name]) ? $post_info[$custom_field->htmlvar_name] : ''; |
|
| 5346 | 5346 | } |
| 5347 | 5347 | } |
| 5348 | 5348 | |
@@ -5353,15 +5353,15 @@ discard block |
||
| 5353 | 5353 | $franchise = ''; |
| 5354 | 5354 | |
| 5355 | 5355 | if (geodir_franchise_pkg_is_active($gd_post_info)) {
|
| 5356 | - $gd_is_franchise = (int)get_post_meta( $post_id, 'gd_is_franchise', true ); |
|
| 5357 | - $locaked_fields = $gd_is_franchise ? get_post_meta( $post_id, 'gd_franchise_lock', true ) : ''; |
|
| 5356 | + $gd_is_franchise = (int) get_post_meta($post_id, 'gd_is_franchise', true); |
|
| 5357 | + $locaked_fields = $gd_is_franchise ? get_post_meta($post_id, 'gd_franchise_lock', true) : ''; |
|
| 5358 | 5358 | $locaked_fields = (is_array($locaked_fields) && !empty($locaked_fields) ? implode(",", $locaked_fields) : '');
|
| 5359 | - $franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int)$post_info['franchise'] > 0 ? (int)$post_info['franchise'] : 0; // franchise id |
|
| 5359 | + $franchise = !$gd_is_franchise && isset($post_info['franchise']) && (int) $post_info['franchise'] > 0 ? (int) $post_info['franchise'] : 0; // franchise id |
|
| 5360 | 5360 | } |
| 5361 | 5361 | |
| 5362 | - $csv_row[] = (int)$gd_is_franchise; // gd_is_franchise |
|
| 5362 | + $csv_row[] = (int) $gd_is_franchise; // gd_is_franchise |
|
| 5363 | 5363 | $csv_row[] = $locaked_fields; // gd_franchise_lock fields |
| 5364 | - $csv_row[] = (int)$franchise; // franchise id |
|
| 5364 | + $csv_row[] = (int) $franchise; // franchise id |
|
| 5365 | 5365 | } |
| 5366 | 5366 | |
| 5367 | 5367 | /** |
@@ -5375,15 +5375,15 @@ discard block |
||
| 5375 | 5375 | */ |
| 5376 | 5376 | $csv_row = apply_filters('geodir_export_listing_csv_column_values', $csv_row, $post_info);
|
| 5377 | 5377 | |
| 5378 | - for ( $c = 0; $c < $images_count; $c++ ) {
|
|
| 5379 | - $csv_row[] = isset( $current_images[$c] ) ? $current_images[$c] : ''; // IMAGE |
|
| 5378 | + for ($c = 0; $c < $images_count; $c++) {
|
|
| 5379 | + $csv_row[] = isset($current_images[$c]) ? $current_images[$c] : ''; // IMAGE |
|
| 5380 | 5380 | } |
| 5381 | 5381 | |
| 5382 | 5382 | $csv_rows[] = $csv_row; |
| 5383 | 5383 | |
| 5384 | 5384 | } |
| 5385 | 5385 | |
| 5386 | - for ( $c = 0; $c < $images_count; $c++ ) {
|
|
| 5386 | + for ($c = 0; $c < $images_count; $c++) {
|
|
| 5387 | 5387 | $csv_rows[0][] = 'IMAGE'; |
| 5388 | 5388 | } |
| 5389 | 5389 | } |
@@ -5405,30 +5405,30 @@ discard block |
||
| 5405 | 5405 | * @param int $page_no Page number. Default 0. |
| 5406 | 5406 | * @return array Array of posts data. |
| 5407 | 5407 | */ |
| 5408 | -function geodir_get_export_posts( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5408 | +function geodir_get_export_posts($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5409 | 5409 | global $wpdb, $plugin_prefix; |
| 5410 | 5410 | |
| 5411 | - if ( ! post_type_exists( $post_type ) ) |
|
| 5411 | + if (!post_type_exists($post_type)) |
|
| 5412 | 5412 | return new stdClass; |
| 5413 | 5413 | |
| 5414 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5414 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5415 | 5415 | |
| 5416 | 5416 | $limit = ''; |
| 5417 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5418 | - $offset = ( $page_no - 1 ) * $per_page; |
|
| 5417 | + if ($per_page > 0 && $page_no > 0) {
|
|
| 5418 | + $offset = ($page_no - 1) * $per_page; |
|
| 5419 | 5419 | |
| 5420 | - if ( $offset > 0 ) {
|
|
| 5421 | - $limit = " LIMIT " . $offset . "," . $per_page; |
|
| 5420 | + if ($offset > 0) {
|
|
| 5421 | + $limit = " LIMIT ".$offset.",".$per_page; |
|
| 5422 | 5422 | } else {
|
| 5423 | - $limit = " LIMIT " . $per_page; |
|
| 5423 | + $limit = " LIMIT ".$per_page; |
|
| 5424 | 5424 | } |
| 5425 | 5425 | } |
| 5426 | 5426 | |
| 5427 | 5427 | // Skip listing with statuses trash, auto-draft etc... |
| 5428 | 5428 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5429 | 5429 | $where_statuses = ''; |
| 5430 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5431 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5430 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5431 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5432 | 5432 | } |
| 5433 | 5433 | |
| 5434 | 5434 | /** |
@@ -5439,9 +5439,9 @@ discard block |
||
| 5439 | 5439 | * |
| 5440 | 5440 | * @param string $where SQL where clause part. |
| 5441 | 5441 | */ |
| 5442 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5442 | + $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
|
|
| 5443 | 5443 | |
| 5444 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " ORDER BY {$wpdb->posts}.ID ASC" . $limit, $post_type );
|
|
| 5444 | + $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID FROM {$wpdb->posts} INNER JOIN {$table} ON {$table}.post_id = {$wpdb->posts}.ID WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." ORDER BY {$wpdb->posts}.ID ASC".$limit, $post_type);
|
|
| 5445 | 5445 | /** |
| 5446 | 5446 | * Modify returned posts SQL query for the current post type. |
| 5447 | 5447 | * |
@@ -5451,8 +5451,8 @@ discard block |
||
| 5451 | 5451 | * @param int $query The SQL query. |
| 5452 | 5452 | * @param string $post_type Post type. |
| 5453 | 5453 | */ |
| 5454 | - $query = apply_filters( 'geodir_imex_export_posts_query', $query, $post_type ); |
|
| 5455 | - $results = (array)$wpdb->get_results( $wpdb->prepare( $query, $post_type ), ARRAY_A ); |
|
| 5454 | + $query = apply_filters('geodir_imex_export_posts_query', $query, $post_type);
|
|
| 5455 | + $results = (array) $wpdb->get_results($wpdb->prepare($query, $post_type), ARRAY_A); |
|
| 5456 | 5456 | |
| 5457 | 5457 | /** |
| 5458 | 5458 | * Modify returned post results for the current post type. |
@@ -5463,7 +5463,7 @@ discard block |
||
| 5463 | 5463 | * @param object $results An object containing all post ids. |
| 5464 | 5464 | * @param string $post_type Post type. |
| 5465 | 5465 | */ |
| 5466 | - return apply_filters( 'geodir_export_posts', $results, $post_type ); |
|
| 5466 | + return apply_filters('geodir_export_posts', $results, $post_type);
|
|
| 5467 | 5467 | } |
| 5468 | 5468 | |
| 5469 | 5469 | /** |
@@ -5481,24 +5481,24 @@ discard block |
||
| 5481 | 5481 | * @param string $post_type Post type. |
| 5482 | 5482 | * @return string The SQL query. |
| 5483 | 5483 | */ |
| 5484 | -function geodir_imex_get_events_query( $query, $post_type ) {
|
|
| 5485 | - if ( $post_type == 'gd_event' ) {
|
|
| 5484 | +function geodir_imex_get_events_query($query, $post_type) {
|
|
| 5485 | + if ($post_type == 'gd_event') {
|
|
| 5486 | 5486 | global $wpdb, $plugin_prefix; |
| 5487 | 5487 | |
| 5488 | - $table = $plugin_prefix . $post_type . '_detail'; |
|
| 5488 | + $table = $plugin_prefix.$post_type.'_detail'; |
|
| 5489 | 5489 | $schedule_table = EVENT_SCHEDULE; |
| 5490 | 5490 | |
| 5491 | 5491 | // Skip listing with statuses trash, auto-draft etc... |
| 5492 | 5492 | $skip_statuses = geodir_imex_export_skip_statuses(); |
| 5493 | 5493 | $where_statuses = ''; |
| 5494 | - if ( !empty( $skip_statuses ) && is_array( $skip_statuses ) ) {
|
|
| 5495 | - $where_statuses = "AND `" . $wpdb->posts . "`.`post_status` NOT IN('" . implode( "','", $skip_statuses ) . "')";
|
|
| 5494 | + if (!empty($skip_statuses) && is_array($skip_statuses)) {
|
|
| 5495 | + $where_statuses = "AND `".$wpdb->posts."`.`post_status` NOT IN('".implode("','", $skip_statuses)."')";
|
|
| 5496 | 5496 | } |
| 5497 | 5497 | |
| 5498 | 5498 | /** This action is documented in geodirectory-functions/geodirectory-admin/admin_functions.php */ |
| 5499 | - $where_statuses = apply_filters( 'geodir_get_export_posts', $where_statuses, $post_type ); |
|
| 5499 | + $where_statuses = apply_filters('geodir_get_export_posts', $where_statuses, $post_type);
|
|
| 5500 | 5500 | |
| 5501 | - $query = $wpdb->prepare( "SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s " . $where_statuses . " GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type );
|
|
| 5501 | + $query = $wpdb->prepare("SELECT {$wpdb->posts}.ID, {$schedule_table}.event_date, {$schedule_table}.event_enddate AS enddate, {$schedule_table}.event_starttime AS starttime, {$schedule_table}.event_endtime AS endtime FROM {$wpdb->posts} INNER JOIN {$table} ON ({$table}.post_id = {$wpdb->posts}.ID) INNER JOIN {$schedule_table} ON ({$schedule_table}.event_id = {$wpdb->posts}.ID) WHERE {$wpdb->posts}.post_type = %s ".$where_statuses." GROUP BY {$table}.post_id ORDER BY {$wpdb->posts}.ID ASC, {$schedule_table}.schedule_id ASC", $post_type);
|
|
| 5502 | 5502 | } |
| 5503 | 5503 | |
| 5504 | 5504 | return $query; |
@@ -5522,35 +5522,35 @@ discard block |
||
| 5522 | 5522 | * @param string $post_type Post type. |
| 5523 | 5523 | * @return int Total terms count. |
| 5524 | 5524 | */ |
| 5525 | -function geodir_get_terms_count( $post_type ) {
|
|
| 5526 | - $args = array( 'hide_empty' => 0 ); |
|
| 5525 | +function geodir_get_terms_count($post_type) {
|
|
| 5526 | + $args = array('hide_empty' => 0);
|
|
| 5527 | 5527 | |
| 5528 | - remove_all_filters( 'get_terms' ); |
|
| 5528 | + remove_all_filters('get_terms');
|
|
| 5529 | 5529 | |
| 5530 | - $taxonomy = $post_type . 'category'; |
|
| 5530 | + $taxonomy = $post_type.'category'; |
|
| 5531 | 5531 | |
| 5532 | 5532 | // WPML |
| 5533 | 5533 | $is_wpml = geodir_is_wpml(); |
| 5534 | 5534 | $active_lang = 'all'; |
| 5535 | - if ( $is_wpml ) {
|
|
| 5535 | + if ($is_wpml) {
|
|
| 5536 | 5536 | global $sitepress; |
| 5537 | 5537 | $active_lang = $sitepress->get_current_language(); |
| 5538 | 5538 | |
| 5539 | - if ( $active_lang != 'all' ) {
|
|
| 5540 | - $sitepress->switch_lang( 'all', true ); |
|
| 5539 | + if ($active_lang != 'all') {
|
|
| 5540 | + $sitepress->switch_lang('all', true);
|
|
| 5541 | 5541 | } |
| 5542 | 5542 | } |
| 5543 | 5543 | // WPML |
| 5544 | 5544 | |
| 5545 | - $count_terms = wp_count_terms( $taxonomy, $args ); |
|
| 5545 | + $count_terms = wp_count_terms($taxonomy, $args); |
|
| 5546 | 5546 | |
| 5547 | 5547 | // WPML |
| 5548 | - if ( $is_wpml && $active_lang !== 'all' ) {
|
|
| 5548 | + if ($is_wpml && $active_lang !== 'all') {
|
|
| 5549 | 5549 | global $sitepress; |
| 5550 | - $sitepress->switch_lang( $active_lang, true ); |
|
| 5550 | + $sitepress->switch_lang($active_lang, true); |
|
| 5551 | 5551 | } |
| 5552 | 5552 | // WPML |
| 5553 | - $count_terms = !is_wp_error( $count_terms ) ? $count_terms : 0; |
|
| 5553 | + $count_terms = !is_wp_error($count_terms) ? $count_terms : 0; |
|
| 5554 | 5554 | |
| 5555 | 5555 | return $count_terms; |
| 5556 | 5556 | } |
@@ -5567,23 +5567,23 @@ discard block |
||
| 5567 | 5567 | * @param int $page_no Page number. Default 0. |
| 5568 | 5568 | * @return array Array of terms data. |
| 5569 | 5569 | */ |
| 5570 | -function geodir_imex_get_terms( $post_type, $per_page = 0, $page_no = 0 ) {
|
|
| 5571 | - $args = array( 'hide_empty' => 0, 'orderby' => 'id' ); |
|
| 5570 | +function geodir_imex_get_terms($post_type, $per_page = 0, $page_no = 0) {
|
|
| 5571 | + $args = array('hide_empty' => 0, 'orderby' => 'id');
|
|
| 5572 | 5572 | |
| 5573 | - remove_all_filters( 'get_terms' ); |
|
| 5573 | + remove_all_filters('get_terms');
|
|
| 5574 | 5574 | |
| 5575 | - $taxonomy = $post_type . 'category'; |
|
| 5575 | + $taxonomy = $post_type.'category'; |
|
| 5576 | 5576 | |
| 5577 | - if ( $per_page > 0 && $page_no > 0 ) {
|
|
| 5578 | - $args['offset'] = ( $page_no - 1 ) * $per_page; |
|
| 5577 | + if ($per_page > 0 && $page_no > 0) {
|
|
| 5578 | + $args['offset'] = ($page_no - 1) * $per_page; |
|
| 5579 | 5579 | $args['number'] = $per_page; |
| 5580 | 5580 | } |
| 5581 | 5581 | |
| 5582 | - $terms = get_terms( $taxonomy, $args ); |
|
| 5582 | + $terms = get_terms($taxonomy, $args); |
|
| 5583 | 5583 | |
| 5584 | 5584 | $csv_rows = array(); |
| 5585 | 5585 | |
| 5586 | - if ( !empty( $terms ) ) {
|
|
| 5586 | + if (!empty($terms)) {
|
|
| 5587 | 5587 | $csv_row = array(); |
| 5588 | 5588 | $csv_row[] = 'cat_id'; |
| 5589 | 5589 | $csv_row[] = 'cat_name'; |
@@ -5605,16 +5605,16 @@ discard block |
||
| 5605 | 5605 | |
| 5606 | 5606 | $csv_rows[] = $csv_row; |
| 5607 | 5607 | |
| 5608 | - foreach ( $terms as $term ) {
|
|
| 5609 | - $cat_icon = get_tax_meta( $term->term_id, 'ct_cat_icon', false, $post_type ); |
|
| 5610 | - $cat_icon = !empty( $cat_icon ) && isset( $cat_icon['src'] ) ? $cat_icon['src'] : ''; |
|
| 5608 | + foreach ($terms as $term) {
|
|
| 5609 | + $cat_icon = get_tax_meta($term->term_id, 'ct_cat_icon', false, $post_type); |
|
| 5610 | + $cat_icon = !empty($cat_icon) && isset($cat_icon['src']) ? $cat_icon['src'] : ''; |
|
| 5611 | 5611 | |
| 5612 | - $cat_image = geodir_get_default_catimage( $term->term_id, $post_type ); |
|
| 5613 | - $cat_image = !empty( $cat_image ) && isset( $cat_image['src'] ) ? $cat_image['src'] : ''; |
|
| 5612 | + $cat_image = geodir_get_default_catimage($term->term_id, $post_type); |
|
| 5613 | + $cat_image = !empty($cat_image) && isset($cat_image['src']) ? $cat_image['src'] : ''; |
|
| 5614 | 5614 | |
| 5615 | 5615 | $cat_parent = ''; |
| 5616 | - if (isset($term->parent) && (int)$term->parent > 0 && term_exists((int)$term->parent, $taxonomy)) {
|
|
| 5617 | - $parent_term = (array)get_term_by( 'id', (int)$term->parent, $taxonomy ); |
|
| 5616 | + if (isset($term->parent) && (int) $term->parent > 0 && term_exists((int) $term->parent, $taxonomy)) {
|
|
| 5617 | + $parent_term = (array) get_term_by('id', (int) $term->parent, $taxonomy);
|
|
| 5618 | 5618 | $cat_parent = !empty($parent_term) && isset($parent_term['name']) ? $parent_term['name'] : ''; |
| 5619 | 5619 | } |
| 5620 | 5620 | |
@@ -5624,15 +5624,15 @@ discard block |
||
| 5624 | 5624 | $csv_row[] = $term->slug; |
| 5625 | 5625 | $csv_row[] = $post_type; |
| 5626 | 5626 | $csv_row[] = $cat_parent; |
| 5627 | - $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_schema', false, $post_type ); |
|
| 5627 | + $csv_row[] = get_tax_meta($term->term_id, 'ct_cat_schema', false, $post_type); |
|
| 5628 | 5628 | // WPML |
| 5629 | 5629 | if ($is_wpml) {
|
| 5630 | - $csv_row[] = geodir_get_language_for_element( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5631 | - $csv_row[] = geodir_imex_original_post_id( $term->term_id, 'tax_' . $taxonomy ); |
|
| 5630 | + $csv_row[] = geodir_get_language_for_element($term->term_id, 'tax_'.$taxonomy); |
|
| 5631 | + $csv_row[] = geodir_imex_original_post_id($term->term_id, 'tax_'.$taxonomy); |
|
| 5632 | 5632 | } |
| 5633 | 5633 | // WPML |
| 5634 | 5634 | $csv_row[] = $term->description; |
| 5635 | - $csv_row[] = get_tax_meta( $term->term_id, 'ct_cat_top_desc', false, $post_type ); |
|
| 5635 | + $csv_row[] = get_tax_meta($term->term_id, 'ct_cat_top_desc', false, $post_type); |
|
| 5636 | 5636 | $csv_row[] = $cat_image; |
| 5637 | 5637 | $csv_row[] = $cat_icon; |
| 5638 | 5638 | |
@@ -5651,10 +5651,10 @@ discard block |
||
| 5651 | 5651 | * @param bool $relative True for relative path & False for absolute path. |
| 5652 | 5652 | * @return string Path to the cache directory. |
| 5653 | 5653 | */ |
| 5654 | -function geodir_path_import_export( $relative = true ) {
|
|
| 5654 | +function geodir_path_import_export($relative = true) {
|
|
| 5655 | 5655 | $upload_dir = wp_upload_dir(); |
| 5656 | 5656 | |
| 5657 | - return $relative ? $upload_dir['baseurl'] . '/cache' : $upload_dir['basedir'] . '/cache'; |
|
| 5657 | + return $relative ? $upload_dir['baseurl'].'/cache' : $upload_dir['basedir'].'/cache'; |
|
| 5658 | 5658 | } |
| 5659 | 5659 | |
| 5660 | 5660 | /** |
@@ -5670,8 +5670,8 @@ discard block |
||
| 5670 | 5670 | * @param bool $clear If true then it overwrite data otherwise add rows at the end of file. |
| 5671 | 5671 | * @return bool true if success otherwise false. |
| 5672 | 5672 | */ |
| 5673 | -function geodir_save_csv_data( $file_path, $csv_data = array(), $clear = true ) {
|
|
| 5674 | - if ( empty( $csv_data ) ) {
|
|
| 5673 | +function geodir_save_csv_data($file_path, $csv_data = array(), $clear = true) {
|
|
| 5674 | + if (empty($csv_data)) {
|
|
| 5675 | 5675 | return false; |
| 5676 | 5676 | } |
| 5677 | 5677 | |
@@ -5679,17 +5679,17 @@ discard block |
||
| 5679 | 5679 | |
| 5680 | 5680 | $mode = $clear ? 'w+' : 'a+'; |
| 5681 | 5681 | |
| 5682 | - if ( function_exists( 'fputcsv' ) ) {
|
|
| 5683 | - $file = fopen( $file_path, $mode ); |
|
| 5684 | - foreach( $csv_data as $csv_row ) {
|
|
| 5682 | + if (function_exists('fputcsv')) {
|
|
| 5683 | + $file = fopen($file_path, $mode); |
|
| 5684 | + foreach ($csv_data as $csv_row) {
|
|
| 5685 | 5685 | //$csv_row = array_map( 'utf8_decode', $csv_row ); |
| 5686 | - $write_successful = fputcsv( $file, $csv_row, ",", $enclosure = '"' ); |
|
| 5686 | + $write_successful = fputcsv($file, $csv_row, ",", $enclosure = '"'); |
|
| 5687 | 5687 | } |
| 5688 | - fclose( $file ); |
|
| 5688 | + fclose($file); |
|
| 5689 | 5689 | } else {
|
| 5690 | - foreach( $csv_data as $csv_row ) {
|
|
| 5690 | + foreach ($csv_data as $csv_row) {
|
|
| 5691 | 5691 | //$csv_row = array_map( 'utf8_decode', $csv_row ); |
| 5692 | - $wp_filesystem->put_contents( $file_path, $csv_row ); |
|
| 5692 | + $wp_filesystem->put_contents($file_path, $csv_row); |
|
| 5693 | 5693 | } |
| 5694 | 5694 | } |
| 5695 | 5695 | |
@@ -5707,14 +5707,14 @@ discard block |
||
| 5707 | 5707 | * @param string $file Full path to file. |
| 5708 | 5708 | * @return int No of file rows. |
| 5709 | 5709 | */ |
| 5710 | -function geodir_import_export_line_count( $file ) {
|
|
| 5710 | +function geodir_import_export_line_count($file) {
|
|
| 5711 | 5711 | global $wp_filesystem; |
| 5712 | 5712 | |
| 5713 | - if ( $wp_filesystem->is_file( $file ) && $wp_filesystem->exists( $file ) ) {
|
|
| 5714 | - $contents = $wp_filesystem->get_contents_array( $file ); |
|
| 5713 | + if ($wp_filesystem->is_file($file) && $wp_filesystem->exists($file)) {
|
|
| 5714 | + $contents = $wp_filesystem->get_contents_array($file); |
|
| 5715 | 5715 | |
| 5716 | - if ( !empty( $contents ) && is_array( $contents ) ) {
|
|
| 5717 | - return count( $contents ) - 1; |
|
| 5716 | + if (!empty($contents) && is_array($contents)) {
|
|
| 5717 | + return count($contents) - 1; |
|
| 5718 | 5718 | } |
| 5719 | 5719 | } |
| 5720 | 5720 | |
@@ -5731,11 +5731,11 @@ discard block |
||
| 5731 | 5731 | * @param string $post_type The post type. |
| 5732 | 5732 | * @return object Queried object. |
| 5733 | 5733 | */ |
| 5734 | -function geodir_imex_get_custom_fields( $post_type ) {
|
|
| 5734 | +function geodir_imex_get_custom_fields($post_type) {
|
|
| 5735 | 5735 | global $wpdb; |
| 5736 | 5736 | |
| 5737 | - $sql = $wpdb->prepare("SELECT htmlvar_name FROM " . GEODIR_CUSTOM_FIELDS_TABLE . " WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array( $post_type ) );
|
|
| 5738 | - $rows = $wpdb->get_results( $sql ); |
|
| 5737 | + $sql = $wpdb->prepare("SELECT htmlvar_name FROM ".GEODIR_CUSTOM_FIELDS_TABLE." WHERE post_type=%s AND is_active='1' AND is_admin!='1' AND field_type != 'fieldset' AND htmlvar_name != '' ORDER BY id ASC", array($post_type));
|
|
| 5738 | + $rows = $wpdb->get_results($sql); |
|
| 5739 | 5739 | |
| 5740 | 5740 | return $rows; |
| 5741 | 5741 | } |
@@ -5751,10 +5751,10 @@ discard block |
||
| 5751 | 5751 | * @return array Event data array. |
| 5752 | 5752 | */ |
| 5753 | 5753 | function geodir_imex_get_event_data($post, $gd_post_info) {
|
| 5754 | - $event_date = isset( $post['event_date'] ) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $post['event_date'] ) ) : ''; |
|
| 5754 | + $event_date = isset($post['event_date']) && $post['event_date'] != '' && $post['event_date'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($post['event_date'])) : '';
|
|
| 5755 | 5755 | $event_enddate = $event_date; |
| 5756 | - $starttime = isset( $post['starttime'] ) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['starttime'] ) ) : ''; |
|
| 5757 | - $endtime = isset( $post['endtime'] ) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $post['endtime'] ) ) : ''; |
|
| 5756 | + $starttime = isset($post['starttime']) && $post['starttime'] != '' && $post['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['starttime'])) : '';
|
|
| 5757 | + $endtime = isset($post['endtime']) && $post['endtime'] != '' && $post['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($post['endtime'])) : '';
|
|
| 5758 | 5758 | |
| 5759 | 5759 | $is_recurring_event = ''; |
| 5760 | 5760 | $event_duration_days = ''; |
@@ -5771,15 +5771,15 @@ discard block |
||
| 5771 | 5771 | |
| 5772 | 5772 | $recurring_data = isset($gd_post_info->recurring_dates) ? maybe_unserialize($gd_post_info->recurring_dates) : array(); |
| 5773 | 5773 | if (!empty($recurring_data)) {
|
| 5774 | - $event_date = isset( $recurring_data['event_start'] ) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_start'] ) ) : $event_date; |
|
| 5775 | - $event_enddate = isset( $recurring_data['event_end'] ) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['event_end'] ) ) : $event_date; |
|
| 5776 | - $starttime = isset( $recurring_data['starttime'] ) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['starttime'] ) ) : $starttime; |
|
| 5777 | - $endtime = isset( $recurring_data['endtime'] ) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n( 'H:i', strtotime( $recurring_data['endtime'] ) ) : $endtime; |
|
| 5774 | + $event_date = isset($recurring_data['event_start']) && $recurring_data['event_start'] != '' && $recurring_data['event_start'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_start'])) : $event_date;
|
|
| 5775 | + $event_enddate = isset($recurring_data['event_end']) && $recurring_data['event_end'] != '' && $recurring_data['event_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['event_end'])) : $event_date;
|
|
| 5776 | + $starttime = isset($recurring_data['starttime']) && $recurring_data['starttime'] != '' && $recurring_data['starttime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['starttime'])) : $starttime;
|
|
| 5777 | + $endtime = isset($recurring_data['endtime']) && $recurring_data['endtime'] != '' && $recurring_data['endtime'] != '00:00:00' ? date_i18n('H:i', strtotime($recurring_data['endtime'])) : $endtime;
|
|
| 5778 | 5778 | $is_whole_day_event = !empty($recurring_data['all_day']) ? 1 : ''; |
| 5779 | 5779 | $different_times = !empty($recurring_data['different_times']) ? true : false; |
| 5780 | 5780 | |
| 5781 | - $recurring_pkg = geodir_event_recurring_pkg( $gd_post_info ); |
|
| 5782 | - $is_recurring = isset( $gd_post_info->is_recurring ) && (int)$gd_post_info->is_recurring == 0 ? false : true; |
|
| 5781 | + $recurring_pkg = geodir_event_recurring_pkg($gd_post_info); |
|
| 5782 | + $is_recurring = isset($gd_post_info->is_recurring) && (int) $gd_post_info->is_recurring == 0 ? false : true; |
|
| 5783 | 5783 | |
| 5784 | 5784 | if ($recurring_pkg && $is_recurring) {
|
| 5785 | 5785 | $recurring_dates = $event_date; |
@@ -5789,13 +5789,13 @@ discard block |
||
| 5789 | 5789 | $recurring_type = !empty($recurring_data['repeat_type']) && in_array($recurring_data['repeat_type'], array('day', 'week', 'month', 'year', 'custom')) ? $recurring_data['repeat_type'] : 'custom';
|
| 5790 | 5790 | |
| 5791 | 5791 | if (!empty($recurring_data['event_recurring_dates'])) {
|
| 5792 | - $event_recurring_dates = explode( ',', $recurring_data['event_recurring_dates'] ); |
|
| 5792 | + $event_recurring_dates = explode(',', $recurring_data['event_recurring_dates']);
|
|
| 5793 | 5793 | |
| 5794 | 5794 | if (!empty($event_recurring_dates)) {
|
| 5795 | 5795 | $recurring_dates = array(); |
| 5796 | 5796 | |
| 5797 | 5797 | foreach ($event_recurring_dates as $date) {
|
| 5798 | - $recurring_dates[] = date_i18n( 'd/m/Y', strtotime( $date ) ); |
|
| 5798 | + $recurring_dates[] = date_i18n('d/m/Y', strtotime($date));
|
|
| 5799 | 5799 | } |
| 5800 | 5800 | |
| 5801 | 5801 | $recurring_dates = implode(",", $recurring_dates);
|
@@ -5811,7 +5811,7 @@ discard block |
||
| 5811 | 5811 | $times = array(); |
| 5812 | 5812 | |
| 5813 | 5813 | foreach ($recurring_data['starttimes'] as $time) {
|
| 5814 | - $times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00'; |
|
| 5814 | + $times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
|
|
| 5815 | 5815 | } |
| 5816 | 5816 | |
| 5817 | 5817 | $event_starttimes = implode(",", $times);
|
@@ -5821,7 +5821,7 @@ discard block |
||
| 5821 | 5821 | $times = array(); |
| 5822 | 5822 | |
| 5823 | 5823 | foreach ($recurring_data['endtimes'] as $time) {
|
| 5824 | - $times[] = $time != '00:00:00' ? date_i18n( 'H:i', strtotime( $time ) ) : '00:00'; |
|
| 5824 | + $times[] = $time != '00:00:00' ? date_i18n('H:i', strtotime($time)) : '00:00';
|
|
| 5825 | 5825 | } |
| 5826 | 5826 | |
| 5827 | 5827 | $event_endtimes = implode(",", $times);
|
@@ -5833,8 +5833,8 @@ discard block |
||
| 5833 | 5833 | } |
| 5834 | 5834 | } |
| 5835 | 5835 | } else {
|
| 5836 | - $event_duration_days = isset($recurring_data['duration_x']) ? (int)$recurring_data['duration_x'] : 1; |
|
| 5837 | - $recurring_interval = !empty($recurring_data['repeat_x']) && (int)$recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1; |
|
| 5836 | + $event_duration_days = isset($recurring_data['duration_x']) ? (int) $recurring_data['duration_x'] : 1; |
|
| 5837 | + $recurring_interval = !empty($recurring_data['repeat_x']) && (int) $recurring_data['repeat_x'] > 0 ? $recurring_data['repeat_x'] : 1; |
|
| 5838 | 5838 | |
| 5839 | 5839 | if (($recurring_type == 'week' || $recurring_type == 'month') && !empty($recurring_data['repeat_days'])) {
|
| 5840 | 5840 | $week_days = array('Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat');
|
@@ -5850,11 +5850,11 @@ discard block |
||
| 5850 | 5850 | } |
| 5851 | 5851 | |
| 5852 | 5852 | $recurring_week_nos = $recurring_type == 'month' && !empty($recurring_data['repeat_weeks']) ? implode(",", $recurring_data['repeat_weeks']) : $recurring_week_nos;
|
| 5853 | - if (!empty($recurring_data['repeat_end_type']) && (int)$recurring_data['repeat_end_type'] == 1) {
|
|
| 5854 | - $recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n( 'd/m/Y', strtotime( $recurring_data['repeat_end'] ) ) : ''; |
|
| 5853 | + if (!empty($recurring_data['repeat_end_type']) && (int) $recurring_data['repeat_end_type'] == 1) {
|
|
| 5854 | + $recurring_end_date = isset($recurring_data['repeat_end']) && $recurring_data['repeat_end'] != '' && $recurring_data['repeat_end'] != '0000-00-00 00:00:00' ? date_i18n('d/m/Y', strtotime($recurring_data['repeat_end'])) : '';
|
|
| 5855 | 5855 | $max_recurring_count = empty($recurring_end_date) ? 1 : ''; |
| 5856 | 5856 | } else {
|
| 5857 | - $max_recurring_count = (!empty($recurring_data['max_repeat']) && (int)$recurring_data['max_repeat'] > 0 ? (int)$recurring_data['max_repeat'] : 1); |
|
| 5857 | + $max_recurring_count = (!empty($recurring_data['max_repeat']) && (int) $recurring_data['max_repeat'] > 0 ? (int) $recurring_data['max_repeat'] : 1); |
|
| 5858 | 5858 | } |
| 5859 | 5859 | } |
| 5860 | 5860 | } |
@@ -5918,9 +5918,9 @@ discard block |
||
| 5918 | 5918 | * @return array Event data array. |
| 5919 | 5919 | */ |
| 5920 | 5920 | function geodir_imex_process_event_data($gd_post) {
|
| 5921 | - $recurring_pkg = geodir_event_recurring_pkg( (object)$gd_post ); |
|
| 5921 | + $recurring_pkg = geodir_event_recurring_pkg((object) $gd_post); |
|
| 5922 | 5922 | |
| 5923 | - $is_recurring = isset( $gd_post['is_recurring_event'] ) && (int)$gd_post['is_recurring_event'] == 0 ? false : true; |
|
| 5923 | + $is_recurring = isset($gd_post['is_recurring_event']) && (int) $gd_post['is_recurring_event'] == 0 ? false : true; |
|
| 5924 | 5924 | $event_date = isset($gd_post['event_date']) && $gd_post['event_date'] != '' ? geodir_imex_get_date_ymd($gd_post['event_date']) : ''; |
| 5925 | 5925 | $event_enddate = isset($gd_post['event_enddate']) && $gd_post['event_enddate'] != '' ? geodir_imex_get_date_ymd($gd_post['event_enddate']) : $event_date; |
| 5926 | 5926 | $all_day = isset($gd_post['is_whole_day_event']) && !empty($gd_post['is_whole_day_event']) ? true : false; |
@@ -5967,17 +5967,17 @@ discard block |
||
| 5967 | 5967 | $event_recurring_dates = implode(",", $event_recurring_dates);
|
| 5968 | 5968 | } |
| 5969 | 5969 | } else {
|
| 5970 | - $duration_x = !empty( $gd_post['event_duration_days'] ) ? (int)$gd_post['event_duration_days'] : 1; |
|
| 5971 | - $repeat_x = !empty( $gd_post['recurring_interval'] ) ? (int)$gd_post['recurring_interval'] : 1; |
|
| 5972 | - $max_repeat = !empty( $gd_post['max_recurring_count'] ) ? (int)$gd_post['max_recurring_count'] : 1; |
|
| 5973 | - $repeat_end = !empty( $gd_post['recurring_end_date'] ) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : ''; |
|
| 5970 | + $duration_x = !empty($gd_post['event_duration_days']) ? (int) $gd_post['event_duration_days'] : 1; |
|
| 5971 | + $repeat_x = !empty($gd_post['recurring_interval']) ? (int) $gd_post['recurring_interval'] : 1; |
|
| 5972 | + $max_repeat = !empty($gd_post['max_recurring_count']) ? (int) $gd_post['max_recurring_count'] : 1; |
|
| 5973 | + $repeat_end = !empty($gd_post['recurring_end_date']) ? geodir_imex_get_date_ymd($gd_post['recurring_end_date']) : ''; |
|
| 5974 | 5974 | |
| 5975 | 5975 | $repeat_end_type = $repeat_end != '' ? 1 : 0; |
| 5976 | 5976 | $max_repeat = $repeat_end != '' ? '' : $max_repeat; |
| 5977 | 5977 | |
| 5978 | 5978 | $week_days = array_flip(array('sun', 'mon', 'tue', 'wed', 'thu', 'fri', 'sat'));
|
| 5979 | 5979 | |
| 5980 | - $a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days'])!='' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
|
|
| 5980 | + $a_repeat_days = isset($gd_post['recurring_week_days']) && trim($gd_post['recurring_week_days']) != '' ? explode(',', trim($gd_post['recurring_week_days'])) : array();
|
|
| 5981 | 5981 | $repeat_days = array(); |
| 5982 | 5982 | if (!empty($a_repeat_days)) {
|
| 5983 | 5983 | foreach ($a_repeat_days as $repeat_day) {
|
@@ -5995,7 +5995,7 @@ discard block |
||
| 5995 | 5995 | $repeat_weeks = array(); |
| 5996 | 5996 | if (!empty($a_repeat_weeks)) {
|
| 5997 | 5997 | foreach ($a_repeat_weeks as $repeat_week) {
|
| 5998 | - $repeat_weeks[] = (int)$repeat_week; |
|
| 5998 | + $repeat_weeks[] = (int) $repeat_week; |
|
| 5999 | 5999 | } |
| 6000 | 6000 | |
| 6001 | 6001 | $repeat_weeks = array_unique($repeat_weeks); |
@@ -6059,7 +6059,7 @@ discard block |
||
| 6059 | 6059 | |
| 6060 | 6060 | $page_found = $wpdb->get_var( |
| 6061 | 6061 | $wpdb->prepare( |
| 6062 | - "SELECT ID FROM " . $wpdb->posts . " WHERE post_name = %s LIMIT 1;", |
|
| 6062 | + "SELECT ID FROM ".$wpdb->posts." WHERE post_name = %s LIMIT 1;", |
|
| 6063 | 6063 | array($slug) |
| 6064 | 6064 | ) |
| 6065 | 6065 | ); |
@@ -6114,7 +6114,7 @@ discard block |
||
| 6114 | 6114 | */ |
| 6115 | 6115 | function geodir_admin_upgrade_notice() {
|
| 6116 | 6116 | $class = "error"; |
| 6117 | - $message = __("Please update core GeoDirectory or some addons may not function correctly.","geodirectory");
|
|
| 6117 | + $message = __("Please update core GeoDirectory or some addons may not function correctly.", "geodirectory");
|
|
| 6118 | 6118 | echo"<div class=\"$class\"> <p>$message</p></div>"; |
| 6119 | 6119 | } |
| 6120 | 6120 | |
@@ -6126,7 +6126,7 @@ discard block |
||
| 6126 | 6126 | * @param (object) $r |
| 6127 | 6127 | * @return (string) $output |
| 6128 | 6128 | */ |
| 6129 | -function geodire_admin_upgrade_notice( $plugin_data, $r ) |
|
| 6129 | +function geodire_admin_upgrade_notice($plugin_data, $r) |
|
| 6130 | 6130 | {
|
| 6131 | 6131 | // readme contents |
| 6132 | 6132 | $args = array( |
@@ -6134,7 +6134,7 @@ discard block |
||
| 6134 | 6134 | 'redirection' => 5 |
| 6135 | 6135 | ); |
| 6136 | 6136 | $url = "http://plugins.svn.wordpress.org/geodirectory/trunk/readme.txt"; |
| 6137 | - $data = wp_remote_get( $url, $args ); |
|
| 6137 | + $data = wp_remote_get($url, $args); |
|
| 6138 | 6138 | |
| 6139 | 6139 | if (!is_wp_error($data) && $data['response']['code'] == 200) {
|
| 6140 | 6140 | |
@@ -6149,20 +6149,20 @@ discard block |
||
| 6149 | 6149 | function geodir_in_plugin_update_message($content) {
|
| 6150 | 6150 | // Output Upgrade Notice |
| 6151 | 6151 | $matches = null; |
| 6152 | - $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*' . preg_quote( GEODIRECTORY_VERSION ) . '\s*=|$)~Uis'; |
|
| 6152 | + $regexp = '~==\s*Upgrade Notice\s*==\s*=\s*(.*)\s*=(.*)(=\s*'.preg_quote(GEODIRECTORY_VERSION).'\s*=|$)~Uis'; |
|
| 6153 | 6153 | $upgrade_notice = ''; |
| 6154 | - if ( preg_match( $regexp, $content, $matches ) ) {
|
|
| 6155 | - if(empty($matches)){return;}
|
|
| 6154 | + if (preg_match($regexp, $content, $matches)) {
|
|
| 6155 | + if (empty($matches)) {return; }
|
|
| 6156 | 6156 | |
| 6157 | - $version = trim( $matches[1] ); |
|
| 6158 | - if($version && $version>GEODIRECTORY_VERSION){
|
|
| 6157 | + $version = trim($matches[1]); |
|
| 6158 | + if ($version && $version > GEODIRECTORY_VERSION) {
|
|
| 6159 | 6159 | |
| 6160 | 6160 | |
| 6161 | - $notices = (array) preg_split('~[\r\n]+~', trim( $matches[2] ) );
|
|
| 6162 | - if ( version_compare( GEODIRECTORY_VERSION, $version, '<' ) ) {
|
|
| 6161 | + $notices = (array) preg_split('~[\r\n]+~', trim($matches[2]));
|
|
| 6162 | + if (version_compare(GEODIRECTORY_VERSION, $version, '<')) {
|
|
| 6163 | 6163 | $upgrade_notice .= '<div class="geodir_plugin_upgrade_notice">'; |
| 6164 | - foreach ( $notices as $index => $line ) {
|
|
| 6165 | - $upgrade_notice .= wp_kses_post( preg_replace( '~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line ) );
|
|
| 6164 | + foreach ($notices as $index => $line) {
|
|
| 6165 | + $upgrade_notice .= wp_kses_post(preg_replace('~\[([^\]]*)\]\(([^\)]*)\)~', '<a href="${2}">${1}</a>', $line));
|
|
| 6166 | 6166 | } |
| 6167 | 6167 | $upgrade_notice .= '</div> '; |
| 6168 | 6168 | } |
@@ -6186,7 +6186,7 @@ discard block |
||
| 6186 | 6186 | $default_language = $sitepress->get_default_language(); |
| 6187 | 6187 | if ($current_language != 'all' && $current_language != $default_language) {
|
| 6188 | 6188 | ?> |
| 6189 | - <div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory');?></strong></p></div>
|
|
| 6189 | + <div class="updated error notice-success" id="message"><p style="color:red"><strong><?php _e('Saving GeoDirectory pages settings on a different language breaks pages settings. Try to save after switching to default language.', 'geodirectory'); ?></strong></p></div>
|
|
| 6190 | 6190 | <?php |
| 6191 | 6191 | } |
| 6192 | 6192 | } |
@@ -6201,7 +6201,7 @@ discard block |
||
| 6201 | 6201 | * @param array Listing statuses to be skipped. |
| 6202 | 6202 | */ |
| 6203 | 6203 | function geodir_imex_export_skip_statuses() {
|
| 6204 | - $statuses = array( 'trash', 'auto-draft' ); |
|
| 6204 | + $statuses = array('trash', 'auto-draft');
|
|
| 6205 | 6205 | |
| 6206 | 6206 | /** |
| 6207 | 6207 | * Filter the statuses to skip during GD export listings. |
@@ -6211,7 +6211,7 @@ discard block |
||
| 6211 | 6211 | * |
| 6212 | 6212 | * @param array $statuses Listing statuses to be skipped. |
| 6213 | 6213 | */ |
| 6214 | - $statuses = apply_filters( 'geodir_imex_export_skip_statuses', $statuses ); |
|
| 6214 | + $statuses = apply_filters('geodir_imex_export_skip_statuses', $statuses);
|
|
| 6215 | 6215 | |
| 6216 | 6216 | return $statuses; |
| 6217 | 6217 | } |
@@ -6263,16 +6263,16 @@ discard block |
||
| 6263 | 6263 | function geodir_imex_get_filter_where($where = '', $post_type = '') {
|
| 6264 | 6264 | global $wpdb; |
| 6265 | 6265 | |
| 6266 | - $filters = !empty( $_REQUEST['gd_imex'] ) && is_array( $_REQUEST['gd_imex'] ) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6266 | + $filters = !empty($_REQUEST['gd_imex']) && is_array($_REQUEST['gd_imex']) ? $_REQUEST['gd_imex'] : NULL; |
|
| 6267 | 6267 | |
| 6268 | - if ( !empty( $filters ) ) {
|
|
| 6269 | - foreach ( $filters as $field => $value ) {
|
|
| 6268 | + if (!empty($filters)) {
|
|
| 6269 | + foreach ($filters as $field => $value) {
|
|
| 6270 | 6270 | switch ($field) {
|
| 6271 | 6271 | case 'start_date': |
| 6272 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` >= '" . sanitize_text_field( $value ) . " 00:00:00'"; |
|
| 6272 | + $where .= " AND `".$wpdb->posts."`.`post_date` >= '".sanitize_text_field($value)." 00:00:00'"; |
|
| 6273 | 6273 | break; |
| 6274 | 6274 | case 'end_date': |
| 6275 | - $where .= " AND `" . $wpdb->posts . "`.`post_date` <= '" . sanitize_text_field( $value ) . " 23:59:59'"; |
|
| 6275 | + $where .= " AND `".$wpdb->posts."`.`post_date` <= '".sanitize_text_field($value)." 23:59:59'"; |
|
| 6276 | 6276 | break; |
| 6277 | 6277 | } |
| 6278 | 6278 | } |
@@ -6284,25 +6284,25 @@ discard block |
||
| 6284 | 6284 | add_filter('geodir_get_export_posts', 'geodir_imex_get_filter_where', 10, 2);
|
| 6285 | 6285 | |
| 6286 | 6286 | |
| 6287 | -function geodir_fix_for_primer_theme(){
|
|
| 6288 | - if(!defined( 'PRIMER_VERSION' )){return;}
|
|
| 6287 | +function geodir_fix_for_primer_theme() {
|
|
| 6288 | + if (!defined('PRIMER_VERSION')) {return; }
|
|
| 6289 | 6289 | global $pagenow; |
| 6290 | 6290 | |
| 6291 | - if ( ( 'post.php' === $pagenow || 'post-new.php' === $pagenow ) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']) ) ){
|
|
| 6291 | + if (('post.php' === $pagenow || 'post-new.php' === $pagenow) && (isset($_REQUEST['post_type']) || isset($_REQUEST['post']))) {
|
|
| 6292 | 6292 | |
| 6293 | - $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type( $_GET['post'] ); |
|
| 6293 | + $post_type = isset($_REQUEST['post_type']) ? esc_attr($_REQUEST['post_type']) : get_post_type($_GET['post']); |
|
| 6294 | 6294 | |
| 6295 | 6295 | $post_types = geodir_get_posttypes(); |
| 6296 | - if ($post_type && in_array($post_type, $post_types) ) {
|
|
| 6296 | + if ($post_type && in_array($post_type, $post_types)) {
|
|
| 6297 | 6297 | global $primer_customizer_layouts; |
| 6298 | - remove_action( 'add_meta_boxes', array( $primer_customizer_layouts, 'add_meta_box' ), 10); |
|
| 6298 | + remove_action('add_meta_boxes', array($primer_customizer_layouts, 'add_meta_box'), 10);
|
|
| 6299 | 6299 | } |
| 6300 | 6300 | } |
| 6301 | 6301 | |
| 6302 | 6302 | } |
| 6303 | 6303 | |
| 6304 | -if(is_admin()){
|
|
| 6305 | - add_action('add_meta_boxes','geodir_fix_for_primer_theme',0);
|
|
| 6304 | +if (is_admin()) {
|
|
| 6305 | + add_action('add_meta_boxes', 'geodir_fix_for_primer_theme', 0);
|
|
| 6306 | 6306 | } |
| 6307 | 6307 | |
| 6308 | 6308 | |
@@ -6435,32 +6435,32 @@ discard block |
||
| 6435 | 6435 | |
| 6436 | 6436 | function geodir_ga_activation_url() {
|
| 6437 | 6437 | |
| 6438 | - return add_query_arg( array( |
|
| 6438 | + return add_query_arg(array( |
|
| 6439 | 6439 | 'next' => admin_url("admin.php?page=geodirectory&active_tab=google_analytic_settings"),
|
| 6440 | 6440 | 'scope' => GEODIR_GA_SCOPE, |
| 6441 | 6441 | 'response_type' => 'code', |
| 6442 | 6442 | 'redirect_uri' => GEODIR_GA_REDIRECT, |
| 6443 | 6443 | 'client_id' => GEODIR_GA_CLIENTID, |
| 6444 | - ), 'https://accounts.google.com/o/oauth2/auth' ); |
|
| 6444 | + ), 'https://accounts.google.com/o/oauth2/auth'); |
|
| 6445 | 6445 | |
| 6446 | 6446 | return $url; |
| 6447 | 6447 | } |
| 6448 | 6448 | |
| 6449 | -function geodir_gd_accounts(){
|
|
| 6449 | +function geodir_gd_accounts() {
|
|
| 6450 | 6450 | $accounts = array(); |
| 6451 | - $useAuth = ( get_option( 'geodir_ga_auth_code' ) == '' ? false : true ); |
|
| 6452 | - if($useAuth){
|
|
| 6451 | + $useAuth = (get_option('geodir_ga_auth_code') == '' ? false : true);
|
|
| 6452 | + if ($useAuth) {
|
|
| 6453 | 6453 | try {
|
| 6454 | 6454 | $accounts = geodir_ga_get_analytics_accounts(); |
| 6455 | 6455 | } catch (Exception $e) {
|
| 6456 | - geodir_error_log( wp_sprintf( __( 'GD Google Analytics API Error(%s) : %s', 'geodirectory' ), $e->getCode(), $e->getMessage() ) ); |
|
| 6456 | + geodir_error_log(wp_sprintf(__('GD Google Analytics API Error(%s) : %s', 'geodirectory'), $e->getCode(), $e->getMessage()));
|
|
| 6457 | 6457 | } |
| 6458 | 6458 | |
| 6459 | - if(is_array($accounts)){
|
|
| 6460 | - $accounts = array_merge(array(__('Select Account','geodirectory')),$accounts);
|
|
| 6461 | - }elseif(get_option('geodir_ga_account_id')){
|
|
| 6459 | + if (is_array($accounts)) {
|
|
| 6460 | + $accounts = array_merge(array(__('Select Account', 'geodirectory')), $accounts);
|
|
| 6461 | + }elseif (get_option('geodir_ga_account_id')) {
|
|
| 6462 | 6462 | $accounts = array(); |
| 6463 | - $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required','geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6463 | + $accounts[get_option('geodir_ga_account_id')] = __('Account re-authorization may be required', 'geodirectory').' ('.get_option('geodir_ga_account_id').')';
|
|
| 6464 | 6464 | } |
| 6465 | 6465 | } |
| 6466 | 6466 | return $accounts; |
@@ -6471,21 +6471,21 @@ discard block |
||
| 6471 | 6471 | global $gd_ga_errors; |
| 6472 | 6472 | $accounts = array(); |
| 6473 | 6473 | |
| 6474 | - if(get_option('geodir_ga_auth_token')===false){update_option('geodir_ga_auth_token','');}
|
|
| 6474 | + if (get_option('geodir_ga_auth_token') === false) {update_option('geodir_ga_auth_token', ''); }
|
|
| 6475 | 6475 | |
| 6476 | 6476 | |
| 6477 | - if(get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])){
|
|
| 6477 | + if (get_option('geodir_gd_uids') && !isset($_POST['geodir_ga_auth_code'])) {
|
|
| 6478 | 6478 | return get_option('geodir_gd_uids');
|
| 6479 | 6479 | } |
| 6480 | 6480 | |
| 6481 | 6481 | # Create a new Gdata call |
| 6482 | - if ( trim(get_option('geodir_ga_auth_code')) != '' )
|
|
| 6482 | + if (trim(get_option('geodir_ga_auth_code')) != '')
|
|
| 6483 | 6483 | $stats = new GDGoogleAnalyticsStats(); |
| 6484 | 6484 | else |
| 6485 | 6485 | return false; |
| 6486 | 6486 | |
| 6487 | 6487 | # Check if Google sucessfully logged in |
| 6488 | - if ( ! $stats->checkLogin() ) |
|
| 6488 | + if (!$stats->checkLogin()) |
|
| 6489 | 6489 | return false; |
| 6490 | 6490 | |
| 6491 | 6491 | # Get a list of accounts |
@@ -6497,28 +6497,28 @@ discard block |
||
| 6497 | 6497 | } |
| 6498 | 6498 | |
| 6499 | 6499 | |
| 6500 | - natcasesort ($accounts); |
|
| 6500 | + natcasesort($accounts); |
|
| 6501 | 6501 | |
| 6502 | 6502 | # Return the account array if there are accounts |
| 6503 | - if ( count($accounts) > 0 ){
|
|
| 6504 | - update_option('geodir_gd_uids',$accounts);
|
|
| 6503 | + if (count($accounts) > 0) {
|
|
| 6504 | + update_option('geodir_gd_uids', $accounts);
|
|
| 6505 | 6505 | return $accounts; |
| 6506 | 6506 | } |
| 6507 | 6507 | else |
| 6508 | 6508 | return false; |
| 6509 | 6509 | } |
| 6510 | 6510 | |
| 6511 | -add_action( 'wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize' ); |
|
| 6512 | -function geodir_ga_deauthorize(){
|
|
| 6511 | +add_action('wp_ajax_geodir_ga_deauthorize', 'geodir_ga_deauthorize');
|
|
| 6512 | +function geodir_ga_deauthorize() {
|
|
| 6513 | 6513 | |
| 6514 | - if ( ! wp_verify_nonce( $_REQUEST['_wpnonce'], 'gd_ga_deauthorize' ) ) {
|
|
| 6514 | + if (!wp_verify_nonce($_REQUEST['_wpnonce'], 'gd_ga_deauthorize')) {
|
|
| 6515 | 6515 | |
| 6516 | - die( 'Security check' ); |
|
| 6516 | + die('Security check');
|
|
| 6517 | 6517 | |
| 6518 | 6518 | } else {
|
| 6519 | - update_option('geodir_ga_auth_token','');
|
|
| 6520 | - update_option('geodir_ga_auth_code','');
|
|
| 6521 | - update_option('geodir_gd_uids','');
|
|
| 6519 | + update_option('geodir_ga_auth_token', '');
|
|
| 6520 | + update_option('geodir_ga_auth_code', '');
|
|
| 6521 | + update_option('geodir_gd_uids', '');
|
|
| 6522 | 6522 | |
| 6523 | 6523 | |
| 6524 | 6524 | echo admin_url('?page=geodirectory&active_tab=google_analytic_settings');
|
@@ -7,232 +7,232 @@ discard block |
||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | function geodir_property_sale_custom_fields($post_type='gd_place',$package_id=''){ |
| 10 | - $fields = array(); |
|
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | - |
|
| 13 | - // Salary |
|
| 14 | - $fields[] = array('listing_type' => $post_type, |
|
| 15 | - 'field_type' => 'text', |
|
| 16 | - 'data_type' => 'FLOAT', |
|
| 17 | - 'decimal_point' => '2', |
|
| 18 | - 'admin_title' => __('Salary', 'geodirectory'), |
|
| 19 | - 'site_title' => __('Salary', 'geodirectory'), |
|
| 20 | - 'admin_desc' => __('Enter the Salary in $ (no currency symbol) ie: 25000', 'geodirectory'), |
|
| 21 | - 'htmlvar_name' => 'salary', |
|
| 22 | - 'is_active' => true, |
|
| 23 | - 'for_admin_use' => false, |
|
| 24 | - 'default_value' => '', |
|
| 25 | - 'show_in' => '[detail],[listing]', |
|
| 26 | - 'is_required' => false, |
|
| 27 | - 'validation_pattern' => '\d+(\.\d{2})?', |
|
| 28 | - 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | - 'required_msg' => '', |
|
| 30 | - 'field_icon' => 'fa fa-usd', |
|
| 31 | - 'css_class' => '', |
|
| 32 | - 'cat_sort' => true, |
|
| 33 | - 'cat_filter' => true, |
|
| 34 | - 'extra' => array( |
|
| 35 | - 'is_price' => 1, |
|
| 36 | - 'thousand_separator' => 'comma', |
|
| 37 | - 'decimal_separator' => 'period', |
|
| 38 | - 'decimal_display' => 'if', |
|
| 39 | - 'currency_symbol' => '$', |
|
| 40 | - 'currency_symbol_placement' => 'left' |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - |
|
| 45 | - |
|
| 46 | - // Job Type |
|
| 47 | - $fields[] = array('listing_type' => $post_type, |
|
| 48 | - 'field_type' => 'select', |
|
| 49 | - 'data_type' => 'VARCHAR', |
|
| 50 | - 'admin_title' => __('Job Type', 'geodirectory'), |
|
| 51 | - 'site_title' => __('Job Type','geodirectory'), |
|
| 52 | - 'admin_desc' => __('Select the type of job.','geodirectory'), |
|
| 53 | - 'htmlvar_name' => 'job_type', |
|
| 54 | - 'is_active' => true, |
|
| 55 | - 'for_admin_use' => false, |
|
| 56 | - 'default_value' => '', |
|
| 57 | - 'show_in' => '[detail],[listing]', |
|
| 58 | - 'is_required' => true, |
|
| 59 | - 'option_values' => __('Select Type/,Freelance,Full Time,Internship,Part Time,Temporary,Other','geodirectory'), |
|
| 60 | - 'validation_pattern' => '', |
|
| 61 | - 'validation_msg' => '', |
|
| 62 | - 'required_msg' => '', |
|
| 63 | - 'field_icon' => 'fa fa-briefcase', |
|
| 64 | - 'css_class' => '', |
|
| 65 | - 'cat_sort' => true, |
|
| 66 | - 'cat_filter' => true |
|
| 67 | - ); |
|
| 68 | - |
|
| 69 | - // Job Sector |
|
| 70 | - $fields[] = array('listing_type' => $post_type, |
|
| 71 | - 'field_type' => 'select', |
|
| 72 | - 'data_type' => 'VARCHAR', |
|
| 73 | - 'admin_title' => __('Job Sector','geodirectory'), |
|
| 74 | - 'site_title' => __('Job Sector','geodirectory'), |
|
| 75 | - 'admin_desc' => __('Select the job sector.','geodirectory'), |
|
| 76 | - 'htmlvar_name' => 'job_sector', |
|
| 77 | - 'is_active' => true, |
|
| 78 | - 'for_admin_use' => false, |
|
| 79 | - 'default_value' => '', |
|
| 80 | - 'show_in' => '[detail]', |
|
| 81 | - 'is_required' => true, |
|
| 82 | - 'option_values' => __('Select Sector/,Private Sector,Public Sector,Agencies','geodirectory'), |
|
| 83 | - 'validation_pattern' => '', |
|
| 84 | - 'validation_msg' => '', |
|
| 85 | - 'required_msg' => '', |
|
| 86 | - 'field_icon' => 'fa fa-briefcase', |
|
| 87 | - 'css_class' => '', |
|
| 88 | - 'cat_sort' => true, |
|
| 89 | - 'cat_filter' => true |
|
| 90 | - ); |
|
| 91 | - |
|
| 92 | - // Required Experience |
|
| 93 | - $fields[] = array('listing_type' => $post_type, |
|
| 94 | - 'field_type' => 'select', |
|
| 95 | - 'data_type' => 'VARCHAR', |
|
| 96 | - 'admin_title' => __('Required Experience', 'geodirectory'), |
|
| 97 | - 'site_title' => __('Required Experience', 'geodirectory'), |
|
| 98 | - 'admin_desc' => __('Select the number of years required experience', 'geodirectory'), |
|
| 99 | - 'htmlvar_name' => 'job_experience', |
|
| 100 | - 'is_active' => true, |
|
| 101 | - 'for_admin_use' => false, |
|
| 102 | - 'default_value' => '', |
|
| 103 | - 'show_in' => '[detail],[listing]', |
|
| 104 | - 'is_required' => true, |
|
| 105 | - 'option_values' => __('Select Experience/,No Experience Required,1 Year,2 Years,3 Years,4 Years,5 Years,6 Years,7 Years,8 Years,9 Years,10+ Years','geodirectory'), |
|
| 106 | - 'validation_pattern' => '', |
|
| 107 | - 'validation_msg' => '', |
|
| 108 | - 'required_msg' => '', |
|
| 109 | - 'field_icon' => 'fa fa-life-ring', |
|
| 110 | - 'css_class' => '', |
|
| 111 | - 'cat_sort' => true, |
|
| 112 | - 'cat_filter' => true |
|
| 113 | - ); |
|
| 114 | - |
|
| 115 | - // Required Skills |
|
| 116 | - $fields[] = array('listing_type' => $post_type, |
|
| 117 | - 'field_type' => 'textarea', |
|
| 118 | - 'data_type' => 'TEXT', |
|
| 119 | - 'admin_title' => __('Required Skills', 'geodirectory'), |
|
| 120 | - 'site_title' => __('Required Skills', 'geodirectory'), |
|
| 121 | - 'admin_desc' => __('Enter the required skills for the job', 'geodirectory'), |
|
| 122 | - 'htmlvar_name' => 'property_area', |
|
| 123 | - 'is_active' => true, |
|
| 124 | - 'for_admin_use' => false, |
|
| 125 | - 'default_value' => '', |
|
| 126 | - 'show_in' => '[detail],[listing]', |
|
| 127 | - 'is_required' => false, |
|
| 128 | - 'validation_pattern' => '', |
|
| 129 | - 'validation_msg' => '', |
|
| 130 | - 'required_msg' => '', |
|
| 131 | - 'field_icon' => 'fa fa-area-chart', |
|
| 132 | - 'css_class' => '', |
|
| 133 | - 'cat_sort' => true, |
|
| 134 | - 'cat_filter' => true |
|
| 135 | - ); |
|
| 136 | - |
|
| 137 | - |
|
| 138 | - |
|
| 139 | - // Company details fieldset |
|
| 140 | - $fields[] = array('listing_type' => $post_type, |
|
| 141 | - 'field_type' => 'fieldset', |
|
| 142 | - 'data_type' => '', |
|
| 143 | - 'admin_title' => __('Company Details', 'geodirectory'), |
|
| 144 | - 'site_title' => __('Company Details', 'geodirectory'), |
|
| 145 | - 'admin_desc' => __('Enter your company details here', 'geodirectory'), |
|
| 146 | - 'htmlvar_name' => 'job_company_details', |
|
| 147 | - 'is_active' => true, |
|
| 148 | - 'for_admin_use' => false, |
|
| 149 | - 'show_in' => '[owntab]' |
|
| 150 | - |
|
| 151 | - ); |
|
| 152 | - |
|
| 153 | - // Company Name |
|
| 154 | - $fields[] = array('listing_type' => $post_type, |
|
| 155 | - 'field_type' => 'text', |
|
| 156 | - 'data_type' => 'VARCHAR', |
|
| 157 | - 'admin_title' => __('Company Name', 'geodirectory'), |
|
| 158 | - 'site_title' => __('Company Name', 'geodirectory'), |
|
| 159 | - 'admin_desc' => __('Enter your company name', 'geodirectory'), |
|
| 160 | - 'htmlvar_name' => 'job_company_name', |
|
| 161 | - 'is_active' => true, |
|
| 162 | - 'for_admin_use' => false, |
|
| 163 | - 'default_value' => '', |
|
| 164 | - 'show_in' => '[owntab]', |
|
| 165 | - 'is_required' => false, |
|
| 166 | - 'validation_pattern' => '', |
|
| 167 | - 'validation_msg' => '', |
|
| 168 | - 'required_msg' => '', |
|
| 169 | - 'field_icon' => 'fa fa-arrow-circle-right', |
|
| 170 | - 'css_class' => '', |
|
| 171 | - 'cat_sort' => false, |
|
| 172 | - 'cat_filter' => false |
|
| 173 | - ); |
|
| 174 | - |
|
| 175 | - // Company Logo |
|
| 176 | - $fields[] = array('listing_type' => $post_type, |
|
| 177 | - 'field_type' => 'file', |
|
| 178 | - 'data_type' => '', |
|
| 179 | - 'admin_title' => __('Company Logo', 'geodirectory'), |
|
| 180 | - 'site_title' => __('Company Logo', 'geodirectory'), |
|
| 181 | - 'admin_desc' => __('Enter your company Logo', 'geodirectory'), |
|
| 182 | - 'htmlvar_name' => 'job_company_logo', |
|
| 183 | - 'is_active' => true, |
|
| 184 | - 'for_admin_use' => false, |
|
| 185 | - 'default_value' => '', |
|
| 186 | - 'show_in' => '[owntab]', |
|
| 187 | - 'is_required' => false, |
|
| 188 | - 'validation_pattern' => '', |
|
| 189 | - 'validation_msg' => '', |
|
| 190 | - 'required_msg' => '', |
|
| 191 | - 'field_icon' => 'fa fa-arrow-circle-right', |
|
| 192 | - 'css_class' => '', |
|
| 193 | - 'cat_sort' => false, |
|
| 194 | - 'cat_filter' => false, |
|
| 195 | - 'extra' => array( |
|
| 196 | - 'gd_file_types' => 'jpg', |
|
| 197 | - 'gd_file_types' => 'jpeg', |
|
| 198 | - 'gd_file_types' => 'gif', |
|
| 199 | - 'gd_file_types' => 'png', |
|
| 200 | - ) |
|
| 201 | - ); |
|
| 202 | - |
|
| 203 | - // Company Url |
|
| 204 | - $fields[] = array('listing_type' => $post_type, |
|
| 205 | - 'field_type' => 'url', |
|
| 206 | - 'data_type' => 'VARCHAR', |
|
| 207 | - 'admin_title' => __('Company Url', 'geodirectory'), |
|
| 208 | - 'site_title' => __('Company Url', 'geodirectory'), |
|
| 209 | - 'admin_desc' => __('Enter your company Url', 'geodirectory'), |
|
| 210 | - 'htmlvar_name' => 'job_company_url', |
|
| 211 | - 'is_active' => true, |
|
| 212 | - 'for_admin_use' => false, |
|
| 213 | - 'default_value' => '', |
|
| 214 | - 'show_in' => '[owntab]', |
|
| 215 | - 'is_required' => false, |
|
| 216 | - 'validation_pattern' => '', |
|
| 217 | - 'validation_msg' => '', |
|
| 218 | - 'required_msg' => '', |
|
| 219 | - 'field_icon' => 'fa fa-arrow-circle-right', |
|
| 220 | - 'css_class' => '', |
|
| 221 | - 'cat_sort' => false, |
|
| 222 | - 'cat_filter' => false |
|
| 223 | - ); |
|
| 224 | - |
|
| 225 | - |
|
| 226 | - |
|
| 227 | - /** |
|
| 228 | - * Filter the array of default custom fields DB table data. |
|
| 229 | - * |
|
| 230 | - * @since 1.6.6 |
|
| 231 | - * @param string $fields The default custom fields as an array. |
|
| 232 | - */ |
|
| 233 | - $fields = apply_filters('geodir_property_sale_custom_fields', $fields); |
|
| 234 | - |
|
| 235 | - return $fields; |
|
| 10 | + $fields = array(); |
|
| 11 | + $package = ($package_id=='') ? '' : array($package_id); |
|
| 12 | + |
|
| 13 | + // Salary |
|
| 14 | + $fields[] = array('listing_type' => $post_type, |
|
| 15 | + 'field_type' => 'text', |
|
| 16 | + 'data_type' => 'FLOAT', |
|
| 17 | + 'decimal_point' => '2', |
|
| 18 | + 'admin_title' => __('Salary', 'geodirectory'), |
|
| 19 | + 'site_title' => __('Salary', 'geodirectory'), |
|
| 20 | + 'admin_desc' => __('Enter the Salary in $ (no currency symbol) ie: 25000', 'geodirectory'), |
|
| 21 | + 'htmlvar_name' => 'salary', |
|
| 22 | + 'is_active' => true, |
|
| 23 | + 'for_admin_use' => false, |
|
| 24 | + 'default_value' => '', |
|
| 25 | + 'show_in' => '[detail],[listing]', |
|
| 26 | + 'is_required' => false, |
|
| 27 | + 'validation_pattern' => '\d+(\.\d{2})?', |
|
| 28 | + 'validation_msg' => 'Please enter number and decimal only ie: 100.50', |
|
| 29 | + 'required_msg' => '', |
|
| 30 | + 'field_icon' => 'fa fa-usd', |
|
| 31 | + 'css_class' => '', |
|
| 32 | + 'cat_sort' => true, |
|
| 33 | + 'cat_filter' => true, |
|
| 34 | + 'extra' => array( |
|
| 35 | + 'is_price' => 1, |
|
| 36 | + 'thousand_separator' => 'comma', |
|
| 37 | + 'decimal_separator' => 'period', |
|
| 38 | + 'decimal_display' => 'if', |
|
| 39 | + 'currency_symbol' => '$', |
|
| 40 | + 'currency_symbol_placement' => 'left' |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + |
|
| 45 | + |
|
| 46 | + // Job Type |
|
| 47 | + $fields[] = array('listing_type' => $post_type, |
|
| 48 | + 'field_type' => 'select', |
|
| 49 | + 'data_type' => 'VARCHAR', |
|
| 50 | + 'admin_title' => __('Job Type', 'geodirectory'), |
|
| 51 | + 'site_title' => __('Job Type','geodirectory'), |
|
| 52 | + 'admin_desc' => __('Select the type of job.','geodirectory'), |
|
| 53 | + 'htmlvar_name' => 'job_type', |
|
| 54 | + 'is_active' => true, |
|
| 55 | + 'for_admin_use' => false, |
|
| 56 | + 'default_value' => '', |
|
| 57 | + 'show_in' => '[detail],[listing]', |
|
| 58 | + 'is_required' => true, |
|
| 59 | + 'option_values' => __('Select Type/,Freelance,Full Time,Internship,Part Time,Temporary,Other','geodirectory'), |
|
| 60 | + 'validation_pattern' => '', |
|
| 61 | + 'validation_msg' => '', |
|
| 62 | + 'required_msg' => '', |
|
| 63 | + 'field_icon' => 'fa fa-briefcase', |
|
| 64 | + 'css_class' => '', |
|
| 65 | + 'cat_sort' => true, |
|
| 66 | + 'cat_filter' => true |
|
| 67 | + ); |
|
| 68 | + |
|
| 69 | + // Job Sector |
|
| 70 | + $fields[] = array('listing_type' => $post_type, |
|
| 71 | + 'field_type' => 'select', |
|
| 72 | + 'data_type' => 'VARCHAR', |
|
| 73 | + 'admin_title' => __('Job Sector','geodirectory'), |
|
| 74 | + 'site_title' => __('Job Sector','geodirectory'), |
|
| 75 | + 'admin_desc' => __('Select the job sector.','geodirectory'), |
|
| 76 | + 'htmlvar_name' => 'job_sector', |
|
| 77 | + 'is_active' => true, |
|
| 78 | + 'for_admin_use' => false, |
|
| 79 | + 'default_value' => '', |
|
| 80 | + 'show_in' => '[detail]', |
|
| 81 | + 'is_required' => true, |
|
| 82 | + 'option_values' => __('Select Sector/,Private Sector,Public Sector,Agencies','geodirectory'), |
|
| 83 | + 'validation_pattern' => '', |
|
| 84 | + 'validation_msg' => '', |
|
| 85 | + 'required_msg' => '', |
|
| 86 | + 'field_icon' => 'fa fa-briefcase', |
|
| 87 | + 'css_class' => '', |
|
| 88 | + 'cat_sort' => true, |
|
| 89 | + 'cat_filter' => true |
|
| 90 | + ); |
|
| 91 | + |
|
| 92 | + // Required Experience |
|
| 93 | + $fields[] = array('listing_type' => $post_type, |
|
| 94 | + 'field_type' => 'select', |
|
| 95 | + 'data_type' => 'VARCHAR', |
|
| 96 | + 'admin_title' => __('Required Experience', 'geodirectory'), |
|
| 97 | + 'site_title' => __('Required Experience', 'geodirectory'), |
|
| 98 | + 'admin_desc' => __('Select the number of years required experience', 'geodirectory'), |
|
| 99 | + 'htmlvar_name' => 'job_experience', |
|
| 100 | + 'is_active' => true, |
|
| 101 | + 'for_admin_use' => false, |
|
| 102 | + 'default_value' => '', |
|
| 103 | + 'show_in' => '[detail],[listing]', |
|
| 104 | + 'is_required' => true, |
|
| 105 | + 'option_values' => __('Select Experience/,No Experience Required,1 Year,2 Years,3 Years,4 Years,5 Years,6 Years,7 Years,8 Years,9 Years,10+ Years','geodirectory'), |
|
| 106 | + 'validation_pattern' => '', |
|
| 107 | + 'validation_msg' => '', |
|
| 108 | + 'required_msg' => '', |
|
| 109 | + 'field_icon' => 'fa fa-life-ring', |
|
| 110 | + 'css_class' => '', |
|
| 111 | + 'cat_sort' => true, |
|
| 112 | + 'cat_filter' => true |
|
| 113 | + ); |
|
| 114 | + |
|
| 115 | + // Required Skills |
|
| 116 | + $fields[] = array('listing_type' => $post_type, |
|
| 117 | + 'field_type' => 'textarea', |
|
| 118 | + 'data_type' => 'TEXT', |
|
| 119 | + 'admin_title' => __('Required Skills', 'geodirectory'), |
|
| 120 | + 'site_title' => __('Required Skills', 'geodirectory'), |
|
| 121 | + 'admin_desc' => __('Enter the required skills for the job', 'geodirectory'), |
|
| 122 | + 'htmlvar_name' => 'property_area', |
|
| 123 | + 'is_active' => true, |
|
| 124 | + 'for_admin_use' => false, |
|
| 125 | + 'default_value' => '', |
|
| 126 | + 'show_in' => '[detail],[listing]', |
|
| 127 | + 'is_required' => false, |
|
| 128 | + 'validation_pattern' => '', |
|
| 129 | + 'validation_msg' => '', |
|
| 130 | + 'required_msg' => '', |
|
| 131 | + 'field_icon' => 'fa fa-area-chart', |
|
| 132 | + 'css_class' => '', |
|
| 133 | + 'cat_sort' => true, |
|
| 134 | + 'cat_filter' => true |
|
| 135 | + ); |
|
| 136 | + |
|
| 137 | + |
|
| 138 | + |
|
| 139 | + // Company details fieldset |
|
| 140 | + $fields[] = array('listing_type' => $post_type, |
|
| 141 | + 'field_type' => 'fieldset', |
|
| 142 | + 'data_type' => '', |
|
| 143 | + 'admin_title' => __('Company Details', 'geodirectory'), |
|
| 144 | + 'site_title' => __('Company Details', 'geodirectory'), |
|
| 145 | + 'admin_desc' => __('Enter your company details here', 'geodirectory'), |
|
| 146 | + 'htmlvar_name' => 'job_company_details', |
|
| 147 | + 'is_active' => true, |
|
| 148 | + 'for_admin_use' => false, |
|
| 149 | + 'show_in' => '[owntab]' |
|
| 150 | + |
|
| 151 | + ); |
|
| 152 | + |
|
| 153 | + // Company Name |
|
| 154 | + $fields[] = array('listing_type' => $post_type, |
|
| 155 | + 'field_type' => 'text', |
|
| 156 | + 'data_type' => 'VARCHAR', |
|
| 157 | + 'admin_title' => __('Company Name', 'geodirectory'), |
|
| 158 | + 'site_title' => __('Company Name', 'geodirectory'), |
|
| 159 | + 'admin_desc' => __('Enter your company name', 'geodirectory'), |
|
| 160 | + 'htmlvar_name' => 'job_company_name', |
|
| 161 | + 'is_active' => true, |
|
| 162 | + 'for_admin_use' => false, |
|
| 163 | + 'default_value' => '', |
|
| 164 | + 'show_in' => '[owntab]', |
|
| 165 | + 'is_required' => false, |
|
| 166 | + 'validation_pattern' => '', |
|
| 167 | + 'validation_msg' => '', |
|
| 168 | + 'required_msg' => '', |
|
| 169 | + 'field_icon' => 'fa fa-arrow-circle-right', |
|
| 170 | + 'css_class' => '', |
|
| 171 | + 'cat_sort' => false, |
|
| 172 | + 'cat_filter' => false |
|
| 173 | + ); |
|
| 174 | + |
|
| 175 | + // Company Logo |
|
| 176 | + $fields[] = array('listing_type' => $post_type, |
|
| 177 | + 'field_type' => 'file', |
|
| 178 | + 'data_type' => '', |
|
| 179 | + 'admin_title' => __('Company Logo', 'geodirectory'), |
|
| 180 | + 'site_title' => __('Company Logo', 'geodirectory'), |
|
| 181 | + 'admin_desc' => __('Enter your company Logo', 'geodirectory'), |
|
| 182 | + 'htmlvar_name' => 'job_company_logo', |
|
| 183 | + 'is_active' => true, |
|
| 184 | + 'for_admin_use' => false, |
|
| 185 | + 'default_value' => '', |
|
| 186 | + 'show_in' => '[owntab]', |
|
| 187 | + 'is_required' => false, |
|
| 188 | + 'validation_pattern' => '', |
|
| 189 | + 'validation_msg' => '', |
|
| 190 | + 'required_msg' => '', |
|
| 191 | + 'field_icon' => 'fa fa-arrow-circle-right', |
|
| 192 | + 'css_class' => '', |
|
| 193 | + 'cat_sort' => false, |
|
| 194 | + 'cat_filter' => false, |
|
| 195 | + 'extra' => array( |
|
| 196 | + 'gd_file_types' => 'jpg', |
|
| 197 | + 'gd_file_types' => 'jpeg', |
|
| 198 | + 'gd_file_types' => 'gif', |
|
| 199 | + 'gd_file_types' => 'png', |
|
| 200 | + ) |
|
| 201 | + ); |
|
| 202 | + |
|
| 203 | + // Company Url |
|
| 204 | + $fields[] = array('listing_type' => $post_type, |
|
| 205 | + 'field_type' => 'url', |
|
| 206 | + 'data_type' => 'VARCHAR', |
|
| 207 | + 'admin_title' => __('Company Url', 'geodirectory'), |
|
| 208 | + 'site_title' => __('Company Url', 'geodirectory'), |
|
| 209 | + 'admin_desc' => __('Enter your company Url', 'geodirectory'), |
|
| 210 | + 'htmlvar_name' => 'job_company_url', |
|
| 211 | + 'is_active' => true, |
|
| 212 | + 'for_admin_use' => false, |
|
| 213 | + 'default_value' => '', |
|
| 214 | + 'show_in' => '[owntab]', |
|
| 215 | + 'is_required' => false, |
|
| 216 | + 'validation_pattern' => '', |
|
| 217 | + 'validation_msg' => '', |
|
| 218 | + 'required_msg' => '', |
|
| 219 | + 'field_icon' => 'fa fa-arrow-circle-right', |
|
| 220 | + 'css_class' => '', |
|
| 221 | + 'cat_sort' => false, |
|
| 222 | + 'cat_filter' => false |
|
| 223 | + ); |
|
| 224 | + |
|
| 225 | + |
|
| 226 | + |
|
| 227 | + /** |
|
| 228 | + * Filter the array of default custom fields DB table data. |
|
| 229 | + * |
|
| 230 | + * @since 1.6.6 |
|
| 231 | + * @param string $fields The default custom fields as an array. |
|
| 232 | + */ |
|
| 233 | + $fields = apply_filters('geodir_property_sale_custom_fields', $fields); |
|
| 234 | + |
|
| 235 | + return $fields; |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
@@ -242,36 +242,36 @@ discard block |
||
| 242 | 242 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 243 | 243 | |
| 244 | 244 | if($dummy_post_index==1){ |
| 245 | - // add the dummy categories |
|
| 246 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 245 | + // add the dummy categories |
|
| 246 | + geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 247 | 247 | |
| 248 | - // add the dummy custom fields |
|
| 249 | - $fields = geodir_property_sale_custom_fields($post_type); |
|
| 250 | - geodir_create_dummy_fields($fields); |
|
| 251 | - update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 248 | + // add the dummy custom fields |
|
| 249 | + $fields = geodir_property_sale_custom_fields($post_type); |
|
| 250 | + geodir_create_dummy_fields($fields); |
|
| 251 | + update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | if (geodir_dummy_folder_exists()) |
| 255 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 255 | + $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 256 | 256 | else |
| 257 | - $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
|
| 257 | + $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
|
| 258 | 258 | |
| 259 | 259 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 260 | 260 | |
| 261 | 261 | switch ($dummy_post_index) { |
| 262 | 262 | |
| 263 | - case(1): |
|
| 264 | - $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 265 | - $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 266 | - $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 267 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 268 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 263 | + case(1): |
|
| 264 | + $image_array[] = "$dummy_image_url/ps/psf1.jpg"; |
|
| 265 | + $image_array[] = "$dummy_image_url/ps/psl1.jpg"; |
|
| 266 | + $image_array[] = "$dummy_image_url/ps/psb1.jpg"; |
|
| 267 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 268 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 269 | 269 | |
| 270 | 270 | |
| 271 | - $post_info[] = array( |
|
| 272 | - "listing_type" => $post_type, |
|
| 273 | - "post_title" => 'Eastern Lodge', |
|
| 274 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 271 | + $post_info[] = array( |
|
| 272 | + "listing_type" => $post_type, |
|
| 273 | + "post_title" => 'Eastern Lodge', |
|
| 274 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec non augue ultrices, vulputate nulla at, consectetur ante. Quisque neque mi, vulputate quis nulla a, sollicitudin fringilla leo. Nam dictum id neque eu imperdiet. Curabitur ligula turpis, malesuada at lobortis commodo, vulputate volutpat arcu. Duis bibendum blandit aliquam. In ipsum diam, tristique ut bibendum vel, lobortis non tellus. Nulla ultricies, ante vitae placerat auctor, nisi quam blandit enim, sit amet aliquam est diam id urna. Suspendisse eget nibh volutpat, malesuada enim sed, egestas massa. |
|
| 275 | 275 | |
| 276 | 276 | Aliquam ut odio ullamcorper, posuere enim sed, venenatis tortor. Donec justo elit, aliquam sed cursus sed, semper eget libero. Mauris consequat lorem sed fringilla tincidunt. Phasellus suscipit velit et elit tristique, ac commodo metus scelerisque. Vivamus finibus ipsum placerat pulvinar aliquet. Maecenas augue orci, blandit at nibh pharetra, condimentum congue ligula. Duis non ante sagittis odio convallis lacinia in quis sapien. |
| 277 | 277 | |
@@ -280,42 +280,42 @@ discard block |
||
| 280 | 280 | Vestibulum tristique quam eget bibendum pulvinar. Mauris sit amet magna ut arcu rutrum pellentesque feugiat et ipsum. Proin porta quam sed risus accumsan pharetra. Nulla quis semper nisl. Nulla facilisi. Nulla facilisi. Pellentesque euismod sollicitudin lacus vel ultricies. Vestibulum ut sem ut nulla ultricies convallis in at mi. Nunc vitae nibh arcu. Maecenas nunc enim, tempus a rhoncus eget, pellentesque ut erat. |
| 281 | 281 | |
| 282 | 282 | Suspendisse interdum accumsan magna et tempor. Suspendisse scelerisque at lorem sit amet faucibus. Aenean quis consectetur enim. Duis aliquet tristique tempus. Suspendisse id ullamcorper mauris. Aliquam in libero eu justo porttitor pulvinar. Nulla semper placerat lectus. Nulla mollis suscipit lacus, a blandit purus cursus non. Maecenas id tellus mi. Pellentesque sollicitudin nibh eget magna scelerisque consequat. Aliquam convallis orci arcu, et euismod dui cursus et. Donec nec pellentesque nulla, ac pretium massa. In gravida bibendum ornare.', |
| 283 | - "post_images" => $image_array, |
|
| 284 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 285 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 286 | - "geodir_video" => '', |
|
| 287 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 288 | - "geodir_contact" => '(111) 677-4444', |
|
| 289 | - "geodir_email" => '[email protected]', |
|
| 290 | - "geodir_website" => 'http://example.com/', |
|
| 291 | - "geodir_twitter" => 'http://example.com/', |
|
| 292 | - "geodir_facebook" => 'http://example.com/', |
|
| 293 | - "geodir_price" => '350000', |
|
| 294 | - "geodir_property_status" => 'For Sale', |
|
| 295 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 296 | - 'geodir_property_type' => 'Detached house', |
|
| 297 | - 'geodir_property_bedrooms' => '3', |
|
| 298 | - 'geodir_property_bathrooms' => '2', |
|
| 299 | - 'geodir_property_area' => '1850', |
|
| 300 | - 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 301 | - "post_dummy" => '1' |
|
| 302 | - ); |
|
| 303 | - |
|
| 304 | - |
|
| 305 | - break; |
|
| 306 | - case 2: |
|
| 307 | - $image_array = array(); |
|
| 308 | - $post_meta = array(); |
|
| 309 | - $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 310 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 311 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 312 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 313 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 314 | - |
|
| 315 | - $post_info[] = array( |
|
| 316 | - "listing_type" => $post_type, |
|
| 317 | - "post_title" => 'Daisy Street', |
|
| 318 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 283 | + "post_images" => $image_array, |
|
| 284 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 285 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 286 | + "geodir_video" => '', |
|
| 287 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 288 | + "geodir_contact" => '(111) 677-4444', |
|
| 289 | + "geodir_email" => '[email protected]', |
|
| 290 | + "geodir_website" => 'http://example.com/', |
|
| 291 | + "geodir_twitter" => 'http://example.com/', |
|
| 292 | + "geodir_facebook" => 'http://example.com/', |
|
| 293 | + "geodir_price" => '350000', |
|
| 294 | + "geodir_property_status" => 'For Sale', |
|
| 295 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 296 | + 'geodir_property_type' => 'Detached house', |
|
| 297 | + 'geodir_property_bedrooms' => '3', |
|
| 298 | + 'geodir_property_bathrooms' => '2', |
|
| 299 | + 'geodir_property_area' => '1850', |
|
| 300 | + 'geodir_property_features' => 'Gas Central Heating,Triple Glazing,Front Garden,Private driveway,Fireplace', |
|
| 301 | + "post_dummy" => '1' |
|
| 302 | + ); |
|
| 303 | + |
|
| 304 | + |
|
| 305 | + break; |
|
| 306 | + case 2: |
|
| 307 | + $image_array = array(); |
|
| 308 | + $post_meta = array(); |
|
| 309 | + $image_array[] = "$dummy_image_url/ps/psf2.jpg"; |
|
| 310 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 311 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 312 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 313 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 314 | + |
|
| 315 | + $post_info[] = array( |
|
| 316 | + "listing_type" => $post_type, |
|
| 317 | + "post_title" => 'Daisy Street', |
|
| 318 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 319 | 319 | |
| 320 | 320 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 321 | 321 | |
@@ -325,42 +325,42 @@ discard block |
||
| 325 | 325 | |
| 326 | 326 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 327 | 327 | |
| 328 | - "post_images" => $image_array, |
|
| 329 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 330 | - "post_tags" => array('Garage'), |
|
| 331 | - "geodir_video" => '', |
|
| 332 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 333 | - "geodir_contact" => '(222) 777-1111', |
|
| 334 | - "geodir_email" => '[email protected]', |
|
| 335 | - "geodir_website" => 'http://example.com/', |
|
| 336 | - "geodir_twitter" => 'http://example.com/', |
|
| 337 | - "geodir_facebook" => 'http://example.com/', |
|
| 338 | - "geodir_price" => '230000', |
|
| 339 | - "geodir_property_status" => 'Sold', |
|
| 340 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 341 | - 'geodir_property_type' => 'Detached house', |
|
| 342 | - 'geodir_property_bedrooms' => '5', |
|
| 343 | - 'geodir_property_bathrooms' => '3', |
|
| 344 | - 'geodir_property_area' => '2650', |
|
| 345 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 346 | - "post_dummy" => '1' |
|
| 347 | - ); |
|
| 348 | - |
|
| 349 | - break; |
|
| 350 | - |
|
| 351 | - case 3: |
|
| 352 | - $image_array = array(); |
|
| 353 | - $post_meta = array(); |
|
| 354 | - $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 355 | - $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 356 | - $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 357 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 358 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 359 | - |
|
| 360 | - $post_info[] = array( |
|
| 361 | - "listing_type" => $post_type, |
|
| 362 | - "post_title" => 'Northbay House', |
|
| 363 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 328 | + "post_images" => $image_array, |
|
| 329 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 330 | + "post_tags" => array('Garage'), |
|
| 331 | + "geodir_video" => '', |
|
| 332 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 333 | + "geodir_contact" => '(222) 777-1111', |
|
| 334 | + "geodir_email" => '[email protected]', |
|
| 335 | + "geodir_website" => 'http://example.com/', |
|
| 336 | + "geodir_twitter" => 'http://example.com/', |
|
| 337 | + "geodir_facebook" => 'http://example.com/', |
|
| 338 | + "geodir_price" => '230000', |
|
| 339 | + "geodir_property_status" => 'Sold', |
|
| 340 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 341 | + 'geodir_property_type' => 'Detached house', |
|
| 342 | + 'geodir_property_bedrooms' => '5', |
|
| 343 | + 'geodir_property_bathrooms' => '3', |
|
| 344 | + 'geodir_property_area' => '2650', |
|
| 345 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Front Garden,Garage,Private driveway,Fireplace', |
|
| 346 | + "post_dummy" => '1' |
|
| 347 | + ); |
|
| 348 | + |
|
| 349 | + break; |
|
| 350 | + |
|
| 351 | + case 3: |
|
| 352 | + $image_array = array(); |
|
| 353 | + $post_meta = array(); |
|
| 354 | + $image_array[] = "$dummy_image_url/ps/psf3.jpg"; |
|
| 355 | + $image_array[] = "$dummy_image_url/ps/psl3.jpg"; |
|
| 356 | + $image_array[] = "$dummy_image_url/ps/psb3.jpg"; |
|
| 357 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 358 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 359 | + |
|
| 360 | + $post_info[] = array( |
|
| 361 | + "listing_type" => $post_type, |
|
| 362 | + "post_title" => 'Northbay House', |
|
| 363 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 364 | 364 | |
| 365 | 365 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 366 | 366 | |
@@ -370,43 +370,43 @@ discard block |
||
| 370 | 370 | |
| 371 | 371 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 372 | 372 | |
| 373 | - "post_images" => $image_array, |
|
| 374 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 375 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 376 | - "geodir_video" => '', |
|
| 377 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 378 | - "geodir_contact" => '(222) 777-1111', |
|
| 379 | - "geodir_email" => '[email protected]', |
|
| 380 | - "geodir_website" => 'http://example.com/', |
|
| 381 | - "geodir_twitter" => 'http://example.com/', |
|
| 382 | - "geodir_facebook" => 'http://example.com/', |
|
| 383 | - "geodir_price" => '260000', |
|
| 384 | - "geodir_property_status" => 'Under Offer', |
|
| 385 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 386 | - 'geodir_property_type' => 'Detached house', |
|
| 387 | - 'geodir_property_bedrooms' => '6', |
|
| 388 | - 'geodir_property_bathrooms' => '6', |
|
| 389 | - 'geodir_property_area' => '1650', |
|
| 390 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 391 | - "post_dummy" => '1' |
|
| 392 | - ); |
|
| 393 | - |
|
| 394 | - break; |
|
| 395 | - |
|
| 396 | - |
|
| 397 | - case 4: |
|
| 398 | - $image_array = array(); |
|
| 399 | - $post_meta = array(); |
|
| 400 | - $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 401 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 402 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 403 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 404 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 405 | - |
|
| 406 | - $post_info[] = array( |
|
| 407 | - "listing_type" => $post_type, |
|
| 408 | - "post_title" => 'Jesmond Mansion', |
|
| 409 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 373 | + "post_images" => $image_array, |
|
| 374 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 375 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 376 | + "geodir_video" => '', |
|
| 377 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 378 | + "geodir_contact" => '(222) 777-1111', |
|
| 379 | + "geodir_email" => '[email protected]', |
|
| 380 | + "geodir_website" => 'http://example.com/', |
|
| 381 | + "geodir_twitter" => 'http://example.com/', |
|
| 382 | + "geodir_facebook" => 'http://example.com/', |
|
| 383 | + "geodir_price" => '260000', |
|
| 384 | + "geodir_property_status" => 'Under Offer', |
|
| 385 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 386 | + 'geodir_property_type' => 'Detached house', |
|
| 387 | + 'geodir_property_bedrooms' => '6', |
|
| 388 | + 'geodir_property_bathrooms' => '6', |
|
| 389 | + 'geodir_property_area' => '1650', |
|
| 390 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Triple Glazing,Off Road Parking,Fireplace', |
|
| 391 | + "post_dummy" => '1' |
|
| 392 | + ); |
|
| 393 | + |
|
| 394 | + break; |
|
| 395 | + |
|
| 396 | + |
|
| 397 | + case 4: |
|
| 398 | + $image_array = array(); |
|
| 399 | + $post_meta = array(); |
|
| 400 | + $image_array[] = "$dummy_image_url/ps/psf4.jpg"; |
|
| 401 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 402 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 403 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 404 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 405 | + |
|
| 406 | + $post_info[] = array( |
|
| 407 | + "listing_type" => $post_type, |
|
| 408 | + "post_title" => 'Jesmond Mansion', |
|
| 409 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 410 | 410 | |
| 411 | 411 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 412 | 412 | |
@@ -416,42 +416,42 @@ discard block |
||
| 416 | 416 | |
| 417 | 417 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 418 | 418 | |
| 419 | - "post_images" => $image_array, |
|
| 420 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 421 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 422 | - "geodir_video" => '', |
|
| 423 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 424 | - "geodir_contact" => '(222) 777-1111', |
|
| 425 | - "geodir_email" => '[email protected]', |
|
| 426 | - "geodir_website" => 'http://example.com/', |
|
| 427 | - "geodir_twitter" => 'http://example.com/', |
|
| 428 | - "geodir_facebook" => 'http://example.com/', |
|
| 429 | - "geodir_price" => '2300000', |
|
| 430 | - "geodir_property_status" => 'Under Offer', |
|
| 431 | - 'geodir_property_furnishing' => 'Partially furnished', |
|
| 432 | - 'geodir_property_type' => 'Detached house', |
|
| 433 | - 'geodir_property_bedrooms' => '10', |
|
| 434 | - 'geodir_property_bathrooms' => '7', |
|
| 435 | - 'geodir_property_area' => '6600', |
|
| 436 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 437 | - "post_dummy" => '1' |
|
| 438 | - ); |
|
| 439 | - |
|
| 440 | - break; |
|
| 441 | - |
|
| 442 | - case 5: |
|
| 443 | - $image_array = array(); |
|
| 444 | - $post_meta = array(); |
|
| 445 | - $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 446 | - $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 447 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 448 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 449 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 450 | - |
|
| 451 | - $post_info[] = array( |
|
| 452 | - "listing_type" => $post_type, |
|
| 453 | - "post_title" => 'Springfield Lodge', |
|
| 454 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 419 | + "post_images" => $image_array, |
|
| 420 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 421 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 422 | + "geodir_video" => '', |
|
| 423 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 424 | + "geodir_contact" => '(222) 777-1111', |
|
| 425 | + "geodir_email" => '[email protected]', |
|
| 426 | + "geodir_website" => 'http://example.com/', |
|
| 427 | + "geodir_twitter" => 'http://example.com/', |
|
| 428 | + "geodir_facebook" => 'http://example.com/', |
|
| 429 | + "geodir_price" => '2300000', |
|
| 430 | + "geodir_property_status" => 'Under Offer', |
|
| 431 | + 'geodir_property_furnishing' => 'Partially furnished', |
|
| 432 | + 'geodir_property_type' => 'Detached house', |
|
| 433 | + 'geodir_property_bedrooms' => '10', |
|
| 434 | + 'geodir_property_bathrooms' => '7', |
|
| 435 | + 'geodir_property_area' => '6600', |
|
| 436 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden,Garage,Private driveway,Fireplace', |
|
| 437 | + "post_dummy" => '1' |
|
| 438 | + ); |
|
| 439 | + |
|
| 440 | + break; |
|
| 441 | + |
|
| 442 | + case 5: |
|
| 443 | + $image_array = array(); |
|
| 444 | + $post_meta = array(); |
|
| 445 | + $image_array[] = "$dummy_image_url/ps/psf5.jpg"; |
|
| 446 | + $image_array[] = "$dummy_image_url/ps/psl5.jpg"; |
|
| 447 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 448 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 449 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 450 | + |
|
| 451 | + $post_info[] = array( |
|
| 452 | + "listing_type" => $post_type, |
|
| 453 | + "post_title" => 'Springfield Lodge', |
|
| 454 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 455 | 455 | |
| 456 | 456 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 457 | 457 | |
@@ -461,42 +461,42 @@ discard block |
||
| 461 | 461 | |
| 462 | 462 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 463 | 463 | |
| 464 | - "post_images" => $image_array, |
|
| 465 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 466 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 467 | - "geodir_video" => '', |
|
| 468 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 469 | - "geodir_contact" => '(222) 777-1111', |
|
| 470 | - "geodir_email" => '[email protected]', |
|
| 471 | - "geodir_website" => 'http://example.com/', |
|
| 472 | - "geodir_twitter" => 'http://example.com/', |
|
| 473 | - "geodir_facebook" => 'http://example.com/', |
|
| 474 | - "geodir_price" => '330000', |
|
| 475 | - "geodir_property_status" => 'For Sale', |
|
| 476 | - 'geodir_property_furnishing' => 'Optional', |
|
| 477 | - 'geodir_property_type' => 'Detached house', |
|
| 478 | - 'geodir_property_bedrooms' => '4', |
|
| 479 | - 'geodir_property_bathrooms' => '3', |
|
| 480 | - 'geodir_property_area' => '3700', |
|
| 481 | - 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 482 | - "post_dummy" => '1' |
|
| 483 | - ); |
|
| 484 | - |
|
| 485 | - break; |
|
| 486 | - |
|
| 487 | - case 6: |
|
| 488 | - $image_array = array(); |
|
| 489 | - $post_meta = array(); |
|
| 490 | - $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 491 | - $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 492 | - $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 493 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 494 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 495 | - |
|
| 496 | - $post_info[] = array( |
|
| 497 | - "listing_type" => $post_type, |
|
| 498 | - "post_title" => 'Forrest Park', |
|
| 499 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 464 | + "post_images" => $image_array, |
|
| 465 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 466 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 467 | + "geodir_video" => '', |
|
| 468 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 469 | + "geodir_contact" => '(222) 777-1111', |
|
| 470 | + "geodir_email" => '[email protected]', |
|
| 471 | + "geodir_website" => 'http://example.com/', |
|
| 472 | + "geodir_twitter" => 'http://example.com/', |
|
| 473 | + "geodir_facebook" => 'http://example.com/', |
|
| 474 | + "geodir_price" => '330000', |
|
| 475 | + "geodir_property_status" => 'For Sale', |
|
| 476 | + 'geodir_property_furnishing' => 'Optional', |
|
| 477 | + 'geodir_property_type' => 'Detached house', |
|
| 478 | + 'geodir_property_bedrooms' => '4', |
|
| 479 | + 'geodir_property_bathrooms' => '3', |
|
| 480 | + 'geodir_property_area' => '3700', |
|
| 481 | + 'geodir_property_features' => 'Select Features/,Oil Central Heating,Double Glazing,Front Garden', |
|
| 482 | + "post_dummy" => '1' |
|
| 483 | + ); |
|
| 484 | + |
|
| 485 | + break; |
|
| 486 | + |
|
| 487 | + case 6: |
|
| 488 | + $image_array = array(); |
|
| 489 | + $post_meta = array(); |
|
| 490 | + $image_array[] = "$dummy_image_url/ps/psf6.jpg"; |
|
| 491 | + $image_array[] = "$dummy_image_url/ps/psl6.jpg"; |
|
| 492 | + $image_array[] = "$dummy_image_url/ps/psb5.jpg"; |
|
| 493 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 494 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 495 | + |
|
| 496 | + $post_info[] = array( |
|
| 497 | + "listing_type" => $post_type, |
|
| 498 | + "post_title" => 'Forrest Park', |
|
| 499 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 500 | 500 | |
| 501 | 501 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 502 | 502 | |
@@ -506,42 +506,42 @@ discard block |
||
| 506 | 506 | |
| 507 | 507 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 508 | 508 | |
| 509 | - "post_images" => $image_array, |
|
| 510 | - "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 511 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 512 | - "geodir_video" => '', |
|
| 513 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 514 | - "geodir_contact" => '(222) 777-1111', |
|
| 515 | - "geodir_email" => '[email protected]', |
|
| 516 | - "geodir_website" => 'http://example.com/', |
|
| 517 | - "geodir_twitter" => 'http://example.com/', |
|
| 518 | - "geodir_facebook" => 'http://example.com/', |
|
| 519 | - "geodir_price" => '530000', |
|
| 520 | - "geodir_property_status" => 'For Sale', |
|
| 521 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 522 | - 'geodir_property_type' => 'Detached house', |
|
| 523 | - 'geodir_property_bedrooms' => '5', |
|
| 524 | - 'geodir_property_bathrooms' => '4', |
|
| 525 | - 'geodir_property_area' => '2250', |
|
| 526 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 527 | - "post_dummy" => '1' |
|
| 528 | - ); |
|
| 529 | - |
|
| 530 | - break; |
|
| 531 | - |
|
| 532 | - case 7: |
|
| 533 | - $image_array = array(); |
|
| 534 | - $post_meta = array(); |
|
| 535 | - $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 536 | - $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 537 | - $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 538 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 539 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 540 | - |
|
| 541 | - $post_info[] = array( |
|
| 542 | - "listing_type" => $post_type, |
|
| 543 | - "post_title" => 'Fraser Suites', |
|
| 544 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 509 | + "post_images" => $image_array, |
|
| 510 | + "post_category" => array($post_type.'category' => array($category_array[1])), |
|
| 511 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 512 | + "geodir_video" => '', |
|
| 513 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 514 | + "geodir_contact" => '(222) 777-1111', |
|
| 515 | + "geodir_email" => '[email protected]', |
|
| 516 | + "geodir_website" => 'http://example.com/', |
|
| 517 | + "geodir_twitter" => 'http://example.com/', |
|
| 518 | + "geodir_facebook" => 'http://example.com/', |
|
| 519 | + "geodir_price" => '530000', |
|
| 520 | + "geodir_property_status" => 'For Sale', |
|
| 521 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 522 | + 'geodir_property_type' => 'Detached house', |
|
| 523 | + 'geodir_property_bedrooms' => '5', |
|
| 524 | + 'geodir_property_bathrooms' => '4', |
|
| 525 | + 'geodir_property_area' => '2250', |
|
| 526 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Front Garden,Private driveway', |
|
| 527 | + "post_dummy" => '1' |
|
| 528 | + ); |
|
| 529 | + |
|
| 530 | + break; |
|
| 531 | + |
|
| 532 | + case 7: |
|
| 533 | + $image_array = array(); |
|
| 534 | + $post_meta = array(); |
|
| 535 | + $image_array[] = "$dummy_image_url/ps/psf7.jpg"; |
|
| 536 | + $image_array[] = "$dummy_image_url/ps/psl4.jpg"; |
|
| 537 | + $image_array[] = "$dummy_image_url/ps/psb4.jpg"; |
|
| 538 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 539 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 540 | + |
|
| 541 | + $post_info[] = array( |
|
| 542 | + "listing_type" => $post_type, |
|
| 543 | + "post_title" => 'Fraser Suites', |
|
| 544 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 545 | 545 | |
| 546 | 546 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 547 | 547 | |
@@ -551,42 +551,42 @@ discard block |
||
| 551 | 551 | |
| 552 | 552 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 553 | 553 | |
| 554 | - "post_images" => $image_array, |
|
| 555 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 556 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 557 | - "geodir_video" => '', |
|
| 558 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 559 | - "geodir_contact" => '(222) 777-1111', |
|
| 560 | - "geodir_email" => '[email protected]', |
|
| 561 | - "geodir_website" => 'http://example.com/', |
|
| 562 | - "geodir_twitter" => 'http://example.com/', |
|
| 563 | - "geodir_facebook" => 'http://example.com/', |
|
| 564 | - "geodir_price" => '245000', |
|
| 565 | - "geodir_property_status" => 'For Sale', |
|
| 566 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 567 | - 'geodir_property_type' => 'Apartment', |
|
| 568 | - 'geodir_property_bedrooms' => '3', |
|
| 569 | - 'geodir_property_bathrooms' => '2', |
|
| 570 | - 'geodir_property_area' => '1250', |
|
| 571 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 572 | - "post_dummy" => '1' |
|
| 573 | - ); |
|
| 574 | - |
|
| 575 | - break; |
|
| 576 | - |
|
| 577 | - case 8: |
|
| 578 | - $image_array = array(); |
|
| 579 | - $post_meta = array(); |
|
| 580 | - $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 581 | - $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 582 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 583 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 584 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 585 | - |
|
| 586 | - $post_info[] = array( |
|
| 587 | - "listing_type" => $post_type, |
|
| 588 | - "post_title" => 'Richmore Apartments', |
|
| 589 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 554 | + "post_images" => $image_array, |
|
| 555 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 556 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 557 | + "geodir_video" => '', |
|
| 558 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 559 | + "geodir_contact" => '(222) 777-1111', |
|
| 560 | + "geodir_email" => '[email protected]', |
|
| 561 | + "geodir_website" => 'http://example.com/', |
|
| 562 | + "geodir_twitter" => 'http://example.com/', |
|
| 563 | + "geodir_facebook" => 'http://example.com/', |
|
| 564 | + "geodir_price" => '245000', |
|
| 565 | + "geodir_property_status" => 'For Sale', |
|
| 566 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 567 | + 'geodir_property_type' => 'Apartment', |
|
| 568 | + 'geodir_property_bedrooms' => '3', |
|
| 569 | + 'geodir_property_bathrooms' => '2', |
|
| 570 | + 'geodir_property_area' => '1250', |
|
| 571 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing', |
|
| 572 | + "post_dummy" => '1' |
|
| 573 | + ); |
|
| 574 | + |
|
| 575 | + break; |
|
| 576 | + |
|
| 577 | + case 8: |
|
| 578 | + $image_array = array(); |
|
| 579 | + $post_meta = array(); |
|
| 580 | + $image_array[] = "$dummy_image_url/ps/psf8.jpg"; |
|
| 581 | + $image_array[] = "$dummy_image_url/ps/psl2.jpg"; |
|
| 582 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 583 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 584 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 585 | + |
|
| 586 | + $post_info[] = array( |
|
| 587 | + "listing_type" => $post_type, |
|
| 588 | + "post_title" => 'Richmore Apartments', |
|
| 589 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 590 | 590 | |
| 591 | 591 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 592 | 592 | |
@@ -596,43 +596,43 @@ discard block |
||
| 596 | 596 | |
| 597 | 597 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 598 | 598 | |
| 599 | - "post_images" => $image_array, |
|
| 600 | - "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 601 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 602 | - "geodir_video" => '', |
|
| 603 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 604 | - "geodir_contact" => '(222) 777-1111', |
|
| 605 | - "geodir_email" => '[email protected]', |
|
| 606 | - "geodir_website" => 'http://example.com/', |
|
| 607 | - "geodir_twitter" => 'http://example.com/', |
|
| 608 | - "geodir_facebook" => 'http://example.com/', |
|
| 609 | - "geodir_price" => '395000', |
|
| 610 | - "geodir_property_status" => 'For Sale', |
|
| 611 | - 'geodir_property_furnishing' => 'Unfurnished', |
|
| 612 | - 'geodir_property_type' => 'Apartment', |
|
| 613 | - 'geodir_property_bedrooms' => '2', |
|
| 614 | - 'geodir_property_bathrooms' => '2', |
|
| 615 | - 'geodir_property_area' => '1750', |
|
| 616 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 617 | - "post_dummy" => '1' |
|
| 618 | - ); |
|
| 619 | - |
|
| 620 | - break; |
|
| 621 | - |
|
| 622 | - |
|
| 623 | - case 9: |
|
| 624 | - $image_array = array(); |
|
| 625 | - $post_meta = array(); |
|
| 626 | - $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 627 | - $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 628 | - $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 629 | - $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 630 | - $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 631 | - |
|
| 632 | - $post_info[] = array( |
|
| 633 | - "listing_type" => $post_type, |
|
| 634 | - "post_title" => 'Hotel Alpina', |
|
| 635 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 599 | + "post_images" => $image_array, |
|
| 600 | + "post_category" => array($post_type.'category' => array($category_array[0])), |
|
| 601 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 602 | + "geodir_video" => '', |
|
| 603 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 604 | + "geodir_contact" => '(222) 777-1111', |
|
| 605 | + "geodir_email" => '[email protected]', |
|
| 606 | + "geodir_website" => 'http://example.com/', |
|
| 607 | + "geodir_twitter" => 'http://example.com/', |
|
| 608 | + "geodir_facebook" => 'http://example.com/', |
|
| 609 | + "geodir_price" => '395000', |
|
| 610 | + "geodir_property_status" => 'For Sale', |
|
| 611 | + 'geodir_property_furnishing' => 'Unfurnished', |
|
| 612 | + 'geodir_property_type' => 'Apartment', |
|
| 613 | + 'geodir_property_bedrooms' => '2', |
|
| 614 | + 'geodir_property_bathrooms' => '2', |
|
| 615 | + 'geodir_property_area' => '1750', |
|
| 616 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 617 | + "post_dummy" => '1' |
|
| 618 | + ); |
|
| 619 | + |
|
| 620 | + break; |
|
| 621 | + |
|
| 622 | + |
|
| 623 | + case 9: |
|
| 624 | + $image_array = array(); |
|
| 625 | + $post_meta = array(); |
|
| 626 | + $image_array[] = "$dummy_image_url/ps/psf9.jpg"; |
|
| 627 | + $image_array[] = "$dummy_image_url/ps/psc9.jpg"; |
|
| 628 | + $image_array[] = "$dummy_image_url/ps/psb2.jpg"; |
|
| 629 | + $image_array[] = "$dummy_image_url/ps/psk.jpg"; |
|
| 630 | + $image_array[] = "$dummy_image_url/ps/psbr.jpg"; |
|
| 631 | + |
|
| 632 | + $post_info[] = array( |
|
| 633 | + "listing_type" => $post_type, |
|
| 634 | + "post_title" => 'Hotel Alpina', |
|
| 635 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 636 | 636 | |
| 637 | 637 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 638 | 638 | |
@@ -642,39 +642,39 @@ discard block |
||
| 642 | 642 | |
| 643 | 643 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 644 | 644 | |
| 645 | - "post_images" => $image_array, |
|
| 646 | - "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 647 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 648 | - "geodir_video" => '', |
|
| 649 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 650 | - "geodir_contact" => '(222) 777-1111', |
|
| 651 | - "geodir_email" => '[email protected]', |
|
| 652 | - "geodir_website" => 'http://example.com/', |
|
| 653 | - "geodir_twitter" => 'http://example.com/', |
|
| 654 | - "geodir_facebook" => 'http://example.com/', |
|
| 655 | - "geodir_price" => '12500000', |
|
| 656 | - "geodir_property_status" => 'For Sale', |
|
| 657 | - 'geodir_property_furnishing' => 'Furnished', |
|
| 658 | - 'geodir_property_type' => 'Hotel', |
|
| 659 | - 'geodir_property_bedrooms' => '120', |
|
| 660 | - 'geodir_property_bathrooms' => '133', |
|
| 661 | - 'geodir_property_area' => '35000', |
|
| 662 | - 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 663 | - "post_dummy" => '1' |
|
| 664 | - ); |
|
| 665 | - |
|
| 666 | - break; |
|
| 667 | - |
|
| 668 | - case 10: |
|
| 669 | - $image_array = array(); |
|
| 670 | - $post_meta = array(); |
|
| 671 | - $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 672 | - $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 673 | - |
|
| 674 | - $post_info[] = array( |
|
| 675 | - "listing_type" => $post_type, |
|
| 676 | - "post_title" => 'Development Land', |
|
| 677 | - "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 645 | + "post_images" => $image_array, |
|
| 646 | + "post_category" => array($post_type.'category' => array($category_array[2])), |
|
| 647 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 648 | + "geodir_video" => '', |
|
| 649 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 650 | + "geodir_contact" => '(222) 777-1111', |
|
| 651 | + "geodir_email" => '[email protected]', |
|
| 652 | + "geodir_website" => 'http://example.com/', |
|
| 653 | + "geodir_twitter" => 'http://example.com/', |
|
| 654 | + "geodir_facebook" => 'http://example.com/', |
|
| 655 | + "geodir_price" => '12500000', |
|
| 656 | + "geodir_property_status" => 'For Sale', |
|
| 657 | + 'geodir_property_furnishing' => 'Furnished', |
|
| 658 | + 'geodir_property_type' => 'Hotel', |
|
| 659 | + 'geodir_property_bedrooms' => '120', |
|
| 660 | + 'geodir_property_bathrooms' => '133', |
|
| 661 | + 'geodir_property_area' => '35000', |
|
| 662 | + 'geodir_property_features' => 'Select Features/,Gas Central Heating,Double Glazing,Garage', |
|
| 663 | + "post_dummy" => '1' |
|
| 664 | + ); |
|
| 665 | + |
|
| 666 | + break; |
|
| 667 | + |
|
| 668 | + case 10: |
|
| 669 | + $image_array = array(); |
|
| 670 | + $post_meta = array(); |
|
| 671 | + $image_array[] = "$dummy_image_url/ps/psf10.jpg"; |
|
| 672 | + $image_array[] = "$dummy_image_url/ps/psf102.jpg"; |
|
| 673 | + |
|
| 674 | + $post_info[] = array( |
|
| 675 | + "listing_type" => $post_type, |
|
| 676 | + "post_title" => 'Development Land', |
|
| 677 | + "post_desc" => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Ut fringilla ipsum congue enim elementum ornare. Vestibulum id ipsum ac massa malesuada rutrum. Curabitur id erat nec mauris hendrerit pretium. Aliquam pretium sollicitudin enim ac hendrerit. Phasellus et enim elit. Mauris ac maximus enim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Ut ut cursus leo. Aenean lacinia risus ut ex sodales, a dictum eros vulputate. Sed ornare ex eget velit fringilla luctus. Etiam a purus massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nam non felis ultrices, dignissim metus mattis, interdum urna. |
|
| 678 | 678 | |
| 679 | 679 | Vivamus at ipsum consectetur, pellentesque lectus vitae, vulputate leo. Cras tincidunt suscipit vulputate. Aenean pretium diam dui, efficitur porttitor lorem cursus in. Aenean convallis, mauris quis fermentum vehicula, purus libero fringilla lorem, placerat ultricies magna velit sit amet neque. Aenean tempor ut eros et volutpat. Proin ac lacus et odio volutpat aliquet. Proin at erat enim. Vivamus venenatis dictum magna, id dignissim lacus molestie non. Nullam ornare placerat metus, quis aliquam orci tincidunt at. Sed semper imperdiet arcu, eu convallis eros fringilla vel. |
| 680 | 680 | |
@@ -684,93 +684,93 @@ discard block |
||
| 684 | 684 | |
| 685 | 685 | Mauris ac elit vitae massa dignissim posuere. Sed blandit nibh ut elementum ullamcorper. Nunc facilisis elit eget lorem bibendum, eu fermentum neque ultrices. Etiam vestibulum gravida sollicitudin. Nullam velit quam, luctus vel suscipit id, ullamcorper sit amet ipsum. Donec a elit ac lorem porttitor gravida. Sed non dui sed lacus vulputate varius. Nullam in tincidunt odio, ac pharetra mauris. Integer ac volutpat quam. Mauris fermentum facilisis porttitor. Nunc ornare vel erat volutpat consectetur. Phasellus ut lacinia ante. Vestibulum massa orci, tincidunt sit amet urna in, maximus mollis ligula.', |
| 686 | 686 | |
| 687 | - "post_images" => $image_array, |
|
| 688 | - "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 689 | - "post_tags" => array('Tags', 'Sample Tags'), |
|
| 690 | - "geodir_video" => '', |
|
| 691 | - "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 692 | - "geodir_contact" => '(222) 777-1111', |
|
| 693 | - "geodir_email" => '[email protected]', |
|
| 694 | - "geodir_website" => 'http://example.com/', |
|
| 695 | - "geodir_twitter" => 'http://example.com/', |
|
| 696 | - "geodir_facebook" => 'http://example.com/', |
|
| 697 | - "geodir_price" => '80000', |
|
| 698 | - "geodir_property_status" => 'For Sale', |
|
| 699 | - 'geodir_property_furnishing' => '', |
|
| 700 | - 'geodir_property_type' => 'Land', |
|
| 701 | - 'geodir_property_bedrooms' => '', |
|
| 702 | - 'geodir_property_bathrooms' => '', |
|
| 703 | - 'geodir_property_area' => '250000', |
|
| 704 | - 'geodir_property_features' => '', |
|
| 705 | - "post_dummy" => '1' |
|
| 706 | - ); |
|
| 707 | - |
|
| 708 | - break; |
|
| 687 | + "post_images" => $image_array, |
|
| 688 | + "post_category" => array($post_type.'category' => array($category_array[3])), |
|
| 689 | + "post_tags" => array('Tags', 'Sample Tags'), |
|
| 690 | + "geodir_video" => '', |
|
| 691 | + "geodir_timing" => 'Viewing Sunday 10 am to 9 pm', |
|
| 692 | + "geodir_contact" => '(222) 777-1111', |
|
| 693 | + "geodir_email" => '[email protected]', |
|
| 694 | + "geodir_website" => 'http://example.com/', |
|
| 695 | + "geodir_twitter" => 'http://example.com/', |
|
| 696 | + "geodir_facebook" => 'http://example.com/', |
|
| 697 | + "geodir_price" => '80000', |
|
| 698 | + "geodir_property_status" => 'For Sale', |
|
| 699 | + 'geodir_property_furnishing' => '', |
|
| 700 | + 'geodir_property_type' => 'Land', |
|
| 701 | + 'geodir_property_bedrooms' => '', |
|
| 702 | + 'geodir_property_bathrooms' => '', |
|
| 703 | + 'geodir_property_area' => '250000', |
|
| 704 | + 'geodir_property_features' => '', |
|
| 705 | + "post_dummy" => '1' |
|
| 706 | + ); |
|
| 707 | + |
|
| 708 | + break; |
|
| 709 | 709 | |
| 710 | 710 | } // end of switch |
| 711 | 711 | |
| 712 | 712 | foreach ($post_info as $post_info) { |
| 713 | - $default_location = geodir_get_default_location(); |
|
| 714 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 715 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 716 | - else |
|
| 717 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 713 | + $default_location = geodir_get_default_location(); |
|
| 714 | + if ($city_bound_lat1 > $city_bound_lat2) |
|
| 715 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 716 | + else |
|
| 717 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 718 | 718 | |
| 719 | 719 | |
| 720 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 721 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 722 | - else |
|
| 723 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 720 | + if ($city_bound_lng1 > $city_bound_lng2) |
|
| 721 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 722 | + else |
|
| 723 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 724 | 724 | |
| 725 | - $load_map = get_option('geodir_load_map'); |
|
| 725 | + $load_map = get_option('geodir_load_map'); |
|
| 726 | 726 | |
| 727 | - if ($load_map == 'osm') { |
|
| 728 | - $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 729 | - } else { |
|
| 730 | - $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 731 | - } |
|
| 732 | - |
|
| 733 | - $postal_code = ''; |
|
| 734 | - if (!empty($post_address)) { |
|
| 735 | - if ($load_map == 'osm') { |
|
| 736 | - $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 737 | - $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 738 | - } else { |
|
| 739 | - $addresses = array(); |
|
| 740 | - $addresses_default = array(); |
|
| 727 | + if ($load_map == 'osm') { |
|
| 728 | + $post_address = geodir_get_osm_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 729 | + } else { |
|
| 730 | + $post_address = geodir_get_address_by_lat_lan($dummy_post_latitude, $dummy_post_longitude); |
|
| 731 | + } |
|
| 732 | + |
|
| 733 | + $postal_code = ''; |
|
| 734 | + if (!empty($post_address)) { |
|
| 735 | + if ($load_map == 'osm') { |
|
| 736 | + $address = !empty($post_address->formatted_address) ? $post_address->formatted_address : ''; |
|
| 737 | + $postal_code = !empty($post_address->address->postcode) ? $post_address->address->postcode : ''; |
|
| 738 | + } else { |
|
| 739 | + $addresses = array(); |
|
| 740 | + $addresses_default = array(); |
|
| 741 | 741 | |
| 742 | - foreach ($post_address as $add_key => $add_value) { |
|
| 743 | - if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 744 | - $addresses_default[] = $add_value->long_name; |
|
| 745 | - } |
|
| 746 | - if ($add_value->types[0] == 'postal_code') { |
|
| 747 | - $postal_code = $add_value->long_name; |
|
| 748 | - } |
|
| 749 | - if ($add_value->types[0] == 'street_number') { |
|
| 750 | - $addresses[] = $add_value->long_name; |
|
| 751 | - } |
|
| 752 | - if ($add_value->types[0] == 'route') { |
|
| 753 | - $addresses[] = $add_value->long_name; |
|
| 754 | - } |
|
| 755 | - if ($add_value->types[0] == 'neighborhood') { |
|
| 756 | - $addresses[] = $add_value->long_name; |
|
| 757 | - } |
|
| 758 | - if ($add_value->types[0] == 'sublocality') { |
|
| 759 | - $addresses[] = $add_value->long_name; |
|
| 760 | - } |
|
| 761 | - } |
|
| 762 | - $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 763 | - } |
|
| 764 | - |
|
| 765 | - $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 766 | - $post_info['post_city'] = $default_location->city; |
|
| 767 | - $post_info['post_region'] = $default_location->region; |
|
| 768 | - $post_info['post_country'] = $default_location->country; |
|
| 769 | - $post_info['post_zip'] = $postal_code; |
|
| 770 | - $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 771 | - $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 772 | - } |
|
| 742 | + foreach ($post_address as $add_key => $add_value) { |
|
| 743 | + if ($add_key < 2 && !empty($add_value->long_name)) { |
|
| 744 | + $addresses_default[] = $add_value->long_name; |
|
| 745 | + } |
|
| 746 | + if ($add_value->types[0] == 'postal_code') { |
|
| 747 | + $postal_code = $add_value->long_name; |
|
| 748 | + } |
|
| 749 | + if ($add_value->types[0] == 'street_number') { |
|
| 750 | + $addresses[] = $add_value->long_name; |
|
| 751 | + } |
|
| 752 | + if ($add_value->types[0] == 'route') { |
|
| 753 | + $addresses[] = $add_value->long_name; |
|
| 754 | + } |
|
| 755 | + if ($add_value->types[0] == 'neighborhood') { |
|
| 756 | + $addresses[] = $add_value->long_name; |
|
| 757 | + } |
|
| 758 | + if ($add_value->types[0] == 'sublocality') { |
|
| 759 | + $addresses[] = $add_value->long_name; |
|
| 760 | + } |
|
| 761 | + } |
|
| 762 | + $address = !empty($addresses) ? implode(', ', $addresses) : (!empty($addresses_default) ? implode(', ', $addresses_default) : ''); |
|
| 763 | + } |
|
| 764 | + |
|
| 765 | + $post_info['post_address'] = !empty($address) ? $address : $default_location->city; |
|
| 766 | + $post_info['post_city'] = $default_location->city; |
|
| 767 | + $post_info['post_region'] = $default_location->region; |
|
| 768 | + $post_info['post_country'] = $default_location->country; |
|
| 769 | + $post_info['post_zip'] = $postal_code; |
|
| 770 | + $post_info['post_latitude'] = $dummy_post_latitude; |
|
| 771 | + $post_info['post_longitude'] = $dummy_post_longitude; |
|
| 772 | + } |
|
| 773 | 773 | |
| 774 | - geodir_save_listing($post_info, true); |
|
| 775 | - echo 1; |
|
| 774 | + geodir_save_listing($post_info, true); |
|
| 775 | + echo 1; |
|
| 776 | 776 | } |
@@ -6,9 +6,9 @@ discard block |
||
| 6 | 6 | * @package GeoDirectory |
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | -function geodir_property_sale_custom_fields($post_type='gd_place',$package_id=''){ |
|
| 9 | +function geodir_property_sale_custom_fields($post_type = 'gd_place', $package_id = '') { |
|
| 10 | 10 | $fields = array(); |
| 11 | - $package = ($package_id=='') ? '' : array($package_id); |
|
| 11 | + $package = ($package_id == '') ? '' : array($package_id); |
|
| 12 | 12 | |
| 13 | 13 | // Salary |
| 14 | 14 | $fields[] = array('listing_type' => $post_type, |
@@ -48,15 +48,15 @@ discard block |
||
| 48 | 48 | 'field_type' => 'select', |
| 49 | 49 | 'data_type' => 'VARCHAR', |
| 50 | 50 | 'admin_title' => __('Job Type', 'geodirectory'), |
| 51 | - 'site_title' => __('Job Type','geodirectory'), |
|
| 52 | - 'admin_desc' => __('Select the type of job.','geodirectory'), |
|
| 51 | + 'site_title' => __('Job Type', 'geodirectory'), |
|
| 52 | + 'admin_desc' => __('Select the type of job.', 'geodirectory'), |
|
| 53 | 53 | 'htmlvar_name' => 'job_type', |
| 54 | 54 | 'is_active' => true, |
| 55 | 55 | 'for_admin_use' => false, |
| 56 | 56 | 'default_value' => '', |
| 57 | 57 | 'show_in' => '[detail],[listing]', |
| 58 | 58 | 'is_required' => true, |
| 59 | - 'option_values' => __('Select Type/,Freelance,Full Time,Internship,Part Time,Temporary,Other','geodirectory'), |
|
| 59 | + 'option_values' => __('Select Type/,Freelance,Full Time,Internship,Part Time,Temporary,Other', 'geodirectory'), |
|
| 60 | 60 | 'validation_pattern' => '', |
| 61 | 61 | 'validation_msg' => '', |
| 62 | 62 | 'required_msg' => '', |
@@ -70,16 +70,16 @@ discard block |
||
| 70 | 70 | $fields[] = array('listing_type' => $post_type, |
| 71 | 71 | 'field_type' => 'select', |
| 72 | 72 | 'data_type' => 'VARCHAR', |
| 73 | - 'admin_title' => __('Job Sector','geodirectory'), |
|
| 74 | - 'site_title' => __('Job Sector','geodirectory'), |
|
| 75 | - 'admin_desc' => __('Select the job sector.','geodirectory'), |
|
| 73 | + 'admin_title' => __('Job Sector', 'geodirectory'), |
|
| 74 | + 'site_title' => __('Job Sector', 'geodirectory'), |
|
| 75 | + 'admin_desc' => __('Select the job sector.', 'geodirectory'), |
|
| 76 | 76 | 'htmlvar_name' => 'job_sector', |
| 77 | 77 | 'is_active' => true, |
| 78 | 78 | 'for_admin_use' => false, |
| 79 | 79 | 'default_value' => '', |
| 80 | 80 | 'show_in' => '[detail]', |
| 81 | 81 | 'is_required' => true, |
| 82 | - 'option_values' => __('Select Sector/,Private Sector,Public Sector,Agencies','geodirectory'), |
|
| 82 | + 'option_values' => __('Select Sector/,Private Sector,Public Sector,Agencies', 'geodirectory'), |
|
| 83 | 83 | 'validation_pattern' => '', |
| 84 | 84 | 'validation_msg' => '', |
| 85 | 85 | 'required_msg' => '', |
@@ -102,7 +102,7 @@ discard block |
||
| 102 | 102 | 'default_value' => '', |
| 103 | 103 | 'show_in' => '[detail],[listing]', |
| 104 | 104 | 'is_required' => true, |
| 105 | - 'option_values' => __('Select Experience/,No Experience Required,1 Year,2 Years,3 Years,4 Years,5 Years,6 Years,7 Years,8 Years,9 Years,10+ Years','geodirectory'), |
|
| 105 | + 'option_values' => __('Select Experience/,No Experience Required,1 Year,2 Years,3 Years,4 Years,5 Years,6 Years,7 Years,8 Years,9 Years,10+ Years', 'geodirectory'), |
|
| 106 | 106 | 'validation_pattern' => '', |
| 107 | 107 | 'validation_msg' => '', |
| 108 | 108 | 'required_msg' => '', |
@@ -235,24 +235,24 @@ discard block |
||
| 235 | 235 | return $fields; |
| 236 | 236 | } |
| 237 | 237 | |
| 238 | -global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2,$wpdb, $current_user,$dummy_post_index; |
|
| 238 | +global $city_bound_lat1, $city_bound_lng1, $city_bound_lat2, $city_bound_lng2, $wpdb, $current_user, $dummy_post_index; |
|
| 239 | 239 | $post_info = array(); |
| 240 | 240 | $image_array = array(); |
| 241 | 241 | $post_meta = array(); |
| 242 | 242 | $category_array = array('Apartments', 'Houses', 'Commercial', 'Land'); |
| 243 | 243 | |
| 244 | -if($dummy_post_index==1){ |
|
| 244 | +if ($dummy_post_index == 1) { |
|
| 245 | 245 | // add the dummy categories |
| 246 | - geodir_dummy_data_taxonomies($post_type,$category_array ); |
|
| 246 | + geodir_dummy_data_taxonomies($post_type, $category_array); |
|
| 247 | 247 | |
| 248 | 248 | // add the dummy custom fields |
| 249 | 249 | $fields = geodir_property_sale_custom_fields($post_type); |
| 250 | 250 | geodir_create_dummy_fields($fields); |
| 251 | - update_option($post_type.'_dummy_data_type','property_sale'); |
|
| 251 | + update_option($post_type.'_dummy_data_type', 'property_sale'); |
|
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | if (geodir_dummy_folder_exists()) |
| 255 | - $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
|
| 255 | + $dummy_image_url = geodir_plugin_url()."/geodirectory-admin/dummy"; |
|
| 256 | 256 | else |
| 257 | 257 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
| 258 | 258 | |
@@ -17,10 +17,11 @@ discard block |
||
| 17 | 17 | update_option($post_type.'_dummy_data_type','standard_places'); |
| 18 | 18 | } |
| 19 | 19 | |
| 20 | -if (geodir_dummy_folder_exists()) |
|
| 20 | +if (geodir_dummy_folder_exists()) { |
|
| 21 | 21 | $dummy_image_url = geodir_plugin_url() . "/geodirectory-admin/dummy"; |
| 22 | -else |
|
| 22 | +} else { |
|
| 23 | 23 | $dummy_image_url = 'http://www.wpgeodirectory.com/dummy'; |
| 24 | +} |
|
| 24 | 25 | |
| 25 | 26 | $dummy_image_url = apply_filters('place_dummy_image_url', $dummy_image_url); |
| 26 | 27 | |
@@ -1815,16 +1816,18 @@ discard block |
||
| 1815 | 1816 | echo '###4.1'; |
| 1816 | 1817 | foreach ($post_info as $post_info) {echo '###5'; |
| 1817 | 1818 | $default_location = geodir_get_default_location(); |
| 1818 | - if ($city_bound_lat1 > $city_bound_lat2) |
|
| 1819 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1820 | - else |
|
| 1821 | - $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1819 | + if ($city_bound_lat1 > $city_bound_lat2) { |
|
| 1820 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat1, $city_bound_lat2), geodir_random_float($city_bound_lat2, $city_bound_lat1)); |
|
| 1821 | + } else { |
|
| 1822 | + $dummy_post_latitude = geodir_random_float(geodir_random_float($city_bound_lat2, $city_bound_lat1), geodir_random_float($city_bound_lat1, $city_bound_lat2)); |
|
| 1823 | + } |
|
| 1822 | 1824 | |
| 1823 | 1825 | |
| 1824 | - if ($city_bound_lng1 > $city_bound_lng2) |
|
| 1825 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1826 | - else |
|
| 1827 | - $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1826 | + if ($city_bound_lng1 > $city_bound_lng2) { |
|
| 1827 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng1, $city_bound_lng2), geodir_random_float($city_bound_lng2, $city_bound_lng1)); |
|
| 1828 | + } else { |
|
| 1829 | + $dummy_post_longitude = geodir_random_float(geodir_random_float($city_bound_lng2, $city_bound_lng1), geodir_random_float($city_bound_lng1, $city_bound_lng2)); |
|
| 1830 | + } |
|
| 1828 | 1831 | |
| 1829 | 1832 | $load_map = get_option('geodir_load_map'); |
| 1830 | 1833 | |