@@ -12,73 +12,73 @@ discard block |
||
12 | 12 | class EE_DMS_4_7_0_Add_Taxes_To_REG_Final_Price extends EE_Data_Migration_Script_Stage_Table |
13 | 13 | { |
14 | 14 | |
15 | - protected $_ticket_table; |
|
16 | - |
|
17 | - protected $_line_item_table; |
|
18 | - |
|
19 | - public function __construct() |
|
20 | - { |
|
21 | - /** @type WPDB $wpdb */ |
|
22 | - global $wpdb; |
|
23 | - $this->_pretty_name = __('Registration Final Price Tax Calculations', 'event_espresso'); |
|
24 | - // define tables |
|
25 | - $this->_old_table = $wpdb->prefix . 'esp_registration'; |
|
26 | - $this->_ticket_table = $wpdb->prefix . 'esp_ticket'; |
|
27 | - $this->_line_item_table = $wpdb->prefix . 'esp_line_item'; |
|
28 | - parent::__construct(); |
|
29 | - } |
|
30 | - |
|
31 | - |
|
32 | - |
|
33 | - /** |
|
34 | - * @return string |
|
35 | - */ |
|
36 | - protected function _get_rest_of_sql_for_query() |
|
37 | - { |
|
38 | - $SQL = "FROM {$this->_old_table} AS reg "; |
|
39 | - $SQL .= "JOIN {$this->_ticket_table} as tkt ON reg.TKT_ID = tkt.TKT_ID "; |
|
40 | - $SQL .= "JOIN {$this->_line_item_table} as line ON reg.TXN_ID = line.TXN_ID "; |
|
41 | - $SQL .= "WHERE tkt.TKT_taxable = 1 "; |
|
42 | - $SQL .= "AND line.LIN_code = 'total' "; |
|
43 | - $SQL .= "AND reg.REG_final_price > 0 "; |
|
44 | - return $SQL; |
|
45 | - } |
|
46 | - |
|
47 | - |
|
48 | - |
|
49 | - /** |
|
50 | - * Counts the records to migrate; the public version may cache it |
|
51 | - * @return int |
|
52 | - */ |
|
53 | - public function _count_records_to_migrate() |
|
54 | - { |
|
55 | - /** @type WPDB $wpdb */ |
|
56 | - global $wpdb; |
|
57 | - $SQL = "SELECT count( reg.REG_ID ) "; |
|
58 | - $SQL .= $this->_get_rest_of_sql_for_query(); |
|
59 | - $count = $wpdb->get_var($SQL); |
|
60 | - return $count; |
|
61 | - } |
|
62 | - |
|
63 | - |
|
64 | - |
|
65 | - /** |
|
66 | - * Gets data for all registrations with taxable tickets in the esp_line_item table |
|
67 | - * @global wpdb $wpdb |
|
68 | - * @param int $limit |
|
69 | - * @return array of arrays like $wpdb->get_results($sql, ARRAY_A) |
|
70 | - */ |
|
71 | - protected function _get_rows($limit) |
|
72 | - { |
|
73 | - /** @type WPDB $wpdb */ |
|
74 | - global $wpdb; |
|
75 | - $start_at_record = $this->count_records_migrated(); |
|
76 | - $SQL = "SELECT reg.REG_ID, reg.REG_final_price, line.LIN_ID "; |
|
77 | - $SQL .= $this->_get_rest_of_sql_for_query(); |
|
78 | - $SQL .= $wpdb->prepare("LIMIT %d, %d", $start_at_record, $limit); |
|
79 | - |
|
80 | - // produces something like: |
|
81 | - /* |
|
15 | + protected $_ticket_table; |
|
16 | + |
|
17 | + protected $_line_item_table; |
|
18 | + |
|
19 | + public function __construct() |
|
20 | + { |
|
21 | + /** @type WPDB $wpdb */ |
|
22 | + global $wpdb; |
|
23 | + $this->_pretty_name = __('Registration Final Price Tax Calculations', 'event_espresso'); |
|
24 | + // define tables |
|
25 | + $this->_old_table = $wpdb->prefix . 'esp_registration'; |
|
26 | + $this->_ticket_table = $wpdb->prefix . 'esp_ticket'; |
|
27 | + $this->_line_item_table = $wpdb->prefix . 'esp_line_item'; |
|
28 | + parent::__construct(); |
|
29 | + } |
|
30 | + |
|
31 | + |
|
32 | + |
|
33 | + /** |
|
34 | + * @return string |
|
35 | + */ |
|
36 | + protected function _get_rest_of_sql_for_query() |
|
37 | + { |
|
38 | + $SQL = "FROM {$this->_old_table} AS reg "; |
|
39 | + $SQL .= "JOIN {$this->_ticket_table} as tkt ON reg.TKT_ID = tkt.TKT_ID "; |
|
40 | + $SQL .= "JOIN {$this->_line_item_table} as line ON reg.TXN_ID = line.TXN_ID "; |
|
41 | + $SQL .= "WHERE tkt.TKT_taxable = 1 "; |
|
42 | + $SQL .= "AND line.LIN_code = 'total' "; |
|
43 | + $SQL .= "AND reg.REG_final_price > 0 "; |
|
44 | + return $SQL; |
|
45 | + } |
|
46 | + |
|
47 | + |
|
48 | + |
|
49 | + /** |
|
50 | + * Counts the records to migrate; the public version may cache it |
|
51 | + * @return int |
|
52 | + */ |
|
53 | + public function _count_records_to_migrate() |
|
54 | + { |
|
55 | + /** @type WPDB $wpdb */ |
|
56 | + global $wpdb; |
|
57 | + $SQL = "SELECT count( reg.REG_ID ) "; |
|
58 | + $SQL .= $this->_get_rest_of_sql_for_query(); |
|
59 | + $count = $wpdb->get_var($SQL); |
|
60 | + return $count; |
|
61 | + } |
|
62 | + |
|
63 | + |
|
64 | + |
|
65 | + /** |
|
66 | + * Gets data for all registrations with taxable tickets in the esp_line_item table |
|
67 | + * @global wpdb $wpdb |
|
68 | + * @param int $limit |
|
69 | + * @return array of arrays like $wpdb->get_results($sql, ARRAY_A) |
|
70 | + */ |
|
71 | + protected function _get_rows($limit) |
|
72 | + { |
|
73 | + /** @type WPDB $wpdb */ |
|
74 | + global $wpdb; |
|
75 | + $start_at_record = $this->count_records_migrated(); |
|
76 | + $SQL = "SELECT reg.REG_ID, reg.REG_final_price, line.LIN_ID "; |
|
77 | + $SQL .= $this->_get_rest_of_sql_for_query(); |
|
78 | + $SQL .= $wpdb->prepare("LIMIT %d, %d", $start_at_record, $limit); |
|
79 | + |
|
80 | + // produces something like: |
|
81 | + /* |
|
82 | 82 | SELECT |
83 | 83 | reg.REG_ID, |
84 | 84 | reg.REG_final_price, |
@@ -95,137 +95,137 @@ discard block |
||
95 | 95 | LIMIT 1, 50 |
96 | 96 | */ |
97 | 97 | |
98 | - return $wpdb->get_results($SQL, ARRAY_A); |
|
99 | - } |
|
100 | - |
|
101 | - |
|
102 | - |
|
103 | - /** |
|
104 | - * @param array $row |
|
105 | - * @return void |
|
106 | - */ |
|
107 | - protected function _migrate_old_row($row) |
|
108 | - { |
|
109 | - /** @type WPDB $wpdb */ |
|
110 | - global $wpdb; |
|
111 | - // ensure all required values are present |
|
112 | - if (! isset($row['REG_ID'], $row['REG_final_price'], $row['LIN_ID'])) { |
|
113 | - $this->add_error( |
|
114 | - sprintf( |
|
115 | - __('Invalid query results returned with the following data:%1$s REG_ID=%2$d, REG_final_price=%3$d, LIN_ID=%4$f. Error: "%5$s"', 'event_espresso'), |
|
116 | - '<br />', |
|
117 | - isset($row['REG_ID']) ? $row['REG_ID'] : '', |
|
118 | - isset($row['REG_final_price']) ? $row['REG_final_price'] : '', |
|
119 | - isset($row['LIN_ID']) ? $row['LIN_ID'] : '', |
|
120 | - $wpdb->last_error |
|
121 | - ) |
|
122 | - ); |
|
123 | - return; |
|
124 | - } |
|
125 | - // get tax subtotal |
|
126 | - $tax_subtotal_line_item_ID = $this->_get_line_item_ID_for_tax_subtotal($row['LIN_ID']); |
|
127 | - if (! $tax_subtotal_line_item_ID) { |
|
128 | - $this->add_error( |
|
129 | - sprintf( |
|
130 | - __('Invalid line item ID returned. Error: "%1$s"', 'event_espresso'), |
|
131 | - $wpdb->last_error |
|
132 | - ) |
|
133 | - ); |
|
134 | - return; |
|
135 | - } |
|
136 | - // now get taxes |
|
137 | - $taxes = $this->_get_tax_amounts($tax_subtotal_line_item_ID); |
|
138 | - // apply taxes to registration final price |
|
139 | - $this->_apply_taxes($row['REG_ID'], $row['REG_final_price'], $taxes); |
|
140 | - } |
|
141 | - |
|
142 | - |
|
143 | - |
|
144 | - /** |
|
145 | - * _get_tax_subtotal |
|
146 | - * |
|
147 | - * @param int $LIN_ID |
|
148 | - * @return int |
|
149 | - */ |
|
150 | - protected function _get_line_item_ID_for_tax_subtotal($LIN_ID) |
|
151 | - { |
|
152 | - /** @type WPDB $wpdb */ |
|
153 | - global $wpdb; |
|
154 | - $SQL = "SELECT LIN_ID "; |
|
155 | - $SQL .= "FROM {$this->_line_item_table} "; |
|
156 | - $SQL .= "WHERE LIN_parent = %d "; |
|
157 | - $SQL .= "AND LIN_code = 'taxes'"; |
|
158 | - return $wpdb->get_var($wpdb->prepare($SQL, $LIN_ID)); |
|
159 | - } |
|
160 | - |
|
161 | - |
|
162 | - |
|
163 | - /** |
|
164 | - * _get_tax_subtotal |
|
165 | - * |
|
166 | - * @param int $LIN_ID |
|
167 | - * @return array |
|
168 | - */ |
|
169 | - protected function _get_tax_amounts($LIN_ID) |
|
170 | - { |
|
171 | - /** @type WPDB $wpdb */ |
|
172 | - global $wpdb; |
|
173 | - $SQL = "SELECT LIN_percent "; |
|
174 | - $SQL .= "FROM {$this->_line_item_table} "; |
|
175 | - $SQL .= "WHERE LIN_parent = %d"; |
|
176 | - return $wpdb->get_results($wpdb->prepare($SQL, $LIN_ID), OBJECT_K); |
|
177 | - } |
|
178 | - |
|
179 | - |
|
180 | - |
|
181 | - /** |
|
182 | - * _apply_taxes |
|
183 | - * |
|
184 | - * @param int $REG_ID |
|
185 | - * @param float $final_price |
|
186 | - * @param array $taxes |
|
187 | - * @return void |
|
188 | - */ |
|
189 | - protected function _apply_taxes($REG_ID = 0, $final_price = 0.00, $taxes = array()) |
|
190 | - { |
|
191 | - if (is_array($taxes) && ! empty($taxes)) { |
|
192 | - $total_taxes = 0; |
|
193 | - foreach ($taxes as $tax) { |
|
194 | - $total_taxes += $final_price * ( $tax->LIN_percent / 100 ); |
|
195 | - } |
|
196 | - $final_price += $total_taxes; |
|
197 | - $this->_update_registration_final_price($REG_ID, $final_price); |
|
198 | - } |
|
199 | - } |
|
200 | - |
|
201 | - |
|
202 | - |
|
203 | - /** |
|
204 | - * _update_registration_final_price |
|
205 | - * |
|
206 | - * @param int $REG_ID |
|
207 | - * @param float $REG_final_price |
|
208 | - * @return void |
|
209 | - */ |
|
210 | - protected function _update_registration_final_price($REG_ID = 0, $REG_final_price = 0.00) |
|
211 | - { |
|
212 | - /** @type WPDB $wpdb */ |
|
213 | - global $wpdb; |
|
214 | - $success = $wpdb->update( |
|
215 | - $this->_old_table, |
|
216 | - array( 'REG_final_price' => $REG_final_price ), // data |
|
217 | - array( 'REG_ID' => $REG_ID ), // where |
|
218 | - array( '%f' ), // data format |
|
219 | - array( '%d' ) // where format |
|
220 | - ); |
|
221 | - if ($success === false) { |
|
222 | - $this->add_error( |
|
223 | - sprintf( |
|
224 | - __('Could not update registration final price value for registration ID=%1$d because "%2$s"', 'event_espresso'), |
|
225 | - $REG_ID, |
|
226 | - $wpdb->last_error |
|
227 | - ) |
|
228 | - ); |
|
229 | - } |
|
230 | - } |
|
98 | + return $wpdb->get_results($SQL, ARRAY_A); |
|
99 | + } |
|
100 | + |
|
101 | + |
|
102 | + |
|
103 | + /** |
|
104 | + * @param array $row |
|
105 | + * @return void |
|
106 | + */ |
|
107 | + protected function _migrate_old_row($row) |
|
108 | + { |
|
109 | + /** @type WPDB $wpdb */ |
|
110 | + global $wpdb; |
|
111 | + // ensure all required values are present |
|
112 | + if (! isset($row['REG_ID'], $row['REG_final_price'], $row['LIN_ID'])) { |
|
113 | + $this->add_error( |
|
114 | + sprintf( |
|
115 | + __('Invalid query results returned with the following data:%1$s REG_ID=%2$d, REG_final_price=%3$d, LIN_ID=%4$f. Error: "%5$s"', 'event_espresso'), |
|
116 | + '<br />', |
|
117 | + isset($row['REG_ID']) ? $row['REG_ID'] : '', |
|
118 | + isset($row['REG_final_price']) ? $row['REG_final_price'] : '', |
|
119 | + isset($row['LIN_ID']) ? $row['LIN_ID'] : '', |
|
120 | + $wpdb->last_error |
|
121 | + ) |
|
122 | + ); |
|
123 | + return; |
|
124 | + } |
|
125 | + // get tax subtotal |
|
126 | + $tax_subtotal_line_item_ID = $this->_get_line_item_ID_for_tax_subtotal($row['LIN_ID']); |
|
127 | + if (! $tax_subtotal_line_item_ID) { |
|
128 | + $this->add_error( |
|
129 | + sprintf( |
|
130 | + __('Invalid line item ID returned. Error: "%1$s"', 'event_espresso'), |
|
131 | + $wpdb->last_error |
|
132 | + ) |
|
133 | + ); |
|
134 | + return; |
|
135 | + } |
|
136 | + // now get taxes |
|
137 | + $taxes = $this->_get_tax_amounts($tax_subtotal_line_item_ID); |
|
138 | + // apply taxes to registration final price |
|
139 | + $this->_apply_taxes($row['REG_ID'], $row['REG_final_price'], $taxes); |
|
140 | + } |
|
141 | + |
|
142 | + |
|
143 | + |
|
144 | + /** |
|
145 | + * _get_tax_subtotal |
|
146 | + * |
|
147 | + * @param int $LIN_ID |
|
148 | + * @return int |
|
149 | + */ |
|
150 | + protected function _get_line_item_ID_for_tax_subtotal($LIN_ID) |
|
151 | + { |
|
152 | + /** @type WPDB $wpdb */ |
|
153 | + global $wpdb; |
|
154 | + $SQL = "SELECT LIN_ID "; |
|
155 | + $SQL .= "FROM {$this->_line_item_table} "; |
|
156 | + $SQL .= "WHERE LIN_parent = %d "; |
|
157 | + $SQL .= "AND LIN_code = 'taxes'"; |
|
158 | + return $wpdb->get_var($wpdb->prepare($SQL, $LIN_ID)); |
|
159 | + } |
|
160 | + |
|
161 | + |
|
162 | + |
|
163 | + /** |
|
164 | + * _get_tax_subtotal |
|
165 | + * |
|
166 | + * @param int $LIN_ID |
|
167 | + * @return array |
|
168 | + */ |
|
169 | + protected function _get_tax_amounts($LIN_ID) |
|
170 | + { |
|
171 | + /** @type WPDB $wpdb */ |
|
172 | + global $wpdb; |
|
173 | + $SQL = "SELECT LIN_percent "; |
|
174 | + $SQL .= "FROM {$this->_line_item_table} "; |
|
175 | + $SQL .= "WHERE LIN_parent = %d"; |
|
176 | + return $wpdb->get_results($wpdb->prepare($SQL, $LIN_ID), OBJECT_K); |
|
177 | + } |
|
178 | + |
|
179 | + |
|
180 | + |
|
181 | + /** |
|
182 | + * _apply_taxes |
|
183 | + * |
|
184 | + * @param int $REG_ID |
|
185 | + * @param float $final_price |
|
186 | + * @param array $taxes |
|
187 | + * @return void |
|
188 | + */ |
|
189 | + protected function _apply_taxes($REG_ID = 0, $final_price = 0.00, $taxes = array()) |
|
190 | + { |
|
191 | + if (is_array($taxes) && ! empty($taxes)) { |
|
192 | + $total_taxes = 0; |
|
193 | + foreach ($taxes as $tax) { |
|
194 | + $total_taxes += $final_price * ( $tax->LIN_percent / 100 ); |
|
195 | + } |
|
196 | + $final_price += $total_taxes; |
|
197 | + $this->_update_registration_final_price($REG_ID, $final_price); |
|
198 | + } |
|
199 | + } |
|
200 | + |
|
201 | + |
|
202 | + |
|
203 | + /** |
|
204 | + * _update_registration_final_price |
|
205 | + * |
|
206 | + * @param int $REG_ID |
|
207 | + * @param float $REG_final_price |
|
208 | + * @return void |
|
209 | + */ |
|
210 | + protected function _update_registration_final_price($REG_ID = 0, $REG_final_price = 0.00) |
|
211 | + { |
|
212 | + /** @type WPDB $wpdb */ |
|
213 | + global $wpdb; |
|
214 | + $success = $wpdb->update( |
|
215 | + $this->_old_table, |
|
216 | + array( 'REG_final_price' => $REG_final_price ), // data |
|
217 | + array( 'REG_ID' => $REG_ID ), // where |
|
218 | + array( '%f' ), // data format |
|
219 | + array( '%d' ) // where format |
|
220 | + ); |
|
221 | + if ($success === false) { |
|
222 | + $this->add_error( |
|
223 | + sprintf( |
|
224 | + __('Could not update registration final price value for registration ID=%1$d because "%2$s"', 'event_espresso'), |
|
225 | + $REG_ID, |
|
226 | + $wpdb->last_error |
|
227 | + ) |
|
228 | + ); |
|
229 | + } |
|
230 | + } |
|
231 | 231 | } |
@@ -22,9 +22,9 @@ discard block |
||
22 | 22 | global $wpdb; |
23 | 23 | $this->_pretty_name = __('Registration Final Price Tax Calculations', 'event_espresso'); |
24 | 24 | // define tables |
25 | - $this->_old_table = $wpdb->prefix . 'esp_registration'; |
|
26 | - $this->_ticket_table = $wpdb->prefix . 'esp_ticket'; |
|
27 | - $this->_line_item_table = $wpdb->prefix . 'esp_line_item'; |
|
25 | + $this->_old_table = $wpdb->prefix.'esp_registration'; |
|
26 | + $this->_ticket_table = $wpdb->prefix.'esp_ticket'; |
|
27 | + $this->_line_item_table = $wpdb->prefix.'esp_line_item'; |
|
28 | 28 | parent::__construct(); |
29 | 29 | } |
30 | 30 | |
@@ -109,7 +109,7 @@ discard block |
||
109 | 109 | /** @type WPDB $wpdb */ |
110 | 110 | global $wpdb; |
111 | 111 | // ensure all required values are present |
112 | - if (! isset($row['REG_ID'], $row['REG_final_price'], $row['LIN_ID'])) { |
|
112 | + if ( ! isset($row['REG_ID'], $row['REG_final_price'], $row['LIN_ID'])) { |
|
113 | 113 | $this->add_error( |
114 | 114 | sprintf( |
115 | 115 | __('Invalid query results returned with the following data:%1$s REG_ID=%2$d, REG_final_price=%3$d, LIN_ID=%4$f. Error: "%5$s"', 'event_espresso'), |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | } |
125 | 125 | // get tax subtotal |
126 | 126 | $tax_subtotal_line_item_ID = $this->_get_line_item_ID_for_tax_subtotal($row['LIN_ID']); |
127 | - if (! $tax_subtotal_line_item_ID) { |
|
127 | + if ( ! $tax_subtotal_line_item_ID) { |
|
128 | 128 | $this->add_error( |
129 | 129 | sprintf( |
130 | 130 | __('Invalid line item ID returned. Error: "%1$s"', 'event_espresso'), |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | if (is_array($taxes) && ! empty($taxes)) { |
192 | 192 | $total_taxes = 0; |
193 | 193 | foreach ($taxes as $tax) { |
194 | - $total_taxes += $final_price * ( $tax->LIN_percent / 100 ); |
|
194 | + $total_taxes += $final_price * ($tax->LIN_percent / 100); |
|
195 | 195 | } |
196 | 196 | $final_price += $total_taxes; |
197 | 197 | $this->_update_registration_final_price($REG_ID, $final_price); |
@@ -213,10 +213,10 @@ discard block |
||
213 | 213 | global $wpdb; |
214 | 214 | $success = $wpdb->update( |
215 | 215 | $this->_old_table, |
216 | - array( 'REG_final_price' => $REG_final_price ), // data |
|
217 | - array( 'REG_ID' => $REG_ID ), // where |
|
218 | - array( '%f' ), // data format |
|
219 | - array( '%d' ) // where format |
|
216 | + array('REG_final_price' => $REG_final_price), // data |
|
217 | + array('REG_ID' => $REG_ID), // where |
|
218 | + array('%f'), // data format |
|
219 | + array('%d') // where format |
|
220 | 220 | ); |
221 | 221 | if ($success === false) { |
222 | 222 | $this->add_error( |
@@ -18,44 +18,44 @@ |
||
18 | 18 | class EE_DMS_Unknown_1_0_0 extends EE_Data_Migration_Script_Base |
19 | 19 | { |
20 | 20 | |
21 | - /** |
|
22 | - * Returns whether or not this data migration script can operate on the given version of the database. |
|
23 | - * Eg, if this migration script can migrate from 3.1.26 or higher (but not anything after 4.0.0), and |
|
24 | - * it's passed a string like '3.1.38B', it should return true |
|
25 | - * |
|
26 | - * @param string $version_string |
|
27 | - * @return boolean |
|
28 | - */ |
|
29 | - public function can_migrate_from_version($version_string) |
|
30 | - { |
|
31 | - return false; |
|
32 | - } |
|
33 | - |
|
34 | - public function schema_changes_after_migration() |
|
35 | - { |
|
36 | - return; |
|
37 | - } |
|
38 | - |
|
39 | - public function schema_changes_before_migration() |
|
40 | - { |
|
41 | - return; |
|
42 | - } |
|
43 | - |
|
44 | - |
|
45 | - /** |
|
46 | - * All children of this must call parent::__construct() at the end of their constructor or suffer the consequences! |
|
47 | - * |
|
48 | - * @param TableManager $table_manager |
|
49 | - * @param TableAnalysis $table_analysis |
|
50 | - */ |
|
51 | - public function __construct(TableManager $table_manager = null, TableAnalysis $table_analysis = null) |
|
52 | - { |
|
53 | - $this->_migration_stages = array(); |
|
54 | - $this->_pretty_name = __("Fatal Uncatchable Error Occurred", "event_espresso"); |
|
55 | - parent::__construct($table_manager, $table_analysis); |
|
56 | - } |
|
57 | - |
|
58 | - public function migration_page_hooks() |
|
59 | - { |
|
60 | - } |
|
21 | + /** |
|
22 | + * Returns whether or not this data migration script can operate on the given version of the database. |
|
23 | + * Eg, if this migration script can migrate from 3.1.26 or higher (but not anything after 4.0.0), and |
|
24 | + * it's passed a string like '3.1.38B', it should return true |
|
25 | + * |
|
26 | + * @param string $version_string |
|
27 | + * @return boolean |
|
28 | + */ |
|
29 | + public function can_migrate_from_version($version_string) |
|
30 | + { |
|
31 | + return false; |
|
32 | + } |
|
33 | + |
|
34 | + public function schema_changes_after_migration() |
|
35 | + { |
|
36 | + return; |
|
37 | + } |
|
38 | + |
|
39 | + public function schema_changes_before_migration() |
|
40 | + { |
|
41 | + return; |
|
42 | + } |
|
43 | + |
|
44 | + |
|
45 | + /** |
|
46 | + * All children of this must call parent::__construct() at the end of their constructor or suffer the consequences! |
|
47 | + * |
|
48 | + * @param TableManager $table_manager |
|
49 | + * @param TableAnalysis $table_analysis |
|
50 | + */ |
|
51 | + public function __construct(TableManager $table_manager = null, TableAnalysis $table_analysis = null) |
|
52 | + { |
|
53 | + $this->_migration_stages = array(); |
|
54 | + $this->_pretty_name = __("Fatal Uncatchable Error Occurred", "event_espresso"); |
|
55 | + parent::__construct($table_manager, $table_analysis); |
|
56 | + } |
|
57 | + |
|
58 | + public function migration_page_hooks() |
|
59 | + { |
|
60 | + } |
|
61 | 61 | } |
@@ -15,44 +15,44 @@ |
||
15 | 15 | |
16 | 16 | |
17 | 17 | |
18 | - /** |
|
19 | - * Just initializes the status of the migration |
|
20 | - * |
|
21 | - * @return EE_DMS_4_9_0_Answers_With_No_Registration |
|
22 | - */ |
|
23 | - public function __construct() |
|
24 | - { |
|
25 | - $this->_pretty_name = __('Answer Cleanup', 'event_espresso'); |
|
26 | - parent::__construct(); |
|
27 | - } |
|
18 | + /** |
|
19 | + * Just initializes the status of the migration |
|
20 | + * |
|
21 | + * @return EE_DMS_4_9_0_Answers_With_No_Registration |
|
22 | + */ |
|
23 | + public function __construct() |
|
24 | + { |
|
25 | + $this->_pretty_name = __('Answer Cleanup', 'event_espresso'); |
|
26 | + parent::__construct(); |
|
27 | + } |
|
28 | 28 | |
29 | - /** |
|
30 | - * Counts the records to migrate; the public version may cache it |
|
31 | - * @return int |
|
32 | - */ |
|
33 | - protected function _count_records_to_migrate() |
|
34 | - { |
|
35 | - return 1; |
|
36 | - } |
|
29 | + /** |
|
30 | + * Counts the records to migrate; the public version may cache it |
|
31 | + * @return int |
|
32 | + */ |
|
33 | + protected function _count_records_to_migrate() |
|
34 | + { |
|
35 | + return 1; |
|
36 | + } |
|
37 | 37 | |
38 | - /** |
|
39 | - * IMPORTANT: if an error is encountered, or everything is finished, this stage should update its status property accordingly. |
|
40 | - * Note: it should not alter the count of items migrated. That is done in the public function that calls this. |
|
41 | - * IMPORTANT: The count of items migrated should ONLY be less than $num_items_to_migrate when it's the last migration step, otherwise it |
|
42 | - * should always return $num_items_to_migrate. (Eg, if we're migrating attendees rows from the database, and $num_items_to_migrate is set to 50, |
|
43 | - * then we SHOULD actually migrate 50 rows,but at very least we MUST report/return 50 items migrated) |
|
44 | - * @param int $num_items_to_migrate |
|
45 | - * @return int number of items ACTUALLY migrated |
|
46 | - */ |
|
47 | - protected function _migration_step($num_items_to_migrate = 50) |
|
48 | - { |
|
49 | - global $wpdb; |
|
50 | - $wpdb->delete( |
|
51 | - $wpdb->prefix . 'esp_answer', |
|
52 | - array( 'REG_ID' => 0 ), |
|
53 | - array( '%d' ) |
|
54 | - ); |
|
55 | - $this->set_completed(); |
|
56 | - return 1; |
|
57 | - } |
|
38 | + /** |
|
39 | + * IMPORTANT: if an error is encountered, or everything is finished, this stage should update its status property accordingly. |
|
40 | + * Note: it should not alter the count of items migrated. That is done in the public function that calls this. |
|
41 | + * IMPORTANT: The count of items migrated should ONLY be less than $num_items_to_migrate when it's the last migration step, otherwise it |
|
42 | + * should always return $num_items_to_migrate. (Eg, if we're migrating attendees rows from the database, and $num_items_to_migrate is set to 50, |
|
43 | + * then we SHOULD actually migrate 50 rows,but at very least we MUST report/return 50 items migrated) |
|
44 | + * @param int $num_items_to_migrate |
|
45 | + * @return int number of items ACTUALLY migrated |
|
46 | + */ |
|
47 | + protected function _migration_step($num_items_to_migrate = 50) |
|
48 | + { |
|
49 | + global $wpdb; |
|
50 | + $wpdb->delete( |
|
51 | + $wpdb->prefix . 'esp_answer', |
|
52 | + array( 'REG_ID' => 0 ), |
|
53 | + array( '%d' ) |
|
54 | + ); |
|
55 | + $this->set_completed(); |
|
56 | + return 1; |
|
57 | + } |
|
58 | 58 | } |
@@ -48,9 +48,9 @@ |
||
48 | 48 | { |
49 | 49 | global $wpdb; |
50 | 50 | $wpdb->delete( |
51 | - $wpdb->prefix . 'esp_answer', |
|
52 | - array( 'REG_ID' => 0 ), |
|
53 | - array( '%d' ) |
|
51 | + $wpdb->prefix.'esp_answer', |
|
52 | + array('REG_ID' => 0), |
|
53 | + array('%d') |
|
54 | 54 | ); |
55 | 55 | $this->set_completed(); |
56 | 56 | return 1; |
@@ -11,77 +11,77 @@ |
||
11 | 11 | */ |
12 | 12 | class EE_DMS_4_8_0_event_subtotals extends EE_Data_Migration_Script_Stage_Table |
13 | 13 | { |
14 | - public function __construct() |
|
15 | - { |
|
16 | - global $wpdb; |
|
17 | - $this->_old_table = $wpdb->prefix . 'esp_line_item'; |
|
18 | - $this->_extra_where_sql = ' WHERE LIN_type="sub-total" AND LIN_code="pre-tax-subtotal"'; |
|
19 | - $this->_pretty_name = __('Event Sub-total line items', 'event_espresso'); |
|
20 | - parent::__construct(); |
|
21 | - } |
|
22 | - protected function _migrate_old_row($line_item_row) |
|
23 | - { |
|
24 | - global $wpdb; |
|
25 | - // what event is this line item for? this can be found by looking at its transaction's registration's EVT_ID |
|
26 | - $event_id = $wpdb->get_var($wpdb->prepare('SELECT EVT_ID FROM ' . $wpdb->prefix . 'esp_registration WHERE TXN_ID=%d LIMIT 1', $line_item_row['TXN_ID'])); |
|
27 | - $new_line_item_data = array( |
|
28 | - 'LIN_code' => 'event-' . $event_id, |
|
29 | - 'TXN_ID' => $line_item_row['TXN_ID'], |
|
30 | - 'LIN_name' => __('Event', 'event_espresso'), |
|
31 | - 'LIN_desc' => $line_item_row['LIN_desc'], |
|
32 | - 'LIN_unit_price' => $line_item_row['LIN_unit_price'], |
|
33 | - 'LIN_percent' => $line_item_row['LIN_percent'], |
|
34 | - 'LIN_is_taxable' => $line_item_row['LIN_is_taxable'], |
|
35 | - 'LIN_order' => $line_item_row['LIN_order'], |
|
36 | - 'LIN_total' => $line_item_row['LIN_total'], |
|
37 | - 'LIN_quantity' => $line_item_row['LIN_quantity'], |
|
38 | - 'LIN_parent' => $line_item_row['LIN_ID'], |
|
39 | - 'LIN_type' => 'sub-total', |
|
40 | - 'OBJ_type' => 'Event', |
|
41 | - 'OBJ_ID' => $event_id, |
|
42 | - ); |
|
43 | - $new_line_item_datatypes = array( |
|
44 | - '%s',// LIN_code |
|
45 | - '%d',// TXN_ID |
|
46 | - '%s',// LIN_name |
|
47 | - '%s',// LIN_desc |
|
48 | - '%f',// LIN_unit_price |
|
49 | - '%f',// LIN_percent |
|
50 | - '%d',// LIN_is_taxable |
|
51 | - '%d',// LIN_order |
|
52 | - '%f',// LIN_total |
|
53 | - '%d',// LIN_quantity |
|
54 | - '%d',// LIN_parent |
|
55 | - '%s',// LIN_type |
|
56 | - '%s',// OBJ_type |
|
57 | - '%d',// OBJ_ID |
|
58 | - ); |
|
59 | - // insert the new event subtotal line item, pointing to this line item |
|
60 | - $success = $wpdb->insert($this->_old_table, $new_line_item_data, $new_line_item_datatypes); |
|
61 | - if (! $success) { |
|
62 | - $this->add_error($this->_create_error_message_for_db_insertion($this->_old_table, $line_item_row, $this->_old_table, $new_line_item_data, $new_line_item_datatypes)); |
|
63 | - } |
|
64 | - $new_line_item_id = $wpdb->insert_id; |
|
65 | - $this->get_migration_script()->set_mapping($this->_old_table, $line_item_row['LIN_ID'], $this->_old_table, $new_line_item_id); |
|
66 | - $query = $wpdb->prepare( |
|
67 | - "UPDATE {$this->_old_table} SET LIN_parent=%d WHERE LIN_parent = %d AND LIN_ID != %d LIMIT 100", |
|
68 | - $new_line_item_id, |
|
69 | - $line_item_row['LIN_ID'], |
|
70 | - $new_line_item_id |
|
71 | - ); |
|
72 | - $success = $wpdb->query($query); |
|
73 | - if ($success === false) { |
|
74 | - $this->add_error( |
|
75 | - sprintf( |
|
76 | - __('Error updating rows to new event subtotal %1$s from %2$s. Error was: %3$s, while using query %4$s which had a result of %5$s', 'event_espresso'), |
|
77 | - $new_line_item_id, |
|
78 | - $line_item_row['LIN_ID'], |
|
79 | - $wpdb->last_error, |
|
80 | - $query, |
|
81 | - $success |
|
82 | - ) |
|
83 | - ); |
|
84 | - } |
|
85 | - return 1; |
|
86 | - } |
|
14 | + public function __construct() |
|
15 | + { |
|
16 | + global $wpdb; |
|
17 | + $this->_old_table = $wpdb->prefix . 'esp_line_item'; |
|
18 | + $this->_extra_where_sql = ' WHERE LIN_type="sub-total" AND LIN_code="pre-tax-subtotal"'; |
|
19 | + $this->_pretty_name = __('Event Sub-total line items', 'event_espresso'); |
|
20 | + parent::__construct(); |
|
21 | + } |
|
22 | + protected function _migrate_old_row($line_item_row) |
|
23 | + { |
|
24 | + global $wpdb; |
|
25 | + // what event is this line item for? this can be found by looking at its transaction's registration's EVT_ID |
|
26 | + $event_id = $wpdb->get_var($wpdb->prepare('SELECT EVT_ID FROM ' . $wpdb->prefix . 'esp_registration WHERE TXN_ID=%d LIMIT 1', $line_item_row['TXN_ID'])); |
|
27 | + $new_line_item_data = array( |
|
28 | + 'LIN_code' => 'event-' . $event_id, |
|
29 | + 'TXN_ID' => $line_item_row['TXN_ID'], |
|
30 | + 'LIN_name' => __('Event', 'event_espresso'), |
|
31 | + 'LIN_desc' => $line_item_row['LIN_desc'], |
|
32 | + 'LIN_unit_price' => $line_item_row['LIN_unit_price'], |
|
33 | + 'LIN_percent' => $line_item_row['LIN_percent'], |
|
34 | + 'LIN_is_taxable' => $line_item_row['LIN_is_taxable'], |
|
35 | + 'LIN_order' => $line_item_row['LIN_order'], |
|
36 | + 'LIN_total' => $line_item_row['LIN_total'], |
|
37 | + 'LIN_quantity' => $line_item_row['LIN_quantity'], |
|
38 | + 'LIN_parent' => $line_item_row['LIN_ID'], |
|
39 | + 'LIN_type' => 'sub-total', |
|
40 | + 'OBJ_type' => 'Event', |
|
41 | + 'OBJ_ID' => $event_id, |
|
42 | + ); |
|
43 | + $new_line_item_datatypes = array( |
|
44 | + '%s',// LIN_code |
|
45 | + '%d',// TXN_ID |
|
46 | + '%s',// LIN_name |
|
47 | + '%s',// LIN_desc |
|
48 | + '%f',// LIN_unit_price |
|
49 | + '%f',// LIN_percent |
|
50 | + '%d',// LIN_is_taxable |
|
51 | + '%d',// LIN_order |
|
52 | + '%f',// LIN_total |
|
53 | + '%d',// LIN_quantity |
|
54 | + '%d',// LIN_parent |
|
55 | + '%s',// LIN_type |
|
56 | + '%s',// OBJ_type |
|
57 | + '%d',// OBJ_ID |
|
58 | + ); |
|
59 | + // insert the new event subtotal line item, pointing to this line item |
|
60 | + $success = $wpdb->insert($this->_old_table, $new_line_item_data, $new_line_item_datatypes); |
|
61 | + if (! $success) { |
|
62 | + $this->add_error($this->_create_error_message_for_db_insertion($this->_old_table, $line_item_row, $this->_old_table, $new_line_item_data, $new_line_item_datatypes)); |
|
63 | + } |
|
64 | + $new_line_item_id = $wpdb->insert_id; |
|
65 | + $this->get_migration_script()->set_mapping($this->_old_table, $line_item_row['LIN_ID'], $this->_old_table, $new_line_item_id); |
|
66 | + $query = $wpdb->prepare( |
|
67 | + "UPDATE {$this->_old_table} SET LIN_parent=%d WHERE LIN_parent = %d AND LIN_ID != %d LIMIT 100", |
|
68 | + $new_line_item_id, |
|
69 | + $line_item_row['LIN_ID'], |
|
70 | + $new_line_item_id |
|
71 | + ); |
|
72 | + $success = $wpdb->query($query); |
|
73 | + if ($success === false) { |
|
74 | + $this->add_error( |
|
75 | + sprintf( |
|
76 | + __('Error updating rows to new event subtotal %1$s from %2$s. Error was: %3$s, while using query %4$s which had a result of %5$s', 'event_espresso'), |
|
77 | + $new_line_item_id, |
|
78 | + $line_item_row['LIN_ID'], |
|
79 | + $wpdb->last_error, |
|
80 | + $query, |
|
81 | + $success |
|
82 | + ) |
|
83 | + ); |
|
84 | + } |
|
85 | + return 1; |
|
86 | + } |
|
87 | 87 | } |
@@ -14,7 +14,7 @@ discard block |
||
14 | 14 | public function __construct() |
15 | 15 | { |
16 | 16 | global $wpdb; |
17 | - $this->_old_table = $wpdb->prefix . 'esp_line_item'; |
|
17 | + $this->_old_table = $wpdb->prefix.'esp_line_item'; |
|
18 | 18 | $this->_extra_where_sql = ' WHERE LIN_type="sub-total" AND LIN_code="pre-tax-subtotal"'; |
19 | 19 | $this->_pretty_name = __('Event Sub-total line items', 'event_espresso'); |
20 | 20 | parent::__construct(); |
@@ -23,9 +23,9 @@ discard block |
||
23 | 23 | { |
24 | 24 | global $wpdb; |
25 | 25 | // what event is this line item for? this can be found by looking at its transaction's registration's EVT_ID |
26 | - $event_id = $wpdb->get_var($wpdb->prepare('SELECT EVT_ID FROM ' . $wpdb->prefix . 'esp_registration WHERE TXN_ID=%d LIMIT 1', $line_item_row['TXN_ID'])); |
|
26 | + $event_id = $wpdb->get_var($wpdb->prepare('SELECT EVT_ID FROM '.$wpdb->prefix.'esp_registration WHERE TXN_ID=%d LIMIT 1', $line_item_row['TXN_ID'])); |
|
27 | 27 | $new_line_item_data = array( |
28 | - 'LIN_code' => 'event-' . $event_id, |
|
28 | + 'LIN_code' => 'event-'.$event_id, |
|
29 | 29 | 'TXN_ID' => $line_item_row['TXN_ID'], |
30 | 30 | 'LIN_name' => __('Event', 'event_espresso'), |
31 | 31 | 'LIN_desc' => $line_item_row['LIN_desc'], |
@@ -41,24 +41,24 @@ discard block |
||
41 | 41 | 'OBJ_ID' => $event_id, |
42 | 42 | ); |
43 | 43 | $new_line_item_datatypes = array( |
44 | - '%s',// LIN_code |
|
45 | - '%d',// TXN_ID |
|
46 | - '%s',// LIN_name |
|
47 | - '%s',// LIN_desc |
|
48 | - '%f',// LIN_unit_price |
|
49 | - '%f',// LIN_percent |
|
50 | - '%d',// LIN_is_taxable |
|
51 | - '%d',// LIN_order |
|
52 | - '%f',// LIN_total |
|
53 | - '%d',// LIN_quantity |
|
54 | - '%d',// LIN_parent |
|
55 | - '%s',// LIN_type |
|
56 | - '%s',// OBJ_type |
|
57 | - '%d',// OBJ_ID |
|
44 | + '%s', // LIN_code |
|
45 | + '%d', // TXN_ID |
|
46 | + '%s', // LIN_name |
|
47 | + '%s', // LIN_desc |
|
48 | + '%f', // LIN_unit_price |
|
49 | + '%f', // LIN_percent |
|
50 | + '%d', // LIN_is_taxable |
|
51 | + '%d', // LIN_order |
|
52 | + '%f', // LIN_total |
|
53 | + '%d', // LIN_quantity |
|
54 | + '%d', // LIN_parent |
|
55 | + '%s', // LIN_type |
|
56 | + '%s', // OBJ_type |
|
57 | + '%d', // OBJ_ID |
|
58 | 58 | ); |
59 | 59 | // insert the new event subtotal line item, pointing to this line item |
60 | 60 | $success = $wpdb->insert($this->_old_table, $new_line_item_data, $new_line_item_datatypes); |
61 | - if (! $success) { |
|
61 | + if ( ! $success) { |
|
62 | 62 | $this->add_error($this->_create_error_message_for_db_insertion($this->_old_table, $line_item_row, $this->_old_table, $new_line_item_data, $new_line_item_datatypes)); |
63 | 63 | } |
64 | 64 | $new_line_item_id = $wpdb->insert_id; |
@@ -8,49 +8,49 @@ |
||
8 | 8 | |
9 | 9 | class EE_DMS_4_2_0_datetime_fields extends EE_Data_Migration_Script_Stage_Table |
10 | 10 | { |
11 | - public function __construct() |
|
12 | - { |
|
13 | - global $wpdb; |
|
14 | - $this->_pretty_name = __("Datetime Fields", "event_espresso"); |
|
15 | - $this->_old_table = $wpdb->prefix . "esp_datetime"; |
|
16 | - parent::__construct(); |
|
17 | - } |
|
11 | + public function __construct() |
|
12 | + { |
|
13 | + global $wpdb; |
|
14 | + $this->_pretty_name = __("Datetime Fields", "event_espresso"); |
|
15 | + $this->_old_table = $wpdb->prefix . "esp_datetime"; |
|
16 | + parent::__construct(); |
|
17 | + } |
|
18 | 18 | |
19 | - protected function _migrate_old_row($old_row) |
|
20 | - { |
|
21 | - // foreach question_group_question entry with this QST_ID, we want to set its |
|
22 | - // QSG_order equal to this question's QST_order |
|
23 | - global $wpdb; |
|
19 | + protected function _migrate_old_row($old_row) |
|
20 | + { |
|
21 | + // foreach question_group_question entry with this QST_ID, we want to set its |
|
22 | + // QSG_order equal to this question's QST_order |
|
23 | + global $wpdb; |
|
24 | 24 | |
25 | - $updated = $wpdb->update( |
|
26 | - $this->_old_table, |
|
27 | - array( |
|
28 | - 'DTT_name' => '', |
|
29 | - 'DTT_description' => '', |
|
30 | - ), |
|
31 | - array( |
|
32 | - 'DTT_ID' => $old_row['DTT_ID'], |
|
33 | - ), |
|
34 | - array( |
|
35 | - '%s',// DTT_name, |
|
36 | - '%s',// DTT_description |
|
37 | - ), |
|
38 | - array( |
|
39 | - '%d',// DTT_ID |
|
40 | - ) |
|
41 | - ); |
|
42 | - if (false === $updated) { |
|
43 | - $this->add_error( |
|
44 | - sprintf( |
|
45 | - __( |
|
46 | - "Error in updating table %s setting DTT_name = '' and DTT_description = '' where DTT_ID = %d", |
|
47 | - 'event_espresso' |
|
48 | - ), |
|
49 | - $this->_old_table, |
|
50 | - $old_row['QST_ID'] |
|
51 | - ) |
|
52 | - ); |
|
53 | - } |
|
54 | - // nothing to map really |
|
55 | - } |
|
25 | + $updated = $wpdb->update( |
|
26 | + $this->_old_table, |
|
27 | + array( |
|
28 | + 'DTT_name' => '', |
|
29 | + 'DTT_description' => '', |
|
30 | + ), |
|
31 | + array( |
|
32 | + 'DTT_ID' => $old_row['DTT_ID'], |
|
33 | + ), |
|
34 | + array( |
|
35 | + '%s',// DTT_name, |
|
36 | + '%s',// DTT_description |
|
37 | + ), |
|
38 | + array( |
|
39 | + '%d',// DTT_ID |
|
40 | + ) |
|
41 | + ); |
|
42 | + if (false === $updated) { |
|
43 | + $this->add_error( |
|
44 | + sprintf( |
|
45 | + __( |
|
46 | + "Error in updating table %s setting DTT_name = '' and DTT_description = '' where DTT_ID = %d", |
|
47 | + 'event_espresso' |
|
48 | + ), |
|
49 | + $this->_old_table, |
|
50 | + $old_row['QST_ID'] |
|
51 | + ) |
|
52 | + ); |
|
53 | + } |
|
54 | + // nothing to map really |
|
55 | + } |
|
56 | 56 | } |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | { |
13 | 13 | global $wpdb; |
14 | 14 | $this->_pretty_name = __("Datetime Fields", "event_espresso"); |
15 | - $this->_old_table = $wpdb->prefix . "esp_datetime"; |
|
15 | + $this->_old_table = $wpdb->prefix."esp_datetime"; |
|
16 | 16 | parent::__construct(); |
17 | 17 | } |
18 | 18 | |
@@ -32,11 +32,11 @@ discard block |
||
32 | 32 | 'DTT_ID' => $old_row['DTT_ID'], |
33 | 33 | ), |
34 | 34 | array( |
35 | - '%s',// DTT_name, |
|
36 | - '%s',// DTT_description |
|
35 | + '%s', // DTT_name, |
|
36 | + '%s', // DTT_description |
|
37 | 37 | ), |
38 | 38 | array( |
39 | - '%d',// DTT_ID |
|
39 | + '%d', // DTT_ID |
|
40 | 40 | ) |
41 | 41 | ); |
42 | 42 | if (false === $updated) { |
@@ -37,103 +37,103 @@ |
||
37 | 37 | */ |
38 | 38 | abstract class EE_Data_Migration_Script_Stage extends EE_Data_Migration_Class_Base |
39 | 39 | { |
40 | - /** |
|
41 | - * The migration script this is a stage of |
|
42 | - * |
|
43 | - * @var EE_Data_Migration_Script_Base |
|
44 | - */ |
|
45 | - protected $_migration_script; |
|
40 | + /** |
|
41 | + * The migration script this is a stage of |
|
42 | + * |
|
43 | + * @var EE_Data_Migration_Script_Base |
|
44 | + */ |
|
45 | + protected $_migration_script; |
|
46 | 46 | |
47 | - /** |
|
48 | - * This should eb called to essentially 'finalize' construction of the stage. |
|
49 | - * This isn't done on the main constructor in order to avoid repetitive code. Instead, this is |
|
50 | - * called by EE_Data_Migration_Script_Base's __construct() method so children don't have to |
|
51 | - * |
|
52 | - * @param EE_Data_Migration_Script_Base $migration_script |
|
53 | - */ |
|
54 | - public function _construct_finalize($migration_script) |
|
55 | - { |
|
56 | - $this->_migration_script = $migration_script; |
|
57 | - } |
|
47 | + /** |
|
48 | + * This should eb called to essentially 'finalize' construction of the stage. |
|
49 | + * This isn't done on the main constructor in order to avoid repetitive code. Instead, this is |
|
50 | + * called by EE_Data_Migration_Script_Base's __construct() method so children don't have to |
|
51 | + * |
|
52 | + * @param EE_Data_Migration_Script_Base $migration_script |
|
53 | + */ |
|
54 | + public function _construct_finalize($migration_script) |
|
55 | + { |
|
56 | + $this->_migration_script = $migration_script; |
|
57 | + } |
|
58 | 58 | |
59 | - /** |
|
60 | - * Migrates X old records to the new format. If a fatal error is encountered it is NOT caught here, |
|
61 | - * but is propagated upwards for catching. So basically, the _migration_step() function implemented by children |
|
62 | - * needs to catch exceptions and decide what's a fatal error and what isn't. |
|
63 | - * |
|
64 | - * @param int $num_items_to_migrate |
|
65 | - * @return int |
|
66 | - */ |
|
67 | - public function migration_step($num_items_to_migrate = 50) |
|
68 | - { |
|
69 | - // before we run the migration step, we want ot take note of warnings that get outputted |
|
70 | - ob_start(); |
|
71 | - $items_migrated = $this->_migration_step($num_items_to_migrate); |
|
72 | - $output = ob_get_contents(); |
|
73 | - ob_end_clean(); |
|
74 | - if ($output) { |
|
75 | - $this->add_error($output); |
|
76 | - } |
|
77 | - $this->_records_migrated += $items_migrated; |
|
78 | - return $items_migrated; |
|
79 | - } |
|
59 | + /** |
|
60 | + * Migrates X old records to the new format. If a fatal error is encountered it is NOT caught here, |
|
61 | + * but is propagated upwards for catching. So basically, the _migration_step() function implemented by children |
|
62 | + * needs to catch exceptions and decide what's a fatal error and what isn't. |
|
63 | + * |
|
64 | + * @param int $num_items_to_migrate |
|
65 | + * @return int |
|
66 | + */ |
|
67 | + public function migration_step($num_items_to_migrate = 50) |
|
68 | + { |
|
69 | + // before we run the migration step, we want ot take note of warnings that get outputted |
|
70 | + ob_start(); |
|
71 | + $items_migrated = $this->_migration_step($num_items_to_migrate); |
|
72 | + $output = ob_get_contents(); |
|
73 | + ob_end_clean(); |
|
74 | + if ($output) { |
|
75 | + $this->add_error($output); |
|
76 | + } |
|
77 | + $this->_records_migrated += $items_migrated; |
|
78 | + return $items_migrated; |
|
79 | + } |
|
80 | 80 | |
81 | 81 | |
82 | - /** |
|
83 | - * IMPORTANT: if an error is encountered, or everything is finished, this stage should update its status property |
|
84 | - * accordingly. Note: it should not alter the count of items migrated. That is done in the public function that |
|
85 | - * calls this. IMPORTANT: The count of items migrated should ONLY be less than $num_items_to_migrate when it's the |
|
86 | - * last migration step, otherwise it should always return $num_items_to_migrate. (Eg, if we're migrating attendees |
|
87 | - * rows from the database, and $num_items_to_migrate is set to 50, then we SHOULD actually migrate 50 rows,but at |
|
88 | - * very least we MUST report/return 50 items migrated) |
|
89 | - * |
|
90 | - * @param int $num_items_to_migrate |
|
91 | - * @return int number of items ACTUALLY migrated |
|
92 | - */ |
|
93 | - abstract protected function _migration_step($num_items_to_migrate = 50); |
|
82 | + /** |
|
83 | + * IMPORTANT: if an error is encountered, or everything is finished, this stage should update its status property |
|
84 | + * accordingly. Note: it should not alter the count of items migrated. That is done in the public function that |
|
85 | + * calls this. IMPORTANT: The count of items migrated should ONLY be less than $num_items_to_migrate when it's the |
|
86 | + * last migration step, otherwise it should always return $num_items_to_migrate. (Eg, if we're migrating attendees |
|
87 | + * rows from the database, and $num_items_to_migrate is set to 50, then we SHOULD actually migrate 50 rows,but at |
|
88 | + * very least we MUST report/return 50 items migrated) |
|
89 | + * |
|
90 | + * @param int $num_items_to_migrate |
|
91 | + * @return int number of items ACTUALLY migrated |
|
92 | + */ |
|
93 | + abstract protected function _migration_step($num_items_to_migrate = 50); |
|
94 | 94 | |
95 | - /** |
|
96 | - * Counts the records that have been migrated so far |
|
97 | - * |
|
98 | - * @return int |
|
99 | - */ |
|
100 | - public function count_records_migrated() |
|
101 | - { |
|
102 | - return $this->_records_migrated; |
|
103 | - } |
|
95 | + /** |
|
96 | + * Counts the records that have been migrated so far |
|
97 | + * |
|
98 | + * @return int |
|
99 | + */ |
|
100 | + public function count_records_migrated() |
|
101 | + { |
|
102 | + return $this->_records_migrated; |
|
103 | + } |
|
104 | 104 | |
105 | - /** |
|
106 | - * returns an array of strings describing errors |
|
107 | - * |
|
108 | - * @return array |
|
109 | - */ |
|
110 | - public function get_errors() |
|
111 | - { |
|
112 | - return $this->_errors; |
|
113 | - } |
|
105 | + /** |
|
106 | + * returns an array of strings describing errors |
|
107 | + * |
|
108 | + * @return array |
|
109 | + */ |
|
110 | + public function get_errors() |
|
111 | + { |
|
112 | + return $this->_errors; |
|
113 | + } |
|
114 | 114 | |
115 | 115 | |
116 | - /** |
|
117 | - * Sets all of the properties of this script stage to match what's in the array, which is assumed |
|
118 | - * to have been made from the properties_as_array() function. |
|
119 | - * |
|
120 | - * @param array $array_of_properties like what's produced from properties_as_array() method |
|
121 | - */ |
|
122 | - public function instantiate_from_array_of_properties($array_of_properties) |
|
123 | - { |
|
124 | - unset($array_of_properties['class']); |
|
125 | - foreach ($array_of_properties as $property_name => $property_value) { |
|
126 | - $this->{$property_name} = $property_value; |
|
127 | - } |
|
128 | - } |
|
116 | + /** |
|
117 | + * Sets all of the properties of this script stage to match what's in the array, which is assumed |
|
118 | + * to have been made from the properties_as_array() function. |
|
119 | + * |
|
120 | + * @param array $array_of_properties like what's produced from properties_as_array() method |
|
121 | + */ |
|
122 | + public function instantiate_from_array_of_properties($array_of_properties) |
|
123 | + { |
|
124 | + unset($array_of_properties['class']); |
|
125 | + foreach ($array_of_properties as $property_name => $property_value) { |
|
126 | + $this->{$property_name} = $property_value; |
|
127 | + } |
|
128 | + } |
|
129 | 129 | |
130 | - /** |
|
131 | - * Gets the script this is a stage of |
|
132 | - * |
|
133 | - * @return EE_Data_Migration_Script_Base |
|
134 | - */ |
|
135 | - protected function get_migration_script() |
|
136 | - { |
|
137 | - return $this->_migration_script; |
|
138 | - } |
|
130 | + /** |
|
131 | + * Gets the script this is a stage of |
|
132 | + * |
|
133 | + * @return EE_Data_Migration_Script_Base |
|
134 | + */ |
|
135 | + protected function get_migration_script() |
|
136 | + { |
|
137 | + return $this->_migration_script; |
|
138 | + } |
|
139 | 139 | } |
@@ -16,98 +16,98 @@ |
||
16 | 16 | abstract class EE_Object_Repository extends EE_Object_Collection implements EEI_Repository |
17 | 17 | { |
18 | 18 | |
19 | - /** |
|
20 | - * default persist method called on repository objects if none supplied |
|
21 | - * |
|
22 | - * @type string $persist_method |
|
23 | - */ |
|
24 | - protected $persist_method; |
|
19 | + /** |
|
20 | + * default persist method called on repository objects if none supplied |
|
21 | + * |
|
22 | + * @type string $persist_method |
|
23 | + */ |
|
24 | + protected $persist_method; |
|
25 | 25 | |
26 | 26 | |
27 | - /** |
|
28 | - * _call_user_func_array_on_current |
|
29 | - * |
|
30 | - * calls the supplied callback method name on the current repository object, |
|
31 | - * an array of arguments can also be supplied that will be passed along to the callback method, |
|
32 | - * where each element of the $arguments array corresponds to a parameter for the callback method |
|
33 | - * PLZ NOTE: if the first argument of the callback requires an array, for example array( 'key' => 'value' ) |
|
34 | - * then $arguments needs to be a DOUBLE array ie: array( array( 'key' => 'value' ) ) |
|
35 | - * |
|
36 | - * @access public |
|
37 | - * @param string $callback name of method found on object to be called. |
|
38 | - * @param array $arguments arrays of arguments that will be passed to the object's callback method |
|
39 | - * @return bool | int |
|
40 | - */ |
|
41 | - protected function _call_user_func_array_on_current($callback = '', $arguments = array()) |
|
42 | - { |
|
43 | - if ($callback !== '' && method_exists($this->current(), $callback)) { |
|
44 | - return call_user_func_array(array($this->current(), $callback), $arguments); |
|
45 | - } |
|
46 | - return false; |
|
47 | - } |
|
27 | + /** |
|
28 | + * _call_user_func_array_on_current |
|
29 | + * |
|
30 | + * calls the supplied callback method name on the current repository object, |
|
31 | + * an array of arguments can also be supplied that will be passed along to the callback method, |
|
32 | + * where each element of the $arguments array corresponds to a parameter for the callback method |
|
33 | + * PLZ NOTE: if the first argument of the callback requires an array, for example array( 'key' => 'value' ) |
|
34 | + * then $arguments needs to be a DOUBLE array ie: array( array( 'key' => 'value' ) ) |
|
35 | + * |
|
36 | + * @access public |
|
37 | + * @param string $callback name of method found on object to be called. |
|
38 | + * @param array $arguments arrays of arguments that will be passed to the object's callback method |
|
39 | + * @return bool | int |
|
40 | + */ |
|
41 | + protected function _call_user_func_array_on_current($callback = '', $arguments = array()) |
|
42 | + { |
|
43 | + if ($callback !== '' && method_exists($this->current(), $callback)) { |
|
44 | + return call_user_func_array(array($this->current(), $callback), $arguments); |
|
45 | + } |
|
46 | + return false; |
|
47 | + } |
|
48 | 48 | |
49 | 49 | |
50 | - /** |
|
51 | - * _call_user_func_on_all |
|
52 | - * |
|
53 | - * calls the supplied callback method name on ALL repository objects, |
|
54 | - * |
|
55 | - * @access public |
|
56 | - * @param string $callback name of method found on repository objects to be called |
|
57 | - * @return bool | int |
|
58 | - */ |
|
59 | - protected function _call_user_func_on_all($callback = '') |
|
60 | - { |
|
61 | - $success = true; |
|
62 | - if ($this->valid()) { |
|
63 | - $this->rewind(); |
|
64 | - while ($this->valid()) { |
|
65 | - // any negative result will toggle success to false |
|
66 | - $success = $this->_call_user_func_array_on_current($callback) ? $success : false; |
|
67 | - $this->next(); |
|
68 | - } |
|
69 | - $this->rewind(); |
|
70 | - } |
|
71 | - return $success; |
|
72 | - } |
|
50 | + /** |
|
51 | + * _call_user_func_on_all |
|
52 | + * |
|
53 | + * calls the supplied callback method name on ALL repository objects, |
|
54 | + * |
|
55 | + * @access public |
|
56 | + * @param string $callback name of method found on repository objects to be called |
|
57 | + * @return bool | int |
|
58 | + */ |
|
59 | + protected function _call_user_func_on_all($callback = '') |
|
60 | + { |
|
61 | + $success = true; |
|
62 | + if ($this->valid()) { |
|
63 | + $this->rewind(); |
|
64 | + while ($this->valid()) { |
|
65 | + // any negative result will toggle success to false |
|
66 | + $success = $this->_call_user_func_array_on_current($callback) ? $success : false; |
|
67 | + $this->next(); |
|
68 | + } |
|
69 | + $this->rewind(); |
|
70 | + } |
|
71 | + return $success; |
|
72 | + } |
|
73 | 73 | |
74 | 74 | |
75 | - /** |
|
76 | - * persist |
|
77 | - * |
|
78 | - * primarily used for saving EE_Base_Class classes to the database, |
|
79 | - * but can be supplied with a "persistence callback" that can be used for classes that are not instances of |
|
80 | - * EE_Base_Class, or for providing alternate ways to persist an object such as session caching, etc... an array of |
|
81 | - * arguments can also be supplied that will be passed along to the object's persistence method |
|
82 | - * |
|
83 | - * @access public |
|
84 | - * @param string $persistence_callback name of method found on object that can |
|
85 | - * be used for persisting the object |
|
86 | - * defaults to |
|
87 | - * EE_Object_Repository::$persist_method |
|
88 | - * @param array $persistence_arguments arrays of arguments that will be passed |
|
89 | - * to the object's persistence method |
|
90 | - * @return bool | int |
|
91 | - */ |
|
92 | - public function persist($persistence_callback = '', $persistence_arguments = array()) |
|
93 | - { |
|
94 | - $persistence_callback = ! empty($persistence_callback) ? $persistence_callback : $this->persist_method; |
|
95 | - return $this->_call_user_func_array_on_current($persistence_callback, $persistence_arguments); |
|
96 | - } |
|
75 | + /** |
|
76 | + * persist |
|
77 | + * |
|
78 | + * primarily used for saving EE_Base_Class classes to the database, |
|
79 | + * but can be supplied with a "persistence callback" that can be used for classes that are not instances of |
|
80 | + * EE_Base_Class, or for providing alternate ways to persist an object such as session caching, etc... an array of |
|
81 | + * arguments can also be supplied that will be passed along to the object's persistence method |
|
82 | + * |
|
83 | + * @access public |
|
84 | + * @param string $persistence_callback name of method found on object that can |
|
85 | + * be used for persisting the object |
|
86 | + * defaults to |
|
87 | + * EE_Object_Repository::$persist_method |
|
88 | + * @param array $persistence_arguments arrays of arguments that will be passed |
|
89 | + * to the object's persistence method |
|
90 | + * @return bool | int |
|
91 | + */ |
|
92 | + public function persist($persistence_callback = '', $persistence_arguments = array()) |
|
93 | + { |
|
94 | + $persistence_callback = ! empty($persistence_callback) ? $persistence_callback : $this->persist_method; |
|
95 | + return $this->_call_user_func_array_on_current($persistence_callback, $persistence_arguments); |
|
96 | + } |
|
97 | 97 | |
98 | 98 | |
99 | - /** |
|
100 | - * persist_all |
|
101 | - * |
|
102 | - * calls \EE_Object_Repository::persist() on all objects within the repository |
|
103 | - * |
|
104 | - * @access public |
|
105 | - * @param string $persistence_callback name of method found on object that can be used for persisting the object |
|
106 | - * @return bool | int |
|
107 | - */ |
|
108 | - public function persist_all($persistence_callback = '') |
|
109 | - { |
|
110 | - $persistence_callback = ! empty($persistence_callback) ? $persistence_callback : $this->persist_method; |
|
111 | - return $this->_call_user_func_on_all($persistence_callback); |
|
112 | - } |
|
99 | + /** |
|
100 | + * persist_all |
|
101 | + * |
|
102 | + * calls \EE_Object_Repository::persist() on all objects within the repository |
|
103 | + * |
|
104 | + * @access public |
|
105 | + * @param string $persistence_callback name of method found on object that can be used for persisting the object |
|
106 | + * @return bool | int |
|
107 | + */ |
|
108 | + public function persist_all($persistence_callback = '') |
|
109 | + { |
|
110 | + $persistence_callback = ! empty($persistence_callback) ? $persistence_callback : $this->persist_method; |
|
111 | + return $this->_call_user_func_on_all($persistence_callback); |
|
112 | + } |
|
113 | 113 | } |
@@ -256,8 +256,8 @@ discard block |
||
256 | 256 | public function get_stops() |
257 | 257 | { |
258 | 258 | foreach ($this->_stops as $ind => $stop) { |
259 | - if (! isset($stop['button_text'])) { |
|
260 | - $this->_stops[ $ind ]['button_text'] = $this->_options['button_text']; |
|
259 | + if ( ! isset($stop['button_text'])) { |
|
260 | + $this->_stops[$ind]['button_text'] = $this->_options['button_text']; |
|
261 | 261 | } |
262 | 262 | } |
263 | 263 | return $this->_stops; |
@@ -277,6 +277,6 @@ discard block |
||
277 | 277 | $this->_options['pauseAfter'][] = $ind; |
278 | 278 | } |
279 | 279 | } |
280 | - return apply_filters('FHEE__' . get_class($this) . '__get_options', $this->_options, $this); |
|
280 | + return apply_filters('FHEE__'.get_class($this).'__get_options', $this->_options, $this); |
|
281 | 281 | } |
282 | 282 | } |
@@ -15,269 +15,269 @@ |
||
15 | 15 | abstract class EE_Help_Tour extends EE_Base |
16 | 16 | { |
17 | 17 | |
18 | - /** |
|
19 | - * This is the label for the tour. It is used when regenerating restart buttons for the tour. Set this in the |
|
20 | - * constructor of the child class. |
|
21 | - * |
|
22 | - * @access protected |
|
23 | - * @var string |
|
24 | - */ |
|
25 | - protected $_label = ''; |
|
26 | - |
|
27 | - |
|
28 | - /** |
|
29 | - * This is the slug for the tour. It should be unique from all tours and is used for starting a tour and setting |
|
30 | - * cookies for the tour. Set this in the constructor of the child class. |
|
31 | - * |
|
32 | - * @access protected |
|
33 | - * @var string |
|
34 | - */ |
|
35 | - protected $_slug = ''; |
|
36 | - |
|
37 | - |
|
38 | - /** |
|
39 | - * This will contain the formatted array for the stops that gets used by EE_Admin_Page->_add_help_tour() for |
|
40 | - * setting up a tour on a given page. format for array is: array( |
|
41 | - * 0 => array( |
|
42 | - * 'id' => 'id_element', //if attached to an css id for an element then use this param. id's will take |
|
43 | - * precendence even if you also set class. |
|
44 | - * 'class' => 'class_element', //if attached to a css class for an element anchoring the stop then use |
|
45 | - * this param. The first element for that class is the anchor. If the class or the id are empty then the |
|
46 | - * stop will be a modal on the page anchored to the main body. |
|
47 | - * 'custom_class' => 'some_custom_class', //optional custom class to add for this stop. |
|
48 | - * 'button_text' => 'custom text for button', //optional |
|
49 | - * 'content' => 'The content for the stop', //required |
|
50 | - * 'pause_after' => false, //indicate if you want the tour to pause after this stop and it will get |
|
51 | - * added to the pauseAfter global option array setup for the joyride instance. This is only applicable |
|
52 | - * when this tour has been set to run on timer. |
|
53 | - * 'options' => array( |
|
54 | - * //override any of the global options set via the help_tour "option_callback" for the joyride |
|
55 | - * instance on this specific stop. |
|
56 | - * ) |
|
57 | - * ) |
|
58 | - * ); |
|
59 | - * |
|
60 | - * @access protected |
|
61 | - * @var array |
|
62 | - */ |
|
63 | - protected $_stops = array(); |
|
64 | - |
|
65 | - |
|
66 | - /** |
|
67 | - * This contains any stop specific options for the tour. |
|
68 | - * defaults are set but child classes can override. |
|
69 | - * |
|
70 | - * @access protected |
|
71 | - * @var array |
|
72 | - */ |
|
73 | - protected $_options = array(); |
|
74 | - |
|
75 | - |
|
76 | - /** |
|
77 | - * holds anything found in the $_REQUEST object (however we override any _gets with _post data). |
|
78 | - * |
|
79 | - * @access protected |
|
80 | - * @var array |
|
81 | - */ |
|
82 | - protected $_req_data = array(); |
|
83 | - |
|
84 | - |
|
85 | - /** |
|
86 | - * a flag that is set on init for whether this help_tour is happening on a caf install or not. |
|
87 | - * |
|
88 | - * @var boolean |
|
89 | - */ |
|
90 | - protected $_is_caf = false; |
|
91 | - |
|
92 | - |
|
93 | - /** |
|
94 | - * _constructor |
|
95 | - * initialized the tour object and sets up important properties required to setup the tour. |
|
96 | - * |
|
97 | - * @access public |
|
98 | - * @param boolean $caf used to indicate if this tour is happening on caf install or not. |
|
99 | - * @return void |
|
100 | - */ |
|
101 | - public function __construct($caf = false) |
|
102 | - { |
|
103 | - $this->_is_caf = $caf; |
|
104 | - $this->_req_data = array_merge($_GET, $_POST); |
|
105 | - $this->_set_tour_properties(); |
|
106 | - $this->_set_tour_stops(); |
|
107 | - $this->_set_tour_options(); |
|
108 | - |
|
109 | - // make sure the last tour stop has "end tour" for its button |
|
110 | - $end = array_pop($this->_stops); |
|
111 | - $end['button_text'] = __('End Tour', 'event_espresso'); |
|
112 | - // add back to stops |
|
113 | - $this->_stops[] = $end; |
|
114 | - } |
|
115 | - |
|
116 | - |
|
117 | - /** |
|
118 | - * required method that has the sole purpose of setting up the tour $_label and $_slug properties |
|
119 | - * |
|
120 | - * @abstract |
|
121 | - * @access protected |
|
122 | - * @return void |
|
123 | - */ |
|
124 | - abstract protected function _set_tour_properties(); |
|
125 | - |
|
126 | - |
|
127 | - /** |
|
128 | - * required method that's sole purpose is to setup the $_stops property |
|
129 | - * |
|
130 | - * @abstract |
|
131 | - * @access protected |
|
132 | - * @return void |
|
133 | - */ |
|
134 | - abstract protected function _set_tour_stops(); |
|
135 | - |
|
136 | - |
|
137 | - /** |
|
138 | - * The method can optionally be overridden by child classes to set the _options array if there are any default |
|
139 | - * options the child wishes to override for a this tour. See property definition for more info |
|
140 | - * |
|
141 | - * @access protected |
|
142 | - * @return void |
|
143 | - */ |
|
144 | - protected function _set_tour_options($options = array()) |
|
145 | - { |
|
146 | - $defaults = array( |
|
147 | - 'tipLocation' => 'bottom', |
|
148 | - // 'top', 'bottom', 'right', 'left' in relation to parent |
|
149 | - 'nubPosition' => 'auto', |
|
150 | - // override on a per tooltip bases. can be "auto", "right", "top", "bottom", "left" |
|
151 | - 'tipAdjustmentY' => 0, |
|
152 | - // allow for adjustment of tip |
|
153 | - 'tipAdjustmentX' => 0, |
|
154 | - // allow for adjustment of tip |
|
155 | - 'scroll' => true, |
|
156 | - // whether to scrollTo the next step or not |
|
157 | - 'scrollSpeed' => 300, |
|
158 | - // Page scrolling speed in ms |
|
159 | - 'timer' => 0, |
|
160 | - // 0 = off, all other numbers = time(ms) |
|
161 | - 'autoStart' => true, |
|
162 | - // true or false - false tour starts when restart called |
|
163 | - 'startTimerOnClick' => true, |
|
164 | - // true/false to start timer on first click |
|
165 | - 'nextButton' => true, |
|
166 | - // true/false for next button visibility |
|
167 | - 'button_text' => __('Next', 'event_espresso'), |
|
168 | - 'tipAnimation' => 'fade', |
|
169 | - // 'pop' or 'fade' in each tip |
|
170 | - 'pauseAfter' => array(), |
|
171 | - // array of indexes where to pause the tour after |
|
172 | - 'tipAnimationFadeSpeed' => 300, |
|
173 | - // if 'fade'- speed in ms of transition |
|
174 | - 'cookieMonster' => true, |
|
175 | - // true/false for whether cookies are used |
|
176 | - 'cookieName' => $this->get_slug(), |
|
177 | - // choose your own cookie name (setup will add the prefix for the specific page joyride) |
|
178 | - // set to false or yoursite.com |
|
179 | - 'cookieDomain' => false, |
|
180 | - // Where the tip be attached if not inline |
|
181 | - // 'tipContainer' => 'body', |
|
182 | - 'modal' => false, |
|
183 | - // Whether to cover page with modal during the tour |
|
184 | - 'expose' => false, |
|
185 | - // Whether to expose the elements at each step in the tour (requires modal:true), |
|
186 | - 'postExposeCallback' => 'EEHelpTour.postExposeCallback', |
|
187 | - // A method to call after an element has been exposed |
|
188 | - 'preRideCallback' => 'EEHelpTour_preRideCallback', |
|
189 | - // A method to call before the tour starts (passed index, tip, and cloned exposed element) |
|
190 | - 'postRideCallback' => 'EEHelpTour_postRideCallback', |
|
191 | - // a method to call once the tour closes. This will correspond to the name of a js method that will have to be defined in loaded js. |
|
192 | - 'preStepCallback' => 'EEHelpTour_preStepCallback', |
|
193 | - // A method to call before each step |
|
194 | - 'postStepCallback' => 'EEHelpTour_postStepCallback', |
|
195 | - // A method to call after each step (remember this will correspond with a js method that you will have to define in a js file BEFORE ee-help-tour.js loads, if the default methods do not exist, then ee-help-tour.js just substitues empty functions $.noop)/**/ |
|
196 | - ); |
|
197 | - |
|
198 | - $options = ! empty($options) && is_array($options) ? array_merge($defaults, $options) : $defaults; |
|
199 | - $this->_options = $options; |
|
200 | - } |
|
201 | - |
|
202 | - |
|
203 | - /** |
|
204 | - * getter functions to return all the properties for the tour. |
|
205 | - */ |
|
206 | - |
|
207 | - |
|
208 | - /** |
|
209 | - * get_slug |
|
210 | - * |
|
211 | - * @return string slug for the tour |
|
212 | - */ |
|
213 | - public function get_slug() |
|
214 | - { |
|
215 | - if (empty($this->_slug)) { |
|
216 | - throw new EE_Error( |
|
217 | - sprintf( |
|
218 | - __( |
|
219 | - 'There is no slug set for the help tour class (%s). Make sure that the $_slug property is set in the class constructor', |
|
220 | - 'event_espresso' |
|
221 | - ), |
|
222 | - get_class($this) |
|
223 | - ) |
|
224 | - ); |
|
225 | - } |
|
226 | - return $this->_slug; |
|
227 | - } |
|
228 | - |
|
229 | - |
|
230 | - /** |
|
231 | - * get_label |
|
232 | - * |
|
233 | - * @return string |
|
234 | - */ |
|
235 | - public function get_label() |
|
236 | - { |
|
237 | - if (empty($this->_label)) { |
|
238 | - throw new EE_Error( |
|
239 | - sprintf( |
|
240 | - __( |
|
241 | - 'There is no label set for the help tour class (%s). Make sure that the $_label property is set in the class constructor', |
|
242 | - 'event_espresso' |
|
243 | - ), |
|
244 | - get_class($this) |
|
245 | - ) |
|
246 | - ); |
|
247 | - } |
|
248 | - return $this->_label; |
|
249 | - } |
|
250 | - |
|
251 | - |
|
252 | - /** |
|
253 | - * get_stops |
|
254 | - * |
|
255 | - * @return array |
|
256 | - */ |
|
257 | - public function get_stops() |
|
258 | - { |
|
259 | - foreach ($this->_stops as $ind => $stop) { |
|
260 | - if (! isset($stop['button_text'])) { |
|
261 | - $this->_stops[ $ind ]['button_text'] = $this->_options['button_text']; |
|
262 | - } |
|
263 | - } |
|
264 | - return $this->_stops; |
|
265 | - } |
|
266 | - |
|
267 | - |
|
268 | - /** |
|
269 | - * get options |
|
270 | - * |
|
271 | - * @return array |
|
272 | - */ |
|
273 | - public function get_options() |
|
274 | - { |
|
275 | - // let's make sure there are not pauses set |
|
276 | - foreach ($this->_stops as $ind => $stop) { |
|
277 | - if (isset($stop['pause_after']) && $stop['pause_after']) { |
|
278 | - $this->_options['pauseAfter'][] = $ind; |
|
279 | - } |
|
280 | - } |
|
281 | - return apply_filters('FHEE__' . get_class($this) . '__get_options', $this->_options, $this); |
|
282 | - } |
|
18 | + /** |
|
19 | + * This is the label for the tour. It is used when regenerating restart buttons for the tour. Set this in the |
|
20 | + * constructor of the child class. |
|
21 | + * |
|
22 | + * @access protected |
|
23 | + * @var string |
|
24 | + */ |
|
25 | + protected $_label = ''; |
|
26 | + |
|
27 | + |
|
28 | + /** |
|
29 | + * This is the slug for the tour. It should be unique from all tours and is used for starting a tour and setting |
|
30 | + * cookies for the tour. Set this in the constructor of the child class. |
|
31 | + * |
|
32 | + * @access protected |
|
33 | + * @var string |
|
34 | + */ |
|
35 | + protected $_slug = ''; |
|
36 | + |
|
37 | + |
|
38 | + /** |
|
39 | + * This will contain the formatted array for the stops that gets used by EE_Admin_Page->_add_help_tour() for |
|
40 | + * setting up a tour on a given page. format for array is: array( |
|
41 | + * 0 => array( |
|
42 | + * 'id' => 'id_element', //if attached to an css id for an element then use this param. id's will take |
|
43 | + * precendence even if you also set class. |
|
44 | + * 'class' => 'class_element', //if attached to a css class for an element anchoring the stop then use |
|
45 | + * this param. The first element for that class is the anchor. If the class or the id are empty then the |
|
46 | + * stop will be a modal on the page anchored to the main body. |
|
47 | + * 'custom_class' => 'some_custom_class', //optional custom class to add for this stop. |
|
48 | + * 'button_text' => 'custom text for button', //optional |
|
49 | + * 'content' => 'The content for the stop', //required |
|
50 | + * 'pause_after' => false, //indicate if you want the tour to pause after this stop and it will get |
|
51 | + * added to the pauseAfter global option array setup for the joyride instance. This is only applicable |
|
52 | + * when this tour has been set to run on timer. |
|
53 | + * 'options' => array( |
|
54 | + * //override any of the global options set via the help_tour "option_callback" for the joyride |
|
55 | + * instance on this specific stop. |
|
56 | + * ) |
|
57 | + * ) |
|
58 | + * ); |
|
59 | + * |
|
60 | + * @access protected |
|
61 | + * @var array |
|
62 | + */ |
|
63 | + protected $_stops = array(); |
|
64 | + |
|
65 | + |
|
66 | + /** |
|
67 | + * This contains any stop specific options for the tour. |
|
68 | + * defaults are set but child classes can override. |
|
69 | + * |
|
70 | + * @access protected |
|
71 | + * @var array |
|
72 | + */ |
|
73 | + protected $_options = array(); |
|
74 | + |
|
75 | + |
|
76 | + /** |
|
77 | + * holds anything found in the $_REQUEST object (however we override any _gets with _post data). |
|
78 | + * |
|
79 | + * @access protected |
|
80 | + * @var array |
|
81 | + */ |
|
82 | + protected $_req_data = array(); |
|
83 | + |
|
84 | + |
|
85 | + /** |
|
86 | + * a flag that is set on init for whether this help_tour is happening on a caf install or not. |
|
87 | + * |
|
88 | + * @var boolean |
|
89 | + */ |
|
90 | + protected $_is_caf = false; |
|
91 | + |
|
92 | + |
|
93 | + /** |
|
94 | + * _constructor |
|
95 | + * initialized the tour object and sets up important properties required to setup the tour. |
|
96 | + * |
|
97 | + * @access public |
|
98 | + * @param boolean $caf used to indicate if this tour is happening on caf install or not. |
|
99 | + * @return void |
|
100 | + */ |
|
101 | + public function __construct($caf = false) |
|
102 | + { |
|
103 | + $this->_is_caf = $caf; |
|
104 | + $this->_req_data = array_merge($_GET, $_POST); |
|
105 | + $this->_set_tour_properties(); |
|
106 | + $this->_set_tour_stops(); |
|
107 | + $this->_set_tour_options(); |
|
108 | + |
|
109 | + // make sure the last tour stop has "end tour" for its button |
|
110 | + $end = array_pop($this->_stops); |
|
111 | + $end['button_text'] = __('End Tour', 'event_espresso'); |
|
112 | + // add back to stops |
|
113 | + $this->_stops[] = $end; |
|
114 | + } |
|
115 | + |
|
116 | + |
|
117 | + /** |
|
118 | + * required method that has the sole purpose of setting up the tour $_label and $_slug properties |
|
119 | + * |
|
120 | + * @abstract |
|
121 | + * @access protected |
|
122 | + * @return void |
|
123 | + */ |
|
124 | + abstract protected function _set_tour_properties(); |
|
125 | + |
|
126 | + |
|
127 | + /** |
|
128 | + * required method that's sole purpose is to setup the $_stops property |
|
129 | + * |
|
130 | + * @abstract |
|
131 | + * @access protected |
|
132 | + * @return void |
|
133 | + */ |
|
134 | + abstract protected function _set_tour_stops(); |
|
135 | + |
|
136 | + |
|
137 | + /** |
|
138 | + * The method can optionally be overridden by child classes to set the _options array if there are any default |
|
139 | + * options the child wishes to override for a this tour. See property definition for more info |
|
140 | + * |
|
141 | + * @access protected |
|
142 | + * @return void |
|
143 | + */ |
|
144 | + protected function _set_tour_options($options = array()) |
|
145 | + { |
|
146 | + $defaults = array( |
|
147 | + 'tipLocation' => 'bottom', |
|
148 | + // 'top', 'bottom', 'right', 'left' in relation to parent |
|
149 | + 'nubPosition' => 'auto', |
|
150 | + // override on a per tooltip bases. can be "auto", "right", "top", "bottom", "left" |
|
151 | + 'tipAdjustmentY' => 0, |
|
152 | + // allow for adjustment of tip |
|
153 | + 'tipAdjustmentX' => 0, |
|
154 | + // allow for adjustment of tip |
|
155 | + 'scroll' => true, |
|
156 | + // whether to scrollTo the next step or not |
|
157 | + 'scrollSpeed' => 300, |
|
158 | + // Page scrolling speed in ms |
|
159 | + 'timer' => 0, |
|
160 | + // 0 = off, all other numbers = time(ms) |
|
161 | + 'autoStart' => true, |
|
162 | + // true or false - false tour starts when restart called |
|
163 | + 'startTimerOnClick' => true, |
|
164 | + // true/false to start timer on first click |
|
165 | + 'nextButton' => true, |
|
166 | + // true/false for next button visibility |
|
167 | + 'button_text' => __('Next', 'event_espresso'), |
|
168 | + 'tipAnimation' => 'fade', |
|
169 | + // 'pop' or 'fade' in each tip |
|
170 | + 'pauseAfter' => array(), |
|
171 | + // array of indexes where to pause the tour after |
|
172 | + 'tipAnimationFadeSpeed' => 300, |
|
173 | + // if 'fade'- speed in ms of transition |
|
174 | + 'cookieMonster' => true, |
|
175 | + // true/false for whether cookies are used |
|
176 | + 'cookieName' => $this->get_slug(), |
|
177 | + // choose your own cookie name (setup will add the prefix for the specific page joyride) |
|
178 | + // set to false or yoursite.com |
|
179 | + 'cookieDomain' => false, |
|
180 | + // Where the tip be attached if not inline |
|
181 | + // 'tipContainer' => 'body', |
|
182 | + 'modal' => false, |
|
183 | + // Whether to cover page with modal during the tour |
|
184 | + 'expose' => false, |
|
185 | + // Whether to expose the elements at each step in the tour (requires modal:true), |
|
186 | + 'postExposeCallback' => 'EEHelpTour.postExposeCallback', |
|
187 | + // A method to call after an element has been exposed |
|
188 | + 'preRideCallback' => 'EEHelpTour_preRideCallback', |
|
189 | + // A method to call before the tour starts (passed index, tip, and cloned exposed element) |
|
190 | + 'postRideCallback' => 'EEHelpTour_postRideCallback', |
|
191 | + // a method to call once the tour closes. This will correspond to the name of a js method that will have to be defined in loaded js. |
|
192 | + 'preStepCallback' => 'EEHelpTour_preStepCallback', |
|
193 | + // A method to call before each step |
|
194 | + 'postStepCallback' => 'EEHelpTour_postStepCallback', |
|
195 | + // A method to call after each step (remember this will correspond with a js method that you will have to define in a js file BEFORE ee-help-tour.js loads, if the default methods do not exist, then ee-help-tour.js just substitues empty functions $.noop)/**/ |
|
196 | + ); |
|
197 | + |
|
198 | + $options = ! empty($options) && is_array($options) ? array_merge($defaults, $options) : $defaults; |
|
199 | + $this->_options = $options; |
|
200 | + } |
|
201 | + |
|
202 | + |
|
203 | + /** |
|
204 | + * getter functions to return all the properties for the tour. |
|
205 | + */ |
|
206 | + |
|
207 | + |
|
208 | + /** |
|
209 | + * get_slug |
|
210 | + * |
|
211 | + * @return string slug for the tour |
|
212 | + */ |
|
213 | + public function get_slug() |
|
214 | + { |
|
215 | + if (empty($this->_slug)) { |
|
216 | + throw new EE_Error( |
|
217 | + sprintf( |
|
218 | + __( |
|
219 | + 'There is no slug set for the help tour class (%s). Make sure that the $_slug property is set in the class constructor', |
|
220 | + 'event_espresso' |
|
221 | + ), |
|
222 | + get_class($this) |
|
223 | + ) |
|
224 | + ); |
|
225 | + } |
|
226 | + return $this->_slug; |
|
227 | + } |
|
228 | + |
|
229 | + |
|
230 | + /** |
|
231 | + * get_label |
|
232 | + * |
|
233 | + * @return string |
|
234 | + */ |
|
235 | + public function get_label() |
|
236 | + { |
|
237 | + if (empty($this->_label)) { |
|
238 | + throw new EE_Error( |
|
239 | + sprintf( |
|
240 | + __( |
|
241 | + 'There is no label set for the help tour class (%s). Make sure that the $_label property is set in the class constructor', |
|
242 | + 'event_espresso' |
|
243 | + ), |
|
244 | + get_class($this) |
|
245 | + ) |
|
246 | + ); |
|
247 | + } |
|
248 | + return $this->_label; |
|
249 | + } |
|
250 | + |
|
251 | + |
|
252 | + /** |
|
253 | + * get_stops |
|
254 | + * |
|
255 | + * @return array |
|
256 | + */ |
|
257 | + public function get_stops() |
|
258 | + { |
|
259 | + foreach ($this->_stops as $ind => $stop) { |
|
260 | + if (! isset($stop['button_text'])) { |
|
261 | + $this->_stops[ $ind ]['button_text'] = $this->_options['button_text']; |
|
262 | + } |
|
263 | + } |
|
264 | + return $this->_stops; |
|
265 | + } |
|
266 | + |
|
267 | + |
|
268 | + /** |
|
269 | + * get options |
|
270 | + * |
|
271 | + * @return array |
|
272 | + */ |
|
273 | + public function get_options() |
|
274 | + { |
|
275 | + // let's make sure there are not pauses set |
|
276 | + foreach ($this->_stops as $ind => $stop) { |
|
277 | + if (isset($stop['pause_after']) && $stop['pause_after']) { |
|
278 | + $this->_options['pauseAfter'][] = $ind; |
|
279 | + } |
|
280 | + } |
|
281 | + return apply_filters('FHEE__' . get_class($this) . '__get_options', $this->_options, $this); |
|
282 | + } |
|
283 | 283 | } |
@@ -4,19 +4,19 @@ |
||
4 | 4 | <div class="about-text"><?php echo ! empty($admin_page_subtitle) ? $admin_page_subtitle : ''; ?></div> |
5 | 5 | <div class="ee-badge"><img class="" src=" <?php echo EE_GLOBAL_ASSETS_URL; ?>images/event-espresso-cup-90x90.png" |
6 | 6 | width="90" height="90" alt="<?php |
7 | - printf( |
|
8 | - esc_attr__('%s Logo', 'event_espresso'), |
|
9 | - 'Event Espresso' |
|
10 | - ); ?>"/> |
|
7 | + printf( |
|
8 | + esc_attr__('%s Logo', 'event_espresso'), |
|
9 | + 'Event Espresso' |
|
10 | + ); ?>"/> |
|
11 | 11 | <br/><?php printf(__('Version %s', 'event_espresso'), EVENT_ESPRESSO_VERSION); ?></div> |
12 | 12 | |
13 | 13 | <?php echo $nav_tabs; ?> |
14 | 14 | |
15 | 15 | |
16 | 16 | <?php |
17 | - do_action('AHEE__admin_wrapper__template__before_about_admin_page_content'); |
|
18 | - echo $about_admin_page_content; |
|
19 | - do_action('AHEE__admin_wrapper__template__after_about_admin_page_content'); |
|
20 | - ?> |
|
17 | + do_action('AHEE__admin_wrapper__template__before_about_admin_page_content'); |
|
18 | + echo $about_admin_page_content; |
|
19 | + do_action('AHEE__admin_wrapper__template__after_about_admin_page_content'); |
|
20 | + ?> |
|
21 | 21 | |
22 | 22 | </div> |