@@ -66,24 +66,24 @@ discard block |
||
66 | 66 | public function ticketDatetimeAvailability(EE_Ticket $ticket, $get_original_ticket_spaces = false) |
67 | 67 | { |
68 | 68 | // if the $_available_spaces array has not been set up yet... |
69 | - if (! isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
69 | + if ( ! isset($this->available_spaces['tickets'][$ticket->ID()])) { |
|
70 | 70 | $this->setInitialTicketDatetimeAvailability($ticket); |
71 | 71 | } |
72 | 72 | $available_spaces = $ticket->qty() - $ticket->sold(); |
73 | - if (isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
73 | + if (isset($this->available_spaces['tickets'][$ticket->ID()])) { |
|
74 | 74 | // loop thru tickets, which will ALSO include individual ticket records AND a total |
75 | - foreach ($this->available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces) { |
|
75 | + foreach ($this->available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) { |
|
76 | 76 | // if we want the original datetime availability BEFORE we started subtracting tickets ? |
77 | 77 | if ($get_original_ticket_spaces) { |
78 | 78 | // then grab the available spaces from the "tickets" array |
79 | 79 | // and compare with the above to get the lowest number |
80 | 80 | $available_spaces = min( |
81 | 81 | $available_spaces, |
82 | - $this->available_spaces['tickets'][ $ticket->ID() ][ $DTD_ID ] |
|
82 | + $this->available_spaces['tickets'][$ticket->ID()][$DTD_ID] |
|
83 | 83 | ); |
84 | 84 | } else { |
85 | 85 | // we want the updated ticket availability as stored in the "datetimes" array |
86 | - $available_spaces = min($available_spaces, $this->available_spaces['datetimes'][ $DTD_ID ]); |
|
86 | + $available_spaces = min($available_spaces, $this->available_spaces['datetimes'][$DTD_ID]); |
|
87 | 87 | } |
88 | 88 | } |
89 | 89 | } |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | 'order_by' => array('DTT_EVT_start' => 'ASC'), |
115 | 115 | ) |
116 | 116 | ); |
117 | - if (! empty($datetimes)) { |
|
117 | + if ( ! empty($datetimes)) { |
|
118 | 118 | // now loop thru all of the datetimes |
119 | 119 | foreach ($datetimes as $datetime) { |
120 | 120 | if ($datetime instanceof EE_Datetime) { |
@@ -122,17 +122,17 @@ discard block |
||
122 | 122 | $spaces_remaining = $datetime->spaces_remaining(); |
123 | 123 | // save the total available spaces ( the lesser of the ticket qty minus the number of tickets sold |
124 | 124 | // or the datetime spaces remaining) to this ticket using the datetime ID as the key |
125 | - $this->available_spaces['tickets'][ $ticket->ID() ][ $datetime->ID() ] = min( |
|
125 | + $this->available_spaces['tickets'][$ticket->ID()][$datetime->ID()] = min( |
|
126 | 126 | $ticket->qty() - $ticket->sold(), |
127 | 127 | $spaces_remaining |
128 | 128 | ); |
129 | 129 | // if the remaining spaces for this datetime is already set, |
130 | 130 | // then compare that against the datetime spaces remaining, and take the lowest number, |
131 | 131 | // else just take the datetime spaces remaining, and assign to the datetimes array |
132 | - $this->available_spaces['datetimes'][ $datetime->ID() ] = isset( |
|
133 | - $this->available_spaces['datetimes'][ $datetime->ID() ] |
|
132 | + $this->available_spaces['datetimes'][$datetime->ID()] = isset( |
|
133 | + $this->available_spaces['datetimes'][$datetime->ID()] |
|
134 | 134 | ) |
135 | - ? min($this->available_spaces['datetimes'][ $datetime->ID() ], $spaces_remaining) |
|
135 | + ? min($this->available_spaces['datetimes'][$datetime->ID()], $spaces_remaining) |
|
136 | 136 | : $spaces_remaining; |
137 | 137 | } |
138 | 138 | } |
@@ -148,11 +148,11 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function recalculateTicketDatetimeAvailability(EE_Ticket $ticket, $qty = 0) |
150 | 150 | { |
151 | - if (isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
151 | + if (isset($this->available_spaces['tickets'][$ticket->ID()])) { |
|
152 | 152 | // loop thru tickets, which will ALSO include individual ticket records AND a total |
153 | - foreach ($this->available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces) { |
|
153 | + foreach ($this->available_spaces['tickets'][$ticket->ID()] as $DTD_ID => $spaces) { |
|
154 | 154 | // subtract the qty of selected tickets from each datetime's available spaces this ticket has access to, |
155 | - $this->available_spaces['datetimes'][ $DTD_ID ] -= $qty; |
|
155 | + $this->available_spaces['datetimes'][$DTD_ID] -= $qty; |
|
156 | 156 | } |
157 | 157 | } |
158 | 158 | } |
@@ -21,217 +21,217 @@ |
||
21 | 21 | */ |
22 | 22 | class TicketDatetimeAvailabilityTracker |
23 | 23 | { |
24 | - /** |
|
25 | - * array of datetimes and the spaces available for them |
|
26 | - * |
|
27 | - * @var array[][] |
|
28 | - */ |
|
29 | - private $available_spaces = array(); |
|
30 | - |
|
31 | - /** |
|
32 | - * @var EEM_Datetime $datetime_model |
|
33 | - */ |
|
34 | - private $datetime_model; |
|
35 | - |
|
36 | - |
|
37 | - /** |
|
38 | - * TicketDatetimeAvailabilityTracker constructor. |
|
39 | - * |
|
40 | - * @param EEM_Datetime $datetime_model |
|
41 | - */ |
|
42 | - public function __construct(EEM_Datetime $datetime_model) |
|
43 | - { |
|
44 | - $this->datetime_model = $datetime_model; |
|
45 | - } |
|
46 | - |
|
47 | - |
|
48 | - /** |
|
49 | - * ticketDatetimeAvailability |
|
50 | - * creates an array of tickets plus all of the datetimes available to each ticket |
|
51 | - * and tracks the spaces remaining for each of those datetimes |
|
52 | - * |
|
53 | - * @param EE_Ticket $ticket - selected ticket |
|
54 | - * @param bool $get_original_ticket_spaces |
|
55 | - * @return int |
|
56 | - * @throws EE_Error |
|
57 | - * @throws InvalidArgumentException |
|
58 | - * @throws InvalidDataTypeException |
|
59 | - * @throws InvalidInterfaceException |
|
60 | - */ |
|
61 | - public function ticketDatetimeAvailability(EE_Ticket $ticket, $get_original_ticket_spaces = false) |
|
62 | - { |
|
63 | - // if the $_available_spaces array has not been set up yet... |
|
64 | - if (! isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
65 | - $this->setInitialTicketDatetimeAvailability($ticket); |
|
66 | - } |
|
67 | - $available_spaces = $ticket->qty() - $ticket->sold(); |
|
68 | - if (isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
69 | - // loop thru tickets, which will ALSO include individual ticket records AND a total |
|
70 | - foreach ($this->available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces) { |
|
71 | - // if we want the original datetime availability BEFORE we started subtracting tickets ? |
|
72 | - if ($get_original_ticket_spaces) { |
|
73 | - // then grab the available spaces from the "tickets" array |
|
74 | - // and compare with the above to get the lowest number |
|
75 | - $available_spaces = min( |
|
76 | - $available_spaces, |
|
77 | - $this->available_spaces['tickets'][ $ticket->ID() ][ $DTD_ID ] |
|
78 | - ); |
|
79 | - } else { |
|
80 | - // we want the updated ticket availability as stored in the "datetimes" array |
|
81 | - $available_spaces = min($available_spaces, $this->available_spaces['datetimes'][ $DTD_ID ]); |
|
82 | - } |
|
83 | - } |
|
84 | - } |
|
85 | - return $available_spaces; |
|
86 | - } |
|
87 | - |
|
88 | - |
|
89 | - /** |
|
90 | - * @param EE_Ticket $ticket |
|
91 | - * @return void |
|
92 | - * @throws InvalidArgumentException |
|
93 | - * @throws InvalidInterfaceException |
|
94 | - * @throws InvalidDataTypeException |
|
95 | - * @throws EE_Error |
|
96 | - */ |
|
97 | - private function setInitialTicketDatetimeAvailability(EE_Ticket $ticket) |
|
98 | - { |
|
99 | - // first, get all of the datetimes that are available to this ticket |
|
100 | - $datetimes = $ticket->get_many_related( |
|
101 | - 'Datetime', |
|
102 | - array( |
|
103 | - array( |
|
104 | - 'DTT_EVT_end' => array( |
|
105 | - '>=', |
|
106 | - $this->datetime_model->current_time_for_query('DTT_EVT_end'), |
|
107 | - ), |
|
108 | - ), |
|
109 | - 'order_by' => array('DTT_EVT_start' => 'ASC'), |
|
110 | - ) |
|
111 | - ); |
|
112 | - if (! empty($datetimes)) { |
|
113 | - // now loop thru all of the datetimes |
|
114 | - foreach ($datetimes as $datetime) { |
|
115 | - if ($datetime instanceof EE_Datetime) { |
|
116 | - // the number of spaces available for the datetime without considering individual ticket quantities |
|
117 | - $spaces_remaining = $datetime->spaces_remaining(); |
|
118 | - // save the total available spaces ( the lesser of the ticket qty minus the number of tickets sold |
|
119 | - // or the datetime spaces remaining) to this ticket using the datetime ID as the key |
|
120 | - $this->available_spaces['tickets'][ $ticket->ID() ][ $datetime->ID() ] = min( |
|
121 | - $ticket->qty() - $ticket->sold(), |
|
122 | - $spaces_remaining |
|
123 | - ); |
|
124 | - // if the remaining spaces for this datetime is already set, |
|
125 | - // then compare that against the datetime spaces remaining, and take the lowest number, |
|
126 | - // else just take the datetime spaces remaining, and assign to the datetimes array |
|
127 | - $this->available_spaces['datetimes'][ $datetime->ID() ] = isset( |
|
128 | - $this->available_spaces['datetimes'][ $datetime->ID() ] |
|
129 | - ) |
|
130 | - ? min($this->available_spaces['datetimes'][ $datetime->ID() ], $spaces_remaining) |
|
131 | - : $spaces_remaining; |
|
132 | - } |
|
133 | - } |
|
134 | - } |
|
135 | - } |
|
136 | - |
|
137 | - |
|
138 | - /** |
|
139 | - * @param EE_Ticket $ticket |
|
140 | - * @param int $qty |
|
141 | - * @return void |
|
142 | - * @throws EE_Error |
|
143 | - */ |
|
144 | - public function recalculateTicketDatetimeAvailability(EE_Ticket $ticket, $qty = 0) |
|
145 | - { |
|
146 | - if (isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
147 | - // loop thru tickets, which will ALSO include individual ticket records AND a total |
|
148 | - foreach ($this->available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces) { |
|
149 | - // subtract the qty of selected tickets from each datetime's available spaces this ticket has access to, |
|
150 | - $this->available_spaces['datetimes'][ $DTD_ID ] -= $qty; |
|
151 | - } |
|
152 | - } |
|
153 | - } |
|
154 | - |
|
155 | - |
|
156 | - /** |
|
157 | - * @param EE_Ticket $ticket |
|
158 | - * @param $qty |
|
159 | - * @param int $total_ticket_count |
|
160 | - * @throws EE_Error |
|
161 | - * @throws InvalidArgumentException |
|
162 | - * @throws InvalidDataTypeException |
|
163 | - * @throws InvalidInterfaceException |
|
164 | - */ |
|
165 | - public function processAvailabilityError(EE_Ticket $ticket, $qty, $total_ticket_count = 1) |
|
166 | - { |
|
167 | - // tickets can not be purchased but let's find the exact number left |
|
168 | - // for the last ticket selected PRIOR to subtracting tickets |
|
169 | - $available_spaces = $this->ticketDatetimeAvailability($ticket, true); |
|
170 | - // greedy greedy greedy eh? |
|
171 | - if ($available_spaces > 0) { |
|
172 | - if ( |
|
173 | - apply_filters( |
|
174 | - 'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_display_availability_error', |
|
175 | - true, |
|
176 | - $ticket, |
|
177 | - $qty, |
|
178 | - $available_spaces |
|
179 | - ) |
|
180 | - ) { |
|
181 | - $this->availabilityError( |
|
182 | - $available_spaces, |
|
183 | - $total_ticket_count |
|
184 | - ); |
|
185 | - } |
|
186 | - } else { |
|
187 | - EE_Error::add_error( |
|
188 | - esc_html__( |
|
189 | - 'We\'re sorry, but there are no available spaces left for this event at this particular date and time.', |
|
190 | - 'event_espresso' |
|
191 | - ), |
|
192 | - __FILE__, |
|
193 | - __FUNCTION__, |
|
194 | - __LINE__ |
|
195 | - ); |
|
196 | - } |
|
197 | - } |
|
198 | - |
|
199 | - |
|
200 | - /** |
|
201 | - * @param int $available_spaces |
|
202 | - * @param int $total_ticket_count |
|
203 | - */ |
|
204 | - private function availabilityError($available_spaces = 1, $total_ticket_count = 1) |
|
205 | - { |
|
206 | - // add error messaging - we're using the _n function that will generate |
|
207 | - // the appropriate singular or plural message based on the number of $available_spaces |
|
208 | - if ($total_ticket_count) { |
|
209 | - $msg = sprintf( |
|
210 | - esc_html( |
|
211 | - _n( |
|
212 | - 'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.', |
|
213 | - 'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.', |
|
214 | - $available_spaces, |
|
215 | - 'event_espresso' |
|
216 | - ) |
|
217 | - ), |
|
218 | - $available_spaces, |
|
219 | - '<br />' |
|
220 | - ); |
|
221 | - } else { |
|
222 | - $msg = sprintf( |
|
223 | - esc_html( |
|
224 | - _n( |
|
225 | - 'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets.', |
|
226 | - 'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets.', |
|
227 | - $available_spaces, |
|
228 | - 'event_espresso' |
|
229 | - ) |
|
230 | - ), |
|
231 | - $available_spaces, |
|
232 | - '<br />' |
|
233 | - ); |
|
234 | - } |
|
235 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
236 | - } |
|
24 | + /** |
|
25 | + * array of datetimes and the spaces available for them |
|
26 | + * |
|
27 | + * @var array[][] |
|
28 | + */ |
|
29 | + private $available_spaces = array(); |
|
30 | + |
|
31 | + /** |
|
32 | + * @var EEM_Datetime $datetime_model |
|
33 | + */ |
|
34 | + private $datetime_model; |
|
35 | + |
|
36 | + |
|
37 | + /** |
|
38 | + * TicketDatetimeAvailabilityTracker constructor. |
|
39 | + * |
|
40 | + * @param EEM_Datetime $datetime_model |
|
41 | + */ |
|
42 | + public function __construct(EEM_Datetime $datetime_model) |
|
43 | + { |
|
44 | + $this->datetime_model = $datetime_model; |
|
45 | + } |
|
46 | + |
|
47 | + |
|
48 | + /** |
|
49 | + * ticketDatetimeAvailability |
|
50 | + * creates an array of tickets plus all of the datetimes available to each ticket |
|
51 | + * and tracks the spaces remaining for each of those datetimes |
|
52 | + * |
|
53 | + * @param EE_Ticket $ticket - selected ticket |
|
54 | + * @param bool $get_original_ticket_spaces |
|
55 | + * @return int |
|
56 | + * @throws EE_Error |
|
57 | + * @throws InvalidArgumentException |
|
58 | + * @throws InvalidDataTypeException |
|
59 | + * @throws InvalidInterfaceException |
|
60 | + */ |
|
61 | + public function ticketDatetimeAvailability(EE_Ticket $ticket, $get_original_ticket_spaces = false) |
|
62 | + { |
|
63 | + // if the $_available_spaces array has not been set up yet... |
|
64 | + if (! isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
65 | + $this->setInitialTicketDatetimeAvailability($ticket); |
|
66 | + } |
|
67 | + $available_spaces = $ticket->qty() - $ticket->sold(); |
|
68 | + if (isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
69 | + // loop thru tickets, which will ALSO include individual ticket records AND a total |
|
70 | + foreach ($this->available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces) { |
|
71 | + // if we want the original datetime availability BEFORE we started subtracting tickets ? |
|
72 | + if ($get_original_ticket_spaces) { |
|
73 | + // then grab the available spaces from the "tickets" array |
|
74 | + // and compare with the above to get the lowest number |
|
75 | + $available_spaces = min( |
|
76 | + $available_spaces, |
|
77 | + $this->available_spaces['tickets'][ $ticket->ID() ][ $DTD_ID ] |
|
78 | + ); |
|
79 | + } else { |
|
80 | + // we want the updated ticket availability as stored in the "datetimes" array |
|
81 | + $available_spaces = min($available_spaces, $this->available_spaces['datetimes'][ $DTD_ID ]); |
|
82 | + } |
|
83 | + } |
|
84 | + } |
|
85 | + return $available_spaces; |
|
86 | + } |
|
87 | + |
|
88 | + |
|
89 | + /** |
|
90 | + * @param EE_Ticket $ticket |
|
91 | + * @return void |
|
92 | + * @throws InvalidArgumentException |
|
93 | + * @throws InvalidInterfaceException |
|
94 | + * @throws InvalidDataTypeException |
|
95 | + * @throws EE_Error |
|
96 | + */ |
|
97 | + private function setInitialTicketDatetimeAvailability(EE_Ticket $ticket) |
|
98 | + { |
|
99 | + // first, get all of the datetimes that are available to this ticket |
|
100 | + $datetimes = $ticket->get_many_related( |
|
101 | + 'Datetime', |
|
102 | + array( |
|
103 | + array( |
|
104 | + 'DTT_EVT_end' => array( |
|
105 | + '>=', |
|
106 | + $this->datetime_model->current_time_for_query('DTT_EVT_end'), |
|
107 | + ), |
|
108 | + ), |
|
109 | + 'order_by' => array('DTT_EVT_start' => 'ASC'), |
|
110 | + ) |
|
111 | + ); |
|
112 | + if (! empty($datetimes)) { |
|
113 | + // now loop thru all of the datetimes |
|
114 | + foreach ($datetimes as $datetime) { |
|
115 | + if ($datetime instanceof EE_Datetime) { |
|
116 | + // the number of spaces available for the datetime without considering individual ticket quantities |
|
117 | + $spaces_remaining = $datetime->spaces_remaining(); |
|
118 | + // save the total available spaces ( the lesser of the ticket qty minus the number of tickets sold |
|
119 | + // or the datetime spaces remaining) to this ticket using the datetime ID as the key |
|
120 | + $this->available_spaces['tickets'][ $ticket->ID() ][ $datetime->ID() ] = min( |
|
121 | + $ticket->qty() - $ticket->sold(), |
|
122 | + $spaces_remaining |
|
123 | + ); |
|
124 | + // if the remaining spaces for this datetime is already set, |
|
125 | + // then compare that against the datetime spaces remaining, and take the lowest number, |
|
126 | + // else just take the datetime spaces remaining, and assign to the datetimes array |
|
127 | + $this->available_spaces['datetimes'][ $datetime->ID() ] = isset( |
|
128 | + $this->available_spaces['datetimes'][ $datetime->ID() ] |
|
129 | + ) |
|
130 | + ? min($this->available_spaces['datetimes'][ $datetime->ID() ], $spaces_remaining) |
|
131 | + : $spaces_remaining; |
|
132 | + } |
|
133 | + } |
|
134 | + } |
|
135 | + } |
|
136 | + |
|
137 | + |
|
138 | + /** |
|
139 | + * @param EE_Ticket $ticket |
|
140 | + * @param int $qty |
|
141 | + * @return void |
|
142 | + * @throws EE_Error |
|
143 | + */ |
|
144 | + public function recalculateTicketDatetimeAvailability(EE_Ticket $ticket, $qty = 0) |
|
145 | + { |
|
146 | + if (isset($this->available_spaces['tickets'][ $ticket->ID() ])) { |
|
147 | + // loop thru tickets, which will ALSO include individual ticket records AND a total |
|
148 | + foreach ($this->available_spaces['tickets'][ $ticket->ID() ] as $DTD_ID => $spaces) { |
|
149 | + // subtract the qty of selected tickets from each datetime's available spaces this ticket has access to, |
|
150 | + $this->available_spaces['datetimes'][ $DTD_ID ] -= $qty; |
|
151 | + } |
|
152 | + } |
|
153 | + } |
|
154 | + |
|
155 | + |
|
156 | + /** |
|
157 | + * @param EE_Ticket $ticket |
|
158 | + * @param $qty |
|
159 | + * @param int $total_ticket_count |
|
160 | + * @throws EE_Error |
|
161 | + * @throws InvalidArgumentException |
|
162 | + * @throws InvalidDataTypeException |
|
163 | + * @throws InvalidInterfaceException |
|
164 | + */ |
|
165 | + public function processAvailabilityError(EE_Ticket $ticket, $qty, $total_ticket_count = 1) |
|
166 | + { |
|
167 | + // tickets can not be purchased but let's find the exact number left |
|
168 | + // for the last ticket selected PRIOR to subtracting tickets |
|
169 | + $available_spaces = $this->ticketDatetimeAvailability($ticket, true); |
|
170 | + // greedy greedy greedy eh? |
|
171 | + if ($available_spaces > 0) { |
|
172 | + if ( |
|
173 | + apply_filters( |
|
174 | + 'FHEE__EE_Ticket_Selector___add_ticket_to_cart__allow_display_availability_error', |
|
175 | + true, |
|
176 | + $ticket, |
|
177 | + $qty, |
|
178 | + $available_spaces |
|
179 | + ) |
|
180 | + ) { |
|
181 | + $this->availabilityError( |
|
182 | + $available_spaces, |
|
183 | + $total_ticket_count |
|
184 | + ); |
|
185 | + } |
|
186 | + } else { |
|
187 | + EE_Error::add_error( |
|
188 | + esc_html__( |
|
189 | + 'We\'re sorry, but there are no available spaces left for this event at this particular date and time.', |
|
190 | + 'event_espresso' |
|
191 | + ), |
|
192 | + __FILE__, |
|
193 | + __FUNCTION__, |
|
194 | + __LINE__ |
|
195 | + ); |
|
196 | + } |
|
197 | + } |
|
198 | + |
|
199 | + |
|
200 | + /** |
|
201 | + * @param int $available_spaces |
|
202 | + * @param int $total_ticket_count |
|
203 | + */ |
|
204 | + private function availabilityError($available_spaces = 1, $total_ticket_count = 1) |
|
205 | + { |
|
206 | + // add error messaging - we're using the _n function that will generate |
|
207 | + // the appropriate singular or plural message based on the number of $available_spaces |
|
208 | + if ($total_ticket_count) { |
|
209 | + $msg = sprintf( |
|
210 | + esc_html( |
|
211 | + _n( |
|
212 | + 'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.', |
|
213 | + 'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets by cancelling the current selection and choosing again, or proceed to registration.', |
|
214 | + $available_spaces, |
|
215 | + 'event_espresso' |
|
216 | + ) |
|
217 | + ), |
|
218 | + $available_spaces, |
|
219 | + '<br />' |
|
220 | + ); |
|
221 | + } else { |
|
222 | + $msg = sprintf( |
|
223 | + esc_html( |
|
224 | + _n( |
|
225 | + 'We\'re sorry, but there is only %1$s available space left for this event at this particular date and time. Please select a different number (or different combination) of tickets.', |
|
226 | + 'We\'re sorry, but there are only %1$s available spaces left for this event at this particular date and time. Please select a different number (or different combination) of tickets.', |
|
227 | + $available_spaces, |
|
228 | + 'event_espresso' |
|
229 | + ) |
|
230 | + ), |
|
231 | + $available_spaces, |
|
232 | + '<br />' |
|
233 | + ); |
|
234 | + } |
|
235 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
236 | + } |
|
237 | 237 | } |
@@ -78,13 +78,13 @@ |
||
78 | 78 | // EE_Dependency_Map: info about how to load classes required by other classes |
79 | 79 | espresso_load_required( |
80 | 80 | 'EE_Dependency_Map', |
81 | - EE_CORE . 'EE_Dependency_Map.core.php' |
|
81 | + EE_CORE.'EE_Dependency_Map.core.php' |
|
82 | 82 | ); |
83 | 83 | $this->dependency_map = EE_Dependency_Map::instance($this->class_cache); |
84 | 84 | // EE_Registry: central repository for classes (legacy) |
85 | 85 | espresso_load_required( |
86 | 86 | 'EE_Registry', |
87 | - EE_CORE . 'EE_Registry.core.php' |
|
87 | + EE_CORE.'EE_Registry.core.php' |
|
88 | 88 | ); |
89 | 89 | $this->registry = EE_Registry::instance( |
90 | 90 | $this->dependency_map, |
@@ -24,123 +24,123 @@ |
||
24 | 24 | */ |
25 | 25 | class BootstrapDependencyInjectionContainer |
26 | 26 | { |
27 | - /** |
|
28 | - * @var EE_Dependency_Map $dependency_map |
|
29 | - */ |
|
30 | - protected $dependency_map; |
|
31 | - |
|
32 | - /** |
|
33 | - * @type LoaderInterface $loader |
|
34 | - */ |
|
35 | - protected $loader; |
|
36 | - |
|
37 | - /** |
|
38 | - * @var EE_Registry $registry |
|
39 | - */ |
|
40 | - protected $registry; |
|
41 | - |
|
42 | - /** |
|
43 | - * @var ClassInterfaceCache $class_cache |
|
44 | - */ |
|
45 | - private $class_cache; |
|
46 | - |
|
47 | - /** |
|
48 | - * @var Mirror |
|
49 | - */ |
|
50 | - private $mirror; |
|
51 | - |
|
52 | - /** |
|
53 | - * @var ObjectIdentifier |
|
54 | - */ |
|
55 | - private $object_identifier; |
|
56 | - |
|
57 | - |
|
58 | - /** |
|
59 | - * Can't use this just yet until we exorcise some more of our singleton usage from core |
|
60 | - */ |
|
61 | - public function buildDependencyInjectionContainer() |
|
62 | - { |
|
63 | - // build DI container |
|
64 | - // $OpenCoffeeShop = new EventEspresso\core\services\container\OpenCoffeeShop(); |
|
65 | - // $OpenCoffeeShop->addRecipes(); |
|
66 | - // $CoffeeShop = $OpenCoffeeShop->CoffeeShop(); |
|
67 | - } |
|
68 | - |
|
69 | - |
|
70 | - /** |
|
71 | - * Setups EE_Registry and EE_Dependency_Map |
|
72 | - * |
|
73 | - * @throws EE_Error |
|
74 | - */ |
|
75 | - public function buildLegacyDependencyInjectionContainer() |
|
76 | - { |
|
77 | - $this->class_cache = new ClassInterfaceCache(); |
|
78 | - $this->object_identifier = new ObjectIdentifier($this->class_cache); |
|
79 | - $this->mirror = new Mirror(); |
|
80 | - // EE_Dependency_Map: info about how to load classes required by other classes |
|
81 | - espresso_load_required( |
|
82 | - 'EE_Dependency_Map', |
|
83 | - EE_CORE . 'EE_Dependency_Map.core.php' |
|
84 | - ); |
|
85 | - $this->dependency_map = EE_Dependency_Map::instance($this->class_cache); |
|
86 | - // EE_Registry: central repository for classes (legacy) |
|
87 | - espresso_load_required( |
|
88 | - 'EE_Registry', |
|
89 | - EE_CORE . 'EE_Registry.core.php' |
|
90 | - ); |
|
91 | - $this->registry = EE_Registry::instance( |
|
92 | - $this->dependency_map, |
|
93 | - $this->mirror, |
|
94 | - $this->class_cache, |
|
95 | - $this->object_identifier |
|
96 | - ); |
|
97 | - } |
|
98 | - |
|
99 | - |
|
100 | - /** |
|
101 | - * Performs initial setup for the generic Loader |
|
102 | - * |
|
103 | - * @throws InvalidDataTypeException |
|
104 | - * @throws InvalidInterfaceException |
|
105 | - * @throws InvalidArgumentException |
|
106 | - */ |
|
107 | - public function buildLoader() |
|
108 | - { |
|
109 | - $this->loader = LoaderFactory::getLoader( |
|
110 | - $this->registry, |
|
111 | - $this->class_cache, |
|
112 | - $this->object_identifier |
|
113 | - ); |
|
114 | - $this->loader->share('EventEspresso\core\services\loaders\ClassInterfaceCache', $this->class_cache); |
|
115 | - $this->loader->share('EventEspresso\core\services\loaders\ObjectIdentifier', $this->object_identifier); |
|
116 | - $this->loader->share('EventEspresso\core\services\container\Mirror', $this->mirror); |
|
117 | - $this->dependency_map->setLoader($this->loader); |
|
118 | - } |
|
119 | - |
|
120 | - |
|
121 | - /** |
|
122 | - * @return EE_Dependency_Map |
|
123 | - */ |
|
124 | - public function getDependencyMap() |
|
125 | - { |
|
126 | - return $this->dependency_map; |
|
127 | - } |
|
128 | - |
|
129 | - |
|
130 | - /** |
|
131 | - * @return EE_Registry |
|
132 | - */ |
|
133 | - public function getRegistry() |
|
134 | - { |
|
135 | - return $this->registry; |
|
136 | - } |
|
137 | - |
|
138 | - |
|
139 | - /** |
|
140 | - * @return LoaderInterface |
|
141 | - */ |
|
142 | - public function getLoader() |
|
143 | - { |
|
144 | - return $this->loader; |
|
145 | - } |
|
27 | + /** |
|
28 | + * @var EE_Dependency_Map $dependency_map |
|
29 | + */ |
|
30 | + protected $dependency_map; |
|
31 | + |
|
32 | + /** |
|
33 | + * @type LoaderInterface $loader |
|
34 | + */ |
|
35 | + protected $loader; |
|
36 | + |
|
37 | + /** |
|
38 | + * @var EE_Registry $registry |
|
39 | + */ |
|
40 | + protected $registry; |
|
41 | + |
|
42 | + /** |
|
43 | + * @var ClassInterfaceCache $class_cache |
|
44 | + */ |
|
45 | + private $class_cache; |
|
46 | + |
|
47 | + /** |
|
48 | + * @var Mirror |
|
49 | + */ |
|
50 | + private $mirror; |
|
51 | + |
|
52 | + /** |
|
53 | + * @var ObjectIdentifier |
|
54 | + */ |
|
55 | + private $object_identifier; |
|
56 | + |
|
57 | + |
|
58 | + /** |
|
59 | + * Can't use this just yet until we exorcise some more of our singleton usage from core |
|
60 | + */ |
|
61 | + public function buildDependencyInjectionContainer() |
|
62 | + { |
|
63 | + // build DI container |
|
64 | + // $OpenCoffeeShop = new EventEspresso\core\services\container\OpenCoffeeShop(); |
|
65 | + // $OpenCoffeeShop->addRecipes(); |
|
66 | + // $CoffeeShop = $OpenCoffeeShop->CoffeeShop(); |
|
67 | + } |
|
68 | + |
|
69 | + |
|
70 | + /** |
|
71 | + * Setups EE_Registry and EE_Dependency_Map |
|
72 | + * |
|
73 | + * @throws EE_Error |
|
74 | + */ |
|
75 | + public function buildLegacyDependencyInjectionContainer() |
|
76 | + { |
|
77 | + $this->class_cache = new ClassInterfaceCache(); |
|
78 | + $this->object_identifier = new ObjectIdentifier($this->class_cache); |
|
79 | + $this->mirror = new Mirror(); |
|
80 | + // EE_Dependency_Map: info about how to load classes required by other classes |
|
81 | + espresso_load_required( |
|
82 | + 'EE_Dependency_Map', |
|
83 | + EE_CORE . 'EE_Dependency_Map.core.php' |
|
84 | + ); |
|
85 | + $this->dependency_map = EE_Dependency_Map::instance($this->class_cache); |
|
86 | + // EE_Registry: central repository for classes (legacy) |
|
87 | + espresso_load_required( |
|
88 | + 'EE_Registry', |
|
89 | + EE_CORE . 'EE_Registry.core.php' |
|
90 | + ); |
|
91 | + $this->registry = EE_Registry::instance( |
|
92 | + $this->dependency_map, |
|
93 | + $this->mirror, |
|
94 | + $this->class_cache, |
|
95 | + $this->object_identifier |
|
96 | + ); |
|
97 | + } |
|
98 | + |
|
99 | + |
|
100 | + /** |
|
101 | + * Performs initial setup for the generic Loader |
|
102 | + * |
|
103 | + * @throws InvalidDataTypeException |
|
104 | + * @throws InvalidInterfaceException |
|
105 | + * @throws InvalidArgumentException |
|
106 | + */ |
|
107 | + public function buildLoader() |
|
108 | + { |
|
109 | + $this->loader = LoaderFactory::getLoader( |
|
110 | + $this->registry, |
|
111 | + $this->class_cache, |
|
112 | + $this->object_identifier |
|
113 | + ); |
|
114 | + $this->loader->share('EventEspresso\core\services\loaders\ClassInterfaceCache', $this->class_cache); |
|
115 | + $this->loader->share('EventEspresso\core\services\loaders\ObjectIdentifier', $this->object_identifier); |
|
116 | + $this->loader->share('EventEspresso\core\services\container\Mirror', $this->mirror); |
|
117 | + $this->dependency_map->setLoader($this->loader); |
|
118 | + } |
|
119 | + |
|
120 | + |
|
121 | + /** |
|
122 | + * @return EE_Dependency_Map |
|
123 | + */ |
|
124 | + public function getDependencyMap() |
|
125 | + { |
|
126 | + return $this->dependency_map; |
|
127 | + } |
|
128 | + |
|
129 | + |
|
130 | + /** |
|
131 | + * @return EE_Registry |
|
132 | + */ |
|
133 | + public function getRegistry() |
|
134 | + { |
|
135 | + return $this->registry; |
|
136 | + } |
|
137 | + |
|
138 | + |
|
139 | + /** |
|
140 | + * @return LoaderInterface |
|
141 | + */ |
|
142 | + public function getLoader() |
|
143 | + { |
|
144 | + return $this->loader; |
|
145 | + } |
|
146 | 146 | } |
@@ -47,7 +47,7 @@ |
||
47 | 47 | */ |
48 | 48 | public function __construct($generator) |
49 | 49 | { |
50 | - if (! ($generator instanceof EE_Registry || $generator instanceof CoffeeShop)) { |
|
50 | + if ( ! ($generator instanceof EE_Registry || $generator instanceof CoffeeShop)) { |
|
51 | 51 | throw new InvalidArgumentException( |
52 | 52 | esc_html__( |
53 | 53 | 'The CoreLoader class must receive an instance of EE_Registry or the CoffeeShop DI container.', |
@@ -28,111 +28,111 @@ |
||
28 | 28 | */ |
29 | 29 | class CoreLoader implements LoaderDecoratorInterface |
30 | 30 | { |
31 | - /** |
|
32 | - * @var EE_Registry|CoffeeShop $generator |
|
33 | - */ |
|
34 | - private $generator; |
|
31 | + /** |
|
32 | + * @var EE_Registry|CoffeeShop $generator |
|
33 | + */ |
|
34 | + private $generator; |
|
35 | 35 | |
36 | 36 | |
37 | - /** |
|
38 | - * CoreLoader constructor. |
|
39 | - * |
|
40 | - * @param EE_Registry|CoffeeShop $generator |
|
41 | - * @throws InvalidArgumentException |
|
42 | - */ |
|
43 | - public function __construct($generator) |
|
44 | - { |
|
45 | - if (! ($generator instanceof EE_Registry || $generator instanceof CoffeeShop)) { |
|
46 | - throw new InvalidArgumentException( |
|
47 | - esc_html__( |
|
48 | - 'The CoreLoader class must receive an instance of EE_Registry or the CoffeeShop DI container.', |
|
49 | - 'event_espresso' |
|
50 | - ) |
|
51 | - ); |
|
52 | - } |
|
53 | - $this->generator = $generator; |
|
54 | - } |
|
37 | + /** |
|
38 | + * CoreLoader constructor. |
|
39 | + * |
|
40 | + * @param EE_Registry|CoffeeShop $generator |
|
41 | + * @throws InvalidArgumentException |
|
42 | + */ |
|
43 | + public function __construct($generator) |
|
44 | + { |
|
45 | + if (! ($generator instanceof EE_Registry || $generator instanceof CoffeeShop)) { |
|
46 | + throw new InvalidArgumentException( |
|
47 | + esc_html__( |
|
48 | + 'The CoreLoader class must receive an instance of EE_Registry or the CoffeeShop DI container.', |
|
49 | + 'event_espresso' |
|
50 | + ) |
|
51 | + ); |
|
52 | + } |
|
53 | + $this->generator = $generator; |
|
54 | + } |
|
55 | 55 | |
56 | 56 | |
57 | - /** |
|
58 | - * Calls the appropriate loading method from the installed generator; |
|
59 | - * If EE_Registry is being used, then the additional parameters for the EE_Registry::create() method |
|
60 | - * can be added to the $arguments array and they will be extracted and passed to EE_Registry::create(), |
|
61 | - * but NOT to the class being instantiated. |
|
62 | - * This is done by adding the parameters to the $arguments array as follows: |
|
63 | - * array( |
|
64 | - * 'EE_Registry::create(from_db)' => true, // boolean value, default = false |
|
65 | - * 'EE_Registry::create(load_only)' => true, // boolean value, default = false |
|
66 | - * 'EE_Registry::create(addon)' => true, // boolean value, default = false |
|
67 | - * ) |
|
68 | - * |
|
69 | - * @param string $fqcn |
|
70 | - * @param array $arguments |
|
71 | - * @param bool $shared |
|
72 | - * @return mixed |
|
73 | - * @throws OutOfBoundsException |
|
74 | - * @throws ServiceExistsException |
|
75 | - * @throws InstantiationException |
|
76 | - * @throws InvalidIdentifierException |
|
77 | - * @throws InvalidDataTypeException |
|
78 | - * @throws InvalidClassException |
|
79 | - * @throws EE_Error |
|
80 | - * @throws ServiceNotFoundException |
|
81 | - * @throws ReflectionException |
|
82 | - * @throws InvalidInterfaceException |
|
83 | - * @throws InvalidArgumentException |
|
84 | - */ |
|
85 | - public function load($fqcn, $arguments = array(), $shared = true) |
|
86 | - { |
|
87 | - $shared = filter_var($shared, FILTER_VALIDATE_BOOLEAN); |
|
88 | - if ($this->generator instanceof EE_Registry) { |
|
89 | - // check if additional EE_Registry::create() arguments have been passed |
|
90 | - // from_db |
|
91 | - $from_db = isset($arguments['EE_Registry::create(from_db)']) |
|
92 | - ? filter_var($arguments['EE_Registry::create(from_db)'], FILTER_VALIDATE_BOOLEAN) |
|
93 | - : false; |
|
94 | - // load_only |
|
95 | - $load_only = isset($arguments['EE_Registry::create(load_only)']) |
|
96 | - ? filter_var($arguments['EE_Registry::create(load_only)'], FILTER_VALIDATE_BOOLEAN) |
|
97 | - : false; |
|
98 | - // addon |
|
99 | - $addon = isset($arguments['EE_Registry::create(addon)']) |
|
100 | - ? filter_var($arguments['EE_Registry::create(addon)'], FILTER_VALIDATE_BOOLEAN) |
|
101 | - : false; |
|
102 | - unset( |
|
103 | - $arguments['EE_Registry::create(from_db)'], |
|
104 | - $arguments['EE_Registry::create(load_only)'], |
|
105 | - $arguments['EE_Registry::create(addon)'] |
|
106 | - ); |
|
107 | - // addons need to be cached on EE_Registry |
|
108 | - $shared = $addon ? true : $shared; |
|
109 | - return $this->generator->create( |
|
110 | - $fqcn, |
|
111 | - $arguments, |
|
112 | - $shared, |
|
113 | - $from_db, |
|
114 | - $load_only, |
|
115 | - $addon |
|
116 | - ); |
|
117 | - } |
|
118 | - return $this->generator->brew( |
|
119 | - $fqcn, |
|
120 | - $arguments, |
|
121 | - $shared ? CoffeeMaker::BREW_SHARED : CoffeeMaker::BREW_NEW |
|
122 | - ); |
|
123 | - } |
|
57 | + /** |
|
58 | + * Calls the appropriate loading method from the installed generator; |
|
59 | + * If EE_Registry is being used, then the additional parameters for the EE_Registry::create() method |
|
60 | + * can be added to the $arguments array and they will be extracted and passed to EE_Registry::create(), |
|
61 | + * but NOT to the class being instantiated. |
|
62 | + * This is done by adding the parameters to the $arguments array as follows: |
|
63 | + * array( |
|
64 | + * 'EE_Registry::create(from_db)' => true, // boolean value, default = false |
|
65 | + * 'EE_Registry::create(load_only)' => true, // boolean value, default = false |
|
66 | + * 'EE_Registry::create(addon)' => true, // boolean value, default = false |
|
67 | + * ) |
|
68 | + * |
|
69 | + * @param string $fqcn |
|
70 | + * @param array $arguments |
|
71 | + * @param bool $shared |
|
72 | + * @return mixed |
|
73 | + * @throws OutOfBoundsException |
|
74 | + * @throws ServiceExistsException |
|
75 | + * @throws InstantiationException |
|
76 | + * @throws InvalidIdentifierException |
|
77 | + * @throws InvalidDataTypeException |
|
78 | + * @throws InvalidClassException |
|
79 | + * @throws EE_Error |
|
80 | + * @throws ServiceNotFoundException |
|
81 | + * @throws ReflectionException |
|
82 | + * @throws InvalidInterfaceException |
|
83 | + * @throws InvalidArgumentException |
|
84 | + */ |
|
85 | + public function load($fqcn, $arguments = array(), $shared = true) |
|
86 | + { |
|
87 | + $shared = filter_var($shared, FILTER_VALIDATE_BOOLEAN); |
|
88 | + if ($this->generator instanceof EE_Registry) { |
|
89 | + // check if additional EE_Registry::create() arguments have been passed |
|
90 | + // from_db |
|
91 | + $from_db = isset($arguments['EE_Registry::create(from_db)']) |
|
92 | + ? filter_var($arguments['EE_Registry::create(from_db)'], FILTER_VALIDATE_BOOLEAN) |
|
93 | + : false; |
|
94 | + // load_only |
|
95 | + $load_only = isset($arguments['EE_Registry::create(load_only)']) |
|
96 | + ? filter_var($arguments['EE_Registry::create(load_only)'], FILTER_VALIDATE_BOOLEAN) |
|
97 | + : false; |
|
98 | + // addon |
|
99 | + $addon = isset($arguments['EE_Registry::create(addon)']) |
|
100 | + ? filter_var($arguments['EE_Registry::create(addon)'], FILTER_VALIDATE_BOOLEAN) |
|
101 | + : false; |
|
102 | + unset( |
|
103 | + $arguments['EE_Registry::create(from_db)'], |
|
104 | + $arguments['EE_Registry::create(load_only)'], |
|
105 | + $arguments['EE_Registry::create(addon)'] |
|
106 | + ); |
|
107 | + // addons need to be cached on EE_Registry |
|
108 | + $shared = $addon ? true : $shared; |
|
109 | + return $this->generator->create( |
|
110 | + $fqcn, |
|
111 | + $arguments, |
|
112 | + $shared, |
|
113 | + $from_db, |
|
114 | + $load_only, |
|
115 | + $addon |
|
116 | + ); |
|
117 | + } |
|
118 | + return $this->generator->brew( |
|
119 | + $fqcn, |
|
120 | + $arguments, |
|
121 | + $shared ? CoffeeMaker::BREW_SHARED : CoffeeMaker::BREW_NEW |
|
122 | + ); |
|
123 | + } |
|
124 | 124 | |
125 | 125 | |
126 | - /** |
|
127 | - * calls reset() on generator if method exists |
|
128 | - * |
|
129 | - * @throws EE_Error |
|
130 | - * @throws ReflectionException |
|
131 | - */ |
|
132 | - public function reset() |
|
133 | - { |
|
134 | - if ($this->generator instanceof ResettableInterface) { |
|
135 | - $this->generator->reset(); |
|
136 | - } |
|
137 | - } |
|
126 | + /** |
|
127 | + * calls reset() on generator if method exists |
|
128 | + * |
|
129 | + * @throws EE_Error |
|
130 | + * @throws ReflectionException |
|
131 | + */ |
|
132 | + public function reset() |
|
133 | + { |
|
134 | + if ($this->generator instanceof ResettableInterface) { |
|
135 | + $this->generator->reset(); |
|
136 | + } |
|
137 | + } |
|
138 | 138 | } |
@@ -61,7 +61,7 @@ |
||
61 | 61 | { |
62 | 62 | $custom_post_types = $this->custom_post_types->getDefinitions(); |
63 | 63 | foreach ($custom_post_types as $custom_post_type => $CPT) { |
64 | - $this->wp_post_types[ $custom_post_type ] = $this->registerCustomPostType( |
|
64 | + $this->wp_post_types[$custom_post_type] = $this->registerCustomPostType( |
|
65 | 65 | $custom_post_type, |
66 | 66 | $CPT['singular_name'], |
67 | 67 | $CPT['plural_name'], |
@@ -17,314 +17,314 @@ |
||
17 | 17 | */ |
18 | 18 | class RegisterCustomPostTypes |
19 | 19 | { |
20 | - /** |
|
21 | - * @var CustomPostTypeDefinitions $custom_post_types |
|
22 | - */ |
|
23 | - public $custom_post_types; |
|
20 | + /** |
|
21 | + * @var CustomPostTypeDefinitions $custom_post_types |
|
22 | + */ |
|
23 | + public $custom_post_types; |
|
24 | 24 | |
25 | - /** |
|
26 | - * @var WP_Post_Type[] $wp_post_types |
|
27 | - */ |
|
28 | - public $wp_post_types = array(); |
|
25 | + /** |
|
26 | + * @var WP_Post_Type[] $wp_post_types |
|
27 | + */ |
|
28 | + public $wp_post_types = array(); |
|
29 | 29 | |
30 | 30 | |
31 | - /** |
|
32 | - * RegisterCustomPostTypes constructor. |
|
33 | - * |
|
34 | - * @param CustomPostTypeDefinitions $custom_post_types |
|
35 | - */ |
|
36 | - public function __construct(CustomPostTypeDefinitions $custom_post_types) |
|
37 | - { |
|
38 | - $this->custom_post_types = $custom_post_types; |
|
39 | - } |
|
31 | + /** |
|
32 | + * RegisterCustomPostTypes constructor. |
|
33 | + * |
|
34 | + * @param CustomPostTypeDefinitions $custom_post_types |
|
35 | + */ |
|
36 | + public function __construct(CustomPostTypeDefinitions $custom_post_types) |
|
37 | + { |
|
38 | + $this->custom_post_types = $custom_post_types; |
|
39 | + } |
|
40 | 40 | |
41 | 41 | |
42 | - /** |
|
43 | - * @return WP_Post_Type[] |
|
44 | - */ |
|
45 | - public function getRegisteredCustomPostTypes() |
|
46 | - { |
|
47 | - return $this->wp_post_types; |
|
48 | - } |
|
42 | + /** |
|
43 | + * @return WP_Post_Type[] |
|
44 | + */ |
|
45 | + public function getRegisteredCustomPostTypes() |
|
46 | + { |
|
47 | + return $this->wp_post_types; |
|
48 | + } |
|
49 | 49 | |
50 | 50 | |
51 | - /** |
|
52 | - * @return void |
|
53 | - * @throws DomainException |
|
54 | - */ |
|
55 | - public function registerCustomPostTypes() |
|
56 | - { |
|
57 | - $custom_post_types = $this->custom_post_types->getDefinitions(); |
|
58 | - foreach ($custom_post_types as $custom_post_type => $CPT) { |
|
59 | - $this->wp_post_types[ $custom_post_type ] = $this->registerCustomPostType( |
|
60 | - $custom_post_type, |
|
61 | - $CPT['singular_name'], |
|
62 | - $CPT['plural_name'], |
|
63 | - $CPT['singular_slug'], |
|
64 | - $CPT['plural_slug'], |
|
65 | - $CPT['args'] |
|
66 | - ); |
|
67 | - } |
|
68 | - } |
|
51 | + /** |
|
52 | + * @return void |
|
53 | + * @throws DomainException |
|
54 | + */ |
|
55 | + public function registerCustomPostTypes() |
|
56 | + { |
|
57 | + $custom_post_types = $this->custom_post_types->getDefinitions(); |
|
58 | + foreach ($custom_post_types as $custom_post_type => $CPT) { |
|
59 | + $this->wp_post_types[ $custom_post_type ] = $this->registerCustomPostType( |
|
60 | + $custom_post_type, |
|
61 | + $CPT['singular_name'], |
|
62 | + $CPT['plural_name'], |
|
63 | + $CPT['singular_slug'], |
|
64 | + $CPT['plural_slug'], |
|
65 | + $CPT['args'] |
|
66 | + ); |
|
67 | + } |
|
68 | + } |
|
69 | 69 | |
70 | 70 | |
71 | - /** |
|
72 | - * Registers a new custom post type. Sets default settings given only the following params. |
|
73 | - * Returns the registered post type object, or an error object. |
|
74 | - * |
|
75 | - * @param string $post_type the actual post type name |
|
76 | - * IMPORTANT: |
|
77 | - * this must match what the slug is for admin pages related to this CPT |
|
78 | - * Also any models must use this slug as well |
|
79 | - * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
80 | - * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
81 | - * @param string $singular_slug |
|
82 | - * @param string $plural_slug |
|
83 | - * @param array $override_arguments exactly like $args as described in |
|
84 | - * http://codex.wordpress.org/Function_Reference/register_post_type |
|
85 | - * @return WP_Post_Type|WP_Error |
|
86 | - * @throws DomainException |
|
87 | - */ |
|
88 | - public function registerCustomPostType( |
|
89 | - $post_type, |
|
90 | - $singular_name, |
|
91 | - $plural_name, |
|
92 | - $singular_slug = '', |
|
93 | - $plural_slug = '', |
|
94 | - array $override_arguments = array() |
|
95 | - ) { |
|
96 | - $wp_post_type = register_post_type( |
|
97 | - $post_type, |
|
98 | - $this->prepareArguments( |
|
99 | - $post_type, |
|
100 | - $singular_name, |
|
101 | - $plural_name, |
|
102 | - $singular_slug, |
|
103 | - $plural_slug, |
|
104 | - $override_arguments |
|
105 | - ) |
|
106 | - ); |
|
107 | - if ($wp_post_type instanceof WP_Error) { |
|
108 | - throw new DomainException($wp_post_type->get_error_message()); |
|
109 | - } |
|
110 | - return $wp_post_type; |
|
111 | - } |
|
71 | + /** |
|
72 | + * Registers a new custom post type. Sets default settings given only the following params. |
|
73 | + * Returns the registered post type object, or an error object. |
|
74 | + * |
|
75 | + * @param string $post_type the actual post type name |
|
76 | + * IMPORTANT: |
|
77 | + * this must match what the slug is for admin pages related to this CPT |
|
78 | + * Also any models must use this slug as well |
|
79 | + * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
80 | + * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
81 | + * @param string $singular_slug |
|
82 | + * @param string $plural_slug |
|
83 | + * @param array $override_arguments exactly like $args as described in |
|
84 | + * http://codex.wordpress.org/Function_Reference/register_post_type |
|
85 | + * @return WP_Post_Type|WP_Error |
|
86 | + * @throws DomainException |
|
87 | + */ |
|
88 | + public function registerCustomPostType( |
|
89 | + $post_type, |
|
90 | + $singular_name, |
|
91 | + $plural_name, |
|
92 | + $singular_slug = '', |
|
93 | + $plural_slug = '', |
|
94 | + array $override_arguments = array() |
|
95 | + ) { |
|
96 | + $wp_post_type = register_post_type( |
|
97 | + $post_type, |
|
98 | + $this->prepareArguments( |
|
99 | + $post_type, |
|
100 | + $singular_name, |
|
101 | + $plural_name, |
|
102 | + $singular_slug, |
|
103 | + $plural_slug, |
|
104 | + $override_arguments |
|
105 | + ) |
|
106 | + ); |
|
107 | + if ($wp_post_type instanceof WP_Error) { |
|
108 | + throw new DomainException($wp_post_type->get_error_message()); |
|
109 | + } |
|
110 | + return $wp_post_type; |
|
111 | + } |
|
112 | 112 | |
113 | 113 | |
114 | - /** |
|
115 | - * @param string $post_type the actual post type name |
|
116 | - * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
117 | - * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
118 | - * @param string $singular_slug |
|
119 | - * @param string $plural_slug |
|
120 | - * @param array $override_arguments The default values set in this function will be overridden |
|
121 | - * by whatever you set in $override_arguments |
|
122 | - * @return array |
|
123 | - */ |
|
124 | - protected function prepareArguments( |
|
125 | - $post_type, |
|
126 | - $singular_name, |
|
127 | - $plural_name, |
|
128 | - $singular_slug, |
|
129 | - $plural_slug, |
|
130 | - array $override_arguments = array() |
|
131 | - ) { |
|
132 | - // verify plural slug and singular slug, if they aren't we'll use $singular_name and $plural_name |
|
133 | - $singular_slug = ! empty($singular_slug) ? $singular_slug : $singular_name; |
|
134 | - $plural_slug = ! empty($plural_slug) ? $plural_slug : $plural_name; |
|
135 | - $labels = $this->getLabels( |
|
136 | - $singular_name, |
|
137 | - $plural_name, |
|
138 | - $singular_slug, |
|
139 | - $plural_slug |
|
140 | - ); |
|
141 | - // note the page_templates arg in the supports index is something specific to EE. |
|
142 | - // WordPress doesn't actually have that in their register_post_type api. |
|
143 | - $arguments = $this->getDefaultArguments($labels, $post_type, $plural_slug); |
|
144 | - if ($override_arguments) { |
|
145 | - if (isset($override_arguments['labels'])) { |
|
146 | - $labels = array_merge($arguments['labels'], $override_arguments['labels']); |
|
147 | - } |
|
148 | - $arguments = array_merge($arguments, $override_arguments); |
|
149 | - $arguments['labels'] = $labels; |
|
150 | - } |
|
151 | - return $arguments; |
|
152 | - } |
|
114 | + /** |
|
115 | + * @param string $post_type the actual post type name |
|
116 | + * @param string $singular_name a pre-internationalized string for the singular name of the objects |
|
117 | + * @param string $plural_name a pre-internationalized string for the plural name of the objects |
|
118 | + * @param string $singular_slug |
|
119 | + * @param string $plural_slug |
|
120 | + * @param array $override_arguments The default values set in this function will be overridden |
|
121 | + * by whatever you set in $override_arguments |
|
122 | + * @return array |
|
123 | + */ |
|
124 | + protected function prepareArguments( |
|
125 | + $post_type, |
|
126 | + $singular_name, |
|
127 | + $plural_name, |
|
128 | + $singular_slug, |
|
129 | + $plural_slug, |
|
130 | + array $override_arguments = array() |
|
131 | + ) { |
|
132 | + // verify plural slug and singular slug, if they aren't we'll use $singular_name and $plural_name |
|
133 | + $singular_slug = ! empty($singular_slug) ? $singular_slug : $singular_name; |
|
134 | + $plural_slug = ! empty($plural_slug) ? $plural_slug : $plural_name; |
|
135 | + $labels = $this->getLabels( |
|
136 | + $singular_name, |
|
137 | + $plural_name, |
|
138 | + $singular_slug, |
|
139 | + $plural_slug |
|
140 | + ); |
|
141 | + // note the page_templates arg in the supports index is something specific to EE. |
|
142 | + // WordPress doesn't actually have that in their register_post_type api. |
|
143 | + $arguments = $this->getDefaultArguments($labels, $post_type, $plural_slug); |
|
144 | + if ($override_arguments) { |
|
145 | + if (isset($override_arguments['labels'])) { |
|
146 | + $labels = array_merge($arguments['labels'], $override_arguments['labels']); |
|
147 | + } |
|
148 | + $arguments = array_merge($arguments, $override_arguments); |
|
149 | + $arguments['labels'] = $labels; |
|
150 | + } |
|
151 | + return $arguments; |
|
152 | + } |
|
153 | 153 | |
154 | 154 | |
155 | - /** |
|
156 | - * @param string $singular_name |
|
157 | - * @param string $plural_name |
|
158 | - * @param string $singular_slug |
|
159 | - * @param string $plural_slug |
|
160 | - * @return array |
|
161 | - */ |
|
162 | - private function getLabels($singular_name, $plural_name, $singular_slug, $plural_slug) |
|
163 | - { |
|
164 | - return array( |
|
165 | - 'name' => $plural_name, |
|
166 | - 'singular_name' => $singular_name, |
|
167 | - 'singular_slug' => $singular_slug, |
|
168 | - 'plural_slug' => $plural_slug, |
|
169 | - 'add_new' => sprintf( |
|
170 | - /* Translators: Post Type Label */ |
|
171 | - esc_html_x('Add New %s', 'Add New Event', 'event_espresso'), |
|
172 | - $singular_name |
|
173 | - ), |
|
174 | - 'add_new_item' => sprintf( |
|
175 | - /* Translators: Post Type Label */ |
|
176 | - esc_html_x('Add New %s', 'Add New Event', 'event_espresso'), |
|
177 | - $singular_name |
|
178 | - ), |
|
179 | - 'edit_item' => sprintf( |
|
180 | - /* Translators: Post Type Label */ |
|
181 | - esc_html_x('Edit %s', 'Edit Event', 'event_espresso'), |
|
182 | - $singular_name |
|
183 | - ), |
|
184 | - 'new_item' => sprintf( |
|
185 | - /* Translators: Post Type Label */ |
|
186 | - esc_html_x('New %s', 'New Event', 'event_espresso'), |
|
187 | - $singular_name |
|
188 | - ), |
|
189 | - 'all_items' => sprintf( |
|
190 | - /* Translators: Post Type Label */ |
|
191 | - esc_html_x('All %s', 'All Events', 'event_espresso'), |
|
192 | - $plural_name |
|
193 | - ), |
|
194 | - 'view_item' => sprintf( |
|
195 | - /* Translators: Post Type Label */ |
|
196 | - esc_html_x('View %s', 'View Event', 'event_espresso'), |
|
197 | - $singular_name |
|
198 | - ), |
|
199 | - 'view_items' => sprintf( |
|
200 | - /* Translators: Post Type Label */ |
|
201 | - esc_html_x('View %s', 'View Events', 'event_espresso'), |
|
202 | - $plural_name |
|
203 | - ), |
|
204 | - 'archives' => sprintf( |
|
205 | - /* Translators: Post Type Label */ |
|
206 | - esc_html_x('%s Archives', 'Event Archives', 'event_espresso'), |
|
207 | - $singular_name |
|
208 | - ), |
|
209 | - 'attributes' => sprintf( |
|
210 | - /* Translators: Post Type Label */ |
|
211 | - esc_html_x('%s Attributes', 'Event Attributes', 'event_espresso'), |
|
212 | - $singular_name |
|
213 | - ), |
|
214 | - 'insert_into_item' => sprintf( |
|
215 | - /* Translators: Post Type Label */ |
|
216 | - esc_html_x('Insert into this %s', 'Insert into this Event', 'event_espresso'), |
|
217 | - $singular_name |
|
218 | - ), |
|
219 | - 'uploaded_to_this_item' => sprintf( |
|
220 | - /* Translators: Post Type Label */ |
|
221 | - esc_html_x('Uploaded to this %s', 'Uploaded to this Event', 'event_espresso'), |
|
222 | - $singular_name |
|
223 | - ), |
|
224 | - 'filter_items_list' => sprintf( |
|
225 | - /* Translators: Post Type Label */ |
|
226 | - esc_html_x('Filter %s list', 'Filter Events list', 'event_espresso'), |
|
227 | - $plural_name |
|
228 | - ), |
|
229 | - 'items_list_navigation' => sprintf( |
|
230 | - /* Translators: Post Type Label */ |
|
231 | - esc_html_x('%s list navigation', 'Events list navigation', 'event_espresso'), |
|
232 | - $plural_name |
|
233 | - ), |
|
234 | - 'items_list' => sprintf( |
|
235 | - /* Translators: Post Type Label */ |
|
236 | - esc_html_x('%s list', 'Events list', 'event_espresso'), |
|
237 | - $plural_name |
|
238 | - ), |
|
239 | - 'item_published' => sprintf( |
|
240 | - /* Translators: Post Type Label */ |
|
241 | - esc_html_x('%s published', 'Event published', 'event_espresso'), |
|
242 | - $singular_name |
|
243 | - ), |
|
244 | - 'item_published_privately' => sprintf( |
|
245 | - /* Translators: Post Type Label */ |
|
246 | - esc_html_x('%s published privately', 'Event published privately', 'event_espresso'), |
|
247 | - $singular_name |
|
248 | - ), |
|
249 | - 'item_reverted_to_draft' => sprintf( |
|
250 | - /* Translators: Post Type Label */ |
|
251 | - esc_html_x('%s reverted to draft', 'Event reverted to draft', 'event_espresso'), |
|
252 | - $singular_name |
|
253 | - ), |
|
254 | - 'item_scheduled' => sprintf( |
|
255 | - /* Translators: Post Type Label */ |
|
256 | - esc_html_x('%s scheduled', 'Event scheduled', 'event_espresso'), |
|
257 | - $singular_name |
|
258 | - ), |
|
259 | - 'item_updated' => sprintf( |
|
260 | - /* Translators: Post Type Label */ |
|
261 | - esc_html_x('%s updated', 'Event updated', 'event_espresso'), |
|
262 | - $singular_name |
|
263 | - ), |
|
264 | - 'search_items' => sprintf( |
|
265 | - /* Translators: Post Type Label */ |
|
266 | - esc_html_x('Search %s', 'Search Events', 'event_espresso'), |
|
267 | - $plural_name |
|
268 | - ), |
|
269 | - 'not_found' => sprintf( |
|
270 | - /* Translators: Post Type Label */ |
|
271 | - esc_html_x('No %s found', 'No Events found', 'event_espresso'), |
|
272 | - $plural_name |
|
273 | - ), |
|
274 | - 'not_found_in_trash' => sprintf( |
|
275 | - /* Translators: Post Type Label */ |
|
276 | - esc_html_x('No %s found in Trash', 'No Events found in Trash', 'event_espresso'), |
|
277 | - $plural_name |
|
278 | - ), |
|
279 | - 'parent_item_colon' => '', |
|
280 | - 'menu_name' => $plural_name, |
|
281 | - ); |
|
282 | - } |
|
155 | + /** |
|
156 | + * @param string $singular_name |
|
157 | + * @param string $plural_name |
|
158 | + * @param string $singular_slug |
|
159 | + * @param string $plural_slug |
|
160 | + * @return array |
|
161 | + */ |
|
162 | + private function getLabels($singular_name, $plural_name, $singular_slug, $plural_slug) |
|
163 | + { |
|
164 | + return array( |
|
165 | + 'name' => $plural_name, |
|
166 | + 'singular_name' => $singular_name, |
|
167 | + 'singular_slug' => $singular_slug, |
|
168 | + 'plural_slug' => $plural_slug, |
|
169 | + 'add_new' => sprintf( |
|
170 | + /* Translators: Post Type Label */ |
|
171 | + esc_html_x('Add New %s', 'Add New Event', 'event_espresso'), |
|
172 | + $singular_name |
|
173 | + ), |
|
174 | + 'add_new_item' => sprintf( |
|
175 | + /* Translators: Post Type Label */ |
|
176 | + esc_html_x('Add New %s', 'Add New Event', 'event_espresso'), |
|
177 | + $singular_name |
|
178 | + ), |
|
179 | + 'edit_item' => sprintf( |
|
180 | + /* Translators: Post Type Label */ |
|
181 | + esc_html_x('Edit %s', 'Edit Event', 'event_espresso'), |
|
182 | + $singular_name |
|
183 | + ), |
|
184 | + 'new_item' => sprintf( |
|
185 | + /* Translators: Post Type Label */ |
|
186 | + esc_html_x('New %s', 'New Event', 'event_espresso'), |
|
187 | + $singular_name |
|
188 | + ), |
|
189 | + 'all_items' => sprintf( |
|
190 | + /* Translators: Post Type Label */ |
|
191 | + esc_html_x('All %s', 'All Events', 'event_espresso'), |
|
192 | + $plural_name |
|
193 | + ), |
|
194 | + 'view_item' => sprintf( |
|
195 | + /* Translators: Post Type Label */ |
|
196 | + esc_html_x('View %s', 'View Event', 'event_espresso'), |
|
197 | + $singular_name |
|
198 | + ), |
|
199 | + 'view_items' => sprintf( |
|
200 | + /* Translators: Post Type Label */ |
|
201 | + esc_html_x('View %s', 'View Events', 'event_espresso'), |
|
202 | + $plural_name |
|
203 | + ), |
|
204 | + 'archives' => sprintf( |
|
205 | + /* Translators: Post Type Label */ |
|
206 | + esc_html_x('%s Archives', 'Event Archives', 'event_espresso'), |
|
207 | + $singular_name |
|
208 | + ), |
|
209 | + 'attributes' => sprintf( |
|
210 | + /* Translators: Post Type Label */ |
|
211 | + esc_html_x('%s Attributes', 'Event Attributes', 'event_espresso'), |
|
212 | + $singular_name |
|
213 | + ), |
|
214 | + 'insert_into_item' => sprintf( |
|
215 | + /* Translators: Post Type Label */ |
|
216 | + esc_html_x('Insert into this %s', 'Insert into this Event', 'event_espresso'), |
|
217 | + $singular_name |
|
218 | + ), |
|
219 | + 'uploaded_to_this_item' => sprintf( |
|
220 | + /* Translators: Post Type Label */ |
|
221 | + esc_html_x('Uploaded to this %s', 'Uploaded to this Event', 'event_espresso'), |
|
222 | + $singular_name |
|
223 | + ), |
|
224 | + 'filter_items_list' => sprintf( |
|
225 | + /* Translators: Post Type Label */ |
|
226 | + esc_html_x('Filter %s list', 'Filter Events list', 'event_espresso'), |
|
227 | + $plural_name |
|
228 | + ), |
|
229 | + 'items_list_navigation' => sprintf( |
|
230 | + /* Translators: Post Type Label */ |
|
231 | + esc_html_x('%s list navigation', 'Events list navigation', 'event_espresso'), |
|
232 | + $plural_name |
|
233 | + ), |
|
234 | + 'items_list' => sprintf( |
|
235 | + /* Translators: Post Type Label */ |
|
236 | + esc_html_x('%s list', 'Events list', 'event_espresso'), |
|
237 | + $plural_name |
|
238 | + ), |
|
239 | + 'item_published' => sprintf( |
|
240 | + /* Translators: Post Type Label */ |
|
241 | + esc_html_x('%s published', 'Event published', 'event_espresso'), |
|
242 | + $singular_name |
|
243 | + ), |
|
244 | + 'item_published_privately' => sprintf( |
|
245 | + /* Translators: Post Type Label */ |
|
246 | + esc_html_x('%s published privately', 'Event published privately', 'event_espresso'), |
|
247 | + $singular_name |
|
248 | + ), |
|
249 | + 'item_reverted_to_draft' => sprintf( |
|
250 | + /* Translators: Post Type Label */ |
|
251 | + esc_html_x('%s reverted to draft', 'Event reverted to draft', 'event_espresso'), |
|
252 | + $singular_name |
|
253 | + ), |
|
254 | + 'item_scheduled' => sprintf( |
|
255 | + /* Translators: Post Type Label */ |
|
256 | + esc_html_x('%s scheduled', 'Event scheduled', 'event_espresso'), |
|
257 | + $singular_name |
|
258 | + ), |
|
259 | + 'item_updated' => sprintf( |
|
260 | + /* Translators: Post Type Label */ |
|
261 | + esc_html_x('%s updated', 'Event updated', 'event_espresso'), |
|
262 | + $singular_name |
|
263 | + ), |
|
264 | + 'search_items' => sprintf( |
|
265 | + /* Translators: Post Type Label */ |
|
266 | + esc_html_x('Search %s', 'Search Events', 'event_espresso'), |
|
267 | + $plural_name |
|
268 | + ), |
|
269 | + 'not_found' => sprintf( |
|
270 | + /* Translators: Post Type Label */ |
|
271 | + esc_html_x('No %s found', 'No Events found', 'event_espresso'), |
|
272 | + $plural_name |
|
273 | + ), |
|
274 | + 'not_found_in_trash' => sprintf( |
|
275 | + /* Translators: Post Type Label */ |
|
276 | + esc_html_x('No %s found in Trash', 'No Events found in Trash', 'event_espresso'), |
|
277 | + $plural_name |
|
278 | + ), |
|
279 | + 'parent_item_colon' => '', |
|
280 | + 'menu_name' => $plural_name, |
|
281 | + ); |
|
282 | + } |
|
283 | 283 | |
284 | 284 | |
285 | - /** |
|
286 | - * @param array $labels |
|
287 | - * @param string $post_type |
|
288 | - * @param string $plural_slug |
|
289 | - * @return array |
|
290 | - */ |
|
291 | - private function getDefaultArguments(array $labels, $post_type, $plural_slug) |
|
292 | - { |
|
293 | - return array( |
|
294 | - 'labels' => $labels, |
|
295 | - 'public' => true, |
|
296 | - 'publicly_queryable' => true, |
|
297 | - 'show_ui' => false, |
|
298 | - 'show_ee_ui' => true, |
|
299 | - 'show_in_menu' => false, |
|
300 | - 'show_in_nav_menus' => false, |
|
301 | - 'query_var' => true, |
|
302 | - 'rewrite' => apply_filters( |
|
303 | - 'FHEE__EventEspresso_core_domain_entities_custom_post_types_RegisterCustomPostTypes__getDefaultArguments__rewrite', |
|
304 | - // legacy filter applied for now, |
|
305 | - // later on we'll run a has_filter($tag) check and throw a doing_it_wrong() notice |
|
306 | - apply_filters( |
|
307 | - 'FHEE__EE_Register_CPTs__register_CPT__rewrite', |
|
308 | - array('slug' => $plural_slug), |
|
309 | - $post_type |
|
310 | - ), |
|
311 | - $post_type, |
|
312 | - $plural_slug |
|
313 | - ), |
|
314 | - 'capability_type' => 'post', |
|
315 | - 'map_meta_cap' => true, |
|
316 | - 'has_archive' => true, |
|
317 | - 'hierarchical' => false, |
|
318 | - 'menu_position' => null, |
|
319 | - 'supports' => array( |
|
320 | - 'title', |
|
321 | - 'editor', |
|
322 | - 'author', |
|
323 | - 'thumbnail', |
|
324 | - 'excerpt', |
|
325 | - 'custom-fields', |
|
326 | - 'comments', |
|
327 | - ), |
|
328 | - ); |
|
329 | - } |
|
285 | + /** |
|
286 | + * @param array $labels |
|
287 | + * @param string $post_type |
|
288 | + * @param string $plural_slug |
|
289 | + * @return array |
|
290 | + */ |
|
291 | + private function getDefaultArguments(array $labels, $post_type, $plural_slug) |
|
292 | + { |
|
293 | + return array( |
|
294 | + 'labels' => $labels, |
|
295 | + 'public' => true, |
|
296 | + 'publicly_queryable' => true, |
|
297 | + 'show_ui' => false, |
|
298 | + 'show_ee_ui' => true, |
|
299 | + 'show_in_menu' => false, |
|
300 | + 'show_in_nav_menus' => false, |
|
301 | + 'query_var' => true, |
|
302 | + 'rewrite' => apply_filters( |
|
303 | + 'FHEE__EventEspresso_core_domain_entities_custom_post_types_RegisterCustomPostTypes__getDefaultArguments__rewrite', |
|
304 | + // legacy filter applied for now, |
|
305 | + // later on we'll run a has_filter($tag) check and throw a doing_it_wrong() notice |
|
306 | + apply_filters( |
|
307 | + 'FHEE__EE_Register_CPTs__register_CPT__rewrite', |
|
308 | + array('slug' => $plural_slug), |
|
309 | + $post_type |
|
310 | + ), |
|
311 | + $post_type, |
|
312 | + $plural_slug |
|
313 | + ), |
|
314 | + 'capability_type' => 'post', |
|
315 | + 'map_meta_cap' => true, |
|
316 | + 'has_archive' => true, |
|
317 | + 'hierarchical' => false, |
|
318 | + 'menu_position' => null, |
|
319 | + 'supports' => array( |
|
320 | + 'title', |
|
321 | + 'editor', |
|
322 | + 'author', |
|
323 | + 'thumbnail', |
|
324 | + 'excerpt', |
|
325 | + 'custom-fields', |
|
326 | + 'comments', |
|
327 | + ), |
|
328 | + ); |
|
329 | + } |
|
330 | 330 | } |
@@ -82,7 +82,7 @@ discard block |
||
82 | 82 | */ |
83 | 83 | private function setType($type) |
84 | 84 | { |
85 | - if (! in_array($type, $this->validAssetTypes(), true)) { |
|
85 | + if ( ! in_array($type, $this->validAssetTypes(), true)) { |
|
86 | 86 | throw new InvalidDataTypeException( |
87 | 87 | 'Asset::$type', |
88 | 88 | $type, |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | */ |
100 | 100 | private function setHandle($handle) |
101 | 101 | { |
102 | - if (! is_string($handle)) { |
|
102 | + if ( ! is_string($handle)) { |
|
103 | 103 | throw new InvalidDataTypeException( |
104 | 104 | '$handle', |
105 | 105 | $handle, |
@@ -15,206 +15,206 @@ |
||
15 | 15 | */ |
16 | 16 | abstract class Asset |
17 | 17 | { |
18 | - /** |
|
19 | - * indicates the file extension for a CSS file |
|
20 | - */ |
|
21 | - const EXT_CSS = '.css'; |
|
22 | - |
|
23 | - /** |
|
24 | - * indicates the file extension for a JS file |
|
25 | - */ |
|
26 | - const EXT_JS = '.js'; |
|
27 | - |
|
28 | - /** |
|
29 | - * indicates the file extension for a JS file |
|
30 | - */ |
|
31 | - const EXT_PHP = '.php'; |
|
32 | - |
|
33 | - /** |
|
34 | - * indicates the file extension for a build distribution CSS file |
|
35 | - */ |
|
36 | - const FILE_EXTENSION_DISTRIBUTION_CSS = '.dist.css'; |
|
37 | - |
|
38 | - /** |
|
39 | - * indicates the file extension for a build distribution JS file |
|
40 | - */ |
|
41 | - const FILE_EXTENSION_DISTRIBUTION_JS = '.dist.js'; |
|
42 | - |
|
43 | - /** |
|
44 | - * Indicates the file extension for a build distribution dependencies json file. |
|
45 | - */ |
|
46 | - const FILE_EXTENSION_DISTRIBUTION_DEPS = '.dist.deps.php'; |
|
47 | - |
|
48 | - /** |
|
49 | - * indicates a Cascading Style Sheet asset |
|
50 | - */ |
|
51 | - const TYPE_CSS = 'css'; |
|
52 | - |
|
53 | - /** |
|
54 | - * indicates a Javascript asset |
|
55 | - */ |
|
56 | - const TYPE_JS = 'js'; |
|
57 | - |
|
58 | - /** |
|
59 | - * indicates a JSON asset |
|
60 | - */ |
|
61 | - CONST TYPE_JSON = 'json'; |
|
62 | - /** |
|
63 | - * indicates a PHP asset |
|
64 | - */ |
|
65 | - CONST TYPE_PHP = 'php'; |
|
66 | - |
|
67 | - /** |
|
68 | - * indicates a Javascript manifest file |
|
69 | - */ |
|
70 | - const TYPE_MANIFEST = 'manifest'; |
|
71 | - |
|
72 | - /** |
|
73 | - * @var DomainInterface $domain |
|
74 | - */ |
|
75 | - protected $domain; |
|
76 | - |
|
77 | - /** |
|
78 | - * @var string $type |
|
79 | - */ |
|
80 | - private $type; |
|
81 | - |
|
82 | - /** |
|
83 | - * @var string $handle |
|
84 | - */ |
|
85 | - private $handle; |
|
86 | - |
|
87 | - /** |
|
88 | - * @var bool $registered |
|
89 | - */ |
|
90 | - private $registered = false; |
|
91 | - |
|
92 | - /** |
|
93 | - * @var bool $enqueue_immediately |
|
94 | - */ |
|
95 | - private $enqueue_immediately = false; |
|
96 | - |
|
97 | - |
|
98 | - /** |
|
99 | - * Asset constructor. |
|
100 | - * |
|
101 | - * @param $type |
|
102 | - * @param string $handle |
|
103 | - * @param DomainInterface $domain |
|
104 | - * @throws InvalidDataTypeException |
|
105 | - */ |
|
106 | - public function __construct($type, $handle, DomainInterface $domain) |
|
107 | - { |
|
108 | - $this->domain = $domain; |
|
109 | - $this->setType($type); |
|
110 | - $this->setHandle($handle); |
|
111 | - } |
|
112 | - |
|
113 | - |
|
114 | - /** |
|
115 | - * @return array |
|
116 | - */ |
|
117 | - public function validAssetTypes() |
|
118 | - { |
|
119 | - return array( |
|
120 | - Asset::TYPE_CSS, |
|
121 | - Asset::TYPE_JS, |
|
122 | - Asset::TYPE_MANIFEST, |
|
123 | - ); |
|
124 | - } |
|
125 | - |
|
126 | - |
|
127 | - /** |
|
128 | - * @param string $type |
|
129 | - * @throws InvalidDataTypeException |
|
130 | - */ |
|
131 | - private function setType($type) |
|
132 | - { |
|
133 | - if (! in_array($type, $this->validAssetTypes(), true)) { |
|
134 | - throw new InvalidDataTypeException( |
|
135 | - 'Asset::$type', |
|
136 | - $type, |
|
137 | - 'one of the TYPE_* class constants on \EventEspresso\core\domain\values\Asset is required' |
|
138 | - ); |
|
139 | - } |
|
140 | - $this->type = $type; |
|
141 | - } |
|
142 | - |
|
143 | - |
|
144 | - /** |
|
145 | - * @param string $handle |
|
146 | - * @throws InvalidDataTypeException |
|
147 | - */ |
|
148 | - private function setHandle($handle) |
|
149 | - { |
|
150 | - if (! is_string($handle)) { |
|
151 | - throw new InvalidDataTypeException( |
|
152 | - '$handle', |
|
153 | - $handle, |
|
154 | - 'string' |
|
155 | - ); |
|
156 | - } |
|
157 | - $this->handle = $handle; |
|
158 | - } |
|
159 | - |
|
160 | - |
|
161 | - /** |
|
162 | - * @return string |
|
163 | - */ |
|
164 | - public function assetNamespace() |
|
165 | - { |
|
166 | - return $this->domain->assetNamespace(); |
|
167 | - } |
|
168 | - |
|
169 | - |
|
170 | - /** |
|
171 | - * @return string |
|
172 | - */ |
|
173 | - public function type() |
|
174 | - { |
|
175 | - return $this->type; |
|
176 | - } |
|
177 | - |
|
178 | - |
|
179 | - /** |
|
180 | - * @return string |
|
181 | - */ |
|
182 | - public function handle() |
|
183 | - { |
|
184 | - return $this->handle; |
|
185 | - } |
|
186 | - |
|
187 | - /** |
|
188 | - * @return bool |
|
189 | - */ |
|
190 | - public function isRegistered() |
|
191 | - { |
|
192 | - return $this->registered; |
|
193 | - } |
|
194 | - |
|
195 | - /** |
|
196 | - * @param bool $registered |
|
197 | - */ |
|
198 | - public function setRegistered($registered = true) |
|
199 | - { |
|
200 | - $this->registered = filter_var($registered, FILTER_VALIDATE_BOOLEAN); |
|
201 | - } |
|
202 | - |
|
203 | - |
|
204 | - /** |
|
205 | - * @return bool |
|
206 | - */ |
|
207 | - public function enqueueImmediately() |
|
208 | - { |
|
209 | - return $this->enqueue_immediately; |
|
210 | - } |
|
211 | - |
|
212 | - |
|
213 | - /** |
|
214 | - * @param bool $enqueue_immediately |
|
215 | - */ |
|
216 | - public function setEnqueueImmediately($enqueue_immediately = true) |
|
217 | - { |
|
218 | - $this->enqueue_immediately = filter_var($enqueue_immediately, FILTER_VALIDATE_BOOLEAN); |
|
219 | - } |
|
18 | + /** |
|
19 | + * indicates the file extension for a CSS file |
|
20 | + */ |
|
21 | + const EXT_CSS = '.css'; |
|
22 | + |
|
23 | + /** |
|
24 | + * indicates the file extension for a JS file |
|
25 | + */ |
|
26 | + const EXT_JS = '.js'; |
|
27 | + |
|
28 | + /** |
|
29 | + * indicates the file extension for a JS file |
|
30 | + */ |
|
31 | + const EXT_PHP = '.php'; |
|
32 | + |
|
33 | + /** |
|
34 | + * indicates the file extension for a build distribution CSS file |
|
35 | + */ |
|
36 | + const FILE_EXTENSION_DISTRIBUTION_CSS = '.dist.css'; |
|
37 | + |
|
38 | + /** |
|
39 | + * indicates the file extension for a build distribution JS file |
|
40 | + */ |
|
41 | + const FILE_EXTENSION_DISTRIBUTION_JS = '.dist.js'; |
|
42 | + |
|
43 | + /** |
|
44 | + * Indicates the file extension for a build distribution dependencies json file. |
|
45 | + */ |
|
46 | + const FILE_EXTENSION_DISTRIBUTION_DEPS = '.dist.deps.php'; |
|
47 | + |
|
48 | + /** |
|
49 | + * indicates a Cascading Style Sheet asset |
|
50 | + */ |
|
51 | + const TYPE_CSS = 'css'; |
|
52 | + |
|
53 | + /** |
|
54 | + * indicates a Javascript asset |
|
55 | + */ |
|
56 | + const TYPE_JS = 'js'; |
|
57 | + |
|
58 | + /** |
|
59 | + * indicates a JSON asset |
|
60 | + */ |
|
61 | + CONST TYPE_JSON = 'json'; |
|
62 | + /** |
|
63 | + * indicates a PHP asset |
|
64 | + */ |
|
65 | + CONST TYPE_PHP = 'php'; |
|
66 | + |
|
67 | + /** |
|
68 | + * indicates a Javascript manifest file |
|
69 | + */ |
|
70 | + const TYPE_MANIFEST = 'manifest'; |
|
71 | + |
|
72 | + /** |
|
73 | + * @var DomainInterface $domain |
|
74 | + */ |
|
75 | + protected $domain; |
|
76 | + |
|
77 | + /** |
|
78 | + * @var string $type |
|
79 | + */ |
|
80 | + private $type; |
|
81 | + |
|
82 | + /** |
|
83 | + * @var string $handle |
|
84 | + */ |
|
85 | + private $handle; |
|
86 | + |
|
87 | + /** |
|
88 | + * @var bool $registered |
|
89 | + */ |
|
90 | + private $registered = false; |
|
91 | + |
|
92 | + /** |
|
93 | + * @var bool $enqueue_immediately |
|
94 | + */ |
|
95 | + private $enqueue_immediately = false; |
|
96 | + |
|
97 | + |
|
98 | + /** |
|
99 | + * Asset constructor. |
|
100 | + * |
|
101 | + * @param $type |
|
102 | + * @param string $handle |
|
103 | + * @param DomainInterface $domain |
|
104 | + * @throws InvalidDataTypeException |
|
105 | + */ |
|
106 | + public function __construct($type, $handle, DomainInterface $domain) |
|
107 | + { |
|
108 | + $this->domain = $domain; |
|
109 | + $this->setType($type); |
|
110 | + $this->setHandle($handle); |
|
111 | + } |
|
112 | + |
|
113 | + |
|
114 | + /** |
|
115 | + * @return array |
|
116 | + */ |
|
117 | + public function validAssetTypes() |
|
118 | + { |
|
119 | + return array( |
|
120 | + Asset::TYPE_CSS, |
|
121 | + Asset::TYPE_JS, |
|
122 | + Asset::TYPE_MANIFEST, |
|
123 | + ); |
|
124 | + } |
|
125 | + |
|
126 | + |
|
127 | + /** |
|
128 | + * @param string $type |
|
129 | + * @throws InvalidDataTypeException |
|
130 | + */ |
|
131 | + private function setType($type) |
|
132 | + { |
|
133 | + if (! in_array($type, $this->validAssetTypes(), true)) { |
|
134 | + throw new InvalidDataTypeException( |
|
135 | + 'Asset::$type', |
|
136 | + $type, |
|
137 | + 'one of the TYPE_* class constants on \EventEspresso\core\domain\values\Asset is required' |
|
138 | + ); |
|
139 | + } |
|
140 | + $this->type = $type; |
|
141 | + } |
|
142 | + |
|
143 | + |
|
144 | + /** |
|
145 | + * @param string $handle |
|
146 | + * @throws InvalidDataTypeException |
|
147 | + */ |
|
148 | + private function setHandle($handle) |
|
149 | + { |
|
150 | + if (! is_string($handle)) { |
|
151 | + throw new InvalidDataTypeException( |
|
152 | + '$handle', |
|
153 | + $handle, |
|
154 | + 'string' |
|
155 | + ); |
|
156 | + } |
|
157 | + $this->handle = $handle; |
|
158 | + } |
|
159 | + |
|
160 | + |
|
161 | + /** |
|
162 | + * @return string |
|
163 | + */ |
|
164 | + public function assetNamespace() |
|
165 | + { |
|
166 | + return $this->domain->assetNamespace(); |
|
167 | + } |
|
168 | + |
|
169 | + |
|
170 | + /** |
|
171 | + * @return string |
|
172 | + */ |
|
173 | + public function type() |
|
174 | + { |
|
175 | + return $this->type; |
|
176 | + } |
|
177 | + |
|
178 | + |
|
179 | + /** |
|
180 | + * @return string |
|
181 | + */ |
|
182 | + public function handle() |
|
183 | + { |
|
184 | + return $this->handle; |
|
185 | + } |
|
186 | + |
|
187 | + /** |
|
188 | + * @return bool |
|
189 | + */ |
|
190 | + public function isRegistered() |
|
191 | + { |
|
192 | + return $this->registered; |
|
193 | + } |
|
194 | + |
|
195 | + /** |
|
196 | + * @param bool $registered |
|
197 | + */ |
|
198 | + public function setRegistered($registered = true) |
|
199 | + { |
|
200 | + $this->registered = filter_var($registered, FILTER_VALIDATE_BOOLEAN); |
|
201 | + } |
|
202 | + |
|
203 | + |
|
204 | + /** |
|
205 | + * @return bool |
|
206 | + */ |
|
207 | + public function enqueueImmediately() |
|
208 | + { |
|
209 | + return $this->enqueue_immediately; |
|
210 | + } |
|
211 | + |
|
212 | + |
|
213 | + /** |
|
214 | + * @param bool $enqueue_immediately |
|
215 | + */ |
|
216 | + public function setEnqueueImmediately($enqueue_immediately = true) |
|
217 | + { |
|
218 | + $this->enqueue_immediately = filter_var($enqueue_immediately, FILTER_VALIDATE_BOOLEAN); |
|
219 | + } |
|
220 | 220 | } |
@@ -54,7 +54,7 @@ |
||
54 | 54 | */ |
55 | 55 | private function setMedia($media) |
56 | 56 | { |
57 | - if (! is_string($media)) { |
|
57 | + if ( ! is_string($media)) { |
|
58 | 58 | throw new InvalidDataTypeException( |
59 | 59 | '$media', |
60 | 60 | $media, |
@@ -17,71 +17,71 @@ |
||
17 | 17 | class StylesheetAsset extends BrowserAsset |
18 | 18 | { |
19 | 19 | |
20 | - /** |
|
21 | - * @var string $media |
|
22 | - */ |
|
23 | - private $media; |
|
20 | + /** |
|
21 | + * @var string $media |
|
22 | + */ |
|
23 | + private $media; |
|
24 | 24 | |
25 | 25 | |
26 | - /** |
|
27 | - * CssFile constructor. |
|
28 | - * |
|
29 | - * @param $handle |
|
30 | - * @param string $source |
|
31 | - * @param array $dependencies |
|
32 | - * @param DomainInterface $domain |
|
33 | - * @param string $media |
|
34 | - * @param string $version |
|
35 | - * @throws InvalidDataTypeException |
|
36 | - * @throws DomainException |
|
37 | - */ |
|
38 | - public function __construct( |
|
39 | - $handle, |
|
40 | - $source, |
|
41 | - array $dependencies, |
|
42 | - DomainInterface $domain, |
|
43 | - $media = 'all', |
|
44 | - $version = '' |
|
45 | - ) { |
|
46 | - parent::__construct(Asset::TYPE_CSS, $handle, $source, $dependencies, $domain, $version); |
|
47 | - $this->setMedia($media); |
|
48 | - } |
|
26 | + /** |
|
27 | + * CssFile constructor. |
|
28 | + * |
|
29 | + * @param $handle |
|
30 | + * @param string $source |
|
31 | + * @param array $dependencies |
|
32 | + * @param DomainInterface $domain |
|
33 | + * @param string $media |
|
34 | + * @param string $version |
|
35 | + * @throws InvalidDataTypeException |
|
36 | + * @throws DomainException |
|
37 | + */ |
|
38 | + public function __construct( |
|
39 | + $handle, |
|
40 | + $source, |
|
41 | + array $dependencies, |
|
42 | + DomainInterface $domain, |
|
43 | + $media = 'all', |
|
44 | + $version = '' |
|
45 | + ) { |
|
46 | + parent::__construct(Asset::TYPE_CSS, $handle, $source, $dependencies, $domain, $version); |
|
47 | + $this->setMedia($media); |
|
48 | + } |
|
49 | 49 | |
50 | 50 | |
51 | - /** |
|
52 | - * @return string |
|
53 | - */ |
|
54 | - public function media() |
|
55 | - { |
|
56 | - return $this->media; |
|
57 | - } |
|
51 | + /** |
|
52 | + * @return string |
|
53 | + */ |
|
54 | + public function media() |
|
55 | + { |
|
56 | + return $this->media; |
|
57 | + } |
|
58 | 58 | |
59 | 59 | |
60 | - /** |
|
61 | - * @param string $media |
|
62 | - * @throws InvalidDataTypeException |
|
63 | - */ |
|
64 | - private function setMedia($media) |
|
65 | - { |
|
66 | - if (! is_string($media)) { |
|
67 | - throw new InvalidDataTypeException( |
|
68 | - '$media', |
|
69 | - $media, |
|
70 | - 'string' |
|
71 | - ); |
|
72 | - } |
|
73 | - $this->media = $media; |
|
74 | - } |
|
60 | + /** |
|
61 | + * @param string $media |
|
62 | + * @throws InvalidDataTypeException |
|
63 | + */ |
|
64 | + private function setMedia($media) |
|
65 | + { |
|
66 | + if (! is_string($media)) { |
|
67 | + throw new InvalidDataTypeException( |
|
68 | + '$media', |
|
69 | + $media, |
|
70 | + 'string' |
|
71 | + ); |
|
72 | + } |
|
73 | + $this->media = $media; |
|
74 | + } |
|
75 | 75 | |
76 | 76 | |
77 | - /** |
|
78 | - * @since 4.9.62.p |
|
79 | - */ |
|
80 | - public function enqueueAsset() |
|
81 | - { |
|
82 | - if ($this->source() === '') { |
|
83 | - return; |
|
84 | - } |
|
85 | - wp_enqueue_style($this->handle()); |
|
86 | - } |
|
77 | + /** |
|
78 | + * @since 4.9.62.p |
|
79 | + */ |
|
80 | + public function enqueueAsset() |
|
81 | + { |
|
82 | + if ($this->source() === '') { |
|
83 | + return; |
|
84 | + } |
|
85 | + wp_enqueue_style($this->handle()); |
|
86 | + } |
|
87 | 87 | } |
@@ -35,6 +35,6 @@ |
||
35 | 35 | */ |
36 | 36 | public static function getIdBase($widget_class) |
37 | 37 | { |
38 | - return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)) . '-widget'; |
|
38 | + return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)).'-widget'; |
|
39 | 39 | } |
40 | 40 | } |
@@ -11,28 +11,28 @@ |
||
11 | 11 | */ |
12 | 12 | class EspressoWidget extends \WP_Widget |
13 | 13 | { |
14 | - /** |
|
15 | - * @param string $name |
|
16 | - * @param array $widget_options |
|
17 | - * @param array $control_options |
|
18 | - */ |
|
19 | - public function __construct($name = '', array $widget_options = array(), array $control_options = array()) |
|
20 | - { |
|
21 | - $id_base = EspressoWidget::getIdBase(get_class($this)); |
|
22 | - $control_options['id_base'] = $id_base; |
|
23 | - $control_options['height'] = isset($control_options['height']) ? $control_options['height'] : 300; |
|
24 | - $control_options['width'] = isset($control_options['width']) ? $control_options['width'] : 350; |
|
25 | - // Register widget with WordPress |
|
26 | - parent::__construct($id_base, $name, $widget_options, $control_options); |
|
27 | - } |
|
14 | + /** |
|
15 | + * @param string $name |
|
16 | + * @param array $widget_options |
|
17 | + * @param array $control_options |
|
18 | + */ |
|
19 | + public function __construct($name = '', array $widget_options = array(), array $control_options = array()) |
|
20 | + { |
|
21 | + $id_base = EspressoWidget::getIdBase(get_class($this)); |
|
22 | + $control_options['id_base'] = $id_base; |
|
23 | + $control_options['height'] = isset($control_options['height']) ? $control_options['height'] : 300; |
|
24 | + $control_options['width'] = isset($control_options['width']) ? $control_options['width'] : 350; |
|
25 | + // Register widget with WordPress |
|
26 | + parent::__construct($id_base, $name, $widget_options, $control_options); |
|
27 | + } |
|
28 | 28 | |
29 | 29 | |
30 | - /** |
|
31 | - * @param string $widget_class |
|
32 | - * @return string |
|
33 | - */ |
|
34 | - public static function getIdBase($widget_class) |
|
35 | - { |
|
36 | - return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)) . '-widget'; |
|
37 | - } |
|
30 | + /** |
|
31 | + * @param string $widget_class |
|
32 | + * @return string |
|
33 | + */ |
|
34 | + public static function getIdBase($widget_class) |
|
35 | + { |
|
36 | + return sanitize_title(str_replace(array('EEW_', '_'), array('EE_', '-'), $widget_class)) . '-widget'; |
|
37 | + } |
|
38 | 38 | } |
@@ -60,7 +60,7 @@ discard block |
||
60 | 60 | $this |
61 | 61 | ) |
62 | 62 | ); |
63 | - if (! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
63 | + if ( ! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
64 | 64 | $this->addStylesheets(array('site_theme' => '')); |
65 | 65 | } |
66 | 66 | $this->addScripts( |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | array(), |
80 | 80 | $this |
81 | 81 | ); |
82 | - if (! empty($js_attributes)) { |
|
82 | + if ( ! empty($js_attributes)) { |
|
83 | 83 | $this->addScriptAttributes($js_attributes); |
84 | 84 | } |
85 | 85 | $this->addLocalizedVars( |
@@ -19,77 +19,77 @@ |
||
19 | 19 | */ |
20 | 20 | class TicketSelectorIframe extends Iframe |
21 | 21 | { |
22 | - /** |
|
23 | - * TicketSelectorIframe constructor. |
|
24 | - * |
|
25 | - * @param EEM_Event $event_model |
|
26 | - * @param CurrentPage $current_page |
|
27 | - * @param RequestInterface $request |
|
28 | - * @throws EE_Error |
|
29 | - */ |
|
30 | - public function __construct(EEM_Event $event_model, CurrentPage $current_page, RequestInterface $request) |
|
31 | - { |
|
32 | - $current_page->setEspressoPage(true); |
|
33 | - $ticket_selector = LoaderFactory::getLoader()->getNew(DisplayTicketSelector::class); |
|
34 | - $ticket_selector->setIframe(); |
|
35 | - $event = $event_model->get_one_by_ID($request->getRequestParam('event', 0, 'int')); |
|
36 | - parent::__construct( |
|
37 | - esc_html__('Ticket Selector', 'event_espresso'), |
|
38 | - $ticket_selector->display($event) |
|
39 | - ); |
|
40 | - $this->addStylesheets( |
|
41 | - apply_filters( |
|
42 | - 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__css', |
|
43 | - array( |
|
44 | - 'ticket_selector_embed' => TICKET_SELECTOR_ASSETS_URL |
|
45 | - . 'ticket_selector_embed.css?ver=' |
|
46 | - . EVENT_ESPRESSO_VERSION, |
|
47 | - 'ticket_selector' => TICKET_SELECTOR_ASSETS_URL |
|
48 | - . 'ticket_selector.css?ver=' |
|
49 | - . EVENT_ESPRESSO_VERSION, |
|
50 | - ), |
|
51 | - $this |
|
52 | - ) |
|
53 | - ); |
|
54 | - if (! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
55 | - $this->addStylesheets(array('site_theme' => '')); |
|
56 | - } |
|
57 | - $this->addScripts( |
|
58 | - apply_filters( |
|
59 | - 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__js', |
|
60 | - array( |
|
61 | - 'ticket_selector_iframe_embed' => TICKET_SELECTOR_ASSETS_URL |
|
62 | - . 'ticket_selector_iframe_embed.js?ver=' |
|
63 | - . EVENT_ESPRESSO_VERSION, |
|
64 | - ), |
|
65 | - $this |
|
66 | - ) |
|
67 | - ); |
|
68 | - $js_attributes = apply_filters( |
|
69 | - 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__js_attributes', |
|
70 | - array(), |
|
71 | - $this |
|
72 | - ); |
|
73 | - if (! empty($js_attributes)) { |
|
74 | - $this->addScriptAttributes($js_attributes); |
|
75 | - } |
|
76 | - $this->addLocalizedVars( |
|
77 | - apply_filters( |
|
78 | - 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__localized_vars', |
|
79 | - array( |
|
80 | - 'ticket_selector_iframe' => true, |
|
81 | - 'EEDTicketSelectorMsg' => wp_strip_all_tags( |
|
82 | - __( |
|
83 | - 'Please choose at least one ticket before continuing.', |
|
84 | - 'event_espresso' |
|
85 | - ) |
|
86 | - ), |
|
87 | - ) |
|
88 | - ) |
|
89 | - ); |
|
90 | - do_action( |
|
91 | - 'AHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__complete', |
|
92 | - $this |
|
93 | - ); |
|
94 | - } |
|
22 | + /** |
|
23 | + * TicketSelectorIframe constructor. |
|
24 | + * |
|
25 | + * @param EEM_Event $event_model |
|
26 | + * @param CurrentPage $current_page |
|
27 | + * @param RequestInterface $request |
|
28 | + * @throws EE_Error |
|
29 | + */ |
|
30 | + public function __construct(EEM_Event $event_model, CurrentPage $current_page, RequestInterface $request) |
|
31 | + { |
|
32 | + $current_page->setEspressoPage(true); |
|
33 | + $ticket_selector = LoaderFactory::getLoader()->getNew(DisplayTicketSelector::class); |
|
34 | + $ticket_selector->setIframe(); |
|
35 | + $event = $event_model->get_one_by_ID($request->getRequestParam('event', 0, 'int')); |
|
36 | + parent::__construct( |
|
37 | + esc_html__('Ticket Selector', 'event_espresso'), |
|
38 | + $ticket_selector->display($event) |
|
39 | + ); |
|
40 | + $this->addStylesheets( |
|
41 | + apply_filters( |
|
42 | + 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__css', |
|
43 | + array( |
|
44 | + 'ticket_selector_embed' => TICKET_SELECTOR_ASSETS_URL |
|
45 | + . 'ticket_selector_embed.css?ver=' |
|
46 | + . EVENT_ESPRESSO_VERSION, |
|
47 | + 'ticket_selector' => TICKET_SELECTOR_ASSETS_URL |
|
48 | + . 'ticket_selector.css?ver=' |
|
49 | + . EVENT_ESPRESSO_VERSION, |
|
50 | + ), |
|
51 | + $this |
|
52 | + ) |
|
53 | + ); |
|
54 | + if (! apply_filters('FHEE__EED_Ticket_Selector__ticket_selector_iframe__load_theme_css', false, $this)) { |
|
55 | + $this->addStylesheets(array('site_theme' => '')); |
|
56 | + } |
|
57 | + $this->addScripts( |
|
58 | + apply_filters( |
|
59 | + 'FHEE__EED_Ticket_Selector__ticket_selector_iframe__js', |
|
60 | + array( |
|
61 | + 'ticket_selector_iframe_embed' => TICKET_SELECTOR_ASSETS_URL |
|
62 | + . 'ticket_selector_iframe_embed.js?ver=' |
|
63 | + . EVENT_ESPRESSO_VERSION, |
|
64 | + ), |
|
65 | + $this |
|
66 | + ) |
|
67 | + ); |
|
68 | + $js_attributes = apply_filters( |
|
69 | + 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__js_attributes', |
|
70 | + array(), |
|
71 | + $this |
|
72 | + ); |
|
73 | + if (! empty($js_attributes)) { |
|
74 | + $this->addScriptAttributes($js_attributes); |
|
75 | + } |
|
76 | + $this->addLocalizedVars( |
|
77 | + apply_filters( |
|
78 | + 'FHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__localized_vars', |
|
79 | + array( |
|
80 | + 'ticket_selector_iframe' => true, |
|
81 | + 'EEDTicketSelectorMsg' => wp_strip_all_tags( |
|
82 | + __( |
|
83 | + 'Please choose at least one ticket before continuing.', |
|
84 | + 'event_espresso' |
|
85 | + ) |
|
86 | + ), |
|
87 | + ) |
|
88 | + ) |
|
89 | + ); |
|
90 | + do_action( |
|
91 | + 'AHEE__EventEspresso_modules_ticket_selector_TicketSelectorIframe__construct__complete', |
|
92 | + $this |
|
93 | + ); |
|
94 | + } |
|
95 | 95 | } |
@@ -33,87 +33,87 @@ |
||
33 | 33 | */ |
34 | 34 | class SocketPost implements RequestMethod |
35 | 35 | { |
36 | - /** |
|
37 | - * reCAPTCHA service host. |
|
38 | - * |
|
39 | - * @const string |
|
40 | - */ |
|
41 | - const RECAPTCHA_HOST = 'www.google.com'; |
|
42 | - |
|
43 | - /** |
|
44 | - * @const string reCAPTCHA service path |
|
45 | - */ |
|
46 | - const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
47 | - |
|
48 | - /** |
|
49 | - * @const string Bad request error |
|
50 | - */ |
|
51 | - const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
52 | - |
|
53 | - /** |
|
54 | - * @const string Bad response error |
|
55 | - */ |
|
56 | - const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
57 | - |
|
58 | - /** |
|
59 | - * Socket to the reCAPTCHA service |
|
60 | - * |
|
61 | - * @var Socket |
|
62 | - */ |
|
63 | - private $socket; |
|
64 | - |
|
65 | - /** |
|
66 | - * Constructor |
|
67 | - * |
|
68 | - * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
69 | - */ |
|
70 | - public function __construct(Socket $socket = null) |
|
71 | - { |
|
72 | - if (! is_null($socket)) { |
|
73 | - $this->socket = $socket; |
|
74 | - } else { |
|
75 | - $this->socket = new Socket(); |
|
76 | - } |
|
77 | - } |
|
78 | - |
|
79 | - /** |
|
80 | - * Submit the POST request with the specified parameters. |
|
81 | - * |
|
82 | - * @param RequestParameters $params Request parameters |
|
83 | - * @return string Body of the reCAPTCHA response |
|
84 | - */ |
|
85 | - public function submit(RequestParameters $params) |
|
86 | - { |
|
87 | - $errno = 0; |
|
88 | - $errstr = ''; |
|
89 | - |
|
90 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | - $content = $params->toQueryString(); |
|
92 | - |
|
93 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
94 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
95 | - $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
96 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
97 | - $request .= "Connection: close\r\n\r\n"; |
|
98 | - $request .= $content . "\r\n\r\n"; |
|
99 | - |
|
100 | - $this->socket->fwrite($request); |
|
101 | - $response = ''; |
|
102 | - |
|
103 | - while (! $this->socket->feof()) { |
|
104 | - $response .= $this->socket->fgets(4096); |
|
105 | - } |
|
106 | - |
|
107 | - $this->socket->fclose(); |
|
108 | - |
|
109 | - if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
110 | - $parts = preg_split("#\n\s*\n#Uis", $response); |
|
111 | - return $parts[1]; |
|
112 | - } |
|
113 | - |
|
114 | - return self::BAD_RESPONSE; |
|
115 | - } |
|
116 | - |
|
117 | - return self::BAD_REQUEST; |
|
118 | - } |
|
36 | + /** |
|
37 | + * reCAPTCHA service host. |
|
38 | + * |
|
39 | + * @const string |
|
40 | + */ |
|
41 | + const RECAPTCHA_HOST = 'www.google.com'; |
|
42 | + |
|
43 | + /** |
|
44 | + * @const string reCAPTCHA service path |
|
45 | + */ |
|
46 | + const SITE_VERIFY_PATH = '/recaptcha/api/siteverify'; |
|
47 | + |
|
48 | + /** |
|
49 | + * @const string Bad request error |
|
50 | + */ |
|
51 | + const BAD_REQUEST = '{"success": false, "error-codes": ["invalid-request"]}'; |
|
52 | + |
|
53 | + /** |
|
54 | + * @const string Bad response error |
|
55 | + */ |
|
56 | + const BAD_RESPONSE = '{"success": false, "error-codes": ["invalid-response"]}'; |
|
57 | + |
|
58 | + /** |
|
59 | + * Socket to the reCAPTCHA service |
|
60 | + * |
|
61 | + * @var Socket |
|
62 | + */ |
|
63 | + private $socket; |
|
64 | + |
|
65 | + /** |
|
66 | + * Constructor |
|
67 | + * |
|
68 | + * @param \ReCaptcha\RequestMethod\Socket $socket optional socket, injectable for testing |
|
69 | + */ |
|
70 | + public function __construct(Socket $socket = null) |
|
71 | + { |
|
72 | + if (! is_null($socket)) { |
|
73 | + $this->socket = $socket; |
|
74 | + } else { |
|
75 | + $this->socket = new Socket(); |
|
76 | + } |
|
77 | + } |
|
78 | + |
|
79 | + /** |
|
80 | + * Submit the POST request with the specified parameters. |
|
81 | + * |
|
82 | + * @param RequestParameters $params Request parameters |
|
83 | + * @return string Body of the reCAPTCHA response |
|
84 | + */ |
|
85 | + public function submit(RequestParameters $params) |
|
86 | + { |
|
87 | + $errno = 0; |
|
88 | + $errstr = ''; |
|
89 | + |
|
90 | + if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | + $content = $params->toQueryString(); |
|
92 | + |
|
93 | + $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
94 | + $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
95 | + $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
|
96 | + $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
97 | + $request .= "Connection: close\r\n\r\n"; |
|
98 | + $request .= $content . "\r\n\r\n"; |
|
99 | + |
|
100 | + $this->socket->fwrite($request); |
|
101 | + $response = ''; |
|
102 | + |
|
103 | + while (! $this->socket->feof()) { |
|
104 | + $response .= $this->socket->fgets(4096); |
|
105 | + } |
|
106 | + |
|
107 | + $this->socket->fclose(); |
|
108 | + |
|
109 | + if (0 === strpos($response, 'HTTP/1.1 200 OK')) { |
|
110 | + $parts = preg_split("#\n\s*\n#Uis", $response); |
|
111 | + return $parts[1]; |
|
112 | + } |
|
113 | + |
|
114 | + return self::BAD_RESPONSE; |
|
115 | + } |
|
116 | + |
|
117 | + return self::BAD_REQUEST; |
|
118 | + } |
|
119 | 119 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | */ |
70 | 70 | public function __construct(Socket $socket = null) |
71 | 71 | { |
72 | - if (! is_null($socket)) { |
|
72 | + if ( ! is_null($socket)) { |
|
73 | 73 | $this->socket = $socket; |
74 | 74 | } else { |
75 | 75 | $this->socket = new Socket(); |
@@ -87,20 +87,20 @@ discard block |
||
87 | 87 | $errno = 0; |
88 | 88 | $errstr = ''; |
89 | 89 | |
90 | - if ($this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
90 | + if ($this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30) !== false) { |
|
91 | 91 | $content = $params->toQueryString(); |
92 | 92 | |
93 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
94 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
93 | + $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n"; |
|
94 | + $request .= "Host: ".self::RECAPTCHA_HOST."\r\n"; |
|
95 | 95 | $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
96 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
96 | + $request .= "Content-length: ".strlen($content)."\r\n"; |
|
97 | 97 | $request .= "Connection: close\r\n\r\n"; |
98 | - $request .= $content . "\r\n\r\n"; |
|
98 | + $request .= $content."\r\n\r\n"; |
|
99 | 99 | |
100 | 100 | $this->socket->fwrite($request); |
101 | 101 | $response = ''; |
102 | 102 | |
103 | - while (! $this->socket->feof()) { |
|
103 | + while ( ! $this->socket->feof()) { |
|
104 | 104 | $response .= $this->socket->fgets(4096); |
105 | 105 | } |
106 | 106 |