@@ -207,6 +207,7 @@ |
||
207 | 207 | |
208 | 208 | /** |
209 | 209 | * format the array |
210 | + * @param string $key |
|
210 | 211 | */ |
211 | 212 | public function format_array($array,$key){ |
212 | 213 | $new_array = array(); |
@@ -51,7 +51,7 @@ |
||
51 | 51 | */ |
52 | 52 | public function display_page() { |
53 | 53 | global $post; |
54 | - ?> |
|
54 | + ?> |
|
55 | 55 | <div class="wrap"> |
56 | 56 | |
57 | 57 | <h3><span class="dashicons dashicons-admin-multisite"></span> <?php _e('Connect your Accommodation','wetu-importer'); ?></h3> |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | foreach($accommodation as $row_key => $row){ |
94 | 94 | if(stripos(ltrim(rtrim($row->name)), $post->post_title) !== false){ |
95 | 95 | $identifier = $row->id; |
96 | - }else{ |
|
96 | + } else{ |
|
97 | 97 | continue; |
98 | 98 | } |
99 | 99 | } |
@@ -196,7 +196,7 @@ discard block |
||
196 | 196 | //remove the extra accommodation |
197 | 197 | if(null !== $current_accommodation && !empty($current_accommodation)){ |
198 | 198 | $all_accommodation = array_diff($this->format_array($all_accommodation,'ID'), $this->format_array($current_accommodation,'post_id')); |
199 | - }elseif(null !== $current_accommodation && empty($current_accommodation)){ |
|
199 | + } elseif(null !== $current_accommodation && empty($current_accommodation)){ |
|
200 | 200 | $all_accommodation = $this->format_array($current_accommodation,'post_id'); |
201 | 201 | } |
202 | 202 |
@@ -35,15 +35,15 @@ discard block |
||
35 | 35 | * @access private |
36 | 36 | */ |
37 | 37 | public function __construct() { |
38 | - $temp_options = get_option('_lsx-to_settings',false); |
|
39 | - if(false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])){ |
|
38 | + $temp_options = get_option('_lsx-to_settings', false); |
|
39 | + if (false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])) { |
|
40 | 40 | $this->options = $temp_options[$this->plugin_slug]; |
41 | 41 | } |
42 | 42 | $this->url = 'http://wetu.com/API/Pins/'.$this->options['api_key'].'/List'; |
43 | 43 | |
44 | - add_action( 'lsx_tour_importer_admin_tab_'.$this->tab_slug, array($this,'display_page') ); |
|
45 | - add_action('wp_ajax_lsx_import_connect_accommodation',array($this,'process_connection')); |
|
46 | - add_action('wp_ajax_nopriv_lsx_import_connect_accommodation',array($this,'process_connection')); |
|
44 | + add_action('lsx_tour_importer_admin_tab_'.$this->tab_slug, array($this, 'display_page')); |
|
45 | + add_action('wp_ajax_lsx_import_connect_accommodation', array($this, 'process_connection')); |
|
46 | + add_action('wp_ajax_nopriv_lsx_import_connect_accommodation', array($this, 'process_connection')); |
|
47 | 47 | } |
48 | 48 | |
49 | 49 | /** |
@@ -54,30 +54,30 @@ discard block |
||
54 | 54 | ?> |
55 | 55 | <div class="wrap"> |
56 | 56 | |
57 | - <h3><span class="dashicons dashicons-admin-multisite"></span> <?php _e('Connect your Accommodation','wetu-importer'); ?></h3> |
|
57 | + <h3><span class="dashicons dashicons-admin-multisite"></span> <?php _e('Connect your Accommodation', 'wetu-importer'); ?></h3> |
|
58 | 58 | |
59 | 59 | <form method="get" action="" id="connect-accommodation-filter"> |
60 | 60 | <input type="hidden" name="post_type" class="post_type" value="<?php echo $this->tab_slug; ?>" /> |
61 | 61 | |
62 | - <p><?php _e('Below is a list of your accommodation that does not contain a WETU ID, but its Title matches a name in the WETU DB. Connecting it will all you to pull through information from WETU.','wetu-importer'); ?></p> |
|
62 | + <p><?php _e('Below is a list of your accommodation that does not contain a WETU ID, but its Title matches a name in the WETU DB. Connecting it will all you to pull through information from WETU.', 'wetu-importer'); ?></p> |
|
63 | 63 | |
64 | 64 | <div class="ajax-loader-small" style="display:none;width:100%;text-align:center;"> |
65 | - <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif';?>" /> |
|
65 | + <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif'; ?>" /> |
|
66 | 66 | </div> |
67 | 67 | |
68 | 68 | <?php |
69 | 69 | $loose_accommodation = $this->find_current_accommodation(); |
70 | 70 | ?> |
71 | - <p><input class="button button-primary connect" type="button" value="<?php _e('Connect','wetu-importer'); ?>" /></p> |
|
71 | + <p><input class="button button-primary connect" type="button" value="<?php _e('Connect', 'wetu-importer'); ?>" /></p> |
|
72 | 72 | <table class="wp-list-table widefat fixed posts"> |
73 | 73 | <?php $this->table_header(); ?> |
74 | 74 | |
75 | 75 | <tbody> |
76 | - <?php if(false !== $loose_accommodation){ |
|
76 | + <?php if (false !== $loose_accommodation) { |
|
77 | 77 | |
78 | 78 | $loose_args = array( |
79 | 79 | 'post_type'=>'accommodation', |
80 | - 'post_status' => array('publish','pending'), |
|
80 | + 'post_status' => array('publish', 'pending'), |
|
81 | 81 | 'nopagin' => true, |
82 | 82 | 'post__in' => $loose_accommodation |
83 | 83 | ); |
@@ -85,14 +85,14 @@ discard block |
||
85 | 85 | $accommodation = get_transient('lsx_ti_accommodation'); |
86 | 86 | $identifier = ''; |
87 | 87 | |
88 | - if($loose_accommodation_query->have_posts() && false !== $accommodation){ |
|
89 | - while($loose_accommodation_query->have_posts()){ |
|
88 | + if ($loose_accommodation_query->have_posts() && false !== $accommodation) { |
|
89 | + while ($loose_accommodation_query->have_posts()) { |
|
90 | 90 | $loose_accommodation_query->the_post(); |
91 | 91 | |
92 | - foreach($accommodation as $row_key => $row){ |
|
93 | - if(stripos(ltrim(rtrim($row->name)), $post->post_title) !== false){ |
|
92 | + foreach ($accommodation as $row_key => $row) { |
|
93 | + if (stripos(ltrim(rtrim($row->name)), $post->post_title) !== false) { |
|
94 | 94 | $identifier = $row->id; |
95 | - }else{ |
|
95 | + }else { |
|
96 | 96 | continue; |
97 | 97 | } |
98 | 98 | } |
@@ -118,7 +118,7 @@ discard block |
||
118 | 118 | |
119 | 119 | </table> |
120 | 120 | |
121 | - <p><input class="button button-primary connect" type="button" value="<?php _e('Connect','wetu-importer'); ?>" /></p> |
|
121 | + <p><input class="button button-primary connect" type="button" value="<?php _e('Connect', 'wetu-importer'); ?>" /></p> |
|
122 | 122 | |
123 | 123 | </form> |
124 | 124 | |
@@ -179,7 +179,7 @@ discard block |
||
179 | 179 | FROM {$wpdb->posts} |
180 | 180 | WHERE post_type = 'accommodation' |
181 | 181 | LIMIT 0,500 |
182 | - ",ARRAY_A); |
|
182 | + ", ARRAY_A); |
|
183 | 183 | |
184 | 184 | $current_accommodation = $wpdb->get_results(" |
185 | 185 | SELECT key1.post_id |
@@ -192,14 +192,14 @@ discard block |
||
192 | 192 | AND key2.post_type = 'accommodation' |
193 | 193 | |
194 | 194 | LIMIT 0,500 |
195 | - ",ARRAY_A); |
|
195 | + ", ARRAY_A); |
|
196 | 196 | |
197 | - if(null !== $all_accommodation && !empty($all_accommodation)){ |
|
197 | + if (null !== $all_accommodation && !empty($all_accommodation)) { |
|
198 | 198 | //remove the extra accommodation |
199 | - if(null !== $current_accommodation && !empty($current_accommodation)){ |
|
200 | - $all_accommodation = array_diff($this->format_array($all_accommodation,'ID'), $this->format_array($current_accommodation,'post_id')); |
|
201 | - }elseif(null !== $current_accommodation && empty($current_accommodation)){ |
|
202 | - $all_accommodation = $this->format_array($current_accommodation,'post_id'); |
|
199 | + if (null !== $current_accommodation && !empty($current_accommodation)) { |
|
200 | + $all_accommodation = array_diff($this->format_array($all_accommodation, 'ID'), $this->format_array($current_accommodation, 'post_id')); |
|
201 | + }elseif (null !== $current_accommodation && empty($current_accommodation)) { |
|
202 | + $all_accommodation = $this->format_array($current_accommodation, 'post_id'); |
|
203 | 203 | } |
204 | 204 | |
205 | 205 | $return = $all_accommodation; |
@@ -210,9 +210,9 @@ discard block |
||
210 | 210 | /** |
211 | 211 | * format the array |
212 | 212 | */ |
213 | - public function format_array($array,$key){ |
|
213 | + public function format_array($array, $key) { |
|
214 | 214 | $new_array = array(); |
215 | - foreach($array as $value){ |
|
215 | + foreach ($array as $value) { |
|
216 | 216 | $new_array[] = $value[$key]; |
217 | 217 | } |
218 | 218 | return $new_array; |
@@ -224,7 +224,7 @@ discard block |
||
224 | 224 | public function process_connection() { |
225 | 225 | $return = false; |
226 | 226 | |
227 | - if(isset($_POST['action']) && $_POST['action'] === 'lsx_import_connect_accommodation' && isset($_POST['type']) && $_POST['type'] === $this->tab_slug && isset($_POST['post_id']) && isset($_POST['wetu_id'])){ |
|
227 | + if (isset($_POST['action']) && $_POST['action'] === 'lsx_import_connect_accommodation' && isset($_POST['type']) && $_POST['type'] === $this->tab_slug && isset($_POST['post_id']) && isset($_POST['wetu_id'])) { |
|
228 | 228 | |
229 | 229 | $post_id = false; |
230 | 230 | $matching_id = false; |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | $post_id = $_POST['post_id']; |
233 | 233 | $matching_id = $_POST['wetu_id']; |
234 | 234 | |
235 | - add_post_meta($post_id,'lsx_wetu_id',$matching_id); |
|
235 | + add_post_meta($post_id, 'lsx_wetu_id', $matching_id); |
|
236 | 236 | $return = '<li class="post-'.$post_id.'"><span class="dashicons dashicons-yes"></span> <a target="_blank" href="'.get_permalink($post_id).'">'.get_the_title($post_id).'</a></li>'; |
237 | 237 | } |
238 | 238 | print_r($return); |
@@ -222,6 +222,9 @@ |
||
222 | 222 | } |
223 | 223 | } |
224 | 224 | |
225 | + /** |
|
226 | + * @param string $url |
|
227 | + */ |
|
225 | 228 | public function attach_external_image2( $url = null, $post_data = array() ) { |
226 | 229 | |
227 | 230 | if ( !$url ) { return new WP_Error('missing', "Need a valid URL"); } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * Display the importer administration screen |
38 | 38 | */ |
39 | 39 | public function display_page() { |
40 | - ?> |
|
40 | + ?> |
|
41 | 41 | <div class="wrap"> |
42 | 42 | |
43 | 43 | <h2><?php _e('Download new banners straight from WETU','wetu-importer'); ?></h2> |
@@ -211,14 +211,14 @@ discard block |
||
211 | 211 | $base = rawurlencode($base); |
212 | 212 | $type = get_post_mime_type($post_id); |
213 | 213 | switch ($type) { |
214 | - case 'image/jpeg': |
|
215 | - return $base . ".jpg"; break; |
|
216 | - case 'image/png': |
|
217 | - return $base . ".png"; break; |
|
218 | - case 'image/gif': |
|
219 | - return $base . ".gif"; break; |
|
220 | - default: |
|
221 | - return false; |
|
214 | + case 'image/jpeg': |
|
215 | + return $base . ".jpg"; break; |
|
216 | + case 'image/png': |
|
217 | + return $base . ".png"; break; |
|
218 | + case 'image/gif': |
|
219 | + return $base . ".gif"; break; |
|
220 | + default: |
|
221 | + return false; |
|
222 | 222 | } |
223 | 223 | } |
224 | 224 |
@@ -186,11 +186,11 @@ discard block |
||
186 | 186 | delete_post_meta($_POST['post_id'],'image_group'); |
187 | 187 | add_post_meta($_POST['post_id'],'image_group',$new_banner_array,true); |
188 | 188 | echo true; |
189 | - }else{ |
|
189 | + } else{ |
|
190 | 190 | echo false; |
191 | 191 | } |
192 | 192 | |
193 | - }else{ |
|
193 | + } else{ |
|
194 | 194 | echo false; |
195 | 195 | } |
196 | 196 | die(); |
@@ -250,8 +250,7 @@ discard block |
||
250 | 250 | if ( !empty( $filename) && " " != $filename ) |
251 | 251 | { |
252 | 252 | $file_array['name'] = $filename . "." . $url_type['ext']; // user given filename for title, add original URL extension |
253 | - } |
|
254 | - else |
|
253 | + } else |
|
255 | 254 | { |
256 | 255 | $file_array['name'] = $url_filename; // just use original URL filename |
257 | 256 | } |
@@ -27,8 +27,8 @@ discard block |
||
27 | 27 | */ |
28 | 28 | public function __construct() { |
29 | 29 | |
30 | - add_action('wp_ajax_lsx_import_sync_banners',array($this,'sync_new_banner')); |
|
31 | - add_action('wp_ajax_nopriv_lsx_import_sync_banners',array($this,'sync_new_banner')); |
|
30 | + add_action('wp_ajax_lsx_import_sync_banners', array($this, 'sync_new_banner')); |
|
31 | + add_action('wp_ajax_nopriv_lsx_import_sync_banners', array($this, 'sync_new_banner')); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -38,13 +38,13 @@ discard block |
||
38 | 38 | ?> |
39 | 39 | <div class="wrap"> |
40 | 40 | |
41 | - <h2><?php _e('Download new banners straight from WETU','wetu-importer'); ?></h2> |
|
41 | + <h2><?php _e('Download new banners straight from WETU', 'wetu-importer'); ?></h2> |
|
42 | 42 | |
43 | 43 | <form method="get" action="" id="banners-filter"> |
44 | 44 | <input type="hidden" name="post_type" class="post_type" value="<?php echo $this->tab_slug; ?>" /> |
45 | 45 | |
46 | 46 | <div class="ajax-loader-small" style="display:none;width:100%;text-align:center;"> |
47 | - <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif';?>" /> |
|
47 | + <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif'; ?>" /> |
|
48 | 48 | </div> |
49 | 49 | |
50 | 50 | <table class="wp-list-table widefat fixed posts"> |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | <?php |
63 | 63 | $accommodation_args = array( |
64 | 64 | 'post_type' => 'accommodation', |
65 | - 'post_status' => array('publish','pending','draft','future','private'), |
|
65 | + 'post_status' => array('publish', 'pending', 'draft', 'future', 'private'), |
|
66 | 66 | 'nopagin' => 'true', |
67 | 67 | 'posts_per_page' => '1000', |
68 | 68 | 'meta_query' => array( |
@@ -87,8 +87,8 @@ discard block |
||
87 | 87 | |
88 | 88 | <tbody id="the-list"> |
89 | 89 | <?php |
90 | - if($accommodation->have_posts()){ |
|
91 | - while($accommodation->have_posts()) { |
|
90 | + if ($accommodation->have_posts()) { |
|
91 | + while ($accommodation->have_posts()) { |
|
92 | 92 | $accommodation->the_post(); |
93 | 93 | ?> |
94 | 94 | <tr class="post-<?php the_ID(); ?> type-tour status-none" id="post-<?php the_ID(); ?>"> |
@@ -97,22 +97,22 @@ discard block |
||
97 | 97 | $min_width = '1920'; |
98 | 98 | $min_height = '500'; |
99 | 99 | |
100 | - $img_group = get_post_meta(get_the_ID(),'image_group',true); |
|
100 | + $img_group = get_post_meta(get_the_ID(), 'image_group', true); |
|
101 | 101 | |
102 | 102 | $thumbnails_html = false; |
103 | 103 | |
104 | - if(false !== $img_group){ |
|
105 | - foreach($img_group['banner_image'] as $banner_image){ |
|
106 | - $large = wp_get_attachment_image_src($banner_image,'full'); |
|
104 | + if (false !== $img_group) { |
|
105 | + foreach ($img_group['banner_image'] as $banner_image) { |
|
106 | + $large = wp_get_attachment_image_src($banner_image, 'full'); |
|
107 | 107 | $real_width = $large[1]; |
108 | 108 | $real_height = $large[2]; |
109 | 109 | |
110 | 110 | $status = 'optimized'; |
111 | - if($real_width < intval($real_width)){ |
|
111 | + if ($real_width < intval($real_width)) { |
|
112 | 112 | $status = 'width not enough.'; |
113 | 113 | } |
114 | 114 | |
115 | - $thumbnail = wp_get_attachment_image_src($banner_image,'thumbnail'); |
|
115 | + $thumbnail = wp_get_attachment_image_src($banner_image, 'thumbnail'); |
|
116 | 116 | $thumbnails_html[] = ' |
117 | 117 | <div style="display:block;float:left;"> |
118 | 118 | <img src="'.$thumbnail[0].'" /> |
@@ -126,10 +126,10 @@ discard block |
||
126 | 126 | <input type="checkbox" data-identifier="<?php the_ID(); ?>" value="<?php the_ID(); ?>" name="post[]" id="cb-select-<?php the_ID(); ?>"> |
127 | 127 | </th> |
128 | 128 | |
129 | - <td class="post-title page-title column-title"><?php echo '<a href="'.admin_url('/post.php?post='.get_the_ID().'&action=edit').'" target="_blank">';the_title(); echo '</a>'; ?></td> |
|
129 | + <td class="post-title page-title column-title"><?php echo '<a href="'.admin_url('/post.php?post='.get_the_ID().'&action=edit').'" target="_blank">'; the_title(); echo '</a>'; ?></td> |
|
130 | 130 | |
131 | 131 | <td colspan="2" class="thumbnails column-thumbnails"> |
132 | - <?php if(false !== $thumbnails_html){ echo implode('',$thumbnails_html); } else { echo '<p>There was an error retrieving your images.</p>'; } ?> |
|
132 | + <?php if (false !== $thumbnails_html) { echo implode('', $thumbnails_html); }else { echo '<p>There was an error retrieving your images.</p>'; } ?> |
|
133 | 133 | </td> |
134 | 134 | </tr> |
135 | 135 | <?php } |
@@ -150,7 +150,7 @@ discard block |
||
150 | 150 | |
151 | 151 | </table> |
152 | 152 | |
153 | - <p><input class="button button-primary download" type="button" value="<?php _e('Download new Banners','wetu-importer'); ?>" /> |
|
153 | + <p><input class="button button-primary download" type="button" value="<?php _e('Download new Banners', 'wetu-importer'); ?>" /> |
|
154 | 154 | </p> |
155 | 155 | </form> |
156 | 156 | </div> |
@@ -162,33 +162,33 @@ discard block |
||
162 | 162 | */ |
163 | 163 | public function sync_new_banner() { |
164 | 164 | |
165 | - if(isset($_POST['action']) && 'lsx_import_sync_banners' === $_POST['action'] && isset($_POST['post_id'])){ |
|
165 | + if (isset($_POST['action']) && 'lsx_import_sync_banners' === $_POST['action'] && isset($_POST['post_id'])) { |
|
166 | 166 | |
167 | - $banners = get_post_meta($_POST['post_id'],'image_group',true); |
|
168 | - $this->wetu_id = get_post_meta($_POST['post_id'],'lsx_wetu_id',true); |
|
167 | + $banners = get_post_meta($_POST['post_id'], 'image_group', true); |
|
168 | + $this->wetu_id = get_post_meta($_POST['post_id'], 'lsx_wetu_id', true); |
|
169 | 169 | |
170 | 170 | $new_banner_array = false; |
171 | 171 | $array_index = 0; |
172 | 172 | |
173 | 173 | |
174 | 174 | |
175 | - foreach($banners['banner_image'] as $banner_image){ |
|
175 | + foreach ($banners['banner_image'] as $banner_image) { |
|
176 | 176 | $image_id = $this->attach_external_image2($this->format_wetu_url($banner_image)); |
177 | - if(null !== $image_id && '' !== $image_id){ |
|
177 | + if (null !== $image_id && '' !== $image_id) { |
|
178 | 178 | $new_banner_array['banner_image']['cmb-field-'.$array_index] = $image_id; |
179 | 179 | $array_index++; |
180 | 180 | } |
181 | 181 | } |
182 | 182 | |
183 | - if(false !== $new_banner_array){ |
|
184 | - delete_post_meta($_POST['post_id'],'image_group'); |
|
185 | - add_post_meta($_POST['post_id'],'image_group',$new_banner_array,true); |
|
183 | + if (false !== $new_banner_array) { |
|
184 | + delete_post_meta($_POST['post_id'], 'image_group'); |
|
185 | + add_post_meta($_POST['post_id'], 'image_group', $new_banner_array, true); |
|
186 | 186 | echo true; |
187 | - }else{ |
|
187 | + }else { |
|
188 | 188 | echo false; |
189 | 189 | } |
190 | 190 | |
191 | - }else{ |
|
191 | + }else { |
|
192 | 192 | echo false; |
193 | 193 | } |
194 | 194 | die(); |
@@ -205,28 +205,28 @@ discard block |
||
205 | 205 | * formats the filename |
206 | 206 | */ |
207 | 207 | public function format_filename($post_id) { |
208 | - $base = str_replace('_',' ',get_the_title($post_id)); |
|
208 | + $base = str_replace('_', ' ', get_the_title($post_id)); |
|
209 | 209 | $base = rawurlencode($base); |
210 | 210 | $type = get_post_mime_type($post_id); |
211 | 211 | switch ($type) { |
212 | 212 | case 'image/jpeg': |
213 | - return $base . ".jpg"; break; |
|
213 | + return $base.".jpg"; break; |
|
214 | 214 | case 'image/png': |
215 | - return $base . ".png"; break; |
|
215 | + return $base.".png"; break; |
|
216 | 216 | case 'image/gif': |
217 | - return $base . ".gif"; break; |
|
217 | + return $base.".gif"; break; |
|
218 | 218 | default: |
219 | 219 | return false; |
220 | 220 | } |
221 | 221 | } |
222 | 222 | |
223 | - public function attach_external_image2( $url = null, $post_data = array() ) { |
|
223 | + public function attach_external_image2($url = null, $post_data = array()) { |
|
224 | 224 | |
225 | - if ( !$url ) { return new WP_Error('missing', "Need a valid URL"); } |
|
225 | + if (!$url) { return new WP_Error('missing', "Need a valid URL"); } |
|
226 | 226 | |
227 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
228 | - require_once(ABSPATH . 'wp-admin/includes/media.php'); |
|
229 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
227 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
228 | + require_once(ABSPATH.'wp-admin/includes/media.php'); |
|
229 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
230 | 230 | |
231 | 231 | //var_dump($tmp); |
232 | 232 | $tmp = tempnam("/tmp", "FOO"); |
@@ -234,37 +234,37 @@ discard block |
||
234 | 234 | $image = file_get_contents($url); |
235 | 235 | print_r($image); |
236 | 236 | file_put_contents($tmp, $image); |
237 | - chmod($tmp,'777'); |
|
237 | + chmod($tmp, '777'); |
|
238 | 238 | |
239 | - preg_match('/[^\?]+\.(tif|TIFF|jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG|pdf|PDF|bmp|BMP)/', $url, $matches); // fix file filename for query strings |
|
239 | + preg_match('/[^\?]+\.(tif|TIFF|jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG|pdf|PDF|bmp|BMP)/', $url, $matches); // fix file filename for query strings |
|
240 | 240 | $url_filename = basename($matches[0]); |
241 | - $url_filename=str_replace('%20','_',$url_filename); |
|
241 | + $url_filename = str_replace('%20', '_', $url_filename); |
|
242 | 242 | // extract filename from url for title |
243 | - $url_type = wp_check_filetype($url_filename); // determine file type (ext and mime/type) |
|
243 | + $url_type = wp_check_filetype($url_filename); // determine file type (ext and mime/type) |
|
244 | 244 | |
245 | 245 | // assemble file data (should be built like $_FILES since wp_handle_sideload() will be using) |
246 | - $file_array['tmp_name'] = $tmp; // full server path to temp file |
|
246 | + $file_array['tmp_name'] = $tmp; // full server path to temp file |
|
247 | 247 | |
248 | - if ( !empty( $filename) && " " != $filename ) |
|
248 | + if (!empty($filename) && " " != $filename) |
|
249 | 249 | { |
250 | - $file_array['name'] = $filename . "." . $url_type['ext']; // user given filename for title, add original URL extension |
|
250 | + $file_array['name'] = $filename.".".$url_type['ext']; // user given filename for title, add original URL extension |
|
251 | 251 | } |
252 | 252 | else |
253 | 253 | { |
254 | - $file_array['name'] = $url_filename; // just use original URL filename |
|
254 | + $file_array['name'] = $url_filename; // just use original URL filename |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | // set additional wp_posts columns |
258 | - if ( empty( $post_data['post_title'] ) ) |
|
258 | + if (empty($post_data['post_title'])) |
|
259 | 259 | { |
260 | 260 | |
261 | - $url_filename=str_replace('%20',' ',$url_filename); |
|
261 | + $url_filename = str_replace('%20', ' ', $url_filename); |
|
262 | 262 | |
263 | - $post_data['post_title'] = basename($url_filename, "." . $url_type['ext']); // just use the original filename (no extension) |
|
263 | + $post_data['post_title'] = basename($url_filename, ".".$url_type['ext']); // just use the original filename (no extension) |
|
264 | 264 | } |
265 | 265 | |
266 | 266 | // make sure gets tied to parent |
267 | - if ( empty( $post_data['post_parent'] ) ) |
|
267 | + if (empty($post_data['post_parent'])) |
|
268 | 268 | { |
269 | 269 | $post_data['post_parent'] = $_POST['post_id']; |
270 | 270 | } |
@@ -272,12 +272,12 @@ discard block |
||
272 | 272 | // required libraries for media_handle_sideload |
273 | 273 | |
274 | 274 | // do the validation and storage stuff |
275 | - $att_id = media_handle_sideload( $file_array, $_POST['post_id'], null, $post_data ); // $post_data can override the items saved to wp_posts table, like post_mime_type, guid, post_parent, post_title, post_content, post_status |
|
275 | + $att_id = media_handle_sideload($file_array, $_POST['post_id'], null, $post_data); // $post_data can override the items saved to wp_posts table, like post_mime_type, guid, post_parent, post_title, post_content, post_status |
|
276 | 276 | |
277 | 277 | // If error storing permanently, unlink |
278 | - if ( is_wp_error($att_id) ) |
|
278 | + if (is_wp_error($att_id)) |
|
279 | 279 | { |
280 | - unlink($file_array['tmp_name']); // clean up |
|
280 | + unlink($file_array['tmp_name']); // clean up |
|
281 | 281 | return false; // output wp_error |
282 | 282 | //return $att_id; // output wp_error |
283 | 283 | } |
@@ -17,24 +17,24 @@ discard block |
||
17 | 17 | * @access private |
18 | 18 | */ |
19 | 19 | public function __construct() { |
20 | - $temp_options = get_option('_lsx-to_settings',false); |
|
21 | - if(false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])){ |
|
20 | + $temp_options = get_option('_lsx-to_settings', false); |
|
21 | + if (false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])) { |
|
22 | 22 | $this->options = $temp_options[$this->plugin_slug]; |
23 | 23 | $this->set_variables(); |
24 | 24 | } |
25 | 25 | |
26 | - add_filter( 'lsx_to_framework_settings_tabs', array( $this, 'settings_page_array') ); |
|
27 | - add_action('lsx_to_framework_api_tab_content',array( $this, 'api_settings'),10,1); |
|
26 | + add_filter('lsx_to_framework_settings_tabs', array($this, 'settings_page_array')); |
|
27 | + add_action('lsx_to_framework_api_tab_content', array($this, 'api_settings'), 10, 1); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
31 | 31 | * Returns the array of settings to the UIX Class in the lsx framework |
32 | 32 | */ |
33 | - public function settings_page_array($tabs){ |
|
33 | + public function settings_page_array($tabs) { |
|
34 | 34 | $tabs[$this->plugin_slug] = array( |
35 | - 'page_title' => __('Image Scaling','wetu-importer'), |
|
36 | - 'page_description' => __('','wetu-importer'), |
|
37 | - 'menu_title' => __('Importer','wetu-importer'), |
|
35 | + 'page_title' => __('Image Scaling', 'wetu-importer'), |
|
36 | + 'page_description' => __('', 'wetu-importer'), |
|
37 | + 'menu_title' => __('Importer', 'wetu-importer'), |
|
38 | 38 | 'template' => WETU_IMPORTER_PATH.'settings/wetu.php', |
39 | 39 | 'default' => false |
40 | 40 | ); |
@@ -44,16 +44,16 @@ discard block |
||
44 | 44 | /** |
45 | 45 | * Adds the API key to the API Tab |
46 | 46 | */ |
47 | - public function api_settings($tab='general') { |
|
48 | - if('settings' === $tab){ ?> |
|
47 | + public function api_settings($tab = 'general') { |
|
48 | + if ('settings' === $tab) { ?> |
|
49 | 49 | <tr class="form-field-wrap"> |
50 | 50 | <th class="tour-operator_table_heading" style="padding-bottom:0px;" scope="row" colspan="2"> |
51 | - <h4 style="margin-bottom:0px;"><span><?php _e( 'WETU API', 'wetu-importer' ); ?></span></h4> |
|
51 | + <h4 style="margin-bottom:0px;"><span><?php _e('WETU API', 'wetu-importer'); ?></span></h4> |
|
52 | 52 | </th> |
53 | 53 | </tr> |
54 | 54 | <tr class="form-field"> |
55 | 55 | <th scope="row"> |
56 | - <i class="dashicons-before dashicons-admin-network"></i> <label for="wetu_api_key"> <?php _e( 'Key', 'wetu-importer' ); ?></label> |
|
56 | + <i class="dashicons-before dashicons-admin-network"></i> <label for="wetu_api_key"> <?php _e('Key', 'wetu-importer'); ?></label> |
|
57 | 57 | </th> |
58 | 58 | <td> |
59 | 59 | <input type="text" {{#if wetu_api_key}} value="{{wetu_api_key}}" {{/if}} name="wetu_api_key" /> |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | </tr> |
62 | 62 | <tr class="form-field"> |
63 | 63 | <th scope="row"> |
64 | - <i class="dashicons-before dashicons-admin-users"></i> <label for="wetu_api_username"> <?php _e( 'Username', 'wetu-importer' ); ?></label> |
|
64 | + <i class="dashicons-before dashicons-admin-users"></i> <label for="wetu_api_username"> <?php _e('Username', 'wetu-importer'); ?></label> |
|
65 | 65 | </th> |
66 | 66 | <td> |
67 | 67 | <input type="text" {{#if wetu_api_username}} value="{{wetu_api_username}}" {{/if}} name="wetu_api_username" /> |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | </tr> |
70 | 70 | <tr class="form-field"> |
71 | 71 | <th scope="row"> |
72 | - <i class="dashicons-before dashicons-lock"></i> <label for="wetu_api_password"> <?php _e( 'Password', 'wetu-importer' ); ?></label> |
|
72 | + <i class="dashicons-before dashicons-lock"></i> <label for="wetu_api_password"> <?php _e('Password', 'wetu-importer'); ?></label> |
|
73 | 73 | </th> |
74 | 74 | <td> |
75 | 75 | <input type="text" {{#if wetu_api_password}} value="{{wetu_api_password}}" {{/if}} name="wetu_api_password" /> |
@@ -584,6 +584,7 @@ discard block |
||
584 | 584 | |
585 | 585 | /** |
586 | 586 | * Set the team memberon each item. |
587 | + * @param boolean $team_members |
|
587 | 588 | */ |
588 | 589 | public function set_team_member($id,$team_members) { |
589 | 590 | |
@@ -595,6 +596,7 @@ discard block |
||
595 | 596 | |
596 | 597 | /** |
597 | 598 | * Set the safari brand |
599 | + * @param boolean $safari_brands |
|
598 | 600 | */ |
599 | 601 | public function set_safari_brands($id,$safari_brands) { |
600 | 602 | foreach($safari_brands as $safari_brand){ |
@@ -70,7 +70,7 @@ discard block |
||
70 | 70 | */ |
71 | 71 | public function set_variables() |
72 | 72 | { |
73 | - parent::set_variables(); |
|
73 | + parent::set_variables(); |
|
74 | 74 | // ** This request only works with API KEY ** |
75 | 75 | //if ( false !== $this->api_username && false !== $this->api_password ) { |
76 | 76 | // $this->url = 'https://wetu.com/API/Pins/'; |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | * Display the importer administration screen |
96 | 96 | */ |
97 | 97 | public function display_page() { |
98 | - ?> |
|
98 | + ?> |
|
99 | 99 | <div class="wrap"> |
100 | 100 | <?php $this->navigation('accommodation'); ?> |
101 | 101 | |
@@ -236,8 +236,8 @@ discard block |
||
236 | 236 | $accommodation = json_decode($data, true); |
237 | 237 | |
238 | 238 | if(isset($accommodation['error'])){ |
239 | - return $accommodation['error']; |
|
240 | - }elseif (isset($accommodation) && !empty($accommodation)) { |
|
239 | + return $accommodation['error']; |
|
240 | + }elseif (isset($accommodation) && !empty($accommodation)) { |
|
241 | 241 | set_transient('lsx_ti_accommodation',$accommodation,60*60*2); |
242 | 242 | return true; |
243 | 243 | } |
@@ -253,8 +253,8 @@ discard block |
||
253 | 253 | $accommodation = get_transient('lsx_ti_accommodation'); |
254 | 254 | |
255 | 255 | if(false === $accommodation){ |
256 | - $this->update_options(); |
|
257 | - } |
|
256 | + $this->update_options(); |
|
257 | + } |
|
258 | 258 | |
259 | 259 | if ( false !== $accommodation ) { |
260 | 260 | $searched_items = false; |
@@ -263,7 +263,7 @@ discard block |
||
263 | 263 | $keyphrases = $_POST['keyword']; |
264 | 264 | }else{ |
265 | 265 | $keyphrases = array(0); |
266 | - } |
|
266 | + } |
|
267 | 267 | |
268 | 268 | if(!is_array($keyphrases)){ |
269 | 269 | $keyphrases = array($keyphrases); |
@@ -420,17 +420,17 @@ discard block |
||
420 | 420 | $content = false; |
421 | 421 | } |
422 | 422 | |
423 | - $jdata = file_get_contents( $this->url . '/Get?' . $this->url_qs . '&ids=' . $wetu_id ); |
|
424 | - if($jdata) |
|
425 | - { |
|
426 | - $adata=json_decode($jdata,true); |
|
427 | - if(!empty($adata)) |
|
428 | - { |
|
429 | - $return = $this->import_row($adata,$wetu_id,$post_id,$team_members,$content,$safari_brands); |
|
430 | - $this->format_completed_row($return); |
|
423 | + $jdata = file_get_contents( $this->url . '/Get?' . $this->url_qs . '&ids=' . $wetu_id ); |
|
424 | + if($jdata) |
|
425 | + { |
|
426 | + $adata=json_decode($jdata,true); |
|
427 | + if(!empty($adata)) |
|
428 | + { |
|
429 | + $return = $this->import_row($adata,$wetu_id,$post_id,$team_members,$content,$safari_brands); |
|
430 | + $this->format_completed_row($return); |
|
431 | 431 | $this->cleanup_posts(); |
432 | - } |
|
433 | - } |
|
432 | + } |
|
433 | + } |
|
434 | 434 | } |
435 | 435 | } |
436 | 436 | |
@@ -439,147 +439,147 @@ discard block |
||
439 | 439 | */ |
440 | 440 | public function import_row($data,$wetu_id,$id=0,$team_members=false,$importable_content=false,$safari_brands=false) { |
441 | 441 | |
442 | - if(trim($data[0]['type'])=='Accommodation') |
|
443 | - { |
|
444 | - $post_name = $data_post_content = $data_post_excerpt = ''; |
|
445 | - $post = array( |
|
446 | - 'post_type' => 'accommodation', |
|
447 | - ); |
|
448 | - |
|
449 | - $content_used_general_description = false; |
|
450 | - |
|
451 | - //Set the post_content |
|
452 | - if(false !== $importable_content && in_array('description',$importable_content)){ |
|
453 | - if(isset($data[0]['content']['extended_description'])) |
|
454 | - { |
|
455 | - $data_post_content = $data[0]['content']['extended_description']; |
|
456 | - }elseif(isset($data[0]['content']['general_description'])){ |
|
457 | - $data_post_content = $data[0]['content']['general_description']; |
|
458 | - $content_used_general_description = true; |
|
459 | - }elseif(isset($data[0]['content']['teaser_description'])){ |
|
460 | - $data_post_content = $data[0]['content']['teaser_description']; |
|
461 | - } |
|
462 | - $post['post_content'] = wp_strip_all_tags($data_post_content); |
|
463 | - } |
|
464 | - |
|
465 | - //set the post_excerpt |
|
466 | - if(false !== $importable_content && in_array('excerpt',$importable_content)){ |
|
467 | - if(isset($data[0]['content']['teaser_description'])){ |
|
468 | - $data_post_excerpt = $data[0]['content']['teaser_description']; |
|
469 | - }elseif(isset($data[0]['content']['general_description']) && false === $content_used_general_description){ |
|
470 | - $data_post_excerpt = $data[0]['content']['general_description']; |
|
471 | - } |
|
472 | - $post['post_excerpt'] = $data_post_excerpt; |
|
473 | - } |
|
474 | - |
|
475 | - if(false !== $id && '0' !== $id){ |
|
476 | - $post['ID'] = $id; |
|
442 | + if(trim($data[0]['type'])=='Accommodation') |
|
443 | + { |
|
444 | + $post_name = $data_post_content = $data_post_excerpt = ''; |
|
445 | + $post = array( |
|
446 | + 'post_type' => 'accommodation', |
|
447 | + ); |
|
448 | + |
|
449 | + $content_used_general_description = false; |
|
450 | + |
|
451 | + //Set the post_content |
|
452 | + if(false !== $importable_content && in_array('description',$importable_content)){ |
|
453 | + if(isset($data[0]['content']['extended_description'])) |
|
454 | + { |
|
455 | + $data_post_content = $data[0]['content']['extended_description']; |
|
456 | + }elseif(isset($data[0]['content']['general_description'])){ |
|
457 | + $data_post_content = $data[0]['content']['general_description']; |
|
458 | + $content_used_general_description = true; |
|
459 | + }elseif(isset($data[0]['content']['teaser_description'])){ |
|
460 | + $data_post_content = $data[0]['content']['teaser_description']; |
|
461 | + } |
|
462 | + $post['post_content'] = wp_strip_all_tags($data_post_content); |
|
463 | + } |
|
464 | + |
|
465 | + //set the post_excerpt |
|
466 | + if(false !== $importable_content && in_array('excerpt',$importable_content)){ |
|
467 | + if(isset($data[0]['content']['teaser_description'])){ |
|
468 | + $data_post_excerpt = $data[0]['content']['teaser_description']; |
|
469 | + }elseif(isset($data[0]['content']['general_description']) && false === $content_used_general_description){ |
|
470 | + $data_post_excerpt = $data[0]['content']['general_description']; |
|
471 | + } |
|
472 | + $post['post_excerpt'] = $data_post_excerpt; |
|
473 | + } |
|
474 | + |
|
475 | + if(false !== $id && '0' !== $id){ |
|
476 | + $post['ID'] = $id; |
|
477 | 477 | if(isset($data[0]['name'])){ |
478 | 478 | $post['post_title'] = $data[0]['name']; |
479 | - $post['post_status'] = 'publish'; |
|
479 | + $post['post_status'] = 'publish'; |
|
480 | 480 | $post['post_name'] = wp_unique_post_slug(sanitize_title($data[0]['name']),$id, 'draft', 'accommodation', 0); |
481 | 481 | } |
482 | - $id = wp_update_post($post); |
|
483 | - $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
|
484 | - update_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified']),$prev_date); |
|
485 | - }else{ |
|
486 | - |
|
487 | - //Set the name |
|
488 | - if(isset($data[0]['name'])){ |
|
489 | - $post_name = wp_unique_post_slug(sanitize_title($data[0]['name']),$id, 'draft', 'accommodation', 0); |
|
490 | - } |
|
491 | - $post['post_name'] = $post_name; |
|
492 | - $post['post_title'] = $data[0]['name']; |
|
493 | - $post['post_status'] = 'publish'; |
|
494 | - $id = wp_insert_post($post); |
|
495 | - |
|
496 | - //Save the WETU ID and the Last date it was modified. |
|
497 | - if(false !== $id){ |
|
498 | - add_post_meta($id,'lsx_wetu_id',$wetu_id); |
|
499 | - add_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified'])); |
|
500 | - } |
|
501 | - } |
|
502 | - //Setup some default for use in the import |
|
503 | - if(false !== $importable_content && (in_array('gallery',$importable_content) || in_array('banner_image',$importable_content) || in_array('featured_image',$importable_content))){ |
|
482 | + $id = wp_update_post($post); |
|
483 | + $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
|
484 | + update_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified']),$prev_date); |
|
485 | + }else{ |
|
486 | + |
|
487 | + //Set the name |
|
488 | + if(isset($data[0]['name'])){ |
|
489 | + $post_name = wp_unique_post_slug(sanitize_title($data[0]['name']),$id, 'draft', 'accommodation', 0); |
|
490 | + } |
|
491 | + $post['post_name'] = $post_name; |
|
492 | + $post['post_title'] = $data[0]['name']; |
|
493 | + $post['post_status'] = 'publish'; |
|
494 | + $id = wp_insert_post($post); |
|
495 | + |
|
496 | + //Save the WETU ID and the Last date it was modified. |
|
497 | + if(false !== $id){ |
|
498 | + add_post_meta($id,'lsx_wetu_id',$wetu_id); |
|
499 | + add_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified'])); |
|
500 | + } |
|
501 | + } |
|
502 | + //Setup some default for use in the import |
|
503 | + if(false !== $importable_content && (in_array('gallery',$importable_content) || in_array('banner_image',$importable_content) || in_array('featured_image',$importable_content))){ |
|
504 | 504 | $this->find_attachments($id); |
505 | 505 | } |
506 | 506 | |
507 | - //Set the team member if it is there |
|
508 | - if(post_type_exists('team') && false !== $team_members && '' !== $team_members){ |
|
509 | - $this->set_team_member($id,$team_members); |
|
510 | - } |
|
511 | - |
|
512 | - //Set the safari brand |
|
513 | - if(false !== $safari_brands && '' !== $safari_brands){ |
|
514 | - $this->set_safari_brands($id,$safari_brands); |
|
515 | - |
|
516 | - } |
|
517 | - |
|
518 | - if(class_exists('LSX_TO_Maps')){ |
|
519 | - $this->set_map_data($data,$id,9); |
|
520 | - } |
|
521 | - |
|
522 | - if(post_type_exists('destination') && false !== $importable_content && in_array('destination',$importable_content)){ |
|
523 | - $this->connect_destinations($data,$id); |
|
524 | - } |
|
525 | - |
|
526 | - if(false !== $importable_content && in_array('category',$importable_content)){ |
|
527 | - $this->set_taxonomy_style($data,$id); |
|
528 | - } |
|
529 | - |
|
530 | - //Set the Room Data |
|
531 | - if(false !== $importable_content && in_array('rooms',$importable_content)){ |
|
532 | - $this->set_room_data($data,$id); |
|
533 | - } |
|
534 | - |
|
535 | - //Set the rating |
|
536 | - if(false !== $importable_content && in_array('rating',$importable_content)){ |
|
537 | - $this->set_rating($data,$id); |
|
538 | - } |
|
539 | - |
|
540 | - //Set the checkin checkout data |
|
541 | - if(false !== $importable_content && in_array('checkin',$importable_content)){ |
|
542 | - $this->set_checkin_checkout($data,$id); |
|
543 | - } |
|
544 | - |
|
545 | - //Set the Spoken Languages |
|
546 | - if(false !== $importable_content && in_array('spoken_languages',$importable_content)){ |
|
547 | - $this->set_spoken_languages($data,$id); |
|
548 | - } |
|
549 | - |
|
550 | - //Set the friendly options |
|
551 | - if(false !== $importable_content && in_array('friendly',$importable_content)){ |
|
552 | - $this->set_friendly($data,$id); |
|
553 | - } |
|
554 | - |
|
555 | - //Set the special_interests |
|
556 | - if(false !== $importable_content && in_array('special_interests',$importable_content)){ |
|
557 | - $this->set_special_interests($data,$id); |
|
558 | - } |
|
559 | - |
|
560 | - //Import the videos |
|
561 | - if(false !== $importable_content && in_array('videos',$importable_content)){ |
|
562 | - $this->set_video_data($data,$id); |
|
563 | - } |
|
564 | - |
|
565 | - //Import the facilities |
|
566 | - if(false !== $importable_content && in_array('facilities',$importable_content)){ |
|
567 | - $this->set_facilities($data,$id); |
|
568 | - } |
|
569 | - |
|
570 | - //Set the featured image |
|
571 | - if(false !== $importable_content && in_array('featured_image',$importable_content)){ |
|
572 | - $this->set_featured_image($data,$id); |
|
573 | - } |
|
574 | - if(false !== $importable_content && in_array('banner_image',$importable_content)){ |
|
575 | - $this->set_banner_image($data,$id); |
|
576 | - } |
|
577 | - //Import the main gallery |
|
578 | - if(false !== $importable_content && in_array('gallery',$importable_content)){ |
|
579 | - $this->create_main_gallery($data,$id); |
|
580 | - } |
|
581 | - } |
|
582 | - return $id; |
|
507 | + //Set the team member if it is there |
|
508 | + if(post_type_exists('team') && false !== $team_members && '' !== $team_members){ |
|
509 | + $this->set_team_member($id,$team_members); |
|
510 | + } |
|
511 | + |
|
512 | + //Set the safari brand |
|
513 | + if(false !== $safari_brands && '' !== $safari_brands){ |
|
514 | + $this->set_safari_brands($id,$safari_brands); |
|
515 | + |
|
516 | + } |
|
517 | + |
|
518 | + if(class_exists('LSX_TO_Maps')){ |
|
519 | + $this->set_map_data($data,$id,9); |
|
520 | + } |
|
521 | + |
|
522 | + if(post_type_exists('destination') && false !== $importable_content && in_array('destination',$importable_content)){ |
|
523 | + $this->connect_destinations($data,$id); |
|
524 | + } |
|
525 | + |
|
526 | + if(false !== $importable_content && in_array('category',$importable_content)){ |
|
527 | + $this->set_taxonomy_style($data,$id); |
|
528 | + } |
|
529 | + |
|
530 | + //Set the Room Data |
|
531 | + if(false !== $importable_content && in_array('rooms',$importable_content)){ |
|
532 | + $this->set_room_data($data,$id); |
|
533 | + } |
|
534 | + |
|
535 | + //Set the rating |
|
536 | + if(false !== $importable_content && in_array('rating',$importable_content)){ |
|
537 | + $this->set_rating($data,$id); |
|
538 | + } |
|
539 | + |
|
540 | + //Set the checkin checkout data |
|
541 | + if(false !== $importable_content && in_array('checkin',$importable_content)){ |
|
542 | + $this->set_checkin_checkout($data,$id); |
|
543 | + } |
|
544 | + |
|
545 | + //Set the Spoken Languages |
|
546 | + if(false !== $importable_content && in_array('spoken_languages',$importable_content)){ |
|
547 | + $this->set_spoken_languages($data,$id); |
|
548 | + } |
|
549 | + |
|
550 | + //Set the friendly options |
|
551 | + if(false !== $importable_content && in_array('friendly',$importable_content)){ |
|
552 | + $this->set_friendly($data,$id); |
|
553 | + } |
|
554 | + |
|
555 | + //Set the special_interests |
|
556 | + if(false !== $importable_content && in_array('special_interests',$importable_content)){ |
|
557 | + $this->set_special_interests($data,$id); |
|
558 | + } |
|
559 | + |
|
560 | + //Import the videos |
|
561 | + if(false !== $importable_content && in_array('videos',$importable_content)){ |
|
562 | + $this->set_video_data($data,$id); |
|
563 | + } |
|
564 | + |
|
565 | + //Import the facilities |
|
566 | + if(false !== $importable_content && in_array('facilities',$importable_content)){ |
|
567 | + $this->set_facilities($data,$id); |
|
568 | + } |
|
569 | + |
|
570 | + //Set the featured image |
|
571 | + if(false !== $importable_content && in_array('featured_image',$importable_content)){ |
|
572 | + $this->set_featured_image($data,$id); |
|
573 | + } |
|
574 | + if(false !== $importable_content && in_array('banner_image',$importable_content)){ |
|
575 | + $this->set_banner_image($data,$id); |
|
576 | + } |
|
577 | + //Import the main gallery |
|
578 | + if(false !== $importable_content && in_array('gallery',$importable_content)){ |
|
579 | + $this->create_main_gallery($data,$id); |
|
580 | + } |
|
581 | + } |
|
582 | + return $id; |
|
583 | 583 | } |
584 | 584 | |
585 | 585 | /** |
@@ -589,7 +589,7 @@ discard block |
||
589 | 589 | |
590 | 590 | delete_post_meta($id, 'team_to_'.$this->tab_slug); |
591 | 591 | foreach($team_members as $team){ |
592 | - add_post_meta($id,'team_to_'.$this->tab_slug,$team); |
|
592 | + add_post_meta($id,'team_to_'.$this->tab_slug,$team); |
|
593 | 593 | } |
594 | 594 | } |
595 | 595 | |
@@ -598,7 +598,7 @@ discard block |
||
598 | 598 | */ |
599 | 599 | public function set_safari_brands($id,$safari_brands) { |
600 | 600 | foreach($safari_brands as $safari_brand){ |
601 | - wp_set_object_terms( $id, intval($safari_brand), 'accommodation-brand',true); |
|
601 | + wp_set_object_terms( $id, intval($safari_brand), 'accommodation-brand',true); |
|
602 | 602 | } |
603 | 603 | } |
604 | 604 | |
@@ -607,32 +607,32 @@ discard block |
||
607 | 607 | */ |
608 | 608 | public function connect_destinations($data,$id) { |
609 | 609 | if(isset($data[0]['position'])){ |
610 | - $destinations = false; |
|
611 | - if(isset($data[0]['position']['country'])){ |
|
612 | - $destinations['country'] = $data[0]['position']['country']; |
|
613 | - } |
|
614 | - if(isset($data[0]['position']['destination'])){ |
|
615 | - $destinations['destination'] = $data[0]['position']['destination']; |
|
616 | - } |
|
610 | + $destinations = false; |
|
611 | + if(isset($data[0]['position']['country'])){ |
|
612 | + $destinations['country'] = $data[0]['position']['country']; |
|
613 | + } |
|
614 | + if(isset($data[0]['position']['destination'])){ |
|
615 | + $destinations['destination'] = $data[0]['position']['destination']; |
|
616 | + } |
|
617 | 617 | |
618 | - if(false !== $destinations){ |
|
619 | - $prev_values = get_post_meta($id,'destination_to_accommodation',false); |
|
620 | - if(false === $prev_values || !is_array($prev_values)){ |
|
621 | - $prev_values = array(); |
|
622 | - } |
|
623 | - //print_r($destinations); |
|
618 | + if(false !== $destinations){ |
|
619 | + $prev_values = get_post_meta($id,'destination_to_accommodation',false); |
|
620 | + if(false === $prev_values || !is_array($prev_values)){ |
|
621 | + $prev_values = array(); |
|
622 | + } |
|
623 | + //print_r($destinations); |
|
624 | 624 | $destinations = array_unique($destinations); |
625 | 625 | //print_r($destinations); |
626 | - foreach($destinations as $key => $value){ |
|
627 | - $destination = get_page_by_title(ltrim(rtrim($value)), 'OBJECT', 'destination'); |
|
628 | - if (null !== $destination) { |
|
629 | - if(!in_array($destination->ID,$prev_values)){ |
|
630 | - add_post_meta($id,'destination_to_accommodation',$destination->ID,false); |
|
631 | - add_post_meta($destination->ID,'accommodation_to_destination',$id,false); |
|
626 | + foreach($destinations as $key => $value){ |
|
627 | + $destination = get_page_by_title(ltrim(rtrim($value)), 'OBJECT', 'destination'); |
|
628 | + if (null !== $destination) { |
|
629 | + if(!in_array($destination->ID,$prev_values)){ |
|
630 | + add_post_meta($id,'destination_to_accommodation',$destination->ID,false); |
|
631 | + add_post_meta($destination->ID,'accommodation_to_destination',$id,false); |
|
632 | 632 | $this->cleanup_posts[$destination->ID] = 'accommodation_to_destination'; |
633 | - } |
|
634 | - } |
|
635 | - } |
|
633 | + } |
|
634 | + } |
|
635 | + } |
|
636 | 636 | } |
637 | 637 | } |
638 | 638 | } |
@@ -644,15 +644,15 @@ discard block |
||
644 | 644 | $terms = false; |
645 | 645 | if(isset($data[0]['category'])){ |
646 | 646 | if(!$term = term_exists(trim($data[0]['category']), 'accommodation-type')) |
647 | - { |
|
648 | - $term = wp_insert_term(trim($data[0]['category']), 'accommodation-type'); |
|
649 | - if ( is_wp_error($term) ){echo $term->get_error_message();} |
|
650 | - else { wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); } |
|
651 | - } |
|
652 | - else |
|
653 | - { |
|
654 | - wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); |
|
655 | - } |
|
647 | + { |
|
648 | + $term = wp_insert_term(trim($data[0]['category']), 'accommodation-type'); |
|
649 | + if ( is_wp_error($term) ){echo $term->get_error_message();} |
|
650 | + else { wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); } |
|
651 | + } |
|
652 | + else |
|
653 | + { |
|
654 | + wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); |
|
655 | + } |
|
656 | 656 | } |
657 | 657 | } |
658 | 658 | |
@@ -676,25 +676,25 @@ discard block |
||
676 | 676 | $temp_room['type'] = 'room'; |
677 | 677 | |
678 | 678 | if(!empty($room['images']) && is_array($room['images'])){ |
679 | - $attachments_args = array( |
|
680 | - 'post_parent' => $id, |
|
681 | - 'post_status' => 'inherit', |
|
682 | - 'post_type' => 'attachment', |
|
683 | - 'order' => 'ASC', |
|
684 | - ); |
|
685 | - $attachments = new WP_Query($attachments_args); |
|
686 | - $found_attachments = array(); |
|
687 | - |
|
688 | - if($attachments->have_posts()){ |
|
689 | - foreach($attachments->posts as $attachment){ |
|
690 | - $found_attachments[] = str_replace(array('.jpg','.png','.jpeg'),'',$attachment->post_title); |
|
691 | - } |
|
692 | - } |
|
679 | + $attachments_args = array( |
|
680 | + 'post_parent' => $id, |
|
681 | + 'post_status' => 'inherit', |
|
682 | + 'post_type' => 'attachment', |
|
683 | + 'order' => 'ASC', |
|
684 | + ); |
|
685 | + $attachments = new WP_Query($attachments_args); |
|
686 | + $found_attachments = array(); |
|
687 | + |
|
688 | + if($attachments->have_posts()){ |
|
689 | + foreach($attachments->posts as $attachment){ |
|
690 | + $found_attachments[] = str_replace(array('.jpg','.png','.jpeg'),'',$attachment->post_title); |
|
691 | + } |
|
692 | + } |
|
693 | 693 | |
694 | 694 | $temp_room['gallery'] = array(); |
695 | 695 | foreach($room['images'] as $image_data){ |
696 | - $temp_room['gallery'][] = $this->attach_image($image_data,$id,$found_attachments); |
|
697 | - } |
|
696 | + $temp_room['gallery'][] = $this->attach_image($image_data,$id,$found_attachments); |
|
697 | + } |
|
698 | 698 | } |
699 | 699 | $rooms[] = $temp_room; |
700 | 700 | } |
@@ -703,7 +703,7 @@ discard block |
||
703 | 703 | delete_post_meta($id, 'units'); |
704 | 704 | } |
705 | 705 | foreach($rooms as $room){ |
706 | - add_post_meta($id,'units',$room,false); |
|
706 | + add_post_meta($id,'units',$room,false); |
|
707 | 707 | } |
708 | 708 | |
709 | 709 | if(isset($data[0]['features']) && isset($data[0]['features']['rooms'])){ |
@@ -713,11 +713,11 @@ discard block |
||
713 | 713 | } |
714 | 714 | |
715 | 715 | if(false !== $id && '0' !== $id){ |
716 | - $prev_rooms = get_post_meta($id,'number_of_rooms',true); |
|
717 | - update_post_meta($id,'number_of_rooms',$room_count,$prev_rooms); |
|
718 | - }else{ |
|
719 | - add_post_meta($id,'number_of_rooms',$room_count,true); |
|
720 | - } |
|
716 | + $prev_rooms = get_post_meta($id,'number_of_rooms',true); |
|
717 | + update_post_meta($id,'number_of_rooms',$room_count,$prev_rooms); |
|
718 | + }else{ |
|
719 | + add_post_meta($id,'number_of_rooms',$room_count,true); |
|
720 | + } |
|
721 | 721 | } |
722 | 722 | } |
723 | 723 | |
@@ -827,7 +827,7 @@ discard block |
||
827 | 827 | delete_post_meta($id, 'videos'); |
828 | 828 | } |
829 | 829 | foreach($videos as $video){ |
830 | - add_post_meta($id,'videos',$video,false); |
|
830 | + add_post_meta($id,'videos',$video,false); |
|
831 | 831 | } |
832 | 832 | } |
833 | 833 | } |
@@ -76,17 +76,17 @@ discard block |
||
76 | 76 | // $this->url = 'https://wetu.com/API/Pins/'; |
77 | 77 | // $this->url_qs = 'username=' . $this->api_username . '&password=' . $this->api_password; |
78 | 78 | //} elseif ( false !== $this->api_key ) { |
79 | - $this->url = 'https://wetu.com/API/Pins/' . $this->api_key; |
|
79 | + $this->url = 'https://wetu.com/API/Pins/'.$this->api_key; |
|
80 | 80 | $this->url_qs = ''; |
81 | 81 | //} |
82 | 82 | |
83 | - $temp_options = get_option('_lsx-to_settings',false); |
|
84 | - if(false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])){ |
|
83 | + $temp_options = get_option('_lsx-to_settings', false); |
|
84 | + if (false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])) { |
|
85 | 85 | $this->options = $temp_options[$this->plugin_slug]; |
86 | 86 | } |
87 | 87 | |
88 | - $accommodation_options = get_option('wetu_importer_accommodation_settings',false); |
|
89 | - if(false !== $accommodation_options){ |
|
88 | + $accommodation_options = get_option('wetu_importer_accommodation_settings', false); |
|
89 | + if (false !== $accommodation_options) { |
|
90 | 90 | $this->accommodation_options = $accommodation_options; |
91 | 91 | } |
92 | 92 | } |
@@ -106,8 +106,8 @@ discard block |
||
106 | 106 | <form method="get" action="" id="posts-filter"> |
107 | 107 | <input type="hidden" name="post_type" class="post_type" value="<?php echo $this->tab_slug; ?>" /> |
108 | 108 | |
109 | - <p><input class="button button-primary add" type="button" value="<?php _e('Add to List','wetu-importer'); ?>" /> |
|
110 | - <input class="button button-primary clear" type="button" value="<?php _e('Clear','wetu-importer'); ?>" /> |
|
109 | + <p><input class="button button-primary add" type="button" value="<?php _e('Add to List', 'wetu-importer'); ?>" /> |
|
110 | + <input class="button button-primary clear" type="button" value="<?php _e('Clear', 'wetu-importer'); ?>" /> |
|
111 | 111 | </p> |
112 | 112 | |
113 | 113 | <table class="wp-list-table widefat fixed posts"> |
@@ -116,11 +116,11 @@ discard block |
||
116 | 116 | <tbody id="the-list"> |
117 | 117 | <tr class="post-0 type-tour status-none" id="post-0"> |
118 | 118 | <th class="check-column" scope="row"> |
119 | - <label for="cb-select-0" class="screen-reader-text"><?php _e('Enter a title to search for and press enter','wetu-importer'); ?></label> |
|
119 | + <label for="cb-select-0" class="screen-reader-text"><?php _e('Enter a title to search for and press enter', 'wetu-importer'); ?></label> |
|
120 | 120 | </th> |
121 | 121 | <td class="post-title page-title column-title"> |
122 | 122 | <strong> |
123 | - <?php _e('Enter a title to search for','wetu-importer'); ?> |
|
123 | + <?php _e('Enter a title to search for', 'wetu-importer'); ?> |
|
124 | 124 | </strong> |
125 | 125 | </td> |
126 | 126 | <td class="date column-date"> |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | |
135 | 135 | </table> |
136 | 136 | |
137 | - <p><input class="button button-primary add" type="button" value="<?php _e('Add to List','wetu-importer'); ?>" /> |
|
138 | - <input class="button button-primary clear" type="button" value="<?php _e('Clear','wetu-importer'); ?>" /> |
|
137 | + <p><input class="button button-primary add" type="button" value="<?php _e('Add to List', 'wetu-importer'); ?>" /> |
|
138 | + <input class="button button-primary clear" type="button" value="<?php _e('Clear', 'wetu-importer'); ?>" /> |
|
139 | 139 | </p> |
140 | 140 | </form> |
141 | 141 | |
@@ -147,32 +147,32 @@ discard block |
||
147 | 147 | <div class="settings-all" style="width:30%;display:block;float:left;"> |
148 | 148 | <h3><?php _e('What content to Sync from WETU'); ?></h3> |
149 | 149 | <ul> |
150 | - <li><input class="content select-all" <?php $this->checked($this->accommodation_options,'all'); ?> type="checkbox"name="content[]" value="all" /> <?php _e('Select All','wetu-importer'); ?></li> |
|
151 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'description'); ?>" type="checkbox" name="content[]" value="description" /> <?php _e('Description','wetu-importer'); ?></li> |
|
152 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'excerpt'); ?>" type="checkbox" name="content[]" value="excerpt" /> <?php _e('Excerpt','wetu-importer'); ?></li> |
|
153 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'gallery'); ?>" type="checkbox" name="content[]" value="gallery" /> <?php _e('Main Gallery','wetu-importer'); ?></li> |
|
154 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'category'); ?>" type="checkbox" name="content[]" value="category" /> <?php _e('Category','wetu-importer'); ?></li> |
|
155 | - <?php if(class_exists('LSX_TO_Maps')){ ?> |
|
156 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'location'); ?>" type="checkbox" name="content[]" value="location" /> <?php _e('Location','wetu-importer'); ?></li> |
|
150 | + <li><input class="content select-all" <?php $this->checked($this->accommodation_options, 'all'); ?> type="checkbox"name="content[]" value="all" /> <?php _e('Select All', 'wetu-importer'); ?></li> |
|
151 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'description'); ?>" type="checkbox" name="content[]" value="description" /> <?php _e('Description', 'wetu-importer'); ?></li> |
|
152 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'excerpt'); ?>" type="checkbox" name="content[]" value="excerpt" /> <?php _e('Excerpt', 'wetu-importer'); ?></li> |
|
153 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'gallery'); ?>" type="checkbox" name="content[]" value="gallery" /> <?php _e('Main Gallery', 'wetu-importer'); ?></li> |
|
154 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'category'); ?>" type="checkbox" name="content[]" value="category" /> <?php _e('Category', 'wetu-importer'); ?></li> |
|
155 | + <?php if (class_exists('LSX_TO_Maps')) { ?> |
|
156 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'location'); ?>" type="checkbox" name="content[]" value="location" /> <?php _e('Location', 'wetu-importer'); ?></li> |
|
157 | 157 | <?php } ?> |
158 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'destination'); ?>" type="checkbox" name="content[]" value="destination" /> <?php _e('Connect Destinations','wetu-importer'); ?></li> |
|
159 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'checkin'); ?>" type="checkbox" name="content[]" value="checkin" /> <?php _e('Check In / Check Out','wetu-importer'); ?></li> |
|
160 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'facilities'); ?>" type="checkbox" name="content[]" value="facilities" /> <?php _e('Facilities','wetu-importer'); ?></li> |
|
161 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'friendly'); ?>" type="checkbox" name="content[]" value="friendly" /> <?php _e('Friendly','wetu-importer'); ?></li> |
|
162 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'rating'); ?>" type="checkbox" name="content[]" value="rating" /> <?php _e('Rating','wetu-importer'); ?></li> |
|
163 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'rooms'); ?>" type="checkbox" name="content[]" value="rooms" /> <?php _e('Rooms','wetu-importer'); ?></li> |
|
164 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'special_interests'); ?>" type="checkbox" name="content[]" value="special_interests" /> <?php _e('Special Interests','wetu-importer'); ?></li> |
|
165 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'spoken_languages'); ?>" type="checkbox" name="content[]" value="spoken_languages" /> <?php _e('Spoken Languages','wetu-importer'); ?></li> |
|
166 | - |
|
167 | - <?php if(class_exists('LSX_TO_Videos')){ ?> |
|
168 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'videos'); ?>" type="checkbox" name="content[]" value="videos" /> <?php _e('Videos','wetu-importer'); ?></li> |
|
158 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'destination'); ?>" type="checkbox" name="content[]" value="destination" /> <?php _e('Connect Destinations', 'wetu-importer'); ?></li> |
|
159 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'checkin'); ?>" type="checkbox" name="content[]" value="checkin" /> <?php _e('Check In / Check Out', 'wetu-importer'); ?></li> |
|
160 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'facilities'); ?>" type="checkbox" name="content[]" value="facilities" /> <?php _e('Facilities', 'wetu-importer'); ?></li> |
|
161 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'friendly'); ?>" type="checkbox" name="content[]" value="friendly" /> <?php _e('Friendly', 'wetu-importer'); ?></li> |
|
162 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'rating'); ?>" type="checkbox" name="content[]" value="rating" /> <?php _e('Rating', 'wetu-importer'); ?></li> |
|
163 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'rooms'); ?>" type="checkbox" name="content[]" value="rooms" /> <?php _e('Rooms', 'wetu-importer'); ?></li> |
|
164 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'special_interests'); ?>" type="checkbox" name="content[]" value="special_interests" /> <?php _e('Special Interests', 'wetu-importer'); ?></li> |
|
165 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'spoken_languages'); ?>" type="checkbox" name="content[]" value="spoken_languages" /> <?php _e('Spoken Languages', 'wetu-importer'); ?></li> |
|
166 | + |
|
167 | + <?php if (class_exists('LSX_TO_Videos')) { ?> |
|
168 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'videos'); ?>" type="checkbox" name="content[]" value="videos" /> <?php _e('Videos', 'wetu-importer'); ?></li> |
|
169 | 169 | <?php } ?> |
170 | 170 | </ul> |
171 | 171 | <h4><?php _e('Additional Content'); ?></h4> |
172 | 172 | <ul> |
173 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'featured_image'); ?>" type="checkbox" name="content[]" value="featured_image" /> <?php _e('Set Featured Image','wetu-importer'); ?></li> |
|
174 | - <?php if(class_exists('LSX_Banners')){ ?> |
|
175 | - <li><input class="content" checked="<?php $this->checked($this->accommodation_options,'banner_image'); ?>" type="checkbox" name="content[]" value="banner_image" /> <?php _e('Set Banner Image','wetu-importer'); ?></li> |
|
173 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'featured_image'); ?>" type="checkbox" name="content[]" value="featured_image" /> <?php _e('Set Featured Image', 'wetu-importer'); ?></li> |
|
174 | + <?php if (class_exists('LSX_Banners')) { ?> |
|
175 | + <li><input class="content" checked="<?php $this->checked($this->accommodation_options, 'banner_image'); ?>" type="checkbox" name="content[]" value="banner_image" /> <?php _e('Set Banner Image', 'wetu-importer'); ?></li> |
|
176 | 176 | <?php } ?> |
177 | 177 | </ul> |
178 | 178 | </div> |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | |
184 | 184 | <div style="width:30%;display:block;float:left;"> |
185 | 185 | <h3><?php _e('Assign a Safari Brand'); ?></h3> |
186 | - <?php echo $this->taxonomy_checkboxes('accommodation-brand',$this->accommodation_options); ?> |
|
186 | + <?php echo $this->taxonomy_checkboxes('accommodation-brand', $this->accommodation_options); ?> |
|
187 | 187 | </div> |
188 | 188 | |
189 | 189 | <br clear="both" /> |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | |
192 | 192 | |
193 | 193 | <h3><?php _e('Your List'); ?></h3> |
194 | - <p><input class="button button-primary" type="submit" value="<?php _e('Sync','wetu-importer'); ?>" /></p> |
|
194 | + <p><input class="button button-primary" type="submit" value="<?php _e('Sync', 'wetu-importer'); ?>" /></p> |
|
195 | 195 | <table class="wp-list-table widefat fixed posts"> |
196 | 196 | <?php $this->table_header(); ?> |
197 | 197 | |
@@ -203,12 +203,12 @@ discard block |
||
203 | 203 | |
204 | 204 | </table> |
205 | 205 | |
206 | - <p><input class="button button-primary" type="submit" value="<?php _e('Sync','wetu-importer'); ?>" /></p> |
|
206 | + <p><input class="button button-primary" type="submit" value="<?php _e('Sync', 'wetu-importer'); ?>" /></p> |
|
207 | 207 | </form> |
208 | 208 | </div> |
209 | 209 | |
210 | 210 | <div style="display:none;" class="completed-list-wrapper"> |
211 | - <h3><?php _e('Completed'); ?> - <small><?php _e('Import your','wetu-importer'); ?> <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=destination"><?php _e('destinations'); ?></a> <?php _e('next','wetu-importer'); ?></small></h3> |
|
211 | + <h3><?php _e('Completed'); ?> - <small><?php _e('Import your', 'wetu-importer'); ?> <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=destination"><?php _e('destinations'); ?></a> <?php _e('next', 'wetu-importer'); ?></small></h3> |
|
212 | 212 | <ul> |
213 | 213 | </ul> |
214 | 214 | </div> |
@@ -220,9 +220,9 @@ discard block |
||
220 | 220 | * search_form |
221 | 221 | */ |
222 | 222 | public function update_options_form() { |
223 | - echo '<div style="display:none;" class="wetu-status"><h3>'.__('Wetu Status','wetu-importer').'</h3>'; |
|
223 | + echo '<div style="display:none;" class="wetu-status"><h3>'.__('Wetu Status', 'wetu-importer').'</h3>'; |
|
224 | 224 | $accommodation = get_transient('lsx_ti_accommodation'); |
225 | - if('' === $accommodation || false === $accommodation || isset($_GET['refresh_accommodation'])){ |
|
225 | + if ('' === $accommodation || false === $accommodation || isset($_GET['refresh_accommodation'])) { |
|
226 | 226 | $this->update_options(); |
227 | 227 | } |
228 | 228 | echo '</div>'; |
@@ -232,13 +232,13 @@ discard block |
||
232 | 232 | * Save the list of Accommodation into an option |
233 | 233 | */ |
234 | 234 | public function update_options() { |
235 | - $data = file_get_contents( $this->url . '/List?' . $this->url_qs ); |
|
235 | + $data = file_get_contents($this->url.'/List?'.$this->url_qs); |
|
236 | 236 | $accommodation = json_decode($data, true); |
237 | 237 | |
238 | - if(isset($accommodation['error'])){ |
|
238 | + if (isset($accommodation['error'])) { |
|
239 | 239 | return $accommodation['error']; |
240 | 240 | }elseif (isset($accommodation) && !empty($accommodation)) { |
241 | - set_transient('lsx_ti_accommodation',$accommodation,60*60*2); |
|
241 | + set_transient('lsx_ti_accommodation', $accommodation, 60 * 60 * 2); |
|
242 | 242 | return true; |
243 | 243 | } |
244 | 244 | } |
@@ -249,41 +249,41 @@ discard block |
||
249 | 249 | public function process_ajax_search() { |
250 | 250 | $return = false; |
251 | 251 | |
252 | - if(isset($_POST['action']) && $_POST['action'] === 'lsx_tour_importer' && isset($_POST['type']) && $_POST['type'] === 'accommodation'){ |
|
252 | + if (isset($_POST['action']) && $_POST['action'] === 'lsx_tour_importer' && isset($_POST['type']) && $_POST['type'] === 'accommodation') { |
|
253 | 253 | $accommodation = get_transient('lsx_ti_accommodation'); |
254 | 254 | |
255 | - if(false === $accommodation){ |
|
255 | + if (false === $accommodation) { |
|
256 | 256 | $this->update_options(); |
257 | 257 | } |
258 | 258 | |
259 | - if ( false !== $accommodation ) { |
|
259 | + if (false !== $accommodation) { |
|
260 | 260 | $searched_items = false; |
261 | 261 | |
262 | - if(isset($_POST['keyword'] )) { |
|
262 | + if (isset($_POST['keyword'])) { |
|
263 | 263 | $keyphrases = $_POST['keyword']; |
264 | - }else{ |
|
264 | + }else { |
|
265 | 265 | $keyphrases = array(0); |
266 | 266 | } |
267 | 267 | |
268 | - if(!is_array($keyphrases)){ |
|
268 | + if (!is_array($keyphrases)) { |
|
269 | 269 | $keyphrases = array($keyphrases); |
270 | 270 | } |
271 | - foreach($keyphrases as &$keyword){ |
|
271 | + foreach ($keyphrases as &$keyword) { |
|
272 | 272 | $keyword = ltrim(rtrim($keyword)); |
273 | 273 | } |
274 | 274 | |
275 | 275 | |
276 | 276 | $post_status = false; |
277 | - if(in_array('publish',$keyphrases)){ |
|
277 | + if (in_array('publish', $keyphrases)) { |
|
278 | 278 | $post_status = 'publish'; |
279 | 279 | } |
280 | - if(in_array('pending',$keyphrases)){ |
|
280 | + if (in_array('pending', $keyphrases)) { |
|
281 | 281 | $post_status = 'pending'; |
282 | 282 | } |
283 | - if(in_array('draft',$keyphrases)){ |
|
283 | + if (in_array('draft', $keyphrases)) { |
|
284 | 284 | $post_status = 'draft'; |
285 | 285 | } |
286 | - if(in_array('import',$keyphrases)){ |
|
286 | + if (in_array('import', $keyphrases)) { |
|
287 | 287 | $post_status = 'import'; |
288 | 288 | } |
289 | 289 | |
@@ -291,33 +291,33 @@ discard block |
||
291 | 291 | |
292 | 292 | $current_accommodation = $this->find_current_accommodation(); |
293 | 293 | |
294 | - foreach($accommodation as $row_key => $row){ |
|
294 | + foreach ($accommodation as $row_key => $row) { |
|
295 | 295 | |
296 | 296 | //If this is a current tour, add its ID to the row. |
297 | 297 | $row['post_id'] = 0; |
298 | - if(false !== $current_accommodation && array_key_exists($row['id'], $current_accommodation)){ |
|
298 | + if (false !== $current_accommodation && array_key_exists($row['id'], $current_accommodation)) { |
|
299 | 299 | $row['post_id'] = $current_accommodation[$row['id']]->post_id; |
300 | 300 | } |
301 | 301 | |
302 | 302 | //If we are searching for |
303 | - if(false !== $post_status){ |
|
303 | + if (false !== $post_status) { |
|
304 | 304 | |
305 | - if('import' === $post_status){ |
|
305 | + if ('import' === $post_status) { |
|
306 | 306 | |
307 | - if(0 !== $row['post_id']){ |
|
307 | + if (0 !== $row['post_id']) { |
|
308 | 308 | continue; |
309 | - }else{ |
|
309 | + }else { |
|
310 | 310 | $searched_items[sanitize_title($row['name']).'-'.$row['id']] = $this->format_row($row); |
311 | 311 | } |
312 | 312 | |
313 | 313 | |
314 | - }else{ |
|
314 | + }else { |
|
315 | 315 | |
316 | - if(0 === $row['post_id']){ |
|
316 | + if (0 === $row['post_id']) { |
|
317 | 317 | continue; |
318 | - }else{ |
|
318 | + }else { |
|
319 | 319 | $current_status = get_post_status($row['post_id']); |
320 | - if($current_status !== $post_status){ |
|
320 | + if ($current_status !== $post_status) { |
|
321 | 321 | continue; |
322 | 322 | } |
323 | 323 | |
@@ -325,17 +325,17 @@ discard block |
||
325 | 325 | $searched_items[sanitize_title($row['name']).'-'.$row['id']] = $this->format_row($row); |
326 | 326 | } |
327 | 327 | |
328 | - }else{ |
|
328 | + }else { |
|
329 | 329 | //Search through each keyword. |
330 | - foreach($keyphrases as $keyphrase){ |
|
330 | + foreach ($keyphrases as $keyphrase) { |
|
331 | 331 | |
332 | 332 | //Make sure the keyphrase is turned into an array |
333 | - $keywords = explode(" ",$keyphrase); |
|
334 | - if(!is_array($keywords)){ |
|
333 | + $keywords = explode(" ", $keyphrase); |
|
334 | + if (!is_array($keywords)) { |
|
335 | 335 | $keywords = array($keywords); |
336 | 336 | } |
337 | 337 | |
338 | - if($this->multineedle_stripos(ltrim(rtrim($row['name'])), $keywords) !== false){ |
|
338 | + if ($this->multineedle_stripos(ltrim(rtrim($row['name'])), $keywords) !== false) { |
|
339 | 339 | $searched_items[sanitize_title($row['name']).'-'.$row['id']] = $this->format_row($row); |
340 | 340 | } |
341 | 341 | } |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | } |
345 | 345 | |
346 | 346 | |
347 | - if(false !== $searched_items){ |
|
347 | + if (false !== $searched_items) { |
|
348 | 348 | ksort($searched_items); |
349 | 349 | $return = implode($searched_items); |
350 | 350 | } |
@@ -357,11 +357,11 @@ discard block |
||
357 | 357 | /** |
358 | 358 | * Formats the row for output on the screen. |
359 | 359 | */ |
360 | - public function format_row($row = false){ |
|
361 | - if(false !== $row){ |
|
360 | + public function format_row($row = false) { |
|
361 | + if (false !== $row) { |
|
362 | 362 | |
363 | 363 | $status = 'import'; |
364 | - if(0 !== $row['post_id']){ |
|
364 | + if (0 !== $row['post_id']) { |
|
365 | 365 | $status = '<a href="'.admin_url('/post.php?post='.$row['post_id'].'&action=edit').'" target="_blank">'.get_post_status($row['post_id']).'</a>'; |
366 | 366 | } |
367 | 367 | |
@@ -375,7 +375,7 @@ discard block |
||
375 | 375 | <strong>'.$row['name'].'</strong> - '.$status.' |
376 | 376 | </td> |
377 | 377 | <td class="date column-date"> |
378 | - <abbr title="'.date('Y/m/d',strtotime($row['last_modified'])).'">'.date('Y/m/d',strtotime($row['last_modified'])).'</abbr><br>Last Modified |
|
378 | + <abbr title="'.date('Y/m/d', strtotime($row['last_modified'])).'">'.date('Y/m/d', strtotime($row['last_modified'])).'</abbr><br>Last Modified |
|
379 | 379 | </td> |
380 | 380 | <td class="ssid column-ssid"> |
381 | 381 | '.$row['id'].' |
@@ -390,43 +390,43 @@ discard block |
||
390 | 390 | */ |
391 | 391 | public function process_ajax_import() { |
392 | 392 | $return = false; |
393 | - if(isset($_POST['action']) && $_POST['action'] === 'lsx_import_items' && isset($_POST['type']) && $_POST['type'] === 'accommodation' && isset($_POST['wetu_id'])){ |
|
393 | + if (isset($_POST['action']) && $_POST['action'] === 'lsx_import_items' && isset($_POST['type']) && $_POST['type'] === 'accommodation' && isset($_POST['wetu_id'])) { |
|
394 | 394 | |
395 | 395 | $wetu_id = $_POST['wetu_id']; |
396 | - if(isset($_POST['post_id'])){ |
|
396 | + if (isset($_POST['post_id'])) { |
|
397 | 397 | $post_id = $_POST['post_id']; |
398 | - }else{ |
|
398 | + }else { |
|
399 | 399 | $post_id = 0; |
400 | 400 | } |
401 | 401 | |
402 | - if(isset($_POST['team_members'])){ |
|
402 | + if (isset($_POST['team_members'])) { |
|
403 | 403 | $team_members = $_POST['team_members']; |
404 | - }else{ |
|
404 | + }else { |
|
405 | 405 | $team_members = false; |
406 | 406 | } |
407 | 407 | |
408 | - if(isset($_POST['safari_brands'])){ |
|
408 | + if (isset($_POST['safari_brands'])) { |
|
409 | 409 | $safari_brands = $_POST['safari_brands']; |
410 | - }else{ |
|
410 | + }else { |
|
411 | 411 | $safari_brands = false; |
412 | 412 | } |
413 | 413 | |
414 | 414 | delete_option('wetu_importer_accommodation_settings'); |
415 | - if(isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])){ |
|
415 | + if (isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])) { |
|
416 | 416 | $content = $_POST['content']; |
417 | - add_option('wetu_importer_accommodation_settings',$content); |
|
418 | - }else{ |
|
417 | + add_option('wetu_importer_accommodation_settings', $content); |
|
418 | + }else { |
|
419 | 419 | |
420 | 420 | $content = false; |
421 | 421 | } |
422 | 422 | |
423 | - $jdata = file_get_contents( $this->url . '/Get?' . $this->url_qs . '&ids=' . $wetu_id ); |
|
424 | - if($jdata) |
|
423 | + $jdata = file_get_contents($this->url.'/Get?'.$this->url_qs.'&ids='.$wetu_id); |
|
424 | + if ($jdata) |
|
425 | 425 | { |
426 | - $adata=json_decode($jdata,true); |
|
427 | - if(!empty($adata)) |
|
426 | + $adata = json_decode($jdata, true); |
|
427 | + if (!empty($adata)) |
|
428 | 428 | { |
429 | - $return = $this->import_row($adata,$wetu_id,$post_id,$team_members,$content,$safari_brands); |
|
429 | + $return = $this->import_row($adata, $wetu_id, $post_id, $team_members, $content, $safari_brands); |
|
430 | 430 | $this->format_completed_row($return); |
431 | 431 | $this->cleanup_posts(); |
432 | 432 | } |
@@ -437,9 +437,9 @@ discard block |
||
437 | 437 | /** |
438 | 438 | * Connect to wetu |
439 | 439 | */ |
440 | - public function import_row($data,$wetu_id,$id=0,$team_members=false,$importable_content=false,$safari_brands=false) { |
|
440 | + public function import_row($data, $wetu_id, $id = 0, $team_members = false, $importable_content = false, $safari_brands = false) { |
|
441 | 441 | |
442 | - if(trim($data[0]['type'])=='Accommodation') |
|
442 | + if (trim($data[0]['type']) == 'Accommodation') |
|
443 | 443 | { |
444 | 444 | $post_name = $data_post_content = $data_post_excerpt = ''; |
445 | 445 | $post = array( |
@@ -449,44 +449,44 @@ discard block |
||
449 | 449 | $content_used_general_description = false; |
450 | 450 | |
451 | 451 | //Set the post_content |
452 | - if(false !== $importable_content && in_array('description',$importable_content)){ |
|
453 | - if(isset($data[0]['content']['extended_description'])) |
|
452 | + if (false !== $importable_content && in_array('description', $importable_content)) { |
|
453 | + if (isset($data[0]['content']['extended_description'])) |
|
454 | 454 | { |
455 | 455 | $data_post_content = $data[0]['content']['extended_description']; |
456 | - }elseif(isset($data[0]['content']['general_description'])){ |
|
456 | + }elseif (isset($data[0]['content']['general_description'])) { |
|
457 | 457 | $data_post_content = $data[0]['content']['general_description']; |
458 | 458 | $content_used_general_description = true; |
459 | - }elseif(isset($data[0]['content']['teaser_description'])){ |
|
459 | + }elseif (isset($data[0]['content']['teaser_description'])) { |
|
460 | 460 | $data_post_content = $data[0]['content']['teaser_description']; |
461 | 461 | } |
462 | 462 | $post['post_content'] = wp_strip_all_tags($data_post_content); |
463 | 463 | } |
464 | 464 | |
465 | 465 | //set the post_excerpt |
466 | - if(false !== $importable_content && in_array('excerpt',$importable_content)){ |
|
467 | - if(isset($data[0]['content']['teaser_description'])){ |
|
466 | + if (false !== $importable_content && in_array('excerpt', $importable_content)) { |
|
467 | + if (isset($data[0]['content']['teaser_description'])) { |
|
468 | 468 | $data_post_excerpt = $data[0]['content']['teaser_description']; |
469 | - }elseif(isset($data[0]['content']['general_description']) && false === $content_used_general_description){ |
|
469 | + }elseif (isset($data[0]['content']['general_description']) && false === $content_used_general_description) { |
|
470 | 470 | $data_post_excerpt = $data[0]['content']['general_description']; |
471 | 471 | } |
472 | 472 | $post['post_excerpt'] = $data_post_excerpt; |
473 | 473 | } |
474 | 474 | |
475 | - if(false !== $id && '0' !== $id){ |
|
475 | + if (false !== $id && '0' !== $id) { |
|
476 | 476 | $post['ID'] = $id; |
477 | - if(isset($data[0]['name'])){ |
|
477 | + if (isset($data[0]['name'])) { |
|
478 | 478 | $post['post_title'] = $data[0]['name']; |
479 | 479 | $post['post_status'] = 'publish'; |
480 | - $post['post_name'] = wp_unique_post_slug(sanitize_title($data[0]['name']),$id, 'draft', 'accommodation', 0); |
|
480 | + $post['post_name'] = wp_unique_post_slug(sanitize_title($data[0]['name']), $id, 'draft', 'accommodation', 0); |
|
481 | 481 | } |
482 | 482 | $id = wp_update_post($post); |
483 | - $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
|
484 | - update_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified']),$prev_date); |
|
485 | - }else{ |
|
483 | + $prev_date = get_post_meta($id, 'lsx_wetu_modified_date', true); |
|
484 | + update_post_meta($id, 'lsx_wetu_modified_date', strtotime($data[0]['last_modified']), $prev_date); |
|
485 | + }else { |
|
486 | 486 | |
487 | 487 | //Set the name |
488 | - if(isset($data[0]['name'])){ |
|
489 | - $post_name = wp_unique_post_slug(sanitize_title($data[0]['name']),$id, 'draft', 'accommodation', 0); |
|
488 | + if (isset($data[0]['name'])) { |
|
489 | + $post_name = wp_unique_post_slug(sanitize_title($data[0]['name']), $id, 'draft', 'accommodation', 0); |
|
490 | 490 | } |
491 | 491 | $post['post_name'] = $post_name; |
492 | 492 | $post['post_title'] = $data[0]['name']; |
@@ -494,89 +494,89 @@ discard block |
||
494 | 494 | $id = wp_insert_post($post); |
495 | 495 | |
496 | 496 | //Save the WETU ID and the Last date it was modified. |
497 | - if(false !== $id){ |
|
498 | - add_post_meta($id,'lsx_wetu_id',$wetu_id); |
|
499 | - add_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified'])); |
|
497 | + if (false !== $id) { |
|
498 | + add_post_meta($id, 'lsx_wetu_id', $wetu_id); |
|
499 | + add_post_meta($id, 'lsx_wetu_modified_date', strtotime($data[0]['last_modified'])); |
|
500 | 500 | } |
501 | 501 | } |
502 | 502 | //Setup some default for use in the import |
503 | - if(false !== $importable_content && (in_array('gallery',$importable_content) || in_array('banner_image',$importable_content) || in_array('featured_image',$importable_content))){ |
|
503 | + if (false !== $importable_content && (in_array('gallery', $importable_content) || in_array('banner_image', $importable_content) || in_array('featured_image', $importable_content))) { |
|
504 | 504 | $this->find_attachments($id); |
505 | 505 | } |
506 | 506 | |
507 | 507 | //Set the team member if it is there |
508 | - if(post_type_exists('team') && false !== $team_members && '' !== $team_members){ |
|
509 | - $this->set_team_member($id,$team_members); |
|
508 | + if (post_type_exists('team') && false !== $team_members && '' !== $team_members) { |
|
509 | + $this->set_team_member($id, $team_members); |
|
510 | 510 | } |
511 | 511 | |
512 | 512 | //Set the safari brand |
513 | - if(false !== $safari_brands && '' !== $safari_brands){ |
|
514 | - $this->set_safari_brands($id,$safari_brands); |
|
513 | + if (false !== $safari_brands && '' !== $safari_brands) { |
|
514 | + $this->set_safari_brands($id, $safari_brands); |
|
515 | 515 | |
516 | 516 | } |
517 | 517 | |
518 | - if(class_exists('LSX_TO_Maps')){ |
|
519 | - $this->set_map_data($data,$id,9); |
|
518 | + if (class_exists('LSX_TO_Maps')) { |
|
519 | + $this->set_map_data($data, $id, 9); |
|
520 | 520 | } |
521 | 521 | |
522 | - if(post_type_exists('destination') && false !== $importable_content && in_array('destination',$importable_content)){ |
|
523 | - $this->connect_destinations($data,$id); |
|
522 | + if (post_type_exists('destination') && false !== $importable_content && in_array('destination', $importable_content)) { |
|
523 | + $this->connect_destinations($data, $id); |
|
524 | 524 | } |
525 | 525 | |
526 | - if(false !== $importable_content && in_array('category',$importable_content)){ |
|
527 | - $this->set_taxonomy_style($data,$id); |
|
526 | + if (false !== $importable_content && in_array('category', $importable_content)) { |
|
527 | + $this->set_taxonomy_style($data, $id); |
|
528 | 528 | } |
529 | 529 | |
530 | 530 | //Set the Room Data |
531 | - if(false !== $importable_content && in_array('rooms',$importable_content)){ |
|
532 | - $this->set_room_data($data,$id); |
|
531 | + if (false !== $importable_content && in_array('rooms', $importable_content)) { |
|
532 | + $this->set_room_data($data, $id); |
|
533 | 533 | } |
534 | 534 | |
535 | 535 | //Set the rating |
536 | - if(false !== $importable_content && in_array('rating',$importable_content)){ |
|
537 | - $this->set_rating($data,$id); |
|
536 | + if (false !== $importable_content && in_array('rating', $importable_content)) { |
|
537 | + $this->set_rating($data, $id); |
|
538 | 538 | } |
539 | 539 | |
540 | 540 | //Set the checkin checkout data |
541 | - if(false !== $importable_content && in_array('checkin',$importable_content)){ |
|
542 | - $this->set_checkin_checkout($data,$id); |
|
541 | + if (false !== $importable_content && in_array('checkin', $importable_content)) { |
|
542 | + $this->set_checkin_checkout($data, $id); |
|
543 | 543 | } |
544 | 544 | |
545 | 545 | //Set the Spoken Languages |
546 | - if(false !== $importable_content && in_array('spoken_languages',$importable_content)){ |
|
547 | - $this->set_spoken_languages($data,$id); |
|
546 | + if (false !== $importable_content && in_array('spoken_languages', $importable_content)) { |
|
547 | + $this->set_spoken_languages($data, $id); |
|
548 | 548 | } |
549 | 549 | |
550 | 550 | //Set the friendly options |
551 | - if(false !== $importable_content && in_array('friendly',$importable_content)){ |
|
552 | - $this->set_friendly($data,$id); |
|
551 | + if (false !== $importable_content && in_array('friendly', $importable_content)) { |
|
552 | + $this->set_friendly($data, $id); |
|
553 | 553 | } |
554 | 554 | |
555 | 555 | //Set the special_interests |
556 | - if(false !== $importable_content && in_array('special_interests',$importable_content)){ |
|
557 | - $this->set_special_interests($data,$id); |
|
556 | + if (false !== $importable_content && in_array('special_interests', $importable_content)) { |
|
557 | + $this->set_special_interests($data, $id); |
|
558 | 558 | } |
559 | 559 | |
560 | 560 | //Import the videos |
561 | - if(false !== $importable_content && in_array('videos',$importable_content)){ |
|
562 | - $this->set_video_data($data,$id); |
|
561 | + if (false !== $importable_content && in_array('videos', $importable_content)) { |
|
562 | + $this->set_video_data($data, $id); |
|
563 | 563 | } |
564 | 564 | |
565 | 565 | //Import the facilities |
566 | - if(false !== $importable_content && in_array('facilities',$importable_content)){ |
|
567 | - $this->set_facilities($data,$id); |
|
566 | + if (false !== $importable_content && in_array('facilities', $importable_content)) { |
|
567 | + $this->set_facilities($data, $id); |
|
568 | 568 | } |
569 | 569 | |
570 | 570 | //Set the featured image |
571 | - if(false !== $importable_content && in_array('featured_image',$importable_content)){ |
|
572 | - $this->set_featured_image($data,$id); |
|
571 | + if (false !== $importable_content && in_array('featured_image', $importable_content)) { |
|
572 | + $this->set_featured_image($data, $id); |
|
573 | 573 | } |
574 | - if(false !== $importable_content && in_array('banner_image',$importable_content)){ |
|
575 | - $this->set_banner_image($data,$id); |
|
574 | + if (false !== $importable_content && in_array('banner_image', $importable_content)) { |
|
575 | + $this->set_banner_image($data, $id); |
|
576 | 576 | } |
577 | 577 | //Import the main gallery |
578 | - if(false !== $importable_content && in_array('gallery',$importable_content)){ |
|
579 | - $this->create_main_gallery($data,$id); |
|
578 | + if (false !== $importable_content && in_array('gallery', $importable_content)) { |
|
579 | + $this->create_main_gallery($data, $id); |
|
580 | 580 | } |
581 | 581 | } |
582 | 582 | return $id; |
@@ -585,50 +585,50 @@ discard block |
||
585 | 585 | /** |
586 | 586 | * Set the team memberon each item. |
587 | 587 | */ |
588 | - public function set_team_member($id,$team_members) { |
|
588 | + public function set_team_member($id, $team_members) { |
|
589 | 589 | |
590 | 590 | delete_post_meta($id, 'team_to_'.$this->tab_slug); |
591 | - foreach($team_members as $team){ |
|
592 | - add_post_meta($id,'team_to_'.$this->tab_slug,$team); |
|
591 | + foreach ($team_members as $team) { |
|
592 | + add_post_meta($id, 'team_to_'.$this->tab_slug, $team); |
|
593 | 593 | } |
594 | 594 | } |
595 | 595 | |
596 | 596 | /** |
597 | 597 | * Set the safari brand |
598 | 598 | */ |
599 | - public function set_safari_brands($id,$safari_brands) { |
|
600 | - foreach($safari_brands as $safari_brand){ |
|
601 | - wp_set_object_terms( $id, intval($safari_brand), 'accommodation-brand',true); |
|
599 | + public function set_safari_brands($id, $safari_brands) { |
|
600 | + foreach ($safari_brands as $safari_brand) { |
|
601 | + wp_set_object_terms($id, intval($safari_brand), 'accommodation-brand', true); |
|
602 | 602 | } |
603 | 603 | } |
604 | 604 | |
605 | 605 | /** |
606 | 606 | * Connects the destinations post type |
607 | 607 | */ |
608 | - public function connect_destinations($data,$id) { |
|
609 | - if(isset($data[0]['position'])){ |
|
608 | + public function connect_destinations($data, $id) { |
|
609 | + if (isset($data[0]['position'])) { |
|
610 | 610 | $destinations = false; |
611 | - if(isset($data[0]['position']['country'])){ |
|
611 | + if (isset($data[0]['position']['country'])) { |
|
612 | 612 | $destinations['country'] = $data[0]['position']['country']; |
613 | 613 | } |
614 | - if(isset($data[0]['position']['destination'])){ |
|
614 | + if (isset($data[0]['position']['destination'])) { |
|
615 | 615 | $destinations['destination'] = $data[0]['position']['destination']; |
616 | 616 | } |
617 | 617 | |
618 | - if(false !== $destinations){ |
|
619 | - $prev_values = get_post_meta($id,'destination_to_accommodation',false); |
|
620 | - if(false === $prev_values || !is_array($prev_values)){ |
|
618 | + if (false !== $destinations) { |
|
619 | + $prev_values = get_post_meta($id, 'destination_to_accommodation', false); |
|
620 | + if (false === $prev_values || !is_array($prev_values)) { |
|
621 | 621 | $prev_values = array(); |
622 | 622 | } |
623 | 623 | //print_r($destinations); |
624 | 624 | $destinations = array_unique($destinations); |
625 | 625 | //print_r($destinations); |
626 | - foreach($destinations as $key => $value){ |
|
626 | + foreach ($destinations as $key => $value) { |
|
627 | 627 | $destination = get_page_by_title(ltrim(rtrim($value)), 'OBJECT', 'destination'); |
628 | 628 | if (null !== $destination) { |
629 | - if(!in_array($destination->ID,$prev_values)){ |
|
630 | - add_post_meta($id,'destination_to_accommodation',$destination->ID,false); |
|
631 | - add_post_meta($destination->ID,'accommodation_to_destination',$id,false); |
|
629 | + if (!in_array($destination->ID, $prev_values)) { |
|
630 | + add_post_meta($id, 'destination_to_accommodation', $destination->ID, false); |
|
631 | + add_post_meta($destination->ID, 'accommodation_to_destination', $id, false); |
|
632 | 632 | $this->cleanup_posts[$destination->ID] = 'accommodation_to_destination'; |
633 | 633 | } |
634 | 634 | } |
@@ -640,18 +640,18 @@ discard block |
||
640 | 640 | /** |
641 | 641 | * Set the Travel Style |
642 | 642 | */ |
643 | - public function set_taxonomy_style($data,$id) { |
|
643 | + public function set_taxonomy_style($data, $id) { |
|
644 | 644 | $terms = false; |
645 | - if(isset($data[0]['category'])){ |
|
646 | - if(!$term = term_exists(trim($data[0]['category']), 'accommodation-type')) |
|
645 | + if (isset($data[0]['category'])) { |
|
646 | + if (!$term = term_exists(trim($data[0]['category']), 'accommodation-type')) |
|
647 | 647 | { |
648 | 648 | $term = wp_insert_term(trim($data[0]['category']), 'accommodation-type'); |
649 | - if ( is_wp_error($term) ){echo $term->get_error_message();} |
|
650 | - else { wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); } |
|
649 | + if (is_wp_error($term)) {echo $term->get_error_message(); } |
|
650 | + else { wp_set_object_terms($id, intval($term['term_id']), 'accommodation-type', true); } |
|
651 | 651 | } |
652 | 652 | else |
653 | 653 | { |
654 | - wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); |
|
654 | + wp_set_object_terms($id, intval($term['term_id']), 'accommodation-type', true); |
|
655 | 655 | } |
656 | 656 | } |
657 | 657 | } |
@@ -659,23 +659,23 @@ discard block |
||
659 | 659 | /** |
660 | 660 | * Saves the room data |
661 | 661 | */ |
662 | - public function set_room_data($data,$id) { |
|
663 | - if(!empty($data[0]['rooms']) && is_array($data[0]['rooms'])){ |
|
662 | + public function set_room_data($data, $id) { |
|
663 | + if (!empty($data[0]['rooms']) && is_array($data[0]['rooms'])) { |
|
664 | 664 | $rooms = false; |
665 | 665 | |
666 | - foreach($data[0]['rooms'] as $room){ |
|
666 | + foreach ($data[0]['rooms'] as $room) { |
|
667 | 667 | |
668 | 668 | $temp_room = array(); |
669 | - if(isset($room['name'])){ |
|
669 | + if (isset($room['name'])) { |
|
670 | 670 | $temp_room['title'] = $room['name']; |
671 | 671 | } |
672 | - if(isset($room['description'])){ |
|
672 | + if (isset($room['description'])) { |
|
673 | 673 | $temp_room['description'] = strip_tags($room['description']); |
674 | 674 | } |
675 | 675 | $temp_room['price'] = 0; |
676 | 676 | $temp_room['type'] = 'room'; |
677 | 677 | |
678 | - if(!empty($room['images']) && is_array($room['images'])){ |
|
678 | + if (!empty($room['images']) && is_array($room['images'])) { |
|
679 | 679 | $attachments_args = array( |
680 | 680 | 'post_parent' => $id, |
681 | 681 | 'post_status' => 'inherit', |
@@ -685,38 +685,38 @@ discard block |
||
685 | 685 | $attachments = new WP_Query($attachments_args); |
686 | 686 | $found_attachments = array(); |
687 | 687 | |
688 | - if($attachments->have_posts()){ |
|
689 | - foreach($attachments->posts as $attachment){ |
|
690 | - $found_attachments[] = str_replace(array('.jpg','.png','.jpeg'),'',$attachment->post_title); |
|
688 | + if ($attachments->have_posts()) { |
|
689 | + foreach ($attachments->posts as $attachment) { |
|
690 | + $found_attachments[] = str_replace(array('.jpg', '.png', '.jpeg'), '', $attachment->post_title); |
|
691 | 691 | } |
692 | 692 | } |
693 | 693 | |
694 | 694 | $temp_room['gallery'] = array(); |
695 | - foreach($room['images'] as $image_data){ |
|
696 | - $temp_room['gallery'][] = $this->attach_image($image_data,$id,$found_attachments); |
|
695 | + foreach ($room['images'] as $image_data) { |
|
696 | + $temp_room['gallery'][] = $this->attach_image($image_data, $id, $found_attachments); |
|
697 | 697 | } |
698 | 698 | } |
699 | 699 | $rooms[] = $temp_room; |
700 | 700 | } |
701 | 701 | |
702 | - if(false !== $id && '0' !== $id){ |
|
702 | + if (false !== $id && '0' !== $id) { |
|
703 | 703 | delete_post_meta($id, 'units'); |
704 | 704 | } |
705 | - foreach($rooms as $room){ |
|
706 | - add_post_meta($id,'units',$room,false); |
|
705 | + foreach ($rooms as $room) { |
|
706 | + add_post_meta($id, 'units', $room, false); |
|
707 | 707 | } |
708 | 708 | |
709 | - if(isset($data[0]['features']) && isset($data[0]['features']['rooms'])){ |
|
709 | + if (isset($data[0]['features']) && isset($data[0]['features']['rooms'])) { |
|
710 | 710 | $room_count = $data[0]['features']['rooms']; |
711 | - }else{ |
|
711 | + }else { |
|
712 | 712 | $room_count = count($data[0]['rooms']); |
713 | 713 | } |
714 | 714 | |
715 | - if(false !== $id && '0' !== $id){ |
|
716 | - $prev_rooms = get_post_meta($id,'number_of_rooms',true); |
|
717 | - update_post_meta($id,'number_of_rooms',$room_count,$prev_rooms); |
|
718 | - }else{ |
|
719 | - add_post_meta($id,'number_of_rooms',$room_count,true); |
|
715 | + if (false !== $id && '0' !== $id) { |
|
716 | + $prev_rooms = get_post_meta($id, 'number_of_rooms', true); |
|
717 | + update_post_meta($id, 'number_of_rooms', $room_count, $prev_rooms); |
|
718 | + }else { |
|
719 | + add_post_meta($id, 'number_of_rooms', $room_count, true); |
|
720 | 720 | } |
721 | 721 | } |
722 | 722 | } |
@@ -724,31 +724,31 @@ discard block |
||
724 | 724 | /** |
725 | 725 | * Set the ratings |
726 | 726 | */ |
727 | - public function set_rating($data,$id) { |
|
727 | + public function set_rating($data, $id) { |
|
728 | 728 | |
729 | - if(!empty($data[0]['features']) && isset($data[0]['features']['star_authority'])){ |
|
729 | + if (!empty($data[0]['features']) && isset($data[0]['features']['star_authority'])) { |
|
730 | 730 | $rating_type = $data[0]['features']['star_authority']; |
731 | - }else{ |
|
731 | + }else { |
|
732 | 732 | $rating_type = 'Unspecified2'; |
733 | 733 | } |
734 | - $this->save_custom_field($rating_type,'rating_type',$id); |
|
734 | + $this->save_custom_field($rating_type, 'rating_type', $id); |
|
735 | 735 | |
736 | - if(!empty($data[0]['features']) && isset($data[0]['features']['stars'])){ |
|
737 | - $this->save_custom_field($data[0]['features']['stars'],'rating',$id,true); |
|
736 | + if (!empty($data[0]['features']) && isset($data[0]['features']['stars'])) { |
|
737 | + $this->save_custom_field($data[0]['features']['stars'], 'rating', $id, true); |
|
738 | 738 | } |
739 | 739 | } |
740 | 740 | |
741 | 741 | /** |
742 | 742 | * Set the spoken_languages |
743 | 743 | */ |
744 | - public function set_spoken_languages($data,$id) { |
|
745 | - if(!empty($data[0]['features']) && isset($data[0]['features']['spoken_languages']) && !empty($data[0]['features']['spoken_languages'])){ |
|
744 | + public function set_spoken_languages($data, $id) { |
|
745 | + if (!empty($data[0]['features']) && isset($data[0]['features']['spoken_languages']) && !empty($data[0]['features']['spoken_languages'])) { |
|
746 | 746 | $languages = false; |
747 | - foreach($data[0]['features']['spoken_languages'] as $spoken_language){ |
|
747 | + foreach ($data[0]['features']['spoken_languages'] as $spoken_language) { |
|
748 | 748 | $languages[] = sanitize_title($spoken_language); |
749 | 749 | } |
750 | - if(false !== $languages){ |
|
751 | - $this->save_custom_field($languages,'spoken_languages',$id); |
|
750 | + if (false !== $languages) { |
|
751 | + $this->save_custom_field($languages, 'spoken_languages', $id); |
|
752 | 752 | } |
753 | 753 | } |
754 | 754 | } |
@@ -756,14 +756,14 @@ discard block |
||
756 | 756 | /** |
757 | 757 | * Set the friendly |
758 | 758 | */ |
759 | - public function set_friendly($data,$id) { |
|
760 | - if(!empty($data[0]['features']) && isset($data[0]['features']['suggested_visitor_types']) && !empty($data[0]['features']['suggested_visitor_types'])){ |
|
759 | + public function set_friendly($data, $id) { |
|
760 | + if (!empty($data[0]['features']) && isset($data[0]['features']['suggested_visitor_types']) && !empty($data[0]['features']['suggested_visitor_types'])) { |
|
761 | 761 | $friendly_options = false; |
762 | - foreach($data[0]['features']['suggested_visitor_types'] as $visitor_type){ |
|
762 | + foreach ($data[0]['features']['suggested_visitor_types'] as $visitor_type) { |
|
763 | 763 | $friendly_options[] = sanitize_title($visitor_type); |
764 | 764 | } |
765 | - if(false !== $friendly_options){ |
|
766 | - $this->save_custom_field($friendly_options,'suggested_visitor_types',$id); |
|
765 | + if (false !== $friendly_options) { |
|
766 | + $this->save_custom_field($friendly_options, 'suggested_visitor_types', $id); |
|
767 | 767 | } |
768 | 768 | } |
769 | 769 | } |
@@ -771,14 +771,14 @@ discard block |
||
771 | 771 | /** |
772 | 772 | * Set the special interests |
773 | 773 | */ |
774 | - public function set_special_interests($data,$id) { |
|
775 | - if(!empty($data[0]['features']) && isset($data[0]['features']['special_interests']) && !empty($data[0]['features']['special_interests'])){ |
|
774 | + public function set_special_interests($data, $id) { |
|
775 | + if (!empty($data[0]['features']) && isset($data[0]['features']['special_interests']) && !empty($data[0]['features']['special_interests'])) { |
|
776 | 776 | $interests = false; |
777 | - foreach($data[0]['features']['special_interests'] as $special_interest){ |
|
777 | + foreach ($data[0]['features']['special_interests'] as $special_interest) { |
|
778 | 778 | $interests[] = sanitize_title($special_interest); |
779 | 779 | } |
780 | - if(false !== $interests){ |
|
781 | - $this->save_custom_field($interests,'special_interests',$id); |
|
780 | + if (false !== $interests) { |
|
781 | + $this->save_custom_field($interests, 'special_interests', $id); |
|
782 | 782 | } |
783 | 783 | } |
784 | 784 | } |
@@ -786,48 +786,48 @@ discard block |
||
786 | 786 | /** |
787 | 787 | * Set the Check in and Check out Date |
788 | 788 | */ |
789 | - public function set_checkin_checkout($data,$id) { |
|
789 | + public function set_checkin_checkout($data, $id) { |
|
790 | 790 | |
791 | - if(!empty($data[0]['features']) && isset($data[0]['features']['check_in_time'])){ |
|
792 | - $time = str_replace('h',':',$data[0]['features']['check_in_time']); |
|
793 | - $time = date('h:ia',strtotime($time)); |
|
794 | - $this->save_custom_field($time,'checkin_time',$id); |
|
791 | + if (!empty($data[0]['features']) && isset($data[0]['features']['check_in_time'])) { |
|
792 | + $time = str_replace('h', ':', $data[0]['features']['check_in_time']); |
|
793 | + $time = date('h:ia', strtotime($time)); |
|
794 | + $this->save_custom_field($time, 'checkin_time', $id); |
|
795 | 795 | } |
796 | - if(!empty($data[0]['features']) && isset($data[0]['features']['check_out_time'])){ |
|
797 | - $time = str_replace('h',':',$data[0]['features']['check_out_time']); |
|
798 | - $time = date('h:ia',strtotime($time)); |
|
799 | - $this->save_custom_field($time,'checkout_time',$id); |
|
796 | + if (!empty($data[0]['features']) && isset($data[0]['features']['check_out_time'])) { |
|
797 | + $time = str_replace('h', ':', $data[0]['features']['check_out_time']); |
|
798 | + $time = date('h:ia', strtotime($time)); |
|
799 | + $this->save_custom_field($time, 'checkout_time', $id); |
|
800 | 800 | } |
801 | 801 | } |
802 | 802 | |
803 | 803 | /** |
804 | 804 | * Set the Video date |
805 | 805 | */ |
806 | - public function set_video_data($data,$id) { |
|
807 | - if(!empty($data[0]['content']['youtube_videos']) && is_array($data[0]['content']['youtube_videos'])){ |
|
806 | + public function set_video_data($data, $id) { |
|
807 | + if (!empty($data[0]['content']['youtube_videos']) && is_array($data[0]['content']['youtube_videos'])) { |
|
808 | 808 | $videos = false; |
809 | 809 | |
810 | - foreach($data[0]['content']['youtube_videos'] as $video){ |
|
810 | + foreach ($data[0]['content']['youtube_videos'] as $video) { |
|
811 | 811 | $temp_video = array(); |
812 | 812 | |
813 | - if(isset($video['label'])){ |
|
813 | + if (isset($video['label'])) { |
|
814 | 814 | $temp_video['title'] = $video['label']; |
815 | 815 | } |
816 | - if(isset($video['description'])){ |
|
816 | + if (isset($video['description'])) { |
|
817 | 817 | $temp_video['description'] = strip_tags($video['description']); |
818 | 818 | } |
819 | - if(isset($video['url'])){ |
|
819 | + if (isset($video['url'])) { |
|
820 | 820 | $temp_video['url'] = $video['url']; |
821 | 821 | } |
822 | 822 | $temp_video['thumbnail'] = ''; |
823 | 823 | $videos[] = $temp_video; |
824 | 824 | } |
825 | 825 | |
826 | - if(false !== $id && '0' !== $id){ |
|
826 | + if (false !== $id && '0' !== $id) { |
|
827 | 827 | delete_post_meta($id, 'videos'); |
828 | 828 | } |
829 | - foreach($videos as $video){ |
|
830 | - add_post_meta($id,'videos',$video,false); |
|
829 | + foreach ($videos as $video) { |
|
830 | + add_post_meta($id, 'videos', $video, false); |
|
831 | 831 | } |
832 | 832 | } |
833 | 833 | } |
@@ -835,7 +835,7 @@ discard block |
||
835 | 835 | /** |
836 | 836 | * Set the Facilities |
837 | 837 | */ |
838 | - public function set_facilities($data,$id) { |
|
838 | + public function set_facilities($data, $id) { |
|
839 | 839 | |
840 | 840 | $parent_facilities = array( |
841 | 841 | 'available_services' => 'Available Services', |
@@ -843,13 +843,13 @@ discard block |
||
843 | 843 | 'room_facilities' => 'Room Facilities', |
844 | 844 | 'activities_on_site' => 'Activities on Site' |
845 | 845 | ); |
846 | - foreach($parent_facilities as $key => $label){ |
|
846 | + foreach ($parent_facilities as $key => $label) { |
|
847 | 847 | $terms = false; |
848 | - if(isset($data[0]['features']) && isset($data[0]['features'][$key])){ |
|
849 | - $parent_id = $this->set_term($id,$label,'facility'); |
|
848 | + if (isset($data[0]['features']) && isset($data[0]['features'][$key])) { |
|
849 | + $parent_id = $this->set_term($id, $label, 'facility'); |
|
850 | 850 | } |
851 | - foreach($data[0]['features'][$key] as $child_facility){ |
|
852 | - $this->set_term($id,$child_facility,'facility',$parent_id); |
|
851 | + foreach ($data[0]['features'][$key] as $child_facility) { |
|
852 | + $this->set_term($id, $child_facility, 'facility', $parent_id); |
|
853 | 853 | } |
854 | 854 | } |
855 | 855 | } |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | |
238 | 238 | if(isset($accommodation['error'])){ |
239 | 239 | return $accommodation['error']; |
240 | - }elseif (isset($accommodation) && !empty($accommodation)) { |
|
240 | + } elseif (isset($accommodation) && !empty($accommodation)) { |
|
241 | 241 | set_transient('lsx_ti_accommodation',$accommodation,60*60*2); |
242 | 242 | return true; |
243 | 243 | } |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | |
262 | 262 | if(isset($_POST['keyword'] )) { |
263 | 263 | $keyphrases = $_POST['keyword']; |
264 | - }else{ |
|
264 | + } else{ |
|
265 | 265 | $keyphrases = array(0); |
266 | 266 | } |
267 | 267 | |
@@ -306,16 +306,16 @@ discard block |
||
306 | 306 | |
307 | 307 | if(0 !== $row['post_id']){ |
308 | 308 | continue; |
309 | - }else{ |
|
309 | + } else{ |
|
310 | 310 | $searched_items[sanitize_title($row['name']).'-'.$row['id']] = $this->format_row($row); |
311 | 311 | } |
312 | 312 | |
313 | 313 | |
314 | - }else{ |
|
314 | + } else{ |
|
315 | 315 | |
316 | 316 | if(0 === $row['post_id']){ |
317 | 317 | continue; |
318 | - }else{ |
|
318 | + } else{ |
|
319 | 319 | $current_status = get_post_status($row['post_id']); |
320 | 320 | if($current_status !== $post_status){ |
321 | 321 | continue; |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | $searched_items[sanitize_title($row['name']).'-'.$row['id']] = $this->format_row($row); |
326 | 326 | } |
327 | 327 | |
328 | - }else{ |
|
328 | + } else{ |
|
329 | 329 | //Search through each keyword. |
330 | 330 | foreach($keyphrases as $keyphrase){ |
331 | 331 | |
@@ -395,19 +395,19 @@ discard block |
||
395 | 395 | $wetu_id = $_POST['wetu_id']; |
396 | 396 | if(isset($_POST['post_id'])){ |
397 | 397 | $post_id = $_POST['post_id']; |
398 | - }else{ |
|
398 | + } else{ |
|
399 | 399 | $post_id = 0; |
400 | 400 | } |
401 | 401 | |
402 | 402 | if(isset($_POST['team_members'])){ |
403 | 403 | $team_members = $_POST['team_members']; |
404 | - }else{ |
|
404 | + } else{ |
|
405 | 405 | $team_members = false; |
406 | 406 | } |
407 | 407 | |
408 | 408 | if(isset($_POST['safari_brands'])){ |
409 | 409 | $safari_brands = $_POST['safari_brands']; |
410 | - }else{ |
|
410 | + } else{ |
|
411 | 411 | $safari_brands = false; |
412 | 412 | } |
413 | 413 | |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | if(isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])){ |
416 | 416 | $content = $_POST['content']; |
417 | 417 | add_option('wetu_importer_accommodation_settings',$content); |
418 | - }else{ |
|
418 | + } else{ |
|
419 | 419 | |
420 | 420 | $content = false; |
421 | 421 | } |
@@ -453,10 +453,10 @@ discard block |
||
453 | 453 | if(isset($data[0]['content']['extended_description'])) |
454 | 454 | { |
455 | 455 | $data_post_content = $data[0]['content']['extended_description']; |
456 | - }elseif(isset($data[0]['content']['general_description'])){ |
|
456 | + } elseif(isset($data[0]['content']['general_description'])){ |
|
457 | 457 | $data_post_content = $data[0]['content']['general_description']; |
458 | 458 | $content_used_general_description = true; |
459 | - }elseif(isset($data[0]['content']['teaser_description'])){ |
|
459 | + } elseif(isset($data[0]['content']['teaser_description'])){ |
|
460 | 460 | $data_post_content = $data[0]['content']['teaser_description']; |
461 | 461 | } |
462 | 462 | $post['post_content'] = wp_strip_all_tags($data_post_content); |
@@ -466,7 +466,7 @@ discard block |
||
466 | 466 | if(false !== $importable_content && in_array('excerpt',$importable_content)){ |
467 | 467 | if(isset($data[0]['content']['teaser_description'])){ |
468 | 468 | $data_post_excerpt = $data[0]['content']['teaser_description']; |
469 | - }elseif(isset($data[0]['content']['general_description']) && false === $content_used_general_description){ |
|
469 | + } elseif(isset($data[0]['content']['general_description']) && false === $content_used_general_description){ |
|
470 | 470 | $data_post_excerpt = $data[0]['content']['general_description']; |
471 | 471 | } |
472 | 472 | $post['post_excerpt'] = $data_post_excerpt; |
@@ -482,7 +482,7 @@ discard block |
||
482 | 482 | $id = wp_update_post($post); |
483 | 483 | $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
484 | 484 | update_post_meta($id,'lsx_wetu_modified_date',strtotime($data[0]['last_modified']),$prev_date); |
485 | - }else{ |
|
485 | + } else{ |
|
486 | 486 | |
487 | 487 | //Set the name |
488 | 488 | if(isset($data[0]['name'])){ |
@@ -646,10 +646,8 @@ discard block |
||
646 | 646 | if(!$term = term_exists(trim($data[0]['category']), 'accommodation-type')) |
647 | 647 | { |
648 | 648 | $term = wp_insert_term(trim($data[0]['category']), 'accommodation-type'); |
649 | - if ( is_wp_error($term) ){echo $term->get_error_message();} |
|
650 | - else { wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); } |
|
651 | - } |
|
652 | - else |
|
649 | + if ( is_wp_error($term) ){echo $term->get_error_message();} else { wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); } |
|
650 | + } else |
|
653 | 651 | { |
654 | 652 | wp_set_object_terms( $id, intval($term['term_id']), 'accommodation-type',true); |
655 | 653 | } |
@@ -708,14 +706,14 @@ discard block |
||
708 | 706 | |
709 | 707 | if(isset($data[0]['features']) && isset($data[0]['features']['rooms'])){ |
710 | 708 | $room_count = $data[0]['features']['rooms']; |
711 | - }else{ |
|
709 | + } else{ |
|
712 | 710 | $room_count = count($data[0]['rooms']); |
713 | 711 | } |
714 | 712 | |
715 | 713 | if(false !== $id && '0' !== $id){ |
716 | 714 | $prev_rooms = get_post_meta($id,'number_of_rooms',true); |
717 | 715 | update_post_meta($id,'number_of_rooms',$room_count,$prev_rooms); |
718 | - }else{ |
|
716 | + } else{ |
|
719 | 717 | add_post_meta($id,'number_of_rooms',$room_count,true); |
720 | 718 | } |
721 | 719 | } |
@@ -728,7 +726,7 @@ discard block |
||
728 | 726 | |
729 | 727 | if(!empty($data[0]['features']) && isset($data[0]['features']['star_authority'])){ |
730 | 728 | $rating_type = $data[0]['features']['star_authority']; |
731 | - }else{ |
|
729 | + } else{ |
|
732 | 730 | $rating_type = 'Unspecified2'; |
733 | 731 | } |
734 | 732 | $this->save_custom_field($rating_type,'rating_type',$id); |
@@ -622,6 +622,7 @@ discard block |
||
622 | 622 | |
623 | 623 | /** |
624 | 624 | * Set the team memberon each item. |
625 | + * @param boolean $team_members |
|
625 | 626 | */ |
626 | 627 | public function set_team_member($id, $team_members) |
627 | 628 | { |
@@ -634,6 +635,7 @@ discard block |
||
634 | 635 | |
635 | 636 | /** |
636 | 637 | * Saves the room data |
638 | + * @param string $meta_key |
|
637 | 639 | */ |
638 | 640 | public function set_travel_info($data, $id, $meta_key) |
639 | 641 | { |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | // $this->url = 'https://wetu.com/API/Pins/'; |
79 | 79 | // $this->url_qs = 'username=' . $this->api_username . '&password=' . $this->api_password; |
80 | 80 | //} elseif ( false !== $this->api_key ) { |
81 | - $this->url = 'https://wetu.com/API/Pins/' . $this->api_key; |
|
81 | + $this->url = 'https://wetu.com/API/Pins/'.$this->api_key; |
|
82 | 82 | $this->url_qs = ''; |
83 | 83 | //} |
84 | 84 | |
@@ -302,11 +302,11 @@ discard block |
||
302 | 302 | </p> |
303 | 303 | |
304 | 304 | <div class="ajax-loader" style="display:none;width:100%;text-align:center;"> |
305 | - <img style="width:64px;" src="<?php echo WETU_IMPORTER_URL . 'assets/images/ajaxloader.gif'; ?>"/> |
|
305 | + <img style="width:64px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif'; ?>"/> |
|
306 | 306 | </div> |
307 | 307 | |
308 | 308 | <div class="ajax-loader-small" style="display:none;width:100%;text-align:center;"> |
309 | - <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL . 'assets/images/ajaxloader.gif'; ?>"/> |
|
309 | + <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif'; ?>"/> |
|
310 | 310 | </div> |
311 | 311 | </form> |
312 | 312 | <?php |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | |
354 | 354 | if (isset($_POST['keyword'])) { |
355 | 355 | $keyphrases = $_POST['keyword']; |
356 | - } else { |
|
356 | + }else { |
|
357 | 357 | $keyphrases = array(0); |
358 | 358 | } |
359 | 359 | |
@@ -388,10 +388,10 @@ discard block |
||
388 | 388 | if ($current_status !== $post_status) { |
389 | 389 | continue; |
390 | 390 | } |
391 | - $searched_items[sanitize_title($row->name) . '-' . $row->meta_value] = $this->format_row($row); |
|
391 | + $searched_items[sanitize_title($row->name).'-'.$row->meta_value] = $this->format_row($row); |
|
392 | 392 | |
393 | 393 | |
394 | - } else { |
|
394 | + }else { |
|
395 | 395 | //Search through each keyword. |
396 | 396 | foreach ($keyphrases as $keyphrase) { |
397 | 397 | |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | } |
403 | 403 | |
404 | 404 | if ($this->multineedle_stripos(ltrim(rtrim($row->name)), $keywords) !== false) { |
405 | - $searched_items[sanitize_title($row->name) . '-' . $row->meta_value] = $this->format_row($row); |
|
405 | + $searched_items[sanitize_title($row->name).'-'.$row->meta_value] = $this->format_row($row); |
|
406 | 406 | } |
407 | 407 | } |
408 | 408 | } |
@@ -428,23 +428,23 @@ discard block |
||
428 | 428 | |
429 | 429 | $status = 'import'; |
430 | 430 | if (0 !== $row->post_id) { |
431 | - $status = '<a href="' . admin_url('/post.php?post=' . $row->post_id . '&action=edit') . '" target="_blank">' . get_post_status($row->post_id) . '</a>'; |
|
431 | + $status = '<a href="'.admin_url('/post.php?post='.$row->post_id.'&action=edit').'" target="_blank">'.get_post_status($row->post_id).'</a>'; |
|
432 | 432 | } |
433 | 433 | |
434 | 434 | $row_html = ' |
435 | - <tr class="post-' . $row->post_id . ' type-tour" id="post-' . $row->post_id . '"> |
|
435 | + <tr class="post-' . $row->post_id.' type-tour" id="post-'.$row->post_id.'"> |
|
436 | 436 | <th class="check-column" scope="row"> |
437 | - <label for="cb-select-' . $row->meta_value . '" class="screen-reader-text">' . $row->name . '</label> |
|
438 | - <input type="checkbox" data-identifier="' . $row->meta_value . '" value="' . $row->post_id . '" name="post[]" id="cb-select-' . $row->meta_value . '"> |
|
437 | + <label for="cb-select-' . $row->meta_value.'" class="screen-reader-text">'.$row->name.'</label> |
|
438 | + <input type="checkbox" data-identifier="' . $row->meta_value.'" value="'.$row->post_id.'" name="post[]" id="cb-select-'.$row->meta_value.'"> |
|
439 | 439 | </th> |
440 | 440 | <td class="post-title page-title column-title"> |
441 | - <strong>' . $row->name . '</strong> - ' . $status . ' |
|
441 | + <strong>' . $row->name.'</strong> - '.$status.' |
|
442 | 442 | </td> |
443 | 443 | <td class="date column-date"> |
444 | - <abbr title="' . date('Y/m/d', strtotime($row->last_modified)) . '">' . date('Y/m/d', strtotime($row->last_modified)) . '</abbr><br>Last Modified |
|
444 | + <abbr title="' . date('Y/m/d', strtotime($row->last_modified)).'">'.date('Y/m/d', strtotime($row->last_modified)).'</abbr><br>Last Modified |
|
445 | 445 | </td> |
446 | 446 | <td class="ssid column-ssid"> |
447 | - ' . $row->meta_value . ' |
|
447 | + ' . $row->meta_value.' |
|
448 | 448 | </td> |
449 | 449 | </tr>'; |
450 | 450 | return $row_html; |
@@ -462,13 +462,13 @@ discard block |
||
462 | 462 | $wetu_id = $_POST['wetu_id']; |
463 | 463 | if (isset($_POST['post_id'])) { |
464 | 464 | $post_id = $_POST['post_id']; |
465 | - } else { |
|
465 | + }else { |
|
466 | 466 | $post_id = 0; |
467 | 467 | } |
468 | 468 | |
469 | 469 | if (isset($_POST['team_members'])) { |
470 | 470 | $team_members = $_POST['team_members']; |
471 | - } else { |
|
471 | + }else { |
|
472 | 472 | $team_members = false; |
473 | 473 | } |
474 | 474 | |
@@ -478,11 +478,11 @@ discard block |
||
478 | 478 | if (isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])) { |
479 | 479 | $content = $_POST['content']; |
480 | 480 | add_option('wetu_importer_destination_settings', $content); |
481 | - } else { |
|
481 | + }else { |
|
482 | 482 | $content = false; |
483 | 483 | } |
484 | 484 | |
485 | - $jdata = file_get_contents($this->url . '/Get?' . $this->url_qs . '&ids=' . $wetu_id); |
|
485 | + $jdata = file_get_contents($this->url.'/Get?'.$this->url_qs.'&ids='.$wetu_id); |
|
486 | 486 | if ($jdata) { |
487 | 487 | $adata = json_decode($jdata, true); |
488 | 488 | if (!empty($adata)) { |
@@ -542,7 +542,7 @@ discard block |
||
542 | 542 | $id = wp_update_post($post); |
543 | 543 | $prev_date = get_post_meta($id, 'lsx_wetu_modified_date', true); |
544 | 544 | update_post_meta($id, 'lsx_wetu_modified_date', strtotime($data[0]['last_modified']), $prev_date); |
545 | - } else { |
|
545 | + }else { |
|
546 | 546 | |
547 | 547 | //Set the name |
548 | 548 | if (isset($data[0]['name'])) { |
@@ -626,9 +626,9 @@ discard block |
||
626 | 626 | public function set_team_member($id, $team_members) |
627 | 627 | { |
628 | 628 | |
629 | - delete_post_meta($id, 'team_to_' . $this->tab_slug); |
|
629 | + delete_post_meta($id, 'team_to_'.$this->tab_slug); |
|
630 | 630 | foreach ($team_members as $team) { |
631 | - add_post_meta($id, 'team_to_' . $this->tab_slug, $team); |
|
631 | + add_post_meta($id, 'team_to_'.$this->tab_slug, $team); |
|
632 | 632 | } |
633 | 633 | } |
634 | 634 |
@@ -674,6 +674,9 @@ discard block |
||
674 | 674 | return $result; |
675 | 675 | } |
676 | 676 | |
677 | + /** |
|
678 | + * @return boolean |
|
679 | + */ |
|
677 | 680 | public function set_term($id=false,$name=false,$taxonomy=false,$parent=false){ |
678 | 681 | if(!$term = term_exists($name, $taxonomy)) |
679 | 682 | { |
@@ -910,6 +913,10 @@ discard block |
||
910 | 913 | return false; |
911 | 914 | } |
912 | 915 | |
916 | + /** |
|
917 | + * @param string $url |
|
918 | + * @param string $thumb |
|
919 | + */ |
|
913 | 920 | public function attach_external_image2( $url = null, $post_id = null, $thumb = null, $filename = null, $post_data = array() ) { |
914 | 921 | |
915 | 922 | if ( !$url || !$post_id ) { return new WP_Error('missing', "Need a valid URL and post ID..."); } |
@@ -1018,6 +1025,7 @@ discard block |
||
1018 | 1025 | |
1019 | 1026 | /** |
1020 | 1027 | * Does a multine search |
1028 | + * @param string $haystack |
|
1021 | 1029 | */ |
1022 | 1030 | public function multineedle_stripos($haystack, $needles, $offset=0) { |
1023 | 1031 | $found = false; |
@@ -188,11 +188,11 @@ discard block |
||
188 | 188 | $temp_options = get_option('_lsx-to_settings',false); |
189 | 189 | |
190 | 190 | if(isset($_GET['tab']) || isset($_POST['type'])) { |
191 | - if(isset($_GET['tab'])) { |
|
191 | + if(isset($_GET['tab'])) { |
|
192 | 192 | $this->tab_slug = $_GET['tab']; |
193 | 193 | }else{ |
194 | 194 | $this->tab_slug = $_POST['type']; |
195 | - } |
|
195 | + } |
|
196 | 196 | } |
197 | 197 | |
198 | 198 | if(isset($temp_options[$this->plugin_slug])) { |
@@ -301,10 +301,10 @@ discard block |
||
301 | 301 | |
302 | 302 | // DISPLAY FUNCTIONS |
303 | 303 | |
304 | - /* |
|
304 | + /* |
|
305 | 305 | * Load the importer class you want to use |
306 | 306 | */ |
307 | - public function load_class(){ |
|
307 | + public function load_class(){ |
|
308 | 308 | |
309 | 309 | switch($this->tab_slug){ |
310 | 310 | case 'accommodation': |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | break; |
325 | 325 | } |
326 | 326 | |
327 | - } |
|
327 | + } |
|
328 | 328 | |
329 | 329 | /** |
330 | 330 | * Registers the admin page which will house the importer form. |
@@ -380,7 +380,7 @@ discard block |
||
380 | 380 | <?php |
381 | 381 | }else{ |
382 | 382 | $this->current_importer->display_page(); |
383 | - }; ?> |
|
383 | + }; ?> |
|
384 | 384 | </div> |
385 | 385 | <?php |
386 | 386 | } |
@@ -998,7 +998,7 @@ discard block |
||
998 | 998 | * Run through the accommodation grabbed from the DB. |
999 | 999 | */ |
1000 | 1000 | public function process_ajax_search() { |
1001 | - $this->current_importer->process_ajax_search(); |
|
1001 | + $this->current_importer->process_ajax_search(); |
|
1002 | 1002 | } |
1003 | 1003 | |
1004 | 1004 | /** |
@@ -141,31 +141,31 @@ discard block |
||
141 | 141 | */ |
142 | 142 | public function __construct() { |
143 | 143 | |
144 | - add_action( 'admin_init', array( $this, 'compatible_version_check' ) ); |
|
144 | + add_action('admin_init', array($this, 'compatible_version_check')); |
|
145 | 145 | |
146 | 146 | // Don't run anything else in the plugin, if we're on an incompatible PHP version |
147 | - if ( ! self::compatible_version() ) { |
|
147 | + if (!self::compatible_version()) { |
|
148 | 148 | return; |
149 | 149 | } |
150 | 150 | |
151 | 151 | $this->set_variables(); |
152 | 152 | |
153 | - add_action( 'init', array( $this, 'load_plugin_textdomain' ) ); |
|
154 | - add_action( 'admin_enqueue_scripts', array($this,'admin_scripts') ,11 ); |
|
155 | - add_action( 'admin_menu', array( $this, 'register_importer_page' ),20 ); |
|
153 | + add_action('init', array($this, 'load_plugin_textdomain')); |
|
154 | + add_action('admin_enqueue_scripts', array($this, 'admin_scripts'), 11); |
|
155 | + add_action('admin_menu', array($this, 'register_importer_page'), 20); |
|
156 | 156 | |
157 | 157 | require_once(WETU_IMPORTER_PATH.'classes/class-accommodation.php'); |
158 | 158 | require_once(WETU_IMPORTER_PATH.'classes/class-destination.php'); |
159 | 159 | require_once(WETU_IMPORTER_PATH.'classes/class-tours.php'); |
160 | 160 | |
161 | - add_action( 'init', array( $this, 'load_class' ) ); |
|
161 | + add_action('init', array($this, 'load_class')); |
|
162 | 162 | |
163 | - if('default' !== $this->tab_slug){ |
|
164 | - add_action('wp_ajax_lsx_tour_importer',array($this,'process_ajax_search')); |
|
165 | - add_action('wp_ajax_nopriv_lsx_tour_importer',array($this,'process_ajax_search')); |
|
163 | + if ('default' !== $this->tab_slug) { |
|
164 | + add_action('wp_ajax_lsx_tour_importer', array($this, 'process_ajax_search')); |
|
165 | + add_action('wp_ajax_nopriv_lsx_tour_importer', array($this, 'process_ajax_search')); |
|
166 | 166 | |
167 | - add_action('wp_ajax_lsx_import_items',array($this,'process_ajax_import')); |
|
168 | - add_action('wp_ajax_nopriv_lsx_import_items',array($this,'process_ajax_import')); |
|
167 | + add_action('wp_ajax_lsx_import_items', array($this, 'process_ajax_import')); |
|
168 | + add_action('wp_ajax_nopriv_lsx_import_items', array($this, 'process_ajax_import')); |
|
169 | 169 | } |
170 | 170 | } |
171 | 171 | |
@@ -177,25 +177,25 @@ discard block |
||
177 | 177 | * @since 1.0.0 |
178 | 178 | */ |
179 | 179 | public function load_plugin_textdomain() { |
180 | - load_plugin_textdomain( 'wetu-importer', FALSE, basename( WETU_IMPORTER_PATH ) . '/languages'); |
|
180 | + load_plugin_textdomain('wetu-importer', FALSE, basename(WETU_IMPORTER_PATH).'/languages'); |
|
181 | 181 | } |
182 | 182 | |
183 | 183 | /** |
184 | 184 | * Sets the variables used throughout the plugin. |
185 | 185 | */ |
186 | 186 | public function set_variables() { |
187 | - $this->post_types = array('accommodation','destination','tour'); |
|
188 | - $temp_options = get_option('_lsx-to_settings',false); |
|
187 | + $this->post_types = array('accommodation', 'destination', 'tour'); |
|
188 | + $temp_options = get_option('_lsx-to_settings', false); |
|
189 | 189 | |
190 | - if(isset($_GET['tab']) || isset($_POST['type'])) { |
|
191 | - if(isset($_GET['tab'])) { |
|
190 | + if (isset($_GET['tab']) || isset($_POST['type'])) { |
|
191 | + if (isset($_GET['tab'])) { |
|
192 | 192 | $this->tab_slug = $_GET['tab']; |
193 | - }else{ |
|
193 | + }else { |
|
194 | 194 | $this->tab_slug = $_POST['type']; |
195 | 195 | } |
196 | 196 | } |
197 | 197 | |
198 | - if(isset($temp_options[$this->plugin_slug])) { |
|
198 | + if (isset($temp_options[$this->plugin_slug])) { |
|
199 | 199 | $this->options = $temp_options[$this->plugin_slug]; |
200 | 200 | |
201 | 201 | $this->api_key = false; |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | if (isset($this->options['cropping']) && '' !== $this->options['cropping']) { |
227 | 227 | $cropping = $this->options['cropping']; |
228 | 228 | } |
229 | - $this->image_scaling_url = 'https://wetu.com/ImageHandler/' . $cropping . $width . 'x' . $height . '/'; |
|
229 | + $this->image_scaling_url = 'https://wetu.com/ImageHandler/'.$cropping.$width.'x'.$height.'/'; |
|
230 | 230 | } |
231 | 231 | } |
232 | 232 | } |
@@ -249,7 +249,7 @@ discard block |
||
249 | 249 | * @since 1.0.0 |
250 | 250 | */ |
251 | 251 | public static function compatible_version() { |
252 | - if ( version_compare( PHP_VERSION, '5.6', '<' ) ) { |
|
252 | + if (version_compare(PHP_VERSION, '5.6', '<')) { |
|
253 | 253 | return false; |
254 | 254 | } |
255 | 255 | |
@@ -263,13 +263,13 @@ discard block |
||
263 | 263 | * @since 1.0.0 |
264 | 264 | */ |
265 | 265 | public function compatible_version_check() { |
266 | - if ( ! self::compatible_version() ) { |
|
267 | - if ( is_plugin_active( plugin_basename( WETU_IMPORTER_CORE ) ) ) { |
|
268 | - deactivate_plugins( plugin_basename( WETU_IMPORTER_CORE ) ); |
|
269 | - add_action( 'admin_notices', array( $this, 'compatible_version_notice' ) ); |
|
266 | + if (!self::compatible_version()) { |
|
267 | + if (is_plugin_active(plugin_basename(WETU_IMPORTER_CORE))) { |
|
268 | + deactivate_plugins(plugin_basename(WETU_IMPORTER_CORE)); |
|
269 | + add_action('admin_notices', array($this, 'compatible_version_notice')); |
|
270 | 270 | |
271 | - if ( isset( $_GET['activate'] ) ) { |
|
272 | - unset( $_GET['activate'] ); |
|
271 | + if (isset($_GET['activate'])) { |
|
272 | + unset($_GET['activate']); |
|
273 | 273 | } |
274 | 274 | } |
275 | 275 | } |
@@ -282,8 +282,8 @@ discard block |
||
282 | 282 | */ |
283 | 283 | public function compatible_version_notice() { |
284 | 284 | $class = 'notice notice-error'; |
285 | - $message = esc_html__( 'Wetu Importer Plugin requires PHP 5.6 or higher.', 'wetu-importer' ); |
|
286 | - printf( '<div class="%1$s"><p>%2$s</p></div>', esc_html( $class ), esc_html( $message ) ); |
|
285 | + $message = esc_html__('Wetu Importer Plugin requires PHP 5.6 or higher.', 'wetu-importer'); |
|
286 | + printf('<div class="%1$s"><p>%2$s</p></div>', esc_html($class), esc_html($message)); |
|
287 | 287 | } |
288 | 288 | |
289 | 289 | /** |
@@ -293,9 +293,9 @@ discard block |
||
293 | 293 | * @since 1.0.0 |
294 | 294 | */ |
295 | 295 | public static function compatible_version_check_on_activation() { |
296 | - if ( ! self::compatible_version() ) { |
|
297 | - deactivate_plugins( plugin_basename( WETU_IMPORTER_CORE ) ); |
|
298 | - wp_die( esc_html__( 'Wetu Importer Plugin requires PHP 5.6 or higher.', 'wetu-importer' ) ); |
|
296 | + if (!self::compatible_version()) { |
|
297 | + deactivate_plugins(plugin_basename(WETU_IMPORTER_CORE)); |
|
298 | + wp_die(esc_html__('Wetu Importer Plugin requires PHP 5.6 or higher.', 'wetu-importer')); |
|
299 | 299 | } |
300 | 300 | } |
301 | 301 | |
@@ -304,9 +304,9 @@ discard block |
||
304 | 304 | /* |
305 | 305 | * Load the importer class you want to use |
306 | 306 | */ |
307 | - public function load_class(){ |
|
307 | + public function load_class() { |
|
308 | 308 | |
309 | - switch($this->tab_slug){ |
|
309 | + switch ($this->tab_slug) { |
|
310 | 310 | case 'accommodation': |
311 | 311 | $this->current_importer = new WETU_Importer_Accommodation(); |
312 | 312 | break; |
@@ -330,25 +330,25 @@ discard block |
||
330 | 330 | * Registers the admin page which will house the importer form. |
331 | 331 | */ |
332 | 332 | public function register_importer_page() { |
333 | - add_submenu_page( 'tour-operator',esc_html__( 'Importer', 'tour-operator' ), esc_html__( 'Importer', 'tour-operator' ), 'manage_options', 'wetu-importer', array( $this, 'display_page' ) ); |
|
333 | + add_submenu_page('tour-operator', esc_html__('Importer', 'tour-operator'), esc_html__('Importer', 'tour-operator'), 'manage_options', 'wetu-importer', array($this, 'display_page')); |
|
334 | 334 | } |
335 | 335 | |
336 | 336 | /** |
337 | 337 | * Enqueue the JS needed to contact wetu and return your result. |
338 | 338 | */ |
339 | 339 | public function admin_scripts() { |
340 | - if ( defined( 'WP_DEBUG' ) && true === WP_DEBUG ) { |
|
340 | + if (defined('WP_DEBUG') && true === WP_DEBUG) { |
|
341 | 341 | $min = ''; |
342 | - } else { |
|
342 | + }else { |
|
343 | 343 | $min = '.min'; |
344 | 344 | } |
345 | 345 | $min = ''; |
346 | 346 | |
347 | - if(is_admin() && isset($_GET['page']) && $this->plugin_slug === $_GET['page']){ |
|
348 | - wp_enqueue_script( 'wetu-importers-script', WETU_IMPORTER_URL . 'assets/js/wetu-importer' . $min . '.js', array( 'jquery' ), WETU_IMPORTER_VER, true ); |
|
349 | - wp_localize_script( 'wetu-importers-script', 'lsx_tour_importer_params', array( |
|
347 | + if (is_admin() && isset($_GET['page']) && $this->plugin_slug === $_GET['page']) { |
|
348 | + wp_enqueue_script('wetu-importers-script', WETU_IMPORTER_URL.'assets/js/wetu-importer'.$min.'.js', array('jquery'), WETU_IMPORTER_VER, true); |
|
349 | + wp_localize_script('wetu-importers-script', 'lsx_tour_importer_params', array( |
|
350 | 350 | 'ajax_url' => admin_url('admin-ajax.php'), |
351 | - ) ); |
|
351 | + )); |
|
352 | 352 | } |
353 | 353 | } |
354 | 354 | |
@@ -360,25 +360,25 @@ discard block |
||
360 | 360 | <div class="wrap"> |
361 | 361 | <?php screen_icon(); ?> |
362 | 362 | |
363 | - <?php if(!is_object($this->current_importer)){ |
|
363 | + <?php if (!is_object($this->current_importer)) { |
|
364 | 364 | ?> |
365 | - <h2><?php _e('Welcome to the LSX Wetu Importer','wetu-importer'); ?></h2> |
|
365 | + <h2><?php _e('Welcome to the LSX Wetu Importer', 'wetu-importer'); ?></h2> |
|
366 | 366 | <p>If this is the first time you are running the import, then follow the steps below.</p> |
367 | 367 | <ul> |
368 | - <li>Step 1 - Import your <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=tour"><?php _e('Tours','wetu-importer'); ?></a></li> |
|
369 | - <li>Step 2 - The tour import will have created draft <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=accommodation"><?php _e('accommodation','wetu-importer'); ?></a> that will need to be imported.</li> |
|
370 | - <li>Step 3 - Lastly import the <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=destination"><?php _e('destinations','wetu-importer'); ?></a> draft posts created during the previous two steps.</li> |
|
368 | + <li>Step 1 - Import your <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=tour"><?php _e('Tours', 'wetu-importer'); ?></a></li> |
|
369 | + <li>Step 2 - The tour import will have created draft <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=accommodation"><?php _e('accommodation', 'wetu-importer'); ?></a> that will need to be imported.</li> |
|
370 | + <li>Step 3 - Lastly import the <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=destination"><?php _e('destinations', 'wetu-importer'); ?></a> draft posts created during the previous two steps.</li> |
|
371 | 371 | </ul> |
372 | 372 | |
373 | - <h3><?php _e('Additional Tools','wetu-importer'); ?></h3> |
|
373 | + <h3><?php _e('Additional Tools', 'wetu-importer'); ?></h3> |
|
374 | 374 | <ul> |
375 | - <li><a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=connect_accommodation"><?php _e('Connect Accommodation','wetu-importer'); ?></a> <small><?php _e('If you already have accommodation, you can "connect" it with its WETU counter part, so it works with the importer.','wetu-importer'); ?></small></li> |
|
376 | - <?php if(class_exists('Lsx_Banners')){ ?> |
|
377 | - <li><a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=banners"><?php _e('Sync High Res Banner Images','wetu-importer'); ?></a></li> |
|
375 | + <li><a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=connect_accommodation"><?php _e('Connect Accommodation', 'wetu-importer'); ?></a> <small><?php _e('If you already have accommodation, you can "connect" it with its WETU counter part, so it works with the importer.', 'wetu-importer'); ?></small></li> |
|
376 | + <?php if (class_exists('Lsx_Banners')) { ?> |
|
377 | + <li><a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=banners"><?php _e('Sync High Res Banner Images', 'wetu-importer'); ?></a></li> |
|
378 | 378 | <?php } ?> |
379 | 379 | </ul> |
380 | 380 | <?php |
381 | - }else{ |
|
381 | + }else { |
|
382 | 382 | $this->current_importer->display_page(); |
383 | 383 | }; ?> |
384 | 384 | </div> |
@@ -393,30 +393,30 @@ discard block |
||
393 | 393 | <form class="ajax-form" id="<?php echo $this->plugin_slug; ?>-search-form" method="get" action="tools.php" data-type="<?php echo $this->tab_slug; ?>"> |
394 | 394 | <input type="hidden" name="page" value="<?php echo $this->tab_slug; ?>" /> |
395 | 395 | |
396 | - <h3><span class="dashicons dashicons-search"></span> <?php _e('Search','wetu-importer'); ?></h3> |
|
396 | + <h3><span class="dashicons dashicons-search"></span> <?php _e('Search', 'wetu-importer'); ?></h3> |
|
397 | 397 | <div class="normal-search"> |
398 | - <input pattern=".{3,}" placeholder="3 characters minimum" class="keyword" name="keyword" value=""> <input class="button button-primary submit" type="submit" value="<?php _e('Search','wetu-importer'); ?>" /> |
|
398 | + <input pattern=".{3,}" placeholder="3 characters minimum" class="keyword" name="keyword" value=""> <input class="button button-primary submit" type="submit" value="<?php _e('Search', 'wetu-importer'); ?>" /> |
|
399 | 399 | </div> |
400 | 400 | <div class="advanced-search hidden" style="display:none;"> |
401 | - <p><?php _e('Enter several keywords, each on a new line.','wetu-importer'); ?></p> |
|
401 | + <p><?php _e('Enter several keywords, each on a new line.', 'wetu-importer'); ?></p> |
|
402 | 402 | <textarea rows="10" cols="40" name="bulk-keywords"></textarea> |
403 | - <input class="button button-primary submit" type="submit" value="<?php _e('Search','wetu-importer'); ?>" /> |
|
403 | + <input class="button button-primary submit" type="submit" value="<?php _e('Search', 'wetu-importer'); ?>" /> |
|
404 | 404 | </div> |
405 | 405 | |
406 | 406 | <p> |
407 | - <a class="advanced-search-toggle" href="#"><?php _e('Bulk Search','wetu-importer'); ?></a> | |
|
408 | - <a class="published search-toggle" href="#publish"><?php esc_attr_e('Published','wetu-importer'); ?></a> | |
|
409 | - <a class="pending search-toggle" href="#pending"><?php esc_attr_e('Pending','wetu-importer'); ?></a> | |
|
410 | - <a class="draft search-toggle" href="#draft"><?php esc_attr_e('Draft','wetu-importer'); ?></a> | |
|
411 | - <a class="import search-toggle" href="#import"><?php esc_attr_e('WETU','wetu-importer'); ?></a> |
|
407 | + <a class="advanced-search-toggle" href="#"><?php _e('Bulk Search', 'wetu-importer'); ?></a> | |
|
408 | + <a class="published search-toggle" href="#publish"><?php esc_attr_e('Published', 'wetu-importer'); ?></a> | |
|
409 | + <a class="pending search-toggle" href="#pending"><?php esc_attr_e('Pending', 'wetu-importer'); ?></a> | |
|
410 | + <a class="draft search-toggle" href="#draft"><?php esc_attr_e('Draft', 'wetu-importer'); ?></a> | |
|
411 | + <a class="import search-toggle" href="#import"><?php esc_attr_e('WETU', 'wetu-importer'); ?></a> |
|
412 | 412 | </p> |
413 | 413 | |
414 | 414 | <div class="ajax-loader" style="display:none;width:100%;text-align:center;"> |
415 | - <img style="width:64px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif';?>" /> |
|
415 | + <img style="width:64px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif'; ?>" /> |
|
416 | 416 | </div> |
417 | 417 | |
418 | 418 | <div class="ajax-loader-small" style="display:none;width:100%;text-align:center;"> |
419 | - <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif';?>" /> |
|
419 | + <img style="width:32px;" src="<?php echo WETU_IMPORTER_URL.'assets/images/ajaxloader.gif'; ?>" /> |
|
420 | 420 | </div> |
421 | 421 | </form> |
422 | 422 | <?php |
@@ -465,15 +465,15 @@ discard block |
||
465 | 465 | * |
466 | 466 | * @param $tab string |
467 | 467 | */ |
468 | - public function navigation($tab='') { |
|
468 | + public function navigation($tab = '') { |
|
469 | 469 | $post_types = array( |
470 | - 'tour' => esc_attr('Tours','wetu-importer'), |
|
471 | - 'accommodation' => esc_attr('Accommodation','wetu-importer'), |
|
472 | - 'destination' => esc_attr('Destinations','wetu-importer'), |
|
470 | + 'tour' => esc_attr('Tours', 'wetu-importer'), |
|
471 | + 'accommodation' => esc_attr('Accommodation', 'wetu-importer'), |
|
472 | + 'destination' => esc_attr('Destinations', 'wetu-importer'), |
|
473 | 473 | ); |
474 | - echo '<div class="wet-navigation"><div class="subsubsub"><a class="'.$this->itemd($tab,'','current',false).'" href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'">'.esc_attr('Home','wetu-importer').'</a>'; |
|
475 | - foreach($post_types as $post_type => $label){ |
|
476 | - echo ' | <a class="'.$this->itemd($tab,$post_type,'current',false).'" href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab='.$post_type.'">'.$label.'</a>'; |
|
474 | + echo '<div class="wet-navigation"><div class="subsubsub"><a class="'.$this->itemd($tab, '', 'current', false).'" href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'">'.esc_attr('Home', 'wetu-importer').'</a>'; |
|
475 | + foreach ($post_types as $post_type => $label) { |
|
476 | + echo ' | <a class="'.$this->itemd($tab, $post_type, 'current', false).'" href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab='.$post_type.'">'.$label.'</a>'; |
|
477 | 477 | } |
478 | 478 | echo '</div><br clear="both"/></div>'; |
479 | 479 | } |
@@ -481,23 +481,23 @@ discard block |
||
481 | 481 | /** |
482 | 482 | * set_taxonomy with some terms |
483 | 483 | */ |
484 | - public function team_member_checkboxes($selected=array()) { |
|
485 | - if(post_type_exists('team')) { ?> |
|
484 | + public function team_member_checkboxes($selected = array()) { |
|
485 | + if (post_type_exists('team')) { ?> |
|
486 | 486 | <ul> |
487 | 487 | <?php |
488 | - $team_args=array( |
|
488 | + $team_args = array( |
|
489 | 489 | 'post_type' => 'team', |
490 | 490 | 'post_status' => 'publish', |
491 | 491 | 'nopagin' => true, |
492 | 492 | 'fields' => 'ids' |
493 | 493 | ); |
494 | 494 | $team_members = new WP_Query($team_args); |
495 | - if($team_members->have_posts()){ |
|
496 | - foreach($team_members->posts as $member){ ?> |
|
497 | - <li><input class="team" <?php $this->checked($selected,$member); ?> type="checkbox" value="<?php echo $member; ?>" /> <?php echo get_the_title($member); ?></li> |
|
495 | + if ($team_members->have_posts()) { |
|
496 | + foreach ($team_members->posts as $member) { ?> |
|
497 | + <li><input class="team" <?php $this->checked($selected, $member); ?> type="checkbox" value="<?php echo $member; ?>" /> <?php echo get_the_title($member); ?></li> |
|
498 | 498 | <?php } |
499 | - }else{ ?> |
|
500 | - <li><input class="team" type="checkbox" value="0" /> <?php _e('None','wetu-importer'); ?></li> |
|
499 | + }else { ?> |
|
500 | + <li><input class="team" type="checkbox" value="0" /> <?php _e('None', 'wetu-importer'); ?></li> |
|
501 | 501 | <?php } |
502 | 502 | ?> |
503 | 503 | </ul> |
@@ -514,12 +514,12 @@ discard block |
||
514 | 514 | * @param $needle string |
515 | 515 | * @param $echo bool |
516 | 516 | */ |
517 | - public function checked($haystack=false,$needle='',$echo=true) { |
|
518 | - $return = $this->itemd($haystack,$needle,'checked'); |
|
519 | - if('' !== $return) { |
|
517 | + public function checked($haystack = false, $needle = '', $echo = true) { |
|
518 | + $return = $this->itemd($haystack, $needle, 'checked'); |
|
519 | + if ('' !== $return) { |
|
520 | 520 | if (true === $echo) { |
521 | 521 | echo $return; |
522 | - } else { |
|
522 | + }else { |
|
523 | 523 | return $return; |
524 | 524 | } |
525 | 525 | } |
@@ -532,12 +532,12 @@ discard block |
||
532 | 532 | * @param $needle string |
533 | 533 | * @param $echo bool |
534 | 534 | */ |
535 | - public function selected($haystack=false,$needle='',$echo=true) { |
|
536 | - $return = $this->itemd($haystack,$needle,'selected'); |
|
537 | - if('' !== $return) { |
|
535 | + public function selected($haystack = false, $needle = '', $echo = true) { |
|
536 | + $return = $this->itemd($haystack, $needle, 'selected'); |
|
537 | + if ('' !== $return) { |
|
538 | 538 | if (true === $echo) { |
539 | 539 | echo $return; |
540 | - } else { |
|
540 | + }else { |
|
541 | 541 | return $return; |
542 | 542 | } |
543 | 543 | } |
@@ -552,16 +552,16 @@ discard block |
||
552 | 552 | * @param $wrap bool |
553 | 553 | * @return $html string |
554 | 554 | */ |
555 | - public function itemd($haystack=false,$needle='',$type='',$wrap=true) { |
|
555 | + public function itemd($haystack = false, $needle = '', $type = '', $wrap = true) { |
|
556 | 556 | $html = ''; |
557 | - if('' !== $type) { |
|
557 | + if ('' !== $type) { |
|
558 | 558 | if (!is_array($haystack)) { |
559 | 559 | $haystack = array($haystack); |
560 | 560 | } |
561 | 561 | if (in_array($needle, $haystack)) { |
562 | - if(true === $wrap || 'true' === $wrap) { |
|
563 | - $html = $type . '="' . $type . '"'; |
|
564 | - }else{ |
|
562 | + if (true === $wrap || 'true' === $wrap) { |
|
563 | + $html = $type.'="'.$type.'"'; |
|
564 | + }else { |
|
565 | 565 | $html = $type; |
566 | 566 | } |
567 | 567 | } |
@@ -573,9 +573,9 @@ discard block |
||
573 | 573 | /** |
574 | 574 | * grabs any attachments for the current item |
575 | 575 | */ |
576 | - public function find_attachments($id=false) { |
|
577 | - if(false !== $id){ |
|
578 | - if(empty($this->found_attachments)){ |
|
576 | + public function find_attachments($id = false) { |
|
577 | + if (false !== $id) { |
|
578 | + if (empty($this->found_attachments)) { |
|
579 | 579 | |
580 | 580 | $attachments_args = array( |
581 | 581 | 'post_parent' => $id, |
@@ -587,9 +587,9 @@ discard block |
||
587 | 587 | ); |
588 | 588 | |
589 | 589 | $attachments = new WP_Query($attachments_args); |
590 | - if($attachments->have_posts()){ |
|
591 | - foreach($attachments->posts as $attachment){ |
|
592 | - $this->found_attachments[$attachment->ID] = str_replace(array('.jpg','.png','.jpeg'),'',$attachment->post_title); |
|
590 | + if ($attachments->have_posts()) { |
|
591 | + foreach ($attachments->posts as $attachment) { |
|
592 | + $this->found_attachments[$attachment->ID] = str_replace(array('.jpg', '.png', '.jpeg'), '', $attachment->post_title); |
|
593 | 593 | $this->gallery_meta[] = $attachment->ID; |
594 | 594 | } |
595 | 595 | } |
@@ -603,18 +603,18 @@ discard block |
||
603 | 603 | /** |
604 | 604 | * Saves the room data |
605 | 605 | */ |
606 | - public function save_custom_field($value=false,$meta_key,$id,$decrease=false,$unique=true) { |
|
607 | - if(false !== $value){ |
|
608 | - if(false !== $decrease){ |
|
606 | + public function save_custom_field($value = false, $meta_key, $id, $decrease = false, $unique = true) { |
|
607 | + if (false !== $value) { |
|
608 | + if (false !== $decrease) { |
|
609 | 609 | $value = intval($value); |
610 | 610 | $value--; |
611 | 611 | } |
612 | - $prev = get_post_meta($id,$meta_key,true); |
|
612 | + $prev = get_post_meta($id, $meta_key, true); |
|
613 | 613 | |
614 | - if(false !== $id && '0' !== $id && false !== $prev && true === $unique){ |
|
615 | - update_post_meta($id,$meta_key,$value,$prev); |
|
616 | - }else{ |
|
617 | - add_post_meta($id,$meta_key,$value,$unique); |
|
614 | + if (false !== $id && '0' !== $id && false !== $prev && true === $unique) { |
|
615 | + update_post_meta($id, $meta_key, $value, $prev); |
|
616 | + }else { |
|
617 | + add_post_meta($id, $meta_key, $value, $unique); |
|
618 | 618 | } |
619 | 619 | } |
620 | 620 | } |
@@ -623,12 +623,12 @@ discard block |
||
623 | 623 | * Grabs the custom fields, and resaves an array of unique items. |
624 | 624 | */ |
625 | 625 | public function cleanup_posts() { |
626 | - if(!empty($this->cleanup_posts)){ |
|
627 | - foreach($this->cleanup_posts as $id => $key) { |
|
626 | + if (!empty($this->cleanup_posts)) { |
|
627 | + foreach ($this->cleanup_posts as $id => $key) { |
|
628 | 628 | $prev_items = get_post_meta($id, $key, false); |
629 | 629 | $new_items = array_unique($prev_items); |
630 | 630 | delete_post_meta($id, $key); |
631 | - foreach($new_items as $new_item) { |
|
631 | + foreach ($new_items as $new_item) { |
|
632 | 632 | add_post_meta($id, $key, $new_item, false); |
633 | 633 | } |
634 | 634 | } |
@@ -640,51 +640,51 @@ discard block |
||
640 | 640 | /** |
641 | 641 | * set_taxonomy with some terms |
642 | 642 | */ |
643 | - public function set_taxonomy($taxonomy,$terms,$id) { |
|
644 | - $result=array(); |
|
645 | - if(!empty($data)) |
|
643 | + public function set_taxonomy($taxonomy, $terms, $id) { |
|
644 | + $result = array(); |
|
645 | + if (!empty($data)) |
|
646 | 646 | { |
647 | - foreach($data as $k) |
|
647 | + foreach ($data as $k) |
|
648 | 648 | { |
649 | - if($id) |
|
649 | + if ($id) |
|
650 | 650 | { |
651 | - if(!$term = term_exists(trim($k), $tax)) |
|
651 | + if (!$term = term_exists(trim($k), $tax)) |
|
652 | 652 | { |
653 | 653 | $term = wp_insert_term(trim($k), $tax); |
654 | - if ( is_wp_error($term) ) |
|
654 | + if (is_wp_error($term)) |
|
655 | 655 | { |
656 | 656 | echo $term->get_error_message(); |
657 | 657 | } |
658 | 658 | else |
659 | 659 | { |
660 | - wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); |
|
660 | + wp_set_object_terms($id, intval($term['term_id']), $taxonomy, true); |
|
661 | 661 | } |
662 | 662 | } |
663 | 663 | else |
664 | 664 | { |
665 | - wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); |
|
665 | + wp_set_object_terms($id, intval($term['term_id']), $taxonomy, true); |
|
666 | 666 | } |
667 | 667 | } |
668 | 668 | else |
669 | 669 | { |
670 | - $result[]=trim($k); |
|
670 | + $result[] = trim($k); |
|
671 | 671 | } |
672 | 672 | } |
673 | 673 | } |
674 | 674 | return $result; |
675 | 675 | } |
676 | 676 | |
677 | - public function set_term($id=false,$name=false,$taxonomy=false,$parent=false){ |
|
678 | - if(!$term = term_exists($name, $taxonomy)) |
|
677 | + public function set_term($id = false, $name = false, $taxonomy = false, $parent = false) { |
|
678 | + if (!$term = term_exists($name, $taxonomy)) |
|
679 | 679 | { |
680 | - if(false !== $parent){ $parent = array('parent'=>$parent); } |
|
681 | - $term = wp_insert_term(trim($name), $taxonomy,$parent); |
|
682 | - if ( is_wp_error($term) ){echo $term->get_error_message();} |
|
683 | - else { wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); } |
|
680 | + if (false !== $parent) { $parent = array('parent'=>$parent); } |
|
681 | + $term = wp_insert_term(trim($name), $taxonomy, $parent); |
|
682 | + if (is_wp_error($term)) {echo $term->get_error_message(); } |
|
683 | + else { wp_set_object_terms($id, intval($term['term_id']), $taxonomy, true); } |
|
684 | 684 | } |
685 | 685 | else |
686 | 686 | { |
687 | - wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); |
|
687 | + wp_set_object_terms($id, intval($term['term_id']), $taxonomy, true); |
|
688 | 688 | } |
689 | 689 | return $term['term_id']; |
690 | 690 | } |
@@ -692,18 +692,18 @@ discard block |
||
692 | 692 | /** |
693 | 693 | * set_taxonomy with some terms |
694 | 694 | */ |
695 | - public function taxonomy_checkboxes($taxonomy=false,$selected=array()) { |
|
695 | + public function taxonomy_checkboxes($taxonomy = false, $selected = array()) { |
|
696 | 696 | $return = ''; |
697 | - if(false !== $taxonomy){ |
|
697 | + if (false !== $taxonomy) { |
|
698 | 698 | $return .= '<ul>'; |
699 | - $terms = get_terms(array('taxonomy'=>$taxonomy,'hide_empty'=>false)); |
|
699 | + $terms = get_terms(array('taxonomy'=>$taxonomy, 'hide_empty'=>false)); |
|
700 | 700 | |
701 | - if(!is_wp_error($terms)){ |
|
702 | - foreach($terms as $term){ |
|
703 | - $return .= '<li><input class="'.$taxonomy.'" '.$this->checked($selected,$term->term_id,false).' type="checkbox" value="'.$term->term_id.'" /> '.$term->name.'</li>'; |
|
701 | + if (!is_wp_error($terms)) { |
|
702 | + foreach ($terms as $term) { |
|
703 | + $return .= '<li><input class="'.$taxonomy.'" '.$this->checked($selected, $term->term_id, false).' type="checkbox" value="'.$term->term_id.'" /> '.$term->name.'</li>'; |
|
704 | 704 | } |
705 | - }else{ |
|
706 | - $return .= '<li><input type="checkbox" value="" /> '.__('None','wetu-importer').'</li>'; |
|
705 | + }else { |
|
706 | + $return .= '<li><input type="checkbox" value="" /> '.__('None', 'wetu-importer').'</li>'; |
|
707 | 707 | } |
708 | 708 | $return .= '</ul>'; |
709 | 709 | } |
@@ -714,53 +714,53 @@ discard block |
||
714 | 714 | /** |
715 | 715 | * Saves the longitude and lattitude, as well as sets the map marker. |
716 | 716 | */ |
717 | - public function set_map_data($data,$id,$zoom = '10') { |
|
717 | + public function set_map_data($data, $id, $zoom = '10') { |
|
718 | 718 | $longitude = $latitude = $address = false; |
719 | 719 | |
720 | - if(isset($data[0]['position'])){ |
|
720 | + if (isset($data[0]['position'])) { |
|
721 | 721 | |
722 | - if(isset($data[0]['position']['driving_latitude'])){ |
|
722 | + if (isset($data[0]['position']['driving_latitude'])) { |
|
723 | 723 | $latitude = $data[0]['position']['driving_latitude']; |
724 | - }elseif(isset($data[0]['position']['latitude'])){ |
|
724 | + }elseif (isset($data[0]['position']['latitude'])) { |
|
725 | 725 | $latitude = $data[0]['position']['latitude']; |
726 | 726 | } |
727 | 727 | |
728 | - if(isset($data[0]['position']['driving_longitude'])){ |
|
728 | + if (isset($data[0]['position']['driving_longitude'])) { |
|
729 | 729 | $longitude = $data[0]['position']['driving_longitude']; |
730 | - }elseif(isset($data[0]['position']['longitude'])){ |
|
730 | + }elseif (isset($data[0]['position']['longitude'])) { |
|
731 | 731 | $longitude = $data[0]['position']['longitude']; |
732 | 732 | } |
733 | 733 | |
734 | 734 | } |
735 | - if(isset($data[0]['content']) && isset($data[0]['content']['contact_information'])){ |
|
736 | - if(isset($data[0]['content']['contact_information']['address'])){ |
|
735 | + if (isset($data[0]['content']) && isset($data[0]['content']['contact_information'])) { |
|
736 | + if (isset($data[0]['content']['contact_information']['address'])) { |
|
737 | 737 | $address = strip_tags($data[0]['content']['contact_information']['address']); |
738 | 738 | |
739 | - $address = explode("\n",$address); |
|
740 | - foreach($address as $bitkey => $bit){ |
|
739 | + $address = explode("\n", $address); |
|
740 | + foreach ($address as $bitkey => $bit) { |
|
741 | 741 | $bit = ltrim(rtrim($bit)); |
742 | - if(false === $bit || '' === $bit || null === $bit or empty($bit)){ |
|
742 | + if (false === $bit || '' === $bit || null === $bit or empty($bit)) { |
|
743 | 743 | unset($address[$bitkey]); |
744 | 744 | } |
745 | 745 | } |
746 | - $address = implode(', ',$address); |
|
746 | + $address = implode(', ', $address); |
|
747 | 747 | $address = str_replace(', , ', ', ', $address); |
748 | 748 | } |
749 | 749 | } |
750 | 750 | |
751 | - if(false !== $longitude){ |
|
751 | + if (false !== $longitude) { |
|
752 | 752 | $location_data = array( |
753 | - 'address' => (string)$address, |
|
754 | - 'lat' => (string)$latitude, |
|
755 | - 'long' => (string)$longitude, |
|
756 | - 'zoom' => (string)$zoom, |
|
753 | + 'address' => (string) $address, |
|
754 | + 'lat' => (string) $latitude, |
|
755 | + 'long' => (string) $longitude, |
|
756 | + 'zoom' => (string) $zoom, |
|
757 | 757 | 'elevation' => '', |
758 | 758 | ); |
759 | - if(false !== $id && '0' !== $id){ |
|
760 | - $prev = get_post_meta($id,'location',true); |
|
761 | - update_post_meta($id,'location',$location_data,$prev); |
|
762 | - }else{ |
|
763 | - add_post_meta($id,'location',$location_data,true); |
|
759 | + if (false !== $id && '0' !== $id) { |
|
760 | + $prev = get_post_meta($id, 'location', true); |
|
761 | + update_post_meta($id, 'location', $location_data, $prev); |
|
762 | + }else { |
|
763 | + add_post_meta($id, 'location', $location_data, true); |
|
764 | 764 | } |
765 | 765 | } |
766 | 766 | } |
@@ -770,16 +770,16 @@ discard block |
||
770 | 770 | /** |
771 | 771 | * Creates the main gallery data |
772 | 772 | */ |
773 | - public function set_featured_image($data,$id) { |
|
774 | - if(is_array($data[0]['content']['images']) && !empty($data[0]['content']['images'])){ |
|
775 | - $this->featured_image = $this->attach_image($data[0]['content']['images'][0],$id); |
|
773 | + public function set_featured_image($data, $id) { |
|
774 | + if (is_array($data[0]['content']['images']) && !empty($data[0]['content']['images'])) { |
|
775 | + $this->featured_image = $this->attach_image($data[0]['content']['images'][0], $id); |
|
776 | 776 | |
777 | - if(false !== $this->featured_image){ |
|
778 | - delete_post_meta($id,'_thumbnail_id'); |
|
779 | - add_post_meta($id,'_thumbnail_id',$this->featured_image,true); |
|
777 | + if (false !== $this->featured_image) { |
|
778 | + delete_post_meta($id, '_thumbnail_id'); |
|
779 | + add_post_meta($id, '_thumbnail_id', $this->featured_image, true); |
|
780 | 780 | |
781 | - if(!empty($this->gallery_meta) && !in_array($this->featured_image,$this->gallery_meta)){ |
|
782 | - add_post_meta($id,'gallery',$this->featured_image,false); |
|
781 | + if (!empty($this->gallery_meta) && !in_array($this->featured_image, $this->gallery_meta)) { |
|
782 | + add_post_meta($id, 'gallery', $this->featured_image, false); |
|
783 | 783 | $this->gallery_meta[] = $this->featured_image; |
784 | 784 | } |
785 | 785 | } |
@@ -789,17 +789,17 @@ discard block |
||
789 | 789 | /** |
790 | 790 | * Sets a banner image |
791 | 791 | */ |
792 | - public function set_banner_image($data,$id) { |
|
793 | - if(is_array($data[0]['content']['images']) && !empty($data[0]['content']['images'])){ |
|
794 | - $this->banner_image = $this->attach_image($data[0]['content']['images'][1],$id,array('width'=>'1920','height'=>'800','cropping'=>'c')); |
|
792 | + public function set_banner_image($data, $id) { |
|
793 | + if (is_array($data[0]['content']['images']) && !empty($data[0]['content']['images'])) { |
|
794 | + $this->banner_image = $this->attach_image($data[0]['content']['images'][1], $id, array('width'=>'1920', 'height'=>'800', 'cropping'=>'c')); |
|
795 | 795 | |
796 | - if(false !== $this->banner_image){ |
|
797 | - delete_post_meta($id,'image_group'); |
|
796 | + if (false !== $this->banner_image) { |
|
797 | + delete_post_meta($id, 'image_group'); |
|
798 | 798 | $new_banner = array('banner_image'=>array('cmb-field-0'=>$this->banner_image)); |
799 | - add_post_meta($id,'image_group',$new_banner,true); |
|
799 | + add_post_meta($id, 'image_group', $new_banner, true); |
|
800 | 800 | |
801 | - if(!empty($this->gallery_meta) && !in_array($this->banner_image,$this->gallery_meta)){ |
|
802 | - add_post_meta($id,'gallery',$this->banner_image,false); |
|
801 | + if (!empty($this->gallery_meta) && !in_array($this->banner_image, $this->gallery_meta)) { |
|
802 | + add_post_meta($id, 'gallery', $this->banner_image, false); |
|
803 | 803 | $this->gallery_meta[] = $this->banner_image; |
804 | 804 | } |
805 | 805 | } |
@@ -809,24 +809,24 @@ discard block |
||
809 | 809 | /** |
810 | 810 | * Creates the main gallery data |
811 | 811 | */ |
812 | - public function create_main_gallery($data,$id) { |
|
812 | + public function create_main_gallery($data, $id) { |
|
813 | 813 | |
814 | - if(is_array($data[0]['content']['images']) && !empty($data[0]['content']['images'])){ |
|
814 | + if (is_array($data[0]['content']['images']) && !empty($data[0]['content']['images'])) { |
|
815 | 815 | $counter = 0; |
816 | - foreach($data[0]['content']['images'] as $image_data){ |
|
817 | - if($counter === 0 && false !== $this->featured_image){$counter++;continue;} |
|
818 | - if($counter === 1 && false !== $this->banner_image){$counter++;continue;} |
|
816 | + foreach ($data[0]['content']['images'] as $image_data) { |
|
817 | + if ($counter === 0 && false !== $this->featured_image) {$counter++; continue; } |
|
818 | + if ($counter === 1 && false !== $this->banner_image) {$counter++; continue; } |
|
819 | 819 | |
820 | - $this->gallery_meta[] = $this->attach_image($image_data,$id); |
|
820 | + $this->gallery_meta[] = $this->attach_image($image_data, $id); |
|
821 | 821 | $counter++; |
822 | 822 | } |
823 | 823 | |
824 | - if(!empty($this->gallery_meta)){ |
|
825 | - delete_post_meta($id,'gallery'); |
|
824 | + if (!empty($this->gallery_meta)) { |
|
825 | + delete_post_meta($id, 'gallery'); |
|
826 | 826 | $this->gallery_meta = array_unique($this->gallery_meta); |
827 | - foreach($this->gallery_meta as $gallery_id){ |
|
828 | - if(false !== $gallery_id && '' !== $gallery_id && !is_array($gallery_id)){ |
|
829 | - add_post_meta($id,'gallery',$gallery_id,false); |
|
827 | + foreach ($this->gallery_meta as $gallery_id) { |
|
828 | + if (false !== $gallery_id && '' !== $gallery_id && !is_array($gallery_id)) { |
|
829 | + add_post_meta($id, 'gallery', $gallery_id, false); |
|
830 | 830 | } |
831 | 831 | } |
832 | 832 | } |
@@ -836,27 +836,27 @@ discard block |
||
836 | 836 | /** |
837 | 837 | * search_form |
838 | 838 | */ |
839 | - public function get_scaling_url($args=array()) { |
|
839 | + public function get_scaling_url($args = array()) { |
|
840 | 840 | |
841 | 841 | $defaults = array( |
842 | 842 | 'width' => '640', |
843 | 843 | 'height' => '480', |
844 | 844 | 'cropping' => 'c' |
845 | 845 | ); |
846 | - if(false !== $this->options){ |
|
847 | - if(isset($this->options['width']) && '' !== $this->options['width']){ |
|
846 | + if (false !== $this->options) { |
|
847 | + if (isset($this->options['width']) && '' !== $this->options['width']) { |
|
848 | 848 | $defaults['width'] = $this->options['width']; |
849 | 849 | } |
850 | 850 | |
851 | - if(isset($this->options['height']) && '' !== $this->options['height']){ |
|
851 | + if (isset($this->options['height']) && '' !== $this->options['height']) { |
|
852 | 852 | $defaults['height'] = $this->options['height']; |
853 | 853 | } |
854 | 854 | |
855 | - if(isset($this->options['cropping']) && '' !== $this->options['cropping']){ |
|
855 | + if (isset($this->options['cropping']) && '' !== $this->options['cropping']) { |
|
856 | 856 | $defaults['cropping'] = $this->options['cropping']; |
857 | 857 | } |
858 | 858 | } |
859 | - $args = wp_parse_args($args,$defaults); |
|
859 | + $args = wp_parse_args($args, $defaults); |
|
860 | 860 | |
861 | 861 | $cropping = $args['cropping']; |
862 | 862 | $width = $args['width']; |
@@ -869,40 +869,40 @@ discard block |
||
869 | 869 | /** |
870 | 870 | * Attaches 1 image |
871 | 871 | */ |
872 | - public function attach_image($v=false,$parent_id,$image_sizes=false){ |
|
873 | - if(false !== $v){ |
|
874 | - $temp_fragment = explode('/',$v['url_fragment']); |
|
875 | - $url_filename = $temp_fragment[count($temp_fragment)-1]; |
|
876 | - $url_filename = str_replace(array('.jpg','.png','.jpeg'),'',$url_filename); |
|
877 | - |
|
878 | - if(in_array($url_filename,$this->found_attachments)){ |
|
879 | - return array_search($url_filename,$this->found_attachments); |
|
872 | + public function attach_image($v = false, $parent_id, $image_sizes = false) { |
|
873 | + if (false !== $v) { |
|
874 | + $temp_fragment = explode('/', $v['url_fragment']); |
|
875 | + $url_filename = $temp_fragment[count($temp_fragment) - 1]; |
|
876 | + $url_filename = str_replace(array('.jpg', '.png', '.jpeg'), '', $url_filename); |
|
877 | + |
|
878 | + if (in_array($url_filename, $this->found_attachments)) { |
|
879 | + return array_search($url_filename, $this->found_attachments); |
|
880 | 880 | } |
881 | 881 | |
882 | - $postdata=array(); |
|
883 | - if(empty($v['label'])) |
|
882 | + $postdata = array(); |
|
883 | + if (empty($v['label'])) |
|
884 | 884 | { |
885 | - $v['label']=''; |
|
885 | + $v['label'] = ''; |
|
886 | 886 | } |
887 | - if(!empty($v['description'])) |
|
887 | + if (!empty($v['description'])) |
|
888 | 888 | { |
889 | - $desc=wp_strip_all_tags($v['description']); |
|
890 | - $posdata=array('post_excerpt'=>$desc); |
|
889 | + $desc = wp_strip_all_tags($v['description']); |
|
890 | + $posdata = array('post_excerpt'=>$desc); |
|
891 | 891 | } |
892 | - if(!empty($v['section'])) |
|
892 | + if (!empty($v['section'])) |
|
893 | 893 | { |
894 | - $desc=wp_strip_all_tags($v['section']); |
|
895 | - $posdata=array('post_excerpt'=>$desc); |
|
894 | + $desc = wp_strip_all_tags($v['section']); |
|
895 | + $posdata = array('post_excerpt'=>$desc); |
|
896 | 896 | } |
897 | 897 | |
898 | - $attachID=NULL; |
|
898 | + $attachID = NULL; |
|
899 | 899 | //Resizor - add option to setting if required |
900 | - $fragment = str_replace(' ','%20',$v['url_fragment']); |
|
900 | + $fragment = str_replace(' ', '%20', $v['url_fragment']); |
|
901 | 901 | $url = $this->get_scaling_url($image_sizes).$fragment; |
902 | - $attachID = $this->attach_external_image2($url,$parent_id,'',$v['label'],$postdata); |
|
902 | + $attachID = $this->attach_external_image2($url, $parent_id, '', $v['label'], $postdata); |
|
903 | 903 | |
904 | 904 | //echo($attachID.' add image'); |
905 | - if($attachID!=NULL) |
|
905 | + if ($attachID != NULL) |
|
906 | 906 | { |
907 | 907 | return $attachID; |
908 | 908 | } |
@@ -910,13 +910,13 @@ discard block |
||
910 | 910 | return false; |
911 | 911 | } |
912 | 912 | |
913 | - public function attach_external_image2( $url = null, $post_id = null, $thumb = null, $filename = null, $post_data = array() ) { |
|
913 | + public function attach_external_image2($url = null, $post_id = null, $thumb = null, $filename = null, $post_data = array()) { |
|
914 | 914 | |
915 | - if ( !$url || !$post_id ) { return new WP_Error('missing', "Need a valid URL and post ID..."); } |
|
915 | + if (!$url || !$post_id) { return new WP_Error('missing', "Need a valid URL and post ID..."); } |
|
916 | 916 | |
917 | - require_once(ABSPATH . 'wp-admin/includes/file.php'); |
|
918 | - require_once(ABSPATH . 'wp-admin/includes/media.php'); |
|
919 | - require_once(ABSPATH . 'wp-admin/includes/image.php'); |
|
917 | + require_once(ABSPATH.'wp-admin/includes/file.php'); |
|
918 | + require_once(ABSPATH.'wp-admin/includes/media.php'); |
|
919 | + require_once(ABSPATH.'wp-admin/includes/image.php'); |
|
920 | 920 | // Download file to temp location, returns full server path to temp file |
921 | 921 | //$tmp = download_url( $url ); |
922 | 922 | |
@@ -925,53 +925,53 @@ discard block |
||
925 | 925 | |
926 | 926 | $image = file_get_contents($url); |
927 | 927 | file_put_contents($tmp, $image); |
928 | - chmod($tmp,'777'); |
|
928 | + chmod($tmp, '777'); |
|
929 | 929 | |
930 | - preg_match('/[^\?]+\.(tif|TIFF|jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG|pdf|PDF|bmp|BMP)/', $url, $matches); // fix file filename for query strings |
|
930 | + preg_match('/[^\?]+\.(tif|TIFF|jpg|JPG|jpe|JPE|jpeg|JPEG|gif|GIF|png|PNG|pdf|PDF|bmp|BMP)/', $url, $matches); // fix file filename for query strings |
|
931 | 931 | $url_filename = basename($matches[0]); |
932 | - $url_filename=str_replace('%20','_',$url_filename); |
|
932 | + $url_filename = str_replace('%20', '_', $url_filename); |
|
933 | 933 | // extract filename from url for title |
934 | - $url_type = wp_check_filetype($url_filename); // determine file type (ext and mime/type) |
|
934 | + $url_type = wp_check_filetype($url_filename); // determine file type (ext and mime/type) |
|
935 | 935 | |
936 | 936 | // override filename if given, reconstruct server path |
937 | - if ( !empty( $filename ) && " " != $filename ) |
|
937 | + if (!empty($filename) && " " != $filename) |
|
938 | 938 | { |
939 | 939 | $filename = sanitize_file_name($filename); |
940 | - $tmppath = pathinfo( $tmp ); |
|
940 | + $tmppath = pathinfo($tmp); |
|
941 | 941 | |
942 | 942 | $extension = ''; |
943 | - if(isset($tmppath['extension'])){ |
|
943 | + if (isset($tmppath['extension'])) { |
|
944 | 944 | $extension = $tmppath['extension']; |
945 | 945 | } |
946 | 946 | |
947 | - $new = $tmppath['dirname'] . "/". $filename . "." . $extension; |
|
948 | - rename($tmp, $new); // renames temp file on server |
|
949 | - $tmp = $new; // push new filename (in path) to be used in file array later |
|
947 | + $new = $tmppath['dirname']."/".$filename.".".$extension; |
|
948 | + rename($tmp, $new); // renames temp file on server |
|
949 | + $tmp = $new; // push new filename (in path) to be used in file array later |
|
950 | 950 | } |
951 | 951 | |
952 | 952 | // assemble file data (should be built like $_FILES since wp_handle_sideload() will be using) |
953 | - $file_array['tmp_name'] = $tmp; // full server path to temp file |
|
953 | + $file_array['tmp_name'] = $tmp; // full server path to temp file |
|
954 | 954 | |
955 | - if ( !empty( $filename) && " " != $filename ) |
|
955 | + if (!empty($filename) && " " != $filename) |
|
956 | 956 | { |
957 | - $file_array['name'] = $filename . "." . $url_type['ext']; // user given filename for title, add original URL extension |
|
957 | + $file_array['name'] = $filename.".".$url_type['ext']; // user given filename for title, add original URL extension |
|
958 | 958 | } |
959 | 959 | else |
960 | 960 | { |
961 | - $file_array['name'] = $url_filename; // just use original URL filename |
|
961 | + $file_array['name'] = $url_filename; // just use original URL filename |
|
962 | 962 | } |
963 | 963 | |
964 | 964 | // set additional wp_posts columns |
965 | - if ( empty( $post_data['post_title'] ) ) |
|
965 | + if (empty($post_data['post_title'])) |
|
966 | 966 | { |
967 | 967 | |
968 | - $url_filename=str_replace('%20',' ',$url_filename); |
|
968 | + $url_filename = str_replace('%20', ' ', $url_filename); |
|
969 | 969 | |
970 | - $post_data['post_title'] = basename($url_filename, "." . $url_type['ext']); // just use the original filename (no extension) |
|
970 | + $post_data['post_title'] = basename($url_filename, ".".$url_type['ext']); // just use the original filename (no extension) |
|
971 | 971 | } |
972 | 972 | |
973 | 973 | // make sure gets tied to parent |
974 | - if ( empty( $post_data['post_parent'] ) ) |
|
974 | + if (empty($post_data['post_parent'])) |
|
975 | 975 | { |
976 | 976 | $post_data['post_parent'] = $post_id; |
977 | 977 | } |
@@ -979,12 +979,12 @@ discard block |
||
979 | 979 | // required libraries for media_handle_sideload |
980 | 980 | |
981 | 981 | // do the validation and storage stuff |
982 | - $att_id = media_handle_sideload( $file_array, $post_id, null, $post_data ); // $post_data can override the items saved to wp_posts table, like post_mime_type, guid, post_parent, post_title, post_content, post_status |
|
982 | + $att_id = media_handle_sideload($file_array, $post_id, null, $post_data); // $post_data can override the items saved to wp_posts table, like post_mime_type, guid, post_parent, post_title, post_content, post_status |
|
983 | 983 | |
984 | 984 | // If error storing permanently, unlink |
985 | - if ( is_wp_error($att_id) ) |
|
985 | + if (is_wp_error($att_id)) |
|
986 | 986 | { |
987 | - unlink($file_array['tmp_name']); // clean up |
|
987 | + unlink($file_array['tmp_name']); // clean up |
|
988 | 988 | return false; // output wp_error |
989 | 989 | //return $att_id; // output wp_error |
990 | 990 | } |
@@ -1012,24 +1012,24 @@ discard block |
||
1012 | 1012 | /** |
1013 | 1013 | * Formats the row for the completed list. |
1014 | 1014 | */ |
1015 | - public function format_completed_row($response){ |
|
1015 | + public function format_completed_row($response) { |
|
1016 | 1016 | echo '<li class="post-'.$response.'"><span class="dashicons dashicons-yes"></span> <a target="_blank" href="'.get_permalink($response).'">'.get_the_title($response).'</a></li>'; |
1017 | 1017 | } |
1018 | 1018 | |
1019 | 1019 | /** |
1020 | 1020 | * Does a multine search |
1021 | 1021 | */ |
1022 | - public function multineedle_stripos($haystack, $needles, $offset=0) { |
|
1022 | + public function multineedle_stripos($haystack, $needles, $offset = 0) { |
|
1023 | 1023 | $found = false; |
1024 | 1024 | $needle_count = count($needles); |
1025 | - foreach($needles as $needle) { |
|
1026 | - if(false !== stripos($haystack, $needle, $offset)){ |
|
1025 | + foreach ($needles as $needle) { |
|
1026 | + if (false !== stripos($haystack, $needle, $offset)) { |
|
1027 | 1027 | $found[] = true; |
1028 | 1028 | } |
1029 | 1029 | } |
1030 | - if(false !== $found && $needle_count === count($found)){ |
|
1030 | + if (false !== $found && $needle_count === count($found)) { |
|
1031 | 1031 | return true; |
1032 | - }else{ |
|
1032 | + }else { |
|
1033 | 1033 | return false; |
1034 | 1034 | } |
1035 | 1035 | } |
@@ -1037,7 +1037,7 @@ discard block |
||
1037 | 1037 | /** |
1038 | 1038 | * Grab all the current accommodation posts via the lsx_wetu_id field. |
1039 | 1039 | */ |
1040 | - public function find_current_accommodation($post_type='accommodation') { |
|
1040 | + public function find_current_accommodation($post_type = 'accommodation') { |
|
1041 | 1041 | global $wpdb; |
1042 | 1042 | $return = array(); |
1043 | 1043 | |
@@ -1053,8 +1053,8 @@ discard block |
||
1053 | 1053 | |
1054 | 1054 | LIMIT 0,500 |
1055 | 1055 | "); |
1056 | - if(null !== $current_accommodation && !empty($current_accommodation)){ |
|
1057 | - foreach($current_accommodation as $accom){ |
|
1056 | + if (null !== $current_accommodation && !empty($current_accommodation)) { |
|
1057 | + foreach ($current_accommodation as $accom) { |
|
1058 | 1058 | $return[$accom->meta_value] = $accom; |
1059 | 1059 | } |
1060 | 1060 | } |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | if(isset($_GET['tab']) || isset($_POST['type'])) { |
191 | 191 | if(isset($_GET['tab'])) { |
192 | 192 | $this->tab_slug = $_GET['tab']; |
193 | - }else{ |
|
193 | + } else{ |
|
194 | 194 | $this->tab_slug = $_POST['type']; |
195 | 195 | } |
196 | 196 | } |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | <?php } ?> |
379 | 379 | </ul> |
380 | 380 | <?php |
381 | - }else{ |
|
381 | + } else{ |
|
382 | 382 | $this->current_importer->display_page(); |
383 | 383 | }; ?> |
384 | 384 | </div> |
@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | foreach($team_members->posts as $member){ ?> |
497 | 497 | <li><input class="team" <?php $this->checked($selected,$member); ?> type="checkbox" value="<?php echo $member; ?>" /> <?php echo get_the_title($member); ?></li> |
498 | 498 | <?php } |
499 | - }else{ ?> |
|
499 | + } else{ ?> |
|
500 | 500 | <li><input class="team" type="checkbox" value="0" /> <?php _e('None','wetu-importer'); ?></li> |
501 | 501 | <?php } |
502 | 502 | ?> |
@@ -561,7 +561,7 @@ discard block |
||
561 | 561 | if (in_array($needle, $haystack)) { |
562 | 562 | if(true === $wrap || 'true' === $wrap) { |
563 | 563 | $html = $type . '="' . $type . '"'; |
564 | - }else{ |
|
564 | + } else{ |
|
565 | 565 | $html = $type; |
566 | 566 | } |
567 | 567 | } |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | |
614 | 614 | if(false !== $id && '0' !== $id && false !== $prev && true === $unique){ |
615 | 615 | update_post_meta($id,$meta_key,$value,$prev); |
616 | - }else{ |
|
616 | + } else{ |
|
617 | 617 | add_post_meta($id,$meta_key,$value,$unique); |
618 | 618 | } |
619 | 619 | } |
@@ -654,18 +654,15 @@ discard block |
||
654 | 654 | if ( is_wp_error($term) ) |
655 | 655 | { |
656 | 656 | echo $term->get_error_message(); |
657 | - } |
|
658 | - else |
|
657 | + } else |
|
659 | 658 | { |
660 | 659 | wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); |
661 | 660 | } |
662 | - } |
|
663 | - else |
|
661 | + } else |
|
664 | 662 | { |
665 | 663 | wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); |
666 | 664 | } |
667 | - } |
|
668 | - else |
|
665 | + } else |
|
669 | 666 | { |
670 | 667 | $result[]=trim($k); |
671 | 668 | } |
@@ -679,10 +676,8 @@ discard block |
||
679 | 676 | { |
680 | 677 | if(false !== $parent){ $parent = array('parent'=>$parent); } |
681 | 678 | $term = wp_insert_term(trim($name), $taxonomy,$parent); |
682 | - if ( is_wp_error($term) ){echo $term->get_error_message();} |
|
683 | - else { wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); } |
|
684 | - } |
|
685 | - else |
|
679 | + if ( is_wp_error($term) ){echo $term->get_error_message();} else { wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); } |
|
680 | + } else |
|
686 | 681 | { |
687 | 682 | wp_set_object_terms( $id, intval($term['term_id']), $taxonomy,true); |
688 | 683 | } |
@@ -702,7 +697,7 @@ discard block |
||
702 | 697 | foreach($terms as $term){ |
703 | 698 | $return .= '<li><input class="'.$taxonomy.'" '.$this->checked($selected,$term->term_id,false).' type="checkbox" value="'.$term->term_id.'" /> '.$term->name.'</li>'; |
704 | 699 | } |
705 | - }else{ |
|
700 | + } else{ |
|
706 | 701 | $return .= '<li><input type="checkbox" value="" /> '.__('None','wetu-importer').'</li>'; |
707 | 702 | } |
708 | 703 | $return .= '</ul>'; |
@@ -721,13 +716,13 @@ discard block |
||
721 | 716 | |
722 | 717 | if(isset($data[0]['position']['driving_latitude'])){ |
723 | 718 | $latitude = $data[0]['position']['driving_latitude']; |
724 | - }elseif(isset($data[0]['position']['latitude'])){ |
|
719 | + } elseif(isset($data[0]['position']['latitude'])){ |
|
725 | 720 | $latitude = $data[0]['position']['latitude']; |
726 | 721 | } |
727 | 722 | |
728 | 723 | if(isset($data[0]['position']['driving_longitude'])){ |
729 | 724 | $longitude = $data[0]['position']['driving_longitude']; |
730 | - }elseif(isset($data[0]['position']['longitude'])){ |
|
725 | + } elseif(isset($data[0]['position']['longitude'])){ |
|
731 | 726 | $longitude = $data[0]['position']['longitude']; |
732 | 727 | } |
733 | 728 | |
@@ -759,7 +754,7 @@ discard block |
||
759 | 754 | if(false !== $id && '0' !== $id){ |
760 | 755 | $prev = get_post_meta($id,'location',true); |
761 | 756 | update_post_meta($id,'location',$location_data,$prev); |
762 | - }else{ |
|
757 | + } else{ |
|
763 | 758 | add_post_meta($id,'location',$location_data,true); |
764 | 759 | } |
765 | 760 | } |
@@ -955,8 +950,7 @@ discard block |
||
955 | 950 | if ( !empty( $filename) && " " != $filename ) |
956 | 951 | { |
957 | 952 | $file_array['name'] = $filename . "." . $url_type['ext']; // user given filename for title, add original URL extension |
958 | - } |
|
959 | - else |
|
953 | + } else |
|
960 | 954 | { |
961 | 955 | $file_array['name'] = $url_filename; // just use original URL filename |
962 | 956 | } |
@@ -1029,7 +1023,7 @@ discard block |
||
1029 | 1023 | } |
1030 | 1024 | if(false !== $found && $needle_count === count($found)){ |
1031 | 1025 | return true; |
1032 | - }else{ |
|
1026 | + } else{ |
|
1033 | 1027 | return false; |
1034 | 1028 | } |
1035 | 1029 | } |
@@ -568,6 +568,7 @@ discard block |
||
568 | 568 | |
569 | 569 | /** |
570 | 570 | * A loop which runs through each leg on the tour. |
571 | + * @param boolean $importable_content |
|
571 | 572 | */ |
572 | 573 | public function process_itineraries($data,$id,$importable_content) { |
573 | 574 | $day_counter = 1; |
@@ -822,6 +823,7 @@ discard block |
||
822 | 823 | * |
823 | 824 | * @param $day array |
824 | 825 | * @param $id string |
826 | + * @param integer $leg_counter |
|
825 | 827 | * @return boolean / string |
826 | 828 | */ |
827 | 829 | public function set_destination($day,$id,$leg_counter) { |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | */ |
98 | 98 | public function set_variables() |
99 | 99 | { |
100 | - parent::set_variables(); |
|
100 | + parent::set_variables(); |
|
101 | 101 | |
102 | 102 | if ( false !== $this->api_username && false !== $this->api_password ) { |
103 | 103 | $this->url = 'https://wetu.com/API/Itinerary/'; |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | * Display the importer administration screen |
123 | 123 | */ |
124 | 124 | public function display_page() { |
125 | - ?> |
|
125 | + ?> |
|
126 | 126 | <div class="wrap"> |
127 | 127 | <?php $this->navigation('tour'); ?> |
128 | 128 | |
@@ -253,16 +253,16 @@ discard block |
||
253 | 253 | $result = $this->update_options(); |
254 | 254 | |
255 | 255 | if(true === $result){ |
256 | - echo '<span style="color:green;">'.esc_attr('Connected','wetu-importer').'</span>'; |
|
257 | - if(!isset($_GET['refresh_tours'])){ |
|
258 | - echo ' - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
|
259 | - } |
|
260 | - }else{ |
|
261 | - echo '<span style="color:red;">'.wp_kses_post($result).'</span>'; |
|
262 | - } |
|
256 | + echo '<span style="color:green;">'.esc_attr('Connected','wetu-importer').'</span>'; |
|
257 | + if(!isset($_GET['refresh_tours'])){ |
|
258 | + echo ' - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
|
259 | + } |
|
260 | + }else{ |
|
261 | + echo '<span style="color:red;">'.wp_kses_post($result).'</span>'; |
|
262 | + } |
|
263 | 263 | }else{ |
264 | 264 | echo '<span style="color:green;">'.esc_attr('Connected','wetu-importer').'</span> - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
265 | - } |
|
265 | + } |
|
266 | 266 | echo '</h3></div>'; |
267 | 267 | } |
268 | 268 | |
@@ -274,8 +274,8 @@ discard block |
||
274 | 274 | $tours = json_decode($data, true); |
275 | 275 | |
276 | 276 | if(isset($tours['error'])){ |
277 | - return $tours['error']; |
|
278 | - }elseif (isset($tours['itineraries']) && !empty($tours['itineraries'])) { |
|
277 | + return $tours['error']; |
|
278 | + }elseif (isset($tours['itineraries']) && !empty($tours['itineraries'])) { |
|
279 | 279 | set_transient('lsx_ti_tours',$tours['itineraries'],60*60*2); |
280 | 280 | return true; |
281 | 281 | } |
@@ -478,71 +478,71 @@ discard block |
||
478 | 478 | $content = false; |
479 | 479 | } |
480 | 480 | |
481 | - $jdata=file_get_contents("http://wetu.com/API/Itinerary/V7/Get?id=".$wetu_id); |
|
481 | + $jdata=file_get_contents("http://wetu.com/API/Itinerary/V7/Get?id=".$wetu_id); |
|
482 | 482 | |
483 | - if($jdata) |
|
484 | - { |
|
483 | + if($jdata) |
|
484 | + { |
|
485 | 485 | $jdata=json_decode($jdata,true); |
486 | - if(!empty($jdata)) |
|
487 | - { |
|
488 | - $return = $this->import_row($jdata,$wetu_id,$post_id,$content); |
|
489 | - $this->format_completed_row($return); |
|
490 | - $this->cleanup_posts(); |
|
491 | - $this->attach_destination_images($content); |
|
492 | - } |
|
493 | - } |
|
486 | + if(!empty($jdata)) |
|
487 | + { |
|
488 | + $return = $this->import_row($jdata,$wetu_id,$post_id,$content); |
|
489 | + $this->format_completed_row($return); |
|
490 | + $this->cleanup_posts(); |
|
491 | + $this->attach_destination_images($content); |
|
492 | + } |
|
493 | + } |
|
494 | 494 | } |
495 | 495 | } |
496 | 496 | |
497 | 497 | /** |
498 | 498 | * Connect to wetu |
499 | - * |
|
500 | - * @param $data array |
|
501 | - * @param $wetu_id string |
|
499 | + * |
|
500 | + * @param $data array |
|
501 | + * @param $wetu_id string |
|
502 | 502 | */ |
503 | 503 | public function import_row($data,$wetu_id,$id=0,$importable_content=false,$old1=false,$old2=false) { |
504 | - $post_name = $data_post_content = $data_post_excerpt = ''; |
|
505 | - $post = array( |
|
506 | - 'post_type' => 'tour', |
|
507 | - ); |
|
504 | + $post_name = $data_post_content = $data_post_excerpt = ''; |
|
505 | + $post = array( |
|
506 | + 'post_type' => 'tour', |
|
507 | + ); |
|
508 | 508 | |
509 | - //Set the post_content |
|
509 | + //Set the post_content |
|
510 | 510 | $content_used_general_description = false; |
511 | - if(false !== $importable_content && in_array('description',$importable_content)){ |
|
512 | - $data_post_content = ''; |
|
513 | - |
|
514 | - if(isset($data['description'])){ |
|
515 | - $data_post_content = $data['description']; |
|
516 | - }elseif(isset($data['summary'])){ |
|
517 | - $data_post_content = $data['summary']; |
|
518 | - } |
|
519 | - $post['post_content'] = $data_post_content; |
|
520 | - } |
|
521 | - |
|
522 | - //Create or update the post |
|
523 | - if(false !== $id && '0' !== $id){ |
|
524 | - $post['ID'] = $id; |
|
525 | - $post['post_status'] = 'publish'; |
|
526 | - $id = wp_update_post($post); |
|
527 | - $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
|
528 | - update_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified']),$prev_date); |
|
529 | - }else{ |
|
530 | - |
|
531 | - //Set the name |
|
532 | - if(isset($data['name'])){ |
|
533 | - $post_name = wp_unique_post_slug(sanitize_title($data['name']),$id, 'draft', 'tour', 0); |
|
534 | - } |
|
535 | - $post['post_name'] = $post_name; |
|
536 | - $post['post_title'] = $data['name']; |
|
537 | - $post['post_status'] = 'publish'; |
|
538 | - $id = wp_insert_post($post); |
|
539 | - |
|
540 | - //Save the WETU ID and the Last date it was modified. |
|
541 | - if(false !== $id){ |
|
542 | - add_post_meta($id,'lsx_wetu_id',$wetu_id); |
|
543 | - add_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified'])); |
|
544 | - } |
|
545 | - } |
|
511 | + if(false !== $importable_content && in_array('description',$importable_content)){ |
|
512 | + $data_post_content = ''; |
|
513 | + |
|
514 | + if(isset($data['description'])){ |
|
515 | + $data_post_content = $data['description']; |
|
516 | + }elseif(isset($data['summary'])){ |
|
517 | + $data_post_content = $data['summary']; |
|
518 | + } |
|
519 | + $post['post_content'] = $data_post_content; |
|
520 | + } |
|
521 | + |
|
522 | + //Create or update the post |
|
523 | + if(false !== $id && '0' !== $id){ |
|
524 | + $post['ID'] = $id; |
|
525 | + $post['post_status'] = 'publish'; |
|
526 | + $id = wp_update_post($post); |
|
527 | + $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
|
528 | + update_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified']),$prev_date); |
|
529 | + }else{ |
|
530 | + |
|
531 | + //Set the name |
|
532 | + if(isset($data['name'])){ |
|
533 | + $post_name = wp_unique_post_slug(sanitize_title($data['name']),$id, 'draft', 'tour', 0); |
|
534 | + } |
|
535 | + $post['post_name'] = $post_name; |
|
536 | + $post['post_title'] = $data['name']; |
|
537 | + $post['post_status'] = 'publish'; |
|
538 | + $id = wp_insert_post($post); |
|
539 | + |
|
540 | + //Save the WETU ID and the Last date it was modified. |
|
541 | + if(false !== $id){ |
|
542 | + add_post_meta($id,'lsx_wetu_id',$wetu_id); |
|
543 | + add_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified'])); |
|
544 | + } |
|
545 | + } |
|
546 | 546 | |
547 | 547 | |
548 | 548 | //Set the price |
@@ -555,15 +555,15 @@ discard block |
||
555 | 555 | $this->set_duration($data,$id); |
556 | 556 | } |
557 | 557 | |
558 | - if(false !== $importable_content && in_array('itineraries',$importable_content) && isset($data['legs']) && !empty($data['legs'])){ |
|
559 | - $this->process_itineraries($data,$id,$importable_content); |
|
560 | - } |
|
558 | + if(false !== $importable_content && in_array('itineraries',$importable_content) && isset($data['legs']) && !empty($data['legs'])){ |
|
559 | + $this->process_itineraries($data,$id,$importable_content); |
|
560 | + } |
|
561 | 561 | |
562 | 562 | if(in_array('map',$importable_content) && isset($data['routes']) && !empty($data['routes'])){ |
563 | 563 | $this->set_map_data($data,$id); |
564 | 564 | } |
565 | 565 | |
566 | - return $id; |
|
566 | + return $id; |
|
567 | 567 | } |
568 | 568 | |
569 | 569 | /** |
@@ -725,17 +725,17 @@ discard block |
||
725 | 725 | * Set the Itinerary Day |
726 | 726 | */ |
727 | 727 | public function set_itinerary_day($day,$id) { |
728 | - $this->save_custom_field($day,'itinerary',$id,false,false); |
|
728 | + $this->save_custom_field($day,'itinerary',$id,false,false); |
|
729 | 729 | } |
730 | 730 | |
731 | 731 | /** |
732 | 732 | * Set the price |
733 | 733 | */ |
734 | 734 | public function set_price($data,$id) { |
735 | - //Price |
|
735 | + //Price |
|
736 | 736 | if(isset($data['price']) && ''!== $data['price']){ |
737 | - $price = preg_replace("/[^0-9,.]/", "", $data['price']); |
|
738 | - $this->save_custom_field($price,'price',$id); |
|
737 | + $price = preg_replace("/[^0-9,.]/", "", $data['price']); |
|
738 | + $this->save_custom_field($price,'price',$id); |
|
739 | 739 | } |
740 | 740 | |
741 | 741 | //Price includes |
@@ -743,7 +743,7 @@ discard block |
||
743 | 743 | $this->save_custom_field($data['price_includes'],'included',$id); |
744 | 744 | } |
745 | 745 | |
746 | - //Price Excludes |
|
746 | + //Price Excludes |
|
747 | 747 | if(isset($data['price_excludes']) && ''!== $data['price_excludes']){ |
748 | 748 | $this->save_custom_field($data['price_excludes'],'not_included',$id); |
749 | 749 | } |
@@ -766,35 +766,35 @@ discard block |
||
766 | 766 | */ |
767 | 767 | public function set_accommodation($day,$id) { |
768 | 768 | |
769 | - $ac_id = false; |
|
769 | + $ac_id = false; |
|
770 | 770 | $this->current_accommodation = $this->find_current_accommodation(); |
771 | 771 | |
772 | 772 | if(isset($day['content_entity_id']) && !empty($day['content_entity_id'])){ |
773 | 773 | |
774 | 774 | if(false !== $this->current_accommodation && !empty($this->current_accommodation) && array_key_exists($day['content_entity_id'],$this->current_accommodation)){ |
775 | - $ac_id = $this->current_accommodation[$day['content_entity_id']]; |
|
775 | + $ac_id = $this->current_accommodation[$day['content_entity_id']]; |
|
776 | 776 | }else{ |
777 | 777 | $ac_id = wp_insert_post(array( |
778 | - 'post_type' => 'accommodation', |
|
779 | - 'post_status' => 'draft', |
|
780 | - 'post_title' => $day['content_entity_id'] |
|
781 | - )); |
|
778 | + 'post_type' => 'accommodation', |
|
779 | + 'post_status' => 'draft', |
|
780 | + 'post_title' => $day['content_entity_id'] |
|
781 | + )); |
|
782 | 782 | $this->save_custom_field($day['content_entity_id'],'lsx_wetu_id',$ac_id); |
783 | 783 | } |
784 | 784 | |
785 | 785 | if('' !== $ac_id && false !== $ac_id){ |
786 | - $this->save_custom_field($ac_id,'accommodation_to_tour',$id,false,false); |
|
786 | + $this->save_custom_field($ac_id,'accommodation_to_tour',$id,false,false); |
|
787 | 787 | $this->save_custom_field($id,'tour_to_accommodation',$ac_id,false,false); |
788 | - } |
|
788 | + } |
|
789 | 789 | } |
790 | 790 | return $ac_id; |
791 | 791 | } |
792 | 792 | |
793 | 793 | /** |
794 | 794 | * Grab all the current accommodation posts via the lsx_wetu_id field. |
795 | - * |
|
796 | - * @param $post_type string |
|
797 | - * @return boolean / array |
|
795 | + * |
|
796 | + * @param $post_type string |
|
797 | + * @return boolean / array |
|
798 | 798 | */ |
799 | 799 | public function find_current_accommodation($post_type='accommodation') { |
800 | 800 | global $wpdb; |
@@ -802,16 +802,16 @@ discard block |
||
802 | 802 | |
803 | 803 | $return = false; |
804 | 804 | if(!empty($accommodation)){ |
805 | - foreach($accommodation as $key => $acc){ |
|
805 | + foreach($accommodation as $key => $acc){ |
|
806 | 806 | $return[$acc->meta_value] = $acc->post_id; |
807 | - } |
|
808 | - } |
|
807 | + } |
|
808 | + } |
|
809 | 809 | return $return; |
810 | 810 | } |
811 | 811 | |
812 | 812 | /** |
813 | 813 | * Grab all the current accommodation posts via the lsx_wetu_id field. |
814 | - * @return boolean / array |
|
814 | + * @return boolean / array |
|
815 | 815 | */ |
816 | 816 | public function find_current_destinations() { |
817 | 817 | return $this->find_current_accommodation('destination'); |
@@ -839,7 +839,7 @@ discard block |
||
839 | 839 | $country_wetu_id = get_post_meta($potential_id,'lsx_wetu_id',true); |
840 | 840 | if(false !== $country_wetu_id){ |
841 | 841 | $country_id = $this->set_country($country_wetu_id, $id); |
842 | - } |
|
842 | + } |
|
843 | 843 | |
844 | 844 | }else { |
845 | 845 | |
@@ -850,27 +850,27 @@ discard block |
||
850 | 850 | |
851 | 851 | if (!empty($destination_data) && !isset($destination_data['error'])) { |
852 | 852 | |
853 | - $destination_title = $day['destination_content_entity_id']; |
|
853 | + $destination_title = $day['destination_content_entity_id']; |
|
854 | 854 | |
855 | - if(isset($destination_data[0]['name'])){ |
|
855 | + if(isset($destination_data[0]['name'])){ |
|
856 | 856 | $destination_title = $destination_data[0]['name']; |
857 | - } |
|
857 | + } |
|
858 | 858 | |
859 | - if(isset($destination_data[0]['map_object_id']) && isset($destination_data[0]['position']['country_content_entity_id']) |
|
860 | - && $destination_data[0]['map_object_id'] !== $destination_data[0]['position']['country_content_entity_id']){ |
|
859 | + if(isset($destination_data[0]['map_object_id']) && isset($destination_data[0]['position']['country_content_entity_id']) |
|
860 | + && $destination_data[0]['map_object_id'] !== $destination_data[0]['position']['country_content_entity_id']){ |
|
861 | 861 | |
862 | 862 | $country_id = $this->set_country($destination_data[0]['position']['country_content_entity_id'], $id); |
863 | - } |
|
863 | + } |
|
864 | 864 | |
865 | - $dest_post = array( |
|
865 | + $dest_post = array( |
|
866 | 866 | 'post_type' => 'destination', |
867 | 867 | 'post_status' => 'draft', |
868 | 868 | 'post_title' => $destination_title |
869 | 869 | ); |
870 | 870 | |
871 | - if(false !== $country_id){ |
|
871 | + if(false !== $country_id){ |
|
872 | 872 | $dest_post['post_parent'] = $country_id; |
873 | - } |
|
873 | + } |
|
874 | 874 | $dest_id = wp_insert_post($dest_post); |
875 | 875 | |
876 | 876 | //Make sure we register the |
@@ -888,16 +888,16 @@ discard block |
||
888 | 888 | |
889 | 889 | // Save the first destination so we can grab the tour featured image and banner |
890 | 890 | if(0 === $leg_counter){ |
891 | - $this->destination_images[$id] = array($dest_id,$day['destination_content_entity_id']); |
|
892 | - } |
|
891 | + $this->destination_images[$id] = array($dest_id,$day['destination_content_entity_id']); |
|
892 | + } |
|
893 | 893 | |
894 | 894 | //Add this relation info so we can make sure certain items are set as countries. |
895 | 895 | if(0 !== $country_id && false !== $country_id){ |
896 | - $this->relation_meta[$dest_id] = $country_id; |
|
896 | + $this->relation_meta[$dest_id] = $country_id; |
|
897 | 897 | $this->relation_meta[$country_id] = 0; |
898 | - }else{ |
|
898 | + }else{ |
|
899 | 899 | $this->relation_meta[$dest_id] = 0; |
900 | - } |
|
900 | + } |
|
901 | 901 | } |
902 | 902 | } |
903 | 903 | return $dest_id; |
@@ -907,53 +907,53 @@ discard block |
||
907 | 907 | * Connects the destinations post type |
908 | 908 | * |
909 | 909 | * @param $dest_id string |
910 | - * @param $country_id array |
|
910 | + * @param $country_id array |
|
911 | 911 | * @param $id string |
912 | - * |
|
913 | - * @return string |
|
912 | + * |
|
913 | + * @return string |
|
914 | 914 | */ |
915 | 915 | public function set_country($country_wetu_id, $id) { |
916 | - $country_id = false; |
|
916 | + $country_id = false; |
|
917 | 917 | $this->current_destinations = $this->find_current_destinations(); |
918 | 918 | |
919 | - if (false !== $this->current_destinations && !empty($this->current_destinations) && array_key_exists($country_wetu_id, $this->current_destinations)) { |
|
920 | - $country_id = $this->current_destinations[$country_wetu_id]; |
|
921 | - } else { |
|
919 | + if (false !== $this->current_destinations && !empty($this->current_destinations) && array_key_exists($country_wetu_id, $this->current_destinations)) { |
|
920 | + $country_id = $this->current_destinations[$country_wetu_id]; |
|
921 | + } else { |
|
922 | 922 | |
923 | - $country_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=" . $country_wetu_id); |
|
923 | + $country_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=" . $country_wetu_id); |
|
924 | 924 | |
925 | - if ($country_json) { |
|
926 | - $country_data = json_decode($country_json, true); |
|
925 | + if ($country_json) { |
|
926 | + $country_data = json_decode($country_json, true); |
|
927 | 927 | |
928 | - if (!empty($country_data) && !isset($country_data['error'])) { |
|
928 | + if (!empty($country_data) && !isset($country_data['error'])) { |
|
929 | 929 | |
930 | 930 | //Format the title of the destination if its available, otherwise default to the WETU ID. |
931 | - $country_title = $country_wetu_id; |
|
932 | - if (isset($country_data[0]['name'])) { |
|
931 | + $country_title = $country_wetu_id; |
|
932 | + if (isset($country_data[0]['name'])) { |
|
933 | 933 | $country_title = $country_data[0]['name']; |
934 | - } |
|
934 | + } |
|
935 | 935 | |
936 | 936 | $country_id = wp_insert_post(array( |
937 | - 'post_type' => 'destination', |
|
938 | - 'post_status' => 'draft', |
|
939 | - 'post_title' => $country_title |
|
940 | - )); |
|
937 | + 'post_type' => 'destination', |
|
938 | + 'post_status' => 'draft', |
|
939 | + 'post_title' => $country_title |
|
940 | + )); |
|
941 | 941 | //add the country to the current destination stack |
942 | 942 | $this->current_destinations[$country_wetu_id] = $country_id; |
943 | 943 | |
944 | 944 | //Save the wetu field |
945 | - $this->save_custom_field($country_wetu_id, 'lsx_wetu_id', $country_id); |
|
946 | - } |
|
947 | - } |
|
948 | - } |
|
949 | - |
|
950 | - if ('' !== $country_id && false !== $country_id) { |
|
951 | - $this->save_custom_field($country_id, 'destination_to_tour', $id, false, false); |
|
952 | - $this->save_custom_field($id, 'tour_to_destination', $country_id, false, false); |
|
945 | + $this->save_custom_field($country_wetu_id, 'lsx_wetu_id', $country_id); |
|
946 | + } |
|
947 | + } |
|
948 | + } |
|
949 | + |
|
950 | + if ('' !== $country_id && false !== $country_id) { |
|
951 | + $this->save_custom_field($country_id, 'destination_to_tour', $id, false, false); |
|
952 | + $this->save_custom_field($id, 'tour_to_destination', $country_id, false, false); |
|
953 | 953 | $this->cleanup_posts[$country_id] = 'tour_to_destination'; |
954 | 954 | |
955 | - return $country_id; |
|
956 | - } |
|
955 | + return $country_id; |
|
956 | + } |
|
957 | 957 | } |
958 | 958 | |
959 | 959 | /** |
@@ -966,9 +966,9 @@ discard block |
||
966 | 966 | * @return string |
967 | 967 | */ |
968 | 968 | public function attach_destination_images($importable_content=array()) { |
969 | - if(false !== $this->destination_images){ |
|
969 | + if(false !== $this->destination_images){ |
|
970 | 970 | |
971 | - foreach($this->destination_images as $tour => $destination){ |
|
971 | + foreach($this->destination_images as $tour => $destination){ |
|
972 | 972 | |
973 | 973 | $url = 'https://wetu.com/API/Pins/' . $this->api_key; |
974 | 974 | $url_qs = ''; |
@@ -989,7 +989,7 @@ discard block |
||
989 | 989 | } |
990 | 990 | } |
991 | 991 | } |
992 | - } |
|
993 | - } |
|
992 | + } |
|
993 | + } |
|
994 | 994 | } |
995 | 995 | } |
996 | 996 | \ No newline at end of file |
@@ -99,21 +99,21 @@ discard block |
||
99 | 99 | { |
100 | 100 | parent::set_variables(); |
101 | 101 | |
102 | - if ( false !== $this->api_username && false !== $this->api_password ) { |
|
102 | + if (false !== $this->api_username && false !== $this->api_password) { |
|
103 | 103 | $this->url = 'https://wetu.com/API/Itinerary/'; |
104 | - $this->url_qs = 'username=' . $this->api_username . '&password=' . $this->api_password; |
|
105 | - } elseif ( false !== $this->api_key ) { |
|
106 | - $this->url = 'https://wetu.com/API/Itinerary/' . $this->api_key; |
|
104 | + $this->url_qs = 'username='.$this->api_username.'&password='.$this->api_password; |
|
105 | + } elseif (false !== $this->api_key) { |
|
106 | + $this->url = 'https://wetu.com/API/Itinerary/'.$this->api_key; |
|
107 | 107 | $this->url_qs = ''; |
108 | 108 | } |
109 | 109 | |
110 | - $temp_options = get_option('_lsx-to_settings',false); |
|
111 | - if(false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])){ |
|
110 | + $temp_options = get_option('_lsx-to_settings', false); |
|
111 | + if (false !== $temp_options && isset($temp_options[$this->plugin_slug]) && !empty($temp_options[$this->plugin_slug])) { |
|
112 | 112 | $this->options = $temp_options[$this->plugin_slug]; |
113 | 113 | } |
114 | 114 | |
115 | - $tour_options = get_option('wetu_importer_tour_settings',false); |
|
116 | - if(false !== $tour_options){ |
|
115 | + $tour_options = get_option('wetu_importer_tour_settings', false); |
|
116 | + if (false !== $tour_options) { |
|
117 | 117 | $this->tour_options = $tour_options; |
118 | 118 | } |
119 | 119 | } |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | <form method="get" action="" id="posts-filter"> |
134 | 134 | <input type="hidden" name="post_type" class="post_type" value="<?php echo $this->tab_slug; ?>" /> |
135 | 135 | |
136 | - <p><input class="button button-primary add" type="button" value="<?php _e('Add to List','wetu-importer'); ?>" /> |
|
137 | - <input class="button button-primary clear" type="button" value="<?php _e('Clear','wetu-importer'); ?>" /> |
|
136 | + <p><input class="button button-primary add" type="button" value="<?php _e('Add to List', 'wetu-importer'); ?>" /> |
|
137 | + <input class="button button-primary clear" type="button" value="<?php _e('Clear', 'wetu-importer'); ?>" /> |
|
138 | 138 | </p> |
139 | 139 | |
140 | 140 | <table class="wp-list-table widefat fixed posts"> |
@@ -143,11 +143,11 @@ discard block |
||
143 | 143 | <tbody id="the-list"> |
144 | 144 | <tr class="post-0 type-tour status-none" id="post-0"> |
145 | 145 | <th class="check-column" scope="row"> |
146 | - <label for="cb-select-0" class="screen-reader-text"><?php _e('Enter a title to search for and press enter','wetu-importer'); ?></label> |
|
146 | + <label for="cb-select-0" class="screen-reader-text"><?php _e('Enter a title to search for and press enter', 'wetu-importer'); ?></label> |
|
147 | 147 | </th> |
148 | 148 | <td class="post-title page-title column-title"> |
149 | 149 | <strong> |
150 | - <?php _e('Enter a title to search for','wetu-importer'); ?> |
|
150 | + <?php _e('Enter a title to search for', 'wetu-importer'); ?> |
|
151 | 151 | </strong> |
152 | 152 | </td> |
153 | 153 | <td class="date column-date"> |
@@ -161,8 +161,8 @@ discard block |
||
161 | 161 | |
162 | 162 | </table> |
163 | 163 | |
164 | - <p><input class="button button-primary add" type="button" value="<?php _e('Add to List','wetu-importer'); ?>" /> |
|
165 | - <input class="button button-primary clear" type="button" value="<?php _e('Clear','wetu-importer'); ?>" /> |
|
164 | + <p><input class="button button-primary add" type="button" value="<?php _e('Add to List', 'wetu-importer'); ?>" /> |
|
165 | + <input class="button button-primary clear" type="button" value="<?php _e('Clear', 'wetu-importer'); ?>" /> |
|
166 | 166 | </p> |
167 | 167 | </form> |
168 | 168 | |
@@ -174,16 +174,16 @@ discard block |
||
174 | 174 | <div class="settings-all" style="width:30%;display:block;float:left;"> |
175 | 175 | <h3><?php _e('What content to Sync from WETU'); ?></h3> |
176 | 176 | <ul> |
177 | - <li><input class="content select-all" <?php $this->checked($this->tour_options,'all'); ?> type="checkbox"name="content[]" value="all" /> <?php _e('Select All','wetu-importer'); ?></li> |
|
178 | - <li><input class="content" <?php $this->checked($this->tour_options,'description'); ?> type="checkbox" name="content[]" value="description" /> <?php _e('Description','wetu-importer'); ?></li> |
|
179 | - <li><input class="content" <?php $this->checked($this->tour_options,'excerpt'); ?> type="checkbox" name="content[]" value="excerpt" /> <?php _e('Excerpt','wetu-importer'); ?></li> |
|
177 | + <li><input class="content select-all" <?php $this->checked($this->tour_options, 'all'); ?> type="checkbox"name="content[]" value="all" /> <?php _e('Select All', 'wetu-importer'); ?></li> |
|
178 | + <li><input class="content" <?php $this->checked($this->tour_options, 'description'); ?> type="checkbox" name="content[]" value="description" /> <?php _e('Description', 'wetu-importer'); ?></li> |
|
179 | + <li><input class="content" <?php $this->checked($this->tour_options, 'excerpt'); ?> type="checkbox" name="content[]" value="excerpt" /> <?php _e('Excerpt', 'wetu-importer'); ?></li> |
|
180 | 180 | |
181 | - <li><input class="content" <?php $this->checked($this->tour_options,'price'); ?> type="checkbox" name="content[]" value="price" /> <?php _e('Price','wetu-importer'); ?></li> |
|
182 | - <li><input class="content" <?php $this->checked($this->tour_options,'duration'); ?> type="checkbox" name="content[]" value="duration" /> <?php _e('Duration','wetu-importer'); ?></li> |
|
181 | + <li><input class="content" <?php $this->checked($this->tour_options, 'price'); ?> type="checkbox" name="content[]" value="price" /> <?php _e('Price', 'wetu-importer'); ?></li> |
|
182 | + <li><input class="content" <?php $this->checked($this->tour_options, 'duration'); ?> type="checkbox" name="content[]" value="duration" /> <?php _e('Duration', 'wetu-importer'); ?></li> |
|
183 | 183 | |
184 | - <li><input class="content" <?php $this->checked($this->tour_options,'category'); ?> type="checkbox" name="content[]" value="category" /> <?php _e('Category','wetu-importer'); ?></li> |
|
184 | + <li><input class="content" <?php $this->checked($this->tour_options, 'category'); ?> type="checkbox" name="content[]" value="category" /> <?php _e('Category', 'wetu-importer'); ?></li> |
|
185 | 185 | |
186 | - <li><input class="content" <?php $this->checked($this->tour_options,'itineraries'); ?> type="checkbox" name="content[]" value="itineraries" /> <?php _e('Itinerary Days','wetu-importer'); ?></li> |
|
186 | + <li><input class="content" <?php $this->checked($this->tour_options, 'itineraries'); ?> type="checkbox" name="content[]" value="itineraries" /> <?php _e('Itinerary Days', 'wetu-importer'); ?></li> |
|
187 | 187 | |
188 | 188 | <?php /*if(class_exists('LSX_TO_Maps')){ ?> |
189 | 189 | <li><input class="content" <?php $this->checked($this->tour_options,'map'); ?> type="checkbox" name="content[]" value="map" /> <?php _e('Map Coordinates (generates a KML file)','wetu-importer'); ?></li> |
@@ -193,20 +193,20 @@ discard block |
||
193 | 193 | <div class="settings-all" style="width:30%;display:block;float:left;"> |
194 | 194 | <h3><?php _e('Itinerary Info'); ?></h3> |
195 | 195 | <ul> |
196 | - <li><input class="content" <?php $this->checked($this->tour_options,'itinerary_description'); ?> type="checkbox" name="content[]" value="itinerary_description" /> <?php _e('Description','wetu-importer'); ?></li> |
|
197 | - <li><input class="content" <?php $this->checked($this->tour_options,'itinerary_included'); ?> type="checkbox" name="content[]" value="itinerary_included" /> <?php _e('Included','wetu-importer'); ?></li> |
|
198 | - <li><input class="content" <?php $this->checked($this->tour_options,'itinerary_excluded'); ?> type="checkbox" name="content[]" value="itinerary_excluded" /> <?php _e('Excluded','wetu-importer'); ?></li> |
|
196 | + <li><input class="content" <?php $this->checked($this->tour_options, 'itinerary_description'); ?> type="checkbox" name="content[]" value="itinerary_description" /> <?php _e('Description', 'wetu-importer'); ?></li> |
|
197 | + <li><input class="content" <?php $this->checked($this->tour_options, 'itinerary_included'); ?> type="checkbox" name="content[]" value="itinerary_included" /> <?php _e('Included', 'wetu-importer'); ?></li> |
|
198 | + <li><input class="content" <?php $this->checked($this->tour_options, 'itinerary_excluded'); ?> type="checkbox" name="content[]" value="itinerary_excluded" /> <?php _e('Excluded', 'wetu-importer'); ?></li> |
|
199 | 199 | </ul> |
200 | 200 | |
201 | 201 | <h4><?php _e('Additional Content'); ?></h4> |
202 | 202 | <ul> |
203 | - <li><input class="content" <?php $this->checked($this->tour_options,'accommodation'); ?> type="checkbox" name="content[]" value="accommodation" /> <?php _e('Sync Accommodation','wetu-importer'); ?></li> |
|
204 | - <li><input class="content" <?php $this->checked($this->tour_options,'destination'); ?> type="checkbox" name="content[]" value="destination" /> <?php _e('Sync Destinations','wetu-importer'); ?></li> |
|
205 | - <li><input class="content" <?php $this->checked($this->tour_options,'featured_image'); ?> type="checkbox" name="content[]" value="featured_image" /> <?php _e('Featured Image','wetu-importer'); ?></li> |
|
206 | - <li><input class="content" <?php $this->checked($this->tour_options,'banner_image'); ?> type="checkbox" name="content[]" value="banner_image" /> <?php _e('Banner Image','wetu-importer'); ?></li> |
|
203 | + <li><input class="content" <?php $this->checked($this->tour_options, 'accommodation'); ?> type="checkbox" name="content[]" value="accommodation" /> <?php _e('Sync Accommodation', 'wetu-importer'); ?></li> |
|
204 | + <li><input class="content" <?php $this->checked($this->tour_options, 'destination'); ?> type="checkbox" name="content[]" value="destination" /> <?php _e('Sync Destinations', 'wetu-importer'); ?></li> |
|
205 | + <li><input class="content" <?php $this->checked($this->tour_options, 'featured_image'); ?> type="checkbox" name="content[]" value="featured_image" /> <?php _e('Featured Image', 'wetu-importer'); ?></li> |
|
206 | + <li><input class="content" <?php $this->checked($this->tour_options, 'banner_image'); ?> type="checkbox" name="content[]" value="banner_image" /> <?php _e('Banner Image', 'wetu-importer'); ?></li> |
|
207 | 207 | </ul> |
208 | 208 | </div> |
209 | - <?php if(class_exists('LSX_TO_Team')){ ?> |
|
209 | + <?php if (class_exists('LSX_TO_Team')) { ?> |
|
210 | 210 | <div style="width:30%;display:block;float:left;"> |
211 | 211 | <h3><?php _e('Assign a Team Member'); ?></h3> |
212 | 212 | <?php $this->team_member_checkboxes($this->tour_options); ?> |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | |
219 | 219 | |
220 | 220 | <h3><?php _e('Your List'); ?></h3> |
221 | - <p><input class="button button-primary" type="submit" value="<?php _e('Sync','wetu-importer'); ?>" /></p> |
|
221 | + <p><input class="button button-primary" type="submit" value="<?php _e('Sync', 'wetu-importer'); ?>" /></p> |
|
222 | 222 | <table class="wp-list-table widefat fixed posts"> |
223 | 223 | <?php $this->table_header(); ?> |
224 | 224 | |
@@ -230,12 +230,12 @@ discard block |
||
230 | 230 | |
231 | 231 | </table> |
232 | 232 | |
233 | - <p><input class="button button-primary" type="submit" value="<?php _e('Sync','wetu-importer'); ?>" /></p> |
|
233 | + <p><input class="button button-primary" type="submit" value="<?php _e('Sync', 'wetu-importer'); ?>" /></p> |
|
234 | 234 | </form> |
235 | 235 | </div> |
236 | 236 | |
237 | 237 | <div style="display:none;" class="completed-list-wrapper"> |
238 | - <h3><?php _e('Completed','wetu-importer'); ?> - <small><?php _e('Import your','wetu-importer'); ?> <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=accommodation"><?php _e('accommodation'); ?></a> <?php _e('next','wetu-importer'); ?></small></h3> |
|
238 | + <h3><?php _e('Completed', 'wetu-importer'); ?> - <small><?php _e('Import your', 'wetu-importer'); ?> <a href="<?php echo admin_url('admin.php'); ?>?page=<?php echo $this->plugin_slug; ?>&tab=accommodation"><?php _e('accommodation'); ?></a> <?php _e('next', 'wetu-importer'); ?></small></h3> |
|
239 | 239 | <ul> |
240 | 240 | </ul> |
241 | 241 | </div> |
@@ -248,20 +248,20 @@ discard block |
||
248 | 248 | */ |
249 | 249 | public function update_options_form() { |
250 | 250 | $tours = get_transient('lsx_ti_tours'); |
251 | - echo '<div class="wetu-status"><h3>'.__('Wetu Status','wetu-importer').' - '; |
|
252 | - if('' === $tours || false === $tours || isset($_GET['refresh_tours'])){ |
|
251 | + echo '<div class="wetu-status"><h3>'.__('Wetu Status', 'wetu-importer').' - '; |
|
252 | + if ('' === $tours || false === $tours || isset($_GET['refresh_tours'])) { |
|
253 | 253 | $result = $this->update_options(); |
254 | 254 | |
255 | - if(true === $result){ |
|
256 | - echo '<span style="color:green;">'.esc_attr('Connected','wetu-importer').'</span>'; |
|
257 | - if(!isset($_GET['refresh_tours'])){ |
|
258 | - echo ' - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
|
255 | + if (true === $result) { |
|
256 | + echo '<span style="color:green;">'.esc_attr('Connected', 'wetu-importer').'</span>'; |
|
257 | + if (!isset($_GET['refresh_tours'])) { |
|
258 | + echo ' - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh', 'wetu-importer').'</a></small>'; |
|
259 | 259 | } |
260 | - }else{ |
|
260 | + }else { |
|
261 | 261 | echo '<span style="color:red;">'.wp_kses_post($result).'</span>'; |
262 | 262 | } |
263 | - }else{ |
|
264 | - echo '<span style="color:green;">'.esc_attr('Connected','wetu-importer').'</span> - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
|
263 | + }else { |
|
264 | + echo '<span style="color:green;">'.esc_attr('Connected', 'wetu-importer').'</span> - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh', 'wetu-importer').'</a></small>'; |
|
265 | 265 | } |
266 | 266 | echo '</h3></div>'; |
267 | 267 | } |
@@ -270,13 +270,13 @@ discard block |
||
270 | 270 | * Save the list of Tours into an option |
271 | 271 | */ |
272 | 272 | public function update_options() { |
273 | - $data = file_get_contents( $this->url . '/V7/List?' . $this->url_qs . '&own=true&type=All' ); |
|
273 | + $data = file_get_contents($this->url.'/V7/List?'.$this->url_qs.'&own=true&type=All'); |
|
274 | 274 | $tours = json_decode($data, true); |
275 | 275 | |
276 | - if(isset($tours['error'])){ |
|
276 | + if (isset($tours['error'])) { |
|
277 | 277 | return $tours['error']; |
278 | 278 | }elseif (isset($tours['itineraries']) && !empty($tours['itineraries'])) { |
279 | - set_transient('lsx_ti_tours',$tours['itineraries'],60*60*2); |
|
279 | + set_transient('lsx_ti_tours', $tours['itineraries'], 60 * 60 * 2); |
|
280 | 280 | return true; |
281 | 281 | } |
282 | 282 | } |
@@ -300,8 +300,8 @@ discard block |
||
300 | 300 | |
301 | 301 | LIMIT 0,500 |
302 | 302 | "); |
303 | - if(null !== $current_tours && !empty($current_tours)){ |
|
304 | - foreach($current_tours as $tour){ |
|
303 | + if (null !== $current_tours && !empty($current_tours)) { |
|
304 | + foreach ($current_tours as $tour) { |
|
305 | 305 | $return[$tour->meta_value] = $tour; |
306 | 306 | } |
307 | 307 | } |
@@ -314,38 +314,38 @@ discard block |
||
314 | 314 | public function process_ajax_search() { |
315 | 315 | $return = false; |
316 | 316 | |
317 | - if(isset($_POST['action']) && $_POST['action'] === 'lsx_tour_importer' && isset($_POST['type']) && $_POST['type'] === $this->tab_slug){ |
|
317 | + if (isset($_POST['action']) && $_POST['action'] === 'lsx_tour_importer' && isset($_POST['type']) && $_POST['type'] === $this->tab_slug) { |
|
318 | 318 | |
319 | 319 | |
320 | 320 | $tours = get_transient('lsx_ti_tours'); |
321 | - if ( false !== $tours) { |
|
321 | + if (false !== $tours) { |
|
322 | 322 | |
323 | 323 | $searched_items = false; |
324 | 324 | |
325 | - if(isset($_POST['keyword'] )) { |
|
325 | + if (isset($_POST['keyword'])) { |
|
326 | 326 | $keyphrases = $_POST['keyword']; |
327 | - }else{ |
|
327 | + }else { |
|
328 | 328 | $keyphrases = array(0); |
329 | 329 | } |
330 | 330 | |
331 | - if(!is_array($keyphrases)){ |
|
331 | + if (!is_array($keyphrases)) { |
|
332 | 332 | $keyphrases = array($keyphrases); |
333 | 333 | } |
334 | - foreach($keyphrases as &$keyword){ |
|
334 | + foreach ($keyphrases as &$keyword) { |
|
335 | 335 | $keyword = ltrim(rtrim($keyword)); |
336 | 336 | } |
337 | 337 | |
338 | 338 | $post_status = false; |
339 | - if(in_array('publish',$keyphrases)){ |
|
339 | + if (in_array('publish', $keyphrases)) { |
|
340 | 340 | $post_status = 'publish'; |
341 | 341 | } |
342 | - if(in_array('pending',$keyphrases)){ |
|
342 | + if (in_array('pending', $keyphrases)) { |
|
343 | 343 | $post_status = 'pending'; |
344 | 344 | } |
345 | - if(in_array('draft',$keyphrases)){ |
|
345 | + if (in_array('draft', $keyphrases)) { |
|
346 | 346 | $post_status = 'draft'; |
347 | 347 | } |
348 | - if(in_array('import',$keyphrases)){ |
|
348 | + if (in_array('import', $keyphrases)) { |
|
349 | 349 | $post_status = 'import'; |
350 | 350 | } |
351 | 351 | |
@@ -353,9 +353,9 @@ discard block |
||
353 | 353 | if (!empty($tours)) { |
354 | 354 | $current_tours = $this->find_current_tours(); |
355 | 355 | |
356 | - foreach($tours as $row_key => $row){ |
|
356 | + foreach ($tours as $row_key => $row) { |
|
357 | 357 | |
358 | - if(isset($row['is_disabled']) && true === $row['is_disabled']){ |
|
358 | + if (isset($row['is_disabled']) && true === $row['is_disabled']) { |
|
359 | 359 | continue; |
360 | 360 | } |
361 | 361 | |
@@ -365,29 +365,29 @@ discard block |
||
365 | 365 | |
366 | 366 | //If this is a current tour, add its ID to the row. |
367 | 367 | $row['post_id'] = 0; |
368 | - if(false !== $current_tours && array_key_exists($row['identifier'], $current_tours)){ |
|
368 | + if (false !== $current_tours && array_key_exists($row['identifier'], $current_tours)) { |
|
369 | 369 | $row['post_id'] = $current_tours[$row['identifier']]->post_id; |
370 | 370 | } |
371 | 371 | |
372 | 372 | //If we are searching for |
373 | - if(false !== $post_status){ |
|
373 | + if (false !== $post_status) { |
|
374 | 374 | |
375 | - if('import' === $post_status){ |
|
375 | + if ('import' === $post_status) { |
|
376 | 376 | |
377 | - if(0 !== $row['post_id']){ |
|
377 | + if (0 !== $row['post_id']) { |
|
378 | 378 | continue; |
379 | - }else{ |
|
379 | + }else { |
|
380 | 380 | $searched_items[sanitize_title($row['name']).'-'.$row['identifier']] = $this->format_row($row); |
381 | 381 | } |
382 | 382 | |
383 | 383 | |
384 | - }else{ |
|
384 | + }else { |
|
385 | 385 | |
386 | - if(0 === $row['post_id']){ |
|
386 | + if (0 === $row['post_id']) { |
|
387 | 387 | continue; |
388 | - }else{ |
|
388 | + }else { |
|
389 | 389 | $current_status = get_post_status($row['post_id']); |
390 | - if($current_status !== $post_status){ |
|
390 | + if ($current_status !== $post_status) { |
|
391 | 391 | continue; |
392 | 392 | } |
393 | 393 | |
@@ -396,17 +396,17 @@ discard block |
||
396 | 396 | |
397 | 397 | } |
398 | 398 | |
399 | - }else{ |
|
399 | + }else { |
|
400 | 400 | //Search through each keyword. |
401 | - foreach($keyphrases as $keyphrase){ |
|
401 | + foreach ($keyphrases as $keyphrase) { |
|
402 | 402 | |
403 | 403 | //Make sure the keyphrase is turned into an array |
404 | - $keywords = explode(" ",$keyphrase); |
|
405 | - if(!is_array($keywords)){ |
|
404 | + $keywords = explode(" ", $keyphrase); |
|
405 | + if (!is_array($keywords)) { |
|
406 | 406 | $keywords = array($keywords); |
407 | 407 | } |
408 | 408 | |
409 | - if($this->multineedle_stripos(ltrim(rtrim($row['name'])), $keywords) !== false){ |
|
409 | + if ($this->multineedle_stripos(ltrim(rtrim($row['name'])), $keywords) !== false) { |
|
410 | 410 | $searched_items[sanitize_title($row['name']).'-'.$row['identifier']] = $this->format_row($row); |
411 | 411 | } |
412 | 412 | } |
@@ -414,7 +414,7 @@ discard block |
||
414 | 414 | } |
415 | 415 | } |
416 | 416 | |
417 | - if(false !== $searched_items){ |
|
417 | + if (false !== $searched_items) { |
|
418 | 418 | ksort($searched_items); |
419 | 419 | $return = implode($searched_items); |
420 | 420 | } |
@@ -427,11 +427,11 @@ discard block |
||
427 | 427 | /** |
428 | 428 | * Formats the row for output on the screen. |
429 | 429 | */ |
430 | - public function format_row($row = false){ |
|
431 | - if(false !== $row){ |
|
430 | + public function format_row($row = false) { |
|
431 | + if (false !== $row) { |
|
432 | 432 | |
433 | 433 | $status = 'import'; |
434 | - if(0 !== $row['post_id']){ |
|
434 | + if (0 !== $row['post_id']) { |
|
435 | 435 | $status = '<a href="'.admin_url('/post.php?post='.$row['post_id'].'&action=edit').'" target="_blank">'.get_post_status($row['post_id']).'</a>'; |
436 | 436 | } |
437 | 437 | |
@@ -445,7 +445,7 @@ discard block |
||
445 | 445 | <strong>'.$row['name'].'</strong> - '.$status.' |
446 | 446 | </td> |
447 | 447 | <td class="date column-date"> |
448 | - <abbr title="'.date('Y/m/d',strtotime($row['last_modified'])).'">'.date('Y/m/d',strtotime($row['last_modified'])).'</abbr><br>Last Modified |
|
448 | + <abbr title="'.date('Y/m/d', strtotime($row['last_modified'])).'">'.date('Y/m/d', strtotime($row['last_modified'])).'</abbr><br>Last Modified |
|
449 | 449 | </td> |
450 | 450 | <td class="ssid column-ssid"> |
451 | 451 | '.$row['identifier'].' |
@@ -461,31 +461,31 @@ discard block |
||
461 | 461 | public function process_ajax_import($force = false) { |
462 | 462 | $return = false; |
463 | 463 | |
464 | - if(isset($_POST['action']) && $_POST['action'] === 'lsx_import_items' && isset($_POST['type']) && $_POST['type'] === $this->tab_slug && isset($_POST['wetu_id'])){ |
|
464 | + if (isset($_POST['action']) && $_POST['action'] === 'lsx_import_items' && isset($_POST['type']) && $_POST['type'] === $this->tab_slug && isset($_POST['wetu_id'])) { |
|
465 | 465 | |
466 | 466 | $wetu_id = $_POST['wetu_id']; |
467 | - if(isset($_POST['post_id'])){ |
|
467 | + if (isset($_POST['post_id'])) { |
|
468 | 468 | $post_id = $_POST['post_id']; |
469 | - }else{ |
|
469 | + }else { |
|
470 | 470 | $post_id = 0; |
471 | 471 | } |
472 | 472 | |
473 | 473 | delete_option('wetu_importer_tour_settings'); |
474 | - if(isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])){ |
|
474 | + if (isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])) { |
|
475 | 475 | $content = $_POST['content']; |
476 | - add_option('wetu_importer_tour_settings',$content); |
|
477 | - }else{ |
|
476 | + add_option('wetu_importer_tour_settings', $content); |
|
477 | + }else { |
|
478 | 478 | $content = false; |
479 | 479 | } |
480 | 480 | |
481 | - $jdata=file_get_contents("http://wetu.com/API/Itinerary/V7/Get?id=".$wetu_id); |
|
481 | + $jdata = file_get_contents("http://wetu.com/API/Itinerary/V7/Get?id=".$wetu_id); |
|
482 | 482 | |
483 | - if($jdata) |
|
483 | + if ($jdata) |
|
484 | 484 | { |
485 | - $jdata=json_decode($jdata,true); |
|
486 | - if(!empty($jdata)) |
|
485 | + $jdata = json_decode($jdata, true); |
|
486 | + if (!empty($jdata)) |
|
487 | 487 | { |
488 | - $return = $this->import_row($jdata,$wetu_id,$post_id,$content); |
|
488 | + $return = $this->import_row($jdata, $wetu_id, $post_id, $content); |
|
489 | 489 | $this->format_completed_row($return); |
490 | 490 | $this->cleanup_posts(); |
491 | 491 | $this->attach_destination_images($content); |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | * @param $data array |
501 | 501 | * @param $wetu_id string |
502 | 502 | */ |
503 | - public function import_row($data,$wetu_id,$id=0,$importable_content=false,$old1=false,$old2=false) { |
|
503 | + public function import_row($data, $wetu_id, $id = 0, $importable_content = false, $old1 = false, $old2 = false) { |
|
504 | 504 | $post_name = $data_post_content = $data_post_excerpt = ''; |
505 | 505 | $post = array( |
506 | 506 | 'post_type' => 'tour', |
@@ -508,29 +508,29 @@ discard block |
||
508 | 508 | |
509 | 509 | //Set the post_content |
510 | 510 | $content_used_general_description = false; |
511 | - if(false !== $importable_content && in_array('description',$importable_content)){ |
|
511 | + if (false !== $importable_content && in_array('description', $importable_content)) { |
|
512 | 512 | $data_post_content = ''; |
513 | 513 | |
514 | - if(isset($data['description'])){ |
|
514 | + if (isset($data['description'])) { |
|
515 | 515 | $data_post_content = $data['description']; |
516 | - }elseif(isset($data['summary'])){ |
|
516 | + }elseif (isset($data['summary'])) { |
|
517 | 517 | $data_post_content = $data['summary']; |
518 | 518 | } |
519 | 519 | $post['post_content'] = $data_post_content; |
520 | 520 | } |
521 | 521 | |
522 | 522 | //Create or update the post |
523 | - if(false !== $id && '0' !== $id){ |
|
523 | + if (false !== $id && '0' !== $id) { |
|
524 | 524 | $post['ID'] = $id; |
525 | 525 | $post['post_status'] = 'publish'; |
526 | 526 | $id = wp_update_post($post); |
527 | - $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
|
528 | - update_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified']),$prev_date); |
|
529 | - }else{ |
|
527 | + $prev_date = get_post_meta($id, 'lsx_wetu_modified_date', true); |
|
528 | + update_post_meta($id, 'lsx_wetu_modified_date', strtotime($data['last_modified']), $prev_date); |
|
529 | + }else { |
|
530 | 530 | |
531 | 531 | //Set the name |
532 | - if(isset($data['name'])){ |
|
533 | - $post_name = wp_unique_post_slug(sanitize_title($data['name']),$id, 'draft', 'tour', 0); |
|
532 | + if (isset($data['name'])) { |
|
533 | + $post_name = wp_unique_post_slug(sanitize_title($data['name']), $id, 'draft', 'tour', 0); |
|
534 | 534 | } |
535 | 535 | $post['post_name'] = $post_name; |
536 | 536 | $post['post_title'] = $data['name']; |
@@ -538,29 +538,29 @@ discard block |
||
538 | 538 | $id = wp_insert_post($post); |
539 | 539 | |
540 | 540 | //Save the WETU ID and the Last date it was modified. |
541 | - if(false !== $id){ |
|
542 | - add_post_meta($id,'lsx_wetu_id',$wetu_id); |
|
543 | - add_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified'])); |
|
541 | + if (false !== $id) { |
|
542 | + add_post_meta($id, 'lsx_wetu_id', $wetu_id); |
|
543 | + add_post_meta($id, 'lsx_wetu_modified_date', strtotime($data['last_modified'])); |
|
544 | 544 | } |
545 | 545 | } |
546 | 546 | |
547 | 547 | |
548 | 548 | //Set the price |
549 | - if(false !== $importable_content && in_array('price',$importable_content)){ |
|
550 | - $this->set_price($data,$id); |
|
549 | + if (false !== $importable_content && in_array('price', $importable_content)) { |
|
550 | + $this->set_price($data, $id); |
|
551 | 551 | } |
552 | 552 | |
553 | 553 | //Set the Duration |
554 | - if(false !== $importable_content && in_array('duration',$importable_content)){ |
|
555 | - $this->set_duration($data,$id); |
|
554 | + if (false !== $importable_content && in_array('duration', $importable_content)) { |
|
555 | + $this->set_duration($data, $id); |
|
556 | 556 | } |
557 | 557 | |
558 | - if(false !== $importable_content && in_array('itineraries',$importable_content) && isset($data['legs']) && !empty($data['legs'])){ |
|
559 | - $this->process_itineraries($data,$id,$importable_content); |
|
558 | + if (false !== $importable_content && in_array('itineraries', $importable_content) && isset($data['legs']) && !empty($data['legs'])) { |
|
559 | + $this->process_itineraries($data, $id, $importable_content); |
|
560 | 560 | } |
561 | 561 | |
562 | - if(in_array('map',$importable_content) && isset($data['routes']) && !empty($data['routes'])){ |
|
563 | - $this->set_map_data($data,$id); |
|
562 | + if (in_array('map', $importable_content) && isset($data['routes']) && !empty($data['routes'])) { |
|
563 | + $this->set_map_data($data, $id); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | return $id; |
@@ -569,151 +569,151 @@ discard block |
||
569 | 569 | /** |
570 | 570 | * A loop which runs through each leg on the tour. |
571 | 571 | */ |
572 | - public function process_itineraries($data,$id,$importable_content) { |
|
572 | + public function process_itineraries($data, $id, $importable_content) { |
|
573 | 573 | $day_counter = 1; |
574 | 574 | $leg_counter = 0; |
575 | 575 | |
576 | - delete_post_meta($id,'itinerary'); |
|
576 | + delete_post_meta($id, 'itinerary'); |
|
577 | 577 | |
578 | - if(false !== $importable_content && in_array('accommodation',$importable_content)){ |
|
579 | - delete_post_meta($id,'accommodation_to_tour'); |
|
578 | + if (false !== $importable_content && in_array('accommodation', $importable_content)) { |
|
579 | + delete_post_meta($id, 'accommodation_to_tour'); |
|
580 | 580 | } |
581 | - if(false !== $importable_content && in_array('destination',$importable_content)){ |
|
582 | - delete_post_meta($id,'destination_to_tour'); |
|
583 | - delete_post_meta($id,'departs_from'); |
|
584 | - delete_post_meta($id,'ends_in'); |
|
581 | + if (false !== $importable_content && in_array('destination', $importable_content)) { |
|
582 | + delete_post_meta($id, 'destination_to_tour'); |
|
583 | + delete_post_meta($id, 'departs_from'); |
|
584 | + delete_post_meta($id, 'ends_in'); |
|
585 | 585 | } |
586 | 586 | |
587 | 587 | $departs_from = false; |
588 | 588 | $ends_in = false; |
589 | 589 | |
590 | - foreach($data['legs'] as $leg){ |
|
590 | + foreach ($data['legs'] as $leg) { |
|
591 | 591 | |
592 | - if(isset($leg['days']) && !empty($leg['days'])){ |
|
592 | + if (isset($leg['days']) && !empty($leg['days'])) { |
|
593 | 593 | |
594 | 594 | //Itinerary Accommodation |
595 | 595 | $current_accommodation = false; |
596 | - if(false !== $importable_content && in_array('accommodation',$importable_content)){ |
|
597 | - $current_accommodation = $this->set_accommodation($leg,$id); |
|
596 | + if (false !== $importable_content && in_array('accommodation', $importable_content)) { |
|
597 | + $current_accommodation = $this->set_accommodation($leg, $id); |
|
598 | 598 | } |
599 | 599 | |
600 | 600 | //Itinerary Destination |
601 | 601 | $current_destination = false; |
602 | - if(false !== $importable_content && in_array('destination',$importable_content)){ |
|
603 | - $current_destination = $this->set_destination($leg,$id,$leg_counter); |
|
602 | + if (false !== $importable_content && in_array('destination', $importable_content)) { |
|
603 | + $current_destination = $this->set_destination($leg, $id, $leg_counter); |
|
604 | 604 | } |
605 | 605 | |
606 | 606 | //If the Nights are the same mount of days in the array, then it isnt "By Destination" |
607 | - if($leg['nights'] === count($leg['days']) || 0 === $leg['itinerary_leg_id']){ |
|
607 | + if ($leg['nights'] === count($leg['days']) || 0 === $leg['itinerary_leg_id']) { |
|
608 | 608 | |
609 | - foreach($leg['days'] as $day){ |
|
609 | + foreach ($leg['days'] as $day) { |
|
610 | 610 | |
611 | 611 | $current_day = array(); |
612 | 612 | |
613 | - $current_day['title'] = esc_attr('Day ','wetu-importer').$day_counter; |
|
613 | + $current_day['title'] = esc_attr('Day ', 'wetu-importer').$day_counter; |
|
614 | 614 | |
615 | 615 | //print_r('<pre>');print_r($day['notes']);print_r('</pre>'); |
616 | 616 | |
617 | 617 | //Description |
618 | - if(false !== $importable_content && in_array('itinerary_description',$importable_content) && isset($day['notes'])){ |
|
618 | + if (false !== $importable_content && in_array('itinerary_description', $importable_content) && isset($day['notes'])) { |
|
619 | 619 | $current_day['description'] = $day['notes']; |
620 | - }else{ |
|
620 | + }else { |
|
621 | 621 | $current_day['description'] = ''; |
622 | 622 | } |
623 | 623 | |
624 | 624 | //Itinerary Gallery |
625 | - if(false !== $importable_content && in_array('itinerary_gallery',$importable_content) && isset($day['images'])){ |
|
625 | + if (false !== $importable_content && in_array('itinerary_gallery', $importable_content) && isset($day['images'])) { |
|
626 | 626 | $current_day['featured_image'] = ''; |
627 | - }else{ |
|
627 | + }else { |
|
628 | 628 | $current_day['featured_image'] = ''; |
629 | 629 | } |
630 | 630 | |
631 | 631 | //Accommodation |
632 | - if(false !== $current_accommodation){ |
|
632 | + if (false !== $current_accommodation) { |
|
633 | 633 | $current_day['accommodation_to_tour'] = array($current_accommodation); |
634 | - }else{ |
|
634 | + }else { |
|
635 | 635 | $current_day['accommodation_to_tour'] = array(); |
636 | 636 | } |
637 | 637 | |
638 | 638 | //Destination |
639 | - if(false !== $current_destination){ |
|
639 | + if (false !== $current_destination) { |
|
640 | 640 | $current_day['destination_to_tour'] = array($current_destination); |
641 | - }else{ |
|
641 | + }else { |
|
642 | 642 | $current_day['destination_to_tour'] = array(); |
643 | 643 | } |
644 | 644 | |
645 | 645 | //Included |
646 | - if(false !== $importable_content && in_array('itinerary_included',$importable_content) && isset($day['included']) && '' !== $day['included']){ |
|
646 | + if (false !== $importable_content && in_array('itinerary_included', $importable_content) && isset($day['included']) && '' !== $day['included']) { |
|
647 | 647 | $current_day['included'] = $day['included']; |
648 | - }else{ |
|
648 | + }else { |
|
649 | 649 | $current_day['included'] = ''; |
650 | 650 | } |
651 | 651 | |
652 | 652 | //Excluded |
653 | - if(false !== $importable_content && in_array('itinerary_excluded',$importable_content) && isset($day['excluded']) && '' !== $day['excluded']){ |
|
653 | + if (false !== $importable_content && in_array('itinerary_excluded', $importable_content) && isset($day['excluded']) && '' !== $day['excluded']) { |
|
654 | 654 | $current_day['excluded'] = $day['excluded']; |
655 | - }else{ |
|
655 | + }else { |
|
656 | 656 | $current_day['excluded'] = ''; |
657 | 657 | } |
658 | 658 | |
659 | - $this->set_itinerary_day($current_day,$id); |
|
659 | + $this->set_itinerary_day($current_day, $id); |
|
660 | 660 | $day_counter++; |
661 | 661 | } |
662 | 662 | |
663 | - }else{ |
|
664 | - $day_counter = $day_counter + (int)$leg['nights']; |
|
663 | + }else { |
|
664 | + $day_counter = $day_counter + (int) $leg['nights']; |
|
665 | 665 | } |
666 | 666 | |
667 | 667 | } |
668 | 668 | |
669 | 669 | //If we are in the first leg, and the destination was attached then save it as the departure field. |
670 | - if( 0 === $leg_counter && false !== $current_destination){ |
|
670 | + if (0 === $leg_counter && false !== $current_destination) { |
|
671 | 671 | $departs_from = $current_destination; |
672 | 672 | } |
673 | 673 | |
674 | 674 | //If its the last leg then save it as the ends in. |
675 | - if( $leg_counter === (count($data['legs'])-2) && false !== $current_destination){ |
|
675 | + if ($leg_counter === (count($data['legs']) - 2) && false !== $current_destination) { |
|
676 | 676 | $ends_in = $current_destination; |
677 | 677 | } |
678 | 678 | $leg_counter++; |
679 | 679 | } |
680 | 680 | |
681 | - if(false !== $departs_from){ |
|
682 | - add_post_meta($id,'departs_from',$departs_from,true); |
|
681 | + if (false !== $departs_from) { |
|
682 | + add_post_meta($id, 'departs_from', $departs_from, true); |
|
683 | 683 | } |
684 | - if(false !== $ends_in){ |
|
685 | - add_post_meta($id,'ends_in',$ends_in,true); |
|
684 | + if (false !== $ends_in) { |
|
685 | + add_post_meta($id, 'ends_in', $ends_in, true); |
|
686 | 686 | } |
687 | 687 | } |
688 | 688 | |
689 | 689 | /** |
690 | 690 | * Run through your routes and save the points as a KML file. |
691 | 691 | */ |
692 | - public function set_map_data($data,$id,$zoom=9) { |
|
692 | + public function set_map_data($data, $id, $zoom = 9) { |
|
693 | 693 | |
694 | - if(!empty($data['routes'])){ |
|
694 | + if (!empty($data['routes'])) { |
|
695 | 695 | |
696 | - delete_post_meta($id,'wetu_map_points'); |
|
696 | + delete_post_meta($id, 'wetu_map_points'); |
|
697 | 697 | |
698 | 698 | $points = array(); |
699 | 699 | |
700 | - foreach($data['routes'] as $route){ |
|
700 | + foreach ($data['routes'] as $route) { |
|
701 | 701 | |
702 | 702 | |
703 | - if(isset($route['points']) && '' !== $route['points']){ |
|
703 | + if (isset($route['points']) && '' !== $route['points']) { |
|
704 | 704 | |
705 | - $temp_points = explode(';',$route['points']); |
|
705 | + $temp_points = explode(';', $route['points']); |
|
706 | 706 | $point_counter = count($temp_points); |
707 | 707 | |
708 | 708 | for ($x = 0; $x <= $point_counter; $x++) { |
709 | - $y = $x+1; |
|
709 | + $y = $x + 1; |
|
710 | 710 | $points[] = $temp_points[$x].','.$temp_points[$y]; |
711 | 711 | $x++; |
712 | 712 | } |
713 | 713 | } |
714 | 714 | } |
715 | - if(!empty($points)){ |
|
716 | - $this->save_custom_field(implode(' ',$points),'wetu_map_points',$id,false,true); |
|
715 | + if (!empty($points)) { |
|
716 | + $this->save_custom_field(implode(' ', $points), 'wetu_map_points', $id, false, true); |
|
717 | 717 | } |
718 | 718 | } |
719 | 719 | |
@@ -724,28 +724,28 @@ discard block |
||
724 | 724 | /** |
725 | 725 | * Set the Itinerary Day |
726 | 726 | */ |
727 | - public function set_itinerary_day($day,$id) { |
|
728 | - $this->save_custom_field($day,'itinerary',$id,false,false); |
|
727 | + public function set_itinerary_day($day, $id) { |
|
728 | + $this->save_custom_field($day, 'itinerary', $id, false, false); |
|
729 | 729 | } |
730 | 730 | |
731 | 731 | /** |
732 | 732 | * Set the price |
733 | 733 | */ |
734 | - public function set_price($data,$id) { |
|
734 | + public function set_price($data, $id) { |
|
735 | 735 | //Price |
736 | - if(isset($data['price']) && ''!== $data['price']){ |
|
736 | + if (isset($data['price']) && '' !== $data['price']) { |
|
737 | 737 | $price = preg_replace("/[^0-9,.]/", "", $data['price']); |
738 | - $this->save_custom_field($price,'price',$id); |
|
738 | + $this->save_custom_field($price, 'price', $id); |
|
739 | 739 | } |
740 | 740 | |
741 | 741 | //Price includes |
742 | - if(isset($data['price_includes']) && ''!== $data['price_includes']){ |
|
743 | - $this->save_custom_field($data['price_includes'],'included',$id); |
|
742 | + if (isset($data['price_includes']) && '' !== $data['price_includes']) { |
|
743 | + $this->save_custom_field($data['price_includes'], 'included', $id); |
|
744 | 744 | } |
745 | 745 | |
746 | 746 | //Price Excludes |
747 | - if(isset($data['price_excludes']) && ''!== $data['price_excludes']){ |
|
748 | - $this->save_custom_field($data['price_excludes'],'not_included',$id); |
|
747 | + if (isset($data['price_excludes']) && '' !== $data['price_excludes']) { |
|
748 | + $this->save_custom_field($data['price_excludes'], 'not_included', $id); |
|
749 | 749 | } |
750 | 750 | |
751 | 751 | } |
@@ -753,38 +753,38 @@ discard block |
||
753 | 753 | /** |
754 | 754 | * Set the duration |
755 | 755 | */ |
756 | - public function set_duration($data,$id) { |
|
757 | - if(isset($data['days']) && !empty($data['days'])){ |
|
756 | + public function set_duration($data, $id) { |
|
757 | + if (isset($data['days']) && !empty($data['days'])) { |
|
758 | 758 | $price = $data['days']; |
759 | 759 | $price = preg_replace("/[^0-9,.]/", "", $price); |
760 | - $this->save_custom_field($price,'duration',$id); |
|
760 | + $this->save_custom_field($price, 'duration', $id); |
|
761 | 761 | } |
762 | 762 | } |
763 | 763 | |
764 | 764 | /** |
765 | 765 | * Connects the Accommodation if its available |
766 | 766 | */ |
767 | - public function set_accommodation($day,$id) { |
|
767 | + public function set_accommodation($day, $id) { |
|
768 | 768 | |
769 | 769 | $ac_id = false; |
770 | 770 | $this->current_accommodation = $this->find_current_accommodation(); |
771 | 771 | |
772 | - if(isset($day['content_entity_id']) && !empty($day['content_entity_id'])){ |
|
772 | + if (isset($day['content_entity_id']) && !empty($day['content_entity_id'])) { |
|
773 | 773 | |
774 | - if(false !== $this->current_accommodation && !empty($this->current_accommodation) && array_key_exists($day['content_entity_id'],$this->current_accommodation)){ |
|
774 | + if (false !== $this->current_accommodation && !empty($this->current_accommodation) && array_key_exists($day['content_entity_id'], $this->current_accommodation)) { |
|
775 | 775 | $ac_id = $this->current_accommodation[$day['content_entity_id']]; |
776 | - }else{ |
|
776 | + }else { |
|
777 | 777 | $ac_id = wp_insert_post(array( |
778 | 778 | 'post_type' => 'accommodation', |
779 | 779 | 'post_status' => 'draft', |
780 | 780 | 'post_title' => $day['content_entity_id'] |
781 | 781 | )); |
782 | - $this->save_custom_field($day['content_entity_id'],'lsx_wetu_id',$ac_id); |
|
782 | + $this->save_custom_field($day['content_entity_id'], 'lsx_wetu_id', $ac_id); |
|
783 | 783 | } |
784 | 784 | |
785 | - if('' !== $ac_id && false !== $ac_id){ |
|
786 | - $this->save_custom_field($ac_id,'accommodation_to_tour',$id,false,false); |
|
787 | - $this->save_custom_field($id,'tour_to_accommodation',$ac_id,false,false); |
|
785 | + if ('' !== $ac_id && false !== $ac_id) { |
|
786 | + $this->save_custom_field($ac_id, 'accommodation_to_tour', $id, false, false); |
|
787 | + $this->save_custom_field($id, 'tour_to_accommodation', $ac_id, false, false); |
|
788 | 788 | } |
789 | 789 | } |
790 | 790 | return $ac_id; |
@@ -796,13 +796,13 @@ discard block |
||
796 | 796 | * @param $post_type string |
797 | 797 | * @return boolean / array |
798 | 798 | */ |
799 | - public function find_current_accommodation($post_type='accommodation') { |
|
799 | + public function find_current_accommodation($post_type = 'accommodation') { |
|
800 | 800 | global $wpdb; |
801 | 801 | $accommodation = parent::find_current_accommodation($post_type); |
802 | 802 | |
803 | 803 | $return = false; |
804 | - if(!empty($accommodation)){ |
|
805 | - foreach($accommodation as $key => $acc){ |
|
804 | + if (!empty($accommodation)) { |
|
805 | + foreach ($accommodation as $key => $acc) { |
|
806 | 806 | $return[$acc->meta_value] = $acc->post_id; |
807 | 807 | } |
808 | 808 | } |
@@ -824,26 +824,26 @@ discard block |
||
824 | 824 | * @param $id string |
825 | 825 | * @return boolean / string |
826 | 826 | */ |
827 | - public function set_destination($day,$id,$leg_counter) { |
|
827 | + public function set_destination($day, $id, $leg_counter) { |
|
828 | 828 | $dest_id = false; |
829 | 829 | $country_id = false; |
830 | 830 | $this->current_destinations = $this->find_current_destinations(); |
831 | 831 | |
832 | - if(isset($day['destination_content_entity_id']) && !empty($day['destination_content_entity_id'])){ |
|
832 | + if (isset($day['destination_content_entity_id']) && !empty($day['destination_content_entity_id'])) { |
|
833 | 833 | |
834 | - if(false !== $this->current_destinations && !empty($this->current_destinations) && array_key_exists($day['destination_content_entity_id'],$this->current_destinations)){ |
|
834 | + if (false !== $this->current_destinations && !empty($this->current_destinations) && array_key_exists($day['destination_content_entity_id'], $this->current_destinations)) { |
|
835 | 835 | $dest_id = $this->current_destinations[$day['destination_content_entity_id']]; |
836 | 836 | |
837 | 837 | //Check if there is a country asigned. |
838 | 838 | $potential_id = wp_get_post_parent_id($dest_id); |
839 | - $country_wetu_id = get_post_meta($potential_id,'lsx_wetu_id',true); |
|
840 | - if(false !== $country_wetu_id){ |
|
839 | + $country_wetu_id = get_post_meta($potential_id, 'lsx_wetu_id', true); |
|
840 | + if (false !== $country_wetu_id) { |
|
841 | 841 | $country_id = $this->set_country($country_wetu_id, $id); |
842 | 842 | } |
843 | 843 | |
844 | 844 | }else { |
845 | 845 | |
846 | - $destination_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=" . $day['destination_content_entity_id']); |
|
846 | + $destination_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=".$day['destination_content_entity_id']); |
|
847 | 847 | |
848 | 848 | if ($destination_json) { |
849 | 849 | $destination_data = json_decode($destination_json, true); |
@@ -852,12 +852,12 @@ discard block |
||
852 | 852 | |
853 | 853 | $destination_title = $day['destination_content_entity_id']; |
854 | 854 | |
855 | - if(isset($destination_data[0]['name'])){ |
|
855 | + if (isset($destination_data[0]['name'])) { |
|
856 | 856 | $destination_title = $destination_data[0]['name']; |
857 | 857 | } |
858 | 858 | |
859 | - if(isset($destination_data[0]['map_object_id']) && isset($destination_data[0]['position']['country_content_entity_id']) |
|
860 | - && $destination_data[0]['map_object_id'] !== $destination_data[0]['position']['country_content_entity_id']){ |
|
859 | + if (isset($destination_data[0]['map_object_id']) && isset($destination_data[0]['position']['country_content_entity_id']) |
|
860 | + && $destination_data[0]['map_object_id'] !== $destination_data[0]['position']['country_content_entity_id']) { |
|
861 | 861 | |
862 | 862 | $country_id = $this->set_country($destination_data[0]['position']['country_content_entity_id'], $id); |
863 | 863 | } |
@@ -868,7 +868,7 @@ discard block |
||
868 | 868 | 'post_title' => $destination_title |
869 | 869 | ); |
870 | 870 | |
871 | - if(false !== $country_id){ |
|
871 | + if (false !== $country_id) { |
|
872 | 872 | $dest_post['post_parent'] = $country_id; |
873 | 873 | } |
874 | 874 | $dest_id = wp_insert_post($dest_post); |
@@ -887,15 +887,15 @@ discard block |
||
887 | 887 | $this->cleanup_posts[$dest_id] = 'tour_to_destination'; |
888 | 888 | |
889 | 889 | // Save the first destination so we can grab the tour featured image and banner |
890 | - if(0 === $leg_counter){ |
|
891 | - $this->destination_images[$id] = array($dest_id,$day['destination_content_entity_id']); |
|
890 | + if (0 === $leg_counter) { |
|
891 | + $this->destination_images[$id] = array($dest_id, $day['destination_content_entity_id']); |
|
892 | 892 | } |
893 | 893 | |
894 | 894 | //Add this relation info so we can make sure certain items are set as countries. |
895 | - if(0 !== $country_id && false !== $country_id){ |
|
895 | + if (0 !== $country_id && false !== $country_id) { |
|
896 | 896 | $this->relation_meta[$dest_id] = $country_id; |
897 | 897 | $this->relation_meta[$country_id] = 0; |
898 | - }else{ |
|
898 | + }else { |
|
899 | 899 | $this->relation_meta[$dest_id] = 0; |
900 | 900 | } |
901 | 901 | } |
@@ -918,9 +918,9 @@ discard block |
||
918 | 918 | |
919 | 919 | if (false !== $this->current_destinations && !empty($this->current_destinations) && array_key_exists($country_wetu_id, $this->current_destinations)) { |
920 | 920 | $country_id = $this->current_destinations[$country_wetu_id]; |
921 | - } else { |
|
921 | + }else { |
|
922 | 922 | |
923 | - $country_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=" . $country_wetu_id); |
|
923 | + $country_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=".$country_wetu_id); |
|
924 | 924 | |
925 | 925 | if ($country_json) { |
926 | 926 | $country_data = json_decode($country_json, true); |
@@ -965,15 +965,15 @@ discard block |
||
965 | 965 | * |
966 | 966 | * @return string |
967 | 967 | */ |
968 | - public function attach_destination_images($importable_content=array()) { |
|
969 | - if(false !== $this->destination_images){ |
|
968 | + public function attach_destination_images($importable_content = array()) { |
|
969 | + if (false !== $this->destination_images) { |
|
970 | 970 | |
971 | - foreach($this->destination_images as $tour => $destination){ |
|
971 | + foreach ($this->destination_images as $tour => $destination) { |
|
972 | 972 | |
973 | - $url = 'https://wetu.com/API/Pins/' . $this->api_key; |
|
973 | + $url = 'https://wetu.com/API/Pins/'.$this->api_key; |
|
974 | 974 | $url_qs = ''; |
975 | 975 | |
976 | - $jdata = file_get_contents($url . '/Get?' . $url_qs . '&ids=' . $destination[1]); |
|
976 | + $jdata = file_get_contents($url.'/Get?'.$url_qs.'&ids='.$destination[1]); |
|
977 | 977 | if ($jdata) { |
978 | 978 | $adata = json_decode($jdata, true); |
979 | 979 |
@@ -257,10 +257,10 @@ discard block |
||
257 | 257 | if(!isset($_GET['refresh_tours'])){ |
258 | 258 | echo ' - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
259 | 259 | } |
260 | - }else{ |
|
260 | + } else{ |
|
261 | 261 | echo '<span style="color:red;">'.wp_kses_post($result).'</span>'; |
262 | 262 | } |
263 | - }else{ |
|
263 | + } else{ |
|
264 | 264 | echo '<span style="color:green;">'.esc_attr('Connected','wetu-importer').'</span> - <small><a href="'.admin_url('admin.php').'?page='.$this->plugin_slug.'&tab=tour&refresh_tours=true">'.esc_attr('Refresh','wetu-importer').'</a></small>'; |
265 | 265 | } |
266 | 266 | echo '</h3></div>'; |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | |
276 | 276 | if(isset($tours['error'])){ |
277 | 277 | return $tours['error']; |
278 | - }elseif (isset($tours['itineraries']) && !empty($tours['itineraries'])) { |
|
278 | + } elseif (isset($tours['itineraries']) && !empty($tours['itineraries'])) { |
|
279 | 279 | set_transient('lsx_ti_tours',$tours['itineraries'],60*60*2); |
280 | 280 | return true; |
281 | 281 | } |
@@ -324,7 +324,7 @@ discard block |
||
324 | 324 | |
325 | 325 | if(isset($_POST['keyword'] )) { |
326 | 326 | $keyphrases = $_POST['keyword']; |
327 | - }else{ |
|
327 | + } else{ |
|
328 | 328 | $keyphrases = array(0); |
329 | 329 | } |
330 | 330 | |
@@ -376,16 +376,16 @@ discard block |
||
376 | 376 | |
377 | 377 | if(0 !== $row['post_id']){ |
378 | 378 | continue; |
379 | - }else{ |
|
379 | + } else{ |
|
380 | 380 | $searched_items[sanitize_title($row['name']).'-'.$row['identifier']] = $this->format_row($row); |
381 | 381 | } |
382 | 382 | |
383 | 383 | |
384 | - }else{ |
|
384 | + } else{ |
|
385 | 385 | |
386 | 386 | if(0 === $row['post_id']){ |
387 | 387 | continue; |
388 | - }else{ |
|
388 | + } else{ |
|
389 | 389 | $current_status = get_post_status($row['post_id']); |
390 | 390 | if($current_status !== $post_status){ |
391 | 391 | continue; |
@@ -396,7 +396,7 @@ discard block |
||
396 | 396 | |
397 | 397 | } |
398 | 398 | |
399 | - }else{ |
|
399 | + } else{ |
|
400 | 400 | //Search through each keyword. |
401 | 401 | foreach($keyphrases as $keyphrase){ |
402 | 402 | |
@@ -466,7 +466,7 @@ discard block |
||
466 | 466 | $wetu_id = $_POST['wetu_id']; |
467 | 467 | if(isset($_POST['post_id'])){ |
468 | 468 | $post_id = $_POST['post_id']; |
469 | - }else{ |
|
469 | + } else{ |
|
470 | 470 | $post_id = 0; |
471 | 471 | } |
472 | 472 | |
@@ -474,7 +474,7 @@ discard block |
||
474 | 474 | if(isset($_POST['content']) && is_array($_POST['content']) && !empty($_POST['content'])){ |
475 | 475 | $content = $_POST['content']; |
476 | 476 | add_option('wetu_importer_tour_settings',$content); |
477 | - }else{ |
|
477 | + } else{ |
|
478 | 478 | $content = false; |
479 | 479 | } |
480 | 480 | |
@@ -513,7 +513,7 @@ discard block |
||
513 | 513 | |
514 | 514 | if(isset($data['description'])){ |
515 | 515 | $data_post_content = $data['description']; |
516 | - }elseif(isset($data['summary'])){ |
|
516 | + } elseif(isset($data['summary'])){ |
|
517 | 517 | $data_post_content = $data['summary']; |
518 | 518 | } |
519 | 519 | $post['post_content'] = $data_post_content; |
@@ -526,7 +526,7 @@ discard block |
||
526 | 526 | $id = wp_update_post($post); |
527 | 527 | $prev_date = get_post_meta($id,'lsx_wetu_modified_date',true); |
528 | 528 | update_post_meta($id,'lsx_wetu_modified_date',strtotime($data['last_modified']),$prev_date); |
529 | - }else{ |
|
529 | + } else{ |
|
530 | 530 | |
531 | 531 | //Set the name |
532 | 532 | if(isset($data['name'])){ |
@@ -617,42 +617,42 @@ discard block |
||
617 | 617 | //Description |
618 | 618 | if(false !== $importable_content && in_array('itinerary_description',$importable_content) && isset($day['notes'])){ |
619 | 619 | $current_day['description'] = $day['notes']; |
620 | - }else{ |
|
620 | + } else{ |
|
621 | 621 | $current_day['description'] = ''; |
622 | 622 | } |
623 | 623 | |
624 | 624 | //Itinerary Gallery |
625 | 625 | if(false !== $importable_content && in_array('itinerary_gallery',$importable_content) && isset($day['images'])){ |
626 | 626 | $current_day['featured_image'] = ''; |
627 | - }else{ |
|
627 | + } else{ |
|
628 | 628 | $current_day['featured_image'] = ''; |
629 | 629 | } |
630 | 630 | |
631 | 631 | //Accommodation |
632 | 632 | if(false !== $current_accommodation){ |
633 | 633 | $current_day['accommodation_to_tour'] = array($current_accommodation); |
634 | - }else{ |
|
634 | + } else{ |
|
635 | 635 | $current_day['accommodation_to_tour'] = array(); |
636 | 636 | } |
637 | 637 | |
638 | 638 | //Destination |
639 | 639 | if(false !== $current_destination){ |
640 | 640 | $current_day['destination_to_tour'] = array($current_destination); |
641 | - }else{ |
|
641 | + } else{ |
|
642 | 642 | $current_day['destination_to_tour'] = array(); |
643 | 643 | } |
644 | 644 | |
645 | 645 | //Included |
646 | 646 | if(false !== $importable_content && in_array('itinerary_included',$importable_content) && isset($day['included']) && '' !== $day['included']){ |
647 | 647 | $current_day['included'] = $day['included']; |
648 | - }else{ |
|
648 | + } else{ |
|
649 | 649 | $current_day['included'] = ''; |
650 | 650 | } |
651 | 651 | |
652 | 652 | //Excluded |
653 | 653 | if(false !== $importable_content && in_array('itinerary_excluded',$importable_content) && isset($day['excluded']) && '' !== $day['excluded']){ |
654 | 654 | $current_day['excluded'] = $day['excluded']; |
655 | - }else{ |
|
655 | + } else{ |
|
656 | 656 | $current_day['excluded'] = ''; |
657 | 657 | } |
658 | 658 | |
@@ -660,7 +660,7 @@ discard block |
||
660 | 660 | $day_counter++; |
661 | 661 | } |
662 | 662 | |
663 | - }else{ |
|
663 | + } else{ |
|
664 | 664 | $day_counter = $day_counter + (int)$leg['nights']; |
665 | 665 | } |
666 | 666 | |
@@ -773,7 +773,7 @@ discard block |
||
773 | 773 | |
774 | 774 | if(false !== $this->current_accommodation && !empty($this->current_accommodation) && array_key_exists($day['content_entity_id'],$this->current_accommodation)){ |
775 | 775 | $ac_id = $this->current_accommodation[$day['content_entity_id']]; |
776 | - }else{ |
|
776 | + } else{ |
|
777 | 777 | $ac_id = wp_insert_post(array( |
778 | 778 | 'post_type' => 'accommodation', |
779 | 779 | 'post_status' => 'draft', |
@@ -841,7 +841,7 @@ discard block |
||
841 | 841 | $country_id = $this->set_country($country_wetu_id, $id); |
842 | 842 | } |
843 | 843 | |
844 | - }else { |
|
844 | + } else { |
|
845 | 845 | |
846 | 846 | $destination_json = file_get_contents("http://wetu.com/API/Pins/".$this->api_key."/Get?ids=" . $day['destination_content_entity_id']); |
847 | 847 | |
@@ -895,7 +895,7 @@ discard block |
||
895 | 895 | if(0 !== $country_id && false !== $country_id){ |
896 | 896 | $this->relation_meta[$dest_id] = $country_id; |
897 | 897 | $this->relation_meta[$country_id] = 0; |
898 | - }else{ |
|
898 | + } else{ |
|
899 | 899 | $this->relation_meta[$dest_id] = 0; |
900 | 900 | } |
901 | 901 | } |
@@ -11,12 +11,12 @@ |
||
11 | 11 | * Domain Path: /languages/ |
12 | 12 | */ |
13 | 13 | |
14 | -define('WETU_IMPORTER_PATH', plugin_dir_path( __FILE__ ) ); |
|
15 | -define('WETU_IMPORTER_CORE', __FILE__ ); |
|
16 | -define('WETU_IMPORTER_URL', plugin_dir_url( __FILE__ ) ); |
|
17 | -define('WETU_IMPORTER_VER', '1.0.0' ); |
|
14 | +define('WETU_IMPORTER_PATH', plugin_dir_path(__FILE__)); |
|
15 | +define('WETU_IMPORTER_CORE', __FILE__); |
|
16 | +define('WETU_IMPORTER_URL', plugin_dir_url(__FILE__)); |
|
17 | +define('WETU_IMPORTER_VER', '1.0.0'); |
|
18 | 18 | |
19 | -register_activation_hook( WETU_IMPORTER_CORE, array( 'WETU_Importer', 'register_activation_hook' ) ); |
|
19 | +register_activation_hook(WETU_IMPORTER_CORE, array('WETU_Importer', 'register_activation_hook')); |
|
20 | 20 | |
21 | 21 | require_once(WETU_IMPORTER_PATH.'classes/class-importer.php'); |
22 | 22 | //require_once(WETU_IMPORTER_PATH.'classes/class-connect-accommodation.php'); |