@@ -61,7 +61,7 @@ |
||
61 | 61 | * Set Answer value |
62 | 62 | * |
63 | 63 | * @access public |
64 | - * @param mixed $ANS_value |
|
64 | + * @param string $ANS_value |
|
65 | 65 | */ |
66 | 66 | public function set_value($ANS_value = '') |
67 | 67 | { |
@@ -10,144 +10,144 @@ |
||
10 | 10 | class EE_Answer extends EE_Base_Class |
11 | 11 | { |
12 | 12 | |
13 | - /** |
|
14 | - * |
|
15 | - * @param array $props_n_values |
|
16 | - * @return EE_Answer |
|
17 | - */ |
|
18 | - public static function new_instance($props_n_values = array()) |
|
19 | - { |
|
20 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
21 | - return $has_object ? $has_object : new self($props_n_values); |
|
22 | - } |
|
23 | - |
|
24 | - |
|
25 | - /** |
|
26 | - * |
|
27 | - * @param array $props_n_values |
|
28 | - * @return EE_Answer |
|
29 | - */ |
|
30 | - public static function new_instance_from_db($props_n_values = array()) |
|
31 | - { |
|
32 | - return new self($props_n_values, true); |
|
33 | - } |
|
34 | - |
|
35 | - |
|
36 | - /** |
|
37 | - * Set Question ID |
|
38 | - * |
|
39 | - * @access public |
|
40 | - * @param int $QST_ID |
|
41 | - */ |
|
42 | - public function set_question($QST_ID = 0) |
|
43 | - { |
|
44 | - $this->set('QST_ID', $QST_ID); |
|
45 | - } |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * Set Registration ID |
|
50 | - * |
|
51 | - * @access public |
|
52 | - * @param int $REG_ID |
|
53 | - */ |
|
54 | - public function set_registration($REG_ID = 0) |
|
55 | - { |
|
56 | - $this->set('REG_ID', $REG_ID); |
|
57 | - } |
|
58 | - |
|
59 | - |
|
60 | - /** |
|
61 | - * Set Answer value |
|
62 | - * |
|
63 | - * @access public |
|
64 | - * @param mixed $ANS_value |
|
65 | - */ |
|
66 | - public function set_value($ANS_value = '') |
|
67 | - { |
|
68 | - $this->set('ANS_value', $ANS_value); |
|
69 | - } |
|
70 | - |
|
71 | - |
|
72 | - /** |
|
73 | - * get Attendee First Name |
|
74 | - * |
|
75 | - * @access public |
|
76 | - * @return int |
|
77 | - */ |
|
78 | - public function registration_ID() |
|
79 | - { |
|
80 | - return $this->get('REG_ID'); |
|
81 | - } |
|
82 | - |
|
83 | - |
|
84 | - /** |
|
85 | - * get Attendee Last Name |
|
86 | - * |
|
87 | - * @access public |
|
88 | - * @return int |
|
89 | - */ |
|
90 | - public function question_ID() |
|
91 | - { |
|
92 | - return $this->get('QST_ID'); |
|
93 | - } |
|
94 | - |
|
95 | - |
|
96 | - /** |
|
97 | - * get Attendee Address |
|
98 | - * |
|
99 | - * @access public |
|
100 | - * @return string |
|
101 | - */ |
|
102 | - public function value() |
|
103 | - { |
|
104 | - return $this->get('ANS_value'); |
|
105 | - } |
|
106 | - |
|
107 | - |
|
108 | - /** |
|
109 | - * Gets a pretty form of the value (mostly applies to answers that have multiple answers) |
|
110 | - * |
|
111 | - * @param null $schema |
|
112 | - * @return string |
|
113 | - */ |
|
114 | - public function pretty_value($schema = null) |
|
115 | - { |
|
116 | - return $this->get_pretty('ANS_value', $schema); |
|
117 | - } |
|
118 | - |
|
119 | - |
|
120 | - /** |
|
121 | - * Echoes out a pretty value (even for multi-choice options) |
|
122 | - * |
|
123 | - * @param string $schema |
|
124 | - */ |
|
125 | - public function e_value($schema = null) |
|
126 | - { |
|
127 | - $this->e('ANS_value', $schema); |
|
128 | - } |
|
129 | - |
|
130 | - |
|
131 | - /** |
|
132 | - * Gets the related EE_Question to this EE_Answer |
|
133 | - * |
|
134 | - * @return EE_Question |
|
135 | - */ |
|
136 | - public function question() |
|
137 | - { |
|
138 | - return $this->get_first_related('Question'); |
|
139 | - } |
|
140 | - |
|
141 | - |
|
142 | - /** |
|
143 | - * Gets the related EE_Registration to this EE_Answer |
|
144 | - * |
|
145 | - * @return EE_Registration |
|
146 | - */ |
|
147 | - public function registration() |
|
148 | - { |
|
149 | - return $this->get_first_related('Registration'); |
|
150 | - } |
|
13 | + /** |
|
14 | + * |
|
15 | + * @param array $props_n_values |
|
16 | + * @return EE_Answer |
|
17 | + */ |
|
18 | + public static function new_instance($props_n_values = array()) |
|
19 | + { |
|
20 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
21 | + return $has_object ? $has_object : new self($props_n_values); |
|
22 | + } |
|
23 | + |
|
24 | + |
|
25 | + /** |
|
26 | + * |
|
27 | + * @param array $props_n_values |
|
28 | + * @return EE_Answer |
|
29 | + */ |
|
30 | + public static function new_instance_from_db($props_n_values = array()) |
|
31 | + { |
|
32 | + return new self($props_n_values, true); |
|
33 | + } |
|
34 | + |
|
35 | + |
|
36 | + /** |
|
37 | + * Set Question ID |
|
38 | + * |
|
39 | + * @access public |
|
40 | + * @param int $QST_ID |
|
41 | + */ |
|
42 | + public function set_question($QST_ID = 0) |
|
43 | + { |
|
44 | + $this->set('QST_ID', $QST_ID); |
|
45 | + } |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * Set Registration ID |
|
50 | + * |
|
51 | + * @access public |
|
52 | + * @param int $REG_ID |
|
53 | + */ |
|
54 | + public function set_registration($REG_ID = 0) |
|
55 | + { |
|
56 | + $this->set('REG_ID', $REG_ID); |
|
57 | + } |
|
58 | + |
|
59 | + |
|
60 | + /** |
|
61 | + * Set Answer value |
|
62 | + * |
|
63 | + * @access public |
|
64 | + * @param mixed $ANS_value |
|
65 | + */ |
|
66 | + public function set_value($ANS_value = '') |
|
67 | + { |
|
68 | + $this->set('ANS_value', $ANS_value); |
|
69 | + } |
|
70 | + |
|
71 | + |
|
72 | + /** |
|
73 | + * get Attendee First Name |
|
74 | + * |
|
75 | + * @access public |
|
76 | + * @return int |
|
77 | + */ |
|
78 | + public function registration_ID() |
|
79 | + { |
|
80 | + return $this->get('REG_ID'); |
|
81 | + } |
|
82 | + |
|
83 | + |
|
84 | + /** |
|
85 | + * get Attendee Last Name |
|
86 | + * |
|
87 | + * @access public |
|
88 | + * @return int |
|
89 | + */ |
|
90 | + public function question_ID() |
|
91 | + { |
|
92 | + return $this->get('QST_ID'); |
|
93 | + } |
|
94 | + |
|
95 | + |
|
96 | + /** |
|
97 | + * get Attendee Address |
|
98 | + * |
|
99 | + * @access public |
|
100 | + * @return string |
|
101 | + */ |
|
102 | + public function value() |
|
103 | + { |
|
104 | + return $this->get('ANS_value'); |
|
105 | + } |
|
106 | + |
|
107 | + |
|
108 | + /** |
|
109 | + * Gets a pretty form of the value (mostly applies to answers that have multiple answers) |
|
110 | + * |
|
111 | + * @param null $schema |
|
112 | + * @return string |
|
113 | + */ |
|
114 | + public function pretty_value($schema = null) |
|
115 | + { |
|
116 | + return $this->get_pretty('ANS_value', $schema); |
|
117 | + } |
|
118 | + |
|
119 | + |
|
120 | + /** |
|
121 | + * Echoes out a pretty value (even for multi-choice options) |
|
122 | + * |
|
123 | + * @param string $schema |
|
124 | + */ |
|
125 | + public function e_value($schema = null) |
|
126 | + { |
|
127 | + $this->e('ANS_value', $schema); |
|
128 | + } |
|
129 | + |
|
130 | + |
|
131 | + /** |
|
132 | + * Gets the related EE_Question to this EE_Answer |
|
133 | + * |
|
134 | + * @return EE_Question |
|
135 | + */ |
|
136 | + public function question() |
|
137 | + { |
|
138 | + return $this->get_first_related('Question'); |
|
139 | + } |
|
140 | + |
|
141 | + |
|
142 | + /** |
|
143 | + * Gets the related EE_Registration to this EE_Answer |
|
144 | + * |
|
145 | + * @return EE_Registration |
|
146 | + */ |
|
147 | + public function registration() |
|
148 | + { |
|
149 | + return $this->get_first_related('Registration'); |
|
150 | + } |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /* End of file EE_Answer.class.php */ |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | * |
217 | 217 | * @link http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail |
218 | 218 | * @access protected |
219 | - * @param string|array $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array |
|
219 | + * @param string $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array |
|
220 | 220 | * representing width and height in pixels (i.e. array(32,32) ). |
221 | 221 | * @param string|array $attr Optional. Query string or array of attributes. |
222 | 222 | * @return string HTML image element |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | * This is a method for restoring this_obj using details from the given $revision_id |
265 | 265 | * |
266 | 266 | * @param int $revision_id ID of the revision we're getting data from |
267 | - * @param array $related_obj_names if included this will be used to restore for related obj |
|
267 | + * @param string[] $related_obj_names if included this will be used to restore for related obj |
|
268 | 268 | * if not included then we just do restore on the meta. |
269 | 269 | * We will accept an array of related_obj_names for restoration here. |
270 | 270 | * @param array $where_query You can optionally include an array of key=>value pairs |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | * |
321 | 321 | * @param string $meta_key |
322 | 322 | * @param boolean $single |
323 | - * @return mixed <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
323 | + * @return string|null <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
324 | 324 | * <li>If $single is set to false, or left blank, the function returns an array containing all values of the |
325 | 325 | * specified key.</li> |
326 | 326 | * <li>If $single is set to true, the function returns the first value of the specified key (not in an |
@@ -354,8 +354,8 @@ discard block |
||
354 | 354 | /** |
355 | 355 | * Wrapper for add_post_meta, http://codex.wordpress.org/Function_Reference/add_post_meta |
356 | 356 | * |
357 | - * @param mixed $meta_key |
|
358 | - * @param mixed $meta_value |
|
357 | + * @param string $meta_key |
|
358 | + * @param string $meta_value |
|
359 | 359 | * @param bool $unique . If postmeta for this $meta_key already exists, whether to add an additional item or not |
360 | 360 | * @return boolean Boolean true, except if the $unique argument was set to true and a custom field with the given |
361 | 361 | * key already exists, in which case false is returned. |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | /** |
373 | 373 | * Wrapper for delete_post_meta, http://codex.wordpress.org/Function_Reference/delete_post_meta |
374 | 374 | * |
375 | - * @param mixed $meta_key |
|
375 | + * @param string $meta_key |
|
376 | 376 | * @param mixed $meta_value |
377 | 377 | * @return boolean False for failure. True for success. |
378 | 378 | */ |
@@ -402,7 +402,7 @@ discard block |
||
402 | 402 | * Gets all the term-taxonomies for this CPT |
403 | 403 | * |
404 | 404 | * @param array $query_params |
405 | - * @return EE_Term_Taxonomy |
|
405 | + * @return EE_Base_Class[] |
|
406 | 406 | */ |
407 | 407 | public function term_taxonomies($query_params = array()) |
408 | 408 | { |
@@ -14,429 +14,429 @@ |
||
14 | 14 | abstract class EE_CPT_Base extends EE_Soft_Delete_Base_Class |
15 | 15 | { |
16 | 16 | |
17 | - /** |
|
18 | - * This is a property for holding cached feature images on CPT objects. Cache's are set on the first |
|
19 | - * "feature_image()" method call. Each key in the array corresponds to the requested size. |
|
20 | - * |
|
21 | - * @var array |
|
22 | - */ |
|
23 | - protected $_feature_image = array(); |
|
24 | - |
|
25 | - /** |
|
26 | - * @var WP_Post the WP_Post that corresponds with this CPT model object |
|
27 | - */ |
|
28 | - protected $_wp_post; |
|
29 | - |
|
30 | - |
|
31 | - abstract public function wp_user(); |
|
32 | - |
|
33 | - |
|
34 | - /** |
|
35 | - * Returns the WP post associated with this CPT model object. If this CPT is saved, fetches it |
|
36 | - * from the DB. Otherwise, create an unsaved WP_POst object. Caches the post internally. |
|
37 | - * |
|
38 | - * @return WP_Post |
|
39 | - */ |
|
40 | - public function wp_post() |
|
41 | - { |
|
42 | - global $wpdb; |
|
43 | - if (! $this->_wp_post instanceof WP_Post) { |
|
44 | - if ($this->ID()) { |
|
45 | - $this->_wp_post = get_post($this->ID()); |
|
46 | - } else { |
|
47 | - $simulated_db_result = new stdClass(); |
|
48 | - foreach ($this->get_model()->field_settings(true) as $field_name => $field_obj) { |
|
49 | - if ($this->get_model()->get_table_obj_by_alias($field_obj->get_table_alias())->get_table_name() |
|
50 | - === $wpdb->posts |
|
51 | - ) { |
|
52 | - $column = $field_obj->get_table_column(); |
|
53 | - |
|
54 | - if ($field_obj instanceof EE_Datetime_Field) { |
|
55 | - $value_on_model_obj = $this->get_DateTime_object($field_name); |
|
56 | - } elseif ($field_obj->is_db_only_field()) { |
|
57 | - $value_on_model_obj = $field_obj->get_default_value(); |
|
58 | - } else { |
|
59 | - $value_on_model_obj = $this->get_raw($field_name); |
|
60 | - } |
|
61 | - $simulated_db_result->{$column} = $field_obj->prepare_for_use_in_db($value_on_model_obj); |
|
62 | - } |
|
63 | - } |
|
64 | - $this->_wp_post = new WP_Post($simulated_db_result); |
|
65 | - } |
|
66 | - // and let's make retrieving the EE CPT object easy too |
|
67 | - $classname = get_class($this); |
|
68 | - if (! isset($this->_wp_post->{$classname})) { |
|
69 | - $this->_wp_post->{$classname} = $this; |
|
70 | - } |
|
71 | - } |
|
72 | - return $this->_wp_post; |
|
73 | - } |
|
74 | - |
|
75 | - /** |
|
76 | - * When fetching a new value for a post field that uses the global $post for rendering, |
|
77 | - * set the global $post temporarily to be this model object; and afterwards restore it |
|
78 | - * |
|
79 | - * @param string $fieldname |
|
80 | - * @param bool $pretty |
|
81 | - * @param string $extra_cache_ref |
|
82 | - * @return mixed |
|
83 | - */ |
|
84 | - protected function _get_fresh_property($fieldname, $pretty = false, $extra_cache_ref = null) |
|
85 | - { |
|
86 | - global $post; |
|
87 | - |
|
88 | - if ($pretty |
|
89 | - && ( |
|
90 | - ! ( |
|
91 | - $post instanceof WP_Post |
|
92 | - && $post->ID |
|
93 | - ) |
|
94 | - || (int) $post->ID !== $this->ID() |
|
95 | - ) |
|
96 | - && $this->get_model()->field_settings_for($fieldname) instanceof EE_Post_Content_Field) { |
|
97 | - $old_post = $post; |
|
98 | - $post = $this->wp_post(); |
|
99 | - $return_value = parent::_get_fresh_property($fieldname, $pretty, $extra_cache_ref); |
|
100 | - $post = $old_post; |
|
101 | - } else { |
|
102 | - $return_value = parent::_get_fresh_property($fieldname, $pretty, $extra_cache_ref); |
|
103 | - } |
|
104 | - return $return_value; |
|
105 | - } |
|
106 | - |
|
107 | - /** |
|
108 | - * Adds to the specified event category. If it category doesn't exist, creates it. |
|
109 | - * |
|
110 | - * @param string $category_name |
|
111 | - * @param string $category_description optional |
|
112 | - * @param int $parent_term_taxonomy_id optional |
|
113 | - * @return EE_Term_Taxonomy |
|
114 | - */ |
|
115 | - public function add_event_category($category_name, $category_description = null, $parent_term_taxonomy_id = null) |
|
116 | - { |
|
117 | - return $this->get_model()->add_event_category( |
|
118 | - $this, |
|
119 | - $category_name, |
|
120 | - $category_description, |
|
121 | - $parent_term_taxonomy_id |
|
122 | - ); |
|
123 | - } |
|
124 | - |
|
125 | - |
|
126 | - /** |
|
127 | - * Removes the event category by specified name from being related ot this event |
|
128 | - * |
|
129 | - * @param string $category_name |
|
130 | - * @return bool |
|
131 | - */ |
|
132 | - public function remove_event_category($category_name) |
|
133 | - { |
|
134 | - return $this->get_model()->remove_event_category($this, $category_name); |
|
135 | - } |
|
136 | - |
|
137 | - |
|
138 | - /** |
|
139 | - * Removes the relation to the specified term taxonomy, and maintains the |
|
140 | - * data integrity of the term taxonomy provided |
|
141 | - * |
|
142 | - * @param EE_Term_Taxonomy $term_taxonomy |
|
143 | - * @return EE_Base_Class the relation was removed from |
|
144 | - */ |
|
145 | - public function remove_relation_to_term_taxonomy($term_taxonomy) |
|
146 | - { |
|
147 | - if (! $term_taxonomy) { |
|
148 | - EE_Error::add_error( |
|
149 | - sprintf( |
|
150 | - __( |
|
151 | - "No Term_Taxonomy provided which to remove from model object of type %s and id %d", |
|
152 | - "event_espresso" |
|
153 | - ), |
|
154 | - get_class($this), |
|
155 | - $this->ID() |
|
156 | - ), |
|
157 | - __FILE__, |
|
158 | - __FUNCTION__, |
|
159 | - __LINE__ |
|
160 | - ); |
|
161 | - return null; |
|
162 | - } |
|
163 | - $term_taxonomy->set_count($term_taxonomy->count() - 1); |
|
164 | - $term_taxonomy->save(); |
|
165 | - return $this->_remove_relation_to($term_taxonomy, 'Term_Taxonomy'); |
|
166 | - } |
|
167 | - |
|
168 | - |
|
169 | - /** |
|
170 | - * The main purpose of this method is to return the post type for the model object |
|
171 | - * |
|
172 | - * @access public |
|
173 | - * @return string |
|
174 | - */ |
|
175 | - public function post_type() |
|
176 | - { |
|
177 | - return $this->get_model()->post_type(); |
|
178 | - } |
|
179 | - |
|
180 | - |
|
181 | - /** |
|
182 | - * The main purpose of this method is to return the parent for the model object |
|
183 | - * |
|
184 | - * @access public |
|
185 | - * @return int |
|
186 | - */ |
|
187 | - public function parent() |
|
188 | - { |
|
189 | - return $this->get('parent'); |
|
190 | - } |
|
191 | - |
|
192 | - |
|
193 | - /** |
|
194 | - * return the _status property |
|
195 | - * |
|
196 | - * @return string |
|
197 | - */ |
|
198 | - public function status() |
|
199 | - { |
|
200 | - return $this->get('status'); |
|
201 | - } |
|
202 | - |
|
203 | - |
|
204 | - /** |
|
205 | - * @param string $status |
|
206 | - */ |
|
207 | - public function set_status($status) |
|
208 | - { |
|
209 | - $this->set('status', $status); |
|
210 | - } |
|
211 | - |
|
212 | - |
|
213 | - /** |
|
214 | - * This calls the equivalent model method for retrieving the feature image which in turn is a wrapper for |
|
215 | - * WordPress' get_the_post_thumbnail() function. |
|
216 | - * |
|
217 | - * @link http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail |
|
218 | - * @access protected |
|
219 | - * @param string|array $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array |
|
220 | - * representing width and height in pixels (i.e. array(32,32) ). |
|
221 | - * @param string|array $attr Optional. Query string or array of attributes. |
|
222 | - * @return string HTML image element |
|
223 | - */ |
|
224 | - protected function _get_feature_image($size, $attr) |
|
225 | - { |
|
226 | - // first let's see if we already have the _feature_image property set AND if it has a cached element on it FOR the given size |
|
227 | - $attr_key = is_array($attr) ? implode('_', $attr) : $attr; |
|
228 | - $cache_key = is_array($size) ? implode('_', $size) . $attr_key : $size . $attr_key; |
|
229 | - $this->_feature_image[ $cache_key ] = isset($this->_feature_image[ $cache_key ]) |
|
230 | - ? $this->_feature_image[ $cache_key ] : $this->get_model()->get_feature_image($this->ID(), $size, $attr); |
|
231 | - return $this->_feature_image[ $cache_key ]; |
|
232 | - } |
|
233 | - |
|
234 | - |
|
235 | - /** |
|
236 | - * See _get_feature_image. Returns the HTML to display a featured image |
|
237 | - * |
|
238 | - * @param string $size |
|
239 | - * @param string|array $attr |
|
240 | - * @return string of html |
|
241 | - */ |
|
242 | - public function feature_image($size = 'thumbnail', $attr = '') |
|
243 | - { |
|
244 | - return $this->_get_feature_image($size, $attr); |
|
245 | - } |
|
246 | - |
|
247 | - |
|
248 | - /** |
|
249 | - * This uses the wp "wp_get_attachment_image_src()" function to return the feature image for the current class |
|
250 | - * using the given size params. |
|
251 | - * |
|
252 | - * @param string|array $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array |
|
253 | - * representing width and height in pixels eg. array(32,32). |
|
254 | - * @return string|boolean the url of the image or false if not found |
|
255 | - */ |
|
256 | - public function feature_image_url($size = 'thumbnail') |
|
257 | - { |
|
258 | - $attachment = wp_get_attachment_image_src(get_post_thumbnail_id($this->ID()), $size); |
|
259 | - return ! empty($attachment) ? $attachment[0] : false; |
|
260 | - } |
|
261 | - |
|
262 | - |
|
263 | - /** |
|
264 | - * This is a method for restoring this_obj using details from the given $revision_id |
|
265 | - * |
|
266 | - * @param int $revision_id ID of the revision we're getting data from |
|
267 | - * @param array $related_obj_names if included this will be used to restore for related obj |
|
268 | - * if not included then we just do restore on the meta. |
|
269 | - * We will accept an array of related_obj_names for restoration here. |
|
270 | - * @param array $where_query You can optionally include an array of key=>value pairs |
|
271 | - * that allow you to further constrict the relation to being added. |
|
272 | - * However, keep in mind that the columns (keys) given |
|
273 | - * must match a column on the JOIN table and currently |
|
274 | - * only the HABTM models accept these additional conditions. |
|
275 | - * Also remember that if an exact match isn't found for these extra cols/val pairs, |
|
276 | - * then a NEW row is created in the join table. |
|
277 | - * This array is INDEXED by RELATED OBJ NAME (so it corresponds with the obj_names |
|
278 | - * sent); |
|
279 | - * @return void |
|
280 | - */ |
|
281 | - public function restore_revision($revision_id, $related_obj_names = array(), $where_query = array()) |
|
282 | - { |
|
283 | - // get revision object |
|
284 | - $revision_obj = $this->get_model()->get_one_by_ID($revision_id); |
|
285 | - if ($revision_obj instanceof EE_CPT_Base) { |
|
286 | - // no related_obj_name so we assume we're saving a revision on this object. |
|
287 | - if (empty($related_obj_names)) { |
|
288 | - $fields = $this->get_model()->get_meta_table_fields(); |
|
289 | - foreach ($fields as $field) { |
|
290 | - $this->set($field, $revision_obj->get($field)); |
|
291 | - } |
|
292 | - $this->save(); |
|
293 | - } |
|
294 | - $related_obj_names = (array) $related_obj_names; |
|
295 | - foreach ($related_obj_names as $related_name) { |
|
296 | - // related_obj_name so we're saving a revision on an object related to this object |
|
297 | - // do we have $where_query params for this related object? If we do then we include that. |
|
298 | - $cols_n_values = isset($where_query[ $related_name ]) ? $where_query[ $related_name ] : array(); |
|
299 | - $where_params = ! empty($cols_n_values) ? array($cols_n_values) : array(); |
|
300 | - $related_objs = $this->get_many_related($related_name, $where_params); |
|
301 | - $revision_related_objs = $revision_obj->get_many_related($related_name, $where_params); |
|
302 | - // load helper |
|
303 | - // remove related objs from this object that are not in revision |
|
304 | - // array_diff *should* work cause I think objects are indexed by ID? |
|
305 | - $related_to_remove = EEH_Array::object_array_diff($related_objs, $revision_related_objs); |
|
306 | - foreach ($related_to_remove as $rr) { |
|
307 | - $this->_remove_relation_to($rr, $related_name, $cols_n_values); |
|
308 | - } |
|
309 | - // add all related objs attached to revision to this object |
|
310 | - foreach ($revision_related_objs as $r_obj) { |
|
311 | - $this->_add_relation_to($r_obj, $related_name, $cols_n_values); |
|
312 | - } |
|
313 | - } |
|
314 | - } |
|
315 | - } |
|
316 | - |
|
317 | - |
|
318 | - /** |
|
319 | - * Wrapper for get_post_meta, http://codex.wordpress.org/Function_Reference/get_post_meta |
|
320 | - * |
|
321 | - * @param string $meta_key |
|
322 | - * @param boolean $single |
|
323 | - * @return mixed <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
324 | - * <li>If $single is set to false, or left blank, the function returns an array containing all values of the |
|
325 | - * specified key.</li> |
|
326 | - * <li>If $single is set to true, the function returns the first value of the specified key (not in an |
|
327 | - * array</li></ul> |
|
328 | - */ |
|
329 | - public function get_post_meta($meta_key = null, $single = false) |
|
330 | - { |
|
331 | - return get_post_meta($this->ID(), $meta_key, $single); |
|
332 | - } |
|
333 | - |
|
334 | - |
|
335 | - /** |
|
336 | - * Wrapper for update_post_meta, http://codex.wordpress.org/Function_Reference/update_post_meta |
|
337 | - * |
|
338 | - * @param string $meta_key |
|
339 | - * @param mixed $meta_value |
|
340 | - * @param mixed $prev_value |
|
341 | - * @return mixed Returns meta_id if the meta doesn't exist, otherwise returns true on success and false on failure. |
|
342 | - * NOTE: If the meta_value passed to this function is the same as the value that is already in the |
|
343 | - * database, this function returns false. |
|
344 | - */ |
|
345 | - public function update_post_meta($meta_key, $meta_value, $prev_value = null) |
|
346 | - { |
|
347 | - if (! $this->ID()) { |
|
348 | - $this->save(); |
|
349 | - } |
|
350 | - return update_post_meta($this->ID(), $meta_key, $meta_value, $prev_value); |
|
351 | - } |
|
352 | - |
|
353 | - |
|
354 | - /** |
|
355 | - * Wrapper for add_post_meta, http://codex.wordpress.org/Function_Reference/add_post_meta |
|
356 | - * |
|
357 | - * @param mixed $meta_key |
|
358 | - * @param mixed $meta_value |
|
359 | - * @param bool $unique . If postmeta for this $meta_key already exists, whether to add an additional item or not |
|
360 | - * @return boolean Boolean true, except if the $unique argument was set to true and a custom field with the given |
|
361 | - * key already exists, in which case false is returned. |
|
362 | - */ |
|
363 | - public function add_post_meta($meta_key, $meta_value, $unique = false) |
|
364 | - { |
|
365 | - if ($this->ID()) { |
|
366 | - $this->save(); |
|
367 | - } |
|
368 | - return add_post_meta($this->ID(), $meta_key, $meta_value, $unique); |
|
369 | - } |
|
370 | - |
|
371 | - |
|
372 | - /** |
|
373 | - * Wrapper for delete_post_meta, http://codex.wordpress.org/Function_Reference/delete_post_meta |
|
374 | - * |
|
375 | - * @param mixed $meta_key |
|
376 | - * @param mixed $meta_value |
|
377 | - * @return boolean False for failure. True for success. |
|
378 | - */ |
|
379 | - public function delete_post_meta($meta_key, $meta_value = '') |
|
380 | - { |
|
381 | - if (! $this->ID()) { |
|
382 | - // there are obviously no postmetas for this if it's not saved |
|
383 | - // so let's just report this as a success |
|
384 | - return true; |
|
385 | - } |
|
386 | - return delete_post_meta($this->ID(), $meta_key, $meta_value); |
|
387 | - } |
|
388 | - |
|
389 | - |
|
390 | - /** |
|
391 | - * Gets the URL for viewing this event on the front-end |
|
392 | - * |
|
393 | - * @return string |
|
394 | - */ |
|
395 | - public function get_permalink() |
|
396 | - { |
|
397 | - return get_permalink($this->ID()); |
|
398 | - } |
|
399 | - |
|
400 | - |
|
401 | - /** |
|
402 | - * Gets all the term-taxonomies for this CPT |
|
403 | - * |
|
404 | - * @param array $query_params |
|
405 | - * @return EE_Term_Taxonomy |
|
406 | - */ |
|
407 | - public function term_taxonomies($query_params = array()) |
|
408 | - { |
|
409 | - return $this->get_many_related('Term_Taxonomy', $query_params); |
|
410 | - } |
|
411 | - |
|
412 | - |
|
413 | - /** |
|
414 | - * @return mixed |
|
415 | - */ |
|
416 | - public function get_custom_post_statuses() |
|
417 | - { |
|
418 | - return $this->get_model()->get_custom_post_statuses(); |
|
419 | - } |
|
420 | - |
|
421 | - |
|
422 | - /** |
|
423 | - * @return mixed |
|
424 | - */ |
|
425 | - public function get_all_post_statuses() |
|
426 | - { |
|
427 | - return $this->get_model()->get_status_array(); |
|
428 | - } |
|
429 | - |
|
430 | - |
|
431 | - /** |
|
432 | - * Don't serialize the WP Post. That's just duplicate data and we want to avoid recursion |
|
433 | - * |
|
434 | - * @return array |
|
435 | - */ |
|
436 | - public function __sleep() |
|
437 | - { |
|
438 | - $properties_to_serialize = parent::__sleep(); |
|
439 | - $properties_to_serialize = array_diff($properties_to_serialize, array('_wp_post')); |
|
440 | - return $properties_to_serialize; |
|
441 | - } |
|
17 | + /** |
|
18 | + * This is a property for holding cached feature images on CPT objects. Cache's are set on the first |
|
19 | + * "feature_image()" method call. Each key in the array corresponds to the requested size. |
|
20 | + * |
|
21 | + * @var array |
|
22 | + */ |
|
23 | + protected $_feature_image = array(); |
|
24 | + |
|
25 | + /** |
|
26 | + * @var WP_Post the WP_Post that corresponds with this CPT model object |
|
27 | + */ |
|
28 | + protected $_wp_post; |
|
29 | + |
|
30 | + |
|
31 | + abstract public function wp_user(); |
|
32 | + |
|
33 | + |
|
34 | + /** |
|
35 | + * Returns the WP post associated with this CPT model object. If this CPT is saved, fetches it |
|
36 | + * from the DB. Otherwise, create an unsaved WP_POst object. Caches the post internally. |
|
37 | + * |
|
38 | + * @return WP_Post |
|
39 | + */ |
|
40 | + public function wp_post() |
|
41 | + { |
|
42 | + global $wpdb; |
|
43 | + if (! $this->_wp_post instanceof WP_Post) { |
|
44 | + if ($this->ID()) { |
|
45 | + $this->_wp_post = get_post($this->ID()); |
|
46 | + } else { |
|
47 | + $simulated_db_result = new stdClass(); |
|
48 | + foreach ($this->get_model()->field_settings(true) as $field_name => $field_obj) { |
|
49 | + if ($this->get_model()->get_table_obj_by_alias($field_obj->get_table_alias())->get_table_name() |
|
50 | + === $wpdb->posts |
|
51 | + ) { |
|
52 | + $column = $field_obj->get_table_column(); |
|
53 | + |
|
54 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
55 | + $value_on_model_obj = $this->get_DateTime_object($field_name); |
|
56 | + } elseif ($field_obj->is_db_only_field()) { |
|
57 | + $value_on_model_obj = $field_obj->get_default_value(); |
|
58 | + } else { |
|
59 | + $value_on_model_obj = $this->get_raw($field_name); |
|
60 | + } |
|
61 | + $simulated_db_result->{$column} = $field_obj->prepare_for_use_in_db($value_on_model_obj); |
|
62 | + } |
|
63 | + } |
|
64 | + $this->_wp_post = new WP_Post($simulated_db_result); |
|
65 | + } |
|
66 | + // and let's make retrieving the EE CPT object easy too |
|
67 | + $classname = get_class($this); |
|
68 | + if (! isset($this->_wp_post->{$classname})) { |
|
69 | + $this->_wp_post->{$classname} = $this; |
|
70 | + } |
|
71 | + } |
|
72 | + return $this->_wp_post; |
|
73 | + } |
|
74 | + |
|
75 | + /** |
|
76 | + * When fetching a new value for a post field that uses the global $post for rendering, |
|
77 | + * set the global $post temporarily to be this model object; and afterwards restore it |
|
78 | + * |
|
79 | + * @param string $fieldname |
|
80 | + * @param bool $pretty |
|
81 | + * @param string $extra_cache_ref |
|
82 | + * @return mixed |
|
83 | + */ |
|
84 | + protected function _get_fresh_property($fieldname, $pretty = false, $extra_cache_ref = null) |
|
85 | + { |
|
86 | + global $post; |
|
87 | + |
|
88 | + if ($pretty |
|
89 | + && ( |
|
90 | + ! ( |
|
91 | + $post instanceof WP_Post |
|
92 | + && $post->ID |
|
93 | + ) |
|
94 | + || (int) $post->ID !== $this->ID() |
|
95 | + ) |
|
96 | + && $this->get_model()->field_settings_for($fieldname) instanceof EE_Post_Content_Field) { |
|
97 | + $old_post = $post; |
|
98 | + $post = $this->wp_post(); |
|
99 | + $return_value = parent::_get_fresh_property($fieldname, $pretty, $extra_cache_ref); |
|
100 | + $post = $old_post; |
|
101 | + } else { |
|
102 | + $return_value = parent::_get_fresh_property($fieldname, $pretty, $extra_cache_ref); |
|
103 | + } |
|
104 | + return $return_value; |
|
105 | + } |
|
106 | + |
|
107 | + /** |
|
108 | + * Adds to the specified event category. If it category doesn't exist, creates it. |
|
109 | + * |
|
110 | + * @param string $category_name |
|
111 | + * @param string $category_description optional |
|
112 | + * @param int $parent_term_taxonomy_id optional |
|
113 | + * @return EE_Term_Taxonomy |
|
114 | + */ |
|
115 | + public function add_event_category($category_name, $category_description = null, $parent_term_taxonomy_id = null) |
|
116 | + { |
|
117 | + return $this->get_model()->add_event_category( |
|
118 | + $this, |
|
119 | + $category_name, |
|
120 | + $category_description, |
|
121 | + $parent_term_taxonomy_id |
|
122 | + ); |
|
123 | + } |
|
124 | + |
|
125 | + |
|
126 | + /** |
|
127 | + * Removes the event category by specified name from being related ot this event |
|
128 | + * |
|
129 | + * @param string $category_name |
|
130 | + * @return bool |
|
131 | + */ |
|
132 | + public function remove_event_category($category_name) |
|
133 | + { |
|
134 | + return $this->get_model()->remove_event_category($this, $category_name); |
|
135 | + } |
|
136 | + |
|
137 | + |
|
138 | + /** |
|
139 | + * Removes the relation to the specified term taxonomy, and maintains the |
|
140 | + * data integrity of the term taxonomy provided |
|
141 | + * |
|
142 | + * @param EE_Term_Taxonomy $term_taxonomy |
|
143 | + * @return EE_Base_Class the relation was removed from |
|
144 | + */ |
|
145 | + public function remove_relation_to_term_taxonomy($term_taxonomy) |
|
146 | + { |
|
147 | + if (! $term_taxonomy) { |
|
148 | + EE_Error::add_error( |
|
149 | + sprintf( |
|
150 | + __( |
|
151 | + "No Term_Taxonomy provided which to remove from model object of type %s and id %d", |
|
152 | + "event_espresso" |
|
153 | + ), |
|
154 | + get_class($this), |
|
155 | + $this->ID() |
|
156 | + ), |
|
157 | + __FILE__, |
|
158 | + __FUNCTION__, |
|
159 | + __LINE__ |
|
160 | + ); |
|
161 | + return null; |
|
162 | + } |
|
163 | + $term_taxonomy->set_count($term_taxonomy->count() - 1); |
|
164 | + $term_taxonomy->save(); |
|
165 | + return $this->_remove_relation_to($term_taxonomy, 'Term_Taxonomy'); |
|
166 | + } |
|
167 | + |
|
168 | + |
|
169 | + /** |
|
170 | + * The main purpose of this method is to return the post type for the model object |
|
171 | + * |
|
172 | + * @access public |
|
173 | + * @return string |
|
174 | + */ |
|
175 | + public function post_type() |
|
176 | + { |
|
177 | + return $this->get_model()->post_type(); |
|
178 | + } |
|
179 | + |
|
180 | + |
|
181 | + /** |
|
182 | + * The main purpose of this method is to return the parent for the model object |
|
183 | + * |
|
184 | + * @access public |
|
185 | + * @return int |
|
186 | + */ |
|
187 | + public function parent() |
|
188 | + { |
|
189 | + return $this->get('parent'); |
|
190 | + } |
|
191 | + |
|
192 | + |
|
193 | + /** |
|
194 | + * return the _status property |
|
195 | + * |
|
196 | + * @return string |
|
197 | + */ |
|
198 | + public function status() |
|
199 | + { |
|
200 | + return $this->get('status'); |
|
201 | + } |
|
202 | + |
|
203 | + |
|
204 | + /** |
|
205 | + * @param string $status |
|
206 | + */ |
|
207 | + public function set_status($status) |
|
208 | + { |
|
209 | + $this->set('status', $status); |
|
210 | + } |
|
211 | + |
|
212 | + |
|
213 | + /** |
|
214 | + * This calls the equivalent model method for retrieving the feature image which in turn is a wrapper for |
|
215 | + * WordPress' get_the_post_thumbnail() function. |
|
216 | + * |
|
217 | + * @link http://codex.wordpress.org/Function_Reference/get_the_post_thumbnail |
|
218 | + * @access protected |
|
219 | + * @param string|array $size (optional) Image size. Defaults to 'post-thumbnail' but can also be a 2-item array |
|
220 | + * representing width and height in pixels (i.e. array(32,32) ). |
|
221 | + * @param string|array $attr Optional. Query string or array of attributes. |
|
222 | + * @return string HTML image element |
|
223 | + */ |
|
224 | + protected function _get_feature_image($size, $attr) |
|
225 | + { |
|
226 | + // first let's see if we already have the _feature_image property set AND if it has a cached element on it FOR the given size |
|
227 | + $attr_key = is_array($attr) ? implode('_', $attr) : $attr; |
|
228 | + $cache_key = is_array($size) ? implode('_', $size) . $attr_key : $size . $attr_key; |
|
229 | + $this->_feature_image[ $cache_key ] = isset($this->_feature_image[ $cache_key ]) |
|
230 | + ? $this->_feature_image[ $cache_key ] : $this->get_model()->get_feature_image($this->ID(), $size, $attr); |
|
231 | + return $this->_feature_image[ $cache_key ]; |
|
232 | + } |
|
233 | + |
|
234 | + |
|
235 | + /** |
|
236 | + * See _get_feature_image. Returns the HTML to display a featured image |
|
237 | + * |
|
238 | + * @param string $size |
|
239 | + * @param string|array $attr |
|
240 | + * @return string of html |
|
241 | + */ |
|
242 | + public function feature_image($size = 'thumbnail', $attr = '') |
|
243 | + { |
|
244 | + return $this->_get_feature_image($size, $attr); |
|
245 | + } |
|
246 | + |
|
247 | + |
|
248 | + /** |
|
249 | + * This uses the wp "wp_get_attachment_image_src()" function to return the feature image for the current class |
|
250 | + * using the given size params. |
|
251 | + * |
|
252 | + * @param string|array $size can either be a string: 'thumbnail', 'medium', 'large', 'full' OR 2-item array |
|
253 | + * representing width and height in pixels eg. array(32,32). |
|
254 | + * @return string|boolean the url of the image or false if not found |
|
255 | + */ |
|
256 | + public function feature_image_url($size = 'thumbnail') |
|
257 | + { |
|
258 | + $attachment = wp_get_attachment_image_src(get_post_thumbnail_id($this->ID()), $size); |
|
259 | + return ! empty($attachment) ? $attachment[0] : false; |
|
260 | + } |
|
261 | + |
|
262 | + |
|
263 | + /** |
|
264 | + * This is a method for restoring this_obj using details from the given $revision_id |
|
265 | + * |
|
266 | + * @param int $revision_id ID of the revision we're getting data from |
|
267 | + * @param array $related_obj_names if included this will be used to restore for related obj |
|
268 | + * if not included then we just do restore on the meta. |
|
269 | + * We will accept an array of related_obj_names for restoration here. |
|
270 | + * @param array $where_query You can optionally include an array of key=>value pairs |
|
271 | + * that allow you to further constrict the relation to being added. |
|
272 | + * However, keep in mind that the columns (keys) given |
|
273 | + * must match a column on the JOIN table and currently |
|
274 | + * only the HABTM models accept these additional conditions. |
|
275 | + * Also remember that if an exact match isn't found for these extra cols/val pairs, |
|
276 | + * then a NEW row is created in the join table. |
|
277 | + * This array is INDEXED by RELATED OBJ NAME (so it corresponds with the obj_names |
|
278 | + * sent); |
|
279 | + * @return void |
|
280 | + */ |
|
281 | + public function restore_revision($revision_id, $related_obj_names = array(), $where_query = array()) |
|
282 | + { |
|
283 | + // get revision object |
|
284 | + $revision_obj = $this->get_model()->get_one_by_ID($revision_id); |
|
285 | + if ($revision_obj instanceof EE_CPT_Base) { |
|
286 | + // no related_obj_name so we assume we're saving a revision on this object. |
|
287 | + if (empty($related_obj_names)) { |
|
288 | + $fields = $this->get_model()->get_meta_table_fields(); |
|
289 | + foreach ($fields as $field) { |
|
290 | + $this->set($field, $revision_obj->get($field)); |
|
291 | + } |
|
292 | + $this->save(); |
|
293 | + } |
|
294 | + $related_obj_names = (array) $related_obj_names; |
|
295 | + foreach ($related_obj_names as $related_name) { |
|
296 | + // related_obj_name so we're saving a revision on an object related to this object |
|
297 | + // do we have $where_query params for this related object? If we do then we include that. |
|
298 | + $cols_n_values = isset($where_query[ $related_name ]) ? $where_query[ $related_name ] : array(); |
|
299 | + $where_params = ! empty($cols_n_values) ? array($cols_n_values) : array(); |
|
300 | + $related_objs = $this->get_many_related($related_name, $where_params); |
|
301 | + $revision_related_objs = $revision_obj->get_many_related($related_name, $where_params); |
|
302 | + // load helper |
|
303 | + // remove related objs from this object that are not in revision |
|
304 | + // array_diff *should* work cause I think objects are indexed by ID? |
|
305 | + $related_to_remove = EEH_Array::object_array_diff($related_objs, $revision_related_objs); |
|
306 | + foreach ($related_to_remove as $rr) { |
|
307 | + $this->_remove_relation_to($rr, $related_name, $cols_n_values); |
|
308 | + } |
|
309 | + // add all related objs attached to revision to this object |
|
310 | + foreach ($revision_related_objs as $r_obj) { |
|
311 | + $this->_add_relation_to($r_obj, $related_name, $cols_n_values); |
|
312 | + } |
|
313 | + } |
|
314 | + } |
|
315 | + } |
|
316 | + |
|
317 | + |
|
318 | + /** |
|
319 | + * Wrapper for get_post_meta, http://codex.wordpress.org/Function_Reference/get_post_meta |
|
320 | + * |
|
321 | + * @param string $meta_key |
|
322 | + * @param boolean $single |
|
323 | + * @return mixed <ul><li>If only $id is set it will return all meta values in an associative array.</li> |
|
324 | + * <li>If $single is set to false, or left blank, the function returns an array containing all values of the |
|
325 | + * specified key.</li> |
|
326 | + * <li>If $single is set to true, the function returns the first value of the specified key (not in an |
|
327 | + * array</li></ul> |
|
328 | + */ |
|
329 | + public function get_post_meta($meta_key = null, $single = false) |
|
330 | + { |
|
331 | + return get_post_meta($this->ID(), $meta_key, $single); |
|
332 | + } |
|
333 | + |
|
334 | + |
|
335 | + /** |
|
336 | + * Wrapper for update_post_meta, http://codex.wordpress.org/Function_Reference/update_post_meta |
|
337 | + * |
|
338 | + * @param string $meta_key |
|
339 | + * @param mixed $meta_value |
|
340 | + * @param mixed $prev_value |
|
341 | + * @return mixed Returns meta_id if the meta doesn't exist, otherwise returns true on success and false on failure. |
|
342 | + * NOTE: If the meta_value passed to this function is the same as the value that is already in the |
|
343 | + * database, this function returns false. |
|
344 | + */ |
|
345 | + public function update_post_meta($meta_key, $meta_value, $prev_value = null) |
|
346 | + { |
|
347 | + if (! $this->ID()) { |
|
348 | + $this->save(); |
|
349 | + } |
|
350 | + return update_post_meta($this->ID(), $meta_key, $meta_value, $prev_value); |
|
351 | + } |
|
352 | + |
|
353 | + |
|
354 | + /** |
|
355 | + * Wrapper for add_post_meta, http://codex.wordpress.org/Function_Reference/add_post_meta |
|
356 | + * |
|
357 | + * @param mixed $meta_key |
|
358 | + * @param mixed $meta_value |
|
359 | + * @param bool $unique . If postmeta for this $meta_key already exists, whether to add an additional item or not |
|
360 | + * @return boolean Boolean true, except if the $unique argument was set to true and a custom field with the given |
|
361 | + * key already exists, in which case false is returned. |
|
362 | + */ |
|
363 | + public function add_post_meta($meta_key, $meta_value, $unique = false) |
|
364 | + { |
|
365 | + if ($this->ID()) { |
|
366 | + $this->save(); |
|
367 | + } |
|
368 | + return add_post_meta($this->ID(), $meta_key, $meta_value, $unique); |
|
369 | + } |
|
370 | + |
|
371 | + |
|
372 | + /** |
|
373 | + * Wrapper for delete_post_meta, http://codex.wordpress.org/Function_Reference/delete_post_meta |
|
374 | + * |
|
375 | + * @param mixed $meta_key |
|
376 | + * @param mixed $meta_value |
|
377 | + * @return boolean False for failure. True for success. |
|
378 | + */ |
|
379 | + public function delete_post_meta($meta_key, $meta_value = '') |
|
380 | + { |
|
381 | + if (! $this->ID()) { |
|
382 | + // there are obviously no postmetas for this if it's not saved |
|
383 | + // so let's just report this as a success |
|
384 | + return true; |
|
385 | + } |
|
386 | + return delete_post_meta($this->ID(), $meta_key, $meta_value); |
|
387 | + } |
|
388 | + |
|
389 | + |
|
390 | + /** |
|
391 | + * Gets the URL for viewing this event on the front-end |
|
392 | + * |
|
393 | + * @return string |
|
394 | + */ |
|
395 | + public function get_permalink() |
|
396 | + { |
|
397 | + return get_permalink($this->ID()); |
|
398 | + } |
|
399 | + |
|
400 | + |
|
401 | + /** |
|
402 | + * Gets all the term-taxonomies for this CPT |
|
403 | + * |
|
404 | + * @param array $query_params |
|
405 | + * @return EE_Term_Taxonomy |
|
406 | + */ |
|
407 | + public function term_taxonomies($query_params = array()) |
|
408 | + { |
|
409 | + return $this->get_many_related('Term_Taxonomy', $query_params); |
|
410 | + } |
|
411 | + |
|
412 | + |
|
413 | + /** |
|
414 | + * @return mixed |
|
415 | + */ |
|
416 | + public function get_custom_post_statuses() |
|
417 | + { |
|
418 | + return $this->get_model()->get_custom_post_statuses(); |
|
419 | + } |
|
420 | + |
|
421 | + |
|
422 | + /** |
|
423 | + * @return mixed |
|
424 | + */ |
|
425 | + public function get_all_post_statuses() |
|
426 | + { |
|
427 | + return $this->get_model()->get_status_array(); |
|
428 | + } |
|
429 | + |
|
430 | + |
|
431 | + /** |
|
432 | + * Don't serialize the WP Post. That's just duplicate data and we want to avoid recursion |
|
433 | + * |
|
434 | + * @return array |
|
435 | + */ |
|
436 | + public function __sleep() |
|
437 | + { |
|
438 | + $properties_to_serialize = parent::__sleep(); |
|
439 | + $properties_to_serialize = array_diff($properties_to_serialize, array('_wp_post')); |
|
440 | + return $properties_to_serialize; |
|
441 | + } |
|
442 | 442 | } |
@@ -40,7 +40,7 @@ discard block |
||
40 | 40 | public function wp_post() |
41 | 41 | { |
42 | 42 | global $wpdb; |
43 | - if (! $this->_wp_post instanceof WP_Post) { |
|
43 | + if ( ! $this->_wp_post instanceof WP_Post) { |
|
44 | 44 | if ($this->ID()) { |
45 | 45 | $this->_wp_post = get_post($this->ID()); |
46 | 46 | } else { |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | } |
66 | 66 | // and let's make retrieving the EE CPT object easy too |
67 | 67 | $classname = get_class($this); |
68 | - if (! isset($this->_wp_post->{$classname})) { |
|
68 | + if ( ! isset($this->_wp_post->{$classname})) { |
|
69 | 69 | $this->_wp_post->{$classname} = $this; |
70 | 70 | } |
71 | 71 | } |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | */ |
145 | 145 | public function remove_relation_to_term_taxonomy($term_taxonomy) |
146 | 146 | { |
147 | - if (! $term_taxonomy) { |
|
147 | + if ( ! $term_taxonomy) { |
|
148 | 148 | EE_Error::add_error( |
149 | 149 | sprintf( |
150 | 150 | __( |
@@ -225,10 +225,10 @@ discard block |
||
225 | 225 | { |
226 | 226 | // first let's see if we already have the _feature_image property set AND if it has a cached element on it FOR the given size |
227 | 227 | $attr_key = is_array($attr) ? implode('_', $attr) : $attr; |
228 | - $cache_key = is_array($size) ? implode('_', $size) . $attr_key : $size . $attr_key; |
|
229 | - $this->_feature_image[ $cache_key ] = isset($this->_feature_image[ $cache_key ]) |
|
230 | - ? $this->_feature_image[ $cache_key ] : $this->get_model()->get_feature_image($this->ID(), $size, $attr); |
|
231 | - return $this->_feature_image[ $cache_key ]; |
|
228 | + $cache_key = is_array($size) ? implode('_', $size).$attr_key : $size.$attr_key; |
|
229 | + $this->_feature_image[$cache_key] = isset($this->_feature_image[$cache_key]) |
|
230 | + ? $this->_feature_image[$cache_key] : $this->get_model()->get_feature_image($this->ID(), $size, $attr); |
|
231 | + return $this->_feature_image[$cache_key]; |
|
232 | 232 | } |
233 | 233 | |
234 | 234 | |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | foreach ($related_obj_names as $related_name) { |
296 | 296 | // related_obj_name so we're saving a revision on an object related to this object |
297 | 297 | // do we have $where_query params for this related object? If we do then we include that. |
298 | - $cols_n_values = isset($where_query[ $related_name ]) ? $where_query[ $related_name ] : array(); |
|
298 | + $cols_n_values = isset($where_query[$related_name]) ? $where_query[$related_name] : array(); |
|
299 | 299 | $where_params = ! empty($cols_n_values) ? array($cols_n_values) : array(); |
300 | 300 | $related_objs = $this->get_many_related($related_name, $where_params); |
301 | 301 | $revision_related_objs = $revision_obj->get_many_related($related_name, $where_params); |
@@ -344,7 +344,7 @@ discard block |
||
344 | 344 | */ |
345 | 345 | public function update_post_meta($meta_key, $meta_value, $prev_value = null) |
346 | 346 | { |
347 | - if (! $this->ID()) { |
|
347 | + if ( ! $this->ID()) { |
|
348 | 348 | $this->save(); |
349 | 349 | } |
350 | 350 | return update_post_meta($this->ID(), $meta_key, $meta_value, $prev_value); |
@@ -378,7 +378,7 @@ discard block |
||
378 | 378 | */ |
379 | 379 | public function delete_post_meta($meta_key, $meta_value = '') |
380 | 380 | { |
381 | - if (! $this->ID()) { |
|
381 | + if ( ! $this->ID()) { |
|
382 | 382 | // there are obviously no postmetas for this if it's not saved |
383 | 383 | // so let's just report this as a success |
384 | 384 | return true; |
@@ -326,7 +326,7 @@ discard block |
||
326 | 326 | * and starts writing the file to PHP's output. Returns the file handle so other functions can |
327 | 327 | * also write to it |
328 | 328 | * |
329 | - * @param string $new_filename the name of the file that the user will download |
|
329 | + * @param string|false $filename the name of the file that the user will download |
|
330 | 330 | * @return resource, like the results of fopen(), which can be used for fwrite, fputcsv2, etc. |
331 | 331 | */ |
332 | 332 | public function begin_sending_csv($filename) |
@@ -391,10 +391,7 @@ discard block |
||
391 | 391 | * |
392 | 392 | * @param array $data 2D array, first numerically-indexed, and next-level-down preferably indexed |
393 | 393 | * by string |
394 | - * @param boolean $add_csv_column_names whether or not we should add the keys in the bottom-most array as a row for |
|
395 | - * headers in the CSV. Eg, if $data looked like |
|
396 | - * array(0=>array('EVT_ID'=>1,'EVT_name'=>'monkey'...), 1=>array(...),...)) |
|
397 | - * then the first row we'd write to the CSV would be "EVT_ID,EVT_name,..." |
|
394 | + * @param resource $filehandle |
|
398 | 395 | * @return boolean if we successfully wrote to the CSV or not. If there's no $data, we consider that a success |
399 | 396 | * (because we wrote everything there was...nothing) |
400 | 397 | */ |
@@ -491,7 +488,7 @@ discard block |
||
491 | 488 | * next layer is numerically indexed to represent each model object (eg, each |
492 | 489 | * individual event), and the last layer has all the attributes o fthat model |
493 | 490 | * object (eg, the event's id, name, etc) |
494 | - * @return boolean success |
|
491 | + * @return boolean|null success |
|
495 | 492 | */ |
496 | 493 | public function write_model_data_to_csv($filehandle, $model_data_array) |
497 | 494 | { |
@@ -522,8 +519,8 @@ discard block |
||
522 | 519 | * and dies (in order to avoid other plugins from messing up the csv output) |
523 | 520 | * |
524 | 521 | * @param string $filename the filename you want to give the file |
525 | - * @param array $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
|
526 | - * @return bool | void writes CSV file to output and dies |
|
522 | + * @param boolean $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
|
523 | + * @return boolean|null | void writes CSV file to output and dies |
|
527 | 524 | */ |
528 | 525 | public function export_multiple_model_data_to_csv($filename, $model_data_array) |
529 | 526 | { |
@@ -537,7 +534,7 @@ discard block |
||
537 | 534 | * @access public |
538 | 535 | * @param array $data - the array of data to be converted to csv and exported |
539 | 536 | * @param string $filename - name for newly created csv file |
540 | - * @return TRUE on success, FALSE on fail |
|
537 | + * @return false|null on success, FALSE on fail |
|
541 | 538 | */ |
542 | 539 | public function export_array_to_csv($data = false, $filename = false) |
543 | 540 | { |
@@ -16,673 +16,673 @@ |
||
16 | 16 | class EE_CSV |
17 | 17 | { |
18 | 18 | |
19 | - // instance of the EE_CSV object |
|
20 | - private static $_instance = null; |
|
21 | - |
|
22 | - |
|
23 | - // multidimensional array to store update & error messages |
|
24 | - // var $_notices = array( 'updates' => array(), 'errors' => array() ); |
|
25 | - |
|
26 | - |
|
27 | - private $_primary_keys; |
|
28 | - |
|
29 | - /** |
|
30 | - * |
|
31 | - * @var EE_Registry |
|
32 | - */ |
|
33 | - private $EE; |
|
34 | - /** |
|
35 | - * string used for 1st cell in exports, which indicates that the following 2 rows will be metadata keys and values |
|
36 | - */ |
|
37 | - const metadata_header = 'Event Espresso Export Meta Data'; |
|
38 | - |
|
39 | - /** |
|
40 | - * private constructor to prevent direct creation |
|
41 | - * |
|
42 | - * @Constructor |
|
43 | - * @access private |
|
44 | - * @return void |
|
45 | - */ |
|
46 | - private function __construct() |
|
47 | - { |
|
48 | - global $wpdb; |
|
49 | - |
|
50 | - $this->_primary_keys = array( |
|
51 | - $wpdb->prefix . 'esp_answer' => array('ANS_ID'), |
|
52 | - $wpdb->prefix . 'esp_attendee' => array('ATT_ID'), |
|
53 | - $wpdb->prefix . 'esp_datetime' => array('DTT_ID'), |
|
54 | - $wpdb->prefix . 'esp_event_question_group' => array('EQG_ID'), |
|
55 | - $wpdb->prefix . 'esp_message_template' => array('MTP_ID'), |
|
56 | - $wpdb->prefix . 'esp_payment' => array('PAY_ID'), |
|
57 | - $wpdb->prefix . 'esp_price' => array('PRC_ID'), |
|
58 | - $wpdb->prefix . 'esp_price_type' => array('PRT_ID'), |
|
59 | - $wpdb->prefix . 'esp_question' => array('QST_ID'), |
|
60 | - $wpdb->prefix . 'esp_question_group' => array('QSG_ID'), |
|
61 | - $wpdb->prefix . 'esp_question_group_question' => array('QGQ_ID'), |
|
62 | - $wpdb->prefix . 'esp_question_option' => array('QSO_ID'), |
|
63 | - $wpdb->prefix . 'esp_registration' => array('REG_ID'), |
|
64 | - $wpdb->prefix . 'esp_status' => array('STS_ID'), |
|
65 | - $wpdb->prefix . 'esp_transaction' => array('TXN_ID'), |
|
66 | - $wpdb->prefix . 'esp_transaction' => array('TXN_ID'), |
|
67 | - $wpdb->prefix . 'events_detail' => array('id'), |
|
68 | - $wpdb->prefix . 'events_category_detail' => array('id'), |
|
69 | - $wpdb->prefix . 'events_category_rel' => array('id'), |
|
70 | - $wpdb->prefix . 'events_venue' => array('id'), |
|
71 | - $wpdb->prefix . 'events_venue_rel' => array('emeta_id'), |
|
72 | - $wpdb->prefix . 'events_locale' => array('id'), |
|
73 | - $wpdb->prefix . 'events_locale_rel' => array('id'), |
|
74 | - $wpdb->prefix . 'events_personnel' => array('id'), |
|
75 | - $wpdb->prefix . 'events_personnel_rel' => array('id'), |
|
76 | - ); |
|
77 | - } |
|
78 | - |
|
79 | - |
|
80 | - /** |
|
81 | - * @ singleton method used to instantiate class object |
|
82 | - * @ access public |
|
83 | - * |
|
84 | - * @return EE_CSV |
|
85 | - */ |
|
86 | - public static function instance() |
|
87 | - { |
|
88 | - // check if class object is instantiated |
|
89 | - if (self::$_instance === null or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_CSV)) { |
|
90 | - self::$_instance = new self(); |
|
91 | - } |
|
92 | - return self::$_instance; |
|
93 | - } |
|
94 | - |
|
95 | - /** |
|
96 | - * Opens a unicode or utf file (normal file_get_contents has difficulty readin ga unicode file. @see |
|
97 | - * http://stackoverflow.com/questions/15092764/how-to-read-unicode-text-file-in-php |
|
98 | - * |
|
99 | - * @param string $file_path |
|
100 | - * @return string |
|
101 | - * @throws EE_Error |
|
102 | - */ |
|
103 | - private function read_unicode_file($file_path) |
|
104 | - { |
|
105 | - $fc = ""; |
|
106 | - $fh = fopen($file_path, "rb"); |
|
107 | - if (! $fh) { |
|
108 | - throw new EE_Error(sprintf(__("Cannot open file for read: %s<br>\n", 'event_espresso'), $file_path)); |
|
109 | - } |
|
110 | - $flen = filesize($file_path); |
|
111 | - $bc = fread($fh, $flen); |
|
112 | - for ($i = 0; $i < $flen; $i++) { |
|
113 | - $c = substr($bc, $i, 1); |
|
114 | - if ((ord($c) != 0) && (ord($c) != 13)) { |
|
115 | - $fc = $fc . $c; |
|
116 | - } |
|
117 | - } |
|
118 | - if ((ord(substr($fc, 0, 1)) == 255) && (ord(substr($fc, 1, 1)) == 254)) { |
|
119 | - $fc = substr($fc, 2); |
|
120 | - } |
|
121 | - return ($fc); |
|
122 | - } |
|
123 | - |
|
124 | - |
|
125 | - /** |
|
126 | - * Generic CSV-functionality to turn an entire CSV file into a single array that's |
|
127 | - * NOT in a specific format to EE. It's just a 2-level array, with top-level arrays |
|
128 | - * representing each row in the CSV file, and the second-level arrays being each column in that row |
|
129 | - * |
|
130 | - * @param string $path_to_file |
|
131 | - * @return array of arrays. Top-level array has rows, second-level array has each item |
|
132 | - */ |
|
133 | - public function import_csv_to_multi_dimensional_array($path_to_file) |
|
134 | - { |
|
135 | - // needed to deal with Mac line endings |
|
136 | - ini_set('auto_detect_line_endings', true); |
|
137 | - |
|
138 | - // because fgetcsv does not correctly deal with backslashed quotes such as \" |
|
139 | - // we'll read the file into a string |
|
140 | - $file_contents = $this->read_unicode_file($path_to_file); |
|
141 | - // replace backslashed quotes with CSV enclosures |
|
142 | - $file_contents = str_replace('\\"', '"""', $file_contents); |
|
143 | - // HEY YOU! PUT THAT FILE BACK!!! |
|
144 | - file_put_contents($path_to_file, $file_contents); |
|
145 | - |
|
146 | - if (($file_handle = fopen($path_to_file, "r")) !== false) { |
|
147 | - # Set the parent multidimensional array key to 0. |
|
148 | - $nn = 0; |
|
149 | - $csvarray = array(); |
|
150 | - |
|
151 | - // in PHP 5.3 fgetcsv accepts a 5th parameter, but the pre 5.3 versions of fgetcsv choke if passed more than 4 - is that crazy or what? |
|
152 | - if (version_compare(PHP_VERSION, '5.3.0') < 0) { |
|
153 | - // PHP 5.2- version |
|
154 | - // loop through each row of the file |
|
155 | - while (($data = fgetcsv($file_handle, 0, ',', '"')) !== false) { |
|
156 | - $csvarray[] = $data; |
|
157 | - } |
|
158 | - } else { |
|
159 | - // loop through each row of the file |
|
160 | - while (($data = fgetcsv($file_handle, 0, ',', '"', '\\')) !== false) { |
|
161 | - $csvarray[] = $data; |
|
162 | - } |
|
163 | - } |
|
164 | - # Close the File. |
|
165 | - fclose($file_handle); |
|
166 | - return $csvarray; |
|
167 | - } else { |
|
168 | - EE_Error::add_error( |
|
169 | - sprintf(__("An error occurred - the file: %s could not opened.", "event_espresso"), $path_to_file), |
|
170 | - __FILE__, |
|
171 | - __FUNCTION__, |
|
172 | - __LINE__ |
|
173 | - ); |
|
174 | - return false; |
|
175 | - } |
|
176 | - } |
|
177 | - |
|
178 | - |
|
179 | - /** |
|
180 | - * @Import contents of csv file and store values in an array to be manipulated by other functions |
|
181 | - * @access public |
|
182 | - * @param string $path_to_file - the csv file to be imported including the path to it's location. |
|
183 | - * If $model_name is provided, assumes that each row in the CSV represents a |
|
184 | - * model object for that model If $model_name ISN'T provided, assumes that |
|
185 | - * before model object data, there is a row where the first entry is simply |
|
186 | - * 'MODEL', and next entry is the model's name, (untranslated) like Event, and |
|
187 | - * then maybe a row of headers, and then the model data. Eg. |
|
188 | - * '<br>MODEL,Event,<br>EVT_ID,EVT_name,...<br>1,Monkey |
|
189 | - * Party,...<br>2,Llamarama,...<br>MODEL,Venue,<br>VNU_ID,VNU_name<br>1,The |
|
190 | - * Forest |
|
191 | - * @param string $model_name model name if we know what model we're importing |
|
192 | - * @param boolean $first_row_is_headers - whether the first row of data is headers or not - TRUE = headers, FALSE = |
|
193 | - * data |
|
194 | - * @return mixed - array on success - multi dimensional with headers as keys (if headers exist) OR string on fail - |
|
195 | - * error message like the following array('Event'=>array( array('EVT_ID'=>1,'EVT_name'=>'bob |
|
196 | - * party',...), array('EVT_ID'=>2,'EVT_name'=>'llamarama',...), |
|
197 | - * ... |
|
198 | - * ) |
|
199 | - * 'Venue'=>array( |
|
200 | - * array('VNU_ID'=>1,'VNU_name'=>'the shack',...), |
|
201 | - * array('VNU_ID'=>2,'VNU_name'=>'tree house',...), |
|
202 | - * ... |
|
203 | - * ) |
|
204 | - * ... |
|
205 | - * ) |
|
206 | - */ |
|
207 | - public function import_csv_to_model_data_array($path_to_file, $model_name = false, $first_row_is_headers = true) |
|
208 | - { |
|
209 | - $multi_dimensional_array = $this->import_csv_to_multi_dimensional_array($path_to_file); |
|
210 | - if (! $multi_dimensional_array) { |
|
211 | - return false; |
|
212 | - } |
|
213 | - // gotta start somewhere |
|
214 | - $row = 1; |
|
215 | - // array to store csv data in |
|
216 | - $ee_formatted_data = array(); |
|
217 | - // array to store headers (column names) |
|
218 | - $headers = array(); |
|
219 | - foreach ($multi_dimensional_array as $data) { |
|
220 | - // if first cell is MODEL, then second cell is the MODEL name |
|
221 | - if ($data[0] == 'MODEL') { |
|
222 | - $model_name = $data[1]; |
|
223 | - // don't bother looking for model data in this row. The rest of this |
|
224 | - // row should be blank |
|
225 | - // AND pretend this is the first row again |
|
226 | - $row = 1; |
|
227 | - // reset headers |
|
228 | - $headers = array(); |
|
229 | - continue; |
|
230 | - } |
|
231 | - if (strpos($data[0], EE_CSV::metadata_header) !== false) { |
|
232 | - $model_name = EE_CSV::metadata_header; |
|
233 | - // store like model data, we just won't try importing it etc. |
|
234 | - $row = 1; |
|
235 | - continue; |
|
236 | - } |
|
237 | - |
|
238 | - |
|
239 | - // how many columns are there? |
|
240 | - $columns = count($data); |
|
241 | - |
|
242 | - $model_entry = array(); |
|
243 | - // loop through each column |
|
244 | - for ($i = 0; $i < $columns; $i++) { |
|
245 | - // replace csv_enclosures with backslashed quotes |
|
246 | - $data[ $i ] = str_replace('"""', '\\"', $data[ $i ]); |
|
247 | - // do we need to grab the column names? |
|
248 | - if ($row === 1) { |
|
249 | - if ($first_row_is_headers) { |
|
250 | - // store the column names to use for keys |
|
251 | - $column_name = $data[ $i ]; |
|
252 | - // check it's not blank... sometimes CSV editign programs adda bunch of empty columns onto the end... |
|
253 | - if (! $column_name) { |
|
254 | - continue; |
|
255 | - } |
|
256 | - $matches = array(); |
|
257 | - if ($model_name == EE_CSV::metadata_header) { |
|
258 | - $headers[ $i ] = $column_name; |
|
259 | - } else { |
|
260 | - // now get the db table name from it (the part between square brackets) |
|
261 | - $success = preg_match('~(.*)\[(.*)\]~', $column_name, $matches); |
|
262 | - if (! $success) { |
|
263 | - EE_Error::add_error( |
|
264 | - sprintf( |
|
265 | - __( |
|
266 | - "The column titled %s is invalid for importing. It must be be in the format of 'Nice Name[model_field_name]' in row %s", |
|
267 | - "event_espresso" |
|
268 | - ), |
|
269 | - $column_name, |
|
270 | - implode(",", $data) |
|
271 | - ), |
|
272 | - __FILE__, |
|
273 | - __FUNCTION__, |
|
274 | - __LINE__ |
|
275 | - ); |
|
276 | - return false; |
|
277 | - } |
|
278 | - $headers[ $i ] = $matches[2]; |
|
279 | - } |
|
280 | - } else { |
|
281 | - // no column names means our final array will just use counters for keys |
|
282 | - $model_entry[ $headers[ $i ] ] = $data[ $i ]; |
|
283 | - $headers[ $i ] = $i; |
|
284 | - } |
|
285 | - // and we need to store csv data |
|
286 | - } else { |
|
287 | - // this column isn' ta header, store it if there is a header for it |
|
288 | - if (isset($headers[ $i ])) { |
|
289 | - $model_entry[ $headers[ $i ] ] = $data[ $i ]; |
|
290 | - } |
|
291 | - } |
|
292 | - } |
|
293 | - // save the row's data IF it's a non-header-row |
|
294 | - if (! $first_row_is_headers || ($first_row_is_headers && $row > 1)) { |
|
295 | - $ee_formatted_data[ $model_name ][] = $model_entry; |
|
296 | - } |
|
297 | - // advance to next row |
|
298 | - $row++; |
|
299 | - } |
|
300 | - |
|
301 | - // delete the uploaded file |
|
302 | - unlink($path_to_file); |
|
303 | - // echo '<pre style="height:auto;border:2px solid lightblue;">' . print_r( $ee_formatted_data, TRUE ) . '</pre><br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>'; |
|
304 | - // die(); |
|
305 | - |
|
306 | - // it's good to give back |
|
307 | - return $ee_formatted_data; |
|
308 | - } |
|
309 | - |
|
310 | - |
|
311 | - public function save_csv_to_db($csv_data_array, $model_name = false) |
|
312 | - { |
|
313 | - EE_Error::doing_it_wrong( |
|
314 | - 'save_csv_to_db', |
|
315 | - __( |
|
316 | - 'Function moved to EE_Import and renamed to save_csv_data_array_to_db', |
|
317 | - 'event_espresso' |
|
318 | - ), |
|
319 | - '4.6.7' |
|
320 | - ); |
|
321 | - return EE_Import::instance()->save_csv_data_array_to_db($csv_data_array, $model_name); |
|
322 | - } |
|
323 | - |
|
324 | - /** |
|
325 | - * Sends HTTP headers to indicate that the browser should download a file, |
|
326 | - * and starts writing the file to PHP's output. Returns the file handle so other functions can |
|
327 | - * also write to it |
|
328 | - * |
|
329 | - * @param string $new_filename the name of the file that the user will download |
|
330 | - * @return resource, like the results of fopen(), which can be used for fwrite, fputcsv2, etc. |
|
331 | - */ |
|
332 | - public function begin_sending_csv($filename) |
|
333 | - { |
|
334 | - // grab file extension |
|
335 | - $ext = substr(strrchr($filename, '.'), 1); |
|
336 | - if ($ext == '.csv' or $ext == '.xls') { |
|
337 | - str_replace($ext, '', $filename); |
|
338 | - } |
|
339 | - $filename .= '.csv'; |
|
340 | - |
|
341 | - // if somebody's been naughty and already started outputting stuff, trash it |
|
342 | - // and start writing our stuff. |
|
343 | - if (ob_get_length()) { |
|
344 | - @ob_flush(); |
|
345 | - @flush(); |
|
346 | - @ob_end_flush(); |
|
347 | - } |
|
348 | - @ob_start(); |
|
349 | - header("Pragma: public"); |
|
350 | - header("Expires: 0"); |
|
351 | - header("Pragma: no-cache"); |
|
352 | - header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0"); |
|
353 | - // header("Content-Type: application/force-download"); |
|
354 | - // header("Content-Type: application/octet-stream"); |
|
355 | - // header("Content-Type: application/download"); |
|
356 | - header('Content-disposition: attachment; filename=' . $filename); |
|
357 | - header("Content-Type: text/csv; charset=utf-8"); |
|
358 | - do_action('AHEE__EE_CSV__begin_sending_csv__headers'); |
|
359 | - echo apply_filters( |
|
360 | - 'FHEE__EE_CSV__begin_sending_csv__start_writing', |
|
361 | - "\xEF\xBB\xBF" |
|
362 | - ); // makes excel open it as UTF-8. UTF-8 BOM, see http://stackoverflow.com/a/4440143/2773835 |
|
363 | - $fh = fopen('php://output', 'w'); |
|
364 | - return $fh; |
|
365 | - } |
|
366 | - |
|
367 | - /** |
|
368 | - * Writes some meta data to the CSV as a bunch of columns. Initially we're only |
|
369 | - * mentioning the version and timezone |
|
370 | - * |
|
371 | - * @param resource $filehandle |
|
372 | - */ |
|
373 | - public function write_metadata_to_csv($filehandle) |
|
374 | - { |
|
375 | - $data_row = array(EE_CSV::metadata_header);// do NOT translate because this exact string is used when importing |
|
376 | - $this->fputcsv2($filehandle, $data_row); |
|
377 | - $meta_data = array( |
|
378 | - 0 => array( |
|
379 | - 'version' => espresso_version(), |
|
380 | - 'timezone' => EEH_DTT_Helper::get_timezone(), |
|
381 | - 'time_of_export' => current_time('mysql'), |
|
382 | - 'site_url' => site_url(), |
|
383 | - ), |
|
384 | - ); |
|
385 | - $this->write_data_array_to_csv($filehandle, $meta_data); |
|
386 | - } |
|
387 | - |
|
388 | - |
|
389 | - /** |
|
390 | - * Writes $data to the csv file open in $filehandle. uses the array indices of $data for column headers |
|
391 | - * |
|
392 | - * @param array $data 2D array, first numerically-indexed, and next-level-down preferably indexed |
|
393 | - * by string |
|
394 | - * @param boolean $add_csv_column_names whether or not we should add the keys in the bottom-most array as a row for |
|
395 | - * headers in the CSV. Eg, if $data looked like |
|
396 | - * array(0=>array('EVT_ID'=>1,'EVT_name'=>'monkey'...), 1=>array(...),...)) |
|
397 | - * then the first row we'd write to the CSV would be "EVT_ID,EVT_name,..." |
|
398 | - * @return boolean if we successfully wrote to the CSV or not. If there's no $data, we consider that a success |
|
399 | - * (because we wrote everything there was...nothing) |
|
400 | - */ |
|
401 | - public function write_data_array_to_csv($filehandle, $data) |
|
402 | - { |
|
403 | - |
|
404 | - |
|
405 | - // determine if $data is actually a 2d array |
|
406 | - if ($data && is_array($data) && is_array(EEH_Array::get_one_item_from_array($data))) { |
|
407 | - // make sure top level is numerically indexed, |
|
408 | - |
|
409 | - if (EEH_Array::is_associative_array($data)) { |
|
410 | - throw new EE_Error( |
|
411 | - sprintf( |
|
412 | - __( |
|
413 | - "top-level array must be numerically indexed. Does these look like numbers to you? %s", |
|
414 | - "event_espresso" |
|
415 | - ), |
|
416 | - implode(",", array_keys($data)) |
|
417 | - ) |
|
418 | - ); |
|
419 | - } |
|
420 | - $item_in_top_level_array = EEH_Array::get_one_item_from_array($data); |
|
421 | - // now, is the last item in the top-level array of $data an associative or numeric array? |
|
422 | - if (EEH_Array::is_associative_array($item_in_top_level_array)) { |
|
423 | - // its associative, so we want to output its keys as column headers |
|
424 | - $keys = array_keys($item_in_top_level_array); |
|
425 | - echo $this->fputcsv2($filehandle, $keys); |
|
426 | - } |
|
427 | - // start writing data |
|
428 | - foreach ($data as $data_row) { |
|
429 | - echo $this->fputcsv2($filehandle, $data_row); |
|
430 | - } |
|
431 | - return true; |
|
432 | - } else { |
|
433 | - // no data TO write... so we can assume that's a success |
|
434 | - return true; |
|
435 | - } |
|
436 | - // //if 2nd level is indexed by strings, use those as csv column headers (ie, the first row) |
|
437 | - // |
|
438 | - // |
|
439 | - // $no_table = TRUE; |
|
440 | - // |
|
441 | - // // loop through data and add each row to the file/stream as csv |
|
442 | - // foreach ( $data as $model_name => $model_data ) { |
|
443 | - // // test first row to see if it is data or a model name |
|
444 | - // $model = EE_Registry::instance();->load_model($model_name); |
|
445 | - // //if the model really exists, |
|
446 | - // if ( $model ) { |
|
447 | - // |
|
448 | - // // we have a table name |
|
449 | - // $no_table = FALSE; |
|
450 | - // |
|
451 | - // // put the tablename into an array cuz that's how fputcsv rolls |
|
452 | - // $model_name_row = array( 'MODEL', $model_name ); |
|
453 | - // |
|
454 | - // // add table name to csv output |
|
455 | - // echo self::fputcsv2($filehandle, $model_name_row); |
|
456 | - // |
|
457 | - // // now get the rest of the data |
|
458 | - // foreach ( $model_data as $row ) { |
|
459 | - // // output the row |
|
460 | - // echo self::fputcsv2($filehandle, $row); |
|
461 | - // } |
|
462 | - // |
|
463 | - // } |
|
464 | - // |
|
465 | - // if ( $no_table ) { |
|
466 | - // // no table so just put the data |
|
467 | - // echo self::fputcsv2($filehandle, $model_data); |
|
468 | - // } |
|
469 | - // |
|
470 | - // } // END OF foreach ( $data ) |
|
471 | - } |
|
472 | - |
|
473 | - /** |
|
474 | - * Should be called after begin_sending_csv(), and one or more write_data_array_to_csv()s. |
|
475 | - * Calls exit to prevent polluting the CSV file with other junk |
|
476 | - * |
|
477 | - * @param resource $fh filehandle where we're writing the CSV to |
|
478 | - */ |
|
479 | - public function end_sending_csv($fh) |
|
480 | - { |
|
481 | - fclose($fh); |
|
482 | - exit(0); |
|
483 | - } |
|
484 | - |
|
485 | - /** |
|
486 | - * Given an open file, writes all the model data to it in the format the importer expects. |
|
487 | - * Usually preceded by begin_sending_csv($filename), and followed by end_sending_csv($filehandle). |
|
488 | - * |
|
489 | - * @param resource $filehandle |
|
490 | - * @param array $model_data_array is assumed to be a 3d array: 1st layer has keys of model names (eg 'Event'), |
|
491 | - * next layer is numerically indexed to represent each model object (eg, each |
|
492 | - * individual event), and the last layer has all the attributes o fthat model |
|
493 | - * object (eg, the event's id, name, etc) |
|
494 | - * @return boolean success |
|
495 | - */ |
|
496 | - public function write_model_data_to_csv($filehandle, $model_data_array) |
|
497 | - { |
|
498 | - $this->write_metadata_to_csv($filehandle); |
|
499 | - foreach ($model_data_array as $model_name => $model_instance_arrays) { |
|
500 | - // first: output a special row stating the model |
|
501 | - echo $this->fputcsv2($filehandle, array('MODEL', $model_name)); |
|
502 | - // if we have items to put in the CSV, do it normally |
|
503 | - |
|
504 | - if (! empty($model_instance_arrays)) { |
|
505 | - $this->write_data_array_to_csv($filehandle, $model_instance_arrays); |
|
506 | - } else { |
|
507 | - // echo "no data to write... so just write the headers"; |
|
508 | - // so there's actually NO model objects for that model. |
|
509 | - // probably still want to show the columns |
|
510 | - $model = EE_Registry::instance()->load_model($model_name); |
|
511 | - $column_names = array(); |
|
512 | - foreach ($model->field_settings() as $field) { |
|
513 | - $column_names[ $field->get_nicename() . "[" . $field->get_name() . "]" ] = null; |
|
514 | - } |
|
515 | - $this->write_data_array_to_csv($filehandle, array($column_names)); |
|
516 | - } |
|
517 | - } |
|
518 | - } |
|
519 | - |
|
520 | - /** |
|
521 | - * Writes the CSV file to the output buffer, with rows corresponding to $model_data_array, |
|
522 | - * and dies (in order to avoid other plugins from messing up the csv output) |
|
523 | - * |
|
524 | - * @param string $filename the filename you want to give the file |
|
525 | - * @param array $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
|
526 | - * @return bool | void writes CSV file to output and dies |
|
527 | - */ |
|
528 | - public function export_multiple_model_data_to_csv($filename, $model_data_array) |
|
529 | - { |
|
530 | - $filehandle = $this->begin_sending_csv($filename); |
|
531 | - $this->write_model_data_to_csv($filehandle, $model_data_array); |
|
532 | - $this->end_sending_csv($filehandle); |
|
533 | - } |
|
534 | - |
|
535 | - /** |
|
536 | - * @Export contents of an array to csv file |
|
537 | - * @access public |
|
538 | - * @param array $data - the array of data to be converted to csv and exported |
|
539 | - * @param string $filename - name for newly created csv file |
|
540 | - * @return TRUE on success, FALSE on fail |
|
541 | - */ |
|
542 | - public function export_array_to_csv($data = false, $filename = false) |
|
543 | - { |
|
544 | - |
|
545 | - // no data file?? get outta here |
|
546 | - if (! $data or ! is_array($data) or empty($data)) { |
|
547 | - return false; |
|
548 | - } |
|
549 | - |
|
550 | - // no filename?? get outta here |
|
551 | - if (! $filename) { |
|
552 | - return false; |
|
553 | - } |
|
554 | - |
|
555 | - |
|
556 | - // somebody told me i might need this ??? |
|
557 | - global $wpdb; |
|
558 | - $prefix = $wpdb->prefix; |
|
559 | - |
|
560 | - |
|
561 | - $fh = $this->begin_sending_csv($filename); |
|
562 | - |
|
563 | - |
|
564 | - $this->end_sending_csv($fh); |
|
565 | - } |
|
566 | - |
|
567 | - |
|
568 | - /** |
|
569 | - * @Determine the maximum upload file size based on php.ini settings |
|
570 | - * @access public |
|
571 | - * @param int $percent_of_max - desired percentage of the max upload_mb |
|
572 | - * @return int KB |
|
573 | - */ |
|
574 | - public function get_max_upload_size($percent_of_max = false) |
|
575 | - { |
|
576 | - |
|
577 | - $max_upload = (int) (ini_get('upload_max_filesize')); |
|
578 | - $max_post = (int) (ini_get('post_max_size')); |
|
579 | - $memory_limit = (int) (ini_get('memory_limit')); |
|
580 | - |
|
581 | - // determine the smallest of the three values from above |
|
582 | - $upload_mb = min($max_upload, $max_post, $memory_limit); |
|
583 | - |
|
584 | - // convert MB to KB |
|
585 | - $upload_mb = $upload_mb * 1024; |
|
586 | - |
|
587 | - // don't want the full monty? then reduce the max uplaod size |
|
588 | - if ($percent_of_max) { |
|
589 | - // is percent_of_max like this -> 50 or like this -> 0.50 ? |
|
590 | - if ($percent_of_max > 1) { |
|
591 | - // chnages 50 to 0.50 |
|
592 | - $percent_of_max = $percent_of_max / 100; |
|
593 | - } |
|
594 | - // make upload_mb a percentage of the max upload_mb |
|
595 | - $upload_mb = $upload_mb * $percent_of_max; |
|
596 | - } |
|
597 | - |
|
598 | - return $upload_mb; |
|
599 | - } |
|
600 | - |
|
601 | - |
|
602 | - /** |
|
603 | - * @Drop in replacement for PHP's fputcsv function - but this one works!!! |
|
604 | - * @access private |
|
605 | - * @param resource $fh - file handle - what we are writing to |
|
606 | - * @param array $row - individual row of csv data |
|
607 | - * @param string $delimiter - csv delimiter |
|
608 | - * @param string $enclosure - csv enclosure |
|
609 | - * @param string $mysql_null - allows php NULL to be overridden with MySQl's insertable NULL value |
|
610 | - * @return void |
|
611 | - */ |
|
612 | - private function fputcsv2($fh, array $row, $delimiter = ',', $enclosure = '"', $mysql_null = false) |
|
613 | - { |
|
614 | - // Allow user to filter the csv delimiter and enclosure for other countries csv standards |
|
615 | - $delimiter = apply_filters('FHEE__EE_CSV__fputcsv2__delimiter', $delimiter); |
|
616 | - $enclosure = apply_filters('FHEE__EE_CSV__fputcsv2__enclosure', $enclosure); |
|
617 | - |
|
618 | - $delimiter_esc = preg_quote($delimiter, '/'); |
|
619 | - $enclosure_esc = preg_quote($enclosure, '/'); |
|
620 | - |
|
621 | - $output = array(); |
|
622 | - foreach ($row as $field_value) { |
|
623 | - if (is_object($field_value) || is_array($field_value)) { |
|
624 | - $field_value = serialize($field_value); |
|
625 | - } |
|
626 | - if ($field_value === null && $mysql_null) { |
|
627 | - $output[] = 'NULL'; |
|
628 | - continue; |
|
629 | - } |
|
630 | - |
|
631 | - $output[] = preg_match("/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field_value) ? |
|
632 | - ($enclosure . str_replace($enclosure, $enclosure . $enclosure, $field_value) . $enclosure) |
|
633 | - : $field_value; |
|
634 | - } |
|
635 | - |
|
636 | - fwrite($fh, join($delimiter, $output) . PHP_EOL); |
|
637 | - } |
|
638 | - |
|
639 | - |
|
640 | - // /** |
|
641 | - // * @CSV Import / Export messages |
|
642 | - // * @access public |
|
643 | - // * @return void |
|
644 | - // */ |
|
645 | - // public function csv_admin_notices() |
|
646 | - // { |
|
647 | - // |
|
648 | - // // We play both kinds of music here! Country AND Western! - err... I mean, cycle through both types of notices |
|
649 | - // foreach (array('updates', 'errors') as $type) { |
|
650 | - // |
|
651 | - // // if particular notice type is not empty, then "You've got Mail" |
|
652 | - // if (! empty($this->_notices[ $type ])) { |
|
653 | - // |
|
654 | - // // is it an update or an error ? |
|
655 | - // $msg_class = $type == 'updates' ? 'updated' : 'error'; |
|
656 | - // echo '<div id="message" class="' . $msg_class . '">'; |
|
657 | - // // display each notice, however many that may be |
|
658 | - // foreach ($this->_notices[ $type ] as $message) { |
|
659 | - // echo '<p>' . $message . '</p>'; |
|
660 | - // } |
|
661 | - // // wrap it up |
|
662 | - // echo '</div>'; |
|
663 | - // } |
|
664 | - // } |
|
665 | - // } |
|
666 | - |
|
667 | - /** |
|
668 | - * Gets the date format to use in teh csv. filterable |
|
669 | - * |
|
670 | - * @param string $current_format |
|
671 | - * @return string |
|
672 | - */ |
|
673 | - public function get_date_format_for_csv($current_format = null) |
|
674 | - { |
|
675 | - return apply_filters('FHEE__EE_CSV__get_date_format_for_csv__format', 'Y-m-d', $current_format); |
|
676 | - } |
|
677 | - |
|
678 | - /** |
|
679 | - * Gets the time format we want to use in CSV reports. Filterable |
|
680 | - * |
|
681 | - * @param string $current_format |
|
682 | - * @return string |
|
683 | - */ |
|
684 | - public function get_time_format_for_csv($current_format = null) |
|
685 | - { |
|
686 | - return apply_filters('FHEE__EE_CSV__get_time_format_for_csv__format', 'H:i:s', $current_format); |
|
687 | - } |
|
19 | + // instance of the EE_CSV object |
|
20 | + private static $_instance = null; |
|
21 | + |
|
22 | + |
|
23 | + // multidimensional array to store update & error messages |
|
24 | + // var $_notices = array( 'updates' => array(), 'errors' => array() ); |
|
25 | + |
|
26 | + |
|
27 | + private $_primary_keys; |
|
28 | + |
|
29 | + /** |
|
30 | + * |
|
31 | + * @var EE_Registry |
|
32 | + */ |
|
33 | + private $EE; |
|
34 | + /** |
|
35 | + * string used for 1st cell in exports, which indicates that the following 2 rows will be metadata keys and values |
|
36 | + */ |
|
37 | + const metadata_header = 'Event Espresso Export Meta Data'; |
|
38 | + |
|
39 | + /** |
|
40 | + * private constructor to prevent direct creation |
|
41 | + * |
|
42 | + * @Constructor |
|
43 | + * @access private |
|
44 | + * @return void |
|
45 | + */ |
|
46 | + private function __construct() |
|
47 | + { |
|
48 | + global $wpdb; |
|
49 | + |
|
50 | + $this->_primary_keys = array( |
|
51 | + $wpdb->prefix . 'esp_answer' => array('ANS_ID'), |
|
52 | + $wpdb->prefix . 'esp_attendee' => array('ATT_ID'), |
|
53 | + $wpdb->prefix . 'esp_datetime' => array('DTT_ID'), |
|
54 | + $wpdb->prefix . 'esp_event_question_group' => array('EQG_ID'), |
|
55 | + $wpdb->prefix . 'esp_message_template' => array('MTP_ID'), |
|
56 | + $wpdb->prefix . 'esp_payment' => array('PAY_ID'), |
|
57 | + $wpdb->prefix . 'esp_price' => array('PRC_ID'), |
|
58 | + $wpdb->prefix . 'esp_price_type' => array('PRT_ID'), |
|
59 | + $wpdb->prefix . 'esp_question' => array('QST_ID'), |
|
60 | + $wpdb->prefix . 'esp_question_group' => array('QSG_ID'), |
|
61 | + $wpdb->prefix . 'esp_question_group_question' => array('QGQ_ID'), |
|
62 | + $wpdb->prefix . 'esp_question_option' => array('QSO_ID'), |
|
63 | + $wpdb->prefix . 'esp_registration' => array('REG_ID'), |
|
64 | + $wpdb->prefix . 'esp_status' => array('STS_ID'), |
|
65 | + $wpdb->prefix . 'esp_transaction' => array('TXN_ID'), |
|
66 | + $wpdb->prefix . 'esp_transaction' => array('TXN_ID'), |
|
67 | + $wpdb->prefix . 'events_detail' => array('id'), |
|
68 | + $wpdb->prefix . 'events_category_detail' => array('id'), |
|
69 | + $wpdb->prefix . 'events_category_rel' => array('id'), |
|
70 | + $wpdb->prefix . 'events_venue' => array('id'), |
|
71 | + $wpdb->prefix . 'events_venue_rel' => array('emeta_id'), |
|
72 | + $wpdb->prefix . 'events_locale' => array('id'), |
|
73 | + $wpdb->prefix . 'events_locale_rel' => array('id'), |
|
74 | + $wpdb->prefix . 'events_personnel' => array('id'), |
|
75 | + $wpdb->prefix . 'events_personnel_rel' => array('id'), |
|
76 | + ); |
|
77 | + } |
|
78 | + |
|
79 | + |
|
80 | + /** |
|
81 | + * @ singleton method used to instantiate class object |
|
82 | + * @ access public |
|
83 | + * |
|
84 | + * @return EE_CSV |
|
85 | + */ |
|
86 | + public static function instance() |
|
87 | + { |
|
88 | + // check if class object is instantiated |
|
89 | + if (self::$_instance === null or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_CSV)) { |
|
90 | + self::$_instance = new self(); |
|
91 | + } |
|
92 | + return self::$_instance; |
|
93 | + } |
|
94 | + |
|
95 | + /** |
|
96 | + * Opens a unicode or utf file (normal file_get_contents has difficulty readin ga unicode file. @see |
|
97 | + * http://stackoverflow.com/questions/15092764/how-to-read-unicode-text-file-in-php |
|
98 | + * |
|
99 | + * @param string $file_path |
|
100 | + * @return string |
|
101 | + * @throws EE_Error |
|
102 | + */ |
|
103 | + private function read_unicode_file($file_path) |
|
104 | + { |
|
105 | + $fc = ""; |
|
106 | + $fh = fopen($file_path, "rb"); |
|
107 | + if (! $fh) { |
|
108 | + throw new EE_Error(sprintf(__("Cannot open file for read: %s<br>\n", 'event_espresso'), $file_path)); |
|
109 | + } |
|
110 | + $flen = filesize($file_path); |
|
111 | + $bc = fread($fh, $flen); |
|
112 | + for ($i = 0; $i < $flen; $i++) { |
|
113 | + $c = substr($bc, $i, 1); |
|
114 | + if ((ord($c) != 0) && (ord($c) != 13)) { |
|
115 | + $fc = $fc . $c; |
|
116 | + } |
|
117 | + } |
|
118 | + if ((ord(substr($fc, 0, 1)) == 255) && (ord(substr($fc, 1, 1)) == 254)) { |
|
119 | + $fc = substr($fc, 2); |
|
120 | + } |
|
121 | + return ($fc); |
|
122 | + } |
|
123 | + |
|
124 | + |
|
125 | + /** |
|
126 | + * Generic CSV-functionality to turn an entire CSV file into a single array that's |
|
127 | + * NOT in a specific format to EE. It's just a 2-level array, with top-level arrays |
|
128 | + * representing each row in the CSV file, and the second-level arrays being each column in that row |
|
129 | + * |
|
130 | + * @param string $path_to_file |
|
131 | + * @return array of arrays. Top-level array has rows, second-level array has each item |
|
132 | + */ |
|
133 | + public function import_csv_to_multi_dimensional_array($path_to_file) |
|
134 | + { |
|
135 | + // needed to deal with Mac line endings |
|
136 | + ini_set('auto_detect_line_endings', true); |
|
137 | + |
|
138 | + // because fgetcsv does not correctly deal with backslashed quotes such as \" |
|
139 | + // we'll read the file into a string |
|
140 | + $file_contents = $this->read_unicode_file($path_to_file); |
|
141 | + // replace backslashed quotes with CSV enclosures |
|
142 | + $file_contents = str_replace('\\"', '"""', $file_contents); |
|
143 | + // HEY YOU! PUT THAT FILE BACK!!! |
|
144 | + file_put_contents($path_to_file, $file_contents); |
|
145 | + |
|
146 | + if (($file_handle = fopen($path_to_file, "r")) !== false) { |
|
147 | + # Set the parent multidimensional array key to 0. |
|
148 | + $nn = 0; |
|
149 | + $csvarray = array(); |
|
150 | + |
|
151 | + // in PHP 5.3 fgetcsv accepts a 5th parameter, but the pre 5.3 versions of fgetcsv choke if passed more than 4 - is that crazy or what? |
|
152 | + if (version_compare(PHP_VERSION, '5.3.0') < 0) { |
|
153 | + // PHP 5.2- version |
|
154 | + // loop through each row of the file |
|
155 | + while (($data = fgetcsv($file_handle, 0, ',', '"')) !== false) { |
|
156 | + $csvarray[] = $data; |
|
157 | + } |
|
158 | + } else { |
|
159 | + // loop through each row of the file |
|
160 | + while (($data = fgetcsv($file_handle, 0, ',', '"', '\\')) !== false) { |
|
161 | + $csvarray[] = $data; |
|
162 | + } |
|
163 | + } |
|
164 | + # Close the File. |
|
165 | + fclose($file_handle); |
|
166 | + return $csvarray; |
|
167 | + } else { |
|
168 | + EE_Error::add_error( |
|
169 | + sprintf(__("An error occurred - the file: %s could not opened.", "event_espresso"), $path_to_file), |
|
170 | + __FILE__, |
|
171 | + __FUNCTION__, |
|
172 | + __LINE__ |
|
173 | + ); |
|
174 | + return false; |
|
175 | + } |
|
176 | + } |
|
177 | + |
|
178 | + |
|
179 | + /** |
|
180 | + * @Import contents of csv file and store values in an array to be manipulated by other functions |
|
181 | + * @access public |
|
182 | + * @param string $path_to_file - the csv file to be imported including the path to it's location. |
|
183 | + * If $model_name is provided, assumes that each row in the CSV represents a |
|
184 | + * model object for that model If $model_name ISN'T provided, assumes that |
|
185 | + * before model object data, there is a row where the first entry is simply |
|
186 | + * 'MODEL', and next entry is the model's name, (untranslated) like Event, and |
|
187 | + * then maybe a row of headers, and then the model data. Eg. |
|
188 | + * '<br>MODEL,Event,<br>EVT_ID,EVT_name,...<br>1,Monkey |
|
189 | + * Party,...<br>2,Llamarama,...<br>MODEL,Venue,<br>VNU_ID,VNU_name<br>1,The |
|
190 | + * Forest |
|
191 | + * @param string $model_name model name if we know what model we're importing |
|
192 | + * @param boolean $first_row_is_headers - whether the first row of data is headers or not - TRUE = headers, FALSE = |
|
193 | + * data |
|
194 | + * @return mixed - array on success - multi dimensional with headers as keys (if headers exist) OR string on fail - |
|
195 | + * error message like the following array('Event'=>array( array('EVT_ID'=>1,'EVT_name'=>'bob |
|
196 | + * party',...), array('EVT_ID'=>2,'EVT_name'=>'llamarama',...), |
|
197 | + * ... |
|
198 | + * ) |
|
199 | + * 'Venue'=>array( |
|
200 | + * array('VNU_ID'=>1,'VNU_name'=>'the shack',...), |
|
201 | + * array('VNU_ID'=>2,'VNU_name'=>'tree house',...), |
|
202 | + * ... |
|
203 | + * ) |
|
204 | + * ... |
|
205 | + * ) |
|
206 | + */ |
|
207 | + public function import_csv_to_model_data_array($path_to_file, $model_name = false, $first_row_is_headers = true) |
|
208 | + { |
|
209 | + $multi_dimensional_array = $this->import_csv_to_multi_dimensional_array($path_to_file); |
|
210 | + if (! $multi_dimensional_array) { |
|
211 | + return false; |
|
212 | + } |
|
213 | + // gotta start somewhere |
|
214 | + $row = 1; |
|
215 | + // array to store csv data in |
|
216 | + $ee_formatted_data = array(); |
|
217 | + // array to store headers (column names) |
|
218 | + $headers = array(); |
|
219 | + foreach ($multi_dimensional_array as $data) { |
|
220 | + // if first cell is MODEL, then second cell is the MODEL name |
|
221 | + if ($data[0] == 'MODEL') { |
|
222 | + $model_name = $data[1]; |
|
223 | + // don't bother looking for model data in this row. The rest of this |
|
224 | + // row should be blank |
|
225 | + // AND pretend this is the first row again |
|
226 | + $row = 1; |
|
227 | + // reset headers |
|
228 | + $headers = array(); |
|
229 | + continue; |
|
230 | + } |
|
231 | + if (strpos($data[0], EE_CSV::metadata_header) !== false) { |
|
232 | + $model_name = EE_CSV::metadata_header; |
|
233 | + // store like model data, we just won't try importing it etc. |
|
234 | + $row = 1; |
|
235 | + continue; |
|
236 | + } |
|
237 | + |
|
238 | + |
|
239 | + // how many columns are there? |
|
240 | + $columns = count($data); |
|
241 | + |
|
242 | + $model_entry = array(); |
|
243 | + // loop through each column |
|
244 | + for ($i = 0; $i < $columns; $i++) { |
|
245 | + // replace csv_enclosures with backslashed quotes |
|
246 | + $data[ $i ] = str_replace('"""', '\\"', $data[ $i ]); |
|
247 | + // do we need to grab the column names? |
|
248 | + if ($row === 1) { |
|
249 | + if ($first_row_is_headers) { |
|
250 | + // store the column names to use for keys |
|
251 | + $column_name = $data[ $i ]; |
|
252 | + // check it's not blank... sometimes CSV editign programs adda bunch of empty columns onto the end... |
|
253 | + if (! $column_name) { |
|
254 | + continue; |
|
255 | + } |
|
256 | + $matches = array(); |
|
257 | + if ($model_name == EE_CSV::metadata_header) { |
|
258 | + $headers[ $i ] = $column_name; |
|
259 | + } else { |
|
260 | + // now get the db table name from it (the part between square brackets) |
|
261 | + $success = preg_match('~(.*)\[(.*)\]~', $column_name, $matches); |
|
262 | + if (! $success) { |
|
263 | + EE_Error::add_error( |
|
264 | + sprintf( |
|
265 | + __( |
|
266 | + "The column titled %s is invalid for importing. It must be be in the format of 'Nice Name[model_field_name]' in row %s", |
|
267 | + "event_espresso" |
|
268 | + ), |
|
269 | + $column_name, |
|
270 | + implode(",", $data) |
|
271 | + ), |
|
272 | + __FILE__, |
|
273 | + __FUNCTION__, |
|
274 | + __LINE__ |
|
275 | + ); |
|
276 | + return false; |
|
277 | + } |
|
278 | + $headers[ $i ] = $matches[2]; |
|
279 | + } |
|
280 | + } else { |
|
281 | + // no column names means our final array will just use counters for keys |
|
282 | + $model_entry[ $headers[ $i ] ] = $data[ $i ]; |
|
283 | + $headers[ $i ] = $i; |
|
284 | + } |
|
285 | + // and we need to store csv data |
|
286 | + } else { |
|
287 | + // this column isn' ta header, store it if there is a header for it |
|
288 | + if (isset($headers[ $i ])) { |
|
289 | + $model_entry[ $headers[ $i ] ] = $data[ $i ]; |
|
290 | + } |
|
291 | + } |
|
292 | + } |
|
293 | + // save the row's data IF it's a non-header-row |
|
294 | + if (! $first_row_is_headers || ($first_row_is_headers && $row > 1)) { |
|
295 | + $ee_formatted_data[ $model_name ][] = $model_entry; |
|
296 | + } |
|
297 | + // advance to next row |
|
298 | + $row++; |
|
299 | + } |
|
300 | + |
|
301 | + // delete the uploaded file |
|
302 | + unlink($path_to_file); |
|
303 | + // echo '<pre style="height:auto;border:2px solid lightblue;">' . print_r( $ee_formatted_data, TRUE ) . '</pre><br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>'; |
|
304 | + // die(); |
|
305 | + |
|
306 | + // it's good to give back |
|
307 | + return $ee_formatted_data; |
|
308 | + } |
|
309 | + |
|
310 | + |
|
311 | + public function save_csv_to_db($csv_data_array, $model_name = false) |
|
312 | + { |
|
313 | + EE_Error::doing_it_wrong( |
|
314 | + 'save_csv_to_db', |
|
315 | + __( |
|
316 | + 'Function moved to EE_Import and renamed to save_csv_data_array_to_db', |
|
317 | + 'event_espresso' |
|
318 | + ), |
|
319 | + '4.6.7' |
|
320 | + ); |
|
321 | + return EE_Import::instance()->save_csv_data_array_to_db($csv_data_array, $model_name); |
|
322 | + } |
|
323 | + |
|
324 | + /** |
|
325 | + * Sends HTTP headers to indicate that the browser should download a file, |
|
326 | + * and starts writing the file to PHP's output. Returns the file handle so other functions can |
|
327 | + * also write to it |
|
328 | + * |
|
329 | + * @param string $new_filename the name of the file that the user will download |
|
330 | + * @return resource, like the results of fopen(), which can be used for fwrite, fputcsv2, etc. |
|
331 | + */ |
|
332 | + public function begin_sending_csv($filename) |
|
333 | + { |
|
334 | + // grab file extension |
|
335 | + $ext = substr(strrchr($filename, '.'), 1); |
|
336 | + if ($ext == '.csv' or $ext == '.xls') { |
|
337 | + str_replace($ext, '', $filename); |
|
338 | + } |
|
339 | + $filename .= '.csv'; |
|
340 | + |
|
341 | + // if somebody's been naughty and already started outputting stuff, trash it |
|
342 | + // and start writing our stuff. |
|
343 | + if (ob_get_length()) { |
|
344 | + @ob_flush(); |
|
345 | + @flush(); |
|
346 | + @ob_end_flush(); |
|
347 | + } |
|
348 | + @ob_start(); |
|
349 | + header("Pragma: public"); |
|
350 | + header("Expires: 0"); |
|
351 | + header("Pragma: no-cache"); |
|
352 | + header("Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0"); |
|
353 | + // header("Content-Type: application/force-download"); |
|
354 | + // header("Content-Type: application/octet-stream"); |
|
355 | + // header("Content-Type: application/download"); |
|
356 | + header('Content-disposition: attachment; filename=' . $filename); |
|
357 | + header("Content-Type: text/csv; charset=utf-8"); |
|
358 | + do_action('AHEE__EE_CSV__begin_sending_csv__headers'); |
|
359 | + echo apply_filters( |
|
360 | + 'FHEE__EE_CSV__begin_sending_csv__start_writing', |
|
361 | + "\xEF\xBB\xBF" |
|
362 | + ); // makes excel open it as UTF-8. UTF-8 BOM, see http://stackoverflow.com/a/4440143/2773835 |
|
363 | + $fh = fopen('php://output', 'w'); |
|
364 | + return $fh; |
|
365 | + } |
|
366 | + |
|
367 | + /** |
|
368 | + * Writes some meta data to the CSV as a bunch of columns. Initially we're only |
|
369 | + * mentioning the version and timezone |
|
370 | + * |
|
371 | + * @param resource $filehandle |
|
372 | + */ |
|
373 | + public function write_metadata_to_csv($filehandle) |
|
374 | + { |
|
375 | + $data_row = array(EE_CSV::metadata_header);// do NOT translate because this exact string is used when importing |
|
376 | + $this->fputcsv2($filehandle, $data_row); |
|
377 | + $meta_data = array( |
|
378 | + 0 => array( |
|
379 | + 'version' => espresso_version(), |
|
380 | + 'timezone' => EEH_DTT_Helper::get_timezone(), |
|
381 | + 'time_of_export' => current_time('mysql'), |
|
382 | + 'site_url' => site_url(), |
|
383 | + ), |
|
384 | + ); |
|
385 | + $this->write_data_array_to_csv($filehandle, $meta_data); |
|
386 | + } |
|
387 | + |
|
388 | + |
|
389 | + /** |
|
390 | + * Writes $data to the csv file open in $filehandle. uses the array indices of $data for column headers |
|
391 | + * |
|
392 | + * @param array $data 2D array, first numerically-indexed, and next-level-down preferably indexed |
|
393 | + * by string |
|
394 | + * @param boolean $add_csv_column_names whether or not we should add the keys in the bottom-most array as a row for |
|
395 | + * headers in the CSV. Eg, if $data looked like |
|
396 | + * array(0=>array('EVT_ID'=>1,'EVT_name'=>'monkey'...), 1=>array(...),...)) |
|
397 | + * then the first row we'd write to the CSV would be "EVT_ID,EVT_name,..." |
|
398 | + * @return boolean if we successfully wrote to the CSV or not. If there's no $data, we consider that a success |
|
399 | + * (because we wrote everything there was...nothing) |
|
400 | + */ |
|
401 | + public function write_data_array_to_csv($filehandle, $data) |
|
402 | + { |
|
403 | + |
|
404 | + |
|
405 | + // determine if $data is actually a 2d array |
|
406 | + if ($data && is_array($data) && is_array(EEH_Array::get_one_item_from_array($data))) { |
|
407 | + // make sure top level is numerically indexed, |
|
408 | + |
|
409 | + if (EEH_Array::is_associative_array($data)) { |
|
410 | + throw new EE_Error( |
|
411 | + sprintf( |
|
412 | + __( |
|
413 | + "top-level array must be numerically indexed. Does these look like numbers to you? %s", |
|
414 | + "event_espresso" |
|
415 | + ), |
|
416 | + implode(",", array_keys($data)) |
|
417 | + ) |
|
418 | + ); |
|
419 | + } |
|
420 | + $item_in_top_level_array = EEH_Array::get_one_item_from_array($data); |
|
421 | + // now, is the last item in the top-level array of $data an associative or numeric array? |
|
422 | + if (EEH_Array::is_associative_array($item_in_top_level_array)) { |
|
423 | + // its associative, so we want to output its keys as column headers |
|
424 | + $keys = array_keys($item_in_top_level_array); |
|
425 | + echo $this->fputcsv2($filehandle, $keys); |
|
426 | + } |
|
427 | + // start writing data |
|
428 | + foreach ($data as $data_row) { |
|
429 | + echo $this->fputcsv2($filehandle, $data_row); |
|
430 | + } |
|
431 | + return true; |
|
432 | + } else { |
|
433 | + // no data TO write... so we can assume that's a success |
|
434 | + return true; |
|
435 | + } |
|
436 | + // //if 2nd level is indexed by strings, use those as csv column headers (ie, the first row) |
|
437 | + // |
|
438 | + // |
|
439 | + // $no_table = TRUE; |
|
440 | + // |
|
441 | + // // loop through data and add each row to the file/stream as csv |
|
442 | + // foreach ( $data as $model_name => $model_data ) { |
|
443 | + // // test first row to see if it is data or a model name |
|
444 | + // $model = EE_Registry::instance();->load_model($model_name); |
|
445 | + // //if the model really exists, |
|
446 | + // if ( $model ) { |
|
447 | + // |
|
448 | + // // we have a table name |
|
449 | + // $no_table = FALSE; |
|
450 | + // |
|
451 | + // // put the tablename into an array cuz that's how fputcsv rolls |
|
452 | + // $model_name_row = array( 'MODEL', $model_name ); |
|
453 | + // |
|
454 | + // // add table name to csv output |
|
455 | + // echo self::fputcsv2($filehandle, $model_name_row); |
|
456 | + // |
|
457 | + // // now get the rest of the data |
|
458 | + // foreach ( $model_data as $row ) { |
|
459 | + // // output the row |
|
460 | + // echo self::fputcsv2($filehandle, $row); |
|
461 | + // } |
|
462 | + // |
|
463 | + // } |
|
464 | + // |
|
465 | + // if ( $no_table ) { |
|
466 | + // // no table so just put the data |
|
467 | + // echo self::fputcsv2($filehandle, $model_data); |
|
468 | + // } |
|
469 | + // |
|
470 | + // } // END OF foreach ( $data ) |
|
471 | + } |
|
472 | + |
|
473 | + /** |
|
474 | + * Should be called after begin_sending_csv(), and one or more write_data_array_to_csv()s. |
|
475 | + * Calls exit to prevent polluting the CSV file with other junk |
|
476 | + * |
|
477 | + * @param resource $fh filehandle where we're writing the CSV to |
|
478 | + */ |
|
479 | + public function end_sending_csv($fh) |
|
480 | + { |
|
481 | + fclose($fh); |
|
482 | + exit(0); |
|
483 | + } |
|
484 | + |
|
485 | + /** |
|
486 | + * Given an open file, writes all the model data to it in the format the importer expects. |
|
487 | + * Usually preceded by begin_sending_csv($filename), and followed by end_sending_csv($filehandle). |
|
488 | + * |
|
489 | + * @param resource $filehandle |
|
490 | + * @param array $model_data_array is assumed to be a 3d array: 1st layer has keys of model names (eg 'Event'), |
|
491 | + * next layer is numerically indexed to represent each model object (eg, each |
|
492 | + * individual event), and the last layer has all the attributes o fthat model |
|
493 | + * object (eg, the event's id, name, etc) |
|
494 | + * @return boolean success |
|
495 | + */ |
|
496 | + public function write_model_data_to_csv($filehandle, $model_data_array) |
|
497 | + { |
|
498 | + $this->write_metadata_to_csv($filehandle); |
|
499 | + foreach ($model_data_array as $model_name => $model_instance_arrays) { |
|
500 | + // first: output a special row stating the model |
|
501 | + echo $this->fputcsv2($filehandle, array('MODEL', $model_name)); |
|
502 | + // if we have items to put in the CSV, do it normally |
|
503 | + |
|
504 | + if (! empty($model_instance_arrays)) { |
|
505 | + $this->write_data_array_to_csv($filehandle, $model_instance_arrays); |
|
506 | + } else { |
|
507 | + // echo "no data to write... so just write the headers"; |
|
508 | + // so there's actually NO model objects for that model. |
|
509 | + // probably still want to show the columns |
|
510 | + $model = EE_Registry::instance()->load_model($model_name); |
|
511 | + $column_names = array(); |
|
512 | + foreach ($model->field_settings() as $field) { |
|
513 | + $column_names[ $field->get_nicename() . "[" . $field->get_name() . "]" ] = null; |
|
514 | + } |
|
515 | + $this->write_data_array_to_csv($filehandle, array($column_names)); |
|
516 | + } |
|
517 | + } |
|
518 | + } |
|
519 | + |
|
520 | + /** |
|
521 | + * Writes the CSV file to the output buffer, with rows corresponding to $model_data_array, |
|
522 | + * and dies (in order to avoid other plugins from messing up the csv output) |
|
523 | + * |
|
524 | + * @param string $filename the filename you want to give the file |
|
525 | + * @param array $model_data_array 3d array, as described in EE_CSV::write_model_data_to_csv() |
|
526 | + * @return bool | void writes CSV file to output and dies |
|
527 | + */ |
|
528 | + public function export_multiple_model_data_to_csv($filename, $model_data_array) |
|
529 | + { |
|
530 | + $filehandle = $this->begin_sending_csv($filename); |
|
531 | + $this->write_model_data_to_csv($filehandle, $model_data_array); |
|
532 | + $this->end_sending_csv($filehandle); |
|
533 | + } |
|
534 | + |
|
535 | + /** |
|
536 | + * @Export contents of an array to csv file |
|
537 | + * @access public |
|
538 | + * @param array $data - the array of data to be converted to csv and exported |
|
539 | + * @param string $filename - name for newly created csv file |
|
540 | + * @return TRUE on success, FALSE on fail |
|
541 | + */ |
|
542 | + public function export_array_to_csv($data = false, $filename = false) |
|
543 | + { |
|
544 | + |
|
545 | + // no data file?? get outta here |
|
546 | + if (! $data or ! is_array($data) or empty($data)) { |
|
547 | + return false; |
|
548 | + } |
|
549 | + |
|
550 | + // no filename?? get outta here |
|
551 | + if (! $filename) { |
|
552 | + return false; |
|
553 | + } |
|
554 | + |
|
555 | + |
|
556 | + // somebody told me i might need this ??? |
|
557 | + global $wpdb; |
|
558 | + $prefix = $wpdb->prefix; |
|
559 | + |
|
560 | + |
|
561 | + $fh = $this->begin_sending_csv($filename); |
|
562 | + |
|
563 | + |
|
564 | + $this->end_sending_csv($fh); |
|
565 | + } |
|
566 | + |
|
567 | + |
|
568 | + /** |
|
569 | + * @Determine the maximum upload file size based on php.ini settings |
|
570 | + * @access public |
|
571 | + * @param int $percent_of_max - desired percentage of the max upload_mb |
|
572 | + * @return int KB |
|
573 | + */ |
|
574 | + public function get_max_upload_size($percent_of_max = false) |
|
575 | + { |
|
576 | + |
|
577 | + $max_upload = (int) (ini_get('upload_max_filesize')); |
|
578 | + $max_post = (int) (ini_get('post_max_size')); |
|
579 | + $memory_limit = (int) (ini_get('memory_limit')); |
|
580 | + |
|
581 | + // determine the smallest of the three values from above |
|
582 | + $upload_mb = min($max_upload, $max_post, $memory_limit); |
|
583 | + |
|
584 | + // convert MB to KB |
|
585 | + $upload_mb = $upload_mb * 1024; |
|
586 | + |
|
587 | + // don't want the full monty? then reduce the max uplaod size |
|
588 | + if ($percent_of_max) { |
|
589 | + // is percent_of_max like this -> 50 or like this -> 0.50 ? |
|
590 | + if ($percent_of_max > 1) { |
|
591 | + // chnages 50 to 0.50 |
|
592 | + $percent_of_max = $percent_of_max / 100; |
|
593 | + } |
|
594 | + // make upload_mb a percentage of the max upload_mb |
|
595 | + $upload_mb = $upload_mb * $percent_of_max; |
|
596 | + } |
|
597 | + |
|
598 | + return $upload_mb; |
|
599 | + } |
|
600 | + |
|
601 | + |
|
602 | + /** |
|
603 | + * @Drop in replacement for PHP's fputcsv function - but this one works!!! |
|
604 | + * @access private |
|
605 | + * @param resource $fh - file handle - what we are writing to |
|
606 | + * @param array $row - individual row of csv data |
|
607 | + * @param string $delimiter - csv delimiter |
|
608 | + * @param string $enclosure - csv enclosure |
|
609 | + * @param string $mysql_null - allows php NULL to be overridden with MySQl's insertable NULL value |
|
610 | + * @return void |
|
611 | + */ |
|
612 | + private function fputcsv2($fh, array $row, $delimiter = ',', $enclosure = '"', $mysql_null = false) |
|
613 | + { |
|
614 | + // Allow user to filter the csv delimiter and enclosure for other countries csv standards |
|
615 | + $delimiter = apply_filters('FHEE__EE_CSV__fputcsv2__delimiter', $delimiter); |
|
616 | + $enclosure = apply_filters('FHEE__EE_CSV__fputcsv2__enclosure', $enclosure); |
|
617 | + |
|
618 | + $delimiter_esc = preg_quote($delimiter, '/'); |
|
619 | + $enclosure_esc = preg_quote($enclosure, '/'); |
|
620 | + |
|
621 | + $output = array(); |
|
622 | + foreach ($row as $field_value) { |
|
623 | + if (is_object($field_value) || is_array($field_value)) { |
|
624 | + $field_value = serialize($field_value); |
|
625 | + } |
|
626 | + if ($field_value === null && $mysql_null) { |
|
627 | + $output[] = 'NULL'; |
|
628 | + continue; |
|
629 | + } |
|
630 | + |
|
631 | + $output[] = preg_match("/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field_value) ? |
|
632 | + ($enclosure . str_replace($enclosure, $enclosure . $enclosure, $field_value) . $enclosure) |
|
633 | + : $field_value; |
|
634 | + } |
|
635 | + |
|
636 | + fwrite($fh, join($delimiter, $output) . PHP_EOL); |
|
637 | + } |
|
638 | + |
|
639 | + |
|
640 | + // /** |
|
641 | + // * @CSV Import / Export messages |
|
642 | + // * @access public |
|
643 | + // * @return void |
|
644 | + // */ |
|
645 | + // public function csv_admin_notices() |
|
646 | + // { |
|
647 | + // |
|
648 | + // // We play both kinds of music here! Country AND Western! - err... I mean, cycle through both types of notices |
|
649 | + // foreach (array('updates', 'errors') as $type) { |
|
650 | + // |
|
651 | + // // if particular notice type is not empty, then "You've got Mail" |
|
652 | + // if (! empty($this->_notices[ $type ])) { |
|
653 | + // |
|
654 | + // // is it an update or an error ? |
|
655 | + // $msg_class = $type == 'updates' ? 'updated' : 'error'; |
|
656 | + // echo '<div id="message" class="' . $msg_class . '">'; |
|
657 | + // // display each notice, however many that may be |
|
658 | + // foreach ($this->_notices[ $type ] as $message) { |
|
659 | + // echo '<p>' . $message . '</p>'; |
|
660 | + // } |
|
661 | + // // wrap it up |
|
662 | + // echo '</div>'; |
|
663 | + // } |
|
664 | + // } |
|
665 | + // } |
|
666 | + |
|
667 | + /** |
|
668 | + * Gets the date format to use in teh csv. filterable |
|
669 | + * |
|
670 | + * @param string $current_format |
|
671 | + * @return string |
|
672 | + */ |
|
673 | + public function get_date_format_for_csv($current_format = null) |
|
674 | + { |
|
675 | + return apply_filters('FHEE__EE_CSV__get_date_format_for_csv__format', 'Y-m-d', $current_format); |
|
676 | + } |
|
677 | + |
|
678 | + /** |
|
679 | + * Gets the time format we want to use in CSV reports. Filterable |
|
680 | + * |
|
681 | + * @param string $current_format |
|
682 | + * @return string |
|
683 | + */ |
|
684 | + public function get_time_format_for_csv($current_format = null) |
|
685 | + { |
|
686 | + return apply_filters('FHEE__EE_CSV__get_time_format_for_csv__format', 'H:i:s', $current_format); |
|
687 | + } |
|
688 | 688 | } |
@@ -48,31 +48,31 @@ discard block |
||
48 | 48 | global $wpdb; |
49 | 49 | |
50 | 50 | $this->_primary_keys = array( |
51 | - $wpdb->prefix . 'esp_answer' => array('ANS_ID'), |
|
52 | - $wpdb->prefix . 'esp_attendee' => array('ATT_ID'), |
|
53 | - $wpdb->prefix . 'esp_datetime' => array('DTT_ID'), |
|
54 | - $wpdb->prefix . 'esp_event_question_group' => array('EQG_ID'), |
|
55 | - $wpdb->prefix . 'esp_message_template' => array('MTP_ID'), |
|
56 | - $wpdb->prefix . 'esp_payment' => array('PAY_ID'), |
|
57 | - $wpdb->prefix . 'esp_price' => array('PRC_ID'), |
|
58 | - $wpdb->prefix . 'esp_price_type' => array('PRT_ID'), |
|
59 | - $wpdb->prefix . 'esp_question' => array('QST_ID'), |
|
60 | - $wpdb->prefix . 'esp_question_group' => array('QSG_ID'), |
|
61 | - $wpdb->prefix . 'esp_question_group_question' => array('QGQ_ID'), |
|
62 | - $wpdb->prefix . 'esp_question_option' => array('QSO_ID'), |
|
63 | - $wpdb->prefix . 'esp_registration' => array('REG_ID'), |
|
64 | - $wpdb->prefix . 'esp_status' => array('STS_ID'), |
|
65 | - $wpdb->prefix . 'esp_transaction' => array('TXN_ID'), |
|
66 | - $wpdb->prefix . 'esp_transaction' => array('TXN_ID'), |
|
67 | - $wpdb->prefix . 'events_detail' => array('id'), |
|
68 | - $wpdb->prefix . 'events_category_detail' => array('id'), |
|
69 | - $wpdb->prefix . 'events_category_rel' => array('id'), |
|
70 | - $wpdb->prefix . 'events_venue' => array('id'), |
|
71 | - $wpdb->prefix . 'events_venue_rel' => array('emeta_id'), |
|
72 | - $wpdb->prefix . 'events_locale' => array('id'), |
|
73 | - $wpdb->prefix . 'events_locale_rel' => array('id'), |
|
74 | - $wpdb->prefix . 'events_personnel' => array('id'), |
|
75 | - $wpdb->prefix . 'events_personnel_rel' => array('id'), |
|
51 | + $wpdb->prefix.'esp_answer' => array('ANS_ID'), |
|
52 | + $wpdb->prefix.'esp_attendee' => array('ATT_ID'), |
|
53 | + $wpdb->prefix.'esp_datetime' => array('DTT_ID'), |
|
54 | + $wpdb->prefix.'esp_event_question_group' => array('EQG_ID'), |
|
55 | + $wpdb->prefix.'esp_message_template' => array('MTP_ID'), |
|
56 | + $wpdb->prefix.'esp_payment' => array('PAY_ID'), |
|
57 | + $wpdb->prefix.'esp_price' => array('PRC_ID'), |
|
58 | + $wpdb->prefix.'esp_price_type' => array('PRT_ID'), |
|
59 | + $wpdb->prefix.'esp_question' => array('QST_ID'), |
|
60 | + $wpdb->prefix.'esp_question_group' => array('QSG_ID'), |
|
61 | + $wpdb->prefix.'esp_question_group_question' => array('QGQ_ID'), |
|
62 | + $wpdb->prefix.'esp_question_option' => array('QSO_ID'), |
|
63 | + $wpdb->prefix.'esp_registration' => array('REG_ID'), |
|
64 | + $wpdb->prefix.'esp_status' => array('STS_ID'), |
|
65 | + $wpdb->prefix.'esp_transaction' => array('TXN_ID'), |
|
66 | + $wpdb->prefix.'esp_transaction' => array('TXN_ID'), |
|
67 | + $wpdb->prefix.'events_detail' => array('id'), |
|
68 | + $wpdb->prefix.'events_category_detail' => array('id'), |
|
69 | + $wpdb->prefix.'events_category_rel' => array('id'), |
|
70 | + $wpdb->prefix.'events_venue' => array('id'), |
|
71 | + $wpdb->prefix.'events_venue_rel' => array('emeta_id'), |
|
72 | + $wpdb->prefix.'events_locale' => array('id'), |
|
73 | + $wpdb->prefix.'events_locale_rel' => array('id'), |
|
74 | + $wpdb->prefix.'events_personnel' => array('id'), |
|
75 | + $wpdb->prefix.'events_personnel_rel' => array('id'), |
|
76 | 76 | ); |
77 | 77 | } |
78 | 78 | |
@@ -104,7 +104,7 @@ discard block |
||
104 | 104 | { |
105 | 105 | $fc = ""; |
106 | 106 | $fh = fopen($file_path, "rb"); |
107 | - if (! $fh) { |
|
107 | + if ( ! $fh) { |
|
108 | 108 | throw new EE_Error(sprintf(__("Cannot open file for read: %s<br>\n", 'event_espresso'), $file_path)); |
109 | 109 | } |
110 | 110 | $flen = filesize($file_path); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | for ($i = 0; $i < $flen; $i++) { |
113 | 113 | $c = substr($bc, $i, 1); |
114 | 114 | if ((ord($c) != 0) && (ord($c) != 13)) { |
115 | - $fc = $fc . $c; |
|
115 | + $fc = $fc.$c; |
|
116 | 116 | } |
117 | 117 | } |
118 | 118 | if ((ord(substr($fc, 0, 1)) == 255) && (ord(substr($fc, 1, 1)) == 254)) { |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | public function import_csv_to_model_data_array($path_to_file, $model_name = false, $first_row_is_headers = true) |
208 | 208 | { |
209 | 209 | $multi_dimensional_array = $this->import_csv_to_multi_dimensional_array($path_to_file); |
210 | - if (! $multi_dimensional_array) { |
|
210 | + if ( ! $multi_dimensional_array) { |
|
211 | 211 | return false; |
212 | 212 | } |
213 | 213 | // gotta start somewhere |
@@ -243,23 +243,23 @@ discard block |
||
243 | 243 | // loop through each column |
244 | 244 | for ($i = 0; $i < $columns; $i++) { |
245 | 245 | // replace csv_enclosures with backslashed quotes |
246 | - $data[ $i ] = str_replace('"""', '\\"', $data[ $i ]); |
|
246 | + $data[$i] = str_replace('"""', '\\"', $data[$i]); |
|
247 | 247 | // do we need to grab the column names? |
248 | 248 | if ($row === 1) { |
249 | 249 | if ($first_row_is_headers) { |
250 | 250 | // store the column names to use for keys |
251 | - $column_name = $data[ $i ]; |
|
251 | + $column_name = $data[$i]; |
|
252 | 252 | // check it's not blank... sometimes CSV editign programs adda bunch of empty columns onto the end... |
253 | - if (! $column_name) { |
|
253 | + if ( ! $column_name) { |
|
254 | 254 | continue; |
255 | 255 | } |
256 | 256 | $matches = array(); |
257 | 257 | if ($model_name == EE_CSV::metadata_header) { |
258 | - $headers[ $i ] = $column_name; |
|
258 | + $headers[$i] = $column_name; |
|
259 | 259 | } else { |
260 | 260 | // now get the db table name from it (the part between square brackets) |
261 | 261 | $success = preg_match('~(.*)\[(.*)\]~', $column_name, $matches); |
262 | - if (! $success) { |
|
262 | + if ( ! $success) { |
|
263 | 263 | EE_Error::add_error( |
264 | 264 | sprintf( |
265 | 265 | __( |
@@ -275,24 +275,24 @@ discard block |
||
275 | 275 | ); |
276 | 276 | return false; |
277 | 277 | } |
278 | - $headers[ $i ] = $matches[2]; |
|
278 | + $headers[$i] = $matches[2]; |
|
279 | 279 | } |
280 | 280 | } else { |
281 | 281 | // no column names means our final array will just use counters for keys |
282 | - $model_entry[ $headers[ $i ] ] = $data[ $i ]; |
|
283 | - $headers[ $i ] = $i; |
|
282 | + $model_entry[$headers[$i]] = $data[$i]; |
|
283 | + $headers[$i] = $i; |
|
284 | 284 | } |
285 | 285 | // and we need to store csv data |
286 | 286 | } else { |
287 | 287 | // this column isn' ta header, store it if there is a header for it |
288 | - if (isset($headers[ $i ])) { |
|
289 | - $model_entry[ $headers[ $i ] ] = $data[ $i ]; |
|
288 | + if (isset($headers[$i])) { |
|
289 | + $model_entry[$headers[$i]] = $data[$i]; |
|
290 | 290 | } |
291 | 291 | } |
292 | 292 | } |
293 | 293 | // save the row's data IF it's a non-header-row |
294 | - if (! $first_row_is_headers || ($first_row_is_headers && $row > 1)) { |
|
295 | - $ee_formatted_data[ $model_name ][] = $model_entry; |
|
294 | + if ( ! $first_row_is_headers || ($first_row_is_headers && $row > 1)) { |
|
295 | + $ee_formatted_data[$model_name][] = $model_entry; |
|
296 | 296 | } |
297 | 297 | // advance to next row |
298 | 298 | $row++; |
@@ -353,7 +353,7 @@ discard block |
||
353 | 353 | // header("Content-Type: application/force-download"); |
354 | 354 | // header("Content-Type: application/octet-stream"); |
355 | 355 | // header("Content-Type: application/download"); |
356 | - header('Content-disposition: attachment; filename=' . $filename); |
|
356 | + header('Content-disposition: attachment; filename='.$filename); |
|
357 | 357 | header("Content-Type: text/csv; charset=utf-8"); |
358 | 358 | do_action('AHEE__EE_CSV__begin_sending_csv__headers'); |
359 | 359 | echo apply_filters( |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | */ |
373 | 373 | public function write_metadata_to_csv($filehandle) |
374 | 374 | { |
375 | - $data_row = array(EE_CSV::metadata_header);// do NOT translate because this exact string is used when importing |
|
375 | + $data_row = array(EE_CSV::metadata_header); // do NOT translate because this exact string is used when importing |
|
376 | 376 | $this->fputcsv2($filehandle, $data_row); |
377 | 377 | $meta_data = array( |
378 | 378 | 0 => array( |
@@ -501,7 +501,7 @@ discard block |
||
501 | 501 | echo $this->fputcsv2($filehandle, array('MODEL', $model_name)); |
502 | 502 | // if we have items to put in the CSV, do it normally |
503 | 503 | |
504 | - if (! empty($model_instance_arrays)) { |
|
504 | + if ( ! empty($model_instance_arrays)) { |
|
505 | 505 | $this->write_data_array_to_csv($filehandle, $model_instance_arrays); |
506 | 506 | } else { |
507 | 507 | // echo "no data to write... so just write the headers"; |
@@ -510,7 +510,7 @@ discard block |
||
510 | 510 | $model = EE_Registry::instance()->load_model($model_name); |
511 | 511 | $column_names = array(); |
512 | 512 | foreach ($model->field_settings() as $field) { |
513 | - $column_names[ $field->get_nicename() . "[" . $field->get_name() . "]" ] = null; |
|
513 | + $column_names[$field->get_nicename()."[".$field->get_name()."]"] = null; |
|
514 | 514 | } |
515 | 515 | $this->write_data_array_to_csv($filehandle, array($column_names)); |
516 | 516 | } |
@@ -543,12 +543,12 @@ discard block |
||
543 | 543 | { |
544 | 544 | |
545 | 545 | // no data file?? get outta here |
546 | - if (! $data or ! is_array($data) or empty($data)) { |
|
546 | + if ( ! $data or ! is_array($data) or empty($data)) { |
|
547 | 547 | return false; |
548 | 548 | } |
549 | 549 | |
550 | 550 | // no filename?? get outta here |
551 | - if (! $filename) { |
|
551 | + if ( ! $filename) { |
|
552 | 552 | return false; |
553 | 553 | } |
554 | 554 | |
@@ -629,11 +629,11 @@ discard block |
||
629 | 629 | } |
630 | 630 | |
631 | 631 | $output[] = preg_match("/(?:${delimiter_esc}|${enclosure_esc}|\s)/", $field_value) ? |
632 | - ($enclosure . str_replace($enclosure, $enclosure . $enclosure, $field_value) . $enclosure) |
|
632 | + ($enclosure.str_replace($enclosure, $enclosure.$enclosure, $field_value).$enclosure) |
|
633 | 633 | : $field_value; |
634 | 634 | } |
635 | 635 | |
636 | - fwrite($fh, join($delimiter, $output) . PHP_EOL); |
|
636 | + fwrite($fh, join($delimiter, $output).PHP_EOL); |
|
637 | 637 | } |
638 | 638 | |
639 | 639 |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * @param array $props_n_values incoming values from the database |
47 | 47 | * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
48 | 48 | * the website will be used. |
49 | - * @return EE_Attendee |
|
49 | + * @return EE_Currency |
|
50 | 50 | */ |
51 | 51 | public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
52 | 52 | { |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | * Sets code |
68 | 68 | * |
69 | 69 | * @param string $code |
70 | - * @return boolean |
|
70 | + * @return boolean|null |
|
71 | 71 | */ |
72 | 72 | public function set_code($code) |
73 | 73 | { |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | * Sets active |
89 | 89 | * |
90 | 90 | * @param boolean $active |
91 | - * @return boolean |
|
91 | + * @return boolean|null |
|
92 | 92 | */ |
93 | 93 | public function set_active($active) |
94 | 94 | { |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | * Sets dec_plc |
110 | 110 | * |
111 | 111 | * @param int $dec_plc |
112 | - * @return boolean |
|
112 | + * @return boolean|null |
|
113 | 113 | */ |
114 | 114 | public function set_dec_plc($dec_plc) |
115 | 115 | { |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | * Sets plural |
131 | 131 | * |
132 | 132 | * @param string $plural |
133 | - * @return boolean |
|
133 | + * @return boolean|null |
|
134 | 134 | */ |
135 | 135 | public function set_plural_name($plural) |
136 | 136 | { |
@@ -151,7 +151,7 @@ discard block |
||
151 | 151 | * Sets sign |
152 | 152 | * |
153 | 153 | * @param string $sign |
154 | - * @return boolean |
|
154 | + * @return boolean|null |
|
155 | 155 | */ |
156 | 156 | public function set_sign($sign) |
157 | 157 | { |
@@ -172,7 +172,7 @@ discard block |
||
172 | 172 | * Sets single |
173 | 173 | * |
174 | 174 | * @param string $single |
175 | - * @return boolean |
|
175 | + * @return boolean|null |
|
176 | 176 | */ |
177 | 177 | public function set_singular_name($single) |
178 | 178 | { |
@@ -12,180 +12,180 @@ |
||
12 | 12 | class EE_Currency extends EE_Base_Class |
13 | 13 | { |
14 | 14 | |
15 | - /** Currency COde @var CUR_code */ |
|
16 | - protected $_CUR_code = null; |
|
17 | - /** Currency Name Singular @var CUR_single */ |
|
18 | - protected $_CUR_single = null; |
|
19 | - /** Currency Name Plural @var CUR_plural */ |
|
20 | - protected $_CUR_plural = null; |
|
21 | - /** Currency Sign @var CUR_sign */ |
|
22 | - protected $_CUR_sign = null; |
|
23 | - /** Currency Decimal Places @var CUR_dec_plc */ |
|
24 | - protected $_CUR_dec_plc = null; |
|
25 | - /** Active? @var CUR_active */ |
|
26 | - protected $_CUR_active = null; |
|
27 | - protected $_Payment_Method; |
|
28 | - |
|
29 | - /** |
|
30 | - * |
|
31 | - * @param array $props_n_values incoming values |
|
32 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
33 | - * used.) |
|
34 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
35 | - * date_format and the second value is the time format |
|
36 | - * @return EE_Attendee |
|
37 | - */ |
|
38 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
39 | - { |
|
40 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
41 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
42 | - } |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * @param array $props_n_values incoming values from the database |
|
47 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
48 | - * the website will be used. |
|
49 | - * @return EE_Attendee |
|
50 | - */ |
|
51 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
52 | - { |
|
53 | - return new self($props_n_values, true, $timezone); |
|
54 | - } |
|
55 | - |
|
56 | - /** |
|
57 | - * Gets code |
|
58 | - * |
|
59 | - * @return string |
|
60 | - */ |
|
61 | - public function code() |
|
62 | - { |
|
63 | - return $this->get('CUR_code'); |
|
64 | - } |
|
65 | - |
|
66 | - /** |
|
67 | - * Sets code |
|
68 | - * |
|
69 | - * @param string $code |
|
70 | - * @return boolean |
|
71 | - */ |
|
72 | - public function set_code($code) |
|
73 | - { |
|
74 | - return $this->set('CUR_code', $code); |
|
75 | - } |
|
76 | - |
|
77 | - /** |
|
78 | - * Gets active |
|
79 | - * |
|
80 | - * @return boolean |
|
81 | - */ |
|
82 | - public function active() |
|
83 | - { |
|
84 | - return $this->get('CUR_active'); |
|
85 | - } |
|
86 | - |
|
87 | - /** |
|
88 | - * Sets active |
|
89 | - * |
|
90 | - * @param boolean $active |
|
91 | - * @return boolean |
|
92 | - */ |
|
93 | - public function set_active($active) |
|
94 | - { |
|
95 | - return $this->set('CUR_active', $active); |
|
96 | - } |
|
97 | - |
|
98 | - /** |
|
99 | - * Gets dec_plc |
|
100 | - * |
|
101 | - * @return int |
|
102 | - */ |
|
103 | - public function dec_plc() |
|
104 | - { |
|
105 | - return $this->get('CUR_dec_plc'); |
|
106 | - } |
|
107 | - |
|
108 | - /** |
|
109 | - * Sets dec_plc |
|
110 | - * |
|
111 | - * @param int $dec_plc |
|
112 | - * @return boolean |
|
113 | - */ |
|
114 | - public function set_dec_plc($dec_plc) |
|
115 | - { |
|
116 | - return $this->set('CUR_dec_plc', $dec_plc); |
|
117 | - } |
|
118 | - |
|
119 | - /** |
|
120 | - * Gets plural |
|
121 | - * |
|
122 | - * @return string |
|
123 | - */ |
|
124 | - public function plural_name() |
|
125 | - { |
|
126 | - return $this->get('CUR_plural'); |
|
127 | - } |
|
128 | - |
|
129 | - /** |
|
130 | - * Sets plural |
|
131 | - * |
|
132 | - * @param string $plural |
|
133 | - * @return boolean |
|
134 | - */ |
|
135 | - public function set_plural_name($plural) |
|
136 | - { |
|
137 | - return $this->set('CUR_plural', $plural); |
|
138 | - } |
|
139 | - |
|
140 | - /** |
|
141 | - * Gets sign |
|
142 | - * |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function sign() |
|
146 | - { |
|
147 | - return $this->get('CUR_sign'); |
|
148 | - } |
|
149 | - |
|
150 | - /** |
|
151 | - * Sets sign |
|
152 | - * |
|
153 | - * @param string $sign |
|
154 | - * @return boolean |
|
155 | - */ |
|
156 | - public function set_sign($sign) |
|
157 | - { |
|
158 | - return $this->set('CUR_sign', $sign); |
|
159 | - } |
|
160 | - |
|
161 | - /** |
|
162 | - * Gets single |
|
163 | - * |
|
164 | - * @return string |
|
165 | - */ |
|
166 | - public function singular_name() |
|
167 | - { |
|
168 | - return $this->get('CUR_single'); |
|
169 | - } |
|
170 | - |
|
171 | - /** |
|
172 | - * Sets single |
|
173 | - * |
|
174 | - * @param string $single |
|
175 | - * @return boolean |
|
176 | - */ |
|
177 | - public function set_singular_name($single) |
|
178 | - { |
|
179 | - return $this->set('CUR_single', $single); |
|
180 | - } |
|
181 | - |
|
182 | - /** |
|
183 | - * Gets a prettier name |
|
184 | - * |
|
185 | - * @return string |
|
186 | - */ |
|
187 | - public function name() |
|
188 | - { |
|
189 | - return sprintf(__("%s (%s)", "event_espresso"), $this->code(), $this->plural_name()); |
|
190 | - } |
|
15 | + /** Currency COde @var CUR_code */ |
|
16 | + protected $_CUR_code = null; |
|
17 | + /** Currency Name Singular @var CUR_single */ |
|
18 | + protected $_CUR_single = null; |
|
19 | + /** Currency Name Plural @var CUR_plural */ |
|
20 | + protected $_CUR_plural = null; |
|
21 | + /** Currency Sign @var CUR_sign */ |
|
22 | + protected $_CUR_sign = null; |
|
23 | + /** Currency Decimal Places @var CUR_dec_plc */ |
|
24 | + protected $_CUR_dec_plc = null; |
|
25 | + /** Active? @var CUR_active */ |
|
26 | + protected $_CUR_active = null; |
|
27 | + protected $_Payment_Method; |
|
28 | + |
|
29 | + /** |
|
30 | + * |
|
31 | + * @param array $props_n_values incoming values |
|
32 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
33 | + * used.) |
|
34 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
35 | + * date_format and the second value is the time format |
|
36 | + * @return EE_Attendee |
|
37 | + */ |
|
38 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
39 | + { |
|
40 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
41 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
42 | + } |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * @param array $props_n_values incoming values from the database |
|
47 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
48 | + * the website will be used. |
|
49 | + * @return EE_Attendee |
|
50 | + */ |
|
51 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
52 | + { |
|
53 | + return new self($props_n_values, true, $timezone); |
|
54 | + } |
|
55 | + |
|
56 | + /** |
|
57 | + * Gets code |
|
58 | + * |
|
59 | + * @return string |
|
60 | + */ |
|
61 | + public function code() |
|
62 | + { |
|
63 | + return $this->get('CUR_code'); |
|
64 | + } |
|
65 | + |
|
66 | + /** |
|
67 | + * Sets code |
|
68 | + * |
|
69 | + * @param string $code |
|
70 | + * @return boolean |
|
71 | + */ |
|
72 | + public function set_code($code) |
|
73 | + { |
|
74 | + return $this->set('CUR_code', $code); |
|
75 | + } |
|
76 | + |
|
77 | + /** |
|
78 | + * Gets active |
|
79 | + * |
|
80 | + * @return boolean |
|
81 | + */ |
|
82 | + public function active() |
|
83 | + { |
|
84 | + return $this->get('CUR_active'); |
|
85 | + } |
|
86 | + |
|
87 | + /** |
|
88 | + * Sets active |
|
89 | + * |
|
90 | + * @param boolean $active |
|
91 | + * @return boolean |
|
92 | + */ |
|
93 | + public function set_active($active) |
|
94 | + { |
|
95 | + return $this->set('CUR_active', $active); |
|
96 | + } |
|
97 | + |
|
98 | + /** |
|
99 | + * Gets dec_plc |
|
100 | + * |
|
101 | + * @return int |
|
102 | + */ |
|
103 | + public function dec_plc() |
|
104 | + { |
|
105 | + return $this->get('CUR_dec_plc'); |
|
106 | + } |
|
107 | + |
|
108 | + /** |
|
109 | + * Sets dec_plc |
|
110 | + * |
|
111 | + * @param int $dec_plc |
|
112 | + * @return boolean |
|
113 | + */ |
|
114 | + public function set_dec_plc($dec_plc) |
|
115 | + { |
|
116 | + return $this->set('CUR_dec_plc', $dec_plc); |
|
117 | + } |
|
118 | + |
|
119 | + /** |
|
120 | + * Gets plural |
|
121 | + * |
|
122 | + * @return string |
|
123 | + */ |
|
124 | + public function plural_name() |
|
125 | + { |
|
126 | + return $this->get('CUR_plural'); |
|
127 | + } |
|
128 | + |
|
129 | + /** |
|
130 | + * Sets plural |
|
131 | + * |
|
132 | + * @param string $plural |
|
133 | + * @return boolean |
|
134 | + */ |
|
135 | + public function set_plural_name($plural) |
|
136 | + { |
|
137 | + return $this->set('CUR_plural', $plural); |
|
138 | + } |
|
139 | + |
|
140 | + /** |
|
141 | + * Gets sign |
|
142 | + * |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function sign() |
|
146 | + { |
|
147 | + return $this->get('CUR_sign'); |
|
148 | + } |
|
149 | + |
|
150 | + /** |
|
151 | + * Sets sign |
|
152 | + * |
|
153 | + * @param string $sign |
|
154 | + * @return boolean |
|
155 | + */ |
|
156 | + public function set_sign($sign) |
|
157 | + { |
|
158 | + return $this->set('CUR_sign', $sign); |
|
159 | + } |
|
160 | + |
|
161 | + /** |
|
162 | + * Gets single |
|
163 | + * |
|
164 | + * @return string |
|
165 | + */ |
|
166 | + public function singular_name() |
|
167 | + { |
|
168 | + return $this->get('CUR_single'); |
|
169 | + } |
|
170 | + |
|
171 | + /** |
|
172 | + * Sets single |
|
173 | + * |
|
174 | + * @param string $single |
|
175 | + * @return boolean |
|
176 | + */ |
|
177 | + public function set_singular_name($single) |
|
178 | + { |
|
179 | + return $this->set('CUR_single', $single); |
|
180 | + } |
|
181 | + |
|
182 | + /** |
|
183 | + * Gets a prettier name |
|
184 | + * |
|
185 | + * @return string |
|
186 | + */ |
|
187 | + public function name() |
|
188 | + { |
|
189 | + return sprintf(__("%s (%s)", "event_espresso"), $this->code(), $this->plural_name()); |
|
190 | + } |
|
191 | 191 | } |
@@ -44,7 +44,7 @@ |
||
44 | 44 | * @param array $props_n_values incoming values from the database |
45 | 45 | * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
46 | 46 | * the website will be used. |
47 | - * @return EE_Attendee |
|
47 | + * @return EE_Currency_Payment_Method |
|
48 | 48 | */ |
49 | 49 | public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
50 | 50 | { |
@@ -14,40 +14,40 @@ |
||
14 | 14 | class EE_Currency_Payment_Method extends EE_Base_Class |
15 | 15 | { |
16 | 16 | |
17 | - /** Currency to Payment Method Link ID @var CPM_ID */ |
|
18 | - protected $_CPM_ID = null; |
|
19 | - /** Currency Code @var CUR_code */ |
|
20 | - protected $_CUR_code = null; |
|
21 | - /** Payment Method ID @var PMD_ID */ |
|
22 | - protected $_PMD_ID = null; |
|
23 | - protected $_Payment_Method; |
|
24 | - protected $_Currency; |
|
17 | + /** Currency to Payment Method Link ID @var CPM_ID */ |
|
18 | + protected $_CPM_ID = null; |
|
19 | + /** Currency Code @var CUR_code */ |
|
20 | + protected $_CUR_code = null; |
|
21 | + /** Payment Method ID @var PMD_ID */ |
|
22 | + protected $_PMD_ID = null; |
|
23 | + protected $_Payment_Method; |
|
24 | + protected $_Currency; |
|
25 | 25 | |
26 | 26 | |
27 | - /** |
|
28 | - * |
|
29 | - * @param array $props_n_values incoming values |
|
30 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
31 | - * used.) |
|
32 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
33 | - * date_format and the second value is the time format |
|
34 | - * @return EE_Attendee |
|
35 | - */ |
|
36 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
37 | - { |
|
38 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
39 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
40 | - } |
|
27 | + /** |
|
28 | + * |
|
29 | + * @param array $props_n_values incoming values |
|
30 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
31 | + * used.) |
|
32 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
33 | + * date_format and the second value is the time format |
|
34 | + * @return EE_Attendee |
|
35 | + */ |
|
36 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
37 | + { |
|
38 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
39 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
40 | + } |
|
41 | 41 | |
42 | 42 | |
43 | - /** |
|
44 | - * @param array $props_n_values incoming values from the database |
|
45 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
46 | - * the website will be used. |
|
47 | - * @return EE_Attendee |
|
48 | - */ |
|
49 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
50 | - { |
|
51 | - return new self($props_n_values, true, $timezone); |
|
52 | - } |
|
43 | + /** |
|
44 | + * @param array $props_n_values incoming values from the database |
|
45 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
46 | + * the website will be used. |
|
47 | + * @return EE_Attendee |
|
48 | + */ |
|
49 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
50 | + { |
|
51 | + return new self($props_n_values, true, $timezone); |
|
52 | + } |
|
53 | 53 | } |
@@ -29,7 +29,7 @@ |
||
29 | 29 | * @param array $props_n_values incoming values from the database |
30 | 30 | * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
31 | 31 | * the website will be used. |
32 | - * @return EE_Attendee |
|
32 | + * @return EE_Datetime_Ticket |
|
33 | 33 | */ |
34 | 34 | public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
35 | 35 | { |
@@ -9,30 +9,30 @@ |
||
9 | 9 | class EE_Datetime_Ticket extends EE_Base_Class |
10 | 10 | { |
11 | 11 | |
12 | - /** |
|
13 | - * |
|
14 | - * @param array $props_n_values incoming values |
|
15 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
16 | - * used.) |
|
17 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
18 | - * date_format and the second value is the time format |
|
19 | - * @return EE_Attendee |
|
20 | - */ |
|
21 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
22 | - { |
|
23 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
24 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
25 | - } |
|
12 | + /** |
|
13 | + * |
|
14 | + * @param array $props_n_values incoming values |
|
15 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
16 | + * used.) |
|
17 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
18 | + * date_format and the second value is the time format |
|
19 | + * @return EE_Attendee |
|
20 | + */ |
|
21 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
22 | + { |
|
23 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
24 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
25 | + } |
|
26 | 26 | |
27 | 27 | |
28 | - /** |
|
29 | - * @param array $props_n_values incoming values from the database |
|
30 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
31 | - * the website will be used. |
|
32 | - * @return EE_Attendee |
|
33 | - */ |
|
34 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
35 | - { |
|
36 | - return new self($props_n_values, true, $timezone); |
|
37 | - } |
|
28 | + /** |
|
29 | + * @param array $props_n_values incoming values from the database |
|
30 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
31 | + * the website will be used. |
|
32 | + * @return EE_Attendee |
|
33 | + */ |
|
34 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
35 | + { |
|
36 | + return new self($props_n_values, true, $timezone); |
|
37 | + } |
|
38 | 38 | } |
@@ -838,7 +838,7 @@ discard block |
||
838 | 838 | /** |
839 | 839 | * calculate spaces remaining based on "saleable" tickets |
840 | 840 | * |
841 | - * @param array $tickets |
|
841 | + * @param EE_Base_Class[] $tickets |
|
842 | 842 | * @param bool $filtered |
843 | 843 | * @return int|float |
844 | 844 | * @throws EE_Error |
@@ -1078,7 +1078,7 @@ discard block |
||
1078 | 1078 | * |
1079 | 1079 | * @access public |
1080 | 1080 | * @param boolean $echo whether to return (FALSE), or echo out the result (TRUE) |
1081 | - * @return mixed void|string |
|
1081 | + * @return string void|string |
|
1082 | 1082 | * @throws EE_Error |
1083 | 1083 | */ |
1084 | 1084 | public function pretty_active_status($echo = true) |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function getAvailableSpacesCalculator() |
71 | 71 | { |
72 | - if (! $this->available_spaces_calculator instanceof EventSpacesCalculator) { |
|
72 | + if ( ! $this->available_spaces_calculator instanceof EventSpacesCalculator) { |
|
73 | 73 | $this->available_spaces_calculator = new EventSpacesCalculator($this); |
74 | 74 | } |
75 | 75 | return $this->available_spaces_calculator; |
@@ -211,7 +211,7 @@ discard block |
||
211 | 211 | */ |
212 | 212 | public function primary_datetime($try_to_exclude_expired = true, $try_to_exclude_deleted = true) |
213 | 213 | { |
214 | - if (! empty($this->_Primary_Datetime)) { |
|
214 | + if ( ! empty($this->_Primary_Datetime)) { |
|
215 | 215 | return $this->_Primary_Datetime; |
216 | 216 | } |
217 | 217 | $this->_Primary_Datetime = EEM_Datetime::instance($this->_timezone)->get_primary_datetime_for_event( |
@@ -234,7 +234,7 @@ discard block |
||
234 | 234 | { |
235 | 235 | // first get all datetimes |
236 | 236 | $datetimes = $this->datetimes_ordered(); |
237 | - if (! $datetimes) { |
|
237 | + if ( ! $datetimes) { |
|
238 | 238 | return array(); |
239 | 239 | } |
240 | 240 | $datetime_ids = array(); |
@@ -427,7 +427,7 @@ discard block |
||
427 | 427 | public function short_description($num_words = 55, $more = null, $not_full_desc = false) |
428 | 428 | { |
429 | 429 | $short_desc = $this->get('EVT_short_desc'); |
430 | - if (! empty($short_desc) || $not_full_desc) { |
|
430 | + if ( ! empty($short_desc) || $not_full_desc) { |
|
431 | 431 | return $short_desc; |
432 | 432 | } |
433 | 433 | $full_desc = $this->get('EVT_desc'); |
@@ -881,7 +881,7 @@ discard block |
||
881 | 881 | ); |
882 | 882 | $all_expired = true; |
883 | 883 | foreach ($tickets as $ticket) { |
884 | - if (! $ticket->is_expired()) { |
|
884 | + if ( ! $ticket->is_expired()) { |
|
885 | 885 | $all_expired = false; |
886 | 886 | break; |
887 | 887 | } |
@@ -970,7 +970,7 @@ discard block |
||
970 | 970 | */ |
971 | 971 | public function is_sold_out($actual = false) |
972 | 972 | { |
973 | - if (! $actual) { |
|
973 | + if ( ! $actual) { |
|
974 | 974 | return $this->status() === EEM_Event::sold_out; |
975 | 975 | } |
976 | 976 | return $this->perform_sold_out_status_check(); |
@@ -1015,11 +1015,11 @@ discard block |
||
1015 | 1015 | public function get_active_status($reset = false) |
1016 | 1016 | { |
1017 | 1017 | // if the active status has already been set, then just use that value (unless we are resetting it) |
1018 | - if (! empty($this->_active_status) && ! $reset) { |
|
1018 | + if ( ! empty($this->_active_status) && ! $reset) { |
|
1019 | 1019 | return $this->_active_status; |
1020 | 1020 | } |
1021 | 1021 | // first check if event id is present on this object |
1022 | - if (! $this->ID()) { |
|
1022 | + if ( ! $this->ID()) { |
|
1023 | 1023 | return false; |
1024 | 1024 | } |
1025 | 1025 | $where_params_for_event = array(array('EVT_ID' => $this->ID())); |
@@ -1104,7 +1104,7 @@ discard block |
||
1104 | 1104 | public function get_number_of_tickets_sold() |
1105 | 1105 | { |
1106 | 1106 | $tkt_sold = 0; |
1107 | - if (! $this->ID()) { |
|
1107 | + if ( ! $this->ID()) { |
|
1108 | 1108 | return 0; |
1109 | 1109 | } |
1110 | 1110 | $datetimes = $this->datetimes(); |
@@ -13,1357 +13,1357 @@ |
||
13 | 13 | class EE_Event extends EE_CPT_Base implements EEI_Line_Item_Object, EEI_Admin_Links, EEI_Has_Icon, EEI_Event |
14 | 14 | { |
15 | 15 | |
16 | - /** |
|
17 | - * cached value for the the logical active status for the event |
|
18 | - * |
|
19 | - * @see get_active_status() |
|
20 | - * @var string |
|
21 | - */ |
|
22 | - protected $_active_status = ''; |
|
23 | - |
|
24 | - /** |
|
25 | - * This is just used for caching the Primary Datetime for the Event on initial retrieval |
|
26 | - * |
|
27 | - * @var EE_Datetime |
|
28 | - */ |
|
29 | - protected $_Primary_Datetime; |
|
30 | - |
|
31 | - /** |
|
32 | - * @var EventSpacesCalculator $available_spaces_calculator |
|
33 | - */ |
|
34 | - protected $available_spaces_calculator; |
|
35 | - |
|
36 | - |
|
37 | - /** |
|
38 | - * @param array $props_n_values incoming values |
|
39 | - * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
40 | - * used.) |
|
41 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
42 | - * date_format and the second value is the time format |
|
43 | - * @return EE_Event |
|
44 | - * @throws EE_Error |
|
45 | - */ |
|
46 | - public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
47 | - { |
|
48 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
49 | - return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
50 | - } |
|
51 | - |
|
52 | - |
|
53 | - /** |
|
54 | - * @param array $props_n_values incoming values from the database |
|
55 | - * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
56 | - * the website will be used. |
|
57 | - * @return EE_Event |
|
58 | - * @throws EE_Error |
|
59 | - */ |
|
60 | - public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
61 | - { |
|
62 | - return new self($props_n_values, true, $timezone); |
|
63 | - } |
|
64 | - |
|
65 | - |
|
66 | - /** |
|
67 | - * @return EventSpacesCalculator |
|
68 | - * @throws \EE_Error |
|
69 | - */ |
|
70 | - public function getAvailableSpacesCalculator() |
|
71 | - { |
|
72 | - if (! $this->available_spaces_calculator instanceof EventSpacesCalculator) { |
|
73 | - $this->available_spaces_calculator = new EventSpacesCalculator($this); |
|
74 | - } |
|
75 | - return $this->available_spaces_calculator; |
|
76 | - } |
|
77 | - |
|
78 | - |
|
79 | - /** |
|
80 | - * Overrides parent set() method so that all calls to set( 'status', $status ) can be routed to internal methods |
|
81 | - * |
|
82 | - * @param string $field_name |
|
83 | - * @param mixed $field_value |
|
84 | - * @param bool $use_default |
|
85 | - * @throws EE_Error |
|
86 | - */ |
|
87 | - public function set($field_name, $field_value, $use_default = false) |
|
88 | - { |
|
89 | - switch ($field_name) { |
|
90 | - case 'status': |
|
91 | - $this->set_status($field_value, $use_default); |
|
92 | - break; |
|
93 | - default: |
|
94 | - parent::set($field_name, $field_value, $use_default); |
|
95 | - } |
|
96 | - } |
|
97 | - |
|
98 | - |
|
99 | - /** |
|
100 | - * set_status |
|
101 | - * Checks if event status is being changed to SOLD OUT |
|
102 | - * and updates event meta data with previous event status |
|
103 | - * so that we can revert things if/when the event is no longer sold out |
|
104 | - * |
|
105 | - * @access public |
|
106 | - * @param string $new_status |
|
107 | - * @param bool $use_default |
|
108 | - * @return void |
|
109 | - * @throws EE_Error |
|
110 | - */ |
|
111 | - public function set_status($new_status = null, $use_default = false) |
|
112 | - { |
|
113 | - // if nothing is set, and we aren't explicitly wanting to reset the status, then just leave |
|
114 | - if (empty($new_status) && ! $use_default) { |
|
115 | - return; |
|
116 | - } |
|
117 | - // get current Event status |
|
118 | - $old_status = $this->status(); |
|
119 | - // if status has changed |
|
120 | - if ($old_status !== $new_status) { |
|
121 | - // TO sold_out |
|
122 | - if ($new_status === EEM_Event::sold_out) { |
|
123 | - // save the previous event status so that we can revert if the event is no longer sold out |
|
124 | - $this->add_post_meta('_previous_event_status', $old_status); |
|
125 | - do_action('AHEE__EE_Event__set_status__to_sold_out', $this, $old_status, $new_status); |
|
126 | - // OR FROM sold_out |
|
127 | - } elseif ($old_status === EEM_Event::sold_out) { |
|
128 | - $this->delete_post_meta('_previous_event_status'); |
|
129 | - do_action('AHEE__EE_Event__set_status__from_sold_out', $this, $old_status, $new_status); |
|
130 | - } |
|
131 | - // clear out the active status so that it gets reset the next time it is requested |
|
132 | - $this->_active_status = null; |
|
133 | - // update status |
|
134 | - parent::set('status', $new_status, $use_default); |
|
135 | - do_action('AHEE__EE_Event__set_status__after_update', $this); |
|
136 | - return; |
|
137 | - } |
|
138 | - // even though the old value matches the new value, it's still good to |
|
139 | - // allow the parent set method to have a say |
|
140 | - parent::set('status', $new_status, $use_default); |
|
141 | - } |
|
142 | - |
|
143 | - |
|
144 | - /** |
|
145 | - * Gets all the datetimes for this event |
|
146 | - * |
|
147 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
148 | - * @return EE_Base_Class[]|EE_Datetime[] |
|
149 | - * @throws EE_Error |
|
150 | - */ |
|
151 | - public function datetimes($query_params = array()) |
|
152 | - { |
|
153 | - return $this->get_many_related('Datetime', $query_params); |
|
154 | - } |
|
155 | - |
|
156 | - |
|
157 | - /** |
|
158 | - * Gets all the datetimes for this event, ordered by DTT_EVT_start in ascending order |
|
159 | - * |
|
160 | - * @return EE_Base_Class[]|EE_Datetime[] |
|
161 | - * @throws EE_Error |
|
162 | - */ |
|
163 | - public function datetimes_in_chronological_order() |
|
164 | - { |
|
165 | - return $this->get_many_related('Datetime', array('order_by' => array('DTT_EVT_start' => 'ASC'))); |
|
166 | - } |
|
167 | - |
|
168 | - |
|
169 | - /** |
|
170 | - * Gets all the datetimes for this event, ordered by the DTT_order on the datetime. |
|
171 | - * @darren, we should probably UNSET timezone on the EEM_Datetime model |
|
172 | - * after running our query, so that this timezone isn't set for EVERY query |
|
173 | - * on EEM_Datetime for the rest of the request, no? |
|
174 | - * |
|
175 | - * @param boolean $show_expired whether or not to include expired events |
|
176 | - * @param boolean $show_deleted whether or not to include deleted events |
|
177 | - * @param null $limit |
|
178 | - * @return EE_Datetime[] |
|
179 | - * @throws EE_Error |
|
180 | - */ |
|
181 | - public function datetimes_ordered($show_expired = true, $show_deleted = false, $limit = null) |
|
182 | - { |
|
183 | - return EEM_Datetime::instance($this->_timezone)->get_datetimes_for_event_ordered_by_DTT_order( |
|
184 | - $this->ID(), |
|
185 | - $show_expired, |
|
186 | - $show_deleted, |
|
187 | - $limit |
|
188 | - ); |
|
189 | - } |
|
190 | - |
|
191 | - |
|
192 | - /** |
|
193 | - * Returns one related datetime. Mostly only used by some legacy code. |
|
194 | - * |
|
195 | - * @return EE_Base_Class|EE_Datetime |
|
196 | - * @throws EE_Error |
|
197 | - */ |
|
198 | - public function first_datetime() |
|
199 | - { |
|
200 | - return $this->get_first_related('Datetime'); |
|
201 | - } |
|
202 | - |
|
203 | - |
|
204 | - /** |
|
205 | - * Returns the 'primary' datetime for the event |
|
206 | - * |
|
207 | - * @param bool $try_to_exclude_expired |
|
208 | - * @param bool $try_to_exclude_deleted |
|
209 | - * @return EE_Datetime |
|
210 | - * @throws EE_Error |
|
211 | - */ |
|
212 | - public function primary_datetime($try_to_exclude_expired = true, $try_to_exclude_deleted = true) |
|
213 | - { |
|
214 | - if (! empty($this->_Primary_Datetime)) { |
|
215 | - return $this->_Primary_Datetime; |
|
216 | - } |
|
217 | - $this->_Primary_Datetime = EEM_Datetime::instance($this->_timezone)->get_primary_datetime_for_event( |
|
218 | - $this->ID(), |
|
219 | - $try_to_exclude_expired, |
|
220 | - $try_to_exclude_deleted |
|
221 | - ); |
|
222 | - return $this->_Primary_Datetime; |
|
223 | - } |
|
224 | - |
|
225 | - |
|
226 | - /** |
|
227 | - * Gets all the tickets available for purchase of this event |
|
228 | - * |
|
229 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
230 | - * @return EE_Base_Class[]|EE_Ticket[] |
|
231 | - * @throws EE_Error |
|
232 | - */ |
|
233 | - public function tickets($query_params = array()) |
|
234 | - { |
|
235 | - // first get all datetimes |
|
236 | - $datetimes = $this->datetimes_ordered(); |
|
237 | - if (! $datetimes) { |
|
238 | - return array(); |
|
239 | - } |
|
240 | - $datetime_ids = array(); |
|
241 | - foreach ($datetimes as $datetime) { |
|
242 | - $datetime_ids[] = $datetime->ID(); |
|
243 | - } |
|
244 | - $where_params = array('Datetime.DTT_ID' => array('IN', $datetime_ids)); |
|
245 | - // if incoming $query_params has where conditions let's merge but not override existing. |
|
246 | - if (is_array($query_params) && isset($query_params[0])) { |
|
247 | - $where_params = array_merge($query_params[0], $where_params); |
|
248 | - unset($query_params[0]); |
|
249 | - } |
|
250 | - // now add $where_params to $query_params |
|
251 | - $query_params[0] = $where_params; |
|
252 | - return EEM_Ticket::instance()->get_all($query_params); |
|
253 | - } |
|
254 | - |
|
255 | - |
|
256 | - /** |
|
257 | - * get all unexpired untrashed tickets |
|
258 | - * |
|
259 | - * @return EE_Ticket[] |
|
260 | - * @throws EE_Error |
|
261 | - */ |
|
262 | - public function active_tickets() |
|
263 | - { |
|
264 | - return $this->tickets( |
|
265 | - array( |
|
266 | - array( |
|
267 | - 'TKT_end_date' => array('>=', EEM_Ticket::instance()->current_time_for_query('TKT_end_date')), |
|
268 | - 'TKT_deleted' => false, |
|
269 | - ), |
|
270 | - ) |
|
271 | - ); |
|
272 | - } |
|
273 | - |
|
274 | - |
|
275 | - /** |
|
276 | - * @return bool |
|
277 | - * @throws EE_Error |
|
278 | - */ |
|
279 | - public function additional_limit() |
|
280 | - { |
|
281 | - return $this->get('EVT_additional_limit'); |
|
282 | - } |
|
283 | - |
|
284 | - |
|
285 | - /** |
|
286 | - * @return bool |
|
287 | - * @throws EE_Error |
|
288 | - */ |
|
289 | - public function allow_overflow() |
|
290 | - { |
|
291 | - return $this->get('EVT_allow_overflow'); |
|
292 | - } |
|
293 | - |
|
294 | - |
|
295 | - /** |
|
296 | - * @return bool |
|
297 | - * @throws EE_Error |
|
298 | - */ |
|
299 | - public function created() |
|
300 | - { |
|
301 | - return $this->get('EVT_created'); |
|
302 | - } |
|
303 | - |
|
304 | - |
|
305 | - /** |
|
306 | - * @return bool |
|
307 | - * @throws EE_Error |
|
308 | - */ |
|
309 | - public function description() |
|
310 | - { |
|
311 | - return $this->get('EVT_desc'); |
|
312 | - } |
|
313 | - |
|
314 | - |
|
315 | - /** |
|
316 | - * Runs do_shortcode and wpautop on the description |
|
317 | - * |
|
318 | - * @return string of html |
|
319 | - * @throws EE_Error |
|
320 | - */ |
|
321 | - public function description_filtered() |
|
322 | - { |
|
323 | - return $this->get_pretty('EVT_desc'); |
|
324 | - } |
|
325 | - |
|
326 | - |
|
327 | - /** |
|
328 | - * @return bool |
|
329 | - * @throws EE_Error |
|
330 | - */ |
|
331 | - public function display_description() |
|
332 | - { |
|
333 | - return $this->get('EVT_display_desc'); |
|
334 | - } |
|
335 | - |
|
336 | - |
|
337 | - /** |
|
338 | - * @return bool |
|
339 | - * @throws EE_Error |
|
340 | - */ |
|
341 | - public function display_ticket_selector() |
|
342 | - { |
|
343 | - return (bool) $this->get('EVT_display_ticket_selector'); |
|
344 | - } |
|
345 | - |
|
346 | - |
|
347 | - /** |
|
348 | - * @return bool |
|
349 | - * @throws EE_Error |
|
350 | - */ |
|
351 | - public function external_url() |
|
352 | - { |
|
353 | - return $this->get('EVT_external_URL'); |
|
354 | - } |
|
355 | - |
|
356 | - |
|
357 | - /** |
|
358 | - * @return bool |
|
359 | - * @throws EE_Error |
|
360 | - */ |
|
361 | - public function member_only() |
|
362 | - { |
|
363 | - return $this->get('EVT_member_only'); |
|
364 | - } |
|
365 | - |
|
366 | - |
|
367 | - /** |
|
368 | - * @return bool |
|
369 | - * @throws EE_Error |
|
370 | - */ |
|
371 | - public function phone() |
|
372 | - { |
|
373 | - return $this->get('EVT_phone'); |
|
374 | - } |
|
375 | - |
|
376 | - |
|
377 | - /** |
|
378 | - * @return bool |
|
379 | - * @throws EE_Error |
|
380 | - */ |
|
381 | - public function modified() |
|
382 | - { |
|
383 | - return $this->get('EVT_modified'); |
|
384 | - } |
|
385 | - |
|
386 | - |
|
387 | - /** |
|
388 | - * @return bool |
|
389 | - * @throws EE_Error |
|
390 | - */ |
|
391 | - public function name() |
|
392 | - { |
|
393 | - return $this->get('EVT_name'); |
|
394 | - } |
|
395 | - |
|
396 | - |
|
397 | - /** |
|
398 | - * @return bool |
|
399 | - * @throws EE_Error |
|
400 | - */ |
|
401 | - public function order() |
|
402 | - { |
|
403 | - return $this->get('EVT_order'); |
|
404 | - } |
|
405 | - |
|
406 | - |
|
407 | - /** |
|
408 | - * @return bool|string |
|
409 | - * @throws EE_Error |
|
410 | - */ |
|
411 | - public function default_registration_status() |
|
412 | - { |
|
413 | - $event_default_registration_status = $this->get('EVT_default_registration_status'); |
|
414 | - return ! empty($event_default_registration_status) |
|
415 | - ? $event_default_registration_status |
|
416 | - : EE_Registry::instance()->CFG->registration->default_STS_ID; |
|
417 | - } |
|
418 | - |
|
419 | - |
|
420 | - /** |
|
421 | - * @param int $num_words |
|
422 | - * @param null $more |
|
423 | - * @param bool $not_full_desc |
|
424 | - * @return bool|string |
|
425 | - * @throws EE_Error |
|
426 | - */ |
|
427 | - public function short_description($num_words = 55, $more = null, $not_full_desc = false) |
|
428 | - { |
|
429 | - $short_desc = $this->get('EVT_short_desc'); |
|
430 | - if (! empty($short_desc) || $not_full_desc) { |
|
431 | - return $short_desc; |
|
432 | - } |
|
433 | - $full_desc = $this->get('EVT_desc'); |
|
434 | - return wp_trim_words($full_desc, $num_words, $more); |
|
435 | - } |
|
436 | - |
|
437 | - |
|
438 | - /** |
|
439 | - * @return bool |
|
440 | - * @throws EE_Error |
|
441 | - */ |
|
442 | - public function slug() |
|
443 | - { |
|
444 | - return $this->get('EVT_slug'); |
|
445 | - } |
|
446 | - |
|
447 | - |
|
448 | - /** |
|
449 | - * @return bool |
|
450 | - * @throws EE_Error |
|
451 | - */ |
|
452 | - public function timezone_string() |
|
453 | - { |
|
454 | - return $this->get('EVT_timezone_string'); |
|
455 | - } |
|
456 | - |
|
457 | - |
|
458 | - /** |
|
459 | - * @return bool |
|
460 | - * @throws EE_Error |
|
461 | - */ |
|
462 | - public function visible_on() |
|
463 | - { |
|
464 | - return $this->get('EVT_visible_on'); |
|
465 | - } |
|
466 | - |
|
467 | - |
|
468 | - /** |
|
469 | - * @return int |
|
470 | - * @throws EE_Error |
|
471 | - */ |
|
472 | - public function wp_user() |
|
473 | - { |
|
474 | - return $this->get('EVT_wp_user'); |
|
475 | - } |
|
476 | - |
|
477 | - |
|
478 | - /** |
|
479 | - * @return bool |
|
480 | - * @throws EE_Error |
|
481 | - */ |
|
482 | - public function donations() |
|
483 | - { |
|
484 | - return $this->get('EVT_donations'); |
|
485 | - } |
|
486 | - |
|
487 | - |
|
488 | - /** |
|
489 | - * @param $limit |
|
490 | - * @throws EE_Error |
|
491 | - */ |
|
492 | - public function set_additional_limit($limit) |
|
493 | - { |
|
494 | - $this->set('EVT_additional_limit', $limit); |
|
495 | - } |
|
496 | - |
|
497 | - |
|
498 | - /** |
|
499 | - * @param $created |
|
500 | - * @throws EE_Error |
|
501 | - */ |
|
502 | - public function set_created($created) |
|
503 | - { |
|
504 | - $this->set('EVT_created', $created); |
|
505 | - } |
|
506 | - |
|
507 | - |
|
508 | - /** |
|
509 | - * @param $desc |
|
510 | - * @throws EE_Error |
|
511 | - */ |
|
512 | - public function set_description($desc) |
|
513 | - { |
|
514 | - $this->set('EVT_desc', $desc); |
|
515 | - } |
|
516 | - |
|
517 | - |
|
518 | - /** |
|
519 | - * @param $display_desc |
|
520 | - * @throws EE_Error |
|
521 | - */ |
|
522 | - public function set_display_description($display_desc) |
|
523 | - { |
|
524 | - $this->set('EVT_display_desc', $display_desc); |
|
525 | - } |
|
526 | - |
|
527 | - |
|
528 | - /** |
|
529 | - * @param $display_ticket_selector |
|
530 | - * @throws EE_Error |
|
531 | - */ |
|
532 | - public function set_display_ticket_selector($display_ticket_selector) |
|
533 | - { |
|
534 | - $this->set('EVT_display_ticket_selector', $display_ticket_selector); |
|
535 | - } |
|
536 | - |
|
537 | - |
|
538 | - /** |
|
539 | - * @param $external_url |
|
540 | - * @throws EE_Error |
|
541 | - */ |
|
542 | - public function set_external_url($external_url) |
|
543 | - { |
|
544 | - $this->set('EVT_external_URL', $external_url); |
|
545 | - } |
|
546 | - |
|
547 | - |
|
548 | - /** |
|
549 | - * @param $member_only |
|
550 | - * @throws EE_Error |
|
551 | - */ |
|
552 | - public function set_member_only($member_only) |
|
553 | - { |
|
554 | - $this->set('EVT_member_only', $member_only); |
|
555 | - } |
|
556 | - |
|
557 | - |
|
558 | - /** |
|
559 | - * @param $event_phone |
|
560 | - * @throws EE_Error |
|
561 | - */ |
|
562 | - public function set_event_phone($event_phone) |
|
563 | - { |
|
564 | - $this->set('EVT_phone', $event_phone); |
|
565 | - } |
|
566 | - |
|
567 | - |
|
568 | - /** |
|
569 | - * @param $modified |
|
570 | - * @throws EE_Error |
|
571 | - */ |
|
572 | - public function set_modified($modified) |
|
573 | - { |
|
574 | - $this->set('EVT_modified', $modified); |
|
575 | - } |
|
576 | - |
|
577 | - |
|
578 | - /** |
|
579 | - * @param $name |
|
580 | - * @throws EE_Error |
|
581 | - */ |
|
582 | - public function set_name($name) |
|
583 | - { |
|
584 | - $this->set('EVT_name', $name); |
|
585 | - } |
|
586 | - |
|
587 | - |
|
588 | - /** |
|
589 | - * @param $order |
|
590 | - * @throws EE_Error |
|
591 | - */ |
|
592 | - public function set_order($order) |
|
593 | - { |
|
594 | - $this->set('EVT_order', $order); |
|
595 | - } |
|
596 | - |
|
597 | - |
|
598 | - /** |
|
599 | - * @param $short_desc |
|
600 | - * @throws EE_Error |
|
601 | - */ |
|
602 | - public function set_short_description($short_desc) |
|
603 | - { |
|
604 | - $this->set('EVT_short_desc', $short_desc); |
|
605 | - } |
|
606 | - |
|
607 | - |
|
608 | - /** |
|
609 | - * @param $slug |
|
610 | - * @throws EE_Error |
|
611 | - */ |
|
612 | - public function set_slug($slug) |
|
613 | - { |
|
614 | - $this->set('EVT_slug', $slug); |
|
615 | - } |
|
616 | - |
|
617 | - |
|
618 | - /** |
|
619 | - * @param $timezone_string |
|
620 | - * @throws EE_Error |
|
621 | - */ |
|
622 | - public function set_timezone_string($timezone_string) |
|
623 | - { |
|
624 | - $this->set('EVT_timezone_string', $timezone_string); |
|
625 | - } |
|
626 | - |
|
627 | - |
|
628 | - /** |
|
629 | - * @param $visible_on |
|
630 | - * @throws EE_Error |
|
631 | - */ |
|
632 | - public function set_visible_on($visible_on) |
|
633 | - { |
|
634 | - $this->set('EVT_visible_on', $visible_on); |
|
635 | - } |
|
636 | - |
|
637 | - |
|
638 | - /** |
|
639 | - * @param $wp_user |
|
640 | - * @throws EE_Error |
|
641 | - */ |
|
642 | - public function set_wp_user($wp_user) |
|
643 | - { |
|
644 | - $this->set('EVT_wp_user', $wp_user); |
|
645 | - } |
|
646 | - |
|
647 | - |
|
648 | - /** |
|
649 | - * @param $default_registration_status |
|
650 | - * @throws EE_Error |
|
651 | - */ |
|
652 | - public function set_default_registration_status($default_registration_status) |
|
653 | - { |
|
654 | - $this->set('EVT_default_registration_status', $default_registration_status); |
|
655 | - } |
|
656 | - |
|
657 | - |
|
658 | - /** |
|
659 | - * @param $donations |
|
660 | - * @throws EE_Error |
|
661 | - */ |
|
662 | - public function set_donations($donations) |
|
663 | - { |
|
664 | - $this->set('EVT_donations', $donations); |
|
665 | - } |
|
666 | - |
|
667 | - |
|
668 | - /** |
|
669 | - * Adds a venue to this event |
|
670 | - * |
|
671 | - * @param EE_Venue /int $venue_id_or_obj |
|
672 | - * @return EE_Base_Class|EE_Venue |
|
673 | - * @throws EE_Error |
|
674 | - */ |
|
675 | - public function add_venue($venue_id_or_obj) |
|
676 | - { |
|
677 | - return $this->_add_relation_to($venue_id_or_obj, 'Venue'); |
|
678 | - } |
|
679 | - |
|
680 | - |
|
681 | - /** |
|
682 | - * Removes a venue from the event |
|
683 | - * |
|
684 | - * @param EE_Venue /int $venue_id_or_obj |
|
685 | - * @return EE_Base_Class|EE_Venue |
|
686 | - * @throws EE_Error |
|
687 | - */ |
|
688 | - public function remove_venue($venue_id_or_obj) |
|
689 | - { |
|
690 | - return $this->_remove_relation_to($venue_id_or_obj, 'Venue'); |
|
691 | - } |
|
692 | - |
|
693 | - |
|
694 | - /** |
|
695 | - * Gets all the venues related ot the event. May provide additional $query_params if desired |
|
696 | - * |
|
697 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
698 | - * @return EE_Base_Class[]|EE_Venue[] |
|
699 | - * @throws EE_Error |
|
700 | - */ |
|
701 | - public function venues($query_params = array()) |
|
702 | - { |
|
703 | - return $this->get_many_related('Venue', $query_params); |
|
704 | - } |
|
705 | - |
|
706 | - |
|
707 | - /** |
|
708 | - * check if event id is present and if event is published |
|
709 | - * |
|
710 | - * @access public |
|
711 | - * @return boolean true yes, false no |
|
712 | - * @throws EE_Error |
|
713 | - */ |
|
714 | - private function _has_ID_and_is_published() |
|
715 | - { |
|
716 | - // first check if event id is present and not NULL, |
|
717 | - // then check if this event is published (or any of the equivalent "published" statuses) |
|
718 | - return |
|
719 | - $this->ID() && $this->ID() !== null |
|
720 | - && ( |
|
721 | - $this->status() === 'publish' |
|
722 | - || $this->status() === EEM_Event::sold_out |
|
723 | - || $this->status() === EEM_Event::postponed |
|
724 | - || $this->status() === EEM_Event::cancelled |
|
725 | - ); |
|
726 | - } |
|
727 | - |
|
728 | - |
|
729 | - /** |
|
730 | - * This simply compares the internal dates with NOW and determines if the event is upcoming or not. |
|
731 | - * |
|
732 | - * @access public |
|
733 | - * @return boolean true yes, false no |
|
734 | - * @throws EE_Error |
|
735 | - */ |
|
736 | - public function is_upcoming() |
|
737 | - { |
|
738 | - // check if event id is present and if this event is published |
|
739 | - if ($this->is_inactive()) { |
|
740 | - return false; |
|
741 | - } |
|
742 | - // set initial value |
|
743 | - $upcoming = false; |
|
744 | - // next let's get all datetimes and loop through them |
|
745 | - $datetimes = $this->datetimes_in_chronological_order(); |
|
746 | - foreach ($datetimes as $datetime) { |
|
747 | - if ($datetime instanceof EE_Datetime) { |
|
748 | - // if this dtt is expired then we continue cause one of the other datetimes might be upcoming. |
|
749 | - if ($datetime->is_expired()) { |
|
750 | - continue; |
|
751 | - } |
|
752 | - // if this dtt is active then we return false. |
|
753 | - if ($datetime->is_active()) { |
|
754 | - return false; |
|
755 | - } |
|
756 | - // otherwise let's check upcoming status |
|
757 | - $upcoming = $datetime->is_upcoming(); |
|
758 | - } |
|
759 | - } |
|
760 | - return $upcoming; |
|
761 | - } |
|
762 | - |
|
763 | - |
|
764 | - /** |
|
765 | - * @return bool |
|
766 | - * @throws EE_Error |
|
767 | - */ |
|
768 | - public function is_active() |
|
769 | - { |
|
770 | - // check if event id is present and if this event is published |
|
771 | - if ($this->is_inactive()) { |
|
772 | - return false; |
|
773 | - } |
|
774 | - // set initial value |
|
775 | - $active = false; |
|
776 | - // next let's get all datetimes and loop through them |
|
777 | - $datetimes = $this->datetimes_in_chronological_order(); |
|
778 | - foreach ($datetimes as $datetime) { |
|
779 | - if ($datetime instanceof EE_Datetime) { |
|
780 | - // if this dtt is expired then we continue cause one of the other datetimes might be active. |
|
781 | - if ($datetime->is_expired()) { |
|
782 | - continue; |
|
783 | - } |
|
784 | - // if this dtt is upcoming then we return false. |
|
785 | - if ($datetime->is_upcoming()) { |
|
786 | - return false; |
|
787 | - } |
|
788 | - // otherwise let's check active status |
|
789 | - $active = $datetime->is_active(); |
|
790 | - } |
|
791 | - } |
|
792 | - return $active; |
|
793 | - } |
|
794 | - |
|
795 | - |
|
796 | - /** |
|
797 | - * @return bool |
|
798 | - * @throws EE_Error |
|
799 | - */ |
|
800 | - public function is_expired() |
|
801 | - { |
|
802 | - // check if event id is present and if this event is published |
|
803 | - if ($this->is_inactive()) { |
|
804 | - return false; |
|
805 | - } |
|
806 | - // set initial value |
|
807 | - $expired = false; |
|
808 | - // first let's get all datetimes and loop through them |
|
809 | - $datetimes = $this->datetimes_in_chronological_order(); |
|
810 | - foreach ($datetimes as $datetime) { |
|
811 | - if ($datetime instanceof EE_Datetime) { |
|
812 | - // if this dtt is upcoming or active then we return false. |
|
813 | - if ($datetime->is_upcoming() || $datetime->is_active()) { |
|
814 | - return false; |
|
815 | - } |
|
816 | - // otherwise let's check active status |
|
817 | - $expired = $datetime->is_expired(); |
|
818 | - } |
|
819 | - } |
|
820 | - return $expired; |
|
821 | - } |
|
822 | - |
|
823 | - |
|
824 | - /** |
|
825 | - * @return bool |
|
826 | - * @throws EE_Error |
|
827 | - */ |
|
828 | - public function is_inactive() |
|
829 | - { |
|
830 | - // check if event id is present and if this event is published |
|
831 | - if ($this->_has_ID_and_is_published()) { |
|
832 | - return false; |
|
833 | - } |
|
834 | - return true; |
|
835 | - } |
|
836 | - |
|
837 | - |
|
838 | - /** |
|
839 | - * calculate spaces remaining based on "saleable" tickets |
|
840 | - * |
|
841 | - * @param array $tickets |
|
842 | - * @param bool $filtered |
|
843 | - * @return int|float |
|
844 | - * @throws EE_Error |
|
845 | - * @throws DomainException |
|
846 | - * @throws UnexpectedEntityException |
|
847 | - */ |
|
848 | - public function spaces_remaining($tickets = array(), $filtered = true) |
|
849 | - { |
|
850 | - $this->getAvailableSpacesCalculator()->setActiveTickets($tickets); |
|
851 | - $spaces_remaining = $this->getAvailableSpacesCalculator()->spacesRemaining(); |
|
852 | - return $filtered |
|
853 | - ? apply_filters( |
|
854 | - 'FHEE_EE_Event__spaces_remaining', |
|
855 | - $spaces_remaining, |
|
856 | - $this, |
|
857 | - $tickets |
|
858 | - ) |
|
859 | - : $spaces_remaining; |
|
860 | - } |
|
861 | - |
|
862 | - |
|
863 | - /** |
|
864 | - * perform_sold_out_status_check |
|
865 | - * checks all of this events's datetime reg_limit - sold values to determine if ANY datetimes have spaces |
|
866 | - * available... if NOT, then the event status will get toggled to 'sold_out' |
|
867 | - * |
|
868 | - * @return bool return the ACTUAL sold out state. |
|
869 | - * @throws EE_Error |
|
870 | - * @throws DomainException |
|
871 | - * @throws UnexpectedEntityException |
|
872 | - */ |
|
873 | - public function perform_sold_out_status_check() |
|
874 | - { |
|
875 | - // get all unexpired untrashed tickets |
|
876 | - $tickets = $this->tickets( |
|
877 | - array( |
|
878 | - array('TKT_deleted' => false), |
|
879 | - 'order_by' => array('TKT_qty' => 'ASC'), |
|
880 | - ) |
|
881 | - ); |
|
882 | - $all_expired = true; |
|
883 | - foreach ($tickets as $ticket) { |
|
884 | - if (! $ticket->is_expired()) { |
|
885 | - $all_expired = false; |
|
886 | - break; |
|
887 | - } |
|
888 | - } |
|
889 | - // if all the tickets are just expired, then don't update the event status to sold out |
|
890 | - if ($all_expired) { |
|
891 | - return true; |
|
892 | - } |
|
893 | - $spaces_remaining = $this->spaces_remaining($tickets); |
|
894 | - if ($spaces_remaining < 1) { |
|
895 | - if ($this->status() !== EEM_Event::post_status_private) { |
|
896 | - $this->set_status(EEM_Event::sold_out); |
|
897 | - $this->save(); |
|
898 | - } |
|
899 | - $sold_out = true; |
|
900 | - } else { |
|
901 | - $sold_out = false; |
|
902 | - // was event previously marked as sold out ? |
|
903 | - if ($this->status() === EEM_Event::sold_out) { |
|
904 | - // revert status to previous value, if it was set |
|
905 | - $previous_event_status = $this->get_post_meta('_previous_event_status', true); |
|
906 | - if ($previous_event_status) { |
|
907 | - $this->set_status($previous_event_status); |
|
908 | - $this->save(); |
|
909 | - } |
|
910 | - } |
|
911 | - } |
|
912 | - do_action('AHEE__EE_Event__perform_sold_out_status_check__end', $this, $sold_out, $spaces_remaining, $tickets); |
|
913 | - return $sold_out; |
|
914 | - } |
|
915 | - |
|
916 | - |
|
917 | - /** |
|
918 | - * This returns the total remaining spaces for sale on this event. |
|
919 | - * |
|
920 | - * @uses EE_Event::total_available_spaces() |
|
921 | - * @return float|int |
|
922 | - * @throws EE_Error |
|
923 | - * @throws DomainException |
|
924 | - * @throws UnexpectedEntityException |
|
925 | - */ |
|
926 | - public function spaces_remaining_for_sale() |
|
927 | - { |
|
928 | - return $this->total_available_spaces(true); |
|
929 | - } |
|
930 | - |
|
931 | - |
|
932 | - /** |
|
933 | - * This returns the total spaces available for an event |
|
934 | - * while considering all the qtys on the tickets and the reg limits |
|
935 | - * on the datetimes attached to this event. |
|
936 | - * |
|
937 | - * @param bool $consider_sold Whether to consider any tickets that have already sold in our calculation. |
|
938 | - * If this is false, then we return the most tickets that could ever be sold |
|
939 | - * for this event with the datetime and tickets setup on the event under optimal |
|
940 | - * selling conditions. Otherwise we return a live calculation of spaces available |
|
941 | - * based on tickets sold. Depending on setup and stage of sales, this |
|
942 | - * may appear to equal remaining tickets. However, the more tickets are |
|
943 | - * sold out, the more accurate the "live" total is. |
|
944 | - * @return float|int |
|
945 | - * @throws EE_Error |
|
946 | - * @throws DomainException |
|
947 | - * @throws UnexpectedEntityException |
|
948 | - */ |
|
949 | - public function total_available_spaces($consider_sold = false) |
|
950 | - { |
|
951 | - $spaces_available = $consider_sold |
|
952 | - ? $this->getAvailableSpacesCalculator()->spacesRemaining() |
|
953 | - : $this->getAvailableSpacesCalculator()->totalSpacesAvailable(); |
|
954 | - return apply_filters( |
|
955 | - 'FHEE_EE_Event__total_available_spaces__spaces_available', |
|
956 | - $spaces_available, |
|
957 | - $this, |
|
958 | - $this->getAvailableSpacesCalculator()->getDatetimes(), |
|
959 | - $this->getAvailableSpacesCalculator()->getActiveTickets() |
|
960 | - ); |
|
961 | - } |
|
962 | - |
|
963 | - |
|
964 | - /** |
|
965 | - * Checks if the event is set to sold out |
|
966 | - * |
|
967 | - * @param bool $actual whether or not to perform calculations to not only figure the |
|
968 | - * actual status but also to flip the status if necessary to sold |
|
969 | - * out If false, we just check the existing status of the event |
|
970 | - * @return boolean |
|
971 | - * @throws EE_Error |
|
972 | - */ |
|
973 | - public function is_sold_out($actual = false) |
|
974 | - { |
|
975 | - if (! $actual) { |
|
976 | - return $this->status() === EEM_Event::sold_out; |
|
977 | - } |
|
978 | - return $this->perform_sold_out_status_check(); |
|
979 | - } |
|
980 | - |
|
981 | - |
|
982 | - /** |
|
983 | - * Checks if the event is marked as postponed |
|
984 | - * |
|
985 | - * @return boolean |
|
986 | - */ |
|
987 | - public function is_postponed() |
|
988 | - { |
|
989 | - return $this->status() === EEM_Event::postponed; |
|
990 | - } |
|
991 | - |
|
992 | - |
|
993 | - /** |
|
994 | - * Checks if the event is marked as cancelled |
|
995 | - * |
|
996 | - * @return boolean |
|
997 | - */ |
|
998 | - public function is_cancelled() |
|
999 | - { |
|
1000 | - return $this->status() === EEM_Event::cancelled; |
|
1001 | - } |
|
1002 | - |
|
1003 | - |
|
1004 | - /** |
|
1005 | - * Get the logical active status in a hierarchical order for all the datetimes. Note |
|
1006 | - * Basically, we order the datetimes by EVT_start_date. Then first test on whether the event is published. If its |
|
1007 | - * NOT published then we test for whether its expired or not. IF it IS published then we test first on whether an |
|
1008 | - * event has any active dates. If no active dates then we check for any upcoming dates. If no upcoming dates then |
|
1009 | - * the event is considered expired. |
|
1010 | - * NOTE: this method does NOT calculate whether the datetimes are sold out when event is published. Sold Out is a |
|
1011 | - * status set on the EVENT when it is not published and thus is done |
|
1012 | - * |
|
1013 | - * @param bool $reset |
|
1014 | - * @return bool | string - based on EE_Datetime active constants or FALSE if error. |
|
1015 | - * @throws EE_Error |
|
1016 | - */ |
|
1017 | - public function get_active_status($reset = false) |
|
1018 | - { |
|
1019 | - // if the active status has already been set, then just use that value (unless we are resetting it) |
|
1020 | - if (! empty($this->_active_status) && ! $reset) { |
|
1021 | - return $this->_active_status; |
|
1022 | - } |
|
1023 | - // first check if event id is present on this object |
|
1024 | - if (! $this->ID()) { |
|
1025 | - return false; |
|
1026 | - } |
|
1027 | - $where_params_for_event = array(array('EVT_ID' => $this->ID())); |
|
1028 | - // if event is published: |
|
1029 | - if ($this->status() === EEM_Event::post_status_publish || $this->status() === EEM_Event::post_status_private) { |
|
1030 | - // active? |
|
1031 | - if (EEM_Datetime::instance()->get_datetime_count_for_status( |
|
1032 | - EE_Datetime::active, |
|
1033 | - $where_params_for_event |
|
1034 | - ) > 0) { |
|
1035 | - $this->_active_status = EE_Datetime::active; |
|
1036 | - } else { |
|
1037 | - // upcoming? |
|
1038 | - if (EEM_Datetime::instance()->get_datetime_count_for_status( |
|
1039 | - EE_Datetime::upcoming, |
|
1040 | - $where_params_for_event |
|
1041 | - ) > 0) { |
|
1042 | - $this->_active_status = EE_Datetime::upcoming; |
|
1043 | - } else { |
|
1044 | - // expired? |
|
1045 | - if (EEM_Datetime::instance()->get_datetime_count_for_status( |
|
1046 | - EE_Datetime::expired, |
|
1047 | - $where_params_for_event |
|
1048 | - ) > 0 |
|
1049 | - ) { |
|
1050 | - $this->_active_status = EE_Datetime::expired; |
|
1051 | - } else { |
|
1052 | - // it would be odd if things make it this far because it basically means there are no datetime's |
|
1053 | - // attached to the event. So in this case it will just be considered inactive. |
|
1054 | - $this->_active_status = EE_Datetime::inactive; |
|
1055 | - } |
|
1056 | - } |
|
1057 | - } |
|
1058 | - } else { |
|
1059 | - // the event is not published, so let's just set it's active status according to its' post status |
|
1060 | - switch ($this->status()) { |
|
1061 | - case EEM_Event::sold_out: |
|
1062 | - $this->_active_status = EE_Datetime::sold_out; |
|
1063 | - break; |
|
1064 | - case EEM_Event::cancelled: |
|
1065 | - $this->_active_status = EE_Datetime::cancelled; |
|
1066 | - break; |
|
1067 | - case EEM_Event::postponed: |
|
1068 | - $this->_active_status = EE_Datetime::postponed; |
|
1069 | - break; |
|
1070 | - default: |
|
1071 | - $this->_active_status = EE_Datetime::inactive; |
|
1072 | - } |
|
1073 | - } |
|
1074 | - return $this->_active_status; |
|
1075 | - } |
|
1076 | - |
|
1077 | - |
|
1078 | - /** |
|
1079 | - * pretty_active_status |
|
1080 | - * |
|
1081 | - * @access public |
|
1082 | - * @param boolean $echo whether to return (FALSE), or echo out the result (TRUE) |
|
1083 | - * @return mixed void|string |
|
1084 | - * @throws EE_Error |
|
1085 | - */ |
|
1086 | - public function pretty_active_status($echo = true) |
|
1087 | - { |
|
1088 | - $active_status = $this->get_active_status(); |
|
1089 | - $status = '<span class="ee-status event-active-status-' |
|
1090 | - . $active_status |
|
1091 | - . '">' |
|
1092 | - . EEH_Template::pretty_status($active_status, false, 'sentence') |
|
1093 | - . '</span>'; |
|
1094 | - if ($echo) { |
|
1095 | - echo $status; |
|
1096 | - return ''; |
|
1097 | - } |
|
1098 | - return $status; |
|
1099 | - } |
|
1100 | - |
|
1101 | - |
|
1102 | - /** |
|
1103 | - * @return bool|int |
|
1104 | - * @throws EE_Error |
|
1105 | - */ |
|
1106 | - public function get_number_of_tickets_sold() |
|
1107 | - { |
|
1108 | - $tkt_sold = 0; |
|
1109 | - if (! $this->ID()) { |
|
1110 | - return 0; |
|
1111 | - } |
|
1112 | - $datetimes = $this->datetimes(); |
|
1113 | - foreach ($datetimes as $datetime) { |
|
1114 | - if ($datetime instanceof EE_Datetime) { |
|
1115 | - $tkt_sold += $datetime->sold(); |
|
1116 | - } |
|
1117 | - } |
|
1118 | - return $tkt_sold; |
|
1119 | - } |
|
1120 | - |
|
1121 | - |
|
1122 | - /** |
|
1123 | - * This just returns a count of all the registrations for this event |
|
1124 | - * |
|
1125 | - * @access public |
|
1126 | - * @return int |
|
1127 | - * @throws EE_Error |
|
1128 | - */ |
|
1129 | - public function get_count_of_all_registrations() |
|
1130 | - { |
|
1131 | - return EEM_Event::instance()->count_related($this, 'Registration'); |
|
1132 | - } |
|
1133 | - |
|
1134 | - |
|
1135 | - /** |
|
1136 | - * This returns the ticket with the earliest start time that is |
|
1137 | - * available for this event (across all datetimes attached to the event) |
|
1138 | - * |
|
1139 | - * @return EE_Base_Class|EE_Ticket|null |
|
1140 | - * @throws EE_Error |
|
1141 | - */ |
|
1142 | - public function get_ticket_with_earliest_start_time() |
|
1143 | - { |
|
1144 | - $where['Datetime.EVT_ID'] = $this->ID(); |
|
1145 | - $query_params = array($where, 'order_by' => array('TKT_start_date' => 'ASC')); |
|
1146 | - return EE_Registry::instance()->load_model('Ticket')->get_one($query_params); |
|
1147 | - } |
|
1148 | - |
|
1149 | - |
|
1150 | - /** |
|
1151 | - * This returns the ticket with the latest end time that is available |
|
1152 | - * for this event (across all datetimes attached to the event) |
|
1153 | - * |
|
1154 | - * @return EE_Base_Class|EE_Ticket|null |
|
1155 | - * @throws EE_Error |
|
1156 | - */ |
|
1157 | - public function get_ticket_with_latest_end_time() |
|
1158 | - { |
|
1159 | - $where['Datetime.EVT_ID'] = $this->ID(); |
|
1160 | - $query_params = array($where, 'order_by' => array('TKT_end_date' => 'DESC')); |
|
1161 | - return EE_Registry::instance()->load_model('Ticket')->get_one($query_params); |
|
1162 | - } |
|
1163 | - |
|
1164 | - |
|
1165 | - /** |
|
1166 | - * This returns the number of different ticket types currently on sale for this event. |
|
1167 | - * |
|
1168 | - * @return int |
|
1169 | - * @throws EE_Error |
|
1170 | - */ |
|
1171 | - public function countTicketsOnSale() |
|
1172 | - { |
|
1173 | - $where = array( |
|
1174 | - 'Datetime.EVT_ID' => $this->ID(), |
|
1175 | - 'TKT_start_date' => array('<', time()), |
|
1176 | - 'TKT_end_date' => array('>', time()), |
|
1177 | - ); |
|
1178 | - return EEM_Ticket::instance()->count(array($where)); |
|
1179 | - } |
|
1180 | - |
|
1181 | - |
|
1182 | - /** |
|
1183 | - * This returns whether there are any tickets on sale for this event. |
|
1184 | - * |
|
1185 | - * @return bool true = YES tickets on sale. |
|
1186 | - * @throws EE_Error |
|
1187 | - */ |
|
1188 | - public function tickets_on_sale() |
|
1189 | - { |
|
1190 | - return $this->countTicketsOnSale() > 0; |
|
1191 | - } |
|
1192 | - |
|
1193 | - |
|
1194 | - /** |
|
1195 | - * Gets the URL for viewing this event on the front-end. Overrides parent |
|
1196 | - * to check for an external URL first |
|
1197 | - * |
|
1198 | - * @return string |
|
1199 | - * @throws EE_Error |
|
1200 | - */ |
|
1201 | - public function get_permalink() |
|
1202 | - { |
|
1203 | - if ($this->external_url()) { |
|
1204 | - return $this->external_url(); |
|
1205 | - } |
|
1206 | - return parent::get_permalink(); |
|
1207 | - } |
|
1208 | - |
|
1209 | - |
|
1210 | - /** |
|
1211 | - * Gets the first term for 'espresso_event_categories' we can find |
|
1212 | - * |
|
1213 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1214 | - * @return EE_Base_Class|EE_Term|null |
|
1215 | - * @throws EE_Error |
|
1216 | - */ |
|
1217 | - public function first_event_category($query_params = array()) |
|
1218 | - { |
|
1219 | - $query_params[0]['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
1220 | - $query_params[0]['Term_Taxonomy.Event.EVT_ID'] = $this->ID(); |
|
1221 | - return EEM_Term::instance()->get_one($query_params); |
|
1222 | - } |
|
1223 | - |
|
1224 | - |
|
1225 | - /** |
|
1226 | - * Gets all terms for 'espresso_event_categories' we can find |
|
1227 | - * |
|
1228 | - * @param array $query_params |
|
1229 | - * @return EE_Base_Class[]|EE_Term[] |
|
1230 | - * @throws EE_Error |
|
1231 | - */ |
|
1232 | - public function get_all_event_categories($query_params = array()) |
|
1233 | - { |
|
1234 | - $query_params[0]['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
1235 | - $query_params[0]['Term_Taxonomy.Event.EVT_ID'] = $this->ID(); |
|
1236 | - return EEM_Term::instance()->get_all($query_params); |
|
1237 | - } |
|
1238 | - |
|
1239 | - |
|
1240 | - /** |
|
1241 | - * Adds a question group to this event |
|
1242 | - * |
|
1243 | - * @param EE_Question_Group|int $question_group_id_or_obj |
|
1244 | - * @param bool $for_primary if true, the question group will be added for the primary |
|
1245 | - * registrant, if false will be added for others. default: false |
|
1246 | - * @return EE_Base_Class|EE_Question_Group |
|
1247 | - * @throws EE_Error |
|
1248 | - */ |
|
1249 | - public function add_question_group($question_group_id_or_obj, $for_primary = false) |
|
1250 | - { |
|
1251 | - $extra = $for_primary |
|
1252 | - ? array('EQG_primary' => 1) |
|
1253 | - : array(); |
|
1254 | - return $this->_add_relation_to($question_group_id_or_obj, 'Question_Group', $extra); |
|
1255 | - } |
|
1256 | - |
|
1257 | - |
|
1258 | - /** |
|
1259 | - * Removes a question group from the event |
|
1260 | - * |
|
1261 | - * @param EE_Question_Group|int $question_group_id_or_obj |
|
1262 | - * @param bool $for_primary if true, the question group will be removed from the primary |
|
1263 | - * registrant, if false will be removed from others. default: false |
|
1264 | - * @return EE_Base_Class|EE_Question_Group |
|
1265 | - * @throws EE_Error |
|
1266 | - */ |
|
1267 | - public function remove_question_group($question_group_id_or_obj, $for_primary = false) |
|
1268 | - { |
|
1269 | - $where = $for_primary |
|
1270 | - ? array('EQG_primary' => 1) |
|
1271 | - : array(); |
|
1272 | - return $this->_remove_relation_to($question_group_id_or_obj, 'Question_Group', $where); |
|
1273 | - } |
|
1274 | - |
|
1275 | - |
|
1276 | - /** |
|
1277 | - * Gets all the question groups, ordering them by QSG_order ascending |
|
1278 | - * |
|
1279 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1280 | - * @return EE_Base_Class[]|EE_Question_Group[] |
|
1281 | - * @throws EE_Error |
|
1282 | - */ |
|
1283 | - public function question_groups($query_params = array()) |
|
1284 | - { |
|
1285 | - $query_params = ! empty($query_params) ? $query_params : array('order_by' => array('QSG_order' => 'ASC')); |
|
1286 | - return $this->get_many_related('Question_Group', $query_params); |
|
1287 | - } |
|
1288 | - |
|
1289 | - |
|
1290 | - /** |
|
1291 | - * Implementation for EEI_Has_Icon interface method. |
|
1292 | - * |
|
1293 | - * @see EEI_Visual_Representation for comments |
|
1294 | - * @return string |
|
1295 | - */ |
|
1296 | - public function get_icon() |
|
1297 | - { |
|
1298 | - return '<span class="dashicons dashicons-flag"></span>'; |
|
1299 | - } |
|
1300 | - |
|
1301 | - |
|
1302 | - /** |
|
1303 | - * Implementation for EEI_Admin_Links interface method. |
|
1304 | - * |
|
1305 | - * @see EEI_Admin_Links for comments |
|
1306 | - * @return string |
|
1307 | - * @throws EE_Error |
|
1308 | - */ |
|
1309 | - public function get_admin_details_link() |
|
1310 | - { |
|
1311 | - return $this->get_admin_edit_link(); |
|
1312 | - } |
|
1313 | - |
|
1314 | - |
|
1315 | - /** |
|
1316 | - * Implementation for EEI_Admin_Links interface method. |
|
1317 | - * |
|
1318 | - * @see EEI_Admin_Links for comments |
|
1319 | - * @return string |
|
1320 | - * @throws EE_Error |
|
1321 | - */ |
|
1322 | - public function get_admin_edit_link() |
|
1323 | - { |
|
1324 | - return EEH_URL::add_query_args_and_nonce( |
|
1325 | - array( |
|
1326 | - 'page' => 'espresso_events', |
|
1327 | - 'action' => 'edit', |
|
1328 | - 'post' => $this->ID(), |
|
1329 | - ), |
|
1330 | - admin_url('admin.php') |
|
1331 | - ); |
|
1332 | - } |
|
1333 | - |
|
1334 | - |
|
1335 | - /** |
|
1336 | - * Implementation for EEI_Admin_Links interface method. |
|
1337 | - * |
|
1338 | - * @see EEI_Admin_Links for comments |
|
1339 | - * @return string |
|
1340 | - */ |
|
1341 | - public function get_admin_settings_link() |
|
1342 | - { |
|
1343 | - return EEH_URL::add_query_args_and_nonce( |
|
1344 | - array( |
|
1345 | - 'page' => 'espresso_events', |
|
1346 | - 'action' => 'default_event_settings', |
|
1347 | - ), |
|
1348 | - admin_url('admin.php') |
|
1349 | - ); |
|
1350 | - } |
|
1351 | - |
|
1352 | - |
|
1353 | - /** |
|
1354 | - * Implementation for EEI_Admin_Links interface method. |
|
1355 | - * |
|
1356 | - * @see EEI_Admin_Links for comments |
|
1357 | - * @return string |
|
1358 | - */ |
|
1359 | - public function get_admin_overview_link() |
|
1360 | - { |
|
1361 | - return EEH_URL::add_query_args_and_nonce( |
|
1362 | - array( |
|
1363 | - 'page' => 'espresso_events', |
|
1364 | - 'action' => 'default', |
|
1365 | - ), |
|
1366 | - admin_url('admin.php') |
|
1367 | - ); |
|
1368 | - } |
|
16 | + /** |
|
17 | + * cached value for the the logical active status for the event |
|
18 | + * |
|
19 | + * @see get_active_status() |
|
20 | + * @var string |
|
21 | + */ |
|
22 | + protected $_active_status = ''; |
|
23 | + |
|
24 | + /** |
|
25 | + * This is just used for caching the Primary Datetime for the Event on initial retrieval |
|
26 | + * |
|
27 | + * @var EE_Datetime |
|
28 | + */ |
|
29 | + protected $_Primary_Datetime; |
|
30 | + |
|
31 | + /** |
|
32 | + * @var EventSpacesCalculator $available_spaces_calculator |
|
33 | + */ |
|
34 | + protected $available_spaces_calculator; |
|
35 | + |
|
36 | + |
|
37 | + /** |
|
38 | + * @param array $props_n_values incoming values |
|
39 | + * @param string $timezone incoming timezone (if not set the timezone set for the website will be |
|
40 | + * used.) |
|
41 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
42 | + * date_format and the second value is the time format |
|
43 | + * @return EE_Event |
|
44 | + * @throws EE_Error |
|
45 | + */ |
|
46 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) |
|
47 | + { |
|
48 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
49 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
50 | + } |
|
51 | + |
|
52 | + |
|
53 | + /** |
|
54 | + * @param array $props_n_values incoming values from the database |
|
55 | + * @param string $timezone incoming timezone as set by the model. If not set the timezone for |
|
56 | + * the website will be used. |
|
57 | + * @return EE_Event |
|
58 | + * @throws EE_Error |
|
59 | + */ |
|
60 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) |
|
61 | + { |
|
62 | + return new self($props_n_values, true, $timezone); |
|
63 | + } |
|
64 | + |
|
65 | + |
|
66 | + /** |
|
67 | + * @return EventSpacesCalculator |
|
68 | + * @throws \EE_Error |
|
69 | + */ |
|
70 | + public function getAvailableSpacesCalculator() |
|
71 | + { |
|
72 | + if (! $this->available_spaces_calculator instanceof EventSpacesCalculator) { |
|
73 | + $this->available_spaces_calculator = new EventSpacesCalculator($this); |
|
74 | + } |
|
75 | + return $this->available_spaces_calculator; |
|
76 | + } |
|
77 | + |
|
78 | + |
|
79 | + /** |
|
80 | + * Overrides parent set() method so that all calls to set( 'status', $status ) can be routed to internal methods |
|
81 | + * |
|
82 | + * @param string $field_name |
|
83 | + * @param mixed $field_value |
|
84 | + * @param bool $use_default |
|
85 | + * @throws EE_Error |
|
86 | + */ |
|
87 | + public function set($field_name, $field_value, $use_default = false) |
|
88 | + { |
|
89 | + switch ($field_name) { |
|
90 | + case 'status': |
|
91 | + $this->set_status($field_value, $use_default); |
|
92 | + break; |
|
93 | + default: |
|
94 | + parent::set($field_name, $field_value, $use_default); |
|
95 | + } |
|
96 | + } |
|
97 | + |
|
98 | + |
|
99 | + /** |
|
100 | + * set_status |
|
101 | + * Checks if event status is being changed to SOLD OUT |
|
102 | + * and updates event meta data with previous event status |
|
103 | + * so that we can revert things if/when the event is no longer sold out |
|
104 | + * |
|
105 | + * @access public |
|
106 | + * @param string $new_status |
|
107 | + * @param bool $use_default |
|
108 | + * @return void |
|
109 | + * @throws EE_Error |
|
110 | + */ |
|
111 | + public function set_status($new_status = null, $use_default = false) |
|
112 | + { |
|
113 | + // if nothing is set, and we aren't explicitly wanting to reset the status, then just leave |
|
114 | + if (empty($new_status) && ! $use_default) { |
|
115 | + return; |
|
116 | + } |
|
117 | + // get current Event status |
|
118 | + $old_status = $this->status(); |
|
119 | + // if status has changed |
|
120 | + if ($old_status !== $new_status) { |
|
121 | + // TO sold_out |
|
122 | + if ($new_status === EEM_Event::sold_out) { |
|
123 | + // save the previous event status so that we can revert if the event is no longer sold out |
|
124 | + $this->add_post_meta('_previous_event_status', $old_status); |
|
125 | + do_action('AHEE__EE_Event__set_status__to_sold_out', $this, $old_status, $new_status); |
|
126 | + // OR FROM sold_out |
|
127 | + } elseif ($old_status === EEM_Event::sold_out) { |
|
128 | + $this->delete_post_meta('_previous_event_status'); |
|
129 | + do_action('AHEE__EE_Event__set_status__from_sold_out', $this, $old_status, $new_status); |
|
130 | + } |
|
131 | + // clear out the active status so that it gets reset the next time it is requested |
|
132 | + $this->_active_status = null; |
|
133 | + // update status |
|
134 | + parent::set('status', $new_status, $use_default); |
|
135 | + do_action('AHEE__EE_Event__set_status__after_update', $this); |
|
136 | + return; |
|
137 | + } |
|
138 | + // even though the old value matches the new value, it's still good to |
|
139 | + // allow the parent set method to have a say |
|
140 | + parent::set('status', $new_status, $use_default); |
|
141 | + } |
|
142 | + |
|
143 | + |
|
144 | + /** |
|
145 | + * Gets all the datetimes for this event |
|
146 | + * |
|
147 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
148 | + * @return EE_Base_Class[]|EE_Datetime[] |
|
149 | + * @throws EE_Error |
|
150 | + */ |
|
151 | + public function datetimes($query_params = array()) |
|
152 | + { |
|
153 | + return $this->get_many_related('Datetime', $query_params); |
|
154 | + } |
|
155 | + |
|
156 | + |
|
157 | + /** |
|
158 | + * Gets all the datetimes for this event, ordered by DTT_EVT_start in ascending order |
|
159 | + * |
|
160 | + * @return EE_Base_Class[]|EE_Datetime[] |
|
161 | + * @throws EE_Error |
|
162 | + */ |
|
163 | + public function datetimes_in_chronological_order() |
|
164 | + { |
|
165 | + return $this->get_many_related('Datetime', array('order_by' => array('DTT_EVT_start' => 'ASC'))); |
|
166 | + } |
|
167 | + |
|
168 | + |
|
169 | + /** |
|
170 | + * Gets all the datetimes for this event, ordered by the DTT_order on the datetime. |
|
171 | + * @darren, we should probably UNSET timezone on the EEM_Datetime model |
|
172 | + * after running our query, so that this timezone isn't set for EVERY query |
|
173 | + * on EEM_Datetime for the rest of the request, no? |
|
174 | + * |
|
175 | + * @param boolean $show_expired whether or not to include expired events |
|
176 | + * @param boolean $show_deleted whether or not to include deleted events |
|
177 | + * @param null $limit |
|
178 | + * @return EE_Datetime[] |
|
179 | + * @throws EE_Error |
|
180 | + */ |
|
181 | + public function datetimes_ordered($show_expired = true, $show_deleted = false, $limit = null) |
|
182 | + { |
|
183 | + return EEM_Datetime::instance($this->_timezone)->get_datetimes_for_event_ordered_by_DTT_order( |
|
184 | + $this->ID(), |
|
185 | + $show_expired, |
|
186 | + $show_deleted, |
|
187 | + $limit |
|
188 | + ); |
|
189 | + } |
|
190 | + |
|
191 | + |
|
192 | + /** |
|
193 | + * Returns one related datetime. Mostly only used by some legacy code. |
|
194 | + * |
|
195 | + * @return EE_Base_Class|EE_Datetime |
|
196 | + * @throws EE_Error |
|
197 | + */ |
|
198 | + public function first_datetime() |
|
199 | + { |
|
200 | + return $this->get_first_related('Datetime'); |
|
201 | + } |
|
202 | + |
|
203 | + |
|
204 | + /** |
|
205 | + * Returns the 'primary' datetime for the event |
|
206 | + * |
|
207 | + * @param bool $try_to_exclude_expired |
|
208 | + * @param bool $try_to_exclude_deleted |
|
209 | + * @return EE_Datetime |
|
210 | + * @throws EE_Error |
|
211 | + */ |
|
212 | + public function primary_datetime($try_to_exclude_expired = true, $try_to_exclude_deleted = true) |
|
213 | + { |
|
214 | + if (! empty($this->_Primary_Datetime)) { |
|
215 | + return $this->_Primary_Datetime; |
|
216 | + } |
|
217 | + $this->_Primary_Datetime = EEM_Datetime::instance($this->_timezone)->get_primary_datetime_for_event( |
|
218 | + $this->ID(), |
|
219 | + $try_to_exclude_expired, |
|
220 | + $try_to_exclude_deleted |
|
221 | + ); |
|
222 | + return $this->_Primary_Datetime; |
|
223 | + } |
|
224 | + |
|
225 | + |
|
226 | + /** |
|
227 | + * Gets all the tickets available for purchase of this event |
|
228 | + * |
|
229 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
230 | + * @return EE_Base_Class[]|EE_Ticket[] |
|
231 | + * @throws EE_Error |
|
232 | + */ |
|
233 | + public function tickets($query_params = array()) |
|
234 | + { |
|
235 | + // first get all datetimes |
|
236 | + $datetimes = $this->datetimes_ordered(); |
|
237 | + if (! $datetimes) { |
|
238 | + return array(); |
|
239 | + } |
|
240 | + $datetime_ids = array(); |
|
241 | + foreach ($datetimes as $datetime) { |
|
242 | + $datetime_ids[] = $datetime->ID(); |
|
243 | + } |
|
244 | + $where_params = array('Datetime.DTT_ID' => array('IN', $datetime_ids)); |
|
245 | + // if incoming $query_params has where conditions let's merge but not override existing. |
|
246 | + if (is_array($query_params) && isset($query_params[0])) { |
|
247 | + $where_params = array_merge($query_params[0], $where_params); |
|
248 | + unset($query_params[0]); |
|
249 | + } |
|
250 | + // now add $where_params to $query_params |
|
251 | + $query_params[0] = $where_params; |
|
252 | + return EEM_Ticket::instance()->get_all($query_params); |
|
253 | + } |
|
254 | + |
|
255 | + |
|
256 | + /** |
|
257 | + * get all unexpired untrashed tickets |
|
258 | + * |
|
259 | + * @return EE_Ticket[] |
|
260 | + * @throws EE_Error |
|
261 | + */ |
|
262 | + public function active_tickets() |
|
263 | + { |
|
264 | + return $this->tickets( |
|
265 | + array( |
|
266 | + array( |
|
267 | + 'TKT_end_date' => array('>=', EEM_Ticket::instance()->current_time_for_query('TKT_end_date')), |
|
268 | + 'TKT_deleted' => false, |
|
269 | + ), |
|
270 | + ) |
|
271 | + ); |
|
272 | + } |
|
273 | + |
|
274 | + |
|
275 | + /** |
|
276 | + * @return bool |
|
277 | + * @throws EE_Error |
|
278 | + */ |
|
279 | + public function additional_limit() |
|
280 | + { |
|
281 | + return $this->get('EVT_additional_limit'); |
|
282 | + } |
|
283 | + |
|
284 | + |
|
285 | + /** |
|
286 | + * @return bool |
|
287 | + * @throws EE_Error |
|
288 | + */ |
|
289 | + public function allow_overflow() |
|
290 | + { |
|
291 | + return $this->get('EVT_allow_overflow'); |
|
292 | + } |
|
293 | + |
|
294 | + |
|
295 | + /** |
|
296 | + * @return bool |
|
297 | + * @throws EE_Error |
|
298 | + */ |
|
299 | + public function created() |
|
300 | + { |
|
301 | + return $this->get('EVT_created'); |
|
302 | + } |
|
303 | + |
|
304 | + |
|
305 | + /** |
|
306 | + * @return bool |
|
307 | + * @throws EE_Error |
|
308 | + */ |
|
309 | + public function description() |
|
310 | + { |
|
311 | + return $this->get('EVT_desc'); |
|
312 | + } |
|
313 | + |
|
314 | + |
|
315 | + /** |
|
316 | + * Runs do_shortcode and wpautop on the description |
|
317 | + * |
|
318 | + * @return string of html |
|
319 | + * @throws EE_Error |
|
320 | + */ |
|
321 | + public function description_filtered() |
|
322 | + { |
|
323 | + return $this->get_pretty('EVT_desc'); |
|
324 | + } |
|
325 | + |
|
326 | + |
|
327 | + /** |
|
328 | + * @return bool |
|
329 | + * @throws EE_Error |
|
330 | + */ |
|
331 | + public function display_description() |
|
332 | + { |
|
333 | + return $this->get('EVT_display_desc'); |
|
334 | + } |
|
335 | + |
|
336 | + |
|
337 | + /** |
|
338 | + * @return bool |
|
339 | + * @throws EE_Error |
|
340 | + */ |
|
341 | + public function display_ticket_selector() |
|
342 | + { |
|
343 | + return (bool) $this->get('EVT_display_ticket_selector'); |
|
344 | + } |
|
345 | + |
|
346 | + |
|
347 | + /** |
|
348 | + * @return bool |
|
349 | + * @throws EE_Error |
|
350 | + */ |
|
351 | + public function external_url() |
|
352 | + { |
|
353 | + return $this->get('EVT_external_URL'); |
|
354 | + } |
|
355 | + |
|
356 | + |
|
357 | + /** |
|
358 | + * @return bool |
|
359 | + * @throws EE_Error |
|
360 | + */ |
|
361 | + public function member_only() |
|
362 | + { |
|
363 | + return $this->get('EVT_member_only'); |
|
364 | + } |
|
365 | + |
|
366 | + |
|
367 | + /** |
|
368 | + * @return bool |
|
369 | + * @throws EE_Error |
|
370 | + */ |
|
371 | + public function phone() |
|
372 | + { |
|
373 | + return $this->get('EVT_phone'); |
|
374 | + } |
|
375 | + |
|
376 | + |
|
377 | + /** |
|
378 | + * @return bool |
|
379 | + * @throws EE_Error |
|
380 | + */ |
|
381 | + public function modified() |
|
382 | + { |
|
383 | + return $this->get('EVT_modified'); |
|
384 | + } |
|
385 | + |
|
386 | + |
|
387 | + /** |
|
388 | + * @return bool |
|
389 | + * @throws EE_Error |
|
390 | + */ |
|
391 | + public function name() |
|
392 | + { |
|
393 | + return $this->get('EVT_name'); |
|
394 | + } |
|
395 | + |
|
396 | + |
|
397 | + /** |
|
398 | + * @return bool |
|
399 | + * @throws EE_Error |
|
400 | + */ |
|
401 | + public function order() |
|
402 | + { |
|
403 | + return $this->get('EVT_order'); |
|
404 | + } |
|
405 | + |
|
406 | + |
|
407 | + /** |
|
408 | + * @return bool|string |
|
409 | + * @throws EE_Error |
|
410 | + */ |
|
411 | + public function default_registration_status() |
|
412 | + { |
|
413 | + $event_default_registration_status = $this->get('EVT_default_registration_status'); |
|
414 | + return ! empty($event_default_registration_status) |
|
415 | + ? $event_default_registration_status |
|
416 | + : EE_Registry::instance()->CFG->registration->default_STS_ID; |
|
417 | + } |
|
418 | + |
|
419 | + |
|
420 | + /** |
|
421 | + * @param int $num_words |
|
422 | + * @param null $more |
|
423 | + * @param bool $not_full_desc |
|
424 | + * @return bool|string |
|
425 | + * @throws EE_Error |
|
426 | + */ |
|
427 | + public function short_description($num_words = 55, $more = null, $not_full_desc = false) |
|
428 | + { |
|
429 | + $short_desc = $this->get('EVT_short_desc'); |
|
430 | + if (! empty($short_desc) || $not_full_desc) { |
|
431 | + return $short_desc; |
|
432 | + } |
|
433 | + $full_desc = $this->get('EVT_desc'); |
|
434 | + return wp_trim_words($full_desc, $num_words, $more); |
|
435 | + } |
|
436 | + |
|
437 | + |
|
438 | + /** |
|
439 | + * @return bool |
|
440 | + * @throws EE_Error |
|
441 | + */ |
|
442 | + public function slug() |
|
443 | + { |
|
444 | + return $this->get('EVT_slug'); |
|
445 | + } |
|
446 | + |
|
447 | + |
|
448 | + /** |
|
449 | + * @return bool |
|
450 | + * @throws EE_Error |
|
451 | + */ |
|
452 | + public function timezone_string() |
|
453 | + { |
|
454 | + return $this->get('EVT_timezone_string'); |
|
455 | + } |
|
456 | + |
|
457 | + |
|
458 | + /** |
|
459 | + * @return bool |
|
460 | + * @throws EE_Error |
|
461 | + */ |
|
462 | + public function visible_on() |
|
463 | + { |
|
464 | + return $this->get('EVT_visible_on'); |
|
465 | + } |
|
466 | + |
|
467 | + |
|
468 | + /** |
|
469 | + * @return int |
|
470 | + * @throws EE_Error |
|
471 | + */ |
|
472 | + public function wp_user() |
|
473 | + { |
|
474 | + return $this->get('EVT_wp_user'); |
|
475 | + } |
|
476 | + |
|
477 | + |
|
478 | + /** |
|
479 | + * @return bool |
|
480 | + * @throws EE_Error |
|
481 | + */ |
|
482 | + public function donations() |
|
483 | + { |
|
484 | + return $this->get('EVT_donations'); |
|
485 | + } |
|
486 | + |
|
487 | + |
|
488 | + /** |
|
489 | + * @param $limit |
|
490 | + * @throws EE_Error |
|
491 | + */ |
|
492 | + public function set_additional_limit($limit) |
|
493 | + { |
|
494 | + $this->set('EVT_additional_limit', $limit); |
|
495 | + } |
|
496 | + |
|
497 | + |
|
498 | + /** |
|
499 | + * @param $created |
|
500 | + * @throws EE_Error |
|
501 | + */ |
|
502 | + public function set_created($created) |
|
503 | + { |
|
504 | + $this->set('EVT_created', $created); |
|
505 | + } |
|
506 | + |
|
507 | + |
|
508 | + /** |
|
509 | + * @param $desc |
|
510 | + * @throws EE_Error |
|
511 | + */ |
|
512 | + public function set_description($desc) |
|
513 | + { |
|
514 | + $this->set('EVT_desc', $desc); |
|
515 | + } |
|
516 | + |
|
517 | + |
|
518 | + /** |
|
519 | + * @param $display_desc |
|
520 | + * @throws EE_Error |
|
521 | + */ |
|
522 | + public function set_display_description($display_desc) |
|
523 | + { |
|
524 | + $this->set('EVT_display_desc', $display_desc); |
|
525 | + } |
|
526 | + |
|
527 | + |
|
528 | + /** |
|
529 | + * @param $display_ticket_selector |
|
530 | + * @throws EE_Error |
|
531 | + */ |
|
532 | + public function set_display_ticket_selector($display_ticket_selector) |
|
533 | + { |
|
534 | + $this->set('EVT_display_ticket_selector', $display_ticket_selector); |
|
535 | + } |
|
536 | + |
|
537 | + |
|
538 | + /** |
|
539 | + * @param $external_url |
|
540 | + * @throws EE_Error |
|
541 | + */ |
|
542 | + public function set_external_url($external_url) |
|
543 | + { |
|
544 | + $this->set('EVT_external_URL', $external_url); |
|
545 | + } |
|
546 | + |
|
547 | + |
|
548 | + /** |
|
549 | + * @param $member_only |
|
550 | + * @throws EE_Error |
|
551 | + */ |
|
552 | + public function set_member_only($member_only) |
|
553 | + { |
|
554 | + $this->set('EVT_member_only', $member_only); |
|
555 | + } |
|
556 | + |
|
557 | + |
|
558 | + /** |
|
559 | + * @param $event_phone |
|
560 | + * @throws EE_Error |
|
561 | + */ |
|
562 | + public function set_event_phone($event_phone) |
|
563 | + { |
|
564 | + $this->set('EVT_phone', $event_phone); |
|
565 | + } |
|
566 | + |
|
567 | + |
|
568 | + /** |
|
569 | + * @param $modified |
|
570 | + * @throws EE_Error |
|
571 | + */ |
|
572 | + public function set_modified($modified) |
|
573 | + { |
|
574 | + $this->set('EVT_modified', $modified); |
|
575 | + } |
|
576 | + |
|
577 | + |
|
578 | + /** |
|
579 | + * @param $name |
|
580 | + * @throws EE_Error |
|
581 | + */ |
|
582 | + public function set_name($name) |
|
583 | + { |
|
584 | + $this->set('EVT_name', $name); |
|
585 | + } |
|
586 | + |
|
587 | + |
|
588 | + /** |
|
589 | + * @param $order |
|
590 | + * @throws EE_Error |
|
591 | + */ |
|
592 | + public function set_order($order) |
|
593 | + { |
|
594 | + $this->set('EVT_order', $order); |
|
595 | + } |
|
596 | + |
|
597 | + |
|
598 | + /** |
|
599 | + * @param $short_desc |
|
600 | + * @throws EE_Error |
|
601 | + */ |
|
602 | + public function set_short_description($short_desc) |
|
603 | + { |
|
604 | + $this->set('EVT_short_desc', $short_desc); |
|
605 | + } |
|
606 | + |
|
607 | + |
|
608 | + /** |
|
609 | + * @param $slug |
|
610 | + * @throws EE_Error |
|
611 | + */ |
|
612 | + public function set_slug($slug) |
|
613 | + { |
|
614 | + $this->set('EVT_slug', $slug); |
|
615 | + } |
|
616 | + |
|
617 | + |
|
618 | + /** |
|
619 | + * @param $timezone_string |
|
620 | + * @throws EE_Error |
|
621 | + */ |
|
622 | + public function set_timezone_string($timezone_string) |
|
623 | + { |
|
624 | + $this->set('EVT_timezone_string', $timezone_string); |
|
625 | + } |
|
626 | + |
|
627 | + |
|
628 | + /** |
|
629 | + * @param $visible_on |
|
630 | + * @throws EE_Error |
|
631 | + */ |
|
632 | + public function set_visible_on($visible_on) |
|
633 | + { |
|
634 | + $this->set('EVT_visible_on', $visible_on); |
|
635 | + } |
|
636 | + |
|
637 | + |
|
638 | + /** |
|
639 | + * @param $wp_user |
|
640 | + * @throws EE_Error |
|
641 | + */ |
|
642 | + public function set_wp_user($wp_user) |
|
643 | + { |
|
644 | + $this->set('EVT_wp_user', $wp_user); |
|
645 | + } |
|
646 | + |
|
647 | + |
|
648 | + /** |
|
649 | + * @param $default_registration_status |
|
650 | + * @throws EE_Error |
|
651 | + */ |
|
652 | + public function set_default_registration_status($default_registration_status) |
|
653 | + { |
|
654 | + $this->set('EVT_default_registration_status', $default_registration_status); |
|
655 | + } |
|
656 | + |
|
657 | + |
|
658 | + /** |
|
659 | + * @param $donations |
|
660 | + * @throws EE_Error |
|
661 | + */ |
|
662 | + public function set_donations($donations) |
|
663 | + { |
|
664 | + $this->set('EVT_donations', $donations); |
|
665 | + } |
|
666 | + |
|
667 | + |
|
668 | + /** |
|
669 | + * Adds a venue to this event |
|
670 | + * |
|
671 | + * @param EE_Venue /int $venue_id_or_obj |
|
672 | + * @return EE_Base_Class|EE_Venue |
|
673 | + * @throws EE_Error |
|
674 | + */ |
|
675 | + public function add_venue($venue_id_or_obj) |
|
676 | + { |
|
677 | + return $this->_add_relation_to($venue_id_or_obj, 'Venue'); |
|
678 | + } |
|
679 | + |
|
680 | + |
|
681 | + /** |
|
682 | + * Removes a venue from the event |
|
683 | + * |
|
684 | + * @param EE_Venue /int $venue_id_or_obj |
|
685 | + * @return EE_Base_Class|EE_Venue |
|
686 | + * @throws EE_Error |
|
687 | + */ |
|
688 | + public function remove_venue($venue_id_or_obj) |
|
689 | + { |
|
690 | + return $this->_remove_relation_to($venue_id_or_obj, 'Venue'); |
|
691 | + } |
|
692 | + |
|
693 | + |
|
694 | + /** |
|
695 | + * Gets all the venues related ot the event. May provide additional $query_params if desired |
|
696 | + * |
|
697 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
698 | + * @return EE_Base_Class[]|EE_Venue[] |
|
699 | + * @throws EE_Error |
|
700 | + */ |
|
701 | + public function venues($query_params = array()) |
|
702 | + { |
|
703 | + return $this->get_many_related('Venue', $query_params); |
|
704 | + } |
|
705 | + |
|
706 | + |
|
707 | + /** |
|
708 | + * check if event id is present and if event is published |
|
709 | + * |
|
710 | + * @access public |
|
711 | + * @return boolean true yes, false no |
|
712 | + * @throws EE_Error |
|
713 | + */ |
|
714 | + private function _has_ID_and_is_published() |
|
715 | + { |
|
716 | + // first check if event id is present and not NULL, |
|
717 | + // then check if this event is published (or any of the equivalent "published" statuses) |
|
718 | + return |
|
719 | + $this->ID() && $this->ID() !== null |
|
720 | + && ( |
|
721 | + $this->status() === 'publish' |
|
722 | + || $this->status() === EEM_Event::sold_out |
|
723 | + || $this->status() === EEM_Event::postponed |
|
724 | + || $this->status() === EEM_Event::cancelled |
|
725 | + ); |
|
726 | + } |
|
727 | + |
|
728 | + |
|
729 | + /** |
|
730 | + * This simply compares the internal dates with NOW and determines if the event is upcoming or not. |
|
731 | + * |
|
732 | + * @access public |
|
733 | + * @return boolean true yes, false no |
|
734 | + * @throws EE_Error |
|
735 | + */ |
|
736 | + public function is_upcoming() |
|
737 | + { |
|
738 | + // check if event id is present and if this event is published |
|
739 | + if ($this->is_inactive()) { |
|
740 | + return false; |
|
741 | + } |
|
742 | + // set initial value |
|
743 | + $upcoming = false; |
|
744 | + // next let's get all datetimes and loop through them |
|
745 | + $datetimes = $this->datetimes_in_chronological_order(); |
|
746 | + foreach ($datetimes as $datetime) { |
|
747 | + if ($datetime instanceof EE_Datetime) { |
|
748 | + // if this dtt is expired then we continue cause one of the other datetimes might be upcoming. |
|
749 | + if ($datetime->is_expired()) { |
|
750 | + continue; |
|
751 | + } |
|
752 | + // if this dtt is active then we return false. |
|
753 | + if ($datetime->is_active()) { |
|
754 | + return false; |
|
755 | + } |
|
756 | + // otherwise let's check upcoming status |
|
757 | + $upcoming = $datetime->is_upcoming(); |
|
758 | + } |
|
759 | + } |
|
760 | + return $upcoming; |
|
761 | + } |
|
762 | + |
|
763 | + |
|
764 | + /** |
|
765 | + * @return bool |
|
766 | + * @throws EE_Error |
|
767 | + */ |
|
768 | + public function is_active() |
|
769 | + { |
|
770 | + // check if event id is present and if this event is published |
|
771 | + if ($this->is_inactive()) { |
|
772 | + return false; |
|
773 | + } |
|
774 | + // set initial value |
|
775 | + $active = false; |
|
776 | + // next let's get all datetimes and loop through them |
|
777 | + $datetimes = $this->datetimes_in_chronological_order(); |
|
778 | + foreach ($datetimes as $datetime) { |
|
779 | + if ($datetime instanceof EE_Datetime) { |
|
780 | + // if this dtt is expired then we continue cause one of the other datetimes might be active. |
|
781 | + if ($datetime->is_expired()) { |
|
782 | + continue; |
|
783 | + } |
|
784 | + // if this dtt is upcoming then we return false. |
|
785 | + if ($datetime->is_upcoming()) { |
|
786 | + return false; |
|
787 | + } |
|
788 | + // otherwise let's check active status |
|
789 | + $active = $datetime->is_active(); |
|
790 | + } |
|
791 | + } |
|
792 | + return $active; |
|
793 | + } |
|
794 | + |
|
795 | + |
|
796 | + /** |
|
797 | + * @return bool |
|
798 | + * @throws EE_Error |
|
799 | + */ |
|
800 | + public function is_expired() |
|
801 | + { |
|
802 | + // check if event id is present and if this event is published |
|
803 | + if ($this->is_inactive()) { |
|
804 | + return false; |
|
805 | + } |
|
806 | + // set initial value |
|
807 | + $expired = false; |
|
808 | + // first let's get all datetimes and loop through them |
|
809 | + $datetimes = $this->datetimes_in_chronological_order(); |
|
810 | + foreach ($datetimes as $datetime) { |
|
811 | + if ($datetime instanceof EE_Datetime) { |
|
812 | + // if this dtt is upcoming or active then we return false. |
|
813 | + if ($datetime->is_upcoming() || $datetime->is_active()) { |
|
814 | + return false; |
|
815 | + } |
|
816 | + // otherwise let's check active status |
|
817 | + $expired = $datetime->is_expired(); |
|
818 | + } |
|
819 | + } |
|
820 | + return $expired; |
|
821 | + } |
|
822 | + |
|
823 | + |
|
824 | + /** |
|
825 | + * @return bool |
|
826 | + * @throws EE_Error |
|
827 | + */ |
|
828 | + public function is_inactive() |
|
829 | + { |
|
830 | + // check if event id is present and if this event is published |
|
831 | + if ($this->_has_ID_and_is_published()) { |
|
832 | + return false; |
|
833 | + } |
|
834 | + return true; |
|
835 | + } |
|
836 | + |
|
837 | + |
|
838 | + /** |
|
839 | + * calculate spaces remaining based on "saleable" tickets |
|
840 | + * |
|
841 | + * @param array $tickets |
|
842 | + * @param bool $filtered |
|
843 | + * @return int|float |
|
844 | + * @throws EE_Error |
|
845 | + * @throws DomainException |
|
846 | + * @throws UnexpectedEntityException |
|
847 | + */ |
|
848 | + public function spaces_remaining($tickets = array(), $filtered = true) |
|
849 | + { |
|
850 | + $this->getAvailableSpacesCalculator()->setActiveTickets($tickets); |
|
851 | + $spaces_remaining = $this->getAvailableSpacesCalculator()->spacesRemaining(); |
|
852 | + return $filtered |
|
853 | + ? apply_filters( |
|
854 | + 'FHEE_EE_Event__spaces_remaining', |
|
855 | + $spaces_remaining, |
|
856 | + $this, |
|
857 | + $tickets |
|
858 | + ) |
|
859 | + : $spaces_remaining; |
|
860 | + } |
|
861 | + |
|
862 | + |
|
863 | + /** |
|
864 | + * perform_sold_out_status_check |
|
865 | + * checks all of this events's datetime reg_limit - sold values to determine if ANY datetimes have spaces |
|
866 | + * available... if NOT, then the event status will get toggled to 'sold_out' |
|
867 | + * |
|
868 | + * @return bool return the ACTUAL sold out state. |
|
869 | + * @throws EE_Error |
|
870 | + * @throws DomainException |
|
871 | + * @throws UnexpectedEntityException |
|
872 | + */ |
|
873 | + public function perform_sold_out_status_check() |
|
874 | + { |
|
875 | + // get all unexpired untrashed tickets |
|
876 | + $tickets = $this->tickets( |
|
877 | + array( |
|
878 | + array('TKT_deleted' => false), |
|
879 | + 'order_by' => array('TKT_qty' => 'ASC'), |
|
880 | + ) |
|
881 | + ); |
|
882 | + $all_expired = true; |
|
883 | + foreach ($tickets as $ticket) { |
|
884 | + if (! $ticket->is_expired()) { |
|
885 | + $all_expired = false; |
|
886 | + break; |
|
887 | + } |
|
888 | + } |
|
889 | + // if all the tickets are just expired, then don't update the event status to sold out |
|
890 | + if ($all_expired) { |
|
891 | + return true; |
|
892 | + } |
|
893 | + $spaces_remaining = $this->spaces_remaining($tickets); |
|
894 | + if ($spaces_remaining < 1) { |
|
895 | + if ($this->status() !== EEM_Event::post_status_private) { |
|
896 | + $this->set_status(EEM_Event::sold_out); |
|
897 | + $this->save(); |
|
898 | + } |
|
899 | + $sold_out = true; |
|
900 | + } else { |
|
901 | + $sold_out = false; |
|
902 | + // was event previously marked as sold out ? |
|
903 | + if ($this->status() === EEM_Event::sold_out) { |
|
904 | + // revert status to previous value, if it was set |
|
905 | + $previous_event_status = $this->get_post_meta('_previous_event_status', true); |
|
906 | + if ($previous_event_status) { |
|
907 | + $this->set_status($previous_event_status); |
|
908 | + $this->save(); |
|
909 | + } |
|
910 | + } |
|
911 | + } |
|
912 | + do_action('AHEE__EE_Event__perform_sold_out_status_check__end', $this, $sold_out, $spaces_remaining, $tickets); |
|
913 | + return $sold_out; |
|
914 | + } |
|
915 | + |
|
916 | + |
|
917 | + /** |
|
918 | + * This returns the total remaining spaces for sale on this event. |
|
919 | + * |
|
920 | + * @uses EE_Event::total_available_spaces() |
|
921 | + * @return float|int |
|
922 | + * @throws EE_Error |
|
923 | + * @throws DomainException |
|
924 | + * @throws UnexpectedEntityException |
|
925 | + */ |
|
926 | + public function spaces_remaining_for_sale() |
|
927 | + { |
|
928 | + return $this->total_available_spaces(true); |
|
929 | + } |
|
930 | + |
|
931 | + |
|
932 | + /** |
|
933 | + * This returns the total spaces available for an event |
|
934 | + * while considering all the qtys on the tickets and the reg limits |
|
935 | + * on the datetimes attached to this event. |
|
936 | + * |
|
937 | + * @param bool $consider_sold Whether to consider any tickets that have already sold in our calculation. |
|
938 | + * If this is false, then we return the most tickets that could ever be sold |
|
939 | + * for this event with the datetime and tickets setup on the event under optimal |
|
940 | + * selling conditions. Otherwise we return a live calculation of spaces available |
|
941 | + * based on tickets sold. Depending on setup and stage of sales, this |
|
942 | + * may appear to equal remaining tickets. However, the more tickets are |
|
943 | + * sold out, the more accurate the "live" total is. |
|
944 | + * @return float|int |
|
945 | + * @throws EE_Error |
|
946 | + * @throws DomainException |
|
947 | + * @throws UnexpectedEntityException |
|
948 | + */ |
|
949 | + public function total_available_spaces($consider_sold = false) |
|
950 | + { |
|
951 | + $spaces_available = $consider_sold |
|
952 | + ? $this->getAvailableSpacesCalculator()->spacesRemaining() |
|
953 | + : $this->getAvailableSpacesCalculator()->totalSpacesAvailable(); |
|
954 | + return apply_filters( |
|
955 | + 'FHEE_EE_Event__total_available_spaces__spaces_available', |
|
956 | + $spaces_available, |
|
957 | + $this, |
|
958 | + $this->getAvailableSpacesCalculator()->getDatetimes(), |
|
959 | + $this->getAvailableSpacesCalculator()->getActiveTickets() |
|
960 | + ); |
|
961 | + } |
|
962 | + |
|
963 | + |
|
964 | + /** |
|
965 | + * Checks if the event is set to sold out |
|
966 | + * |
|
967 | + * @param bool $actual whether or not to perform calculations to not only figure the |
|
968 | + * actual status but also to flip the status if necessary to sold |
|
969 | + * out If false, we just check the existing status of the event |
|
970 | + * @return boolean |
|
971 | + * @throws EE_Error |
|
972 | + */ |
|
973 | + public function is_sold_out($actual = false) |
|
974 | + { |
|
975 | + if (! $actual) { |
|
976 | + return $this->status() === EEM_Event::sold_out; |
|
977 | + } |
|
978 | + return $this->perform_sold_out_status_check(); |
|
979 | + } |
|
980 | + |
|
981 | + |
|
982 | + /** |
|
983 | + * Checks if the event is marked as postponed |
|
984 | + * |
|
985 | + * @return boolean |
|
986 | + */ |
|
987 | + public function is_postponed() |
|
988 | + { |
|
989 | + return $this->status() === EEM_Event::postponed; |
|
990 | + } |
|
991 | + |
|
992 | + |
|
993 | + /** |
|
994 | + * Checks if the event is marked as cancelled |
|
995 | + * |
|
996 | + * @return boolean |
|
997 | + */ |
|
998 | + public function is_cancelled() |
|
999 | + { |
|
1000 | + return $this->status() === EEM_Event::cancelled; |
|
1001 | + } |
|
1002 | + |
|
1003 | + |
|
1004 | + /** |
|
1005 | + * Get the logical active status in a hierarchical order for all the datetimes. Note |
|
1006 | + * Basically, we order the datetimes by EVT_start_date. Then first test on whether the event is published. If its |
|
1007 | + * NOT published then we test for whether its expired or not. IF it IS published then we test first on whether an |
|
1008 | + * event has any active dates. If no active dates then we check for any upcoming dates. If no upcoming dates then |
|
1009 | + * the event is considered expired. |
|
1010 | + * NOTE: this method does NOT calculate whether the datetimes are sold out when event is published. Sold Out is a |
|
1011 | + * status set on the EVENT when it is not published and thus is done |
|
1012 | + * |
|
1013 | + * @param bool $reset |
|
1014 | + * @return bool | string - based on EE_Datetime active constants or FALSE if error. |
|
1015 | + * @throws EE_Error |
|
1016 | + */ |
|
1017 | + public function get_active_status($reset = false) |
|
1018 | + { |
|
1019 | + // if the active status has already been set, then just use that value (unless we are resetting it) |
|
1020 | + if (! empty($this->_active_status) && ! $reset) { |
|
1021 | + return $this->_active_status; |
|
1022 | + } |
|
1023 | + // first check if event id is present on this object |
|
1024 | + if (! $this->ID()) { |
|
1025 | + return false; |
|
1026 | + } |
|
1027 | + $where_params_for_event = array(array('EVT_ID' => $this->ID())); |
|
1028 | + // if event is published: |
|
1029 | + if ($this->status() === EEM_Event::post_status_publish || $this->status() === EEM_Event::post_status_private) { |
|
1030 | + // active? |
|
1031 | + if (EEM_Datetime::instance()->get_datetime_count_for_status( |
|
1032 | + EE_Datetime::active, |
|
1033 | + $where_params_for_event |
|
1034 | + ) > 0) { |
|
1035 | + $this->_active_status = EE_Datetime::active; |
|
1036 | + } else { |
|
1037 | + // upcoming? |
|
1038 | + if (EEM_Datetime::instance()->get_datetime_count_for_status( |
|
1039 | + EE_Datetime::upcoming, |
|
1040 | + $where_params_for_event |
|
1041 | + ) > 0) { |
|
1042 | + $this->_active_status = EE_Datetime::upcoming; |
|
1043 | + } else { |
|
1044 | + // expired? |
|
1045 | + if (EEM_Datetime::instance()->get_datetime_count_for_status( |
|
1046 | + EE_Datetime::expired, |
|
1047 | + $where_params_for_event |
|
1048 | + ) > 0 |
|
1049 | + ) { |
|
1050 | + $this->_active_status = EE_Datetime::expired; |
|
1051 | + } else { |
|
1052 | + // it would be odd if things make it this far because it basically means there are no datetime's |
|
1053 | + // attached to the event. So in this case it will just be considered inactive. |
|
1054 | + $this->_active_status = EE_Datetime::inactive; |
|
1055 | + } |
|
1056 | + } |
|
1057 | + } |
|
1058 | + } else { |
|
1059 | + // the event is not published, so let's just set it's active status according to its' post status |
|
1060 | + switch ($this->status()) { |
|
1061 | + case EEM_Event::sold_out: |
|
1062 | + $this->_active_status = EE_Datetime::sold_out; |
|
1063 | + break; |
|
1064 | + case EEM_Event::cancelled: |
|
1065 | + $this->_active_status = EE_Datetime::cancelled; |
|
1066 | + break; |
|
1067 | + case EEM_Event::postponed: |
|
1068 | + $this->_active_status = EE_Datetime::postponed; |
|
1069 | + break; |
|
1070 | + default: |
|
1071 | + $this->_active_status = EE_Datetime::inactive; |
|
1072 | + } |
|
1073 | + } |
|
1074 | + return $this->_active_status; |
|
1075 | + } |
|
1076 | + |
|
1077 | + |
|
1078 | + /** |
|
1079 | + * pretty_active_status |
|
1080 | + * |
|
1081 | + * @access public |
|
1082 | + * @param boolean $echo whether to return (FALSE), or echo out the result (TRUE) |
|
1083 | + * @return mixed void|string |
|
1084 | + * @throws EE_Error |
|
1085 | + */ |
|
1086 | + public function pretty_active_status($echo = true) |
|
1087 | + { |
|
1088 | + $active_status = $this->get_active_status(); |
|
1089 | + $status = '<span class="ee-status event-active-status-' |
|
1090 | + . $active_status |
|
1091 | + . '">' |
|
1092 | + . EEH_Template::pretty_status($active_status, false, 'sentence') |
|
1093 | + . '</span>'; |
|
1094 | + if ($echo) { |
|
1095 | + echo $status; |
|
1096 | + return ''; |
|
1097 | + } |
|
1098 | + return $status; |
|
1099 | + } |
|
1100 | + |
|
1101 | + |
|
1102 | + /** |
|
1103 | + * @return bool|int |
|
1104 | + * @throws EE_Error |
|
1105 | + */ |
|
1106 | + public function get_number_of_tickets_sold() |
|
1107 | + { |
|
1108 | + $tkt_sold = 0; |
|
1109 | + if (! $this->ID()) { |
|
1110 | + return 0; |
|
1111 | + } |
|
1112 | + $datetimes = $this->datetimes(); |
|
1113 | + foreach ($datetimes as $datetime) { |
|
1114 | + if ($datetime instanceof EE_Datetime) { |
|
1115 | + $tkt_sold += $datetime->sold(); |
|
1116 | + } |
|
1117 | + } |
|
1118 | + return $tkt_sold; |
|
1119 | + } |
|
1120 | + |
|
1121 | + |
|
1122 | + /** |
|
1123 | + * This just returns a count of all the registrations for this event |
|
1124 | + * |
|
1125 | + * @access public |
|
1126 | + * @return int |
|
1127 | + * @throws EE_Error |
|
1128 | + */ |
|
1129 | + public function get_count_of_all_registrations() |
|
1130 | + { |
|
1131 | + return EEM_Event::instance()->count_related($this, 'Registration'); |
|
1132 | + } |
|
1133 | + |
|
1134 | + |
|
1135 | + /** |
|
1136 | + * This returns the ticket with the earliest start time that is |
|
1137 | + * available for this event (across all datetimes attached to the event) |
|
1138 | + * |
|
1139 | + * @return EE_Base_Class|EE_Ticket|null |
|
1140 | + * @throws EE_Error |
|
1141 | + */ |
|
1142 | + public function get_ticket_with_earliest_start_time() |
|
1143 | + { |
|
1144 | + $where['Datetime.EVT_ID'] = $this->ID(); |
|
1145 | + $query_params = array($where, 'order_by' => array('TKT_start_date' => 'ASC')); |
|
1146 | + return EE_Registry::instance()->load_model('Ticket')->get_one($query_params); |
|
1147 | + } |
|
1148 | + |
|
1149 | + |
|
1150 | + /** |
|
1151 | + * This returns the ticket with the latest end time that is available |
|
1152 | + * for this event (across all datetimes attached to the event) |
|
1153 | + * |
|
1154 | + * @return EE_Base_Class|EE_Ticket|null |
|
1155 | + * @throws EE_Error |
|
1156 | + */ |
|
1157 | + public function get_ticket_with_latest_end_time() |
|
1158 | + { |
|
1159 | + $where['Datetime.EVT_ID'] = $this->ID(); |
|
1160 | + $query_params = array($where, 'order_by' => array('TKT_end_date' => 'DESC')); |
|
1161 | + return EE_Registry::instance()->load_model('Ticket')->get_one($query_params); |
|
1162 | + } |
|
1163 | + |
|
1164 | + |
|
1165 | + /** |
|
1166 | + * This returns the number of different ticket types currently on sale for this event. |
|
1167 | + * |
|
1168 | + * @return int |
|
1169 | + * @throws EE_Error |
|
1170 | + */ |
|
1171 | + public function countTicketsOnSale() |
|
1172 | + { |
|
1173 | + $where = array( |
|
1174 | + 'Datetime.EVT_ID' => $this->ID(), |
|
1175 | + 'TKT_start_date' => array('<', time()), |
|
1176 | + 'TKT_end_date' => array('>', time()), |
|
1177 | + ); |
|
1178 | + return EEM_Ticket::instance()->count(array($where)); |
|
1179 | + } |
|
1180 | + |
|
1181 | + |
|
1182 | + /** |
|
1183 | + * This returns whether there are any tickets on sale for this event. |
|
1184 | + * |
|
1185 | + * @return bool true = YES tickets on sale. |
|
1186 | + * @throws EE_Error |
|
1187 | + */ |
|
1188 | + public function tickets_on_sale() |
|
1189 | + { |
|
1190 | + return $this->countTicketsOnSale() > 0; |
|
1191 | + } |
|
1192 | + |
|
1193 | + |
|
1194 | + /** |
|
1195 | + * Gets the URL for viewing this event on the front-end. Overrides parent |
|
1196 | + * to check for an external URL first |
|
1197 | + * |
|
1198 | + * @return string |
|
1199 | + * @throws EE_Error |
|
1200 | + */ |
|
1201 | + public function get_permalink() |
|
1202 | + { |
|
1203 | + if ($this->external_url()) { |
|
1204 | + return $this->external_url(); |
|
1205 | + } |
|
1206 | + return parent::get_permalink(); |
|
1207 | + } |
|
1208 | + |
|
1209 | + |
|
1210 | + /** |
|
1211 | + * Gets the first term for 'espresso_event_categories' we can find |
|
1212 | + * |
|
1213 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1214 | + * @return EE_Base_Class|EE_Term|null |
|
1215 | + * @throws EE_Error |
|
1216 | + */ |
|
1217 | + public function first_event_category($query_params = array()) |
|
1218 | + { |
|
1219 | + $query_params[0]['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
1220 | + $query_params[0]['Term_Taxonomy.Event.EVT_ID'] = $this->ID(); |
|
1221 | + return EEM_Term::instance()->get_one($query_params); |
|
1222 | + } |
|
1223 | + |
|
1224 | + |
|
1225 | + /** |
|
1226 | + * Gets all terms for 'espresso_event_categories' we can find |
|
1227 | + * |
|
1228 | + * @param array $query_params |
|
1229 | + * @return EE_Base_Class[]|EE_Term[] |
|
1230 | + * @throws EE_Error |
|
1231 | + */ |
|
1232 | + public function get_all_event_categories($query_params = array()) |
|
1233 | + { |
|
1234 | + $query_params[0]['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
1235 | + $query_params[0]['Term_Taxonomy.Event.EVT_ID'] = $this->ID(); |
|
1236 | + return EEM_Term::instance()->get_all($query_params); |
|
1237 | + } |
|
1238 | + |
|
1239 | + |
|
1240 | + /** |
|
1241 | + * Adds a question group to this event |
|
1242 | + * |
|
1243 | + * @param EE_Question_Group|int $question_group_id_or_obj |
|
1244 | + * @param bool $for_primary if true, the question group will be added for the primary |
|
1245 | + * registrant, if false will be added for others. default: false |
|
1246 | + * @return EE_Base_Class|EE_Question_Group |
|
1247 | + * @throws EE_Error |
|
1248 | + */ |
|
1249 | + public function add_question_group($question_group_id_or_obj, $for_primary = false) |
|
1250 | + { |
|
1251 | + $extra = $for_primary |
|
1252 | + ? array('EQG_primary' => 1) |
|
1253 | + : array(); |
|
1254 | + return $this->_add_relation_to($question_group_id_or_obj, 'Question_Group', $extra); |
|
1255 | + } |
|
1256 | + |
|
1257 | + |
|
1258 | + /** |
|
1259 | + * Removes a question group from the event |
|
1260 | + * |
|
1261 | + * @param EE_Question_Group|int $question_group_id_or_obj |
|
1262 | + * @param bool $for_primary if true, the question group will be removed from the primary |
|
1263 | + * registrant, if false will be removed from others. default: false |
|
1264 | + * @return EE_Base_Class|EE_Question_Group |
|
1265 | + * @throws EE_Error |
|
1266 | + */ |
|
1267 | + public function remove_question_group($question_group_id_or_obj, $for_primary = false) |
|
1268 | + { |
|
1269 | + $where = $for_primary |
|
1270 | + ? array('EQG_primary' => 1) |
|
1271 | + : array(); |
|
1272 | + return $this->_remove_relation_to($question_group_id_or_obj, 'Question_Group', $where); |
|
1273 | + } |
|
1274 | + |
|
1275 | + |
|
1276 | + /** |
|
1277 | + * Gets all the question groups, ordering them by QSG_order ascending |
|
1278 | + * |
|
1279 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
1280 | + * @return EE_Base_Class[]|EE_Question_Group[] |
|
1281 | + * @throws EE_Error |
|
1282 | + */ |
|
1283 | + public function question_groups($query_params = array()) |
|
1284 | + { |
|
1285 | + $query_params = ! empty($query_params) ? $query_params : array('order_by' => array('QSG_order' => 'ASC')); |
|
1286 | + return $this->get_many_related('Question_Group', $query_params); |
|
1287 | + } |
|
1288 | + |
|
1289 | + |
|
1290 | + /** |
|
1291 | + * Implementation for EEI_Has_Icon interface method. |
|
1292 | + * |
|
1293 | + * @see EEI_Visual_Representation for comments |
|
1294 | + * @return string |
|
1295 | + */ |
|
1296 | + public function get_icon() |
|
1297 | + { |
|
1298 | + return '<span class="dashicons dashicons-flag"></span>'; |
|
1299 | + } |
|
1300 | + |
|
1301 | + |
|
1302 | + /** |
|
1303 | + * Implementation for EEI_Admin_Links interface method. |
|
1304 | + * |
|
1305 | + * @see EEI_Admin_Links for comments |
|
1306 | + * @return string |
|
1307 | + * @throws EE_Error |
|
1308 | + */ |
|
1309 | + public function get_admin_details_link() |
|
1310 | + { |
|
1311 | + return $this->get_admin_edit_link(); |
|
1312 | + } |
|
1313 | + |
|
1314 | + |
|
1315 | + /** |
|
1316 | + * Implementation for EEI_Admin_Links interface method. |
|
1317 | + * |
|
1318 | + * @see EEI_Admin_Links for comments |
|
1319 | + * @return string |
|
1320 | + * @throws EE_Error |
|
1321 | + */ |
|
1322 | + public function get_admin_edit_link() |
|
1323 | + { |
|
1324 | + return EEH_URL::add_query_args_and_nonce( |
|
1325 | + array( |
|
1326 | + 'page' => 'espresso_events', |
|
1327 | + 'action' => 'edit', |
|
1328 | + 'post' => $this->ID(), |
|
1329 | + ), |
|
1330 | + admin_url('admin.php') |
|
1331 | + ); |
|
1332 | + } |
|
1333 | + |
|
1334 | + |
|
1335 | + /** |
|
1336 | + * Implementation for EEI_Admin_Links interface method. |
|
1337 | + * |
|
1338 | + * @see EEI_Admin_Links for comments |
|
1339 | + * @return string |
|
1340 | + */ |
|
1341 | + public function get_admin_settings_link() |
|
1342 | + { |
|
1343 | + return EEH_URL::add_query_args_and_nonce( |
|
1344 | + array( |
|
1345 | + 'page' => 'espresso_events', |
|
1346 | + 'action' => 'default_event_settings', |
|
1347 | + ), |
|
1348 | + admin_url('admin.php') |
|
1349 | + ); |
|
1350 | + } |
|
1351 | + |
|
1352 | + |
|
1353 | + /** |
|
1354 | + * Implementation for EEI_Admin_Links interface method. |
|
1355 | + * |
|
1356 | + * @see EEI_Admin_Links for comments |
|
1357 | + * @return string |
|
1358 | + */ |
|
1359 | + public function get_admin_overview_link() |
|
1360 | + { |
|
1361 | + return EEH_URL::add_query_args_and_nonce( |
|
1362 | + array( |
|
1363 | + 'page' => 'espresso_events', |
|
1364 | + 'action' => 'default', |
|
1365 | + ), |
|
1366 | + admin_url('admin.php') |
|
1367 | + ); |
|
1368 | + } |
|
1369 | 1369 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * Sets FK_ID |
47 | 47 | * |
48 | 48 | * @param int $FK_ID |
49 | - * @return boolean |
|
49 | + * @return boolean|null |
|
50 | 50 | */ |
51 | 51 | public function set_FK_ID($FK_ID) |
52 | 52 | { |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | * Sets model |
70 | 70 | * |
71 | 71 | * @param string $model |
72 | - * @return boolean |
|
72 | + * @return boolean|null |
|
73 | 73 | */ |
74 | 74 | public function set_model($model) |
75 | 75 | { |
@@ -92,7 +92,7 @@ discard block |
||
92 | 92 | * Sets key |
93 | 93 | * |
94 | 94 | * @param string $key |
95 | - * @return boolean |
|
95 | + * @return boolean|null |
|
96 | 96 | */ |
97 | 97 | public function set_key($key) |
98 | 98 | { |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * Sets value |
116 | 116 | * |
117 | 117 | * @param string $value |
118 | - * @return boolean |
|
118 | + * @return boolean|null |
|
119 | 119 | */ |
120 | 120 | public function set_value($value) |
121 | 121 | { |
@@ -10,115 +10,115 @@ |
||
10 | 10 | class EE_Extra_Meta extends EE_Base_Class |
11 | 11 | { |
12 | 12 | |
13 | - /** |
|
14 | - * @param array $props_n_values |
|
15 | - * @return EE_Extra_Meta|mixed |
|
16 | - */ |
|
17 | - public static function new_instance($props_n_values = array()) |
|
18 | - { |
|
19 | - $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
20 | - return $has_object ? $has_object : new self($props_n_values); |
|
21 | - } |
|
22 | - |
|
23 | - |
|
24 | - /** |
|
25 | - * @param array $props_n_values |
|
26 | - * @return EE_Extra_Meta |
|
27 | - */ |
|
28 | - public static function new_instance_from_db($props_n_values = array()) |
|
29 | - { |
|
30 | - return new self($props_n_values, true); |
|
31 | - } |
|
32 | - |
|
33 | - |
|
34 | - /** |
|
35 | - * Gets FK_ID |
|
36 | - * |
|
37 | - * @return int |
|
38 | - */ |
|
39 | - public function FK_ID() |
|
40 | - { |
|
41 | - return $this->get('FK_ID'); |
|
42 | - } |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * Sets FK_ID |
|
47 | - * |
|
48 | - * @param int $FK_ID |
|
49 | - * @return boolean |
|
50 | - */ |
|
51 | - public function set_FK_ID($FK_ID) |
|
52 | - { |
|
53 | - $this->set('FK_ID', $FK_ID); |
|
54 | - } |
|
55 | - |
|
56 | - |
|
57 | - /** |
|
58 | - * Gets model |
|
59 | - * |
|
60 | - * @return string |
|
61 | - */ |
|
62 | - public function model() |
|
63 | - { |
|
64 | - return $this->get('EXM_model'); |
|
65 | - } |
|
66 | - |
|
67 | - |
|
68 | - /** |
|
69 | - * Sets model |
|
70 | - * |
|
71 | - * @param string $model |
|
72 | - * @return boolean |
|
73 | - */ |
|
74 | - public function set_model($model) |
|
75 | - { |
|
76 | - $this->set('EXM_model', $model); |
|
77 | - } |
|
78 | - |
|
79 | - |
|
80 | - /** |
|
81 | - * Gets key |
|
82 | - * |
|
83 | - * @return string |
|
84 | - */ |
|
85 | - public function key() |
|
86 | - { |
|
87 | - return $this->get('EXM_key'); |
|
88 | - } |
|
89 | - |
|
90 | - |
|
91 | - /** |
|
92 | - * Sets key |
|
93 | - * |
|
94 | - * @param string $key |
|
95 | - * @return boolean |
|
96 | - */ |
|
97 | - public function set_key($key) |
|
98 | - { |
|
99 | - $this->set('EXM_key', $key); |
|
100 | - } |
|
101 | - |
|
102 | - |
|
103 | - /** |
|
104 | - * Gets value |
|
105 | - * |
|
106 | - * @return string |
|
107 | - */ |
|
108 | - public function value() |
|
109 | - { |
|
110 | - return $this->get('EXM_value'); |
|
111 | - } |
|
112 | - |
|
113 | - |
|
114 | - /** |
|
115 | - * Sets value |
|
116 | - * |
|
117 | - * @param string $value |
|
118 | - * @return boolean |
|
119 | - */ |
|
120 | - public function set_value($value) |
|
121 | - { |
|
122 | - $this->set('EXM_value', $value); |
|
123 | - } |
|
13 | + /** |
|
14 | + * @param array $props_n_values |
|
15 | + * @return EE_Extra_Meta|mixed |
|
16 | + */ |
|
17 | + public static function new_instance($props_n_values = array()) |
|
18 | + { |
|
19 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__); |
|
20 | + return $has_object ? $has_object : new self($props_n_values); |
|
21 | + } |
|
22 | + |
|
23 | + |
|
24 | + /** |
|
25 | + * @param array $props_n_values |
|
26 | + * @return EE_Extra_Meta |
|
27 | + */ |
|
28 | + public static function new_instance_from_db($props_n_values = array()) |
|
29 | + { |
|
30 | + return new self($props_n_values, true); |
|
31 | + } |
|
32 | + |
|
33 | + |
|
34 | + /** |
|
35 | + * Gets FK_ID |
|
36 | + * |
|
37 | + * @return int |
|
38 | + */ |
|
39 | + public function FK_ID() |
|
40 | + { |
|
41 | + return $this->get('FK_ID'); |
|
42 | + } |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * Sets FK_ID |
|
47 | + * |
|
48 | + * @param int $FK_ID |
|
49 | + * @return boolean |
|
50 | + */ |
|
51 | + public function set_FK_ID($FK_ID) |
|
52 | + { |
|
53 | + $this->set('FK_ID', $FK_ID); |
|
54 | + } |
|
55 | + |
|
56 | + |
|
57 | + /** |
|
58 | + * Gets model |
|
59 | + * |
|
60 | + * @return string |
|
61 | + */ |
|
62 | + public function model() |
|
63 | + { |
|
64 | + return $this->get('EXM_model'); |
|
65 | + } |
|
66 | + |
|
67 | + |
|
68 | + /** |
|
69 | + * Sets model |
|
70 | + * |
|
71 | + * @param string $model |
|
72 | + * @return boolean |
|
73 | + */ |
|
74 | + public function set_model($model) |
|
75 | + { |
|
76 | + $this->set('EXM_model', $model); |
|
77 | + } |
|
78 | + |
|
79 | + |
|
80 | + /** |
|
81 | + * Gets key |
|
82 | + * |
|
83 | + * @return string |
|
84 | + */ |
|
85 | + public function key() |
|
86 | + { |
|
87 | + return $this->get('EXM_key'); |
|
88 | + } |
|
89 | + |
|
90 | + |
|
91 | + /** |
|
92 | + * Sets key |
|
93 | + * |
|
94 | + * @param string $key |
|
95 | + * @return boolean |
|
96 | + */ |
|
97 | + public function set_key($key) |
|
98 | + { |
|
99 | + $this->set('EXM_key', $key); |
|
100 | + } |
|
101 | + |
|
102 | + |
|
103 | + /** |
|
104 | + * Gets value |
|
105 | + * |
|
106 | + * @return string |
|
107 | + */ |
|
108 | + public function value() |
|
109 | + { |
|
110 | + return $this->get('EXM_value'); |
|
111 | + } |
|
112 | + |
|
113 | + |
|
114 | + /** |
|
115 | + * Sets value |
|
116 | + * |
|
117 | + * @param string $value |
|
118 | + * @return boolean |
|
119 | + */ |
|
120 | + public function set_value($value) |
|
121 | + { |
|
122 | + $this->set('EXM_value', $value); |
|
123 | + } |
|
124 | 124 | } |
@@ -87,7 +87,6 @@ discard block |
||
87 | 87 | * |
88 | 88 | * @param string $title - heading for the form |
89 | 89 | * @param string $intro - additional text explaing what to do |
90 | - * @param string $page - EE Admin page to direct form to - in the form "espresso_{pageslug}" |
|
91 | 90 | * @param string $action - EE Admin page route array "action" that form will direct to |
92 | 91 | * @param string $type - type of file to import |
93 | 92 | * @ return string |
@@ -130,7 +129,7 @@ discard block |
||
130 | 129 | /** |
131 | 130 | * @Import Event Espresso data - some code "borrowed" from event espresso csv_import.php |
132 | 131 | * @access public |
133 | - * @return boolean success |
|
132 | + * @return boolean|null success |
|
134 | 133 | */ |
135 | 134 | public function import() |
136 | 135 | { |
@@ -304,9 +303,7 @@ discard block |
||
304 | 303 | * @access public |
305 | 304 | * @param array $csv_data_array - the array containing the csv data produced from |
306 | 305 | * EE_CSV::import_csv_to_model_data_array() |
307 | - * @param array $fields_to_save - an array containing the csv column names as keys with the corresponding db table |
|
308 | - * fields they will be saved to |
|
309 | - * @return TRUE on success, FALSE on fail |
|
306 | + * @return boolean on success, FALSE on fail |
|
310 | 307 | * @throws \EE_Error |
311 | 308 | */ |
312 | 309 | public function save_csv_data_array_to_db($csv_data_array, $model_name = false) |
@@ -459,7 +456,7 @@ discard block |
||
459 | 456 | * to the newly-inserted real ID. |
460 | 457 | * |
461 | 458 | * @param type $csv_data_array |
462 | - * @param type $export_from_site_a_to_b |
|
459 | + * @param boolean $export_from_site_a_to_b |
|
463 | 460 | * @param type $old_db_to_new_db_mapping |
464 | 461 | * @return array updated $old_db_to_new_db_mapping |
465 | 462 | */ |
@@ -626,7 +623,6 @@ discard block |
||
626 | 623 | * @param type $id_in_csv |
627 | 624 | * @param type $model_object_data |
628 | 625 | * @param EEM_Base $model |
629 | - * @param type $old_db_to_new_db_mapping |
|
630 | 626 | * @return |
631 | 627 | */ |
632 | 628 | protected function _decide_whether_to_insert_or_update_given_data_from_same_db( |
@@ -758,7 +754,7 @@ discard block |
||
758 | 754 | * @param type $object_id |
759 | 755 | * @param string $model_name |
760 | 756 | * @param array $old_db_to_new_db_mapping |
761 | - * @param type $export_from_site_a_to_b |
|
757 | + * @param boolean $export_from_site_a_to_b |
|
762 | 758 | * @return int |
763 | 759 | */ |
764 | 760 | protected function _find_mapping_in($object_id, $model_name, $old_db_to_new_db_mapping, $export_from_site_a_to_b) |
@@ -14,91 +14,91 @@ discard block |
||
14 | 14 | class EE_Import implements ResettableInterface |
15 | 15 | { |
16 | 16 | |
17 | - const do_insert = 'insert'; |
|
18 | - const do_update = 'update'; |
|
19 | - const do_nothing = 'nothing'; |
|
20 | - |
|
21 | - |
|
22 | - // instance of the EE_Import object |
|
23 | - private static $_instance = null; |
|
24 | - |
|
25 | - private static $_csv_array = array(); |
|
26 | - |
|
27 | - /** |
|
28 | - * |
|
29 | - * @var array of model names |
|
30 | - */ |
|
31 | - private static $_model_list = array(); |
|
32 | - |
|
33 | - private static $_columns_to_save = array(); |
|
34 | - |
|
35 | - protected $_total_inserts = 0; |
|
36 | - protected $_total_updates = 0; |
|
37 | - protected $_total_insert_errors = 0; |
|
38 | - protected $_total_update_errors = 0; |
|
39 | - |
|
40 | - |
|
41 | - /** |
|
42 | - * private constructor to prevent direct creation |
|
43 | - * |
|
44 | - * @Constructor |
|
45 | - * @access private |
|
46 | - * @return void |
|
47 | - */ |
|
48 | - private function __construct() |
|
49 | - { |
|
50 | - $this->_total_inserts = 0; |
|
51 | - $this->_total_updates = 0; |
|
52 | - $this->_total_insert_errors = 0; |
|
53 | - $this->_total_update_errors = 0; |
|
54 | - } |
|
55 | - |
|
56 | - |
|
57 | - /** |
|
58 | - * @ singleton method used to instantiate class object |
|
59 | - * @ access public |
|
60 | - * |
|
61 | - * @return EE_Import |
|
62 | - */ |
|
63 | - public static function instance() |
|
64 | - { |
|
65 | - // check if class object is instantiated |
|
66 | - if (self::$_instance === null or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Import)) { |
|
67 | - self::$_instance = new self(); |
|
68 | - } |
|
69 | - return self::$_instance; |
|
70 | - } |
|
71 | - |
|
72 | - /** |
|
73 | - * Resets the importer |
|
74 | - * |
|
75 | - * @return EE_Import |
|
76 | - */ |
|
77 | - public static function reset() |
|
78 | - { |
|
79 | - self::$_instance = null; |
|
80 | - return self::instance(); |
|
81 | - } |
|
82 | - |
|
83 | - |
|
84 | - /** |
|
85 | - * @ generates HTML for a file upload input and form |
|
86 | - * @ access public |
|
87 | - * |
|
88 | - * @param string $title - heading for the form |
|
89 | - * @param string $intro - additional text explaing what to do |
|
90 | - * @param string $page - EE Admin page to direct form to - in the form "espresso_{pageslug}" |
|
91 | - * @param string $action - EE Admin page route array "action" that form will direct to |
|
92 | - * @param string $type - type of file to import |
|
93 | - * @ return string |
|
94 | - */ |
|
95 | - public function upload_form($title, $intro, $form_url, $action, $type) |
|
96 | - { |
|
97 | - |
|
98 | - $form_url = EE_Admin_Page::add_query_args_and_nonce(array('action' => $action), $form_url); |
|
99 | - |
|
100 | - ob_start(); |
|
101 | - ?> |
|
17 | + const do_insert = 'insert'; |
|
18 | + const do_update = 'update'; |
|
19 | + const do_nothing = 'nothing'; |
|
20 | + |
|
21 | + |
|
22 | + // instance of the EE_Import object |
|
23 | + private static $_instance = null; |
|
24 | + |
|
25 | + private static $_csv_array = array(); |
|
26 | + |
|
27 | + /** |
|
28 | + * |
|
29 | + * @var array of model names |
|
30 | + */ |
|
31 | + private static $_model_list = array(); |
|
32 | + |
|
33 | + private static $_columns_to_save = array(); |
|
34 | + |
|
35 | + protected $_total_inserts = 0; |
|
36 | + protected $_total_updates = 0; |
|
37 | + protected $_total_insert_errors = 0; |
|
38 | + protected $_total_update_errors = 0; |
|
39 | + |
|
40 | + |
|
41 | + /** |
|
42 | + * private constructor to prevent direct creation |
|
43 | + * |
|
44 | + * @Constructor |
|
45 | + * @access private |
|
46 | + * @return void |
|
47 | + */ |
|
48 | + private function __construct() |
|
49 | + { |
|
50 | + $this->_total_inserts = 0; |
|
51 | + $this->_total_updates = 0; |
|
52 | + $this->_total_insert_errors = 0; |
|
53 | + $this->_total_update_errors = 0; |
|
54 | + } |
|
55 | + |
|
56 | + |
|
57 | + /** |
|
58 | + * @ singleton method used to instantiate class object |
|
59 | + * @ access public |
|
60 | + * |
|
61 | + * @return EE_Import |
|
62 | + */ |
|
63 | + public static function instance() |
|
64 | + { |
|
65 | + // check if class object is instantiated |
|
66 | + if (self::$_instance === null or ! is_object(self::$_instance) or ! (self::$_instance instanceof EE_Import)) { |
|
67 | + self::$_instance = new self(); |
|
68 | + } |
|
69 | + return self::$_instance; |
|
70 | + } |
|
71 | + |
|
72 | + /** |
|
73 | + * Resets the importer |
|
74 | + * |
|
75 | + * @return EE_Import |
|
76 | + */ |
|
77 | + public static function reset() |
|
78 | + { |
|
79 | + self::$_instance = null; |
|
80 | + return self::instance(); |
|
81 | + } |
|
82 | + |
|
83 | + |
|
84 | + /** |
|
85 | + * @ generates HTML for a file upload input and form |
|
86 | + * @ access public |
|
87 | + * |
|
88 | + * @param string $title - heading for the form |
|
89 | + * @param string $intro - additional text explaing what to do |
|
90 | + * @param string $page - EE Admin page to direct form to - in the form "espresso_{pageslug}" |
|
91 | + * @param string $action - EE Admin page route array "action" that form will direct to |
|
92 | + * @param string $type - type of file to import |
|
93 | + * @ return string |
|
94 | + */ |
|
95 | + public function upload_form($title, $intro, $form_url, $action, $type) |
|
96 | + { |
|
97 | + |
|
98 | + $form_url = EE_Admin_Page::add_query_args_and_nonce(array('action' => $action), $form_url); |
|
99 | + |
|
100 | + ob_start(); |
|
101 | + ?> |
|
102 | 102 | <div class="ee-upload-form-dv"> |
103 | 103 | <h3><?php echo $title; ?></h3> |
104 | 104 | <p><?php echo $intro; ?></p> |
@@ -114,874 +114,874 @@ discard block |
||
114 | 114 | <b><?php _e('Attention', 'event_espresso'); ?></b><br/> |
115 | 115 | <?php echo sprintf(__('Accepts .%s file types only.', 'event_espresso'), $type); ?> |
116 | 116 | <?php echo __( |
117 | - 'Please only import CSV files exported from Event Espresso, or compatible 3rd-party software.', |
|
118 | - 'event_espresso' |
|
119 | - ); ?> |
|
117 | + 'Please only import CSV files exported from Event Espresso, or compatible 3rd-party software.', |
|
118 | + 'event_espresso' |
|
119 | + ); ?> |
|
120 | 120 | </p> |
121 | 121 | |
122 | 122 | </div> |
123 | 123 | |
124 | 124 | <?php |
125 | - $uploader = ob_get_clean(); |
|
126 | - return $uploader; |
|
127 | - } |
|
128 | - |
|
129 | - |
|
130 | - /** |
|
131 | - * @Import Event Espresso data - some code "borrowed" from event espresso csv_import.php |
|
132 | - * @access public |
|
133 | - * @return boolean success |
|
134 | - */ |
|
135 | - public function import() |
|
136 | - { |
|
137 | - |
|
138 | - require_once(EE_CLASSES . 'EE_CSV.class.php'); |
|
139 | - $this->EE_CSV = EE_CSV::instance(); |
|
140 | - |
|
141 | - if (isset($_REQUEST['import'])) { |
|
142 | - if (isset($_POST['csv_submitted'])) { |
|
143 | - switch ($_FILES['file']['error'][0]) { |
|
144 | - case UPLOAD_ERR_OK: |
|
145 | - $error_msg = false; |
|
146 | - break; |
|
147 | - case UPLOAD_ERR_INI_SIZE: |
|
148 | - $error_msg = __( |
|
149 | - "'The uploaded file exceeds the upload_max_filesize directive in php.ini.'", |
|
150 | - "event_espresso" |
|
151 | - ); |
|
152 | - break; |
|
153 | - case UPLOAD_ERR_FORM_SIZE: |
|
154 | - $error_msg = __( |
|
155 | - 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.', |
|
156 | - "event_espresso" |
|
157 | - ); |
|
158 | - break; |
|
159 | - case UPLOAD_ERR_PARTIAL: |
|
160 | - $error_msg = __('The uploaded file was only partially uploaded.', "event_espresso"); |
|
161 | - break; |
|
162 | - case UPLOAD_ERR_NO_FILE: |
|
163 | - $error_msg = __('No file was uploaded.', "event_espresso"); |
|
164 | - break; |
|
165 | - case UPLOAD_ERR_NO_TMP_DIR: |
|
166 | - $error_msg = __('Missing a temporary folder.', "event_espresso"); |
|
167 | - break; |
|
168 | - case UPLOAD_ERR_CANT_WRITE: |
|
169 | - $error_msg = __('Failed to write file to disk.', "event_espresso"); |
|
170 | - break; |
|
171 | - case UPLOAD_ERR_EXTENSION: |
|
172 | - $error_msg = __('File upload stopped by extension.', "event_espresso"); |
|
173 | - break; |
|
174 | - default: |
|
175 | - $error_msg = __( |
|
176 | - 'An unknown error occurred and the file could not be uploaded', |
|
177 | - "event_espresso" |
|
178 | - ); |
|
179 | - break; |
|
180 | - } |
|
181 | - |
|
182 | - if (! $error_msg) { |
|
183 | - $filename = $_FILES['file']['name'][0]; |
|
184 | - $file_ext = substr(strrchr($filename, '.'), 1); |
|
185 | - $file_type = $_FILES['file']['type'][0]; |
|
186 | - $temp_file = $_FILES['file']['tmp_name'][0]; |
|
187 | - $filesize = $_FILES['file']['size'][0] / 1024;// convert from bytes to KB |
|
188 | - |
|
189 | - if ($file_ext == 'csv') { |
|
190 | - $max_upload = $this->EE_CSV->get_max_upload_size();// max upload size in KB |
|
191 | - if ($filesize < $max_upload || true) { |
|
192 | - $wp_upload_dir = str_replace(array('\\', '/'), DS, wp_upload_dir()); |
|
193 | - $path_to_file = $wp_upload_dir['basedir'] . DS . 'espresso' . DS . $filename; |
|
194 | - |
|
195 | - if (move_uploaded_file($temp_file, $path_to_file)) { |
|
196 | - // convert csv to array |
|
197 | - $this->csv_array = $this->EE_CSV->import_csv_to_model_data_array($path_to_file); |
|
198 | - |
|
199 | - // was data successfully stored in an array? |
|
200 | - if (is_array($this->csv_array)) { |
|
201 | - $import_what = str_replace('csv_import_', '', $_REQUEST['action']); |
|
202 | - $import_what = str_replace('_', ' ', ucwords($import_what)); |
|
203 | - $processed_data = $this->csv_array; |
|
204 | - $this->columns_to_save = false; |
|
205 | - |
|
206 | - // if any imports require funcky processing, we'll catch them in the switch |
|
207 | - switch ($_REQUEST['action']) { |
|
208 | - case "import_events": |
|
209 | - case "event_list": |
|
210 | - $import_what = 'Event Details'; |
|
211 | - break; |
|
212 | - |
|
213 | - case 'groupon_import_csv': |
|
214 | - $import_what = 'Groupon Codes'; |
|
215 | - $processed_data = $this->process_groupon_codes(); |
|
216 | - break; |
|
217 | - } |
|
218 | - // save processed codes to db |
|
219 | - if ($this->save_csv_data_array_to_db($processed_data, $this->columns_to_save)) { |
|
220 | - return true; |
|
221 | - } |
|
222 | - } else { |
|
223 | - // no array? must be an error |
|
224 | - EE_Error::add_error( |
|
225 | - sprintf(__("No file seems to have been uploaded", "event_espresso")), |
|
226 | - __FILE__, |
|
227 | - __FUNCTION__, |
|
228 | - __LINE__ |
|
229 | - ); |
|
230 | - return false; |
|
231 | - } |
|
232 | - } else { |
|
233 | - EE_Error::add_error( |
|
234 | - sprintf(__("%s was not successfully uploaded", "event_espresso"), $filename), |
|
235 | - __FILE__, |
|
236 | - __FUNCTION__, |
|
237 | - __LINE__ |
|
238 | - ); |
|
239 | - return false; |
|
240 | - } |
|
241 | - } else { |
|
242 | - EE_Error::add_error( |
|
243 | - sprintf( |
|
244 | - __( |
|
245 | - "%s was too large of a file and could not be uploaded. The max filesize is %s' KB.", |
|
246 | - "event_espresso" |
|
247 | - ), |
|
248 | - $filename, |
|
249 | - $max_upload |
|
250 | - ), |
|
251 | - __FILE__, |
|
252 | - __FUNCTION__, |
|
253 | - __LINE__ |
|
254 | - ); |
|
255 | - return false; |
|
256 | - } |
|
257 | - } else { |
|
258 | - EE_Error::add_error( |
|
259 | - sprintf(__("%s had an invalid file extension, not uploaded", "event_espresso"), $filename), |
|
260 | - __FILE__, |
|
261 | - __FUNCTION__, |
|
262 | - __LINE__ |
|
263 | - ); |
|
264 | - return false; |
|
265 | - } |
|
266 | - } else { |
|
267 | - EE_Error::add_error($error_msg, __FILE__, __FUNCTION__, __LINE__); |
|
268 | - return false; |
|
269 | - } |
|
270 | - } |
|
271 | - } |
|
272 | - return; |
|
273 | - } |
|
274 | - |
|
275 | - |
|
276 | - /** |
|
277 | - * Given an array of data (usually from a CSV import) attempts to save that data to the db. |
|
278 | - * If $model_name ISN'T provided, assumes that this is a 3d array, with toplevel keys being model names, |
|
279 | - * next level being numeric indexes adn each value representing a model object, and the last layer down |
|
280 | - * being keys of model fields and their proposed values. |
|
281 | - * If $model_name IS provided, assumes a 2d array of the bottom two layers previously mentioned. |
|
282 | - * If the CSV data says (in the metadata row) that it's from the SAME database, |
|
283 | - * we treat the IDs in the CSV as the normal IDs, and try to update those records. However, if those |
|
284 | - * IDs DON'T exist in the database, they're treated as temporary IDs, |
|
285 | - * which can used elsewhere to refer to the same object. Once an item |
|
286 | - * with a temporary ID gets inserted, we record its mapping from temporary |
|
287 | - * ID to real ID, and use the real ID in place of the temporary ID |
|
288 | - * when that temporary ID was used as a foreign key. |
|
289 | - * If the CSV data says (in the metadata again) that it's from a DIFFERENT database, |
|
290 | - * we treat all the IDs in the CSV as temporary ID- eg, if the CSV specifies an event with |
|
291 | - * ID 1, and the database already has an event with ID 1, we assume that's just a coincidence, |
|
292 | - * and insert a new event, and map it's temporary ID of 1 over to its new real ID. |
|
293 | - * An important exception are non-auto-increment primary keys. If one entry in the |
|
294 | - * CSV file has the same ID as one in the DB, we assume they are meant to be |
|
295 | - * the same item, and instead update the item in the DB with that same ID. |
|
296 | - * Also note, we remember the mappings permanently. So the 2nd, 3rd, and 10000th |
|
297 | - * time you import a CSV from a different site, we remember their mappings, and |
|
298 | - * will try to update the item in the DB instead of inserting another item (eg |
|
299 | - * if we previously imported an event with temporary ID 1, and then it got a |
|
300 | - * real ID of 123, we remember that. So the next time we import an event with |
|
301 | - * temporary ID, from the same site, we know that it's real ID is 123, and will |
|
302 | - * update that event, instead of adding a new event). |
|
303 | - * |
|
304 | - * @access public |
|
305 | - * @param array $csv_data_array - the array containing the csv data produced from |
|
306 | - * EE_CSV::import_csv_to_model_data_array() |
|
307 | - * @param array $fields_to_save - an array containing the csv column names as keys with the corresponding db table |
|
308 | - * fields they will be saved to |
|
309 | - * @return TRUE on success, FALSE on fail |
|
310 | - * @throws \EE_Error |
|
311 | - */ |
|
312 | - public function save_csv_data_array_to_db($csv_data_array, $model_name = false) |
|
313 | - { |
|
314 | - $success = false; |
|
315 | - $error = false; |
|
316 | - // whther to treat this import as if it's data froma different database or not |
|
317 | - // ie, if it IS from a different database, ignore foreign keys whihf |
|
318 | - $export_from_site_a_to_b = true; |
|
319 | - // first level of array is not table information but a table name was passed to the function |
|
320 | - // array is only two levels deep, so let's fix that by adding a level, else the next steps will fail |
|
321 | - if ($model_name) { |
|
322 | - $csv_data_array = array($csv_data_array); |
|
323 | - } |
|
324 | - // begin looking through the $csv_data_array, expecting the toplevel key to be the model's name... |
|
325 | - $old_site_url = 'none-specified'; |
|
326 | - // hanlde metadata |
|
327 | - if (isset($csv_data_array[ EE_CSV::metadata_header ])) { |
|
328 | - $csv_metadata = array_shift($csv_data_array[ EE_CSV::metadata_header ]); |
|
329 | - // ok so its metadata, dont try to save it to ehte db obviously... |
|
330 | - if (isset($csv_metadata['site_url']) && $csv_metadata['site_url'] == site_url()) { |
|
331 | - EE_Error::add_attention( |
|
332 | - sprintf( |
|
333 | - __( |
|
334 | - "CSV Data appears to be from the same database, so attempting to update data", |
|
335 | - "event_espresso" |
|
336 | - ) |
|
337 | - ) |
|
338 | - ); |
|
339 | - $export_from_site_a_to_b = false; |
|
340 | - } else { |
|
341 | - $old_site_url = isset($csv_metadata['site_url']) ? $csv_metadata['site_url'] : $old_site_url; |
|
342 | - EE_Error::add_attention( |
|
343 | - sprintf( |
|
344 | - __( |
|
345 | - "CSV Data appears to be from a different database (%s instead of %s), so we assume IDs in the CSV data DO NOT correspond to IDs in this database", |
|
346 | - "event_espresso" |
|
347 | - ), |
|
348 | - $old_site_url, |
|
349 | - site_url() |
|
350 | - ) |
|
351 | - ); |
|
352 | - }; |
|
353 | - unset($csv_data_array[ EE_CSV::metadata_header ]); |
|
354 | - } |
|
355 | - /** |
|
356 | - * @var $old_db_to_new_db_mapping 2d array: toplevel keys being model names, bottom-level keys being the original key, and |
|
357 | - * the value will be the newly-inserted ID. |
|
358 | - * If we have already imported data from the same website via CSV, it shoudl be kept in this wp option |
|
359 | - */ |
|
360 | - $old_db_to_new_db_mapping = get_option('ee_id_mapping_from' . sanitize_title($old_site_url), array()); |
|
361 | - if ($old_db_to_new_db_mapping) { |
|
362 | - EE_Error::add_attention( |
|
363 | - sprintf( |
|
364 | - __( |
|
365 | - "We noticed you have imported data via CSV from %s before. Because of this, IDs in your CSV have been mapped to their new IDs in %s", |
|
366 | - "event_espresso" |
|
367 | - ), |
|
368 | - $old_site_url, |
|
369 | - site_url() |
|
370 | - ) |
|
371 | - ); |
|
372 | - } |
|
373 | - $old_db_to_new_db_mapping = $this->save_data_rows_to_db( |
|
374 | - $csv_data_array, |
|
375 | - $export_from_site_a_to_b, |
|
376 | - $old_db_to_new_db_mapping |
|
377 | - ); |
|
378 | - |
|
379 | - // save the mapping from old db to new db in case they try re-importing the same data from the same website again |
|
380 | - update_option('ee_id_mapping_from' . sanitize_title($old_site_url), $old_db_to_new_db_mapping); |
|
381 | - |
|
382 | - if ($this->_total_updates > 0) { |
|
383 | - EE_Error::add_success( |
|
384 | - sprintf( |
|
385 | - __("%s existing records in the database were updated.", "event_espresso"), |
|
386 | - $this->_total_updates |
|
387 | - ) |
|
388 | - ); |
|
389 | - $success = true; |
|
390 | - } |
|
391 | - if ($this->_total_inserts > 0) { |
|
392 | - EE_Error::add_success( |
|
393 | - sprintf(__("%s new records were added to the database.", "event_espresso"), $this->_total_inserts) |
|
394 | - ); |
|
395 | - $success = true; |
|
396 | - } |
|
397 | - |
|
398 | - if ($this->_total_update_errors > 0) { |
|
399 | - EE_Error::add_error( |
|
400 | - sprintf( |
|
401 | - __( |
|
402 | - "'One or more errors occurred, and a total of %s existing records in the database were <strong>not</strong> updated.'", |
|
403 | - "event_espresso" |
|
404 | - ), |
|
405 | - $this->_total_update_errors |
|
406 | - ), |
|
407 | - __FILE__, |
|
408 | - __FUNCTION__, |
|
409 | - __LINE__ |
|
410 | - ); |
|
411 | - $error = true; |
|
412 | - } |
|
413 | - if ($this->_total_insert_errors > 0) { |
|
414 | - EE_Error::add_error( |
|
415 | - sprintf( |
|
416 | - __( |
|
417 | - "One or more errors occurred, and a total of %s new records were <strong>not</strong> added to the database.'", |
|
418 | - "event_espresso" |
|
419 | - ), |
|
420 | - $this->_total_insert_errors |
|
421 | - ), |
|
422 | - __FILE__, |
|
423 | - __FUNCTION__, |
|
424 | - __LINE__ |
|
425 | - ); |
|
426 | - $error = true; |
|
427 | - } |
|
428 | - |
|
429 | - // lastly, we need to update the datetime and ticket sold amounts |
|
430 | - // as those may have been affected by this |
|
431 | - EEM_Ticket::instance()->update_tickets_sold(EEM_Ticket::instance()->get_all()); |
|
432 | - |
|
433 | - // if there was at least one success and absolutely no errors |
|
434 | - if ($success && ! $error) { |
|
435 | - return true; |
|
436 | - } else { |
|
437 | - return false; |
|
438 | - } |
|
439 | - } |
|
440 | - |
|
441 | - |
|
442 | - /** |
|
443 | - * Processes the array of data, given the knowledge that it's from the same database or a different one, |
|
444 | - * and the mapping from temporary IDs to real IDs. |
|
445 | - * If the data is from a different database, we treat the primary keys and their corresponding |
|
446 | - * foreign keys as "temp Ids", basically identifiers that get mapped to real primary keys |
|
447 | - * in the real target database. As items are inserted, their temporary primary keys |
|
448 | - * are mapped to the real IDs in the target database. Also, before doing any update or |
|
449 | - * insert, we replace all the temp ID which are foreign keys with their mapped real IDs. |
|
450 | - * An exception: string primary keys are treated as real IDs, or else we'd need to |
|
451 | - * dynamically generate new string primary keys which would be very awkard for the country table etc. |
|
452 | - * Also, models with no primary key are strange too. We combine use their primar key INDEX (a |
|
453 | - * combination of fields) to create a unique string identifying the row and store |
|
454 | - * those in the mapping. |
|
455 | - * |
|
456 | - * If the data is from the same database, we usually treat primary keys as real IDs. |
|
457 | - * An exception is if there is nothing in the database for that ID. If that's the case, |
|
458 | - * we need to insert a new row for that ID, and then map from the non-existent ID |
|
459 | - * to the newly-inserted real ID. |
|
460 | - * |
|
461 | - * @param type $csv_data_array |
|
462 | - * @param type $export_from_site_a_to_b |
|
463 | - * @param type $old_db_to_new_db_mapping |
|
464 | - * @return array updated $old_db_to_new_db_mapping |
|
465 | - */ |
|
466 | - public function save_data_rows_to_db($csv_data_array, $export_from_site_a_to_b, $old_db_to_new_db_mapping) |
|
467 | - { |
|
468 | - foreach ($csv_data_array as $model_name_in_csv_data => $model_data_from_import) { |
|
469 | - // now check that assumption was correct. If |
|
470 | - if (EE_Registry::instance()->is_model_name($model_name_in_csv_data)) { |
|
471 | - $model_name = $model_name_in_csv_data; |
|
472 | - } else { |
|
473 | - // no table info in the array and no table name passed to the function?? FAIL |
|
474 | - EE_Error::add_error( |
|
475 | - __( |
|
476 | - 'No table information was specified and/or found, therefore the import could not be completed', |
|
477 | - 'event_espresso' |
|
478 | - ), |
|
479 | - __FILE__, |
|
480 | - __FUNCTION__, |
|
481 | - __LINE__ |
|
482 | - ); |
|
483 | - return false; |
|
484 | - } |
|
485 | - /* @var $model EEM_Base */ |
|
486 | - $model = EE_Registry::instance()->load_model($model_name); |
|
487 | - |
|
488 | - // so without further ado, scanning all the data provided for primary keys and their inital values |
|
489 | - foreach ($model_data_from_import as $model_object_data) { |
|
490 | - // before we do ANYTHING, make sure the csv row wasn't just completely blank |
|
491 | - $row_is_completely_empty = true; |
|
492 | - foreach ($model_object_data as $field) { |
|
493 | - if ($field) { |
|
494 | - $row_is_completely_empty = false; |
|
495 | - } |
|
496 | - } |
|
497 | - if ($row_is_completely_empty) { |
|
498 | - continue; |
|
499 | - } |
|
500 | - // find the PK in the row of data (or a combined key if |
|
501 | - // there is no primary key) |
|
502 | - if ($model->has_primary_key_field()) { |
|
503 | - $id_in_csv = $model_object_data[ $model->primary_key_name() ]; |
|
504 | - } else { |
|
505 | - $id_in_csv = $model->get_index_primary_key_string($model_object_data); |
|
506 | - } |
|
507 | - |
|
508 | - |
|
509 | - $model_object_data = $this->_replace_temp_ids_with_mappings( |
|
510 | - $model_object_data, |
|
511 | - $model, |
|
512 | - $old_db_to_new_db_mapping, |
|
513 | - $export_from_site_a_to_b |
|
514 | - ); |
|
515 | - // now we need to decide if we're going to add a new model object given the $model_object_data, |
|
516 | - // or just update. |
|
517 | - if ($export_from_site_a_to_b) { |
|
518 | - $what_to_do = $this->_decide_whether_to_insert_or_update_given_data_from_other_db( |
|
519 | - $id_in_csv, |
|
520 | - $model_object_data, |
|
521 | - $model, |
|
522 | - $old_db_to_new_db_mapping |
|
523 | - ); |
|
524 | - } else {// this is just a re-import |
|
525 | - $what_to_do = $this->_decide_whether_to_insert_or_update_given_data_from_same_db( |
|
526 | - $id_in_csv, |
|
527 | - $model_object_data, |
|
528 | - $model, |
|
529 | - $old_db_to_new_db_mapping |
|
530 | - ); |
|
531 | - } |
|
532 | - if ($what_to_do == self::do_nothing) { |
|
533 | - continue; |
|
534 | - } |
|
535 | - |
|
536 | - // double-check we actually want to insert, if that's what we're planning |
|
537 | - // based on whether this item would be unique in the DB or not |
|
538 | - if ($what_to_do == self::do_insert) { |
|
539 | - // we're supposed to be inserting. But wait, will this thing |
|
540 | - // be acceptable if inserted? |
|
541 | - $conflicting = $model->get_one_conflicting($model_object_data, false); |
|
542 | - if ($conflicting) { |
|
543 | - // ok, this item would conflict if inserted. Just update the item that it conflicts with. |
|
544 | - $what_to_do = self::do_update; |
|
545 | - // and if this model has a primary key, remember its mapping |
|
546 | - if ($model->has_primary_key_field()) { |
|
547 | - $old_db_to_new_db_mapping[ $model_name ][ $id_in_csv ] = $conflicting->ID(); |
|
548 | - $model_object_data[ $model->primary_key_name() ] = $conflicting->ID(); |
|
549 | - } else { |
|
550 | - // we want to update this conflicting item, instead of inserting a conflicting item |
|
551 | - // so we need to make sure they match entirely (its possible that they only conflicted on one field, but we need them to match on other fields |
|
552 | - // for the WHERE conditions in the update). At the time of this comment, there were no models like this |
|
553 | - foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
554 | - $model_object_data[ $key_field->get_name() ] = $conflicting->get( |
|
555 | - $key_field->get_name() |
|
556 | - ); |
|
557 | - } |
|
558 | - } |
|
559 | - } |
|
560 | - } |
|
561 | - if ($what_to_do == self::do_insert) { |
|
562 | - $old_db_to_new_db_mapping = $this->_insert_from_data_array( |
|
563 | - $id_in_csv, |
|
564 | - $model_object_data, |
|
565 | - $model, |
|
566 | - $old_db_to_new_db_mapping |
|
567 | - ); |
|
568 | - } elseif ($what_to_do == self::do_update) { |
|
569 | - $old_db_to_new_db_mapping = $this->_update_from_data_array( |
|
570 | - $id_in_csv, |
|
571 | - $model_object_data, |
|
572 | - $model, |
|
573 | - $old_db_to_new_db_mapping |
|
574 | - ); |
|
575 | - } else { |
|
576 | - throw new EE_Error( |
|
577 | - sprintf( |
|
578 | - __( |
|
579 | - 'Programming error. We shoudl be inserting or updating, but instead we are being told to "%s", whifh is invalid', |
|
580 | - 'event_espresso' |
|
581 | - ), |
|
582 | - $what_to_do |
|
583 | - ) |
|
584 | - ); |
|
585 | - } |
|
586 | - } |
|
587 | - } |
|
588 | - return $old_db_to_new_db_mapping; |
|
589 | - } |
|
590 | - |
|
591 | - |
|
592 | - /** |
|
593 | - * Decides whether or not to insert, given that this data is from another database. |
|
594 | - * So, if the primary key of this $model_object_data already exists in the database, |
|
595 | - * it's just a coincidence and we should still insert. The only time we should |
|
596 | - * update is when we know what it maps to, or there's something that would |
|
597 | - * conflict (and we should instead just update that conflicting thing) |
|
598 | - * |
|
599 | - * @param string $id_in_csv |
|
600 | - * @param array $model_object_data by reference so it can be modified |
|
601 | - * @param EEM_Base $model |
|
602 | - * @param array $old_db_to_new_db_mapping by reference so it can be modified |
|
603 | - * @return string one of the consts on this class that starts with do_* |
|
604 | - */ |
|
605 | - protected function _decide_whether_to_insert_or_update_given_data_from_other_db( |
|
606 | - $id_in_csv, |
|
607 | - $model_object_data, |
|
608 | - $model, |
|
609 | - $old_db_to_new_db_mapping |
|
610 | - ) { |
|
611 | - $model_name = $model->get_this_model_name(); |
|
612 | - // if it's a site-to-site export-and-import, see if this modelobject's id |
|
613 | - // in the old data that we know of |
|
614 | - if (isset($old_db_to_new_db_mapping[ $model_name ][ $id_in_csv ])) { |
|
615 | - return self::do_update; |
|
616 | - } else { |
|
617 | - return self::do_insert; |
|
618 | - } |
|
619 | - } |
|
620 | - |
|
621 | - /** |
|
622 | - * If this thing basically already exists in the database, we want to update it; |
|
623 | - * otherwise insert it (ie, someone tweaked the CSV file, or the item was |
|
624 | - * deleted in the database so it should be re-inserted) |
|
625 | - * |
|
626 | - * @param type $id_in_csv |
|
627 | - * @param type $model_object_data |
|
628 | - * @param EEM_Base $model |
|
629 | - * @param type $old_db_to_new_db_mapping |
|
630 | - * @return |
|
631 | - */ |
|
632 | - protected function _decide_whether_to_insert_or_update_given_data_from_same_db( |
|
633 | - $id_in_csv, |
|
634 | - $model_object_data, |
|
635 | - $model |
|
636 | - ) { |
|
637 | - // in this case, check if this thing ACTUALLY exists in the database |
|
638 | - if ($model->get_one_conflicting($model_object_data)) { |
|
639 | - return self::do_update; |
|
640 | - } else { |
|
641 | - return self::do_insert; |
|
642 | - } |
|
643 | - } |
|
644 | - |
|
645 | - /** |
|
646 | - * Using the $old_db_to_new_db_mapping array, replaces all the temporary IDs |
|
647 | - * with their mapped real IDs. Eg, if importing from site A to B, the mapping |
|
648 | - * file may indicate that the ID "my_event_id" maps to an actual event ID of 123. |
|
649 | - * So this function searches for any event temp Ids called "my_event_id" and |
|
650 | - * replaces them with 123. |
|
651 | - * Also, if there is no temp ID for the INT foreign keys from another database, |
|
652 | - * replaces them with 0 or the field's default. |
|
653 | - * |
|
654 | - * @param type $model_object_data |
|
655 | - * @param EEM_Base $model |
|
656 | - * @param type $old_db_to_new_db_mapping |
|
657 | - * @param boolean $export_from_site_a_to_b |
|
658 | - * @return array updated model object data with temp IDs removed |
|
659 | - */ |
|
660 | - protected function _replace_temp_ids_with_mappings( |
|
661 | - $model_object_data, |
|
662 | - $model, |
|
663 | - $old_db_to_new_db_mapping, |
|
664 | - $export_from_site_a_to_b |
|
665 | - ) { |
|
666 | - // if this model object's primary key is in the mapping, replace it |
|
667 | - if ($model->has_primary_key_field() && |
|
668 | - $model->get_primary_key_field()->is_auto_increment() && |
|
669 | - isset($old_db_to_new_db_mapping[ $model->get_this_model_name() ]) && |
|
670 | - isset( |
|
671 | - $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $model_object_data[ $model->primary_key_name() ] ] |
|
672 | - )) { |
|
673 | - $model_object_data[ $model->primary_key_name() ] = $old_db_to_new_db_mapping[ $model->get_this_model_name( |
|
674 | - ) ][ $model_object_data[ $model->primary_key_name() ] ]; |
|
675 | - } |
|
676 | - |
|
677 | - try { |
|
678 | - $model_name_field = $model->get_field_containing_related_model_name(); |
|
679 | - $models_pointed_to_by_model_name_field = $model_name_field->get_model_names_pointed_to(); |
|
680 | - } catch (EE_Error $e) { |
|
681 | - $model_name_field = null; |
|
682 | - $models_pointed_to_by_model_name_field = array(); |
|
683 | - } |
|
684 | - foreach ($model->field_settings(true) as $field_obj) { |
|
685 | - if ($field_obj instanceof EE_Foreign_Key_Int_Field) { |
|
686 | - $models_pointed_to = $field_obj->get_model_names_pointed_to(); |
|
687 | - $found_a_mapping = false; |
|
688 | - foreach ($models_pointed_to as $model_pointed_to_by_fk) { |
|
689 | - if ($model_name_field) { |
|
690 | - $value_of_model_name_field = $model_object_data[ $model_name_field->get_name() ]; |
|
691 | - if ($value_of_model_name_field == $model_pointed_to_by_fk) { |
|
692 | - $model_object_data[ $field_obj->get_name() ] = $this->_find_mapping_in( |
|
693 | - $model_object_data[ $field_obj->get_name() ], |
|
694 | - $model_pointed_to_by_fk, |
|
695 | - $old_db_to_new_db_mapping, |
|
696 | - $export_from_site_a_to_b |
|
697 | - ); |
|
698 | - $found_a_mapping = true; |
|
699 | - break; |
|
700 | - } |
|
701 | - } else { |
|
702 | - $model_object_data[ $field_obj->get_name() ] = $this->_find_mapping_in( |
|
703 | - $model_object_data[ $field_obj->get_name() ], |
|
704 | - $model_pointed_to_by_fk, |
|
705 | - $old_db_to_new_db_mapping, |
|
706 | - $export_from_site_a_to_b |
|
707 | - ); |
|
708 | - $found_a_mapping = true; |
|
709 | - } |
|
710 | - // once we've found a mapping for this field no need to continue |
|
711 | - if ($found_a_mapping) { |
|
712 | - break; |
|
713 | - } |
|
714 | - } |
|
715 | - } else { |
|
716 | - // it's a string foreign key (which we leave alone, because those are things |
|
717 | - // like country names, which we'd really rather not make 2 USAs etc (we'd actually |
|
718 | - // prefer to just update one) |
|
719 | - // or it's just a regular value that ought to be replaced |
|
720 | - } |
|
721 | - } |
|
722 | - // |
|
723 | - if ($model instanceof EEM_Term_Taxonomy) { |
|
724 | - $model_object_data = $this->_handle_split_term_ids($model_object_data); |
|
725 | - } |
|
726 | - return $model_object_data; |
|
727 | - } |
|
728 | - |
|
729 | - /** |
|
730 | - * If the data was exported PRE-4.2, but then imported POST-4.2, then the term_id |
|
731 | - * this term-taxonomy refers to may be out-of-date so we need to update it. |
|
732 | - * see https://make.wordpress.org/core/2015/02/16/taxonomy-term-splitting-in-4-2-a-developer-guide/ |
|
733 | - * |
|
734 | - * @param type $model_object_data |
|
735 | - * @return array new model object data |
|
736 | - */ |
|
737 | - protected function _handle_split_term_ids($model_object_data) |
|
738 | - { |
|
739 | - if (isset($model_object_data['term_id']) |
|
740 | - && isset($model_object_data['taxonomy']) |
|
741 | - && apply_filters( |
|
742 | - 'FHEE__EE_Import__handle_split_term_ids__function_exists', |
|
743 | - function_exists('wp_get_split_term'), |
|
744 | - $model_object_data |
|
745 | - )) { |
|
746 | - $new_term_id = wp_get_split_term($model_object_data['term_id'], $model_object_data['taxonomy']); |
|
747 | - if ($new_term_id) { |
|
748 | - $model_object_data['term_id'] = $new_term_id; |
|
749 | - } |
|
750 | - } |
|
751 | - return $model_object_data; |
|
752 | - } |
|
753 | - |
|
754 | - /** |
|
755 | - * Given the object's ID and its model's name, find it int he mapping data, |
|
756 | - * bearing in mind where it came from |
|
757 | - * |
|
758 | - * @param type $object_id |
|
759 | - * @param string $model_name |
|
760 | - * @param array $old_db_to_new_db_mapping |
|
761 | - * @param type $export_from_site_a_to_b |
|
762 | - * @return int |
|
763 | - */ |
|
764 | - protected function _find_mapping_in($object_id, $model_name, $old_db_to_new_db_mapping, $export_from_site_a_to_b) |
|
765 | - { |
|
766 | - if (isset($old_db_to_new_db_mapping[ $model_name ][ $object_id ])) { |
|
767 | - return $old_db_to_new_db_mapping[ $model_name ][ $object_id ]; |
|
768 | - } elseif ($object_id == '0' || $object_id == '') { |
|
769 | - // leave as-is |
|
770 | - return $object_id; |
|
771 | - } elseif ($export_from_site_a_to_b) { |
|
772 | - // we couldn't find a mapping for this, and it's from a different site, |
|
773 | - // so blank it out |
|
774 | - return null; |
|
775 | - } elseif (! $export_from_site_a_to_b) { |
|
776 | - // we coudln't find a mapping for this, but it's from thsi DB anyway |
|
777 | - // so let's just leave it as-is |
|
778 | - return $object_id; |
|
779 | - } |
|
780 | - } |
|
781 | - |
|
782 | - /** |
|
783 | - * |
|
784 | - * @param type $id_in_csv |
|
785 | - * @param type $model_object_data |
|
786 | - * @param EEM_Base $model |
|
787 | - * @param type $old_db_to_new_db_mapping |
|
788 | - * @return array updated $old_db_to_new_db_mapping |
|
789 | - */ |
|
790 | - protected function _insert_from_data_array($id_in_csv, $model_object_data, $model, $old_db_to_new_db_mapping) |
|
791 | - { |
|
792 | - // remove the primary key, if there is one (we don't want it for inserts OR updates) |
|
793 | - // we'll put it back in if we need it |
|
794 | - if ($model->has_primary_key_field() && $model->get_primary_key_field()->is_auto_increment()) { |
|
795 | - $effective_id = $model_object_data[ $model->primary_key_name() ]; |
|
796 | - unset($model_object_data[ $model->primary_key_name() ]); |
|
797 | - } else { |
|
798 | - $effective_id = $model->get_index_primary_key_string($model_object_data); |
|
799 | - } |
|
800 | - // the model takes care of validating the CSV's input |
|
801 | - try { |
|
802 | - $new_id = $model->insert($model_object_data); |
|
803 | - if ($new_id) { |
|
804 | - $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $id_in_csv ] = $new_id; |
|
805 | - $this->_total_inserts++; |
|
806 | - EE_Error::add_success( |
|
807 | - sprintf( |
|
808 | - __("Successfully added new %s (with id %s) with csv data %s", "event_espresso"), |
|
809 | - $model->get_this_model_name(), |
|
810 | - $new_id, |
|
811 | - implode(",", $model_object_data) |
|
812 | - ) |
|
813 | - ); |
|
814 | - } else { |
|
815 | - $this->_total_insert_errors++; |
|
816 | - // put the ID used back in there for the error message |
|
817 | - if ($model->has_primary_key_field()) { |
|
818 | - $model_object_data[ $model->primary_key_name() ] = $effective_id; |
|
819 | - } |
|
820 | - EE_Error::add_error( |
|
821 | - sprintf( |
|
822 | - __("Could not insert new %s with the csv data: %s", "event_espresso"), |
|
823 | - $model->get_this_model_name(), |
|
824 | - http_build_query($model_object_data) |
|
825 | - ), |
|
826 | - __FILE__, |
|
827 | - __FUNCTION__, |
|
828 | - __LINE__ |
|
829 | - ); |
|
830 | - } |
|
831 | - } catch (EE_Error $e) { |
|
832 | - $this->_total_insert_errors++; |
|
833 | - if ($model->has_primary_key_field()) { |
|
834 | - $model_object_data[ $model->primary_key_name() ] = $effective_id; |
|
835 | - } |
|
836 | - EE_Error::add_error( |
|
837 | - sprintf( |
|
838 | - __("Could not insert new %s with the csv data: %s because %s", "event_espresso"), |
|
839 | - $model->get_this_model_name(), |
|
840 | - implode(",", $model_object_data), |
|
841 | - $e->getMessage() |
|
842 | - ), |
|
843 | - __FILE__, |
|
844 | - __FUNCTION__, |
|
845 | - __LINE__ |
|
846 | - ); |
|
847 | - } |
|
848 | - return $old_db_to_new_db_mapping; |
|
849 | - } |
|
850 | - |
|
851 | - /** |
|
852 | - * Given the model object data, finds the row to update and updates it |
|
853 | - * |
|
854 | - * @param string|int $id_in_csv |
|
855 | - * @param array $model_object_data |
|
856 | - * @param EEM_Base $model |
|
857 | - * @param array $old_db_to_new_db_mapping |
|
858 | - * @return array updated $old_db_to_new_db_mapping |
|
859 | - */ |
|
860 | - protected function _update_from_data_array($id_in_csv, $model_object_data, $model, $old_db_to_new_db_mapping) |
|
861 | - { |
|
862 | - try { |
|
863 | - // let's keep two copies of the model object data: |
|
864 | - // one for performing an update, one for everthing else |
|
865 | - $model_object_data_for_update = $model_object_data; |
|
866 | - if ($model->has_primary_key_field()) { |
|
867 | - $conditions = array($model->primary_key_name() => $model_object_data[ $model->primary_key_name() ]); |
|
868 | - // remove the primary key because we shouldn't use it for updating |
|
869 | - unset($model_object_data_for_update[ $model->primary_key_name() ]); |
|
870 | - } elseif ($model->get_combined_primary_key_fields() > 1) { |
|
871 | - $conditions = array(); |
|
872 | - foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
873 | - $conditions[ $key_field->get_name() ] = $model_object_data[ $key_field->get_name() ]; |
|
874 | - } |
|
875 | - } else { |
|
876 | - $model->primary_key_name( |
|
877 | - );// this shoudl just throw an exception, explaining that we dont have a primary key (or a combine dkey) |
|
878 | - } |
|
879 | - |
|
880 | - $success = $model->update($model_object_data_for_update, array($conditions)); |
|
881 | - if ($success) { |
|
882 | - $this->_total_updates++; |
|
883 | - EE_Error::add_success( |
|
884 | - sprintf( |
|
885 | - __("Successfully updated %s with csv data %s", "event_espresso"), |
|
886 | - $model->get_this_model_name(), |
|
887 | - implode(",", $model_object_data_for_update) |
|
888 | - ) |
|
889 | - ); |
|
890 | - // we should still record the mapping even though it was an update |
|
891 | - // because if we were going to insert somethign but it was going to conflict |
|
892 | - // we would have last-minute decided to update. So we'd like to know what we updated |
|
893 | - // and so we record what record ended up being updated using the mapping |
|
894 | - if ($model->has_primary_key_field()) { |
|
895 | - $new_key_for_mapping = $model_object_data[ $model->primary_key_name() ]; |
|
896 | - } else { |
|
897 | - // no primary key just a combined key |
|
898 | - $new_key_for_mapping = $model->get_index_primary_key_string($model_object_data); |
|
899 | - } |
|
900 | - $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $id_in_csv ] = $new_key_for_mapping; |
|
901 | - } else { |
|
902 | - $matched_items = $model->get_all(array($conditions)); |
|
903 | - if (! $matched_items) { |
|
904 | - // no items were matched (so we shouldn't have updated)... but then we should have inserted? what the heck? |
|
905 | - $this->_total_update_errors++; |
|
906 | - EE_Error::add_error( |
|
907 | - sprintf( |
|
908 | - __( |
|
909 | - "Could not update %s with the csv data: '%s' for an unknown reason (using WHERE conditions %s)", |
|
910 | - "event_espresso" |
|
911 | - ), |
|
912 | - $model->get_this_model_name(), |
|
913 | - http_build_query($model_object_data), |
|
914 | - http_build_query($conditions) |
|
915 | - ), |
|
916 | - __FILE__, |
|
917 | - __FUNCTION__, |
|
918 | - __LINE__ |
|
919 | - ); |
|
920 | - } else { |
|
921 | - $this->_total_updates++; |
|
922 | - EE_Error::add_success( |
|
923 | - sprintf( |
|
924 | - __( |
|
925 | - "%s with csv data '%s' was found in the database and didn't need updating because all the data is identical.", |
|
926 | - "event_espresso" |
|
927 | - ), |
|
928 | - $model->get_this_model_name(), |
|
929 | - implode(",", $model_object_data) |
|
930 | - ) |
|
931 | - ); |
|
932 | - } |
|
933 | - } |
|
934 | - } catch (EE_Error $e) { |
|
935 | - $this->_total_update_errors++; |
|
936 | - $basic_message = sprintf( |
|
937 | - __("Could not update %s with the csv data: %s because %s", "event_espresso"), |
|
938 | - $model->get_this_model_name(), |
|
939 | - implode(",", $model_object_data), |
|
940 | - $e->getMessage() |
|
941 | - ); |
|
942 | - $debug_message = $basic_message . ' Stack trace: ' . $e->getTraceAsString(); |
|
943 | - EE_Error::add_error("$basic_message | $debug_message", __FILE__, __FUNCTION__, __LINE__); |
|
944 | - } |
|
945 | - return $old_db_to_new_db_mapping; |
|
946 | - } |
|
947 | - |
|
948 | - /** |
|
949 | - * Gets the number of inserts performed since importer was instantiated or reset |
|
950 | - * |
|
951 | - * @return int |
|
952 | - */ |
|
953 | - public function get_total_inserts() |
|
954 | - { |
|
955 | - return $this->_total_inserts; |
|
956 | - } |
|
957 | - |
|
958 | - /** |
|
959 | - * Gets the number of insert errors since importer was instantiated or reset |
|
960 | - * |
|
961 | - * @return int |
|
962 | - */ |
|
963 | - public function get_total_insert_errors() |
|
964 | - { |
|
965 | - return $this->_total_insert_errors; |
|
966 | - } |
|
967 | - |
|
968 | - /** |
|
969 | - * Gets the number of updates performed since importer was instantiated or reset |
|
970 | - * |
|
971 | - * @return int |
|
972 | - */ |
|
973 | - public function get_total_updates() |
|
974 | - { |
|
975 | - return $this->_total_updates; |
|
976 | - } |
|
977 | - |
|
978 | - /** |
|
979 | - * Gets the number of update errors since importer was instantiated or reset |
|
980 | - * |
|
981 | - * @return int |
|
982 | - */ |
|
983 | - public function get_total_update_errors() |
|
984 | - { |
|
985 | - return $this->_total_update_errors; |
|
986 | - } |
|
125 | + $uploader = ob_get_clean(); |
|
126 | + return $uploader; |
|
127 | + } |
|
128 | + |
|
129 | + |
|
130 | + /** |
|
131 | + * @Import Event Espresso data - some code "borrowed" from event espresso csv_import.php |
|
132 | + * @access public |
|
133 | + * @return boolean success |
|
134 | + */ |
|
135 | + public function import() |
|
136 | + { |
|
137 | + |
|
138 | + require_once(EE_CLASSES . 'EE_CSV.class.php'); |
|
139 | + $this->EE_CSV = EE_CSV::instance(); |
|
140 | + |
|
141 | + if (isset($_REQUEST['import'])) { |
|
142 | + if (isset($_POST['csv_submitted'])) { |
|
143 | + switch ($_FILES['file']['error'][0]) { |
|
144 | + case UPLOAD_ERR_OK: |
|
145 | + $error_msg = false; |
|
146 | + break; |
|
147 | + case UPLOAD_ERR_INI_SIZE: |
|
148 | + $error_msg = __( |
|
149 | + "'The uploaded file exceeds the upload_max_filesize directive in php.ini.'", |
|
150 | + "event_espresso" |
|
151 | + ); |
|
152 | + break; |
|
153 | + case UPLOAD_ERR_FORM_SIZE: |
|
154 | + $error_msg = __( |
|
155 | + 'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form.', |
|
156 | + "event_espresso" |
|
157 | + ); |
|
158 | + break; |
|
159 | + case UPLOAD_ERR_PARTIAL: |
|
160 | + $error_msg = __('The uploaded file was only partially uploaded.', "event_espresso"); |
|
161 | + break; |
|
162 | + case UPLOAD_ERR_NO_FILE: |
|
163 | + $error_msg = __('No file was uploaded.', "event_espresso"); |
|
164 | + break; |
|
165 | + case UPLOAD_ERR_NO_TMP_DIR: |
|
166 | + $error_msg = __('Missing a temporary folder.', "event_espresso"); |
|
167 | + break; |
|
168 | + case UPLOAD_ERR_CANT_WRITE: |
|
169 | + $error_msg = __('Failed to write file to disk.', "event_espresso"); |
|
170 | + break; |
|
171 | + case UPLOAD_ERR_EXTENSION: |
|
172 | + $error_msg = __('File upload stopped by extension.', "event_espresso"); |
|
173 | + break; |
|
174 | + default: |
|
175 | + $error_msg = __( |
|
176 | + 'An unknown error occurred and the file could not be uploaded', |
|
177 | + "event_espresso" |
|
178 | + ); |
|
179 | + break; |
|
180 | + } |
|
181 | + |
|
182 | + if (! $error_msg) { |
|
183 | + $filename = $_FILES['file']['name'][0]; |
|
184 | + $file_ext = substr(strrchr($filename, '.'), 1); |
|
185 | + $file_type = $_FILES['file']['type'][0]; |
|
186 | + $temp_file = $_FILES['file']['tmp_name'][0]; |
|
187 | + $filesize = $_FILES['file']['size'][0] / 1024;// convert from bytes to KB |
|
188 | + |
|
189 | + if ($file_ext == 'csv') { |
|
190 | + $max_upload = $this->EE_CSV->get_max_upload_size();// max upload size in KB |
|
191 | + if ($filesize < $max_upload || true) { |
|
192 | + $wp_upload_dir = str_replace(array('\\', '/'), DS, wp_upload_dir()); |
|
193 | + $path_to_file = $wp_upload_dir['basedir'] . DS . 'espresso' . DS . $filename; |
|
194 | + |
|
195 | + if (move_uploaded_file($temp_file, $path_to_file)) { |
|
196 | + // convert csv to array |
|
197 | + $this->csv_array = $this->EE_CSV->import_csv_to_model_data_array($path_to_file); |
|
198 | + |
|
199 | + // was data successfully stored in an array? |
|
200 | + if (is_array($this->csv_array)) { |
|
201 | + $import_what = str_replace('csv_import_', '', $_REQUEST['action']); |
|
202 | + $import_what = str_replace('_', ' ', ucwords($import_what)); |
|
203 | + $processed_data = $this->csv_array; |
|
204 | + $this->columns_to_save = false; |
|
205 | + |
|
206 | + // if any imports require funcky processing, we'll catch them in the switch |
|
207 | + switch ($_REQUEST['action']) { |
|
208 | + case "import_events": |
|
209 | + case "event_list": |
|
210 | + $import_what = 'Event Details'; |
|
211 | + break; |
|
212 | + |
|
213 | + case 'groupon_import_csv': |
|
214 | + $import_what = 'Groupon Codes'; |
|
215 | + $processed_data = $this->process_groupon_codes(); |
|
216 | + break; |
|
217 | + } |
|
218 | + // save processed codes to db |
|
219 | + if ($this->save_csv_data_array_to_db($processed_data, $this->columns_to_save)) { |
|
220 | + return true; |
|
221 | + } |
|
222 | + } else { |
|
223 | + // no array? must be an error |
|
224 | + EE_Error::add_error( |
|
225 | + sprintf(__("No file seems to have been uploaded", "event_espresso")), |
|
226 | + __FILE__, |
|
227 | + __FUNCTION__, |
|
228 | + __LINE__ |
|
229 | + ); |
|
230 | + return false; |
|
231 | + } |
|
232 | + } else { |
|
233 | + EE_Error::add_error( |
|
234 | + sprintf(__("%s was not successfully uploaded", "event_espresso"), $filename), |
|
235 | + __FILE__, |
|
236 | + __FUNCTION__, |
|
237 | + __LINE__ |
|
238 | + ); |
|
239 | + return false; |
|
240 | + } |
|
241 | + } else { |
|
242 | + EE_Error::add_error( |
|
243 | + sprintf( |
|
244 | + __( |
|
245 | + "%s was too large of a file and could not be uploaded. The max filesize is %s' KB.", |
|
246 | + "event_espresso" |
|
247 | + ), |
|
248 | + $filename, |
|
249 | + $max_upload |
|
250 | + ), |
|
251 | + __FILE__, |
|
252 | + __FUNCTION__, |
|
253 | + __LINE__ |
|
254 | + ); |
|
255 | + return false; |
|
256 | + } |
|
257 | + } else { |
|
258 | + EE_Error::add_error( |
|
259 | + sprintf(__("%s had an invalid file extension, not uploaded", "event_espresso"), $filename), |
|
260 | + __FILE__, |
|
261 | + __FUNCTION__, |
|
262 | + __LINE__ |
|
263 | + ); |
|
264 | + return false; |
|
265 | + } |
|
266 | + } else { |
|
267 | + EE_Error::add_error($error_msg, __FILE__, __FUNCTION__, __LINE__); |
|
268 | + return false; |
|
269 | + } |
|
270 | + } |
|
271 | + } |
|
272 | + return; |
|
273 | + } |
|
274 | + |
|
275 | + |
|
276 | + /** |
|
277 | + * Given an array of data (usually from a CSV import) attempts to save that data to the db. |
|
278 | + * If $model_name ISN'T provided, assumes that this is a 3d array, with toplevel keys being model names, |
|
279 | + * next level being numeric indexes adn each value representing a model object, and the last layer down |
|
280 | + * being keys of model fields and their proposed values. |
|
281 | + * If $model_name IS provided, assumes a 2d array of the bottom two layers previously mentioned. |
|
282 | + * If the CSV data says (in the metadata row) that it's from the SAME database, |
|
283 | + * we treat the IDs in the CSV as the normal IDs, and try to update those records. However, if those |
|
284 | + * IDs DON'T exist in the database, they're treated as temporary IDs, |
|
285 | + * which can used elsewhere to refer to the same object. Once an item |
|
286 | + * with a temporary ID gets inserted, we record its mapping from temporary |
|
287 | + * ID to real ID, and use the real ID in place of the temporary ID |
|
288 | + * when that temporary ID was used as a foreign key. |
|
289 | + * If the CSV data says (in the metadata again) that it's from a DIFFERENT database, |
|
290 | + * we treat all the IDs in the CSV as temporary ID- eg, if the CSV specifies an event with |
|
291 | + * ID 1, and the database already has an event with ID 1, we assume that's just a coincidence, |
|
292 | + * and insert a new event, and map it's temporary ID of 1 over to its new real ID. |
|
293 | + * An important exception are non-auto-increment primary keys. If one entry in the |
|
294 | + * CSV file has the same ID as one in the DB, we assume they are meant to be |
|
295 | + * the same item, and instead update the item in the DB with that same ID. |
|
296 | + * Also note, we remember the mappings permanently. So the 2nd, 3rd, and 10000th |
|
297 | + * time you import a CSV from a different site, we remember their mappings, and |
|
298 | + * will try to update the item in the DB instead of inserting another item (eg |
|
299 | + * if we previously imported an event with temporary ID 1, and then it got a |
|
300 | + * real ID of 123, we remember that. So the next time we import an event with |
|
301 | + * temporary ID, from the same site, we know that it's real ID is 123, and will |
|
302 | + * update that event, instead of adding a new event). |
|
303 | + * |
|
304 | + * @access public |
|
305 | + * @param array $csv_data_array - the array containing the csv data produced from |
|
306 | + * EE_CSV::import_csv_to_model_data_array() |
|
307 | + * @param array $fields_to_save - an array containing the csv column names as keys with the corresponding db table |
|
308 | + * fields they will be saved to |
|
309 | + * @return TRUE on success, FALSE on fail |
|
310 | + * @throws \EE_Error |
|
311 | + */ |
|
312 | + public function save_csv_data_array_to_db($csv_data_array, $model_name = false) |
|
313 | + { |
|
314 | + $success = false; |
|
315 | + $error = false; |
|
316 | + // whther to treat this import as if it's data froma different database or not |
|
317 | + // ie, if it IS from a different database, ignore foreign keys whihf |
|
318 | + $export_from_site_a_to_b = true; |
|
319 | + // first level of array is not table information but a table name was passed to the function |
|
320 | + // array is only two levels deep, so let's fix that by adding a level, else the next steps will fail |
|
321 | + if ($model_name) { |
|
322 | + $csv_data_array = array($csv_data_array); |
|
323 | + } |
|
324 | + // begin looking through the $csv_data_array, expecting the toplevel key to be the model's name... |
|
325 | + $old_site_url = 'none-specified'; |
|
326 | + // hanlde metadata |
|
327 | + if (isset($csv_data_array[ EE_CSV::metadata_header ])) { |
|
328 | + $csv_metadata = array_shift($csv_data_array[ EE_CSV::metadata_header ]); |
|
329 | + // ok so its metadata, dont try to save it to ehte db obviously... |
|
330 | + if (isset($csv_metadata['site_url']) && $csv_metadata['site_url'] == site_url()) { |
|
331 | + EE_Error::add_attention( |
|
332 | + sprintf( |
|
333 | + __( |
|
334 | + "CSV Data appears to be from the same database, so attempting to update data", |
|
335 | + "event_espresso" |
|
336 | + ) |
|
337 | + ) |
|
338 | + ); |
|
339 | + $export_from_site_a_to_b = false; |
|
340 | + } else { |
|
341 | + $old_site_url = isset($csv_metadata['site_url']) ? $csv_metadata['site_url'] : $old_site_url; |
|
342 | + EE_Error::add_attention( |
|
343 | + sprintf( |
|
344 | + __( |
|
345 | + "CSV Data appears to be from a different database (%s instead of %s), so we assume IDs in the CSV data DO NOT correspond to IDs in this database", |
|
346 | + "event_espresso" |
|
347 | + ), |
|
348 | + $old_site_url, |
|
349 | + site_url() |
|
350 | + ) |
|
351 | + ); |
|
352 | + }; |
|
353 | + unset($csv_data_array[ EE_CSV::metadata_header ]); |
|
354 | + } |
|
355 | + /** |
|
356 | + * @var $old_db_to_new_db_mapping 2d array: toplevel keys being model names, bottom-level keys being the original key, and |
|
357 | + * the value will be the newly-inserted ID. |
|
358 | + * If we have already imported data from the same website via CSV, it shoudl be kept in this wp option |
|
359 | + */ |
|
360 | + $old_db_to_new_db_mapping = get_option('ee_id_mapping_from' . sanitize_title($old_site_url), array()); |
|
361 | + if ($old_db_to_new_db_mapping) { |
|
362 | + EE_Error::add_attention( |
|
363 | + sprintf( |
|
364 | + __( |
|
365 | + "We noticed you have imported data via CSV from %s before. Because of this, IDs in your CSV have been mapped to their new IDs in %s", |
|
366 | + "event_espresso" |
|
367 | + ), |
|
368 | + $old_site_url, |
|
369 | + site_url() |
|
370 | + ) |
|
371 | + ); |
|
372 | + } |
|
373 | + $old_db_to_new_db_mapping = $this->save_data_rows_to_db( |
|
374 | + $csv_data_array, |
|
375 | + $export_from_site_a_to_b, |
|
376 | + $old_db_to_new_db_mapping |
|
377 | + ); |
|
378 | + |
|
379 | + // save the mapping from old db to new db in case they try re-importing the same data from the same website again |
|
380 | + update_option('ee_id_mapping_from' . sanitize_title($old_site_url), $old_db_to_new_db_mapping); |
|
381 | + |
|
382 | + if ($this->_total_updates > 0) { |
|
383 | + EE_Error::add_success( |
|
384 | + sprintf( |
|
385 | + __("%s existing records in the database were updated.", "event_espresso"), |
|
386 | + $this->_total_updates |
|
387 | + ) |
|
388 | + ); |
|
389 | + $success = true; |
|
390 | + } |
|
391 | + if ($this->_total_inserts > 0) { |
|
392 | + EE_Error::add_success( |
|
393 | + sprintf(__("%s new records were added to the database.", "event_espresso"), $this->_total_inserts) |
|
394 | + ); |
|
395 | + $success = true; |
|
396 | + } |
|
397 | + |
|
398 | + if ($this->_total_update_errors > 0) { |
|
399 | + EE_Error::add_error( |
|
400 | + sprintf( |
|
401 | + __( |
|
402 | + "'One or more errors occurred, and a total of %s existing records in the database were <strong>not</strong> updated.'", |
|
403 | + "event_espresso" |
|
404 | + ), |
|
405 | + $this->_total_update_errors |
|
406 | + ), |
|
407 | + __FILE__, |
|
408 | + __FUNCTION__, |
|
409 | + __LINE__ |
|
410 | + ); |
|
411 | + $error = true; |
|
412 | + } |
|
413 | + if ($this->_total_insert_errors > 0) { |
|
414 | + EE_Error::add_error( |
|
415 | + sprintf( |
|
416 | + __( |
|
417 | + "One or more errors occurred, and a total of %s new records were <strong>not</strong> added to the database.'", |
|
418 | + "event_espresso" |
|
419 | + ), |
|
420 | + $this->_total_insert_errors |
|
421 | + ), |
|
422 | + __FILE__, |
|
423 | + __FUNCTION__, |
|
424 | + __LINE__ |
|
425 | + ); |
|
426 | + $error = true; |
|
427 | + } |
|
428 | + |
|
429 | + // lastly, we need to update the datetime and ticket sold amounts |
|
430 | + // as those may have been affected by this |
|
431 | + EEM_Ticket::instance()->update_tickets_sold(EEM_Ticket::instance()->get_all()); |
|
432 | + |
|
433 | + // if there was at least one success and absolutely no errors |
|
434 | + if ($success && ! $error) { |
|
435 | + return true; |
|
436 | + } else { |
|
437 | + return false; |
|
438 | + } |
|
439 | + } |
|
440 | + |
|
441 | + |
|
442 | + /** |
|
443 | + * Processes the array of data, given the knowledge that it's from the same database or a different one, |
|
444 | + * and the mapping from temporary IDs to real IDs. |
|
445 | + * If the data is from a different database, we treat the primary keys and their corresponding |
|
446 | + * foreign keys as "temp Ids", basically identifiers that get mapped to real primary keys |
|
447 | + * in the real target database. As items are inserted, their temporary primary keys |
|
448 | + * are mapped to the real IDs in the target database. Also, before doing any update or |
|
449 | + * insert, we replace all the temp ID which are foreign keys with their mapped real IDs. |
|
450 | + * An exception: string primary keys are treated as real IDs, or else we'd need to |
|
451 | + * dynamically generate new string primary keys which would be very awkard for the country table etc. |
|
452 | + * Also, models with no primary key are strange too. We combine use their primar key INDEX (a |
|
453 | + * combination of fields) to create a unique string identifying the row and store |
|
454 | + * those in the mapping. |
|
455 | + * |
|
456 | + * If the data is from the same database, we usually treat primary keys as real IDs. |
|
457 | + * An exception is if there is nothing in the database for that ID. If that's the case, |
|
458 | + * we need to insert a new row for that ID, and then map from the non-existent ID |
|
459 | + * to the newly-inserted real ID. |
|
460 | + * |
|
461 | + * @param type $csv_data_array |
|
462 | + * @param type $export_from_site_a_to_b |
|
463 | + * @param type $old_db_to_new_db_mapping |
|
464 | + * @return array updated $old_db_to_new_db_mapping |
|
465 | + */ |
|
466 | + public function save_data_rows_to_db($csv_data_array, $export_from_site_a_to_b, $old_db_to_new_db_mapping) |
|
467 | + { |
|
468 | + foreach ($csv_data_array as $model_name_in_csv_data => $model_data_from_import) { |
|
469 | + // now check that assumption was correct. If |
|
470 | + if (EE_Registry::instance()->is_model_name($model_name_in_csv_data)) { |
|
471 | + $model_name = $model_name_in_csv_data; |
|
472 | + } else { |
|
473 | + // no table info in the array and no table name passed to the function?? FAIL |
|
474 | + EE_Error::add_error( |
|
475 | + __( |
|
476 | + 'No table information was specified and/or found, therefore the import could not be completed', |
|
477 | + 'event_espresso' |
|
478 | + ), |
|
479 | + __FILE__, |
|
480 | + __FUNCTION__, |
|
481 | + __LINE__ |
|
482 | + ); |
|
483 | + return false; |
|
484 | + } |
|
485 | + /* @var $model EEM_Base */ |
|
486 | + $model = EE_Registry::instance()->load_model($model_name); |
|
487 | + |
|
488 | + // so without further ado, scanning all the data provided for primary keys and their inital values |
|
489 | + foreach ($model_data_from_import as $model_object_data) { |
|
490 | + // before we do ANYTHING, make sure the csv row wasn't just completely blank |
|
491 | + $row_is_completely_empty = true; |
|
492 | + foreach ($model_object_data as $field) { |
|
493 | + if ($field) { |
|
494 | + $row_is_completely_empty = false; |
|
495 | + } |
|
496 | + } |
|
497 | + if ($row_is_completely_empty) { |
|
498 | + continue; |
|
499 | + } |
|
500 | + // find the PK in the row of data (or a combined key if |
|
501 | + // there is no primary key) |
|
502 | + if ($model->has_primary_key_field()) { |
|
503 | + $id_in_csv = $model_object_data[ $model->primary_key_name() ]; |
|
504 | + } else { |
|
505 | + $id_in_csv = $model->get_index_primary_key_string($model_object_data); |
|
506 | + } |
|
507 | + |
|
508 | + |
|
509 | + $model_object_data = $this->_replace_temp_ids_with_mappings( |
|
510 | + $model_object_data, |
|
511 | + $model, |
|
512 | + $old_db_to_new_db_mapping, |
|
513 | + $export_from_site_a_to_b |
|
514 | + ); |
|
515 | + // now we need to decide if we're going to add a new model object given the $model_object_data, |
|
516 | + // or just update. |
|
517 | + if ($export_from_site_a_to_b) { |
|
518 | + $what_to_do = $this->_decide_whether_to_insert_or_update_given_data_from_other_db( |
|
519 | + $id_in_csv, |
|
520 | + $model_object_data, |
|
521 | + $model, |
|
522 | + $old_db_to_new_db_mapping |
|
523 | + ); |
|
524 | + } else {// this is just a re-import |
|
525 | + $what_to_do = $this->_decide_whether_to_insert_or_update_given_data_from_same_db( |
|
526 | + $id_in_csv, |
|
527 | + $model_object_data, |
|
528 | + $model, |
|
529 | + $old_db_to_new_db_mapping |
|
530 | + ); |
|
531 | + } |
|
532 | + if ($what_to_do == self::do_nothing) { |
|
533 | + continue; |
|
534 | + } |
|
535 | + |
|
536 | + // double-check we actually want to insert, if that's what we're planning |
|
537 | + // based on whether this item would be unique in the DB or not |
|
538 | + if ($what_to_do == self::do_insert) { |
|
539 | + // we're supposed to be inserting. But wait, will this thing |
|
540 | + // be acceptable if inserted? |
|
541 | + $conflicting = $model->get_one_conflicting($model_object_data, false); |
|
542 | + if ($conflicting) { |
|
543 | + // ok, this item would conflict if inserted. Just update the item that it conflicts with. |
|
544 | + $what_to_do = self::do_update; |
|
545 | + // and if this model has a primary key, remember its mapping |
|
546 | + if ($model->has_primary_key_field()) { |
|
547 | + $old_db_to_new_db_mapping[ $model_name ][ $id_in_csv ] = $conflicting->ID(); |
|
548 | + $model_object_data[ $model->primary_key_name() ] = $conflicting->ID(); |
|
549 | + } else { |
|
550 | + // we want to update this conflicting item, instead of inserting a conflicting item |
|
551 | + // so we need to make sure they match entirely (its possible that they only conflicted on one field, but we need them to match on other fields |
|
552 | + // for the WHERE conditions in the update). At the time of this comment, there were no models like this |
|
553 | + foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
554 | + $model_object_data[ $key_field->get_name() ] = $conflicting->get( |
|
555 | + $key_field->get_name() |
|
556 | + ); |
|
557 | + } |
|
558 | + } |
|
559 | + } |
|
560 | + } |
|
561 | + if ($what_to_do == self::do_insert) { |
|
562 | + $old_db_to_new_db_mapping = $this->_insert_from_data_array( |
|
563 | + $id_in_csv, |
|
564 | + $model_object_data, |
|
565 | + $model, |
|
566 | + $old_db_to_new_db_mapping |
|
567 | + ); |
|
568 | + } elseif ($what_to_do == self::do_update) { |
|
569 | + $old_db_to_new_db_mapping = $this->_update_from_data_array( |
|
570 | + $id_in_csv, |
|
571 | + $model_object_data, |
|
572 | + $model, |
|
573 | + $old_db_to_new_db_mapping |
|
574 | + ); |
|
575 | + } else { |
|
576 | + throw new EE_Error( |
|
577 | + sprintf( |
|
578 | + __( |
|
579 | + 'Programming error. We shoudl be inserting or updating, but instead we are being told to "%s", whifh is invalid', |
|
580 | + 'event_espresso' |
|
581 | + ), |
|
582 | + $what_to_do |
|
583 | + ) |
|
584 | + ); |
|
585 | + } |
|
586 | + } |
|
587 | + } |
|
588 | + return $old_db_to_new_db_mapping; |
|
589 | + } |
|
590 | + |
|
591 | + |
|
592 | + /** |
|
593 | + * Decides whether or not to insert, given that this data is from another database. |
|
594 | + * So, if the primary key of this $model_object_data already exists in the database, |
|
595 | + * it's just a coincidence and we should still insert. The only time we should |
|
596 | + * update is when we know what it maps to, or there's something that would |
|
597 | + * conflict (and we should instead just update that conflicting thing) |
|
598 | + * |
|
599 | + * @param string $id_in_csv |
|
600 | + * @param array $model_object_data by reference so it can be modified |
|
601 | + * @param EEM_Base $model |
|
602 | + * @param array $old_db_to_new_db_mapping by reference so it can be modified |
|
603 | + * @return string one of the consts on this class that starts with do_* |
|
604 | + */ |
|
605 | + protected function _decide_whether_to_insert_or_update_given_data_from_other_db( |
|
606 | + $id_in_csv, |
|
607 | + $model_object_data, |
|
608 | + $model, |
|
609 | + $old_db_to_new_db_mapping |
|
610 | + ) { |
|
611 | + $model_name = $model->get_this_model_name(); |
|
612 | + // if it's a site-to-site export-and-import, see if this modelobject's id |
|
613 | + // in the old data that we know of |
|
614 | + if (isset($old_db_to_new_db_mapping[ $model_name ][ $id_in_csv ])) { |
|
615 | + return self::do_update; |
|
616 | + } else { |
|
617 | + return self::do_insert; |
|
618 | + } |
|
619 | + } |
|
620 | + |
|
621 | + /** |
|
622 | + * If this thing basically already exists in the database, we want to update it; |
|
623 | + * otherwise insert it (ie, someone tweaked the CSV file, or the item was |
|
624 | + * deleted in the database so it should be re-inserted) |
|
625 | + * |
|
626 | + * @param type $id_in_csv |
|
627 | + * @param type $model_object_data |
|
628 | + * @param EEM_Base $model |
|
629 | + * @param type $old_db_to_new_db_mapping |
|
630 | + * @return |
|
631 | + */ |
|
632 | + protected function _decide_whether_to_insert_or_update_given_data_from_same_db( |
|
633 | + $id_in_csv, |
|
634 | + $model_object_data, |
|
635 | + $model |
|
636 | + ) { |
|
637 | + // in this case, check if this thing ACTUALLY exists in the database |
|
638 | + if ($model->get_one_conflicting($model_object_data)) { |
|
639 | + return self::do_update; |
|
640 | + } else { |
|
641 | + return self::do_insert; |
|
642 | + } |
|
643 | + } |
|
644 | + |
|
645 | + /** |
|
646 | + * Using the $old_db_to_new_db_mapping array, replaces all the temporary IDs |
|
647 | + * with their mapped real IDs. Eg, if importing from site A to B, the mapping |
|
648 | + * file may indicate that the ID "my_event_id" maps to an actual event ID of 123. |
|
649 | + * So this function searches for any event temp Ids called "my_event_id" and |
|
650 | + * replaces them with 123. |
|
651 | + * Also, if there is no temp ID for the INT foreign keys from another database, |
|
652 | + * replaces them with 0 or the field's default. |
|
653 | + * |
|
654 | + * @param type $model_object_data |
|
655 | + * @param EEM_Base $model |
|
656 | + * @param type $old_db_to_new_db_mapping |
|
657 | + * @param boolean $export_from_site_a_to_b |
|
658 | + * @return array updated model object data with temp IDs removed |
|
659 | + */ |
|
660 | + protected function _replace_temp_ids_with_mappings( |
|
661 | + $model_object_data, |
|
662 | + $model, |
|
663 | + $old_db_to_new_db_mapping, |
|
664 | + $export_from_site_a_to_b |
|
665 | + ) { |
|
666 | + // if this model object's primary key is in the mapping, replace it |
|
667 | + if ($model->has_primary_key_field() && |
|
668 | + $model->get_primary_key_field()->is_auto_increment() && |
|
669 | + isset($old_db_to_new_db_mapping[ $model->get_this_model_name() ]) && |
|
670 | + isset( |
|
671 | + $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $model_object_data[ $model->primary_key_name() ] ] |
|
672 | + )) { |
|
673 | + $model_object_data[ $model->primary_key_name() ] = $old_db_to_new_db_mapping[ $model->get_this_model_name( |
|
674 | + ) ][ $model_object_data[ $model->primary_key_name() ] ]; |
|
675 | + } |
|
676 | + |
|
677 | + try { |
|
678 | + $model_name_field = $model->get_field_containing_related_model_name(); |
|
679 | + $models_pointed_to_by_model_name_field = $model_name_field->get_model_names_pointed_to(); |
|
680 | + } catch (EE_Error $e) { |
|
681 | + $model_name_field = null; |
|
682 | + $models_pointed_to_by_model_name_field = array(); |
|
683 | + } |
|
684 | + foreach ($model->field_settings(true) as $field_obj) { |
|
685 | + if ($field_obj instanceof EE_Foreign_Key_Int_Field) { |
|
686 | + $models_pointed_to = $field_obj->get_model_names_pointed_to(); |
|
687 | + $found_a_mapping = false; |
|
688 | + foreach ($models_pointed_to as $model_pointed_to_by_fk) { |
|
689 | + if ($model_name_field) { |
|
690 | + $value_of_model_name_field = $model_object_data[ $model_name_field->get_name() ]; |
|
691 | + if ($value_of_model_name_field == $model_pointed_to_by_fk) { |
|
692 | + $model_object_data[ $field_obj->get_name() ] = $this->_find_mapping_in( |
|
693 | + $model_object_data[ $field_obj->get_name() ], |
|
694 | + $model_pointed_to_by_fk, |
|
695 | + $old_db_to_new_db_mapping, |
|
696 | + $export_from_site_a_to_b |
|
697 | + ); |
|
698 | + $found_a_mapping = true; |
|
699 | + break; |
|
700 | + } |
|
701 | + } else { |
|
702 | + $model_object_data[ $field_obj->get_name() ] = $this->_find_mapping_in( |
|
703 | + $model_object_data[ $field_obj->get_name() ], |
|
704 | + $model_pointed_to_by_fk, |
|
705 | + $old_db_to_new_db_mapping, |
|
706 | + $export_from_site_a_to_b |
|
707 | + ); |
|
708 | + $found_a_mapping = true; |
|
709 | + } |
|
710 | + // once we've found a mapping for this field no need to continue |
|
711 | + if ($found_a_mapping) { |
|
712 | + break; |
|
713 | + } |
|
714 | + } |
|
715 | + } else { |
|
716 | + // it's a string foreign key (which we leave alone, because those are things |
|
717 | + // like country names, which we'd really rather not make 2 USAs etc (we'd actually |
|
718 | + // prefer to just update one) |
|
719 | + // or it's just a regular value that ought to be replaced |
|
720 | + } |
|
721 | + } |
|
722 | + // |
|
723 | + if ($model instanceof EEM_Term_Taxonomy) { |
|
724 | + $model_object_data = $this->_handle_split_term_ids($model_object_data); |
|
725 | + } |
|
726 | + return $model_object_data; |
|
727 | + } |
|
728 | + |
|
729 | + /** |
|
730 | + * If the data was exported PRE-4.2, but then imported POST-4.2, then the term_id |
|
731 | + * this term-taxonomy refers to may be out-of-date so we need to update it. |
|
732 | + * see https://make.wordpress.org/core/2015/02/16/taxonomy-term-splitting-in-4-2-a-developer-guide/ |
|
733 | + * |
|
734 | + * @param type $model_object_data |
|
735 | + * @return array new model object data |
|
736 | + */ |
|
737 | + protected function _handle_split_term_ids($model_object_data) |
|
738 | + { |
|
739 | + if (isset($model_object_data['term_id']) |
|
740 | + && isset($model_object_data['taxonomy']) |
|
741 | + && apply_filters( |
|
742 | + 'FHEE__EE_Import__handle_split_term_ids__function_exists', |
|
743 | + function_exists('wp_get_split_term'), |
|
744 | + $model_object_data |
|
745 | + )) { |
|
746 | + $new_term_id = wp_get_split_term($model_object_data['term_id'], $model_object_data['taxonomy']); |
|
747 | + if ($new_term_id) { |
|
748 | + $model_object_data['term_id'] = $new_term_id; |
|
749 | + } |
|
750 | + } |
|
751 | + return $model_object_data; |
|
752 | + } |
|
753 | + |
|
754 | + /** |
|
755 | + * Given the object's ID and its model's name, find it int he mapping data, |
|
756 | + * bearing in mind where it came from |
|
757 | + * |
|
758 | + * @param type $object_id |
|
759 | + * @param string $model_name |
|
760 | + * @param array $old_db_to_new_db_mapping |
|
761 | + * @param type $export_from_site_a_to_b |
|
762 | + * @return int |
|
763 | + */ |
|
764 | + protected function _find_mapping_in($object_id, $model_name, $old_db_to_new_db_mapping, $export_from_site_a_to_b) |
|
765 | + { |
|
766 | + if (isset($old_db_to_new_db_mapping[ $model_name ][ $object_id ])) { |
|
767 | + return $old_db_to_new_db_mapping[ $model_name ][ $object_id ]; |
|
768 | + } elseif ($object_id == '0' || $object_id == '') { |
|
769 | + // leave as-is |
|
770 | + return $object_id; |
|
771 | + } elseif ($export_from_site_a_to_b) { |
|
772 | + // we couldn't find a mapping for this, and it's from a different site, |
|
773 | + // so blank it out |
|
774 | + return null; |
|
775 | + } elseif (! $export_from_site_a_to_b) { |
|
776 | + // we coudln't find a mapping for this, but it's from thsi DB anyway |
|
777 | + // so let's just leave it as-is |
|
778 | + return $object_id; |
|
779 | + } |
|
780 | + } |
|
781 | + |
|
782 | + /** |
|
783 | + * |
|
784 | + * @param type $id_in_csv |
|
785 | + * @param type $model_object_data |
|
786 | + * @param EEM_Base $model |
|
787 | + * @param type $old_db_to_new_db_mapping |
|
788 | + * @return array updated $old_db_to_new_db_mapping |
|
789 | + */ |
|
790 | + protected function _insert_from_data_array($id_in_csv, $model_object_data, $model, $old_db_to_new_db_mapping) |
|
791 | + { |
|
792 | + // remove the primary key, if there is one (we don't want it for inserts OR updates) |
|
793 | + // we'll put it back in if we need it |
|
794 | + if ($model->has_primary_key_field() && $model->get_primary_key_field()->is_auto_increment()) { |
|
795 | + $effective_id = $model_object_data[ $model->primary_key_name() ]; |
|
796 | + unset($model_object_data[ $model->primary_key_name() ]); |
|
797 | + } else { |
|
798 | + $effective_id = $model->get_index_primary_key_string($model_object_data); |
|
799 | + } |
|
800 | + // the model takes care of validating the CSV's input |
|
801 | + try { |
|
802 | + $new_id = $model->insert($model_object_data); |
|
803 | + if ($new_id) { |
|
804 | + $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $id_in_csv ] = $new_id; |
|
805 | + $this->_total_inserts++; |
|
806 | + EE_Error::add_success( |
|
807 | + sprintf( |
|
808 | + __("Successfully added new %s (with id %s) with csv data %s", "event_espresso"), |
|
809 | + $model->get_this_model_name(), |
|
810 | + $new_id, |
|
811 | + implode(",", $model_object_data) |
|
812 | + ) |
|
813 | + ); |
|
814 | + } else { |
|
815 | + $this->_total_insert_errors++; |
|
816 | + // put the ID used back in there for the error message |
|
817 | + if ($model->has_primary_key_field()) { |
|
818 | + $model_object_data[ $model->primary_key_name() ] = $effective_id; |
|
819 | + } |
|
820 | + EE_Error::add_error( |
|
821 | + sprintf( |
|
822 | + __("Could not insert new %s with the csv data: %s", "event_espresso"), |
|
823 | + $model->get_this_model_name(), |
|
824 | + http_build_query($model_object_data) |
|
825 | + ), |
|
826 | + __FILE__, |
|
827 | + __FUNCTION__, |
|
828 | + __LINE__ |
|
829 | + ); |
|
830 | + } |
|
831 | + } catch (EE_Error $e) { |
|
832 | + $this->_total_insert_errors++; |
|
833 | + if ($model->has_primary_key_field()) { |
|
834 | + $model_object_data[ $model->primary_key_name() ] = $effective_id; |
|
835 | + } |
|
836 | + EE_Error::add_error( |
|
837 | + sprintf( |
|
838 | + __("Could not insert new %s with the csv data: %s because %s", "event_espresso"), |
|
839 | + $model->get_this_model_name(), |
|
840 | + implode(",", $model_object_data), |
|
841 | + $e->getMessage() |
|
842 | + ), |
|
843 | + __FILE__, |
|
844 | + __FUNCTION__, |
|
845 | + __LINE__ |
|
846 | + ); |
|
847 | + } |
|
848 | + return $old_db_to_new_db_mapping; |
|
849 | + } |
|
850 | + |
|
851 | + /** |
|
852 | + * Given the model object data, finds the row to update and updates it |
|
853 | + * |
|
854 | + * @param string|int $id_in_csv |
|
855 | + * @param array $model_object_data |
|
856 | + * @param EEM_Base $model |
|
857 | + * @param array $old_db_to_new_db_mapping |
|
858 | + * @return array updated $old_db_to_new_db_mapping |
|
859 | + */ |
|
860 | + protected function _update_from_data_array($id_in_csv, $model_object_data, $model, $old_db_to_new_db_mapping) |
|
861 | + { |
|
862 | + try { |
|
863 | + // let's keep two copies of the model object data: |
|
864 | + // one for performing an update, one for everthing else |
|
865 | + $model_object_data_for_update = $model_object_data; |
|
866 | + if ($model->has_primary_key_field()) { |
|
867 | + $conditions = array($model->primary_key_name() => $model_object_data[ $model->primary_key_name() ]); |
|
868 | + // remove the primary key because we shouldn't use it for updating |
|
869 | + unset($model_object_data_for_update[ $model->primary_key_name() ]); |
|
870 | + } elseif ($model->get_combined_primary_key_fields() > 1) { |
|
871 | + $conditions = array(); |
|
872 | + foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
873 | + $conditions[ $key_field->get_name() ] = $model_object_data[ $key_field->get_name() ]; |
|
874 | + } |
|
875 | + } else { |
|
876 | + $model->primary_key_name( |
|
877 | + );// this shoudl just throw an exception, explaining that we dont have a primary key (or a combine dkey) |
|
878 | + } |
|
879 | + |
|
880 | + $success = $model->update($model_object_data_for_update, array($conditions)); |
|
881 | + if ($success) { |
|
882 | + $this->_total_updates++; |
|
883 | + EE_Error::add_success( |
|
884 | + sprintf( |
|
885 | + __("Successfully updated %s with csv data %s", "event_espresso"), |
|
886 | + $model->get_this_model_name(), |
|
887 | + implode(",", $model_object_data_for_update) |
|
888 | + ) |
|
889 | + ); |
|
890 | + // we should still record the mapping even though it was an update |
|
891 | + // because if we were going to insert somethign but it was going to conflict |
|
892 | + // we would have last-minute decided to update. So we'd like to know what we updated |
|
893 | + // and so we record what record ended up being updated using the mapping |
|
894 | + if ($model->has_primary_key_field()) { |
|
895 | + $new_key_for_mapping = $model_object_data[ $model->primary_key_name() ]; |
|
896 | + } else { |
|
897 | + // no primary key just a combined key |
|
898 | + $new_key_for_mapping = $model->get_index_primary_key_string($model_object_data); |
|
899 | + } |
|
900 | + $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $id_in_csv ] = $new_key_for_mapping; |
|
901 | + } else { |
|
902 | + $matched_items = $model->get_all(array($conditions)); |
|
903 | + if (! $matched_items) { |
|
904 | + // no items were matched (so we shouldn't have updated)... but then we should have inserted? what the heck? |
|
905 | + $this->_total_update_errors++; |
|
906 | + EE_Error::add_error( |
|
907 | + sprintf( |
|
908 | + __( |
|
909 | + "Could not update %s with the csv data: '%s' for an unknown reason (using WHERE conditions %s)", |
|
910 | + "event_espresso" |
|
911 | + ), |
|
912 | + $model->get_this_model_name(), |
|
913 | + http_build_query($model_object_data), |
|
914 | + http_build_query($conditions) |
|
915 | + ), |
|
916 | + __FILE__, |
|
917 | + __FUNCTION__, |
|
918 | + __LINE__ |
|
919 | + ); |
|
920 | + } else { |
|
921 | + $this->_total_updates++; |
|
922 | + EE_Error::add_success( |
|
923 | + sprintf( |
|
924 | + __( |
|
925 | + "%s with csv data '%s' was found in the database and didn't need updating because all the data is identical.", |
|
926 | + "event_espresso" |
|
927 | + ), |
|
928 | + $model->get_this_model_name(), |
|
929 | + implode(",", $model_object_data) |
|
930 | + ) |
|
931 | + ); |
|
932 | + } |
|
933 | + } |
|
934 | + } catch (EE_Error $e) { |
|
935 | + $this->_total_update_errors++; |
|
936 | + $basic_message = sprintf( |
|
937 | + __("Could not update %s with the csv data: %s because %s", "event_espresso"), |
|
938 | + $model->get_this_model_name(), |
|
939 | + implode(",", $model_object_data), |
|
940 | + $e->getMessage() |
|
941 | + ); |
|
942 | + $debug_message = $basic_message . ' Stack trace: ' . $e->getTraceAsString(); |
|
943 | + EE_Error::add_error("$basic_message | $debug_message", __FILE__, __FUNCTION__, __LINE__); |
|
944 | + } |
|
945 | + return $old_db_to_new_db_mapping; |
|
946 | + } |
|
947 | + |
|
948 | + /** |
|
949 | + * Gets the number of inserts performed since importer was instantiated or reset |
|
950 | + * |
|
951 | + * @return int |
|
952 | + */ |
|
953 | + public function get_total_inserts() |
|
954 | + { |
|
955 | + return $this->_total_inserts; |
|
956 | + } |
|
957 | + |
|
958 | + /** |
|
959 | + * Gets the number of insert errors since importer was instantiated or reset |
|
960 | + * |
|
961 | + * @return int |
|
962 | + */ |
|
963 | + public function get_total_insert_errors() |
|
964 | + { |
|
965 | + return $this->_total_insert_errors; |
|
966 | + } |
|
967 | + |
|
968 | + /** |
|
969 | + * Gets the number of updates performed since importer was instantiated or reset |
|
970 | + * |
|
971 | + * @return int |
|
972 | + */ |
|
973 | + public function get_total_updates() |
|
974 | + { |
|
975 | + return $this->_total_updates; |
|
976 | + } |
|
977 | + |
|
978 | + /** |
|
979 | + * Gets the number of update errors since importer was instantiated or reset |
|
980 | + * |
|
981 | + * @return int |
|
982 | + */ |
|
983 | + public function get_total_update_errors() |
|
984 | + { |
|
985 | + return $this->_total_update_errors; |
|
986 | + } |
|
987 | 987 | } |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | public function import() |
136 | 136 | { |
137 | 137 | |
138 | - require_once(EE_CLASSES . 'EE_CSV.class.php'); |
|
138 | + require_once(EE_CLASSES.'EE_CSV.class.php'); |
|
139 | 139 | $this->EE_CSV = EE_CSV::instance(); |
140 | 140 | |
141 | 141 | if (isset($_REQUEST['import'])) { |
@@ -179,18 +179,18 @@ discard block |
||
179 | 179 | break; |
180 | 180 | } |
181 | 181 | |
182 | - if (! $error_msg) { |
|
182 | + if ( ! $error_msg) { |
|
183 | 183 | $filename = $_FILES['file']['name'][0]; |
184 | 184 | $file_ext = substr(strrchr($filename, '.'), 1); |
185 | 185 | $file_type = $_FILES['file']['type'][0]; |
186 | 186 | $temp_file = $_FILES['file']['tmp_name'][0]; |
187 | - $filesize = $_FILES['file']['size'][0] / 1024;// convert from bytes to KB |
|
187 | + $filesize = $_FILES['file']['size'][0] / 1024; // convert from bytes to KB |
|
188 | 188 | |
189 | 189 | if ($file_ext == 'csv') { |
190 | - $max_upload = $this->EE_CSV->get_max_upload_size();// max upload size in KB |
|
190 | + $max_upload = $this->EE_CSV->get_max_upload_size(); // max upload size in KB |
|
191 | 191 | if ($filesize < $max_upload || true) { |
192 | 192 | $wp_upload_dir = str_replace(array('\\', '/'), DS, wp_upload_dir()); |
193 | - $path_to_file = $wp_upload_dir['basedir'] . DS . 'espresso' . DS . $filename; |
|
193 | + $path_to_file = $wp_upload_dir['basedir'].DS.'espresso'.DS.$filename; |
|
194 | 194 | |
195 | 195 | if (move_uploaded_file($temp_file, $path_to_file)) { |
196 | 196 | // convert csv to array |
@@ -324,8 +324,8 @@ discard block |
||
324 | 324 | // begin looking through the $csv_data_array, expecting the toplevel key to be the model's name... |
325 | 325 | $old_site_url = 'none-specified'; |
326 | 326 | // hanlde metadata |
327 | - if (isset($csv_data_array[ EE_CSV::metadata_header ])) { |
|
328 | - $csv_metadata = array_shift($csv_data_array[ EE_CSV::metadata_header ]); |
|
327 | + if (isset($csv_data_array[EE_CSV::metadata_header])) { |
|
328 | + $csv_metadata = array_shift($csv_data_array[EE_CSV::metadata_header]); |
|
329 | 329 | // ok so its metadata, dont try to save it to ehte db obviously... |
330 | 330 | if (isset($csv_metadata['site_url']) && $csv_metadata['site_url'] == site_url()) { |
331 | 331 | EE_Error::add_attention( |
@@ -350,14 +350,14 @@ discard block |
||
350 | 350 | ) |
351 | 351 | ); |
352 | 352 | }; |
353 | - unset($csv_data_array[ EE_CSV::metadata_header ]); |
|
353 | + unset($csv_data_array[EE_CSV::metadata_header]); |
|
354 | 354 | } |
355 | 355 | /** |
356 | 356 | * @var $old_db_to_new_db_mapping 2d array: toplevel keys being model names, bottom-level keys being the original key, and |
357 | 357 | * the value will be the newly-inserted ID. |
358 | 358 | * If we have already imported data from the same website via CSV, it shoudl be kept in this wp option |
359 | 359 | */ |
360 | - $old_db_to_new_db_mapping = get_option('ee_id_mapping_from' . sanitize_title($old_site_url), array()); |
|
360 | + $old_db_to_new_db_mapping = get_option('ee_id_mapping_from'.sanitize_title($old_site_url), array()); |
|
361 | 361 | if ($old_db_to_new_db_mapping) { |
362 | 362 | EE_Error::add_attention( |
363 | 363 | sprintf( |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | ); |
378 | 378 | |
379 | 379 | // save the mapping from old db to new db in case they try re-importing the same data from the same website again |
380 | - update_option('ee_id_mapping_from' . sanitize_title($old_site_url), $old_db_to_new_db_mapping); |
|
380 | + update_option('ee_id_mapping_from'.sanitize_title($old_site_url), $old_db_to_new_db_mapping); |
|
381 | 381 | |
382 | 382 | if ($this->_total_updates > 0) { |
383 | 383 | EE_Error::add_success( |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | // find the PK in the row of data (or a combined key if |
501 | 501 | // there is no primary key) |
502 | 502 | if ($model->has_primary_key_field()) { |
503 | - $id_in_csv = $model_object_data[ $model->primary_key_name() ]; |
|
503 | + $id_in_csv = $model_object_data[$model->primary_key_name()]; |
|
504 | 504 | } else { |
505 | 505 | $id_in_csv = $model->get_index_primary_key_string($model_object_data); |
506 | 506 | } |
@@ -544,14 +544,14 @@ discard block |
||
544 | 544 | $what_to_do = self::do_update; |
545 | 545 | // and if this model has a primary key, remember its mapping |
546 | 546 | if ($model->has_primary_key_field()) { |
547 | - $old_db_to_new_db_mapping[ $model_name ][ $id_in_csv ] = $conflicting->ID(); |
|
548 | - $model_object_data[ $model->primary_key_name() ] = $conflicting->ID(); |
|
547 | + $old_db_to_new_db_mapping[$model_name][$id_in_csv] = $conflicting->ID(); |
|
548 | + $model_object_data[$model->primary_key_name()] = $conflicting->ID(); |
|
549 | 549 | } else { |
550 | 550 | // we want to update this conflicting item, instead of inserting a conflicting item |
551 | 551 | // so we need to make sure they match entirely (its possible that they only conflicted on one field, but we need them to match on other fields |
552 | 552 | // for the WHERE conditions in the update). At the time of this comment, there were no models like this |
553 | 553 | foreach ($model->get_combined_primary_key_fields() as $key_field) { |
554 | - $model_object_data[ $key_field->get_name() ] = $conflicting->get( |
|
554 | + $model_object_data[$key_field->get_name()] = $conflicting->get( |
|
555 | 555 | $key_field->get_name() |
556 | 556 | ); |
557 | 557 | } |
@@ -611,7 +611,7 @@ discard block |
||
611 | 611 | $model_name = $model->get_this_model_name(); |
612 | 612 | // if it's a site-to-site export-and-import, see if this modelobject's id |
613 | 613 | // in the old data that we know of |
614 | - if (isset($old_db_to_new_db_mapping[ $model_name ][ $id_in_csv ])) { |
|
614 | + if (isset($old_db_to_new_db_mapping[$model_name][$id_in_csv])) { |
|
615 | 615 | return self::do_update; |
616 | 616 | } else { |
617 | 617 | return self::do_insert; |
@@ -666,12 +666,12 @@ discard block |
||
666 | 666 | // if this model object's primary key is in the mapping, replace it |
667 | 667 | if ($model->has_primary_key_field() && |
668 | 668 | $model->get_primary_key_field()->is_auto_increment() && |
669 | - isset($old_db_to_new_db_mapping[ $model->get_this_model_name() ]) && |
|
669 | + isset($old_db_to_new_db_mapping[$model->get_this_model_name()]) && |
|
670 | 670 | isset( |
671 | - $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $model_object_data[ $model->primary_key_name() ] ] |
|
671 | + $old_db_to_new_db_mapping[$model->get_this_model_name()][$model_object_data[$model->primary_key_name()]] |
|
672 | 672 | )) { |
673 | - $model_object_data[ $model->primary_key_name() ] = $old_db_to_new_db_mapping[ $model->get_this_model_name( |
|
674 | - ) ][ $model_object_data[ $model->primary_key_name() ] ]; |
|
673 | + $model_object_data[$model->primary_key_name()] = $old_db_to_new_db_mapping[$model->get_this_model_name( |
|
674 | + )][$model_object_data[$model->primary_key_name()]]; |
|
675 | 675 | } |
676 | 676 | |
677 | 677 | try { |
@@ -687,10 +687,10 @@ discard block |
||
687 | 687 | $found_a_mapping = false; |
688 | 688 | foreach ($models_pointed_to as $model_pointed_to_by_fk) { |
689 | 689 | if ($model_name_field) { |
690 | - $value_of_model_name_field = $model_object_data[ $model_name_field->get_name() ]; |
|
690 | + $value_of_model_name_field = $model_object_data[$model_name_field->get_name()]; |
|
691 | 691 | if ($value_of_model_name_field == $model_pointed_to_by_fk) { |
692 | - $model_object_data[ $field_obj->get_name() ] = $this->_find_mapping_in( |
|
693 | - $model_object_data[ $field_obj->get_name() ], |
|
692 | + $model_object_data[$field_obj->get_name()] = $this->_find_mapping_in( |
|
693 | + $model_object_data[$field_obj->get_name()], |
|
694 | 694 | $model_pointed_to_by_fk, |
695 | 695 | $old_db_to_new_db_mapping, |
696 | 696 | $export_from_site_a_to_b |
@@ -699,8 +699,8 @@ discard block |
||
699 | 699 | break; |
700 | 700 | } |
701 | 701 | } else { |
702 | - $model_object_data[ $field_obj->get_name() ] = $this->_find_mapping_in( |
|
703 | - $model_object_data[ $field_obj->get_name() ], |
|
702 | + $model_object_data[$field_obj->get_name()] = $this->_find_mapping_in( |
|
703 | + $model_object_data[$field_obj->get_name()], |
|
704 | 704 | $model_pointed_to_by_fk, |
705 | 705 | $old_db_to_new_db_mapping, |
706 | 706 | $export_from_site_a_to_b |
@@ -763,8 +763,8 @@ discard block |
||
763 | 763 | */ |
764 | 764 | protected function _find_mapping_in($object_id, $model_name, $old_db_to_new_db_mapping, $export_from_site_a_to_b) |
765 | 765 | { |
766 | - if (isset($old_db_to_new_db_mapping[ $model_name ][ $object_id ])) { |
|
767 | - return $old_db_to_new_db_mapping[ $model_name ][ $object_id ]; |
|
766 | + if (isset($old_db_to_new_db_mapping[$model_name][$object_id])) { |
|
767 | + return $old_db_to_new_db_mapping[$model_name][$object_id]; |
|
768 | 768 | } elseif ($object_id == '0' || $object_id == '') { |
769 | 769 | // leave as-is |
770 | 770 | return $object_id; |
@@ -772,7 +772,7 @@ discard block |
||
772 | 772 | // we couldn't find a mapping for this, and it's from a different site, |
773 | 773 | // so blank it out |
774 | 774 | return null; |
775 | - } elseif (! $export_from_site_a_to_b) { |
|
775 | + } elseif ( ! $export_from_site_a_to_b) { |
|
776 | 776 | // we coudln't find a mapping for this, but it's from thsi DB anyway |
777 | 777 | // so let's just leave it as-is |
778 | 778 | return $object_id; |
@@ -792,8 +792,8 @@ discard block |
||
792 | 792 | // remove the primary key, if there is one (we don't want it for inserts OR updates) |
793 | 793 | // we'll put it back in if we need it |
794 | 794 | if ($model->has_primary_key_field() && $model->get_primary_key_field()->is_auto_increment()) { |
795 | - $effective_id = $model_object_data[ $model->primary_key_name() ]; |
|
796 | - unset($model_object_data[ $model->primary_key_name() ]); |
|
795 | + $effective_id = $model_object_data[$model->primary_key_name()]; |
|
796 | + unset($model_object_data[$model->primary_key_name()]); |
|
797 | 797 | } else { |
798 | 798 | $effective_id = $model->get_index_primary_key_string($model_object_data); |
799 | 799 | } |
@@ -801,7 +801,7 @@ discard block |
||
801 | 801 | try { |
802 | 802 | $new_id = $model->insert($model_object_data); |
803 | 803 | if ($new_id) { |
804 | - $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $id_in_csv ] = $new_id; |
|
804 | + $old_db_to_new_db_mapping[$model->get_this_model_name()][$id_in_csv] = $new_id; |
|
805 | 805 | $this->_total_inserts++; |
806 | 806 | EE_Error::add_success( |
807 | 807 | sprintf( |
@@ -815,7 +815,7 @@ discard block |
||
815 | 815 | $this->_total_insert_errors++; |
816 | 816 | // put the ID used back in there for the error message |
817 | 817 | if ($model->has_primary_key_field()) { |
818 | - $model_object_data[ $model->primary_key_name() ] = $effective_id; |
|
818 | + $model_object_data[$model->primary_key_name()] = $effective_id; |
|
819 | 819 | } |
820 | 820 | EE_Error::add_error( |
821 | 821 | sprintf( |
@@ -831,7 +831,7 @@ discard block |
||
831 | 831 | } catch (EE_Error $e) { |
832 | 832 | $this->_total_insert_errors++; |
833 | 833 | if ($model->has_primary_key_field()) { |
834 | - $model_object_data[ $model->primary_key_name() ] = $effective_id; |
|
834 | + $model_object_data[$model->primary_key_name()] = $effective_id; |
|
835 | 835 | } |
836 | 836 | EE_Error::add_error( |
837 | 837 | sprintf( |
@@ -864,17 +864,17 @@ discard block |
||
864 | 864 | // one for performing an update, one for everthing else |
865 | 865 | $model_object_data_for_update = $model_object_data; |
866 | 866 | if ($model->has_primary_key_field()) { |
867 | - $conditions = array($model->primary_key_name() => $model_object_data[ $model->primary_key_name() ]); |
|
867 | + $conditions = array($model->primary_key_name() => $model_object_data[$model->primary_key_name()]); |
|
868 | 868 | // remove the primary key because we shouldn't use it for updating |
869 | - unset($model_object_data_for_update[ $model->primary_key_name() ]); |
|
869 | + unset($model_object_data_for_update[$model->primary_key_name()]); |
|
870 | 870 | } elseif ($model->get_combined_primary_key_fields() > 1) { |
871 | 871 | $conditions = array(); |
872 | 872 | foreach ($model->get_combined_primary_key_fields() as $key_field) { |
873 | - $conditions[ $key_field->get_name() ] = $model_object_data[ $key_field->get_name() ]; |
|
873 | + $conditions[$key_field->get_name()] = $model_object_data[$key_field->get_name()]; |
|
874 | 874 | } |
875 | 875 | } else { |
876 | 876 | $model->primary_key_name( |
877 | - );// this shoudl just throw an exception, explaining that we dont have a primary key (or a combine dkey) |
|
877 | + ); // this shoudl just throw an exception, explaining that we dont have a primary key (or a combine dkey) |
|
878 | 878 | } |
879 | 879 | |
880 | 880 | $success = $model->update($model_object_data_for_update, array($conditions)); |
@@ -892,15 +892,15 @@ discard block |
||
892 | 892 | // we would have last-minute decided to update. So we'd like to know what we updated |
893 | 893 | // and so we record what record ended up being updated using the mapping |
894 | 894 | if ($model->has_primary_key_field()) { |
895 | - $new_key_for_mapping = $model_object_data[ $model->primary_key_name() ]; |
|
895 | + $new_key_for_mapping = $model_object_data[$model->primary_key_name()]; |
|
896 | 896 | } else { |
897 | 897 | // no primary key just a combined key |
898 | 898 | $new_key_for_mapping = $model->get_index_primary_key_string($model_object_data); |
899 | 899 | } |
900 | - $old_db_to_new_db_mapping[ $model->get_this_model_name() ][ $id_in_csv ] = $new_key_for_mapping; |
|
900 | + $old_db_to_new_db_mapping[$model->get_this_model_name()][$id_in_csv] = $new_key_for_mapping; |
|
901 | 901 | } else { |
902 | 902 | $matched_items = $model->get_all(array($conditions)); |
903 | - if (! $matched_items) { |
|
903 | + if ( ! $matched_items) { |
|
904 | 904 | // no items were matched (so we shouldn't have updated)... but then we should have inserted? what the heck? |
905 | 905 | $this->_total_update_errors++; |
906 | 906 | EE_Error::add_error( |
@@ -939,7 +939,7 @@ discard block |
||
939 | 939 | implode(",", $model_object_data), |
940 | 940 | $e->getMessage() |
941 | 941 | ); |
942 | - $debug_message = $basic_message . ' Stack trace: ' . $e->getTraceAsString(); |
|
942 | + $debug_message = $basic_message.' Stack trace: '.$e->getTraceAsString(); |
|
943 | 943 | EE_Error::add_error("$basic_message | $debug_message", __FILE__, __FUNCTION__, __LINE__); |
944 | 944 | } |
945 | 945 | return $old_db_to_new_db_mapping; |