@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | if ( ! defined( 'ABSPATH' ) ) { |
3 | - exit; |
|
3 | + exit; |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -10,55 +10,55 @@ discard block |
||
10 | 10 | class GetPaid_Payment_Form extends GetPaid_Data { |
11 | 11 | |
12 | 12 | /** |
13 | - * Which data store to load. |
|
14 | - * |
|
15 | - * @var string |
|
16 | - */ |
|
13 | + * Which data store to load. |
|
14 | + * |
|
15 | + * @var string |
|
16 | + */ |
|
17 | 17 | protected $data_store_name = 'payment_form'; |
18 | 18 | |
19 | 19 | /** |
20 | - * This is the name of this object type. |
|
21 | - * |
|
22 | - * @var string |
|
23 | - */ |
|
24 | - protected $object_type = 'payment_form'; |
|
20 | + * This is the name of this object type. |
|
21 | + * |
|
22 | + * @var string |
|
23 | + */ |
|
24 | + protected $object_type = 'payment_form'; |
|
25 | 25 | |
26 | 26 | /** |
27 | - * Form Data array. This is the core form data exposed in APIs. |
|
28 | - * |
|
29 | - * @since 1.0.19 |
|
30 | - * @var array |
|
31 | - */ |
|
32 | - protected $data = array( |
|
33 | - 'status' => 'draft', |
|
34 | - 'version' => '', |
|
35 | - 'date_created' => null, |
|
27 | + * Form Data array. This is the core form data exposed in APIs. |
|
28 | + * |
|
29 | + * @since 1.0.19 |
|
30 | + * @var array |
|
31 | + */ |
|
32 | + protected $data = array( |
|
33 | + 'status' => 'draft', |
|
34 | + 'version' => '', |
|
35 | + 'date_created' => null, |
|
36 | 36 | 'date_modified' => null, |
37 | 37 | 'name' => '', |
38 | 38 | 'author' => 1, |
39 | 39 | 'elements' => null, |
40 | - 'items' => null, |
|
41 | - 'earned' => 0, |
|
42 | - 'refunded' => 0, |
|
43 | - 'cancelled' => 0, |
|
44 | - 'failed' => 0, |
|
45 | - ); |
|
46 | - |
|
47 | - /** |
|
48 | - * Stores meta in cache for future reads. |
|
49 | - * |
|
50 | - * A group must be set to to enable caching. |
|
51 | - * |
|
52 | - * @var string |
|
53 | - */ |
|
54 | - protected $cache_group = 'getpaid_forms'; |
|
55 | - |
|
56 | - /** |
|
57 | - * Stores a reference to the invoice if the form is for an invoice.. |
|
58 | - * |
|
59 | - * @var WPInv_Invoice |
|
60 | - */ |
|
61 | - public $invoice = 0; |
|
40 | + 'items' => null, |
|
41 | + 'earned' => 0, |
|
42 | + 'refunded' => 0, |
|
43 | + 'cancelled' => 0, |
|
44 | + 'failed' => 0, |
|
45 | + ); |
|
46 | + |
|
47 | + /** |
|
48 | + * Stores meta in cache for future reads. |
|
49 | + * |
|
50 | + * A group must be set to to enable caching. |
|
51 | + * |
|
52 | + * @var string |
|
53 | + */ |
|
54 | + protected $cache_group = 'getpaid_forms'; |
|
55 | + |
|
56 | + /** |
|
57 | + * Stores a reference to the invoice if the form is for an invoice.. |
|
58 | + * |
|
59 | + * @var WPInv_Invoice |
|
60 | + */ |
|
61 | + public $invoice = 0; |
|
62 | 62 | |
63 | 63 | /** |
64 | 64 | * Stores a reference to the original WP_Post object |
@@ -68,35 +68,35 @@ discard block |
||
68 | 68 | protected $post = null; |
69 | 69 | |
70 | 70 | /** |
71 | - * Get the form if ID is passed, otherwise the form is new and empty. |
|
72 | - * |
|
73 | - * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
74 | - */ |
|
75 | - public function __construct( $form = 0 ) { |
|
76 | - parent::__construct( $form ); |
|
71 | + * Get the form if ID is passed, otherwise the form is new and empty. |
|
72 | + * |
|
73 | + * @param int|object|GetPaid_Payment_Form|WP_Post $form Form to read. |
|
74 | + */ |
|
75 | + public function __construct( $form = 0 ) { |
|
76 | + parent::__construct( $form ); |
|
77 | 77 | |
78 | - if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | - $this->set_id( $form ); |
|
80 | - } elseif ( $form instanceof self ) { |
|
78 | + if ( is_numeric( $form ) && $form > 0 ) { |
|
79 | + $this->set_id( $form ); |
|
80 | + } elseif ( $form instanceof self ) { |
|
81 | 81 | |
82 | - $this->set_id( $form->get_id() ); |
|
83 | - $this->invoice = $form->invoice; |
|
82 | + $this->set_id( $form->get_id() ); |
|
83 | + $this->invoice = $form->invoice; |
|
84 | 84 | |
85 | - } elseif ( ! empty( $form->ID ) ) { |
|
86 | - $this->set_id( $form->ID ); |
|
87 | - } else { |
|
88 | - $this->set_object_read( true ); |
|
89 | - } |
|
85 | + } elseif ( ! empty( $form->ID ) ) { |
|
86 | + $this->set_id( $form->ID ); |
|
87 | + } else { |
|
88 | + $this->set_object_read( true ); |
|
89 | + } |
|
90 | 90 | |
91 | 91 | // Load the datastore. |
92 | - $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
92 | + $this->data_store = GetPaid_Data_Store::load( $this->data_store_name ); |
|
93 | 93 | |
94 | - if ( $this->get_id() > 0 ) { |
|
94 | + if ( $this->get_id() > 0 ) { |
|
95 | 95 | $this->post = get_post( $this->get_id() ); |
96 | - $this->data_store->read( $this ); |
|
96 | + $this->data_store->read( $this ); |
|
97 | 97 | } |
98 | 98 | |
99 | - } |
|
99 | + } |
|
100 | 100 | |
101 | 101 | /* |
102 | 102 | |-------------------------------------------------------------------------- |
@@ -114,358 +114,358 @@ discard block |
||
114 | 114 | */ |
115 | 115 | |
116 | 116 | /** |
117 | - * Get plugin version when the form was created. |
|
118 | - * |
|
119 | - * @since 1.0.19 |
|
120 | - * @param string $context View or edit context. |
|
121 | - * @return string |
|
122 | - */ |
|
123 | - public function get_version( $context = 'view' ) { |
|
124 | - return $this->get_prop( 'version', $context ); |
|
117 | + * Get plugin version when the form was created. |
|
118 | + * |
|
119 | + * @since 1.0.19 |
|
120 | + * @param string $context View or edit context. |
|
121 | + * @return string |
|
122 | + */ |
|
123 | + public function get_version( $context = 'view' ) { |
|
124 | + return $this->get_prop( 'version', $context ); |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
128 | - * Get date when the form was created. |
|
129 | - * |
|
130 | - * @since 1.0.19 |
|
131 | - * @param string $context View or edit context. |
|
132 | - * @return string |
|
133 | - */ |
|
134 | - public function get_date_created( $context = 'view' ) { |
|
135 | - return $this->get_prop( 'date_created', $context ); |
|
128 | + * Get date when the form was created. |
|
129 | + * |
|
130 | + * @since 1.0.19 |
|
131 | + * @param string $context View or edit context. |
|
132 | + * @return string |
|
133 | + */ |
|
134 | + public function get_date_created( $context = 'view' ) { |
|
135 | + return $this->get_prop( 'date_created', $context ); |
|
136 | 136 | } |
137 | 137 | |
138 | 138 | /** |
139 | - * Get GMT date when the form was created. |
|
140 | - * |
|
141 | - * @since 1.0.19 |
|
142 | - * @param string $context View or edit context. |
|
143 | - * @return string |
|
144 | - */ |
|
145 | - public function get_date_created_gmt( $context = 'view' ) { |
|
139 | + * Get GMT date when the form was created. |
|
140 | + * |
|
141 | + * @since 1.0.19 |
|
142 | + * @param string $context View or edit context. |
|
143 | + * @return string |
|
144 | + */ |
|
145 | + public function get_date_created_gmt( $context = 'view' ) { |
|
146 | 146 | $date = $this->get_date_created( $context ); |
147 | 147 | |
148 | 148 | if ( $date ) { |
149 | 149 | $date = get_gmt_from_date( $date ); |
150 | 150 | } |
151 | - return $date; |
|
151 | + return $date; |
|
152 | 152 | } |
153 | 153 | |
154 | 154 | /** |
155 | - * Get date when the form was last modified. |
|
156 | - * |
|
157 | - * @since 1.0.19 |
|
158 | - * @param string $context View or edit context. |
|
159 | - * @return string |
|
160 | - */ |
|
161 | - public function get_date_modified( $context = 'view' ) { |
|
162 | - return $this->get_prop( 'date_modified', $context ); |
|
155 | + * Get date when the form was last modified. |
|
156 | + * |
|
157 | + * @since 1.0.19 |
|
158 | + * @param string $context View or edit context. |
|
159 | + * @return string |
|
160 | + */ |
|
161 | + public function get_date_modified( $context = 'view' ) { |
|
162 | + return $this->get_prop( 'date_modified', $context ); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | /** |
166 | - * Get GMT date when the form was last modified. |
|
167 | - * |
|
168 | - * @since 1.0.19 |
|
169 | - * @param string $context View or edit context. |
|
170 | - * @return string |
|
171 | - */ |
|
172 | - public function get_date_modified_gmt( $context = 'view' ) { |
|
166 | + * Get GMT date when the form was last modified. |
|
167 | + * |
|
168 | + * @since 1.0.19 |
|
169 | + * @param string $context View or edit context. |
|
170 | + * @return string |
|
171 | + */ |
|
172 | + public function get_date_modified_gmt( $context = 'view' ) { |
|
173 | 173 | $date = $this->get_date_modified( $context ); |
174 | 174 | |
175 | 175 | if ( $date ) { |
176 | 176 | $date = get_gmt_from_date( $date ); |
177 | 177 | } |
178 | - return $date; |
|
178 | + return $date; |
|
179 | 179 | } |
180 | 180 | |
181 | 181 | /** |
182 | - * Get the form name. |
|
183 | - * |
|
184 | - * @since 1.0.19 |
|
185 | - * @param string $context View or edit context. |
|
186 | - * @return string |
|
187 | - */ |
|
188 | - public function get_name( $context = 'view' ) { |
|
189 | - return $this->get_prop( 'name', $context ); |
|
182 | + * Get the form name. |
|
183 | + * |
|
184 | + * @since 1.0.19 |
|
185 | + * @param string $context View or edit context. |
|
186 | + * @return string |
|
187 | + */ |
|
188 | + public function get_name( $context = 'view' ) { |
|
189 | + return $this->get_prop( 'name', $context ); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
193 | - * Alias of self::get_name(). |
|
194 | - * |
|
195 | - * @since 1.0.19 |
|
196 | - * @param string $context View or edit context. |
|
197 | - * @return string |
|
198 | - */ |
|
199 | - public function get_title( $context = 'view' ) { |
|
200 | - return $this->get_name( $context ); |
|
201 | - } |
|
193 | + * Alias of self::get_name(). |
|
194 | + * |
|
195 | + * @since 1.0.19 |
|
196 | + * @param string $context View or edit context. |
|
197 | + * @return string |
|
198 | + */ |
|
199 | + public function get_title( $context = 'view' ) { |
|
200 | + return $this->get_name( $context ); |
|
201 | + } |
|
202 | 202 | |
203 | 203 | /** |
204 | - * Get the owner of the form. |
|
205 | - * |
|
206 | - * @since 1.0.19 |
|
207 | - * @param string $context View or edit context. |
|
208 | - * @return int |
|
209 | - */ |
|
210 | - public function get_author( $context = 'view' ) { |
|
211 | - return (int) $this->get_prop( 'author', $context ); |
|
204 | + * Get the owner of the form. |
|
205 | + * |
|
206 | + * @since 1.0.19 |
|
207 | + * @param string $context View or edit context. |
|
208 | + * @return int |
|
209 | + */ |
|
210 | + public function get_author( $context = 'view' ) { |
|
211 | + return (int) $this->get_prop( 'author', $context ); |
|
212 | 212 | } |
213 | 213 | |
214 | 214 | /** |
215 | - * Get the elements that make up the form. |
|
216 | - * |
|
217 | - * @since 1.0.19 |
|
218 | - * @param string $context View or edit context. |
|
219 | - * @return array |
|
220 | - */ |
|
221 | - public function get_elements( $context = 'view' ) { |
|
222 | - $elements = $this->get_prop( 'elements', $context ); |
|
215 | + * Get the elements that make up the form. |
|
216 | + * |
|
217 | + * @since 1.0.19 |
|
218 | + * @param string $context View or edit context. |
|
219 | + * @return array |
|
220 | + */ |
|
221 | + public function get_elements( $context = 'view' ) { |
|
222 | + $elements = $this->get_prop( 'elements', $context ); |
|
223 | 223 | |
224 | - if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
224 | + if ( empty( $elements ) || ! is_array( $elements ) ) { |
|
225 | 225 | return wpinv_get_data( 'sample-payment-form' ); |
226 | - } |
|
226 | + } |
|
227 | 227 | |
228 | - // Ensure that all required elements exist. |
|
229 | - $_elements = array(); |
|
230 | - foreach ( $elements as $element ) { |
|
228 | + // Ensure that all required elements exist. |
|
229 | + $_elements = array(); |
|
230 | + foreach ( $elements as $element ) { |
|
231 | 231 | |
232 | - if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
232 | + if ( $element['type'] == 'pay_button' && ! $this->has_element_type( 'gateway_select' ) ) { |
|
233 | 233 | |
234 | - $_elements[] = array( |
|
235 | - 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
236 | - 'id' => 'gtscicd', |
|
237 | - 'name' => 'gtscicd', |
|
238 | - 'type' => 'gateway_select', |
|
239 | - 'premade' => true |
|
234 | + $_elements[] = array( |
|
235 | + 'text' => __( 'Select Payment Method', 'invoicing' ), |
|
236 | + 'id' => 'gtscicd', |
|
237 | + 'name' => 'gtscicd', |
|
238 | + 'type' => 'gateway_select', |
|
239 | + 'premade' => true |
|
240 | 240 | |
241 | - ); |
|
241 | + ); |
|
242 | 242 | |
243 | - } |
|
243 | + } |
|
244 | 244 | |
245 | - $_elements[] = $element; |
|
245 | + $_elements[] = $element; |
|
246 | 246 | |
247 | - } |
|
247 | + } |
|
248 | 248 | |
249 | 249 | return $_elements; |
250 | - } |
|
251 | - |
|
252 | - /** |
|
253 | - * Get the items sold via the form. |
|
254 | - * |
|
255 | - * @since 1.0.19 |
|
256 | - * @param string $context View or edit context. |
|
257 | - * @param string $return objects or arrays. |
|
258 | - * @return GetPaid_Form_Item[] |
|
259 | - */ |
|
260 | - public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | - $items = $this->get_prop( 'items', $context ); |
|
262 | - |
|
263 | - if ( empty( $items ) || ! is_array( $items ) ) { |
|
250 | + } |
|
251 | + |
|
252 | + /** |
|
253 | + * Get the items sold via the form. |
|
254 | + * |
|
255 | + * @since 1.0.19 |
|
256 | + * @param string $context View or edit context. |
|
257 | + * @param string $return objects or arrays. |
|
258 | + * @return GetPaid_Form_Item[] |
|
259 | + */ |
|
260 | + public function get_items( $context = 'view', $return = 'objects' ) { |
|
261 | + $items = $this->get_prop( 'items', $context ); |
|
262 | + |
|
263 | + if ( empty( $items ) || ! is_array( $items ) ) { |
|
264 | 264 | $items = wpinv_get_data( 'sample-payment-form-items' ); |
265 | - } |
|
265 | + } |
|
266 | 266 | |
267 | - // Convert the items. |
|
268 | - $prepared = array(); |
|
267 | + // Convert the items. |
|
268 | + $prepared = array(); |
|
269 | 269 | |
270 | - foreach ( $items as $key => $value ) { |
|
270 | + foreach ( $items as $key => $value ) { |
|
271 | 271 | |
272 | - // Form items. |
|
273 | - if ( $value instanceof GetPaid_Form_Item ) { |
|
272 | + // Form items. |
|
273 | + if ( $value instanceof GetPaid_Form_Item ) { |
|
274 | 274 | |
275 | - if ( $value->can_purchase() ) { |
|
276 | - $prepared[] = $value; |
|
277 | - } |
|
275 | + if ( $value->can_purchase() ) { |
|
276 | + $prepared[] = $value; |
|
277 | + } |
|
278 | 278 | |
279 | - continue; |
|
279 | + continue; |
|
280 | 280 | |
281 | - } |
|
281 | + } |
|
282 | 282 | |
283 | - // $item_id => $quantity (buy buttons) |
|
284 | - if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | - $item = new GetPaid_Form_Item( $key ); |
|
283 | + // $item_id => $quantity (buy buttons) |
|
284 | + if ( is_numeric( $key ) && is_numeric( $value ) ) { |
|
285 | + $item = new GetPaid_Form_Item( $key ); |
|
286 | 286 | |
287 | - if ( $item->can_purchase() ) { |
|
287 | + if ( $item->can_purchase() ) { |
|
288 | 288 | |
289 | - $value = (float) $value; |
|
290 | - $item->set_quantity( $value ); |
|
291 | - if ( 0 == $value ) { |
|
292 | - $item->set_quantity( 1 ); |
|
293 | - $item->set_allow_quantities( true ); |
|
294 | - } |
|
289 | + $value = (float) $value; |
|
290 | + $item->set_quantity( $value ); |
|
291 | + if ( 0 == $value ) { |
|
292 | + $item->set_quantity( 1 ); |
|
293 | + $item->set_allow_quantities( true ); |
|
294 | + } |
|
295 | 295 | |
296 | - $prepared[] = $item; |
|
297 | - } |
|
296 | + $prepared[] = $item; |
|
297 | + } |
|
298 | 298 | |
299 | - continue; |
|
300 | - } |
|
299 | + continue; |
|
300 | + } |
|
301 | 301 | |
302 | - // Items saved via payment forms editor. |
|
303 | - if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
302 | + // Items saved via payment forms editor. |
|
303 | + if ( is_array( $value ) && isset( $value['id'] ) ) { |
|
304 | 304 | |
305 | - $item = new GetPaid_Form_Item( $value['id'] ); |
|
305 | + $item = new GetPaid_Form_Item( $value['id'] ); |
|
306 | 306 | |
307 | - if ( ! $item->can_purchase() ) { |
|
308 | - continue; |
|
309 | - } |
|
307 | + if ( ! $item->can_purchase() ) { |
|
308 | + continue; |
|
309 | + } |
|
310 | 310 | |
311 | - // Sub-total (Cart items). |
|
312 | - if ( isset( $value['subtotal'] ) ) { |
|
313 | - $item->set_price( $value['subtotal'] ); |
|
314 | - } |
|
311 | + // Sub-total (Cart items). |
|
312 | + if ( isset( $value['subtotal'] ) ) { |
|
313 | + $item->set_price( $value['subtotal'] ); |
|
314 | + } |
|
315 | 315 | |
316 | - if ( isset( $value['quantity'] ) ) { |
|
317 | - $item->set_quantity( $value['quantity'] ); |
|
318 | - } |
|
316 | + if ( isset( $value['quantity'] ) ) { |
|
317 | + $item->set_quantity( $value['quantity'] ); |
|
318 | + } |
|
319 | 319 | |
320 | - if ( isset( $value['allow_quantities'] ) ) { |
|
321 | - $item->set_allow_quantities( $value['allow_quantities'] ); |
|
322 | - } |
|
320 | + if ( isset( $value['allow_quantities'] ) ) { |
|
321 | + $item->set_allow_quantities( $value['allow_quantities'] ); |
|
322 | + } |
|
323 | 323 | |
324 | - if ( isset( $value['required'] ) ) { |
|
325 | - $item->set_is_required( $value['required'] ); |
|
326 | - } |
|
324 | + if ( isset( $value['required'] ) ) { |
|
325 | + $item->set_is_required( $value['required'] ); |
|
326 | + } |
|
327 | 327 | |
328 | - if ( isset( $value['description'] ) ) { |
|
329 | - $item->set_custom_description( $value['description'] ); |
|
330 | - } |
|
328 | + if ( isset( $value['description'] ) ) { |
|
329 | + $item->set_custom_description( $value['description'] ); |
|
330 | + } |
|
331 | 331 | |
332 | - $prepared[] = $item; |
|
333 | - continue; |
|
332 | + $prepared[] = $item; |
|
333 | + continue; |
|
334 | 334 | |
335 | - } |
|
335 | + } |
|
336 | 336 | |
337 | - // $item_id => array( 'price' => 10 ) (item variations) |
|
338 | - if ( is_numeric( $key ) && is_array( $value ) ) { |
|
339 | - $item = new GetPaid_Form_Item( $key ); |
|
337 | + // $item_id => array( 'price' => 10 ) (item variations) |
|
338 | + if ( is_numeric( $key ) && is_array( $value ) ) { |
|
339 | + $item = new GetPaid_Form_Item( $key ); |
|
340 | 340 | |
341 | - if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
342 | - $item->set_price( $value['price'] ); |
|
343 | - } |
|
344 | - |
|
345 | - if ( $item->can_purchase() ) { |
|
346 | - $prepared[] = $item; |
|
347 | - } |
|
348 | - |
|
349 | - continue; |
|
350 | - } |
|
351 | - |
|
352 | - } |
|
353 | - |
|
354 | - if ( 'objects' == $return && 'view' == $context ) { |
|
355 | - return $prepared; |
|
356 | - } |
|
357 | - |
|
358 | - $items = array(); |
|
359 | - foreach ( $prepared as $item ) { |
|
360 | - $items[] = $item->prepare_data_for_use(); |
|
361 | - } |
|
362 | - |
|
363 | - return $items; |
|
364 | - } |
|
365 | - |
|
366 | - /** |
|
367 | - * Get a single item belonging to the form. |
|
368 | - * |
|
369 | - * @since 1.0.19 |
|
370 | - * @param int $item_id The item id to return. |
|
371 | - * @return GetPaid_Form_Item|bool |
|
372 | - */ |
|
373 | - public function get_item( $item_id ) { |
|
374 | - |
|
375 | - if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
376 | - return false; |
|
377 | - } |
|
378 | - |
|
379 | - foreach( $this->get_items() as $item ) { |
|
380 | - if ( $item->get_id() == (int) $item_id ) { |
|
381 | - return $item; |
|
382 | - } |
|
383 | - } |
|
384 | - |
|
385 | - return false; |
|
386 | - |
|
387 | - } |
|
388 | - |
|
389 | - /** |
|
390 | - * Gets a single element. |
|
391 | - * |
|
392 | - * @since 1.0.19 |
|
393 | - * @param string $element_type The element type to return. |
|
394 | - * @return array|bool |
|
395 | - */ |
|
396 | - public function get_element_type( $element_type ) { |
|
397 | - |
|
398 | - if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
399 | - return false; |
|
400 | - } |
|
401 | - |
|
402 | - foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
403 | - |
|
404 | - if ( $element['type'] == $element_type ) { |
|
405 | - return $element; |
|
406 | - } |
|
407 | - |
|
408 | - } |
|
409 | - |
|
410 | - return false; |
|
411 | - |
|
412 | - } |
|
413 | - |
|
414 | - /** |
|
415 | - * Get the total amount earned via this form. |
|
416 | - * |
|
417 | - * @since 1.0.19 |
|
418 | - * @param string $context View or edit context. |
|
419 | - * @return float |
|
420 | - */ |
|
421 | - public function get_earned( $context = 'view' ) { |
|
422 | - return $this->get_prop( 'earned', $context ); |
|
423 | - } |
|
424 | - |
|
425 | - /** |
|
426 | - * Get the total amount refunded via this form. |
|
427 | - * |
|
428 | - * @since 1.0.19 |
|
429 | - * @param string $context View or edit context. |
|
430 | - * @return float |
|
431 | - */ |
|
432 | - public function get_refunded( $context = 'view' ) { |
|
433 | - return $this->get_prop( 'refunded', $context ); |
|
434 | - } |
|
435 | - |
|
436 | - /** |
|
437 | - * Get the total amount cancelled via this form. |
|
438 | - * |
|
439 | - * @since 1.0.19 |
|
440 | - * @param string $context View or edit context. |
|
441 | - * @return float |
|
442 | - */ |
|
443 | - public function get_cancelled( $context = 'view' ) { |
|
444 | - return $this->get_prop( 'cancelled', $context ); |
|
445 | - } |
|
446 | - |
|
447 | - /** |
|
448 | - * Get the total amount failed via this form. |
|
449 | - * |
|
450 | - * @since 1.0.19 |
|
451 | - * @param string $context View or edit context. |
|
452 | - * @return float |
|
453 | - */ |
|
454 | - public function get_failed( $context = 'view' ) { |
|
455 | - return $this->get_prop( 'failed', $context ); |
|
456 | - } |
|
457 | - |
|
458 | - /** |
|
459 | - * Get the currency. |
|
460 | - * |
|
461 | - * @since 1.0.19 |
|
462 | - * @param string $context View or edit context. |
|
463 | - * @return string |
|
464 | - */ |
|
465 | - public function get_currency() { |
|
466 | - $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
467 | - return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
468 | - } |
|
341 | + if ( isset( $value['price'] ) && $item->user_can_set_their_price() ) { |
|
342 | + $item->set_price( $value['price'] ); |
|
343 | + } |
|
344 | + |
|
345 | + if ( $item->can_purchase() ) { |
|
346 | + $prepared[] = $item; |
|
347 | + } |
|
348 | + |
|
349 | + continue; |
|
350 | + } |
|
351 | + |
|
352 | + } |
|
353 | + |
|
354 | + if ( 'objects' == $return && 'view' == $context ) { |
|
355 | + return $prepared; |
|
356 | + } |
|
357 | + |
|
358 | + $items = array(); |
|
359 | + foreach ( $prepared as $item ) { |
|
360 | + $items[] = $item->prepare_data_for_use(); |
|
361 | + } |
|
362 | + |
|
363 | + return $items; |
|
364 | + } |
|
365 | + |
|
366 | + /** |
|
367 | + * Get a single item belonging to the form. |
|
368 | + * |
|
369 | + * @since 1.0.19 |
|
370 | + * @param int $item_id The item id to return. |
|
371 | + * @return GetPaid_Form_Item|bool |
|
372 | + */ |
|
373 | + public function get_item( $item_id ) { |
|
374 | + |
|
375 | + if ( empty( $item_id ) || ! is_numeric( $item_id ) ) { |
|
376 | + return false; |
|
377 | + } |
|
378 | + |
|
379 | + foreach( $this->get_items() as $item ) { |
|
380 | + if ( $item->get_id() == (int) $item_id ) { |
|
381 | + return $item; |
|
382 | + } |
|
383 | + } |
|
384 | + |
|
385 | + return false; |
|
386 | + |
|
387 | + } |
|
388 | + |
|
389 | + /** |
|
390 | + * Gets a single element. |
|
391 | + * |
|
392 | + * @since 1.0.19 |
|
393 | + * @param string $element_type The element type to return. |
|
394 | + * @return array|bool |
|
395 | + */ |
|
396 | + public function get_element_type( $element_type ) { |
|
397 | + |
|
398 | + if ( empty( $element_type ) || ! is_scalar( $element_type ) ) { |
|
399 | + return false; |
|
400 | + } |
|
401 | + |
|
402 | + foreach ( $this->get_prop( 'elements' ) as $element ) { |
|
403 | + |
|
404 | + if ( $element['type'] == $element_type ) { |
|
405 | + return $element; |
|
406 | + } |
|
407 | + |
|
408 | + } |
|
409 | + |
|
410 | + return false; |
|
411 | + |
|
412 | + } |
|
413 | + |
|
414 | + /** |
|
415 | + * Get the total amount earned via this form. |
|
416 | + * |
|
417 | + * @since 1.0.19 |
|
418 | + * @param string $context View or edit context. |
|
419 | + * @return float |
|
420 | + */ |
|
421 | + public function get_earned( $context = 'view' ) { |
|
422 | + return $this->get_prop( 'earned', $context ); |
|
423 | + } |
|
424 | + |
|
425 | + /** |
|
426 | + * Get the total amount refunded via this form. |
|
427 | + * |
|
428 | + * @since 1.0.19 |
|
429 | + * @param string $context View or edit context. |
|
430 | + * @return float |
|
431 | + */ |
|
432 | + public function get_refunded( $context = 'view' ) { |
|
433 | + return $this->get_prop( 'refunded', $context ); |
|
434 | + } |
|
435 | + |
|
436 | + /** |
|
437 | + * Get the total amount cancelled via this form. |
|
438 | + * |
|
439 | + * @since 1.0.19 |
|
440 | + * @param string $context View or edit context. |
|
441 | + * @return float |
|
442 | + */ |
|
443 | + public function get_cancelled( $context = 'view' ) { |
|
444 | + return $this->get_prop( 'cancelled', $context ); |
|
445 | + } |
|
446 | + |
|
447 | + /** |
|
448 | + * Get the total amount failed via this form. |
|
449 | + * |
|
450 | + * @since 1.0.19 |
|
451 | + * @param string $context View or edit context. |
|
452 | + * @return float |
|
453 | + */ |
|
454 | + public function get_failed( $context = 'view' ) { |
|
455 | + return $this->get_prop( 'failed', $context ); |
|
456 | + } |
|
457 | + |
|
458 | + /** |
|
459 | + * Get the currency. |
|
460 | + * |
|
461 | + * @since 1.0.19 |
|
462 | + * @param string $context View or edit context. |
|
463 | + * @return string |
|
464 | + */ |
|
465 | + public function get_currency() { |
|
466 | + $currency = empty( $this->invoice ) ? wpinv_get_currency() : $this->invoice->get_currency(); |
|
467 | + return apply_filters( 'getpaid-payment-form-currency', $currency, $this ); |
|
468 | + } |
|
469 | 469 | |
470 | 470 | /* |
471 | 471 | |-------------------------------------------------------------------------- |
@@ -478,22 +478,22 @@ discard block |
||
478 | 478 | */ |
479 | 479 | |
480 | 480 | /** |
481 | - * Set plugin version when the item was created. |
|
482 | - * |
|
483 | - * @since 1.0.19 |
|
484 | - */ |
|
485 | - public function set_version( $value ) { |
|
486 | - $this->set_prop( 'version', $value ); |
|
481 | + * Set plugin version when the item was created. |
|
482 | + * |
|
483 | + * @since 1.0.19 |
|
484 | + */ |
|
485 | + public function set_version( $value ) { |
|
486 | + $this->set_prop( 'version', $value ); |
|
487 | 487 | } |
488 | 488 | |
489 | 489 | /** |
490 | - * Set date when the item was created. |
|
491 | - * |
|
492 | - * @since 1.0.19 |
|
493 | - * @param string $value Value to set. |
|
490 | + * Set date when the item was created. |
|
491 | + * |
|
492 | + * @since 1.0.19 |
|
493 | + * @param string $value Value to set. |
|
494 | 494 | * @return bool Whether or not the date was set. |
495 | - */ |
|
496 | - public function set_date_created( $value ) { |
|
495 | + */ |
|
496 | + public function set_date_created( $value ) { |
|
497 | 497 | $date = strtotime( $value ); |
498 | 498 | |
499 | 499 | if ( $date ) { |
@@ -506,13 +506,13 @@ discard block |
||
506 | 506 | } |
507 | 507 | |
508 | 508 | /** |
509 | - * Set date when the item was last modified. |
|
510 | - * |
|
511 | - * @since 1.0.19 |
|
512 | - * @param string $value Value to set. |
|
509 | + * Set date when the item was last modified. |
|
510 | + * |
|
511 | + * @since 1.0.19 |
|
512 | + * @param string $value Value to set. |
|
513 | 513 | * @return bool Whether or not the date was set. |
514 | - */ |
|
515 | - public function set_date_modified( $value ) { |
|
514 | + */ |
|
515 | + public function set_date_modified( $value ) { |
|
516 | 516 | $date = strtotime( $value ); |
517 | 517 | |
518 | 518 | if ( $date ) { |
@@ -525,165 +525,165 @@ discard block |
||
525 | 525 | } |
526 | 526 | |
527 | 527 | /** |
528 | - * Set the item name. |
|
529 | - * |
|
530 | - * @since 1.0.19 |
|
531 | - * @param string $value New name. |
|
532 | - */ |
|
533 | - public function set_name( $value ) { |
|
534 | - $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
535 | - } |
|
536 | - |
|
537 | - /** |
|
538 | - * Alias of self::set_name(). |
|
539 | - * |
|
540 | - * @since 1.0.19 |
|
541 | - * @param string $value New name. |
|
542 | - */ |
|
543 | - public function set_title( $value ) { |
|
544 | - $this->set_name( $value ); |
|
545 | - } |
|
546 | - |
|
547 | - /** |
|
548 | - * Set the owner of the item. |
|
549 | - * |
|
550 | - * @since 1.0.19 |
|
551 | - * @param int $value New author. |
|
552 | - */ |
|
553 | - public function set_author( $value ) { |
|
554 | - $this->set_prop( 'author', (int) $value ); |
|
555 | - } |
|
556 | - |
|
557 | - /** |
|
558 | - * Set the form elements. |
|
559 | - * |
|
560 | - * @since 1.0.19 |
|
561 | - * @sinve 2.3.4 Array values sanitized. |
|
562 | - * @param array $value Form elements. |
|
563 | - */ |
|
564 | - public function set_elements( $value ) { |
|
565 | - if ( is_array( $value ) ) { |
|
566 | - $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
567 | - } |
|
568 | - } |
|
569 | - |
|
570 | - /** |
|
571 | - * Sanitize array values. |
|
572 | - * |
|
573 | - * @param $value |
|
574 | - * |
|
575 | - * @return mixed |
|
576 | - */ |
|
577 | - public function sanitize_array_values($value){ |
|
578 | - |
|
579 | - // sanitize |
|
580 | - if(!empty($value )){ |
|
581 | - |
|
582 | - foreach($value as $key => $val_arr){ |
|
583 | - |
|
584 | - if(is_array($val_arr)){ |
|
585 | - // check if we have sub array items. |
|
586 | - $sub_arr = array(); |
|
587 | - foreach($val_arr as $key2 => $val2){ |
|
588 | - if(is_array($val2)){ |
|
589 | - $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
590 | - unset($val_arr[$key][$key2]); |
|
591 | - } |
|
592 | - } |
|
593 | - |
|
594 | - // we allow some html in description so we sanitize it separately. |
|
595 | - $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
596 | - |
|
597 | - // sanitize array elements |
|
598 | - $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
599 | - |
|
600 | - // add back the description if set |
|
601 | - if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
602 | - |
|
603 | - // add back sub array items after its been sanitized. |
|
604 | - if ( ! empty( $sub_arr ) ) { |
|
605 | - $value[$key] = array_merge($value[$key],$sub_arr); |
|
606 | - } |
|
607 | - } |
|
608 | - |
|
609 | - } |
|
610 | - |
|
611 | - } |
|
612 | - |
|
613 | - return $value; |
|
614 | - } |
|
615 | - |
|
616 | - /** |
|
617 | - * Set the form items. |
|
618 | - * |
|
619 | - * @since 1.0.19 |
|
620 | - * @param array $value Form elements. |
|
621 | - */ |
|
622 | - public function set_items( $value ) { |
|
623 | - if ( is_array( $value ) ) { |
|
624 | - $this->set_prop( 'items', $value ); |
|
625 | - } |
|
626 | - } |
|
627 | - |
|
628 | - /** |
|
629 | - * Set the total amount earned via this form. |
|
630 | - * |
|
631 | - * @since 1.0.19 |
|
632 | - * @param float $value Amount earned. |
|
633 | - */ |
|
634 | - public function set_earned( $value ) { |
|
635 | - $value = max( (float) $value, 0 ); |
|
636 | - $this->set_prop( 'earned', $value ); |
|
637 | - } |
|
638 | - |
|
639 | - /** |
|
640 | - * Set the total amount refunded via this form. |
|
641 | - * |
|
642 | - * @since 1.0.19 |
|
643 | - * @param float $value Amount refunded. |
|
644 | - */ |
|
645 | - public function set_refunded( $value ) { |
|
646 | - $value = max( (float) $value, 0 ); |
|
647 | - $this->set_prop( 'refunded', $value ); |
|
648 | - } |
|
649 | - |
|
650 | - /** |
|
651 | - * Set the total amount cancelled via this form. |
|
652 | - * |
|
653 | - * @since 1.0.19 |
|
654 | - * @param float $value Amount cancelled. |
|
655 | - */ |
|
656 | - public function set_cancelled( $value ) { |
|
657 | - $value = max( (float) $value, 0 ); |
|
658 | - $this->set_prop( 'cancelled', $value ); |
|
659 | - } |
|
660 | - |
|
661 | - /** |
|
662 | - * Set the total amount failed via this form. |
|
663 | - * |
|
664 | - * @since 1.0.19 |
|
665 | - * @param float $value Amount cancelled. |
|
666 | - */ |
|
667 | - public function set_failed( $value ) { |
|
668 | - $value = max( (float) $value, 0 ); |
|
669 | - $this->set_prop( 'failed', $value ); |
|
670 | - } |
|
528 | + * Set the item name. |
|
529 | + * |
|
530 | + * @since 1.0.19 |
|
531 | + * @param string $value New name. |
|
532 | + */ |
|
533 | + public function set_name( $value ) { |
|
534 | + $this->set_prop( 'name', sanitize_text_field( $value ) ); |
|
535 | + } |
|
536 | + |
|
537 | + /** |
|
538 | + * Alias of self::set_name(). |
|
539 | + * |
|
540 | + * @since 1.0.19 |
|
541 | + * @param string $value New name. |
|
542 | + */ |
|
543 | + public function set_title( $value ) { |
|
544 | + $this->set_name( $value ); |
|
545 | + } |
|
546 | + |
|
547 | + /** |
|
548 | + * Set the owner of the item. |
|
549 | + * |
|
550 | + * @since 1.0.19 |
|
551 | + * @param int $value New author. |
|
552 | + */ |
|
553 | + public function set_author( $value ) { |
|
554 | + $this->set_prop( 'author', (int) $value ); |
|
555 | + } |
|
556 | + |
|
557 | + /** |
|
558 | + * Set the form elements. |
|
559 | + * |
|
560 | + * @since 1.0.19 |
|
561 | + * @sinve 2.3.4 Array values sanitized. |
|
562 | + * @param array $value Form elements. |
|
563 | + */ |
|
564 | + public function set_elements( $value ) { |
|
565 | + if ( is_array( $value ) ) { |
|
566 | + $this->set_prop( 'elements', wp_kses_post_deep( $value ) ); |
|
567 | + } |
|
568 | + } |
|
569 | + |
|
570 | + /** |
|
571 | + * Sanitize array values. |
|
572 | + * |
|
573 | + * @param $value |
|
574 | + * |
|
575 | + * @return mixed |
|
576 | + */ |
|
577 | + public function sanitize_array_values($value){ |
|
578 | + |
|
579 | + // sanitize |
|
580 | + if(!empty($value )){ |
|
581 | + |
|
582 | + foreach($value as $key => $val_arr){ |
|
583 | + |
|
584 | + if(is_array($val_arr)){ |
|
585 | + // check if we have sub array items. |
|
586 | + $sub_arr = array(); |
|
587 | + foreach($val_arr as $key2 => $val2){ |
|
588 | + if(is_array($val2)){ |
|
589 | + $sub_arr[$key2] = $this->sanitize_array_values($val2); |
|
590 | + unset($val_arr[$key][$key2]); |
|
591 | + } |
|
592 | + } |
|
593 | + |
|
594 | + // we allow some html in description so we sanitize it separately. |
|
595 | + $help_text = !empty($val_arr['description']) ? wp_kses_post($val_arr['description']) : ''; |
|
596 | + |
|
597 | + // sanitize array elements |
|
598 | + $value[$key] = array_map( 'sanitize_text_field', $val_arr ); |
|
599 | + |
|
600 | + // add back the description if set |
|
601 | + if(isset($val_arr['description'])){ $value[$key]['description'] = $help_text;} |
|
602 | + |
|
603 | + // add back sub array items after its been sanitized. |
|
604 | + if ( ! empty( $sub_arr ) ) { |
|
605 | + $value[$key] = array_merge($value[$key],$sub_arr); |
|
606 | + } |
|
607 | + } |
|
608 | + |
|
609 | + } |
|
610 | + |
|
611 | + } |
|
612 | + |
|
613 | + return $value; |
|
614 | + } |
|
615 | + |
|
616 | + /** |
|
617 | + * Set the form items. |
|
618 | + * |
|
619 | + * @since 1.0.19 |
|
620 | + * @param array $value Form elements. |
|
621 | + */ |
|
622 | + public function set_items( $value ) { |
|
623 | + if ( is_array( $value ) ) { |
|
624 | + $this->set_prop( 'items', $value ); |
|
625 | + } |
|
626 | + } |
|
627 | + |
|
628 | + /** |
|
629 | + * Set the total amount earned via this form. |
|
630 | + * |
|
631 | + * @since 1.0.19 |
|
632 | + * @param float $value Amount earned. |
|
633 | + */ |
|
634 | + public function set_earned( $value ) { |
|
635 | + $value = max( (float) $value, 0 ); |
|
636 | + $this->set_prop( 'earned', $value ); |
|
637 | + } |
|
638 | + |
|
639 | + /** |
|
640 | + * Set the total amount refunded via this form. |
|
641 | + * |
|
642 | + * @since 1.0.19 |
|
643 | + * @param float $value Amount refunded. |
|
644 | + */ |
|
645 | + public function set_refunded( $value ) { |
|
646 | + $value = max( (float) $value, 0 ); |
|
647 | + $this->set_prop( 'refunded', $value ); |
|
648 | + } |
|
649 | + |
|
650 | + /** |
|
651 | + * Set the total amount cancelled via this form. |
|
652 | + * |
|
653 | + * @since 1.0.19 |
|
654 | + * @param float $value Amount cancelled. |
|
655 | + */ |
|
656 | + public function set_cancelled( $value ) { |
|
657 | + $value = max( (float) $value, 0 ); |
|
658 | + $this->set_prop( 'cancelled', $value ); |
|
659 | + } |
|
660 | + |
|
661 | + /** |
|
662 | + * Set the total amount failed via this form. |
|
663 | + * |
|
664 | + * @since 1.0.19 |
|
665 | + * @param float $value Amount cancelled. |
|
666 | + */ |
|
667 | + public function set_failed( $value ) { |
|
668 | + $value = max( (float) $value, 0 ); |
|
669 | + $this->set_prop( 'failed', $value ); |
|
670 | + } |
|
671 | 671 | |
672 | 672 | /** |
673 | 673 | * Create an item. For backwards compatibilty. |
674 | 674 | * |
675 | 675 | * @deprecated |
676 | - * @return int item id |
|
676 | + * @return int item id |
|
677 | 677 | */ |
678 | 678 | public function create( $data = array() ) { |
679 | 679 | |
680 | - // Set the properties. |
|
681 | - if ( is_array( $data ) ) { |
|
682 | - $this->set_props( $data ); |
|
683 | - } |
|
680 | + // Set the properties. |
|
681 | + if ( is_array( $data ) ) { |
|
682 | + $this->set_props( $data ); |
|
683 | + } |
|
684 | 684 | |
685 | - // Save the item. |
|
686 | - return $this->save(); |
|
685 | + // Save the item. |
|
686 | + return $this->save(); |
|
687 | 687 | |
688 | 688 | } |
689 | 689 | |
@@ -691,7 +691,7 @@ discard block |
||
691 | 691 | * Updates an item. For backwards compatibilty. |
692 | 692 | * |
693 | 693 | * @deprecated |
694 | - * @return int item id |
|
694 | + * @return int item id |
|
695 | 695 | */ |
696 | 696 | public function update( $data = array() ) { |
697 | 697 | return $this->create( $data ); |
@@ -707,22 +707,22 @@ discard block |
||
707 | 707 | */ |
708 | 708 | |
709 | 709 | /** |
710 | - * Checks whether this is the default payment form. |
|
711 | - * |
|
712 | - * @since 1.0.19 |
|
713 | - * @return bool |
|
714 | - */ |
|
710 | + * Checks whether this is the default payment form. |
|
711 | + * |
|
712 | + * @since 1.0.19 |
|
713 | + * @return bool |
|
714 | + */ |
|
715 | 715 | public function is_default() { |
716 | 716 | $is_default = $this->get_id() == wpinv_get_default_payment_form(); |
717 | 717 | return (bool) apply_filters( 'wpinv_is_default_payment_form', $is_default, $this->get_id(), $this ); |
718 | - } |
|
718 | + } |
|
719 | 719 | |
720 | 720 | /** |
721 | - * Checks whether the form is active. |
|
722 | - * |
|
723 | - * @since 1.0.19 |
|
724 | - * @return bool |
|
725 | - */ |
|
721 | + * Checks whether the form is active. |
|
722 | + * |
|
723 | + * @since 1.0.19 |
|
724 | + * @return bool |
|
725 | + */ |
|
726 | 726 | public function is_active() { |
727 | 727 | $is_active = 0 !== (int) $this->get_id(); |
728 | 728 | |
@@ -731,76 +731,76 @@ discard block |
||
731 | 731 | } |
732 | 732 | |
733 | 733 | return (bool) apply_filters( 'wpinv_is_payment_form_active', $is_active, $this ); |
734 | - } |
|
735 | - |
|
736 | - /** |
|
737 | - * Checks whether the form has a given item. |
|
738 | - * |
|
739 | - * @since 1.0.19 |
|
740 | - * @return bool |
|
741 | - */ |
|
734 | + } |
|
735 | + |
|
736 | + /** |
|
737 | + * Checks whether the form has a given item. |
|
738 | + * |
|
739 | + * @since 1.0.19 |
|
740 | + * @return bool |
|
741 | + */ |
|
742 | 742 | public function has_item( $item_id ) { |
743 | 743 | return false !== $this->get_item( $item_id ); |
744 | - } |
|
745 | - |
|
746 | - /** |
|
747 | - * Checks whether the form has a given element. |
|
748 | - * |
|
749 | - * @since 1.0.19 |
|
750 | - * @return bool |
|
751 | - */ |
|
744 | + } |
|
745 | + |
|
746 | + /** |
|
747 | + * Checks whether the form has a given element. |
|
748 | + * |
|
749 | + * @since 1.0.19 |
|
750 | + * @return bool |
|
751 | + */ |
|
752 | 752 | public function has_element_type( $element_type ) { |
753 | 753 | return false !== $this->get_element_type( $element_type ); |
754 | - } |
|
755 | - |
|
756 | - /** |
|
757 | - * Checks whether this form is recurring or not. |
|
758 | - * |
|
759 | - * @since 1.0.19 |
|
760 | - * @return bool |
|
761 | - */ |
|
754 | + } |
|
755 | + |
|
756 | + /** |
|
757 | + * Checks whether this form is recurring or not. |
|
758 | + * |
|
759 | + * @since 1.0.19 |
|
760 | + * @return bool |
|
761 | + */ |
|
762 | 762 | public function is_recurring() { |
763 | 763 | |
764 | - if ( ! empty( $this->invoice ) ) { |
|
765 | - return $this->invoice->is_recurring(); |
|
766 | - } |
|
764 | + if ( ! empty( $this->invoice ) ) { |
|
765 | + return $this->invoice->is_recurring(); |
|
766 | + } |
|
767 | 767 | |
768 | - foreach ( $this->get_items() as $item ) { |
|
768 | + foreach ( $this->get_items() as $item ) { |
|
769 | 769 | |
770 | - if ( $item->is_recurring() ) { |
|
771 | - return true; |
|
772 | - } |
|
770 | + if ( $item->is_recurring() ) { |
|
771 | + return true; |
|
772 | + } |
|
773 | 773 | |
774 | - } |
|
774 | + } |
|
775 | 775 | |
776 | 776 | return false; |
777 | - } |
|
777 | + } |
|
778 | 778 | |
779 | - /** |
|
780 | - * Retrieves the form's html. |
|
781 | - * |
|
782 | - * @since 1.0.19 |
|
783 | - */ |
|
779 | + /** |
|
780 | + * Retrieves the form's html. |
|
781 | + * |
|
782 | + * @since 1.0.19 |
|
783 | + */ |
|
784 | 784 | public function get_html( $extra_markup = '' ) { |
785 | 785 | |
786 | - // Return the HTML. |
|
787 | - return wpinv_get_template_html( |
|
788 | - 'payment-forms/form.php', |
|
789 | - array( |
|
790 | - 'form' => $this, |
|
791 | - 'extra_markup' => $extra_markup, |
|
792 | - ) |
|
793 | - ); |
|
794 | - |
|
795 | - } |
|
796 | - |
|
797 | - /** |
|
798 | - * Displays the payment form. |
|
799 | - * |
|
800 | - * @since 1.0.19 |
|
801 | - */ |
|
786 | + // Return the HTML. |
|
787 | + return wpinv_get_template_html( |
|
788 | + 'payment-forms/form.php', |
|
789 | + array( |
|
790 | + 'form' => $this, |
|
791 | + 'extra_markup' => $extra_markup, |
|
792 | + ) |
|
793 | + ); |
|
794 | + |
|
795 | + } |
|
796 | + |
|
797 | + /** |
|
798 | + * Displays the payment form. |
|
799 | + * |
|
800 | + * @since 1.0.19 |
|
801 | + */ |
|
802 | 802 | public function display( $extra_markup = '' ) { |
803 | - echo $this->get_html( $extra_markup ); |
|
803 | + echo $this->get_html( $extra_markup ); |
|
804 | 804 | } |
805 | 805 | |
806 | 806 | } |
@@ -14,619 +14,619 @@ |
||
14 | 14 | */ |
15 | 15 | class WPInv_Plugin { |
16 | 16 | |
17 | - /** |
|
18 | - * GetPaid version. |
|
19 | - * |
|
20 | - * @var string |
|
21 | - */ |
|
22 | - public $version; |
|
23 | - |
|
24 | - /** |
|
25 | - * Data container. |
|
26 | - * |
|
27 | - * @var array |
|
28 | - */ |
|
29 | - protected $data = array(); |
|
30 | - |
|
31 | - /** |
|
32 | - * Form elements instance. |
|
33 | - * |
|
34 | - * @var WPInv_Payment_Form_Elements |
|
35 | - */ |
|
36 | - public $form_elements; |
|
37 | - |
|
38 | - /** |
|
39 | - * @var array An array of payment gateways. |
|
40 | - */ |
|
41 | - public $gateways; |
|
42 | - |
|
43 | - /** |
|
44 | - * Class constructor. |
|
45 | - */ |
|
46 | - public function __construct() { |
|
47 | - $this->define_constants(); |
|
48 | - $this->includes(); |
|
49 | - $this->init_hooks(); |
|
50 | - $this->set_properties(); |
|
51 | - } |
|
52 | - |
|
53 | - /** |
|
54 | - * Sets a custom data property. |
|
55 | - * |
|
56 | - * @param string $prop The prop to set. |
|
57 | - * @param mixed $value The value to retrieve. |
|
58 | - */ |
|
59 | - public function set( $prop, $value ) { |
|
60 | - $this->data[ $prop ] = $value; |
|
61 | - } |
|
62 | - |
|
63 | - /** |
|
64 | - * Gets a custom data property. |
|
65 | - * |
|
66 | - * @param string $prop The prop to set. |
|
67 | - * @return mixed The value. |
|
68 | - */ |
|
69 | - public function get( $prop ) { |
|
70 | - |
|
71 | - if ( isset( $this->data[ $prop ] ) ) { |
|
72 | - return $this->data[ $prop ]; |
|
73 | - } |
|
74 | - |
|
75 | - return null; |
|
76 | - } |
|
77 | - |
|
78 | - /** |
|
79 | - * Define class properties. |
|
80 | - */ |
|
81 | - public function set_properties() { |
|
82 | - |
|
83 | - // Sessions. |
|
84 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
85 | - $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
86 | - $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
|
87 | - |
|
88 | - // Init other objects. |
|
89 | - $this->set( 'session', new WPInv_Session_Handler() ); |
|
90 | - $this->set( 'notes', new WPInv_Notes() ); |
|
91 | - $this->set( 'api', new WPInv_API() ); |
|
92 | - $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
93 | - $this->set( 'template', new GetPaid_Template() ); |
|
94 | - $this->set( 'admin', new GetPaid_Admin() ); |
|
95 | - $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
96 | - $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
97 | - $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
98 | - $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
99 | - $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
100 | - $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
101 | - |
|
102 | - } |
|
103 | - |
|
104 | - /** |
|
105 | - * Define plugin constants. |
|
106 | - */ |
|
107 | - public function define_constants() { |
|
108 | - define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
109 | - define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
110 | - $this->version = WPINV_VERSION; |
|
111 | - } |
|
112 | - |
|
113 | - /** |
|
114 | - * Hook into actions and filters. |
|
115 | - * |
|
116 | - * @since 1.0.19 |
|
117 | - */ |
|
118 | - protected function init_hooks() { |
|
119 | - /* Internationalize the text strings used. */ |
|
120 | - add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
121 | - |
|
122 | - // Init the plugin after WordPress inits. |
|
123 | - add_action( 'init', array( $this, 'init' ), 1 ); |
|
124 | - add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
125 | - add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
126 | - add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
127 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
128 | - add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
129 | - add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
130 | - add_action( 'widgets_init', array( $this, 'register_widgets' ) ); |
|
131 | - add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
132 | - add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
133 | - |
|
134 | - add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
17 | + /** |
|
18 | + * GetPaid version. |
|
19 | + * |
|
20 | + * @var string |
|
21 | + */ |
|
22 | + public $version; |
|
23 | + |
|
24 | + /** |
|
25 | + * Data container. |
|
26 | + * |
|
27 | + * @var array |
|
28 | + */ |
|
29 | + protected $data = array(); |
|
30 | + |
|
31 | + /** |
|
32 | + * Form elements instance. |
|
33 | + * |
|
34 | + * @var WPInv_Payment_Form_Elements |
|
35 | + */ |
|
36 | + public $form_elements; |
|
37 | + |
|
38 | + /** |
|
39 | + * @var array An array of payment gateways. |
|
40 | + */ |
|
41 | + public $gateways; |
|
42 | + |
|
43 | + /** |
|
44 | + * Class constructor. |
|
45 | + */ |
|
46 | + public function __construct() { |
|
47 | + $this->define_constants(); |
|
48 | + $this->includes(); |
|
49 | + $this->init_hooks(); |
|
50 | + $this->set_properties(); |
|
51 | + } |
|
52 | + |
|
53 | + /** |
|
54 | + * Sets a custom data property. |
|
55 | + * |
|
56 | + * @param string $prop The prop to set. |
|
57 | + * @param mixed $value The value to retrieve. |
|
58 | + */ |
|
59 | + public function set( $prop, $value ) { |
|
60 | + $this->data[ $prop ] = $value; |
|
61 | + } |
|
62 | + |
|
63 | + /** |
|
64 | + * Gets a custom data property. |
|
65 | + * |
|
66 | + * @param string $prop The prop to set. |
|
67 | + * @return mixed The value. |
|
68 | + */ |
|
69 | + public function get( $prop ) { |
|
70 | + |
|
71 | + if ( isset( $this->data[ $prop ] ) ) { |
|
72 | + return $this->data[ $prop ]; |
|
73 | + } |
|
74 | + |
|
75 | + return null; |
|
76 | + } |
|
77 | + |
|
78 | + /** |
|
79 | + * Define class properties. |
|
80 | + */ |
|
81 | + public function set_properties() { |
|
82 | + |
|
83 | + // Sessions. |
|
84 | + $this->set( 'session', new WPInv_Session_Handler() ); |
|
85 | + $GLOBALS['wpi_session'] = $this->get( 'session' ); // Backwards compatibility. |
|
86 | + $GLOBALS['wpinv_euvat'] = new WPInv_EUVat(); // Backwards compatibility. |
|
87 | + |
|
88 | + // Init other objects. |
|
89 | + $this->set( 'session', new WPInv_Session_Handler() ); |
|
90 | + $this->set( 'notes', new WPInv_Notes() ); |
|
91 | + $this->set( 'api', new WPInv_API() ); |
|
92 | + $this->set( 'post_types', new GetPaid_Post_Types() ); |
|
93 | + $this->set( 'template', new GetPaid_Template() ); |
|
94 | + $this->set( 'admin', new GetPaid_Admin() ); |
|
95 | + $this->set( 'subscriptions', new WPInv_Subscriptions() ); |
|
96 | + $this->set( 'invoice_emails', new GetPaid_Invoice_Notification_Emails() ); |
|
97 | + $this->set( 'subscription_emails', new GetPaid_Subscription_Notification_Emails() ); |
|
98 | + $this->set( 'daily_maintenace', new GetPaid_Daily_Maintenance() ); |
|
99 | + $this->set( 'payment_forms', new GetPaid_Payment_Forms() ); |
|
100 | + $this->set( 'maxmind', new GetPaid_MaxMind_Geolocation() ); |
|
101 | + |
|
102 | + } |
|
103 | + |
|
104 | + /** |
|
105 | + * Define plugin constants. |
|
106 | + */ |
|
107 | + public function define_constants() { |
|
108 | + define( 'WPINV_PLUGIN_DIR', plugin_dir_path( WPINV_PLUGIN_FILE ) ); |
|
109 | + define( 'WPINV_PLUGIN_URL', plugin_dir_url( WPINV_PLUGIN_FILE ) ); |
|
110 | + $this->version = WPINV_VERSION; |
|
111 | + } |
|
112 | + |
|
113 | + /** |
|
114 | + * Hook into actions and filters. |
|
115 | + * |
|
116 | + * @since 1.0.19 |
|
117 | + */ |
|
118 | + protected function init_hooks() { |
|
119 | + /* Internationalize the text strings used. */ |
|
120 | + add_action( 'plugins_loaded', array( &$this, 'plugins_loaded' ) ); |
|
121 | + |
|
122 | + // Init the plugin after WordPress inits. |
|
123 | + add_action( 'init', array( $this, 'init' ), 1 ); |
|
124 | + add_action( 'init', array( $this, 'maybe_process_ipn' ), 10 ); |
|
125 | + add_action( 'init', array( $this, 'wpinv_actions' ) ); |
|
126 | + add_action( 'init', array( $this, 'maybe_do_authenticated_action' ), 100 ); |
|
127 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), 11 ); |
|
128 | + add_action( 'wp_footer', array( $this, 'wp_footer' ) ); |
|
129 | + add_action( 'wp_head', array( $this, 'wp_head' ) ); |
|
130 | + add_action( 'widgets_init', array( $this, 'register_widgets' ) ); |
|
131 | + add_filter( 'wpseo_exclude_from_sitemap_by_post_ids', array( $this, 'wpseo_exclude_from_sitemap_by_post_ids' ) ); |
|
132 | + add_filter( 'pre_get_posts', array( &$this, 'pre_get_posts' ) ); |
|
133 | + |
|
134 | + add_filter( 'query_vars', array( $this, 'custom_query_vars' ) ); |
|
135 | 135 | add_action( 'init', array( $this, 'add_rewrite_rule' ), 10, 0 ); |
136 | - add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
137 | - |
|
138 | - // Fires after registering actions. |
|
139 | - do_action( 'wpinv_actions', $this ); |
|
140 | - do_action( 'getpaid_actions', $this ); |
|
141 | - |
|
142 | - } |
|
143 | - |
|
144 | - public function plugins_loaded() { |
|
145 | - /* Internationalize the text strings used. */ |
|
146 | - $this->load_textdomain(); |
|
147 | - |
|
148 | - do_action( 'wpinv_loaded' ); |
|
149 | - |
|
150 | - // Fix oxygen page builder conflict |
|
151 | - if ( function_exists( 'ct_css_output' ) ) { |
|
152 | - wpinv_oxygen_fix_conflict(); |
|
153 | - } |
|
154 | - } |
|
155 | - |
|
156 | - /** |
|
157 | - * Load Localisation files. |
|
158 | - * |
|
159 | - * Note: the first-loaded translation file overrides any following ones if the same translation is present. |
|
160 | - * |
|
161 | - * Locales found in: |
|
162 | - * - WP_LANG_DIR/plugins/invoicing-LOCALE.mo |
|
163 | - * - WP_PLUGIN_DIR/invoicing/languages/invoicing-LOCALE.mo |
|
164 | - * |
|
165 | - * @since 1.0.0 |
|
166 | - */ |
|
167 | - public function load_textdomain() { |
|
168 | - |
|
169 | - load_plugin_textdomain( |
|
170 | - 'invoicing', |
|
171 | - false, |
|
172 | - plugin_basename( dirname( WPINV_PLUGIN_FILE ) ) . '/languages/' |
|
173 | - ); |
|
174 | - |
|
175 | - } |
|
176 | - |
|
177 | - /** |
|
178 | - * Include required core files used in admin and on the frontend. |
|
179 | - */ |
|
180 | - public function includes() { |
|
181 | - |
|
182 | - // Start with the settings. |
|
183 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
184 | - |
|
185 | - // Packages/libraries. |
|
186 | - require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
187 | - require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
188 | - |
|
189 | - // Load functions. |
|
190 | - require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
191 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
192 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
193 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
194 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
195 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
196 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
197 | - require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
198 | - require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
199 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
200 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
201 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
202 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
203 | - require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
204 | - require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
205 | - |
|
206 | - // Register autoloader. |
|
207 | - try { |
|
208 | - spl_autoload_register( array( $this, 'autoload' ), true ); |
|
209 | - } catch ( Exception $e ) { |
|
210 | - wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
211 | - } |
|
212 | - |
|
213 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
214 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
215 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
216 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
217 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
218 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
219 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
220 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
221 | - require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
222 | - require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
223 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
224 | - require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
225 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
226 | - require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
227 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
228 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
229 | - require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
230 | - require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
231 | - require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
232 | - require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
233 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
234 | - |
|
235 | - if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
236 | - GetPaid_Post_Types_Admin::init(); |
|
237 | - |
|
238 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
239 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
240 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
241 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
242 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
243 | - require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
244 | - // load the user class only on the users.php page |
|
245 | - global $pagenow; |
|
246 | - if($pagenow=='users.php'){ |
|
247 | - new WPInv_Admin_Users(); |
|
248 | - } |
|
249 | - } |
|
250 | - |
|
251 | - // Register cli commands |
|
252 | - if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
253 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
254 | - WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
255 | - } |
|
256 | - |
|
257 | - } |
|
258 | - |
|
259 | - /** |
|
260 | - * Class autoloader |
|
261 | - * |
|
262 | - * @param string $class_name The name of the class to load. |
|
263 | - * @access public |
|
264 | - * @since 1.0.19 |
|
265 | - * @return void |
|
266 | - */ |
|
267 | - public function autoload( $class_name ) { |
|
268 | - |
|
269 | - // Normalize the class name... |
|
270 | - $class_name = strtolower( $class_name ); |
|
271 | - |
|
272 | - // ... and make sure it is our class. |
|
273 | - if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
274 | - return; |
|
275 | - } |
|
276 | - |
|
277 | - // Next, prepare the file name from the class. |
|
278 | - $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
279 | - |
|
280 | - // Base path of the classes. |
|
281 | - $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
282 | - |
|
283 | - // And an array of possible locations in order of importance. |
|
284 | - $locations = array( |
|
285 | - "$plugin_path/includes", |
|
286 | - "$plugin_path/includes/data-stores", |
|
287 | - "$plugin_path/includes/gateways", |
|
288 | - "$plugin_path/includes/payments", |
|
289 | - "$plugin_path/includes/geolocation", |
|
290 | - "$plugin_path/includes/reports", |
|
291 | - "$plugin_path/includes/api", |
|
292 | - "$plugin_path/includes/admin", |
|
293 | - "$plugin_path/includes/admin/meta-boxes", |
|
294 | - ); |
|
295 | - |
|
296 | - foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
297 | - |
|
298 | - if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
299 | - include trailingslashit( $location ) . $file_name; |
|
300 | - break; |
|
301 | - } |
|
302 | - |
|
303 | - } |
|
304 | - |
|
305 | - } |
|
306 | - |
|
307 | - /** |
|
308 | - * Inits hooks etc. |
|
309 | - */ |
|
310 | - public function init() { |
|
311 | - |
|
312 | - // Fires before getpaid inits. |
|
313 | - do_action( 'before_getpaid_init', $this ); |
|
314 | - |
|
315 | - // Maybe upgrade. |
|
316 | - $this->maybe_upgrade_database(); |
|
317 | - |
|
318 | - // Load default gateways. |
|
319 | - $gateways = apply_filters( |
|
320 | - 'getpaid_default_gateways', |
|
321 | - array( |
|
322 | - 'manual' => 'GetPaid_Manual_Gateway', |
|
323 | - 'paypal' => 'GetPaid_Paypal_Gateway', |
|
324 | - 'worldpay' => 'GetPaid_Worldpay_Gateway', |
|
325 | - 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
|
326 | - 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
|
327 | - ) |
|
328 | - ); |
|
329 | - |
|
330 | - foreach ( $gateways as $id => $class ) { |
|
331 | - $this->gateways[ $id ] = new $class(); |
|
332 | - } |
|
333 | - |
|
334 | - if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
335 | - GetPaid_Installer::rename_gateways_label(); |
|
336 | - update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
337 | - } |
|
338 | - |
|
339 | - // Fires after getpaid inits. |
|
340 | - do_action( 'getpaid_init', $this ); |
|
341 | - |
|
342 | - } |
|
343 | - |
|
344 | - /** |
|
345 | - * Checks if this is an IPN request and processes it. |
|
346 | - */ |
|
347 | - public function maybe_process_ipn() { |
|
348 | - |
|
349 | - // Ensure that this is an IPN request. |
|
350 | - if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
351 | - return; |
|
352 | - } |
|
353 | - |
|
354 | - $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
|
355 | - |
|
356 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
357 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
358 | - exit; |
|
359 | - |
|
360 | - } |
|
361 | - |
|
362 | - public function enqueue_scripts() { |
|
363 | - |
|
364 | - // Fires before adding scripts. |
|
365 | - do_action( 'getpaid_enqueue_scripts' ); |
|
366 | - |
|
367 | - $localize = array(); |
|
368 | - $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
369 | - $localize['thousands'] = wpinv_thousands_separator(); |
|
370 | - $localize['decimals'] = wpinv_decimal_separator(); |
|
371 | - $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
372 | - $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
373 | - $localize['UseTaxes'] = wpinv_use_taxes(); |
|
374 | - $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
375 | - $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
376 | - $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
377 | - |
|
378 | - $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
379 | - |
|
380 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
381 | - wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
382 | - wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
383 | - } |
|
384 | - |
|
385 | - public function wpinv_actions() { |
|
386 | - if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
387 | - do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
388 | - } |
|
389 | - |
|
390 | - if ( defined( 'WP_ALL_IMPORT_ROOT_DIR' ) ) { |
|
391 | - include plugin_dir_path( __FILE__ ) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
392 | - } |
|
393 | - } |
|
136 | + add_action( 'pre_get_posts', array( $this, 'maybe_process_new_ipn' ), 1 ); |
|
137 | + |
|
138 | + // Fires after registering actions. |
|
139 | + do_action( 'wpinv_actions', $this ); |
|
140 | + do_action( 'getpaid_actions', $this ); |
|
141 | + |
|
142 | + } |
|
143 | + |
|
144 | + public function plugins_loaded() { |
|
145 | + /* Internationalize the text strings used. */ |
|
146 | + $this->load_textdomain(); |
|
147 | + |
|
148 | + do_action( 'wpinv_loaded' ); |
|
149 | + |
|
150 | + // Fix oxygen page builder conflict |
|
151 | + if ( function_exists( 'ct_css_output' ) ) { |
|
152 | + wpinv_oxygen_fix_conflict(); |
|
153 | + } |
|
154 | + } |
|
155 | + |
|
156 | + /** |
|
157 | + * Load Localisation files. |
|
158 | + * |
|
159 | + * Note: the first-loaded translation file overrides any following ones if the same translation is present. |
|
160 | + * |
|
161 | + * Locales found in: |
|
162 | + * - WP_LANG_DIR/plugins/invoicing-LOCALE.mo |
|
163 | + * - WP_PLUGIN_DIR/invoicing/languages/invoicing-LOCALE.mo |
|
164 | + * |
|
165 | + * @since 1.0.0 |
|
166 | + */ |
|
167 | + public function load_textdomain() { |
|
168 | + |
|
169 | + load_plugin_textdomain( |
|
170 | + 'invoicing', |
|
171 | + false, |
|
172 | + plugin_basename( dirname( WPINV_PLUGIN_FILE ) ) . '/languages/' |
|
173 | + ); |
|
174 | + |
|
175 | + } |
|
176 | + |
|
177 | + /** |
|
178 | + * Include required core files used in admin and on the frontend. |
|
179 | + */ |
|
180 | + public function includes() { |
|
181 | + |
|
182 | + // Start with the settings. |
|
183 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/register-settings.php' ); |
|
184 | + |
|
185 | + // Packages/libraries. |
|
186 | + require_once( WPINV_PLUGIN_DIR . 'vendor/autoload.php' ); |
|
187 | + require_once( WPINV_PLUGIN_DIR . 'vendor/ayecode/wp-ayecode-ui/ayecode-ui-loader.php' ); |
|
188 | + |
|
189 | + // Load functions. |
|
190 | + require_once( WPINV_PLUGIN_DIR . 'includes/deprecated-functions.php' ); |
|
191 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-email-functions.php' ); |
|
192 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-general-functions.php' ); |
|
193 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-helper-functions.php' ); |
|
194 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-tax-functions.php' ); |
|
195 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-template-functions.php' ); |
|
196 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-address-functions.php' ); |
|
197 | + require_once( WPINV_PLUGIN_DIR . 'includes/invoice-functions.php' ); |
|
198 | + require_once( WPINV_PLUGIN_DIR . 'includes/subscription-functions.php' ); |
|
199 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-item-functions.php' ); |
|
200 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-discount-functions.php' ); |
|
201 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-gateway-functions.php' ); |
|
202 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-payment-functions.php' ); |
|
203 | + require_once( WPINV_PLUGIN_DIR . 'includes/user-functions.php' ); |
|
204 | + require_once( WPINV_PLUGIN_DIR . 'includes/error-functions.php' ); |
|
205 | + |
|
206 | + // Register autoloader. |
|
207 | + try { |
|
208 | + spl_autoload_register( array( $this, 'autoload' ), true ); |
|
209 | + } catch ( Exception $e ) { |
|
210 | + wpinv_error_log( $e->getMessage(), '', __FILE__, 149, true ); |
|
211 | + } |
|
212 | + |
|
213 | + require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-session.php' ); |
|
214 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-session-handler.php' ); |
|
215 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-ajax.php' ); |
|
216 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-api.php' ); |
|
217 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cache-helper.php' ); |
|
218 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-db.php' ); |
|
219 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/subscriptions.php' ); |
|
220 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-subscriptions-db.php' ); |
|
221 | + require_once( WPINV_PLUGIN_DIR . 'includes/wpinv-subscription.php' ); |
|
222 | + require_once( WPINV_PLUGIN_DIR . 'includes/abstracts/abstract-wpinv-privacy.php' ); |
|
223 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-privacy.php' ); |
|
224 | + require_once( WPINV_PLUGIN_DIR . 'includes/libraries/class-ayecode-addons.php' ); |
|
225 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-addons.php' ); |
|
226 | + require_once( WPINV_PLUGIN_DIR . 'widgets/checkout.php' ); |
|
227 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-history.php' ); |
|
228 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-receipt.php' ); |
|
229 | + require_once( WPINV_PLUGIN_DIR . 'widgets/invoice-messages.php' ); |
|
230 | + require_once( WPINV_PLUGIN_DIR . 'widgets/subscriptions.php' ); |
|
231 | + require_once( WPINV_PLUGIN_DIR . 'widgets/buy-item.php' ); |
|
232 | + require_once( WPINV_PLUGIN_DIR . 'widgets/getpaid.php' ); |
|
233 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/admin-pages.php' ); |
|
234 | + |
|
235 | + if ( is_admin() || ( defined( 'WP_CLI' ) && WP_CLI ) ) { |
|
236 | + GetPaid_Post_Types_Admin::init(); |
|
237 | + |
|
238 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/wpinv-admin-functions.php' ); |
|
239 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-payment-form.php' ); |
|
240 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/meta-boxes/class-mb-invoice-notes.php' ); |
|
241 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-admin-menus.php' ); |
|
242 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-wpinv-users.php' ); |
|
243 | + require_once( WPINV_PLUGIN_DIR . 'includes/admin/class-getpaid-admin-profile.php' ); |
|
244 | + // load the user class only on the users.php page |
|
245 | + global $pagenow; |
|
246 | + if($pagenow=='users.php'){ |
|
247 | + new WPInv_Admin_Users(); |
|
248 | + } |
|
249 | + } |
|
250 | + |
|
251 | + // Register cli commands |
|
252 | + if ( defined( 'WP_CLI' ) && WP_CLI ) { |
|
253 | + require_once( WPINV_PLUGIN_DIR . 'includes/class-wpinv-cli.php' ); |
|
254 | + WP_CLI::add_command( 'invoicing', 'WPInv_CLI' ); |
|
255 | + } |
|
256 | + |
|
257 | + } |
|
258 | + |
|
259 | + /** |
|
260 | + * Class autoloader |
|
261 | + * |
|
262 | + * @param string $class_name The name of the class to load. |
|
263 | + * @access public |
|
264 | + * @since 1.0.19 |
|
265 | + * @return void |
|
266 | + */ |
|
267 | + public function autoload( $class_name ) { |
|
268 | + |
|
269 | + // Normalize the class name... |
|
270 | + $class_name = strtolower( $class_name ); |
|
271 | + |
|
272 | + // ... and make sure it is our class. |
|
273 | + if ( false === strpos( $class_name, 'getpaid_' ) && false === strpos( $class_name, 'wpinv_' ) ) { |
|
274 | + return; |
|
275 | + } |
|
276 | + |
|
277 | + // Next, prepare the file name from the class. |
|
278 | + $file_name = 'class-' . str_replace( '_', '-', $class_name ) . '.php'; |
|
279 | + |
|
280 | + // Base path of the classes. |
|
281 | + $plugin_path = untrailingslashit( WPINV_PLUGIN_DIR ); |
|
282 | + |
|
283 | + // And an array of possible locations in order of importance. |
|
284 | + $locations = array( |
|
285 | + "$plugin_path/includes", |
|
286 | + "$plugin_path/includes/data-stores", |
|
287 | + "$plugin_path/includes/gateways", |
|
288 | + "$plugin_path/includes/payments", |
|
289 | + "$plugin_path/includes/geolocation", |
|
290 | + "$plugin_path/includes/reports", |
|
291 | + "$plugin_path/includes/api", |
|
292 | + "$plugin_path/includes/admin", |
|
293 | + "$plugin_path/includes/admin/meta-boxes", |
|
294 | + ); |
|
295 | + |
|
296 | + foreach ( apply_filters( 'getpaid_autoload_locations', $locations ) as $location ) { |
|
297 | + |
|
298 | + if ( file_exists( trailingslashit( $location ) . $file_name ) ) { |
|
299 | + include trailingslashit( $location ) . $file_name; |
|
300 | + break; |
|
301 | + } |
|
302 | + |
|
303 | + } |
|
304 | + |
|
305 | + } |
|
306 | + |
|
307 | + /** |
|
308 | + * Inits hooks etc. |
|
309 | + */ |
|
310 | + public function init() { |
|
311 | + |
|
312 | + // Fires before getpaid inits. |
|
313 | + do_action( 'before_getpaid_init', $this ); |
|
314 | + |
|
315 | + // Maybe upgrade. |
|
316 | + $this->maybe_upgrade_database(); |
|
317 | + |
|
318 | + // Load default gateways. |
|
319 | + $gateways = apply_filters( |
|
320 | + 'getpaid_default_gateways', |
|
321 | + array( |
|
322 | + 'manual' => 'GetPaid_Manual_Gateway', |
|
323 | + 'paypal' => 'GetPaid_Paypal_Gateway', |
|
324 | + 'worldpay' => 'GetPaid_Worldpay_Gateway', |
|
325 | + 'bank_transfer' => 'GetPaid_Bank_Transfer_Gateway', |
|
326 | + 'authorizenet' => 'GetPaid_Authorize_Net_Gateway', |
|
327 | + ) |
|
328 | + ); |
|
329 | + |
|
330 | + foreach ( $gateways as $id => $class ) { |
|
331 | + $this->gateways[ $id ] = new $class(); |
|
332 | + } |
|
333 | + |
|
334 | + if ( 'yes' != get_option( 'wpinv_renamed_gateways' ) ) { |
|
335 | + GetPaid_Installer::rename_gateways_label(); |
|
336 | + update_option( 'wpinv_renamed_gateways', 'yes' ); |
|
337 | + } |
|
338 | + |
|
339 | + // Fires after getpaid inits. |
|
340 | + do_action( 'getpaid_init', $this ); |
|
394 | 341 | |
395 | - /** |
|
342 | + } |
|
343 | + |
|
344 | + /** |
|
345 | + * Checks if this is an IPN request and processes it. |
|
346 | + */ |
|
347 | + public function maybe_process_ipn() { |
|
348 | + |
|
349 | + // Ensure that this is an IPN request. |
|
350 | + if ( empty( $_GET['wpi-listener'] ) || 'IPN' !== $_GET['wpi-listener'] || empty( $_GET['wpi-gateway'] ) ) { |
|
351 | + return; |
|
352 | + } |
|
353 | + |
|
354 | + $gateway = wpinv_clean( $_GET['wpi-gateway'] ); |
|
355 | + |
|
356 | + do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
357 | + do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
358 | + exit; |
|
359 | + |
|
360 | + } |
|
361 | + |
|
362 | + public function enqueue_scripts() { |
|
363 | + |
|
364 | + // Fires before adding scripts. |
|
365 | + do_action( 'getpaid_enqueue_scripts' ); |
|
366 | + |
|
367 | + $localize = array(); |
|
368 | + $localize['ajax_url'] = admin_url( 'admin-ajax.php' ); |
|
369 | + $localize['thousands'] = wpinv_thousands_separator(); |
|
370 | + $localize['decimals'] = wpinv_decimal_separator(); |
|
371 | + $localize['nonce'] = wp_create_nonce( 'wpinv-nonce' ); |
|
372 | + $localize['txtComplete'] = __( 'Continue', 'invoicing' ); |
|
373 | + $localize['UseTaxes'] = wpinv_use_taxes(); |
|
374 | + $localize['formNonce'] = wp_create_nonce( 'getpaid_form_nonce' ); |
|
375 | + $localize['loading'] = __( 'Loading...', 'invoicing' ); |
|
376 | + $localize['connectionError'] = __( 'Could not establish a connection to the server.', 'invoicing' ); |
|
377 | + |
|
378 | + $localize = apply_filters( 'wpinv_front_js_localize', $localize ); |
|
379 | + |
|
380 | + $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/payment-forms.js' ); |
|
381 | + wp_enqueue_script( 'wpinv-front-script', WPINV_PLUGIN_URL . 'assets/js/payment-forms.js', array( 'jquery' ), $version, true ); |
|
382 | + wp_localize_script( 'wpinv-front-script', 'WPInv', $localize ); |
|
383 | + } |
|
384 | + |
|
385 | + public function wpinv_actions() { |
|
386 | + if ( isset( $_REQUEST['wpi_action'] ) ) { |
|
387 | + do_action( 'wpinv_' . wpinv_sanitize_key( $_REQUEST['wpi_action'] ), $_REQUEST ); |
|
388 | + } |
|
389 | + |
|
390 | + if ( defined( 'WP_ALL_IMPORT_ROOT_DIR' ) ) { |
|
391 | + include plugin_dir_path( __FILE__ ) . 'libraries/wp-all-import/class-getpaid-wp-all-import.php'; |
|
392 | + } |
|
393 | + } |
|
394 | + |
|
395 | + /** |
|
396 | 396 | * Fires an action after verifying that a user can fire them. |
397 | - * |
|
398 | - * Note: If the action is on an invoice, subscription etc, esure that the |
|
399 | - * current user owns the invoice/subscription. |
|
397 | + * |
|
398 | + * Note: If the action is on an invoice, subscription etc, esure that the |
|
399 | + * current user owns the invoice/subscription. |
|
400 | 400 | */ |
401 | 401 | public function maybe_do_authenticated_action() { |
402 | 402 | |
403 | - if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
403 | + if ( isset( $_REQUEST['getpaid-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
404 | + |
|
405 | + $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
406 | + $data = wp_unslash( $_REQUEST ); |
|
407 | + if ( is_user_logged_in() ) { |
|
408 | + do_action( "getpaid_authenticated_action_$key", $data ); |
|
409 | + } |
|
410 | + |
|
411 | + do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
412 | + |
|
413 | + } |
|
414 | + |
|
415 | + } |
|
416 | + |
|
417 | + public function pre_get_posts( $wp_query ) { |
|
418 | + |
|
419 | + if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
420 | + $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
421 | + } |
|
422 | + |
|
423 | + return $wp_query; |
|
424 | + } |
|
425 | + |
|
426 | + /** |
|
427 | + * Register widgets |
|
428 | + * |
|
429 | + */ |
|
430 | + public function register_widgets() { |
|
431 | + global $pagenow; |
|
432 | + |
|
433 | + // Currently, UX Builder does not work particulaly well with SuperDuper. |
|
434 | + // So we disable our widgets when editing a page with UX Builder. |
|
435 | + if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
436 | + return; |
|
437 | + } |
|
438 | + |
|
439 | + $block_widget_init_screens = function_exists('sd_pagenow_exclude') ? sd_pagenow_exclude() : array(); |
|
440 | + |
|
441 | + if ( is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
442 | + // don't initiate in these conditions. |
|
443 | + }else{ |
|
444 | + |
|
445 | + // Only load allowed widgets. |
|
446 | + $exclude = function_exists( 'sd_widget_exclude' ) ? sd_widget_exclude() : array(); |
|
447 | + $widgets = apply_filters( |
|
448 | + 'getpaid_widget_classes', |
|
449 | + array( |
|
450 | + 'WPInv_Checkout_Widget', |
|
451 | + 'WPInv_History_Widget', |
|
452 | + 'WPInv_Receipt_Widget', |
|
453 | + 'WPInv_Subscriptions_Widget', |
|
454 | + 'WPInv_Buy_Item_Widget', |
|
455 | + 'WPInv_Messages_Widget', |
|
456 | + 'WPInv_GetPaid_Widget' |
|
457 | + ) |
|
458 | + ); |
|
459 | + |
|
460 | + // For each widget... |
|
461 | + foreach ( $widgets as $widget ) { |
|
462 | + |
|
463 | + // Abort early if it is excluded for this page. |
|
464 | + if ( in_array( $widget, $exclude ) ) { |
|
465 | + continue; |
|
466 | + } |
|
467 | + |
|
468 | + // SD V1 used to extend the widget class. V2 does not, so we cannot call register widget on it. |
|
469 | + if ( is_subclass_of( $widget, 'WP_Widget' ) ) { |
|
470 | + register_widget( $widget ); |
|
471 | + } else { |
|
472 | + new $widget(); |
|
473 | + } |
|
474 | + |
|
475 | + } |
|
476 | + |
|
477 | + } |
|
478 | + |
|
479 | + } |
|
480 | + |
|
481 | + /** |
|
482 | + * Upgrades the database. |
|
483 | + * |
|
484 | + * @since 2.0.2 |
|
485 | + */ |
|
486 | + public function maybe_upgrade_database() { |
|
404 | 487 | |
405 | - $key = sanitize_key( $_REQUEST['getpaid-action'] ); |
|
406 | - $data = wp_unslash( $_REQUEST ); |
|
407 | - if ( is_user_logged_in() ) { |
|
408 | - do_action( "getpaid_authenticated_action_$key", $data ); |
|
409 | - } |
|
488 | + $wpi_version = get_option( 'wpinv_version', 0 ); |
|
410 | 489 | |
411 | - do_action( "getpaid_unauthenticated_action_$key", $data ); |
|
490 | + if ( $wpi_version == WPINV_VERSION ) { |
|
491 | + return; |
|
492 | + } |
|
412 | 493 | |
413 | - } |
|
494 | + $installer = new GetPaid_Installer(); |
|
495 | + |
|
496 | + if ( empty( $wpi_version ) ) { |
|
497 | + return $installer->upgrade_db( 0 ); |
|
498 | + } |
|
499 | + |
|
500 | + $upgrades = array( |
|
501 | + '0.0.5' => '004', |
|
502 | + '1.0.3' => '102', |
|
503 | + '2.0.0' => '118', |
|
504 | + '2.0.8' => '207', |
|
505 | + ); |
|
506 | + |
|
507 | + foreach ( $upgrades as $key => $method ) { |
|
508 | + |
|
509 | + if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
510 | + return $installer->upgrade_db( $method ); |
|
511 | + } |
|
512 | + |
|
513 | + } |
|
414 | 514 | |
415 | 515 | } |
416 | 516 | |
417 | - public function pre_get_posts( $wp_query ) { |
|
517 | + /** |
|
518 | + * Flushes the permalinks if needed. |
|
519 | + * |
|
520 | + * @since 2.0.8 |
|
521 | + */ |
|
522 | + public function maybe_flush_permalinks() { |
|
418 | 523 | |
419 | - if ( ! is_admin() && ! empty( $wp_query->query_vars['post_type'] ) && getpaid_is_invoice_post_type( $wp_query->query_vars['post_type'] ) && is_user_logged_in() && is_single() && $wp_query->is_main_query() ) { |
|
420 | - $wp_query->query_vars['post_status'] = array_keys( wpinv_get_invoice_statuses( false, false, $wp_query->query_vars['post_type'] ) ); |
|
421 | - } |
|
422 | - |
|
423 | - return $wp_query; |
|
424 | - } |
|
524 | + $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
425 | 525 | |
426 | - /** |
|
427 | - * Register widgets |
|
428 | - * |
|
429 | - */ |
|
430 | - public function register_widgets() { |
|
431 | - global $pagenow; |
|
526 | + if ( ! empty( $flush ) ) { |
|
527 | + flush_rewrite_rules(); |
|
528 | + delete_option( 'wpinv_flush_permalinks' ); |
|
529 | + } |
|
432 | 530 | |
433 | - // Currently, UX Builder does not work particulaly well with SuperDuper. |
|
434 | - // So we disable our widgets when editing a page with UX Builder. |
|
435 | - if ( function_exists( 'ux_builder_is_active' ) && ux_builder_is_active() ) { |
|
436 | - return; |
|
437 | - } |
|
438 | - |
|
439 | - $block_widget_init_screens = function_exists('sd_pagenow_exclude') ? sd_pagenow_exclude() : array(); |
|
440 | - |
|
441 | - if ( is_admin() && $pagenow && in_array($pagenow, $block_widget_init_screens)) { |
|
442 | - // don't initiate in these conditions. |
|
443 | - }else{ |
|
444 | - |
|
445 | - // Only load allowed widgets. |
|
446 | - $exclude = function_exists( 'sd_widget_exclude' ) ? sd_widget_exclude() : array(); |
|
447 | - $widgets = apply_filters( |
|
448 | - 'getpaid_widget_classes', |
|
449 | - array( |
|
450 | - 'WPInv_Checkout_Widget', |
|
451 | - 'WPInv_History_Widget', |
|
452 | - 'WPInv_Receipt_Widget', |
|
453 | - 'WPInv_Subscriptions_Widget', |
|
454 | - 'WPInv_Buy_Item_Widget', |
|
455 | - 'WPInv_Messages_Widget', |
|
456 | - 'WPInv_GetPaid_Widget' |
|
457 | - ) |
|
458 | - ); |
|
459 | - |
|
460 | - // For each widget... |
|
461 | - foreach ( $widgets as $widget ) { |
|
531 | + } |
|
462 | 532 | |
463 | - // Abort early if it is excluded for this page. |
|
464 | - if ( in_array( $widget, $exclude ) ) { |
|
465 | - continue; |
|
466 | - } |
|
533 | + /** |
|
534 | + * Remove our pages from yoast sitemaps. |
|
535 | + * |
|
536 | + * @since 1.0.19 |
|
537 | + * @param int[] $excluded_posts_ids |
|
538 | + */ |
|
539 | + public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
467 | 540 | |
468 | - // SD V1 used to extend the widget class. V2 does not, so we cannot call register widget on it. |
|
469 | - if ( is_subclass_of( $widget, 'WP_Widget' ) ) { |
|
470 | - register_widget( $widget ); |
|
471 | - } else { |
|
472 | - new $widget(); |
|
473 | - } |
|
541 | + // Ensure that we have an array. |
|
542 | + if ( ! is_array( $excluded_posts_ids ) ) { |
|
543 | + $excluded_posts_ids = array(); |
|
544 | + } |
|
474 | 545 | |
475 | - } |
|
546 | + // Prepare our pages. |
|
547 | + $our_pages = array(); |
|
476 | 548 | |
477 | - } |
|
549 | + // Checkout page. |
|
550 | + $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
478 | 551 | |
479 | - } |
|
552 | + // Success page. |
|
553 | + $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
480 | 554 | |
481 | - /** |
|
482 | - * Upgrades the database. |
|
483 | - * |
|
484 | - * @since 2.0.2 |
|
485 | - */ |
|
486 | - public function maybe_upgrade_database() { |
|
487 | - |
|
488 | - $wpi_version = get_option( 'wpinv_version', 0 ); |
|
489 | - |
|
490 | - if ( $wpi_version == WPINV_VERSION ) { |
|
491 | - return; |
|
492 | - } |
|
493 | - |
|
494 | - $installer = new GetPaid_Installer(); |
|
495 | - |
|
496 | - if ( empty( $wpi_version ) ) { |
|
497 | - return $installer->upgrade_db( 0 ); |
|
498 | - } |
|
499 | - |
|
500 | - $upgrades = array( |
|
501 | - '0.0.5' => '004', |
|
502 | - '1.0.3' => '102', |
|
503 | - '2.0.0' => '118', |
|
504 | - '2.0.8' => '207', |
|
505 | - ); |
|
506 | - |
|
507 | - foreach ( $upgrades as $key => $method ) { |
|
508 | - |
|
509 | - if ( version_compare( $wpi_version, $key, '<' ) ) { |
|
510 | - return $installer->upgrade_db( $method ); |
|
511 | - } |
|
512 | - |
|
513 | - } |
|
514 | - |
|
515 | - } |
|
516 | - |
|
517 | - /** |
|
518 | - * Flushes the permalinks if needed. |
|
519 | - * |
|
520 | - * @since 2.0.8 |
|
521 | - */ |
|
522 | - public function maybe_flush_permalinks() { |
|
523 | - |
|
524 | - $flush = get_option( 'wpinv_flush_permalinks', 0 ); |
|
525 | - |
|
526 | - if ( ! empty( $flush ) ) { |
|
527 | - flush_rewrite_rules(); |
|
528 | - delete_option( 'wpinv_flush_permalinks' ); |
|
529 | - } |
|
530 | - |
|
531 | - } |
|
532 | - |
|
533 | - /** |
|
534 | - * Remove our pages from yoast sitemaps. |
|
535 | - * |
|
536 | - * @since 1.0.19 |
|
537 | - * @param int[] $excluded_posts_ids |
|
538 | - */ |
|
539 | - public function wpseo_exclude_from_sitemap_by_post_ids( $excluded_posts_ids ){ |
|
540 | - |
|
541 | - // Ensure that we have an array. |
|
542 | - if ( ! is_array( $excluded_posts_ids ) ) { |
|
543 | - $excluded_posts_ids = array(); |
|
544 | - } |
|
545 | - |
|
546 | - // Prepare our pages. |
|
547 | - $our_pages = array(); |
|
548 | - |
|
549 | - // Checkout page. |
|
550 | - $our_pages[] = wpinv_get_option( 'checkout_page', false ); |
|
551 | - |
|
552 | - // Success page. |
|
553 | - $our_pages[] = wpinv_get_option( 'success_page', false ); |
|
554 | - |
|
555 | - // Failure page. |
|
556 | - $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
555 | + // Failure page. |
|
556 | + $our_pages[] = wpinv_get_option( 'failure_page', false ); |
|
557 | 557 | |
558 | - // History page. |
|
559 | - $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
558 | + // History page. |
|
559 | + $our_pages[] = wpinv_get_option( 'invoice_history_page', false ); |
|
560 | 560 | |
561 | - // Subscriptions page. |
|
562 | - $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
561 | + // Subscriptions page. |
|
562 | + $our_pages[] = wpinv_get_option( 'invoice_subscription_page', false ); |
|
563 | 563 | |
564 | - $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
564 | + $our_pages = array_map( 'intval', array_filter( $our_pages ) ); |
|
565 | 565 | |
566 | - $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
|
567 | - return array_unique( $excluded_posts_ids ); |
|
566 | + $excluded_posts_ids = $excluded_posts_ids + $our_pages; |
|
567 | + return array_unique( $excluded_posts_ids ); |
|
568 | 568 | |
569 | - } |
|
569 | + } |
|
570 | 570 | |
571 | - /** |
|
572 | - * Displays additional footer code. |
|
573 | - * |
|
574 | - * @since 2.0.0 |
|
575 | - */ |
|
576 | - public function wp_footer() { |
|
577 | - wpinv_get_template( 'frontend-footer.php' ); |
|
578 | - } |
|
571 | + /** |
|
572 | + * Displays additional footer code. |
|
573 | + * |
|
574 | + * @since 2.0.0 |
|
575 | + */ |
|
576 | + public function wp_footer() { |
|
577 | + wpinv_get_template( 'frontend-footer.php' ); |
|
578 | + } |
|
579 | 579 | |
580 | - /** |
|
581 | - * Displays additional header code. |
|
582 | - * |
|
583 | - * @since 2.0.0 |
|
584 | - */ |
|
585 | - public function wp_head() { |
|
586 | - wpinv_get_template( 'frontend-head.php' ); |
|
587 | - } |
|
580 | + /** |
|
581 | + * Displays additional header code. |
|
582 | + * |
|
583 | + * @since 2.0.0 |
|
584 | + */ |
|
585 | + public function wp_head() { |
|
586 | + wpinv_get_template( 'frontend-head.php' ); |
|
587 | + } |
|
588 | 588 | |
589 | - /** |
|
590 | - * Custom query vars. |
|
591 | - * |
|
592 | - */ |
|
593 | - public function custom_query_vars( $vars ) { |
|
589 | + /** |
|
590 | + * Custom query vars. |
|
591 | + * |
|
592 | + */ |
|
593 | + public function custom_query_vars( $vars ) { |
|
594 | 594 | $vars[] = 'getpaid-ipn'; |
595 | 595 | return $vars; |
596 | - } |
|
596 | + } |
|
597 | 597 | |
598 | - /** |
|
599 | - * Add rewrite tags and rules. |
|
600 | - * |
|
601 | - */ |
|
602 | - public function add_rewrite_rule() { |
|
598 | + /** |
|
599 | + * Add rewrite tags and rules. |
|
600 | + * |
|
601 | + */ |
|
602 | + public function add_rewrite_rule() { |
|
603 | 603 | $tag = 'getpaid-ipn'; |
604 | 604 | add_rewrite_tag( "%$tag%", '([^&]+)' ); |
605 | 605 | add_rewrite_rule( "^$tag/([^/]*)/?", "index.php?$tag=\$matches[1]",'top' ); |
606 | - } |
|
606 | + } |
|
607 | 607 | |
608 | - /** |
|
609 | - * Processes non-query string ipns. |
|
610 | - * |
|
611 | - */ |
|
612 | - public function maybe_process_new_ipn( $query ) { |
|
608 | + /** |
|
609 | + * Processes non-query string ipns. |
|
610 | + * |
|
611 | + */ |
|
612 | + public function maybe_process_new_ipn( $query ) { |
|
613 | 613 | |
614 | 614 | if ( is_admin() || ! $query->is_main_query() ) { |
615 | 615 | return; |
616 | 616 | } |
617 | 617 | |
618 | - $gateway = get_query_var( 'getpaid-ipn' ); |
|
618 | + $gateway = get_query_var( 'getpaid-ipn' ); |
|
619 | 619 | |
620 | 620 | if ( ! empty( $gateway ) ){ |
621 | 621 | |
622 | - $gateway = sanitize_text_field( $gateway ); |
|
623 | - nocache_headers(); |
|
624 | - do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
625 | - do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
626 | - exit; |
|
622 | + $gateway = sanitize_text_field( $gateway ); |
|
623 | + nocache_headers(); |
|
624 | + do_action( 'wpinv_verify_payment_ipn', $gateway ); |
|
625 | + do_action( "wpinv_verify_{$gateway}_ipn" ); |
|
626 | + exit; |
|
627 | 627 | |
628 | 628 | } |
629 | 629 | |
630 | - } |
|
630 | + } |
|
631 | 631 | |
632 | 632 | } |
@@ -10,232 +10,232 @@ discard block |
||
10 | 10 | |
11 | 11 | if (!class_exists('RapidAddon')) { |
12 | 12 | |
13 | - class RapidAddon { |
|
14 | - |
|
15 | - public $name; |
|
16 | - public $slug; |
|
17 | - public $fields; |
|
18 | - public $options = array(); |
|
19 | - public $accordions = array(); |
|
20 | - public $image_sections = array(); |
|
21 | - public $import_function; |
|
22 | - public $post_saved_function; |
|
23 | - public $notice_text; |
|
24 | - public $logger = null; |
|
25 | - public $when_to_run = false; |
|
26 | - public $image_options = array( |
|
27 | - 'download_images' => 'yes', |
|
28 | - 'download_featured_delim' => ',', |
|
29 | - 'download_featured_image' => '', |
|
30 | - 'gallery_featured_image' => '', |
|
31 | - 'gallery_featured_delim' => ',', |
|
32 | - 'featured_image' => '', |
|
33 | - 'featured_delim' => ',', |
|
34 | - 'search_existing_images' => 1, |
|
35 | - 'is_featured' => 0, |
|
36 | - 'create_draft' => 'no', |
|
37 | - 'set_image_meta_title' => 0, |
|
38 | - 'image_meta_title_delim' => ',', |
|
39 | - 'image_meta_title' => '', |
|
40 | - 'set_image_meta_caption' => 0, |
|
41 | - 'image_meta_caption_delim' => ',', |
|
42 | - 'image_meta_caption' => '', |
|
43 | - 'set_image_meta_alt' => 0, |
|
44 | - 'image_meta_alt_delim' => ',', |
|
45 | - 'image_meta_alt' => '', |
|
46 | - 'set_image_meta_description' => 0, |
|
47 | - 'image_meta_description_delim' => ',', |
|
48 | - 'image_meta_description_delim_logic' => 'separate', |
|
49 | - 'image_meta_description' => '', |
|
50 | - 'auto_rename_images' => 0, |
|
51 | - 'auto_rename_images_suffix' => '', |
|
52 | - 'auto_set_extension' => 0, |
|
53 | - 'new_extension' => '', |
|
54 | - 'do_not_remove_images' => 1, |
|
13 | + class RapidAddon { |
|
14 | + |
|
15 | + public $name; |
|
16 | + public $slug; |
|
17 | + public $fields; |
|
18 | + public $options = array(); |
|
19 | + public $accordions = array(); |
|
20 | + public $image_sections = array(); |
|
21 | + public $import_function; |
|
22 | + public $post_saved_function; |
|
23 | + public $notice_text; |
|
24 | + public $logger = null; |
|
25 | + public $when_to_run = false; |
|
26 | + public $image_options = array( |
|
27 | + 'download_images' => 'yes', |
|
28 | + 'download_featured_delim' => ',', |
|
29 | + 'download_featured_image' => '', |
|
30 | + 'gallery_featured_image' => '', |
|
31 | + 'gallery_featured_delim' => ',', |
|
32 | + 'featured_image' => '', |
|
33 | + 'featured_delim' => ',', |
|
34 | + 'search_existing_images' => 1, |
|
35 | + 'is_featured' => 0, |
|
36 | + 'create_draft' => 'no', |
|
37 | + 'set_image_meta_title' => 0, |
|
38 | + 'image_meta_title_delim' => ',', |
|
39 | + 'image_meta_title' => '', |
|
40 | + 'set_image_meta_caption' => 0, |
|
41 | + 'image_meta_caption_delim' => ',', |
|
42 | + 'image_meta_caption' => '', |
|
43 | + 'set_image_meta_alt' => 0, |
|
44 | + 'image_meta_alt_delim' => ',', |
|
45 | + 'image_meta_alt' => '', |
|
46 | + 'set_image_meta_description' => 0, |
|
47 | + 'image_meta_description_delim' => ',', |
|
48 | + 'image_meta_description_delim_logic' => 'separate', |
|
49 | + 'image_meta_description' => '', |
|
50 | + 'auto_rename_images' => 0, |
|
51 | + 'auto_rename_images_suffix' => '', |
|
52 | + 'auto_set_extension' => 0, |
|
53 | + 'new_extension' => '', |
|
54 | + 'do_not_remove_images' => 1, |
|
55 | 55 | 'search_existing_images_logic' => 'by_url' |
56 | - ); |
|
56 | + ); |
|
57 | 57 | |
58 | - protected $isWizard = true; |
|
58 | + protected $isWizard = true; |
|
59 | 59 | |
60 | - function __construct($name, $slug) { |
|
61 | - $this->name = $name; |
|
62 | - $this->slug = $slug; |
|
63 | - if (!empty($_GET['id'])){ |
|
64 | - $this->isWizard = false; |
|
65 | - } |
|
60 | + function __construct($name, $slug) { |
|
61 | + $this->name = $name; |
|
62 | + $this->slug = $slug; |
|
63 | + if (!empty($_GET['id'])){ |
|
64 | + $this->isWizard = false; |
|
65 | + } |
|
66 | 66 | } |
67 | 67 | |
68 | - function set_import_function($name) { |
|
69 | - $this->import_function = $name; |
|
70 | - } |
|
68 | + function set_import_function($name) { |
|
69 | + $this->import_function = $name; |
|
70 | + } |
|
71 | 71 | |
72 | - function set_post_saved_function($name) { |
|
73 | - $this->post_saved_function = $name; |
|
74 | - } |
|
72 | + function set_post_saved_function($name) { |
|
73 | + $this->post_saved_function = $name; |
|
74 | + } |
|
75 | 75 | |
76 | - function is_active_addon($post_type = null) { |
|
76 | + function is_active_addon($post_type = null) { |
|
77 | 77 | |
78 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
79 | - return false; |
|
80 | - } |
|
78 | + if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
79 | + return false; |
|
80 | + } |
|
81 | 81 | |
82 | - $addon_active = false; |
|
82 | + $addon_active = false; |
|
83 | 83 | |
84 | - if ($post_type !== null) { |
|
85 | - if (@in_array($post_type, $this->active_post_types) or empty($this->active_post_types)) { |
|
86 | - $addon_active = true; |
|
87 | - } |
|
88 | - } |
|
84 | + if ($post_type !== null) { |
|
85 | + if (@in_array($post_type, $this->active_post_types) or empty($this->active_post_types)) { |
|
86 | + $addon_active = true; |
|
87 | + } |
|
88 | + } |
|
89 | 89 | |
90 | - if ($addon_active){ |
|
90 | + if ($addon_active){ |
|
91 | 91 | |
92 | - $current_theme = wp_get_theme(); |
|
92 | + $current_theme = wp_get_theme(); |
|
93 | 93 | |
94 | - $parent_theme = $current_theme->parent(); |
|
94 | + $parent_theme = $current_theme->parent(); |
|
95 | 95 | |
96 | - $theme_name = $current_theme->get('Name'); |
|
96 | + $theme_name = $current_theme->get('Name'); |
|
97 | 97 | |
98 | - $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
98 | + $addon_active = (@in_array($theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
99 | 99 | |
100 | - if ( ! $addon_active and $parent_theme ){ |
|
101 | - $parent_theme_name = $parent_theme->get('Name'); |
|
102 | - $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
100 | + if ( ! $addon_active and $parent_theme ){ |
|
101 | + $parent_theme_name = $parent_theme->get('Name'); |
|
102 | + $addon_active = (@in_array($parent_theme_name, $this->active_themes) or empty($this->active_themes)) ? true : false; |
|
103 | 103 | |
104 | - } |
|
104 | + } |
|
105 | 105 | |
106 | - if ( $addon_active and ! empty($this->active_plugins) ){ |
|
106 | + if ( $addon_active and ! empty($this->active_plugins) ){ |
|
107 | 107 | |
108 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
108 | + include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
109 | 109 | |
110 | - foreach ($this->active_plugins as $plugin) { |
|
111 | - if ( ! is_plugin_active($plugin) ) { |
|
112 | - $addon_active = false; |
|
113 | - break; |
|
114 | - } |
|
115 | - } |
|
116 | - } |
|
110 | + foreach ($this->active_plugins as $plugin) { |
|
111 | + if ( ! is_plugin_active($plugin) ) { |
|
112 | + $addon_active = false; |
|
113 | + break; |
|
114 | + } |
|
115 | + } |
|
116 | + } |
|
117 | 117 | |
118 | - } |
|
118 | + } |
|
119 | 119 | |
120 | - if ($this->when_to_run == "always") { |
|
121 | - $addon_active = true; |
|
122 | - } |
|
120 | + if ($this->when_to_run == "always") { |
|
121 | + $addon_active = true; |
|
122 | + } |
|
123 | 123 | |
124 | - return apply_filters('rapid_is_active_add_on', $addon_active, $post_type, $this->slug); |
|
125 | - } |
|
124 | + return apply_filters('rapid_is_active_add_on', $addon_active, $post_type, $this->slug); |
|
125 | + } |
|
126 | 126 | |
127 | - /** |
|
128 | - * |
|
129 | - * Add-On Initialization |
|
130 | - * |
|
131 | - * @param array $conditions - list of supported themes and post types |
|
132 | - * |
|
133 | - */ |
|
134 | - function run($conditions = array()) { |
|
135 | - |
|
136 | - if (empty($conditions)) { |
|
137 | - $this->when_to_run = "always"; |
|
138 | - } |
|
127 | + /** |
|
128 | + * |
|
129 | + * Add-On Initialization |
|
130 | + * |
|
131 | + * @param array $conditions - list of supported themes and post types |
|
132 | + * |
|
133 | + */ |
|
134 | + function run($conditions = array()) { |
|
135 | + |
|
136 | + if (empty($conditions)) { |
|
137 | + $this->when_to_run = "always"; |
|
138 | + } |
|
139 | 139 | |
140 | - @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
141 | - @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
142 | - @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
140 | + @$this->active_post_types = ( ! empty($conditions['post_types'])) ? $conditions['post_types'] : array(); |
|
141 | + @$this->active_themes = ( ! empty($conditions['themes'])) ? $conditions['themes'] : array(); |
|
142 | + @$this->active_plugins = ( ! empty($conditions['plugins'])) ? $conditions['plugins'] : array(); |
|
143 | 143 | |
144 | - add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
|
145 | - add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
|
146 | - add_filter('wp_all_import_addon_import', array($this, 'wpai_api_import')); |
|
147 | - add_filter('wp_all_import_addon_saved_post', array($this, 'wpai_api_post_saved')); |
|
148 | - add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
|
144 | + add_filter('pmxi_addons', array($this, 'wpai_api_register')); |
|
145 | + add_filter('wp_all_import_addon_parse', array($this, 'wpai_api_parse')); |
|
146 | + add_filter('wp_all_import_addon_import', array($this, 'wpai_api_import')); |
|
147 | + add_filter('wp_all_import_addon_saved_post', array($this, 'wpai_api_post_saved')); |
|
148 | + add_filter('pmxi_options_options', array($this, 'wpai_api_options')); |
|
149 | 149 | add_filter('wp_all_import_image_sections', array($this, 'additional_sections'), 10, 1); |
150 | 150 | add_filter('pmxi_custom_types', array($this, 'filter_post_types'), 10, 2); |
151 | 151 | add_filter('pmxi_post_list_order', array($this,'sort_post_types'), 10, 1); |
152 | 152 | add_filter('wp_all_import_post_type_image', array($this, 'post_type_image'), 10, 1 ); |
153 | - add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
153 | + add_action('pmxi_extend_options_featured', array($this, 'wpai_api_metabox'), 10, 2); |
|
154 | 154 | add_action('admin_init', array($this, 'admin_notice_ignore')); |
155 | 155 | } |
156 | 156 | |
157 | - function parse($data) { |
|
157 | + function parse($data) { |
|
158 | 158 | |
159 | - if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
159 | + if ( ! $this->is_active_addon($data['import']->options['custom_type'])) return false; |
|
160 | 160 | |
161 | - $parsedData = $this->helper_parse($data, $this->options_array()); |
|
162 | - return $parsedData; |
|
161 | + $parsedData = $this->helper_parse($data, $this->options_array()); |
|
162 | + return $parsedData; |
|
163 | 163 | |
164 | - } |
|
164 | + } |
|
165 | 165 | |
166 | 166 | |
167 | - function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
|
167 | + function add_field($field_slug, $field_name, $field_type, $enum_values = null, $tooltip = "", $is_html = true, $default_text = '') { |
|
168 | 168 | |
169 | - $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
169 | + $field = array("name" => $field_name, "type" => $field_type, "enum_values" => $enum_values, "tooltip" => $tooltip, "is_sub_field" => false, "is_main_field" => false, "slug" => $field_slug, "is_html" => $is_html, 'default_text' => $default_text); |
|
170 | 170 | |
171 | - $this->fields[$field_slug] = $field; |
|
171 | + $this->fields[$field_slug] = $field; |
|
172 | 172 | |
173 | - if ( ! empty($enum_values) ){ |
|
174 | - foreach ($enum_values as $key => $value) { |
|
175 | - if (is_array($value)) |
|
176 | - { |
|
177 | - if ($field['type'] == 'accordion') |
|
178 | - { |
|
179 | - $this->fields[$value['slug']]['is_sub_field'] = true; |
|
180 | - } |
|
181 | - else |
|
182 | - { |
|
183 | - foreach ($value as $n => $param) { |
|
184 | - if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
185 | - $this->fields[$param['slug']]['is_sub_field'] = true; |
|
186 | - } |
|
187 | - } |
|
188 | - } |
|
189 | - } |
|
190 | - } |
|
191 | - } |
|
173 | + if ( ! empty($enum_values) ){ |
|
174 | + foreach ($enum_values as $key => $value) { |
|
175 | + if (is_array($value)) |
|
176 | + { |
|
177 | + if ($field['type'] == 'accordion') |
|
178 | + { |
|
179 | + $this->fields[$value['slug']]['is_sub_field'] = true; |
|
180 | + } |
|
181 | + else |
|
182 | + { |
|
183 | + foreach ($value as $n => $param) { |
|
184 | + if (is_array($param) and ! empty($this->fields[$param['slug']])){ |
|
185 | + $this->fields[$param['slug']]['is_sub_field'] = true; |
|
186 | + } |
|
187 | + } |
|
188 | + } |
|
189 | + } |
|
190 | + } |
|
191 | + } |
|
192 | 192 | |
193 | - return $field; |
|
193 | + return $field; |
|
194 | 194 | |
195 | - } |
|
195 | + } |
|
196 | 196 | |
197 | - function add_acf_field($field){ |
|
198 | - $this->fields[$field->post_name] = array( |
|
199 | - 'type' => 'acf', |
|
200 | - 'field_obj' => $field |
|
201 | - ); |
|
202 | - } |
|
197 | + function add_acf_field($field){ |
|
198 | + $this->fields[$field->post_name] = array( |
|
199 | + 'type' => 'acf', |
|
200 | + 'field_obj' => $field |
|
201 | + ); |
|
202 | + } |
|
203 | 203 | |
204 | - private $acfGroups = array(); |
|
204 | + private $acfGroups = array(); |
|
205 | 205 | |
206 | - function use_acf_group($acf_group){ |
|
207 | - $this->add_text( |
|
208 | - '<div class="postbox acf_postbox default acf_signle_group rad4"> |
|
206 | + function use_acf_group($acf_group){ |
|
207 | + $this->add_text( |
|
208 | + '<div class="postbox acf_postbox default acf_signle_group rad4"> |
|
209 | 209 | <h3 class="hndle" style="margin-top:0;"><span>'.$acf_group['title'].'</span></h3> |
210 | 210 | <div class="inside">'); |
211 | - $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
|
212 | - if (!empty($acf_fields)){ |
|
213 | - foreach ($acf_fields as $field) { |
|
214 | - $this->add_acf_field($field); |
|
215 | - } |
|
216 | - } |
|
217 | - $this->add_text('</div></div>'); |
|
218 | - $this->acfGroups[] = $acf_group['ID']; |
|
219 | - add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
|
220 | - } |
|
221 | - |
|
222 | - function acf_is_show_group($is_show, $acf_group){ |
|
223 | - return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
|
224 | - } |
|
225 | - |
|
226 | - /** |
|
227 | - * |
|
228 | - * Add an option to WP All Import options list |
|
229 | - * |
|
230 | - * @param string $slug - option name |
|
231 | - * @param string $default_value - default option value |
|
232 | - * |
|
233 | - */ |
|
234 | - function add_option($slug, $default_value = ''){ |
|
235 | - $this->options[$slug] = $default_value; |
|
236 | - } |
|
211 | + $acf_fields = get_posts(array('posts_per_page' => -1, 'post_type' => 'acf-field', 'post_parent' => $acf_group['ID'], 'post_status' => 'publish', 'orderby' => 'menu_order', 'order' => 'ASC')); |
|
212 | + if (!empty($acf_fields)){ |
|
213 | + foreach ($acf_fields as $field) { |
|
214 | + $this->add_acf_field($field); |
|
215 | + } |
|
216 | + } |
|
217 | + $this->add_text('</div></div>'); |
|
218 | + $this->acfGroups[] = $acf_group['ID']; |
|
219 | + add_filter('wp_all_import_acf_is_show_group', array($this, 'acf_is_show_group'), 10, 2); |
|
220 | + } |
|
237 | 221 | |
238 | - function options_array() { |
|
222 | + function acf_is_show_group($is_show, $acf_group){ |
|
223 | + return (in_array($acf_group['ID'], $this->acfGroups)) ? false : true; |
|
224 | + } |
|
225 | + |
|
226 | + /** |
|
227 | + * |
|
228 | + * Add an option to WP All Import options list |
|
229 | + * |
|
230 | + * @param string $slug - option name |
|
231 | + * @param string $default_value - default option value |
|
232 | + * |
|
233 | + */ |
|
234 | + function add_option($slug, $default_value = ''){ |
|
235 | + $this->options[$slug] = $default_value; |
|
236 | + } |
|
237 | + |
|
238 | + function options_array() { |
|
239 | 239 | |
240 | 240 | $options_list = array(); |
241 | 241 | |
@@ -255,528 +255,528 @@ discard block |
||
255 | 255 | |
256 | 256 | } |
257 | 257 | |
258 | - if ( ! empty($this->options) ){ |
|
259 | - foreach ($this->options as $slug => $value) { |
|
260 | - $options_arr[$slug] = $value; |
|
261 | - } |
|
262 | - } |
|
258 | + if ( ! empty($this->options) ){ |
|
259 | + foreach ($this->options as $slug => $value) { |
|
260 | + $options_arr[$slug] = $value; |
|
261 | + } |
|
262 | + } |
|
263 | 263 | |
264 | - $options_arr[$this->slug] = $options_list; |
|
265 | - $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
264 | + $options_arr[$this->slug] = $options_list; |
|
265 | + $options_arr['rapid_addon'] = plugin_basename( __FILE__ ); |
|
266 | 266 | |
267 | - return $options_arr; |
|
267 | + return $options_arr; |
|
268 | 268 | |
269 | - } |
|
269 | + } |
|
270 | 270 | |
271 | - function wpai_api_options($all_options) { |
|
271 | + function wpai_api_options($all_options) { |
|
272 | 272 | |
273 | - $all_options = $all_options + $this->options_array(); |
|
273 | + $all_options = $all_options + $this->options_array(); |
|
274 | 274 | |
275 | - return $all_options; |
|
275 | + return $all_options; |
|
276 | 276 | |
277 | - } |
|
277 | + } |
|
278 | 278 | |
279 | 279 | |
280 | - function wpai_api_register($addons) { |
|
280 | + function wpai_api_register($addons) { |
|
281 | 281 | |
282 | - if (empty($addons[$this->slug])) { |
|
283 | - $addons[$this->slug] = 1; |
|
284 | - } |
|
282 | + if (empty($addons[$this->slug])) { |
|
283 | + $addons[$this->slug] = 1; |
|
284 | + } |
|
285 | 285 | |
286 | - return $addons; |
|
286 | + return $addons; |
|
287 | 287 | |
288 | - } |
|
288 | + } |
|
289 | 289 | |
290 | 290 | |
291 | - function wpai_api_parse($functions) { |
|
291 | + function wpai_api_parse($functions) { |
|
292 | 292 | |
293 | - $functions[$this->slug] = array($this, 'parse'); |
|
294 | - return $functions; |
|
293 | + $functions[$this->slug] = array($this, 'parse'); |
|
294 | + return $functions; |
|
295 | 295 | |
296 | - } |
|
296 | + } |
|
297 | 297 | |
298 | - function wpai_api_post_saved($functions){ |
|
299 | - $functions[$this->slug] = array($this, 'post_saved'); |
|
300 | - return $functions; |
|
301 | - } |
|
298 | + function wpai_api_post_saved($functions){ |
|
299 | + $functions[$this->slug] = array($this, 'post_saved'); |
|
300 | + return $functions; |
|
301 | + } |
|
302 | 302 | |
303 | 303 | |
304 | - function wpai_api_import($functions) { |
|
304 | + function wpai_api_import($functions) { |
|
305 | 305 | |
306 | - $functions[$this->slug] = array($this, 'import'); |
|
307 | - return $functions; |
|
306 | + $functions[$this->slug] = array($this, 'import'); |
|
307 | + return $functions; |
|
308 | 308 | |
309 | - } |
|
309 | + } |
|
310 | 310 | |
311 | - function post_saved( $importData ){ |
|
311 | + function post_saved( $importData ){ |
|
312 | 312 | |
313 | - if (is_callable($this->post_saved_function)) |
|
314 | - call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
313 | + if (is_callable($this->post_saved_function)) |
|
314 | + call_user_func($this->post_saved_function, $importData['pid'], $importData['import'], $importData['logger']); |
|
315 | 315 | |
316 | - } |
|
316 | + } |
|
317 | 317 | |
318 | - function import($importData, $parsedData) { |
|
318 | + function import($importData, $parsedData) { |
|
319 | 319 | |
320 | - if (!$this->is_active_addon($importData['post_type'])) { |
|
321 | - return; |
|
322 | - } |
|
320 | + if (!$this->is_active_addon($importData['post_type'])) { |
|
321 | + return; |
|
322 | + } |
|
323 | 323 | |
324 | - $import_options = $importData['import']['options'][$this->slug]; |
|
324 | + $import_options = $importData['import']['options'][$this->slug]; |
|
325 | 325 | |
326 | - // echo "<pre>"; |
|
327 | - // print_r($import_options); |
|
328 | - // echo "</pre>"; |
|
326 | + // echo "<pre>"; |
|
327 | + // print_r($import_options); |
|
328 | + // echo "</pre>"; |
|
329 | 329 | |
330 | - if ( ! empty($parsedData) ) { |
|
330 | + if ( ! empty($parsedData) ) { |
|
331 | 331 | |
332 | - $this->logger = $importData['logger']; |
|
332 | + $this->logger = $importData['logger']; |
|
333 | 333 | |
334 | - $post_id = $importData['pid']; |
|
335 | - $index = $importData['i']; |
|
336 | - $data = array(); |
|
337 | - if (!empty($this->fields)){ |
|
338 | - foreach ($this->fields as $field_slug => $field_params) { |
|
339 | - if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
340 | - switch ($field_params['type']) { |
|
334 | + $post_id = $importData['pid']; |
|
335 | + $index = $importData['i']; |
|
336 | + $data = array(); |
|
337 | + if (!empty($this->fields)){ |
|
338 | + foreach ($this->fields as $field_slug => $field_params) { |
|
339 | + if (in_array($field_params['type'], array('title', 'plain_text'))) continue; |
|
340 | + switch ($field_params['type']) { |
|
341 | 341 | |
342 | - case 'image': |
|
342 | + case 'image': |
|
343 | 343 | |
344 | - // import the specified image, then set the value of the field to the image ID in the media library |
|
344 | + // import the specified image, then set the value of the field to the image ID in the media library |
|
345 | 345 | |
346 | - $image_url_or_path = $parsedData[$field_slug][$index]; |
|
346 | + $image_url_or_path = $parsedData[$field_slug][$index]; |
|
347 | 347 | |
348 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
349 | - continue 2; |
|
350 | - } |
|
348 | + if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
349 | + continue 2; |
|
350 | + } |
|
351 | 351 | |
352 | - $download = $import_options['download_image'][$field_slug]; |
|
352 | + $download = $import_options['download_image'][$field_slug]; |
|
353 | 353 | |
354 | - $uploaded_image = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "images", true, $importData['articleData']); |
|
354 | + $uploaded_image = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "images", true, $importData['articleData']); |
|
355 | 355 | |
356 | - $data[$field_slug] = array( |
|
357 | - "attachment_id" => $uploaded_image, |
|
358 | - "image_url_or_path" => $image_url_or_path, |
|
359 | - "download" => $download |
|
360 | - ); |
|
356 | + $data[$field_slug] = array( |
|
357 | + "attachment_id" => $uploaded_image, |
|
358 | + "image_url_or_path" => $image_url_or_path, |
|
359 | + "download" => $download |
|
360 | + ); |
|
361 | 361 | |
362 | - break; |
|
362 | + break; |
|
363 | 363 | |
364 | - case 'file': |
|
364 | + case 'file': |
|
365 | 365 | |
366 | - $image_url_or_path = $parsedData[$field_slug][$index]; |
|
366 | + $image_url_or_path = $parsedData[$field_slug][$index]; |
|
367 | 367 | |
368 | - if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
369 | - continue 2; |
|
370 | - } |
|
368 | + if ( ! array_key_exists( $field_slug, $import_options['download_image'] ) ) { |
|
369 | + continue 2; |
|
370 | + } |
|
371 | 371 | |
372 | - $download = $import_options['download_image'][$field_slug]; |
|
372 | + $download = $import_options['download_image'][$field_slug]; |
|
373 | 373 | |
374 | - $uploaded_file = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "files", true, $importData['articleData']); |
|
374 | + $uploaded_file = PMXI_API::upload_image($post_id, $image_url_or_path, $download, $importData['logger'], true, "", "files", true, $importData['articleData']); |
|
375 | 375 | |
376 | - $data[$field_slug] = array( |
|
377 | - "attachment_id" => $uploaded_file, |
|
378 | - "image_url_or_path" => $image_url_or_path, |
|
379 | - "download" => $download |
|
380 | - ); |
|
376 | + $data[$field_slug] = array( |
|
377 | + "attachment_id" => $uploaded_file, |
|
378 | + "image_url_or_path" => $image_url_or_path, |
|
379 | + "download" => $download |
|
380 | + ); |
|
381 | 381 | |
382 | - break; |
|
382 | + break; |
|
383 | 383 | |
384 | - default: |
|
385 | - // set the field data to the value of the field after it's been parsed |
|
386 | - $data[$field_slug] = $parsedData[$field_slug][$index]; |
|
387 | - break; |
|
388 | - } |
|
384 | + default: |
|
385 | + // set the field data to the value of the field after it's been parsed |
|
386 | + $data[$field_slug] = $parsedData[$field_slug][$index]; |
|
387 | + break; |
|
388 | + } |
|
389 | + |
|
390 | + // apply mapping rules if they exist |
|
391 | + if (!empty($import_options['mapping'][$field_slug])) { |
|
392 | + $mapping_rules = json_decode($import_options['mapping'][$field_slug], true); |
|
393 | + |
|
394 | + if (!empty($mapping_rules) and is_array($mapping_rules)) { |
|
395 | + foreach ($mapping_rules as $rule_number => $map_to) { |
|
396 | + if (isset($map_to[trim($data[$field_slug])])){ |
|
397 | + $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
|
398 | + break; |
|
399 | + } |
|
400 | + } |
|
401 | + } |
|
402 | + } |
|
403 | + // -------------------- |
|
404 | + } |
|
405 | + } |
|
389 | 406 | |
390 | - // apply mapping rules if they exist |
|
391 | - if (!empty($import_options['mapping'][$field_slug])) { |
|
392 | - $mapping_rules = json_decode($import_options['mapping'][$field_slug], true); |
|
407 | + call_user_func($this->import_function, $post_id, $data, $importData['import'], $importData['articleData'], $importData['logger']); |
|
408 | + } |
|
393 | 409 | |
394 | - if (!empty($mapping_rules) and is_array($mapping_rules)) { |
|
395 | - foreach ($mapping_rules as $rule_number => $map_to) { |
|
396 | - if (isset($map_to[trim($data[$field_slug])])){ |
|
397 | - $data[$field_slug] = trim($map_to[trim($data[$field_slug])]); |
|
398 | - break; |
|
399 | - } |
|
400 | - } |
|
401 | - } |
|
402 | - } |
|
403 | - // -------------------- |
|
404 | - } |
|
405 | - } |
|
410 | + } |
|
406 | 411 | |
407 | - call_user_func($this->import_function, $post_id, $data, $importData['import'], $importData['articleData'], $importData['logger']); |
|
408 | - } |
|
409 | 412 | |
410 | - } |
|
413 | + function wpai_api_metabox($post_type, $current_values) { |
|
411 | 414 | |
415 | + if (!$this->is_active_addon($post_type)) { |
|
416 | + return; |
|
417 | + } |
|
412 | 418 | |
413 | - function wpai_api_metabox($post_type, $current_values) { |
|
419 | + echo $this->helper_metabox_top($this->name); |
|
414 | 420 | |
415 | - if (!$this->is_active_addon($post_type)) { |
|
416 | - return; |
|
417 | - } |
|
421 | + $visible_fields = 0; |
|
418 | 422 | |
419 | - echo $this->helper_metabox_top($this->name); |
|
423 | + foreach ($this->fields as $field_slug => $field_params) { |
|
424 | + if ($field_params['is_sub_field']) continue; |
|
425 | + $visible_fields++; |
|
426 | + } |
|
420 | 427 | |
421 | - $visible_fields = 0; |
|
428 | + $counter = 0; |
|
422 | 429 | |
423 | - foreach ($this->fields as $field_slug => $field_params) { |
|
424 | - if ($field_params['is_sub_field']) continue; |
|
425 | - $visible_fields++; |
|
426 | - } |
|
430 | + foreach ($this->fields as $field_slug => $field_params) { |
|
427 | 431 | |
428 | - $counter = 0; |
|
432 | + // do not render sub fields |
|
433 | + if ($field_params['is_sub_field']) continue; |
|
429 | 434 | |
430 | - foreach ($this->fields as $field_slug => $field_params) { |
|
435 | + $counter++; |
|
431 | 436 | |
432 | - // do not render sub fields |
|
433 | - if ($field_params['is_sub_field']) continue; |
|
437 | + $this->render_field($field_params, $field_slug, $current_values, $visible_fields == $counter); |
|
434 | 438 | |
435 | - $counter++; |
|
439 | + //if ( $field_params['type'] != 'accordion' ) echo "<br />"; |
|
436 | 440 | |
437 | - $this->render_field($field_params, $field_slug, $current_values, $visible_fields == $counter); |
|
441 | + } |
|
438 | 442 | |
439 | - //if ( $field_params['type'] != 'accordion' ) echo "<br />"; |
|
443 | + echo $this->helper_metabox_bottom(); |
|
444 | + |
|
445 | + if ( ! empty($this->image_sections) ){ |
|
446 | + $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
|
447 | + foreach ($this->image_sections as $k => $section) { |
|
448 | + $section_options = array(); |
|
449 | + foreach ($this->image_options as $slug => $value) { |
|
450 | + $section_options[$section['slug'] . $slug] = $value; |
|
451 | + } |
|
452 | + if ( ! $is_images_section_enabled and ! $k ){ |
|
453 | + $section_options[$section['slug'] . 'is_featured'] = 1; |
|
454 | + } |
|
455 | + PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
|
456 | + } |
|
457 | + } |
|
440 | 458 | |
441 | - } |
|
459 | + } |
|
442 | 460 | |
443 | - echo $this->helper_metabox_bottom(); |
|
461 | + function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
444 | 462 | |
445 | - if ( ! empty($this->image_sections) ){ |
|
446 | - $is_images_section_enabled = apply_filters('wp_all_import_is_images_section_enabled', true, $post_type); |
|
447 | - foreach ($this->image_sections as $k => $section) { |
|
448 | - $section_options = array(); |
|
449 | - foreach ($this->image_options as $slug => $value) { |
|
450 | - $section_options[$section['slug'] . $slug] = $value; |
|
451 | - } |
|
452 | - if ( ! $is_images_section_enabled and ! $k ){ |
|
453 | - $section_options[$section['slug'] . 'is_featured'] = 1; |
|
454 | - } |
|
455 | - PMXI_API::add_additional_images_section($section['title'], $section['slug'], $current_values, '', true, false, $section['type']); |
|
456 | - } |
|
457 | - } |
|
458 | - |
|
459 | - } |
|
460 | - |
|
461 | - function render_field($field_params, $field_slug, $current_values, $in_the_bottom = false){ |
|
462 | - |
|
463 | - if (!isset($current_values[$this->slug][$field_slug])) { |
|
464 | - $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
|
465 | - } |
|
466 | - |
|
467 | - if ($field_params['type'] == 'text') { |
|
468 | - |
|
469 | - PMXI_API::add_field( |
|
470 | - 'simple', |
|
471 | - $field_params['name'], |
|
472 | - array( |
|
473 | - 'tooltip' => $field_params['tooltip'], |
|
474 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
475 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
476 | - ) |
|
477 | - ); |
|
478 | - |
|
479 | - } else if ($field_params['type'] == 'textarea') { |
|
480 | - |
|
481 | - PMXI_API::add_field( |
|
482 | - 'textarea', |
|
483 | - $field_params['name'], |
|
484 | - array( |
|
485 | - 'tooltip' => $field_params['tooltip'], |
|
486 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
487 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
488 | - ) |
|
489 | - ); |
|
490 | - |
|
491 | - } else if ($field_params['type'] == 'wp_editor') { |
|
492 | - |
|
493 | - PMXI_API::add_field( |
|
494 | - 'wp_editor', |
|
495 | - $field_params['name'], |
|
496 | - array( |
|
497 | - 'tooltip' => $field_params['tooltip'], |
|
498 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
499 | - 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
500 | - ) |
|
501 | - ); |
|
502 | - |
|
503 | - } else if ($field_params['type'] == 'image' or $field_params['type'] == 'file') { |
|
463 | + if (!isset($current_values[$this->slug][$field_slug])) { |
|
464 | + $current_values[$this->slug][$field_slug] = isset($field_params['default_text']) ? $field_params['default_text'] : ''; |
|
465 | + } |
|
466 | + |
|
467 | + if ($field_params['type'] == 'text') { |
|
468 | + |
|
469 | + PMXI_API::add_field( |
|
470 | + 'simple', |
|
471 | + $field_params['name'], |
|
472 | + array( |
|
473 | + 'tooltip' => $field_params['tooltip'], |
|
474 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
475 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
476 | + ) |
|
477 | + ); |
|
478 | + |
|
479 | + } else if ($field_params['type'] == 'textarea') { |
|
480 | + |
|
481 | + PMXI_API::add_field( |
|
482 | + 'textarea', |
|
483 | + $field_params['name'], |
|
484 | + array( |
|
485 | + 'tooltip' => $field_params['tooltip'], |
|
486 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
487 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
488 | + ) |
|
489 | + ); |
|
490 | + |
|
491 | + } else if ($field_params['type'] == 'wp_editor') { |
|
492 | + |
|
493 | + PMXI_API::add_field( |
|
494 | + 'wp_editor', |
|
495 | + $field_params['name'], |
|
496 | + array( |
|
497 | + 'tooltip' => $field_params['tooltip'], |
|
498 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
499 | + 'field_value' => ( $current_values[$this->slug][$field_slug] == '' && $this->isWizard ) ? $field_params['default_text'] : $current_values[$this->slug][$field_slug] |
|
500 | + ) |
|
501 | + ); |
|
502 | + |
|
503 | + } else if ($field_params['type'] == 'image' or $field_params['type'] == 'file') { |
|
504 | 504 | |
505 | - if (!isset($current_values[$this->slug]['download_image'][$field_slug])) { $current_values[$this->slug]['download_image'][$field_slug] = ''; } |
|
506 | - |
|
507 | - PMXI_API::add_field( |
|
508 | - $field_params['type'], |
|
509 | - $field_params['name'], |
|
510 | - array( |
|
511 | - 'tooltip' => $field_params['tooltip'], |
|
512 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
513 | - 'field_value' => $current_values[$this->slug][$field_slug], |
|
514 | - 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
|
515 | - 'field_key' => $field_slug, |
|
516 | - 'addon_prefix' => $this->slug |
|
517 | - |
|
518 | - ) |
|
519 | - ); |
|
520 | - |
|
521 | - } else if ($field_params['type'] == 'radio') { |
|
505 | + if (!isset($current_values[$this->slug]['download_image'][$field_slug])) { $current_values[$this->slug]['download_image'][$field_slug] = ''; } |
|
506 | + |
|
507 | + PMXI_API::add_field( |
|
508 | + $field_params['type'], |
|
509 | + $field_params['name'], |
|
510 | + array( |
|
511 | + 'tooltip' => $field_params['tooltip'], |
|
512 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
513 | + 'field_value' => $current_values[$this->slug][$field_slug], |
|
514 | + 'download_image' => $current_values[$this->slug]['download_image'][$field_slug], |
|
515 | + 'field_key' => $field_slug, |
|
516 | + 'addon_prefix' => $this->slug |
|
517 | + |
|
518 | + ) |
|
519 | + ); |
|
520 | + |
|
521 | + } else if ($field_params['type'] == 'radio') { |
|
522 | 522 | |
523 | - if (!isset($current_values[$this->slug]['mapping'][$field_slug])) { $current_values[$this->slug]['mapping'][$field_slug] = array(); } |
|
524 | - if (!isset($current_values[$this->slug]['xpaths'][$field_slug])) { $current_values[$this->slug]['xpaths'][$field_slug] = ''; } |
|
525 | - |
|
526 | - PMXI_API::add_field( |
|
527 | - 'enum', |
|
528 | - $field_params['name'], |
|
529 | - array( |
|
530 | - 'tooltip' => $field_params['tooltip'], |
|
531 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
532 | - 'field_value' => $current_values[$this->slug][$field_slug], |
|
533 | - 'enum_values' => $field_params['enum_values'], |
|
534 | - 'mapping' => true, |
|
535 | - 'field_key' => $field_slug, |
|
536 | - 'mapping_rules' => $current_values[$this->slug]['mapping'][$field_slug], |
|
537 | - 'xpath' => $current_values[$this->slug]['xpaths'][$field_slug], |
|
538 | - 'addon_prefix' => $this->slug, |
|
539 | - 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values) |
|
540 | - ) |
|
541 | - ); |
|
542 | - |
|
543 | - } else if($field_params['type'] == 'accordion') { |
|
544 | - |
|
545 | - PMXI_API::add_field( |
|
546 | - 'accordion', |
|
547 | - $field_params['name'], |
|
548 | - array( |
|
549 | - 'tooltip' => $field_params['tooltip'], |
|
550 | - 'field_name' => $this->slug."[".$field_slug."]", |
|
551 | - 'field_key' => $field_slug, |
|
552 | - 'addon_prefix' => $this->slug, |
|
553 | - 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
|
554 | - 'in_the_bottom' => $in_the_bottom |
|
555 | - ) |
|
556 | - ); |
|
557 | - |
|
558 | - } else if($field_params['type'] == 'acf') { |
|
559 | - $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
|
560 | - $fieldData['ID'] = $field_params['field_obj']->ID; |
|
561 | - $fieldData['id'] = $field_params['field_obj']->ID; |
|
562 | - $fieldData['label'] = $field_params['field_obj']->post_title; |
|
563 | - $fieldData['key'] = $field_params['field_obj']->post_name; |
|
564 | - if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
565 | - if (function_exists('pmai_render_field')) { |
|
566 | - echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
567 | - } |
|
568 | - } else if($field_params['type'] == 'title'){ |
|
569 | - ?> |
|
523 | + if (!isset($current_values[$this->slug]['mapping'][$field_slug])) { $current_values[$this->slug]['mapping'][$field_slug] = array(); } |
|
524 | + if (!isset($current_values[$this->slug]['xpaths'][$field_slug])) { $current_values[$this->slug]['xpaths'][$field_slug] = ''; } |
|
525 | + |
|
526 | + PMXI_API::add_field( |
|
527 | + 'enum', |
|
528 | + $field_params['name'], |
|
529 | + array( |
|
530 | + 'tooltip' => $field_params['tooltip'], |
|
531 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
532 | + 'field_value' => $current_values[$this->slug][$field_slug], |
|
533 | + 'enum_values' => $field_params['enum_values'], |
|
534 | + 'mapping' => true, |
|
535 | + 'field_key' => $field_slug, |
|
536 | + 'mapping_rules' => $current_values[$this->slug]['mapping'][$field_slug], |
|
537 | + 'xpath' => $current_values[$this->slug]['xpaths'][$field_slug], |
|
538 | + 'addon_prefix' => $this->slug, |
|
539 | + 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values) |
|
540 | + ) |
|
541 | + ); |
|
542 | + |
|
543 | + } else if($field_params['type'] == 'accordion') { |
|
544 | + |
|
545 | + PMXI_API::add_field( |
|
546 | + 'accordion', |
|
547 | + $field_params['name'], |
|
548 | + array( |
|
549 | + 'tooltip' => $field_params['tooltip'], |
|
550 | + 'field_name' => $this->slug."[".$field_slug."]", |
|
551 | + 'field_key' => $field_slug, |
|
552 | + 'addon_prefix' => $this->slug, |
|
553 | + 'sub_fields' => $this->get_sub_fields($field_params, $field_slug, $current_values), |
|
554 | + 'in_the_bottom' => $in_the_bottom |
|
555 | + ) |
|
556 | + ); |
|
557 | + |
|
558 | + } else if($field_params['type'] == 'acf') { |
|
559 | + $fieldData = (!empty($field_params['field_obj']->post_content)) ? unserialize($field_params['field_obj']->post_content) : array(); |
|
560 | + $fieldData['ID'] = $field_params['field_obj']->ID; |
|
561 | + $fieldData['id'] = $field_params['field_obj']->ID; |
|
562 | + $fieldData['label'] = $field_params['field_obj']->post_title; |
|
563 | + $fieldData['key'] = $field_params['field_obj']->post_name; |
|
564 | + if (empty($fieldData['name'])) $fieldData['name'] = $field_params['field_obj']->post_excerpt; |
|
565 | + if (function_exists('pmai_render_field')) { |
|
566 | + echo pmai_render_field($fieldData, ( ! empty($current_values) ) ? $current_values : array() ); |
|
567 | + } |
|
568 | + } else if($field_params['type'] == 'title'){ |
|
569 | + ?> |
|
570 | 570 | <h4 class="wpallimport-add-on-options-title"><?php _e($field_params['name'], 'wp_all_import_plugin'); ?><?php if ( ! empty($field_params['tooltip'])): ?><a href="#help" class="wpallimport-help" title="<?php echo $field_params['tooltip']; ?>" style="position:relative; top: -1px;">?</a><?php endif; ?></h4> |
571 | 571 | <?php |
572 | 572 | |
573 | - } else if($field_params['type'] == 'plain_text'){ |
|
574 | - if ($field_params['is_html']): |
|
575 | - echo $field_params['name']; |
|
576 | - else: |
|
577 | - ?> |
|
573 | + } else if($field_params['type'] == 'plain_text'){ |
|
574 | + if ($field_params['is_html']): |
|
575 | + echo $field_params['name']; |
|
576 | + else: |
|
577 | + ?> |
|
578 | 578 | <p style="margin: 0 0 12px 0;"><?php echo $field_params['name'];?></p> |
579 | 579 | <?php |
580 | - endif; |
|
581 | - } |
|
580 | + endif; |
|
581 | + } |
|
582 | 582 | |
583 | 583 | |
584 | - } |
|
585 | - /** |
|
586 | - * |
|
587 | - * Helper function for nested radio fields |
|
588 | - * |
|
589 | - */ |
|
590 | - function get_sub_fields($field_params, $field_slug, $current_values){ |
|
591 | - $sub_fields = array(); |
|
592 | - if ( ! empty($field_params['enum_values']) ){ |
|
593 | - foreach ($field_params['enum_values'] as $key => $value) { |
|
594 | - $sub_fields[$key] = array(); |
|
595 | - if (is_array($value)){ |
|
596 | - if ($field_params['type'] == 'accordion'){ |
|
597 | - $sub_fields[$key][] = $this->convert_field($value, $current_values); |
|
598 | - } |
|
599 | - else |
|
600 | - { |
|
601 | - foreach ($value as $k => $sub_field) { |
|
602 | - if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
603 | - { |
|
604 | - $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
|
605 | - } |
|
606 | - } |
|
607 | - } |
|
608 | - } |
|
609 | - } |
|
610 | - } |
|
611 | - return $sub_fields; |
|
612 | - } |
|
613 | - |
|
614 | - function convert_field($sub_field, $current_values){ |
|
615 | - $field = array(); |
|
616 | - if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
|
617 | - $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
|
618 | - } |
|
619 | - switch ($this->fields[$sub_field['slug']]['type']) { |
|
620 | - case 'text': |
|
621 | - $field = array( |
|
622 | - 'type' => 'simple', |
|
623 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
624 | - 'params' => array( |
|
625 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
626 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
627 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
628 | - 'is_main_field' => $sub_field['is_main_field'] |
|
629 | - ) |
|
630 | - ); |
|
631 | - break; |
|
632 | - case 'textarea': |
|
633 | - $field = array( |
|
634 | - 'type' => 'textarea', |
|
635 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
636 | - 'params' => array( |
|
637 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
638 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
639 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
640 | - 'is_main_field' => $sub_field['is_main_field'] |
|
641 | - ) |
|
642 | - ); |
|
643 | - break; |
|
644 | - case 'wp_editor': |
|
645 | - $field = array( |
|
646 | - 'type' => 'wp_editor', |
|
647 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
648 | - 'params' => array( |
|
649 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
650 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
651 | - 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
652 | - 'is_main_field' => $sub_field['is_main_field'] |
|
653 | - ) |
|
654 | - ); |
|
655 | - break; |
|
656 | - case 'image': |
|
657 | - $field = array( |
|
658 | - 'type' => 'image', |
|
659 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
660 | - 'params' => array( |
|
661 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
662 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
663 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
664 | - 'download_image' => null, |
|
665 | - 'field_key' => $sub_field['slug'], |
|
666 | - 'addon_prefix' => $this->slug, |
|
667 | - 'is_main_field' => $sub_field['is_main_field'] |
|
668 | - ) |
|
669 | - ); |
|
670 | - |
|
671 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
672 | - $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
673 | - } |
|
584 | + } |
|
585 | + /** |
|
586 | + * |
|
587 | + * Helper function for nested radio fields |
|
588 | + * |
|
589 | + */ |
|
590 | + function get_sub_fields($field_params, $field_slug, $current_values){ |
|
591 | + $sub_fields = array(); |
|
592 | + if ( ! empty($field_params['enum_values']) ){ |
|
593 | + foreach ($field_params['enum_values'] as $key => $value) { |
|
594 | + $sub_fields[$key] = array(); |
|
595 | + if (is_array($value)){ |
|
596 | + if ($field_params['type'] == 'accordion'){ |
|
597 | + $sub_fields[$key][] = $this->convert_field($value, $current_values); |
|
598 | + } |
|
599 | + else |
|
600 | + { |
|
601 | + foreach ($value as $k => $sub_field) { |
|
602 | + if (is_array($sub_field) and ! empty($this->fields[$sub_field['slug']])) |
|
603 | + { |
|
604 | + $sub_fields[$key][] = $this->convert_field($sub_field, $current_values); |
|
605 | + } |
|
606 | + } |
|
607 | + } |
|
608 | + } |
|
609 | + } |
|
610 | + } |
|
611 | + return $sub_fields; |
|
612 | + } |
|
613 | + |
|
614 | + function convert_field($sub_field, $current_values){ |
|
615 | + $field = array(); |
|
616 | + if (!isset($current_values[$this->slug][$sub_field['slug']])) { |
|
617 | + $current_values[$this->slug][$sub_field['slug']] = isset($sub_field['default_text']) ? $sub_field['default_text'] : ''; |
|
618 | + } |
|
619 | + switch ($this->fields[$sub_field['slug']]['type']) { |
|
620 | + case 'text': |
|
621 | + $field = array( |
|
622 | + 'type' => 'simple', |
|
623 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
624 | + 'params' => array( |
|
625 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
626 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
627 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
628 | + 'is_main_field' => $sub_field['is_main_field'] |
|
629 | + ) |
|
630 | + ); |
|
674 | 631 | break; |
675 | - case 'file': |
|
676 | - $field = array( |
|
677 | - 'type' => 'file', |
|
678 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
679 | - 'params' => array( |
|
680 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
681 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
682 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
683 | - 'download_image' => null, |
|
684 | - 'field_key' => $sub_field['slug'], |
|
685 | - 'addon_prefix' => $this->slug, |
|
686 | - 'is_main_field' => $sub_field['is_main_field'] |
|
687 | - ) |
|
688 | - ); |
|
689 | - |
|
690 | - if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
691 | - $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
692 | - } |
|
693 | - |
|
694 | - break; |
|
695 | - case 'radio': |
|
696 | - $field = array( |
|
697 | - 'type' => 'enum', |
|
698 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
699 | - 'params' => array( |
|
700 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
701 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
702 | - 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
703 | - 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
|
704 | - 'mapping' => true, |
|
705 | - 'field_key' => $sub_field['slug'], |
|
706 | - 'mapping_rules' => isset($current_values[$this->slug]['mapping'][$sub_field['slug']]) ? $current_values[$this->slug]['mapping'][$sub_field['slug']] : array(), |
|
707 | - 'xpath' => isset($current_values[$this->slug]['xpaths'][$sub_field['slug']]) ? $current_values[$this->slug]['xpaths'][$sub_field['slug']] : '', |
|
708 | - 'addon_prefix' => $this->slug, |
|
709 | - 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
710 | - 'is_main_field' => $sub_field['is_main_field'] |
|
711 | - ) |
|
712 | - ); |
|
713 | - break; |
|
714 | - case 'accordion': |
|
715 | - $field = array( |
|
716 | - 'type' => 'accordion', |
|
717 | - 'label' => $this->fields[$sub_field['slug']]['name'], |
|
718 | - 'params' => array( |
|
719 | - 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
720 | - 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
721 | - 'field_key' => $sub_field['slug'], |
|
722 | - 'addon_prefix' => $this->slug, |
|
723 | - 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
724 | - 'in_the_bottom' => false |
|
725 | - ) |
|
726 | - ); |
|
727 | - break; |
|
728 | - default: |
|
729 | - # code... |
|
730 | - break; |
|
731 | - } |
|
732 | - return $field; |
|
733 | - } |
|
734 | - |
|
735 | - /** |
|
736 | - * |
|
737 | - * Add accordion options |
|
738 | - * |
|
739 | - * |
|
740 | - */ |
|
741 | - function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
632 | + case 'textarea': |
|
633 | + $field = array( |
|
634 | + 'type' => 'textarea', |
|
635 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
636 | + 'params' => array( |
|
637 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
638 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
639 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
640 | + 'is_main_field' => $sub_field['is_main_field'] |
|
641 | + ) |
|
642 | + ); |
|
643 | + break; |
|
644 | + case 'wp_editor': |
|
645 | + $field = array( |
|
646 | + 'type' => 'wp_editor', |
|
647 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
648 | + 'params' => array( |
|
649 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
650 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
651 | + 'field_value' => ($current_values[$this->slug][$sub_field['slug']] == '' && $this->isWizard) ? $sub_field['default_text'] : $current_values[$this->slug][$sub_field['slug']], |
|
652 | + 'is_main_field' => $sub_field['is_main_field'] |
|
653 | + ) |
|
654 | + ); |
|
655 | + break; |
|
656 | + case 'image': |
|
657 | + $field = array( |
|
658 | + 'type' => 'image', |
|
659 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
660 | + 'params' => array( |
|
661 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
662 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
663 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
664 | + 'download_image' => null, |
|
665 | + 'field_key' => $sub_field['slug'], |
|
666 | + 'addon_prefix' => $this->slug, |
|
667 | + 'is_main_field' => $sub_field['is_main_field'] |
|
668 | + ) |
|
669 | + ); |
|
670 | + |
|
671 | + if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
672 | + $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
673 | + } |
|
674 | + break; |
|
675 | + case 'file': |
|
676 | + $field = array( |
|
677 | + 'type' => 'file', |
|
678 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
679 | + 'params' => array( |
|
680 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
681 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
682 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
683 | + 'download_image' => null, |
|
684 | + 'field_key' => $sub_field['slug'], |
|
685 | + 'addon_prefix' => $this->slug, |
|
686 | + 'is_main_field' => $sub_field['is_main_field'] |
|
687 | + ) |
|
688 | + ); |
|
689 | + |
|
690 | + if ( array_key_exists( 'download_image', $current_values[$this->slug] ) && array_key_exists( $sub_field['slug'], $current_values[$this->slug]['download_image'] ) ) { |
|
691 | + $field['params']['download_image'] = $current_values[$this->slug]['download_image'][$sub_field['slug']]; |
|
692 | + } |
|
693 | + |
|
694 | + break; |
|
695 | + case 'radio': |
|
696 | + $field = array( |
|
697 | + 'type' => 'enum', |
|
698 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
699 | + 'params' => array( |
|
700 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
701 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
702 | + 'field_value' => $current_values[$this->slug][$sub_field['slug']], |
|
703 | + 'enum_values' => $this->fields[$sub_field['slug']]['enum_values'], |
|
704 | + 'mapping' => true, |
|
705 | + 'field_key' => $sub_field['slug'], |
|
706 | + 'mapping_rules' => isset($current_values[$this->slug]['mapping'][$sub_field['slug']]) ? $current_values[$this->slug]['mapping'][$sub_field['slug']] : array(), |
|
707 | + 'xpath' => isset($current_values[$this->slug]['xpaths'][$sub_field['slug']]) ? $current_values[$this->slug]['xpaths'][$sub_field['slug']] : '', |
|
708 | + 'addon_prefix' => $this->slug, |
|
709 | + 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
710 | + 'is_main_field' => $sub_field['is_main_field'] |
|
711 | + ) |
|
712 | + ); |
|
713 | + break; |
|
714 | + case 'accordion': |
|
715 | + $field = array( |
|
716 | + 'type' => 'accordion', |
|
717 | + 'label' => $this->fields[$sub_field['slug']]['name'], |
|
718 | + 'params' => array( |
|
719 | + 'tooltip' => $this->fields[$sub_field['slug']]['tooltip'], |
|
720 | + 'field_name' => $this->slug."[".$sub_field['slug']."]", |
|
721 | + 'field_key' => $sub_field['slug'], |
|
722 | + 'addon_prefix' => $this->slug, |
|
723 | + 'sub_fields' => $this->get_sub_fields($this->fields[$sub_field['slug']], $sub_field['slug'], $current_values), |
|
724 | + 'in_the_bottom' => false |
|
725 | + ) |
|
726 | + ); |
|
727 | + break; |
|
728 | + default: |
|
729 | + # code... |
|
730 | + break; |
|
731 | + } |
|
732 | + return $field; |
|
733 | + } |
|
734 | + |
|
735 | + /** |
|
736 | + * |
|
737 | + * Add accordion options |
|
738 | + * |
|
739 | + * |
|
740 | + */ |
|
741 | + function add_options( $main_field = false, $title = '', $fields = array() ){ |
|
742 | 742 | |
743 | - if ( ! empty($fields) ) |
|
744 | - { |
|
743 | + if ( ! empty($fields) ) |
|
744 | + { |
|
745 | 745 | |
746 | - if ($main_field){ |
|
746 | + if ($main_field){ |
|
747 | 747 | |
748 | - $main_field['is_main_field'] = true; |
|
749 | - $fields[] = $main_field; |
|
748 | + $main_field['is_main_field'] = true; |
|
749 | + $fields[] = $main_field; |
|
750 | 750 | |
751 | - } |
|
751 | + } |
|
752 | 752 | |
753 | - return $this->add_field('accordion_' . $fields[0]['slug'], $title, 'accordion', $fields); |
|
753 | + return $this->add_field('accordion_' . $fields[0]['slug'], $title, 'accordion', $fields); |
|
754 | 754 | |
755 | - } |
|
755 | + } |
|
756 | 756 | |
757 | - } |
|
757 | + } |
|
758 | 758 | |
759 | - function add_title($title = '', $tooltip = ''){ |
|
759 | + function add_title($title = '', $tooltip = ''){ |
|
760 | 760 | |
761 | - if (empty($title)) return; |
|
761 | + if (empty($title)) return; |
|
762 | 762 | |
763 | - return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
|
763 | + return $this->add_field(sanitize_key($title) . time(), $title, 'title', null, $tooltip); |
|
764 | 764 | |
765 | - } |
|
765 | + } |
|
766 | 766 | |
767 | - function add_text($text = '', $is_html = false){ |
|
767 | + function add_text($text = '', $is_html = false){ |
|
768 | 768 | |
769 | - if (empty($text)) return; |
|
769 | + if (empty($text)) return; |
|
770 | 770 | |
771 | - $count = is_array($this->fields) ? count($this->fields) : 0; |
|
771 | + $count = is_array($this->fields) ? count($this->fields) : 0; |
|
772 | 772 | |
773 | - return $this->add_field(sanitize_key($text) . time() . uniqid() . $count, $text, 'plain_text', null, "", $is_html); |
|
773 | + return $this->add_field(sanitize_key($text) . time() . uniqid() . $count, $text, 'plain_text', null, "", $is_html); |
|
774 | 774 | |
775 | - } |
|
775 | + } |
|
776 | 776 | |
777 | - function helper_metabox_top($name) { |
|
777 | + function helper_metabox_top($name) { |
|
778 | 778 | |
779 | - return ' |
|
779 | + return ' |
|
780 | 780 | <style type="text/css"> |
781 | 781 | .wpallimport-plugin .wpallimport-addon div.input { |
782 | 782 | margin-bottom: 15px; |
@@ -872,11 +872,11 @@ discard block |
||
872 | 872 | <table class="form-table" style="max-width:none;"> |
873 | 873 | <tr> |
874 | 874 | <td colspan="3">'; |
875 | - } |
|
875 | + } |
|
876 | 876 | |
877 | - function helper_metabox_bottom() { |
|
877 | + function helper_metabox_bottom() { |
|
878 | 878 | |
879 | - return ' </td> |
|
879 | + return ' </td> |
|
880 | 880 | </tr> |
881 | 881 | </table> |
882 | 882 | </div> |
@@ -884,298 +884,298 @@ discard block |
||
884 | 884 | </div> |
885 | 885 | </div>'; |
886 | 886 | |
887 | - } |
|
887 | + } |
|
888 | 888 | |
889 | - /** |
|
890 | - * |
|
891 | - * simply add an additional section for attachments |
|
892 | - * |
|
893 | - */ |
|
894 | - function import_files( $slug, $title, $callback = NULL ){ |
|
895 | - $this->import_images( $slug, $title, 'files', $callback); |
|
896 | - } |
|
889 | + /** |
|
890 | + * |
|
891 | + * simply add an additional section for attachments |
|
892 | + * |
|
893 | + */ |
|
894 | + function import_files( $slug, $title, $callback = NULL ){ |
|
895 | + $this->import_images( $slug, $title, 'files', $callback); |
|
896 | + } |
|
897 | 897 | |
898 | - /** |
|
899 | - * |
|
900 | - * simply add an additional section |
|
901 | - * |
|
902 | - */ |
|
903 | - function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
898 | + /** |
|
899 | + * |
|
900 | + * simply add an additional section |
|
901 | + * |
|
902 | + */ |
|
903 | + function import_images( $slug, $title, $type = 'images', $callback = NULL ){ |
|
904 | 904 | |
905 | - if ( empty($title) or empty($slug) ) return; |
|
905 | + if ( empty($title) or empty($slug) ) return; |
|
906 | 906 | |
907 | - if (is_array($slug)) { |
|
907 | + if (is_array($slug)) { |
|
908 | 908 | $section_slug = 'pmxi_' . md5(serialize($slug)); |
909 | 909 | } else { |
910 | 910 | $section_slug = 'pmxi_' . $slug; |
911 | 911 | } |
912 | 912 | |
913 | - $this->image_sections[] = array( |
|
914 | - 'title' => $title, |
|
915 | - 'slug' => $section_slug, |
|
916 | - 'type' => $type |
|
917 | - ); |
|
913 | + $this->image_sections[] = array( |
|
914 | + 'title' => $title, |
|
915 | + 'slug' => $section_slug, |
|
916 | + 'type' => $type |
|
917 | + ); |
|
918 | 918 | |
919 | - foreach ($this->image_options as $option_slug => $value) { |
|
920 | - $this->add_option($section_slug . $option_slug, $value); |
|
921 | - } |
|
919 | + foreach ($this->image_options as $option_slug => $value) { |
|
920 | + $this->add_option($section_slug . $option_slug, $value); |
|
921 | + } |
|
922 | 922 | |
923 | - if (count($this->image_sections) > 1){ |
|
924 | - add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
|
925 | - } |
|
923 | + if (count($this->image_sections) > 1){ |
|
924 | + add_filter('wp_all_import_is_show_add_new_images', array($this, 'filter_is_show_add_new_images'), 10, 2); |
|
925 | + } |
|
926 | 926 | |
927 | - add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
|
927 | + add_filter('wp_all_import_is_allow_import_images', array($this, 'is_allow_import_images'), 10, 2); |
|
928 | 928 | |
929 | - if ($callback && is_callable($callback)) { |
|
929 | + if ($callback && is_callable($callback)) { |
|
930 | 930 | add_action( $section_slug, $callback, 10, 4); |
931 | 931 | } else { |
932 | 932 | if (function_exists($slug)) { |
933 | 933 | add_action( $section_slug, $slug, 10, 4); |
934 | 934 | } |
935 | 935 | } |
936 | - } |
|
937 | - /** |
|
938 | - * |
|
939 | - * filter to allow import images for free edition of WP All Import |
|
940 | - * |
|
941 | - */ |
|
942 | - function is_allow_import_images($is_allow, $post_type){ |
|
943 | - return ($this->is_active_addon($post_type)) ? true : $is_allow; |
|
944 | - } |
|
945 | - |
|
946 | - /** |
|
947 | - * |
|
948 | - * filter to control additional images sections |
|
949 | - * |
|
950 | - */ |
|
951 | - function additional_sections($sections){ |
|
952 | - if ( ! empty($this->image_sections) ){ |
|
953 | - foreach ($this->image_sections as $add_section) { |
|
954 | - $sections[] = $add_section; |
|
955 | - } |
|
956 | - } |
|
936 | + } |
|
937 | + /** |
|
938 | + * |
|
939 | + * filter to allow import images for free edition of WP All Import |
|
940 | + * |
|
941 | + */ |
|
942 | + function is_allow_import_images($is_allow, $post_type){ |
|
943 | + return ($this->is_active_addon($post_type)) ? true : $is_allow; |
|
944 | + } |
|
945 | + |
|
946 | + /** |
|
947 | + * |
|
948 | + * filter to control additional images sections |
|
949 | + * |
|
950 | + */ |
|
951 | + function additional_sections($sections){ |
|
952 | + if ( ! empty($this->image_sections) ){ |
|
953 | + foreach ($this->image_sections as $add_section) { |
|
954 | + $sections[] = $add_section; |
|
955 | + } |
|
956 | + } |
|
957 | 957 | |
958 | - return $sections; |
|
959 | - } |
|
960 | - /** |
|
961 | - * |
|
962 | - * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
|
963 | - * |
|
964 | - */ |
|
965 | - function filter_is_show_add_new_images($is_show, $post_type){ |
|
966 | - return ($this->is_active_addon($post_type)) ? false : $is_show; |
|
967 | - } |
|
968 | - |
|
969 | - /** |
|
970 | - * |
|
971 | - * disable the default images section |
|
972 | - * |
|
973 | - */ |
|
974 | - function disable_default_images($post_type = false){ |
|
958 | + return $sections; |
|
959 | + } |
|
960 | + /** |
|
961 | + * |
|
962 | + * remove the 'Don't touch existing images, append new images' when more than one image section is in use. |
|
963 | + * |
|
964 | + */ |
|
965 | + function filter_is_show_add_new_images($is_show, $post_type){ |
|
966 | + return ($this->is_active_addon($post_type)) ? false : $is_show; |
|
967 | + } |
|
968 | + |
|
969 | + /** |
|
970 | + * |
|
971 | + * disable the default images section |
|
972 | + * |
|
973 | + */ |
|
974 | + function disable_default_images($post_type = false){ |
|
975 | 975 | |
976 | - add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
|
976 | + add_filter('wp_all_import_is_images_section_enabled', array($this, 'is_enable_default_images_section'), 10, 2); |
|
977 | 977 | |
978 | - } |
|
979 | - function is_enable_default_images_section($is_enabled, $post_type){ |
|
978 | + } |
|
979 | + function is_enable_default_images_section($is_enabled, $post_type){ |
|
980 | 980 | |
981 | - return ($this->is_active_addon($post_type)) ? false : true; |
|
981 | + return ($this->is_active_addon($post_type)) ? false : true; |
|
982 | 982 | |
983 | - } |
|
983 | + } |
|
984 | 984 | |
985 | - function helper_parse($parsingData, $options) { |
|
985 | + function helper_parse($parsingData, $options) { |
|
986 | 986 | |
987 | - extract($parsingData); |
|
987 | + extract($parsingData); |
|
988 | 988 | |
989 | - $data = array(); // parsed data |
|
989 | + $data = array(); // parsed data |
|
990 | 990 | |
991 | - if ( ! empty($import->options[$this->slug])){ |
|
991 | + if ( ! empty($import->options[$this->slug])){ |
|
992 | 992 | |
993 | - $this->logger = $parsingData['logger']; |
|
993 | + $this->logger = $parsingData['logger']; |
|
994 | 994 | |
995 | - $cxpath = $xpath_prefix . $import->xpath; |
|
995 | + $cxpath = $xpath_prefix . $import->xpath; |
|
996 | 996 | |
997 | - $tmp_files = array(); |
|
997 | + $tmp_files = array(); |
|
998 | 998 | |
999 | - foreach ($options[$this->slug] as $option_name => $option_value) { |
|
1000 | - if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
1001 | - if ($import->options[$this->slug][$option_name] == "xpath") { |
|
1002 | - if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
1003 | - $count and $data[$option_name] = array_fill(0, $count, ""); |
|
1004 | - } else { |
|
1005 | - $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
|
1006 | - $tmp_files[] = $file; |
|
1007 | - } |
|
1008 | - } |
|
1009 | - else { |
|
1010 | - $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
|
1011 | - $tmp_files[] = $file; |
|
1012 | - } |
|
999 | + foreach ($options[$this->slug] as $option_name => $option_value) { |
|
1000 | + if ( isset($import->options[$this->slug][$option_name]) and $import->options[$this->slug][$option_name] != '') { |
|
1001 | + if ($import->options[$this->slug][$option_name] == "xpath") { |
|
1002 | + if ($import->options[$this->slug]['xpaths'][$option_name] == ""){ |
|
1003 | + $count and $data[$option_name] = array_fill(0, $count, ""); |
|
1004 | + } else { |
|
1005 | + $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug]['xpaths'][$option_name], $file)->parse(); |
|
1006 | + $tmp_files[] = $file; |
|
1007 | + } |
|
1008 | + } |
|
1009 | + else { |
|
1010 | + $data[$option_name] = XmlImportParser::factory($xml, $cxpath, (string) $import->options[$this->slug][$option_name], $file)->parse(); |
|
1011 | + $tmp_files[] = $file; |
|
1012 | + } |
|
1013 | 1013 | |
1014 | 1014 | |
1015 | - } else { |
|
1016 | - $data[$option_name] = array_fill(0, $count, ""); |
|
1017 | - } |
|
1015 | + } else { |
|
1016 | + $data[$option_name] = array_fill(0, $count, ""); |
|
1017 | + } |
|
1018 | 1018 | |
1019 | - } |
|
1019 | + } |
|
1020 | 1020 | |
1021 | - foreach ($tmp_files as $file) { // remove all temporary files created |
|
1022 | - unlink($file); |
|
1023 | - } |
|
1021 | + foreach ($tmp_files as $file) { // remove all temporary files created |
|
1022 | + unlink($file); |
|
1023 | + } |
|
1024 | 1024 | |
1025 | - } |
|
1025 | + } |
|
1026 | 1026 | |
1027 | - return $data; |
|
1028 | - } |
|
1027 | + return $data; |
|
1028 | + } |
|
1029 | 1029 | |
1030 | 1030 | |
1031 | - function can_update_meta($meta_key, $import_options) { |
|
1031 | + function can_update_meta($meta_key, $import_options) { |
|
1032 | 1032 | |
1033 | - //echo "<pre>"; |
|
1034 | - //print_r($import_options['options']); |
|
1035 | - //echo "</pre>"; |
|
1033 | + //echo "<pre>"; |
|
1034 | + //print_r($import_options['options']); |
|
1035 | + //echo "</pre>"; |
|
1036 | 1036 | |
1037 | - $import_options = $import_options['options']; |
|
1037 | + $import_options = $import_options['options']; |
|
1038 | 1038 | |
1039 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
1039 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
1040 | 1040 | |
1041 | - if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
1041 | + if ( ! $import_options['is_update_custom_fields'] ) return false; |
|
1042 | 1042 | |
1043 | - if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
1044 | - if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
1045 | - if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
1043 | + if ($import_options['update_custom_fields_logic'] == "full_update") return true; |
|
1044 | + if ($import_options['update_custom_fields_logic'] == "only" and ! empty($import_options['custom_fields_list']) and is_array($import_options['custom_fields_list']) and in_array($meta_key, $import_options['custom_fields_list']) ) return true; |
|
1045 | + if ($import_options['update_custom_fields_logic'] == "all_except" and ( empty($import_options['custom_fields_list']) or ! in_array($meta_key, $import_options['custom_fields_list']) )) return true; |
|
1046 | 1046 | |
1047 | - return false; |
|
1047 | + return false; |
|
1048 | 1048 | |
1049 | - } |
|
1049 | + } |
|
1050 | 1050 | |
1051 | - function can_update_taxonomy($tax_name, $import_options) { |
|
1051 | + function can_update_taxonomy($tax_name, $import_options) { |
|
1052 | 1052 | |
1053 | - //echo "<pre>"; |
|
1054 | - //print_r($import_options['options']); |
|
1055 | - //echo "</pre>"; |
|
1053 | + //echo "<pre>"; |
|
1054 | + //print_r($import_options['options']); |
|
1055 | + //echo "</pre>"; |
|
1056 | 1056 | |
1057 | - $import_options = $import_options['options']; |
|
1057 | + $import_options = $import_options['options']; |
|
1058 | 1058 | |
1059 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
1059 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
1060 | 1060 | |
1061 | - if ( ! $import_options['is_update_categories'] ) return false; |
|
1061 | + if ( ! $import_options['is_update_categories'] ) return false; |
|
1062 | 1062 | |
1063 | - if ($import_options['update_categories_logic'] == "full_update") return true; |
|
1064 | - if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
1065 | - if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
1063 | + if ($import_options['update_categories_logic'] == "full_update") return true; |
|
1064 | + if ($import_options['update_categories_logic'] == "only" and ! empty($import_options['taxonomies_list']) and is_array($import_options['taxonomies_list']) and in_array($tax_name, $import_options['taxonomies_list']) ) return true; |
|
1065 | + if ($import_options['update_categories_logic'] == "all_except" and ( empty($import_options['taxonomies_list']) or ! in_array($tax_name, $import_options['taxonomies_list']) )) return true; |
|
1066 | 1066 | |
1067 | - return false; |
|
1067 | + return false; |
|
1068 | 1068 | |
1069 | - } |
|
1069 | + } |
|
1070 | 1070 | |
1071 | - function can_update_image($import_options) { |
|
1071 | + function can_update_image($import_options) { |
|
1072 | 1072 | |
1073 | - $import_options = $import_options['options']; |
|
1073 | + $import_options = $import_options['options']; |
|
1074 | 1074 | |
1075 | - if ($import_options['update_all_data'] == 'yes') return true; |
|
1075 | + if ($import_options['update_all_data'] == 'yes') return true; |
|
1076 | 1076 | |
1077 | - if (!$import_options['is_update_images']) return false; |
|
1077 | + if (!$import_options['is_update_images']) return false; |
|
1078 | 1078 | |
1079 | - if ($import_options['is_update_images']) return true; |
|
1079 | + if ($import_options['is_update_images']) return true; |
|
1080 | 1080 | |
1081 | - return false; |
|
1082 | - } |
|
1081 | + return false; |
|
1082 | + } |
|
1083 | 1083 | |
1084 | 1084 | |
1085 | - function admin_notice_ignore() { |
|
1086 | - if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
1087 | - update_option($this->slug.'_ignore', 'true'); |
|
1088 | - } |
|
1089 | - } |
|
1085 | + function admin_notice_ignore() { |
|
1086 | + if (isset($_GET[$this->slug.'_ignore']) && '0' == $_GET[$this->slug.'_ignore'] ) { |
|
1087 | + update_option($this->slug.'_ignore', 'true'); |
|
1088 | + } |
|
1089 | + } |
|
1090 | 1090 | |
1091 | - function display_admin_notice() { |
|
1091 | + function display_admin_notice() { |
|
1092 | 1092 | |
1093 | 1093 | |
1094 | - if ($this->notice_text) { |
|
1095 | - $notice_text = $this->notice_text; |
|
1096 | - } else { |
|
1097 | - $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
1098 | - } |
|
1094 | + if ($this->notice_text) { |
|
1095 | + $notice_text = $this->notice_text; |
|
1096 | + } else { |
|
1097 | + $notice_text = $this->name.' requires WP All Import <a href="http://www.wpallimport.com/" target="_blank">Pro</a> or <a href="http://wordpress.org/plugins/wp-all-import" target="_blank">Free</a>.'; |
|
1098 | + } |
|
1099 | 1099 | |
1100 | - if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
1100 | + if (!get_option(sanitize_key($this->slug).'_notice_ignore')) { |
|
1101 | 1101 | |
1102 | - ?> |
|
1102 | + ?> |
|
1103 | 1103 | |
1104 | 1104 | <div class="error notice is-dismissible wpallimport-dismissible" style="margin-top: 10px;" rel="<?php echo sanitize_key($this->slug); ?>"> |
1105 | 1105 | <p><?php _e( |
1106 | - sprintf( |
|
1107 | - $notice_text, |
|
1108 | - '?'.$this->slug.'_ignore=0' |
|
1109 | - ), |
|
1110 | - 'rapid_addon_'.$this->slug |
|
1111 | - ); ?></p> |
|
1106 | + sprintf( |
|
1107 | + $notice_text, |
|
1108 | + '?'.$this->slug.'_ignore=0' |
|
1109 | + ), |
|
1110 | + 'rapid_addon_'.$this->slug |
|
1111 | + ); ?></p> |
|
1112 | 1112 | </div> |
1113 | 1113 | |
1114 | 1114 | <?php |
1115 | 1115 | |
1116 | - } |
|
1116 | + } |
|
1117 | 1117 | |
1118 | - } |
|
1118 | + } |
|
1119 | 1119 | |
1120 | - /* |
|
1120 | + /* |
|
1121 | 1121 | * |
1122 | 1122 | * $conditions - array('themes' => array('Realia'), 'plugins' => array('plugin-directory/plugin-file.php', 'plugin-directory2/plugin-file.php')) |
1123 | 1123 | * |
1124 | 1124 | */ |
1125 | - function admin_notice($notice_text = '', $conditions = array()) { |
|
1125 | + function admin_notice($notice_text = '', $conditions = array()) { |
|
1126 | 1126 | |
1127 | - $is_show_notice = false; |
|
1127 | + $is_show_notice = false; |
|
1128 | 1128 | |
1129 | - include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
1129 | + include_once( ABSPATH . 'wp-admin/includes/plugin.php' ); |
|
1130 | 1130 | |
1131 | - if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
1132 | - $is_show_notice = true; |
|
1133 | - } |
|
1131 | + if ( ! class_exists( 'PMXI_Plugin' ) ) { |
|
1132 | + $is_show_notice = true; |
|
1133 | + } |
|
1134 | 1134 | |
1135 | - // Supported Themes |
|
1136 | - if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
1135 | + // Supported Themes |
|
1136 | + if ( ! $is_show_notice and ! empty($conditions['themes']) ){ |
|
1137 | 1137 | |
1138 | - $themeInfo = wp_get_theme(); |
|
1139 | - $parentInfo = $themeInfo->parent(); |
|
1140 | - $currentTheme = $themeInfo->get('Name'); |
|
1138 | + $themeInfo = wp_get_theme(); |
|
1139 | + $parentInfo = $themeInfo->parent(); |
|
1140 | + $currentTheme = $themeInfo->get('Name'); |
|
1141 | 1141 | |
1142 | - $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
|
1142 | + $is_show_notice = in_array($currentTheme, $conditions['themes']) ? false : true; |
|
1143 | 1143 | |
1144 | - if ( $is_show_notice and $parentInfo ){ |
|
1145 | - $parent_theme = $parentInfo->get('Name'); |
|
1146 | - $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
|
1147 | - } |
|
1144 | + if ( $is_show_notice and $parentInfo ){ |
|
1145 | + $parent_theme = $parentInfo->get('Name'); |
|
1146 | + $is_show_notice = in_array($parent_theme, $conditions['themes']) ? false : true; |
|
1147 | + } |
|
1148 | 1148 | |
1149 | - } |
|
1149 | + } |
|
1150 | 1150 | |
1151 | - // Required Plugins |
|
1152 | - if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
1151 | + // Required Plugins |
|
1152 | + if ( ! $is_show_notice and ! empty($conditions['plugins']) ){ |
|
1153 | 1153 | |
1154 | - $requires_counter = 0; |
|
1155 | - foreach ($conditions['plugins'] as $plugin) { |
|
1156 | - if ( is_plugin_active($plugin) ) $requires_counter++; |
|
1157 | - } |
|
1154 | + $requires_counter = 0; |
|
1155 | + foreach ($conditions['plugins'] as $plugin) { |
|
1156 | + if ( is_plugin_active($plugin) ) $requires_counter++; |
|
1157 | + } |
|
1158 | 1158 | |
1159 | - if ($requires_counter != count($conditions['plugins'])){ |
|
1160 | - $is_show_notice = true; |
|
1161 | - } |
|
1159 | + if ($requires_counter != count($conditions['plugins'])){ |
|
1160 | + $is_show_notice = true; |
|
1161 | + } |
|
1162 | 1162 | |
1163 | - } |
|
1163 | + } |
|
1164 | 1164 | |
1165 | - if ( $is_show_notice ){ |
|
1165 | + if ( $is_show_notice ){ |
|
1166 | 1166 | |
1167 | - if ( $notice_text != '' ) { |
|
1168 | - $this->notice_text = $notice_text; |
|
1169 | - } |
|
1167 | + if ( $notice_text != '' ) { |
|
1168 | + $this->notice_text = $notice_text; |
|
1169 | + } |
|
1170 | 1170 | |
1171 | - add_action('admin_notices', array($this, 'display_admin_notice')); |
|
1172 | - } |
|
1171 | + add_action('admin_notices', array($this, 'display_admin_notice')); |
|
1172 | + } |
|
1173 | 1173 | |
1174 | - } |
|
1174 | + } |
|
1175 | 1175 | |
1176 | - function log( $m = false){ |
|
1176 | + function log( $m = false){ |
|
1177 | 1177 | |
1178 | - $m and $this->logger and call_user_func($this->logger, $m); |
|
1178 | + $m and $this->logger and call_user_func($this->logger, $m); |
|
1179 | 1179 | |
1180 | 1180 | } |
1181 | 1181 | |
@@ -1293,5 +1293,5 @@ discard block |
||
1293 | 1293 | } |
1294 | 1294 | return $image; |
1295 | 1295 | } |
1296 | - } |
|
1296 | + } |
|
1297 | 1297 | } |
1298 | 1298 | \ No newline at end of file |
@@ -14,133 +14,133 @@ |
||
14 | 14 | */ |
15 | 15 | class GetPaid_WP_All_Import { |
16 | 16 | |
17 | - /** |
|
18 | - * @var RapidAddon[] |
|
19 | - */ |
|
20 | - protected $add_ons; |
|
21 | - |
|
22 | - /** |
|
23 | - * @var array |
|
24 | - */ |
|
25 | - protected $datastores = array( |
|
26 | - 'item' =>'WPInv_Item', |
|
27 | - 'invoice' =>'WPInv_Invoice', |
|
28 | - 'discount' =>'WPInv_Discount', |
|
29 | - ); |
|
17 | + /** |
|
18 | + * @var RapidAddon[] |
|
19 | + */ |
|
20 | + protected $add_ons; |
|
21 | + |
|
22 | + /** |
|
23 | + * @var array |
|
24 | + */ |
|
25 | + protected $datastores = array( |
|
26 | + 'item' =>'WPInv_Item', |
|
27 | + 'invoice' =>'WPInv_Invoice', |
|
28 | + 'discount' =>'WPInv_Discount', |
|
29 | + ); |
|
30 | 30 | |
31 | 31 | /** |
32 | - * Class constructor. |
|
33 | - */ |
|
32 | + * Class constructor. |
|
33 | + */ |
|
34 | 34 | public function __construct() { |
35 | 35 | |
36 | - // Init each store separately. |
|
37 | - foreach ( array_keys( $this->datastores ) as $key ) { |
|
38 | - $this->init_store( $key ); |
|
39 | - } |
|
36 | + // Init each store separately. |
|
37 | + foreach ( array_keys( $this->datastores ) as $key ) { |
|
38 | + $this->init_store( $key ); |
|
39 | + } |
|
40 | 40 | |
41 | - } |
|
41 | + } |
|
42 | 42 | |
43 | - /** |
|
44 | - * Inits a store. |
|
45 | - */ |
|
43 | + /** |
|
44 | + * Inits a store. |
|
45 | + */ |
|
46 | 46 | public function init_store( $key ) { |
47 | 47 | |
48 | - // Register the add-on. |
|
49 | - $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
48 | + // Register the add-on. |
|
49 | + $this->add_ons[ $key ] = new RapidAddon( 'GetPaid', 'getpaid_wp_al_import_' . $key ); |
|
50 | 50 | |
51 | - // Create import function. |
|
52 | - $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
53 | - $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
51 | + // Create import function. |
|
52 | + $import_function = function ( $post_id, $data, $import_options, $_post ) use ( $key ) { |
|
53 | + $this->import_store( $key, $post_id, $data, $import_options, $_post ); |
|
54 | 54 | }; |
55 | 55 | |
56 | - $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
56 | + $this->add_ons[ $key ]->set_import_function( $import_function ); |
|
57 | 57 | |
58 | - // Register store fields. |
|
59 | - $this->add_store_fields( $key ); |
|
58 | + // Register store fields. |
|
59 | + $this->add_store_fields( $key ); |
|
60 | 60 | |
61 | - // Only load on the correct post type. |
|
62 | - $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
61 | + // Only load on the correct post type. |
|
62 | + $this->add_ons[ $key ]->run( array( 'post_types' => array( 'wpi_' . $key ) ) ); |
|
63 | 63 | |
64 | - // Disable images. |
|
65 | - $this->add_ons[ $key ]->disable_default_images(); |
|
64 | + // Disable images. |
|
65 | + $this->add_ons[ $key ]->disable_default_images(); |
|
66 | 66 | |
67 | - } |
|
67 | + } |
|
68 | 68 | |
69 | - /** |
|
70 | - * Retrieves store fields. |
|
71 | - */ |
|
69 | + /** |
|
70 | + * Retrieves store fields. |
|
71 | + */ |
|
72 | 72 | public function get_store_fields( $key ) { |
73 | 73 | |
74 | - // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
|
75 | - $fields = wpinv_get_data( $key . '-schema' ); |
|
74 | + // Fetch from data/invoice-schema.php, from data/discount-schema.php, from data/item-schema.php |
|
75 | + $fields = wpinv_get_data( $key . '-schema' ); |
|
76 | 76 | |
77 | - if ( empty( $fields ) ) { |
|
78 | - return array(); |
|
79 | - } |
|
77 | + if ( empty( $fields ) ) { |
|
78 | + return array(); |
|
79 | + } |
|
80 | 80 | |
81 | - // Clean the fields. |
|
82 | - $prepared = array(); |
|
83 | - foreach ( $fields as $id => $field ) { |
|
81 | + // Clean the fields. |
|
82 | + $prepared = array(); |
|
83 | + foreach ( $fields as $id => $field ) { |
|
84 | 84 | |
85 | - // Skip read only fields. |
|
86 | - if ( ! empty( $field['readonly'] ) ) { |
|
87 | - continue; |
|
88 | - } |
|
85 | + // Skip read only fields. |
|
86 | + if ( ! empty( $field['readonly'] ) ) { |
|
87 | + continue; |
|
88 | + } |
|
89 | 89 | |
90 | - $prepared[ $id ] = $field; |
|
90 | + $prepared[ $id ] = $field; |
|
91 | 91 | |
92 | - } |
|
92 | + } |
|
93 | 93 | |
94 | - return $prepared; |
|
94 | + return $prepared; |
|
95 | 95 | |
96 | - } |
|
96 | + } |
|
97 | 97 | |
98 | - /** |
|
99 | - * Registers store fields. |
|
100 | - */ |
|
98 | + /** |
|
99 | + * Registers store fields. |
|
100 | + */ |
|
101 | 101 | public function add_store_fields( $key ) { |
102 | 102 | |
103 | - foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
104 | - $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
105 | - } |
|
103 | + foreach ( $this->get_store_fields( $key ) as $field_id => $data ) { |
|
104 | + $this->add_ons[ $key ]->add_field( $field_id, $data['description'], 'text' ); |
|
105 | + } |
|
106 | 106 | |
107 | 107 | } |
108 | 108 | |
109 | - /** |
|
110 | - * Handles store imports. |
|
111 | - */ |
|
109 | + /** |
|
110 | + * Handles store imports. |
|
111 | + */ |
|
112 | 112 | public function import_store( $key, $post_id, $data, $import_options, $_post ) { |
113 | 113 | |
114 | - // Is the store class set? |
|
115 | - if ( ! isset( $this->datastores[ $key ] ) ) { |
|
116 | - return; |
|
117 | - } |
|
114 | + // Is the store class set? |
|
115 | + if ( ! isset( $this->datastores[ $key ] ) ) { |
|
116 | + return; |
|
117 | + } |
|
118 | 118 | |
119 | - /**@var GetPaid_Data */ |
|
120 | - $data_store = new $this->datastores[ $key ]( $post_id ); |
|
119 | + /**@var GetPaid_Data */ |
|
120 | + $data_store = new $this->datastores[ $key ]( $post_id ); |
|
121 | 121 | |
122 | - // Abort if the invoice/item/discount does not exist. |
|
123 | - if ( ! $data_store->exists() ) { |
|
124 | - return; |
|
125 | - } |
|
122 | + // Abort if the invoice/item/discount does not exist. |
|
123 | + if ( ! $data_store->exists() ) { |
|
124 | + return; |
|
125 | + } |
|
126 | 126 | |
127 | - // Prepare data props. |
|
128 | - $prepared = array(); |
|
127 | + // Prepare data props. |
|
128 | + $prepared = array(); |
|
129 | 129 | |
130 | - foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
131 | - // Make sure the user has allowed this field to be updated. |
|
132 | - if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
130 | + foreach ( array_keys( $this->get_store_fields( $key ) ) as $field ) { |
|
131 | + // Make sure the user has allowed this field to be updated. |
|
132 | + if ( empty( $_post['ID'] ) || $this->add_ons[ $key ]->can_update_meta( $field, $import_options ) ) { |
|
133 | 133 | |
134 | - // Update the custom field with the imported data. |
|
135 | - $prepared[ $field ] = $data[ $field ]; |
|
136 | - } |
|
137 | - } |
|
138 | - |
|
139 | - // Only update if we have something to update. |
|
140 | - if ( ! empty( $prepared ) ) { |
|
141 | - $data_store->set_props( $prepared ); |
|
142 | - $data_store->save(); |
|
143 | - } |
|
134 | + // Update the custom field with the imported data. |
|
135 | + $prepared[ $field ] = $data[ $field ]; |
|
136 | + } |
|
137 | + } |
|
138 | + |
|
139 | + // Only update if we have something to update. |
|
140 | + if ( ! empty( $prepared ) ) { |
|
141 | + $data_store->set_props( $prepared ); |
|
142 | + $data_store->save(); |
|
143 | + } |
|
144 | 144 | |
145 | 145 | } |
146 | 146 |
@@ -12,8 +12,8 @@ discard block |
||
12 | 12 | class InstalledVersions |
13 | 13 | { |
14 | 14 | private static $installed = array ( |
15 | - 'root' => |
|
16 | - array ( |
|
15 | + 'root' => |
|
16 | + array ( |
|
17 | 17 | 'pretty_version' => 'dev-master', |
18 | 18 | 'version' => 'dev-master', |
19 | 19 | 'aliases' => |
@@ -21,96 +21,96 @@ discard block |
||
21 | 21 | ), |
22 | 22 | 'reference' => 'c77c76d2bb821dfd39f6e97602e1fc972f810df8', |
23 | 23 | 'name' => 'ayecode/invoicing', |
24 | - ), |
|
25 | - 'versions' => |
|
26 | - array ( |
|
24 | + ), |
|
25 | + 'versions' => |
|
26 | + array ( |
|
27 | 27 | 'ayecode/ayecode-connect-helper' => |
28 | 28 | array ( |
29 | - 'pretty_version' => '1.0.3', |
|
30 | - 'version' => '1.0.3.0', |
|
31 | - 'aliases' => |
|
32 | - array ( |
|
33 | - ), |
|
34 | - 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
29 | + 'pretty_version' => '1.0.3', |
|
30 | + 'version' => '1.0.3.0', |
|
31 | + 'aliases' => |
|
32 | + array ( |
|
33 | + ), |
|
34 | + 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
35 | 35 | ), |
36 | 36 | 'ayecode/invoicing' => |
37 | 37 | array ( |
38 | - 'pretty_version' => 'dev-master', |
|
39 | - 'version' => 'dev-master', |
|
40 | - 'aliases' => |
|
41 | - array ( |
|
42 | - ), |
|
43 | - 'reference' => 'c77c76d2bb821dfd39f6e97602e1fc972f810df8', |
|
38 | + 'pretty_version' => 'dev-master', |
|
39 | + 'version' => 'dev-master', |
|
40 | + 'aliases' => |
|
41 | + array ( |
|
42 | + ), |
|
43 | + 'reference' => 'c77c76d2bb821dfd39f6e97602e1fc972f810df8', |
|
44 | 44 | ), |
45 | 45 | 'ayecode/wp-ayecode-ui' => |
46 | 46 | array ( |
47 | - 'pretty_version' => '0.1.62', |
|
48 | - 'version' => '0.1.62.0', |
|
49 | - 'aliases' => |
|
50 | - array ( |
|
51 | - ), |
|
52 | - 'reference' => 'f0625aa6f695cef39fe75bc1707026824e9841d9', |
|
47 | + 'pretty_version' => '0.1.62', |
|
48 | + 'version' => '0.1.62.0', |
|
49 | + 'aliases' => |
|
50 | + array ( |
|
51 | + ), |
|
52 | + 'reference' => 'f0625aa6f695cef39fe75bc1707026824e9841d9', |
|
53 | 53 | ), |
54 | 54 | 'ayecode/wp-deactivation-survey' => |
55 | 55 | array ( |
56 | - 'pretty_version' => '1.0.4', |
|
57 | - 'version' => '1.0.4.0', |
|
58 | - 'aliases' => |
|
59 | - array ( |
|
60 | - ), |
|
61 | - 'reference' => 'd2777fed30acfc4da53b45bf3b4fec2fb27d8398', |
|
56 | + 'pretty_version' => '1.0.4', |
|
57 | + 'version' => '1.0.4.0', |
|
58 | + 'aliases' => |
|
59 | + array ( |
|
60 | + ), |
|
61 | + 'reference' => 'd2777fed30acfc4da53b45bf3b4fec2fb27d8398', |
|
62 | 62 | ), |
63 | 63 | 'ayecode/wp-font-awesome-settings' => |
64 | 64 | array ( |
65 | - 'pretty_version' => '1.0.13', |
|
66 | - 'version' => '1.0.13.0', |
|
67 | - 'aliases' => |
|
68 | - array ( |
|
69 | - ), |
|
70 | - 'reference' => 'a7a11ee4290674ec214d1fe694139af275350402', |
|
65 | + 'pretty_version' => '1.0.13', |
|
66 | + 'version' => '1.0.13.0', |
|
67 | + 'aliases' => |
|
68 | + array ( |
|
69 | + ), |
|
70 | + 'reference' => 'a7a11ee4290674ec214d1fe694139af275350402', |
|
71 | 71 | ), |
72 | 72 | 'ayecode/wp-super-duper' => |
73 | 73 | array ( |
74 | - 'pretty_version' => '1.0.27', |
|
75 | - 'version' => '1.0.27.0', |
|
76 | - 'aliases' => |
|
77 | - array ( |
|
78 | - ), |
|
79 | - 'reference' => 'ce187bc9afc5cd7f5d790d84eb6fd9b98e56992d', |
|
74 | + 'pretty_version' => '1.0.27', |
|
75 | + 'version' => '1.0.27.0', |
|
76 | + 'aliases' => |
|
77 | + array ( |
|
78 | + ), |
|
79 | + 'reference' => 'ce187bc9afc5cd7f5d790d84eb6fd9b98e56992d', |
|
80 | 80 | ), |
81 | 81 | 'composer/installers' => |
82 | 82 | array ( |
83 | - 'pretty_version' => 'v1.12.0', |
|
84 | - 'version' => '1.12.0.0', |
|
85 | - 'aliases' => |
|
86 | - array ( |
|
87 | - ), |
|
88 | - 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', |
|
83 | + 'pretty_version' => 'v1.12.0', |
|
84 | + 'version' => '1.12.0.0', |
|
85 | + 'aliases' => |
|
86 | + array ( |
|
87 | + ), |
|
88 | + 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', |
|
89 | 89 | ), |
90 | 90 | 'maxmind-db/reader' => |
91 | 91 | array ( |
92 | - 'pretty_version' => 'v1.6.0', |
|
93 | - 'version' => '1.6.0.0', |
|
94 | - 'aliases' => |
|
95 | - array ( |
|
96 | - ), |
|
97 | - 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
92 | + 'pretty_version' => 'v1.6.0', |
|
93 | + 'version' => '1.6.0.0', |
|
94 | + 'aliases' => |
|
95 | + array ( |
|
96 | + ), |
|
97 | + 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
98 | 98 | ), |
99 | 99 | 'roundcube/plugin-installer' => |
100 | 100 | array ( |
101 | - 'replaced' => |
|
102 | - array ( |
|
101 | + 'replaced' => |
|
102 | + array ( |
|
103 | 103 | 0 => '*', |
104 | - ), |
|
104 | + ), |
|
105 | 105 | ), |
106 | 106 | 'shama/baton' => |
107 | 107 | array ( |
108 | - 'replaced' => |
|
109 | - array ( |
|
108 | + 'replaced' => |
|
109 | + array ( |
|
110 | 110 | 0 => '*', |
111 | - ), |
|
111 | + ), |
|
112 | + ), |
|
112 | 113 | ), |
113 | - ), |
|
114 | 114 | ); |
115 | 115 | |
116 | 116 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php return array ( |
2 | - 'root' => |
|
3 | - array ( |
|
2 | + 'root' => |
|
3 | + array ( |
|
4 | 4 | 'pretty_version' => 'dev-master', |
5 | 5 | 'version' => 'dev-master', |
6 | 6 | 'aliases' => |
@@ -8,94 +8,94 @@ discard block |
||
8 | 8 | ), |
9 | 9 | 'reference' => 'c77c76d2bb821dfd39f6e97602e1fc972f810df8', |
10 | 10 | 'name' => 'ayecode/invoicing', |
11 | - ), |
|
12 | - 'versions' => |
|
13 | - array ( |
|
11 | + ), |
|
12 | + 'versions' => |
|
13 | + array ( |
|
14 | 14 | 'ayecode/ayecode-connect-helper' => |
15 | 15 | array ( |
16 | - 'pretty_version' => '1.0.3', |
|
17 | - 'version' => '1.0.3.0', |
|
18 | - 'aliases' => |
|
19 | - array ( |
|
20 | - ), |
|
21 | - 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
16 | + 'pretty_version' => '1.0.3', |
|
17 | + 'version' => '1.0.3.0', |
|
18 | + 'aliases' => |
|
19 | + array ( |
|
20 | + ), |
|
21 | + 'reference' => '1af7cdefdbd20d4443a3ab4834e4c1cd8fe57fb4', |
|
22 | 22 | ), |
23 | 23 | 'ayecode/invoicing' => |
24 | 24 | array ( |
25 | - 'pretty_version' => 'dev-master', |
|
26 | - 'version' => 'dev-master', |
|
27 | - 'aliases' => |
|
28 | - array ( |
|
29 | - ), |
|
30 | - 'reference' => 'c77c76d2bb821dfd39f6e97602e1fc972f810df8', |
|
25 | + 'pretty_version' => 'dev-master', |
|
26 | + 'version' => 'dev-master', |
|
27 | + 'aliases' => |
|
28 | + array ( |
|
29 | + ), |
|
30 | + 'reference' => 'c77c76d2bb821dfd39f6e97602e1fc972f810df8', |
|
31 | 31 | ), |
32 | 32 | 'ayecode/wp-ayecode-ui' => |
33 | 33 | array ( |
34 | - 'pretty_version' => '0.1.62', |
|
35 | - 'version' => '0.1.62.0', |
|
36 | - 'aliases' => |
|
37 | - array ( |
|
38 | - ), |
|
39 | - 'reference' => 'f0625aa6f695cef39fe75bc1707026824e9841d9', |
|
34 | + 'pretty_version' => '0.1.62', |
|
35 | + 'version' => '0.1.62.0', |
|
36 | + 'aliases' => |
|
37 | + array ( |
|
38 | + ), |
|
39 | + 'reference' => 'f0625aa6f695cef39fe75bc1707026824e9841d9', |
|
40 | 40 | ), |
41 | 41 | 'ayecode/wp-deactivation-survey' => |
42 | 42 | array ( |
43 | - 'pretty_version' => '1.0.4', |
|
44 | - 'version' => '1.0.4.0', |
|
45 | - 'aliases' => |
|
46 | - array ( |
|
47 | - ), |
|
48 | - 'reference' => 'd2777fed30acfc4da53b45bf3b4fec2fb27d8398', |
|
43 | + 'pretty_version' => '1.0.4', |
|
44 | + 'version' => '1.0.4.0', |
|
45 | + 'aliases' => |
|
46 | + array ( |
|
47 | + ), |
|
48 | + 'reference' => 'd2777fed30acfc4da53b45bf3b4fec2fb27d8398', |
|
49 | 49 | ), |
50 | 50 | 'ayecode/wp-font-awesome-settings' => |
51 | 51 | array ( |
52 | - 'pretty_version' => '1.0.13', |
|
53 | - 'version' => '1.0.13.0', |
|
54 | - 'aliases' => |
|
55 | - array ( |
|
56 | - ), |
|
57 | - 'reference' => 'a7a11ee4290674ec214d1fe694139af275350402', |
|
52 | + 'pretty_version' => '1.0.13', |
|
53 | + 'version' => '1.0.13.0', |
|
54 | + 'aliases' => |
|
55 | + array ( |
|
56 | + ), |
|
57 | + 'reference' => 'a7a11ee4290674ec214d1fe694139af275350402', |
|
58 | 58 | ), |
59 | 59 | 'ayecode/wp-super-duper' => |
60 | 60 | array ( |
61 | - 'pretty_version' => '1.0.27', |
|
62 | - 'version' => '1.0.27.0', |
|
63 | - 'aliases' => |
|
64 | - array ( |
|
65 | - ), |
|
66 | - 'reference' => 'ce187bc9afc5cd7f5d790d84eb6fd9b98e56992d', |
|
61 | + 'pretty_version' => '1.0.27', |
|
62 | + 'version' => '1.0.27.0', |
|
63 | + 'aliases' => |
|
64 | + array ( |
|
65 | + ), |
|
66 | + 'reference' => 'ce187bc9afc5cd7f5d790d84eb6fd9b98e56992d', |
|
67 | 67 | ), |
68 | 68 | 'composer/installers' => |
69 | 69 | array ( |
70 | - 'pretty_version' => 'v1.12.0', |
|
71 | - 'version' => '1.12.0.0', |
|
72 | - 'aliases' => |
|
73 | - array ( |
|
74 | - ), |
|
75 | - 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', |
|
70 | + 'pretty_version' => 'v1.12.0', |
|
71 | + 'version' => '1.12.0.0', |
|
72 | + 'aliases' => |
|
73 | + array ( |
|
74 | + ), |
|
75 | + 'reference' => 'd20a64ed3c94748397ff5973488761b22f6d3f19', |
|
76 | 76 | ), |
77 | 77 | 'maxmind-db/reader' => |
78 | 78 | array ( |
79 | - 'pretty_version' => 'v1.6.0', |
|
80 | - 'version' => '1.6.0.0', |
|
81 | - 'aliases' => |
|
82 | - array ( |
|
83 | - ), |
|
84 | - 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
79 | + 'pretty_version' => 'v1.6.0', |
|
80 | + 'version' => '1.6.0.0', |
|
81 | + 'aliases' => |
|
82 | + array ( |
|
83 | + ), |
|
84 | + 'reference' => 'febd4920bf17c1da84cef58e56a8227dfb37fbe4', |
|
85 | 85 | ), |
86 | 86 | 'roundcube/plugin-installer' => |
87 | 87 | array ( |
88 | - 'replaced' => |
|
89 | - array ( |
|
88 | + 'replaced' => |
|
89 | + array ( |
|
90 | 90 | 0 => '*', |
91 | - ), |
|
91 | + ), |
|
92 | 92 | ), |
93 | 93 | 'shama/baton' => |
94 | 94 | array ( |
95 | - 'replaced' => |
|
96 | - array ( |
|
95 | + 'replaced' => |
|
96 | + array ( |
|
97 | 97 | 0 => '*', |
98 | - ), |
|
98 | + ), |
|
99 | + ), |
|
99 | 100 | ), |
100 | - ), |
|
101 | 101 | ); |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | 15 | if ( ! defined( 'ABSPATH' ) ) { |
16 | - exit; |
|
16 | + exit; |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
@@ -21,243 +21,243 @@ discard block |
||
21 | 21 | */ |
22 | 22 | if ( ! class_exists( 'AyeCode_UI_Settings' ) ) { |
23 | 23 | |
24 | - /** |
|
25 | - * A Class to be able to change settings for Font Awesome. |
|
26 | - * |
|
27 | - * Class AyeCode_UI_Settings |
|
28 | - * @ver 1.0.0 |
|
29 | - * @todo decide how to implement textdomain |
|
30 | - */ |
|
31 | - class AyeCode_UI_Settings { |
|
32 | - |
|
33 | - /** |
|
34 | - * Class version version. |
|
35 | - * |
|
36 | - * @var string |
|
37 | - */ |
|
38 | - public $version = '0.1.62'; |
|
39 | - |
|
40 | - /** |
|
41 | - * Class textdomain. |
|
42 | - * |
|
43 | - * @var string |
|
44 | - */ |
|
45 | - public $textdomain = 'aui'; |
|
46 | - |
|
47 | - /** |
|
48 | - * Latest version of Bootstrap at time of publish published. |
|
49 | - * |
|
50 | - * @var string |
|
51 | - */ |
|
52 | - public $latest = "4.5.3"; |
|
53 | - |
|
54 | - /** |
|
55 | - * Current version of select2 being used. |
|
56 | - * |
|
57 | - * @var string |
|
58 | - */ |
|
59 | - public $select2_version = "4.0.11"; |
|
60 | - |
|
61 | - /** |
|
62 | - * The title. |
|
63 | - * |
|
64 | - * @var string |
|
65 | - */ |
|
66 | - public $name = 'AyeCode UI'; |
|
67 | - |
|
68 | - /** |
|
69 | - * The relative url to the assets. |
|
70 | - * |
|
71 | - * @var string |
|
72 | - */ |
|
73 | - public $url = ''; |
|
74 | - |
|
75 | - /** |
|
76 | - * Holds the settings values. |
|
77 | - * |
|
78 | - * @var array |
|
79 | - */ |
|
80 | - private $settings; |
|
81 | - |
|
82 | - /** |
|
83 | - * AyeCode_UI_Settings instance. |
|
84 | - * |
|
85 | - * @access private |
|
86 | - * @since 1.0.0 |
|
87 | - * @var AyeCode_UI_Settings There can be only one! |
|
88 | - */ |
|
89 | - private static $instance = null; |
|
90 | - |
|
91 | - /** |
|
92 | - * Main AyeCode_UI_Settings Instance. |
|
93 | - * |
|
94 | - * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
|
95 | - * |
|
96 | - * @since 1.0.0 |
|
97 | - * @static |
|
98 | - * @return AyeCode_UI_Settings - Main instance. |
|
99 | - */ |
|
100 | - public static function instance() { |
|
101 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
102 | - |
|
103 | - self::$instance = new AyeCode_UI_Settings; |
|
104 | - |
|
105 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
106 | - |
|
107 | - if ( is_admin() ) { |
|
108 | - add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | - add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
110 | - |
|
111 | - // Maybe show example page |
|
112 | - add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
113 | - } |
|
24 | + /** |
|
25 | + * A Class to be able to change settings for Font Awesome. |
|
26 | + * |
|
27 | + * Class AyeCode_UI_Settings |
|
28 | + * @ver 1.0.0 |
|
29 | + * @todo decide how to implement textdomain |
|
30 | + */ |
|
31 | + class AyeCode_UI_Settings { |
|
32 | + |
|
33 | + /** |
|
34 | + * Class version version. |
|
35 | + * |
|
36 | + * @var string |
|
37 | + */ |
|
38 | + public $version = '0.1.62'; |
|
39 | + |
|
40 | + /** |
|
41 | + * Class textdomain. |
|
42 | + * |
|
43 | + * @var string |
|
44 | + */ |
|
45 | + public $textdomain = 'aui'; |
|
46 | + |
|
47 | + /** |
|
48 | + * Latest version of Bootstrap at time of publish published. |
|
49 | + * |
|
50 | + * @var string |
|
51 | + */ |
|
52 | + public $latest = "4.5.3"; |
|
53 | + |
|
54 | + /** |
|
55 | + * Current version of select2 being used. |
|
56 | + * |
|
57 | + * @var string |
|
58 | + */ |
|
59 | + public $select2_version = "4.0.11"; |
|
60 | + |
|
61 | + /** |
|
62 | + * The title. |
|
63 | + * |
|
64 | + * @var string |
|
65 | + */ |
|
66 | + public $name = 'AyeCode UI'; |
|
67 | + |
|
68 | + /** |
|
69 | + * The relative url to the assets. |
|
70 | + * |
|
71 | + * @var string |
|
72 | + */ |
|
73 | + public $url = ''; |
|
74 | + |
|
75 | + /** |
|
76 | + * Holds the settings values. |
|
77 | + * |
|
78 | + * @var array |
|
79 | + */ |
|
80 | + private $settings; |
|
81 | + |
|
82 | + /** |
|
83 | + * AyeCode_UI_Settings instance. |
|
84 | + * |
|
85 | + * @access private |
|
86 | + * @since 1.0.0 |
|
87 | + * @var AyeCode_UI_Settings There can be only one! |
|
88 | + */ |
|
89 | + private static $instance = null; |
|
90 | + |
|
91 | + /** |
|
92 | + * Main AyeCode_UI_Settings Instance. |
|
93 | + * |
|
94 | + * Ensures only one instance of AyeCode_UI_Settings is loaded or can be loaded. |
|
95 | + * |
|
96 | + * @since 1.0.0 |
|
97 | + * @static |
|
98 | + * @return AyeCode_UI_Settings - Main instance. |
|
99 | + */ |
|
100 | + public static function instance() { |
|
101 | + if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
102 | + |
|
103 | + self::$instance = new AyeCode_UI_Settings; |
|
104 | + |
|
105 | + add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
106 | + |
|
107 | + if ( is_admin() ) { |
|
108 | + add_action( 'admin_menu', array( self::$instance, 'menu_item' ) ); |
|
109 | + add_action( 'admin_init', array( self::$instance, 'register_settings' ) ); |
|
110 | + |
|
111 | + // Maybe show example page |
|
112 | + add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
113 | + } |
|
114 | 114 | |
115 | - add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
115 | + add_action( 'customize_register', array( self::$instance, 'customizer_settings' )); |
|
116 | 116 | |
117 | - do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | - } |
|
117 | + do_action( 'ayecode_ui_settings_loaded' ); |
|
118 | + } |
|
119 | 119 | |
120 | - return self::$instance; |
|
121 | - } |
|
120 | + return self::$instance; |
|
121 | + } |
|
122 | 122 | |
123 | - /** |
|
124 | - * Setup some constants. |
|
125 | - */ |
|
126 | - public function constants(){ |
|
127 | - define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
|
128 | - define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
|
129 | - if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
|
130 | - if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL); |
|
131 | - } |
|
123 | + /** |
|
124 | + * Setup some constants. |
|
125 | + */ |
|
126 | + public function constants(){ |
|
127 | + define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
|
128 | + define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
|
129 | + if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
|
130 | + if (!defined('AUI_SECONDARY_COLOR')) define('AUI_SECONDARY_COLOR', AUI_SECONDARY_COLOR_ORIGINAL); |
|
131 | + } |
|
132 | 132 | |
133 | - /** |
|
134 | - * Initiate the settings and add the required action hooks. |
|
135 | - */ |
|
136 | - public function init() { |
|
137 | - $this->constants(); |
|
138 | - $this->settings = $this->get_settings(); |
|
139 | - $this->url = $this->get_url(); |
|
140 | - |
|
141 | - /** |
|
142 | - * Maybe load CSS |
|
143 | - * |
|
144 | - * We load super early in case there is a theme version that might change the colors |
|
145 | - */ |
|
146 | - if ( $this->settings['css'] ) { |
|
147 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
148 | - } |
|
149 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
151 | - } |
|
152 | - |
|
153 | - // maybe load JS |
|
154 | - if ( $this->settings['js'] ) { |
|
155 | - $priority = $this->is_bs3_compat() ? 100 : 1; |
|
156 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
157 | - } |
|
158 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
159 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
160 | - } |
|
161 | - |
|
162 | - // Maybe set the HTML font size |
|
163 | - if ( $this->settings['html_font_size'] ) { |
|
164 | - add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
165 | - } |
|
133 | + /** |
|
134 | + * Initiate the settings and add the required action hooks. |
|
135 | + */ |
|
136 | + public function init() { |
|
137 | + $this->constants(); |
|
138 | + $this->settings = $this->get_settings(); |
|
139 | + $this->url = $this->get_url(); |
|
140 | + |
|
141 | + /** |
|
142 | + * Maybe load CSS |
|
143 | + * |
|
144 | + * We load super early in case there is a theme version that might change the colors |
|
145 | + */ |
|
146 | + if ( $this->settings['css'] ) { |
|
147 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
148 | + } |
|
149 | + if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
151 | + } |
|
166 | 152 | |
153 | + // maybe load JS |
|
154 | + if ( $this->settings['js'] ) { |
|
155 | + $priority = $this->is_bs3_compat() ? 100 : 1; |
|
156 | + add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
157 | + } |
|
158 | + if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
159 | + add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
160 | + } |
|
167 | 161 | |
168 | - } |
|
162 | + // Maybe set the HTML font size |
|
163 | + if ( $this->settings['html_font_size'] ) { |
|
164 | + add_action( 'wp_footer', array( $this, 'html_font_size' ), 10 ); |
|
165 | + } |
|
169 | 166 | |
170 | - /** |
|
171 | - * Check if we should load the admin scripts or not. |
|
172 | - * |
|
173 | - * @return bool |
|
174 | - */ |
|
175 | - public function load_admin_scripts(){ |
|
176 | - $result = true; |
|
177 | - |
|
178 | - // check if specifically disabled |
|
179 | - if(!empty($this->settings['disable_admin'])){ |
|
180 | - $url_parts = explode("\n",$this->settings['disable_admin']); |
|
181 | - foreach($url_parts as $part){ |
|
182 | - if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
183 | - return false; // return early, no point checking further |
|
184 | - } |
|
185 | - } |
|
186 | - } |
|
187 | 167 | |
188 | - return $result; |
|
189 | - } |
|
168 | + } |
|
190 | 169 | |
191 | - /** |
|
192 | - * Add a html font size to the footer. |
|
193 | - */ |
|
194 | - public function html_font_size(){ |
|
195 | - $this->settings = $this->get_settings(); |
|
196 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
197 | - } |
|
170 | + /** |
|
171 | + * Check if we should load the admin scripts or not. |
|
172 | + * |
|
173 | + * @return bool |
|
174 | + */ |
|
175 | + public function load_admin_scripts(){ |
|
176 | + $result = true; |
|
177 | + |
|
178 | + // check if specifically disabled |
|
179 | + if(!empty($this->settings['disable_admin'])){ |
|
180 | + $url_parts = explode("\n",$this->settings['disable_admin']); |
|
181 | + foreach($url_parts as $part){ |
|
182 | + if( strpos($_SERVER['REQUEST_URI'], trim($part)) !== false ){ |
|
183 | + return false; // return early, no point checking further |
|
184 | + } |
|
185 | + } |
|
186 | + } |
|
198 | 187 | |
199 | - /** |
|
200 | - * Check if the current admin screen should load scripts. |
|
201 | - * |
|
202 | - * @return bool |
|
203 | - */ |
|
204 | - public function is_aui_screen(){ |
|
205 | - $load = false; |
|
206 | - // check if we should load or not |
|
207 | - if ( is_admin() ) { |
|
208 | - // Only enable on set pages |
|
209 | - $aui_screens = array( |
|
210 | - 'page', |
|
211 | - 'post', |
|
212 | - 'settings_page_ayecode-ui-settings', |
|
213 | - 'appearance_page_gutenberg-widgets', |
|
214 | - 'widgets' |
|
215 | - ); |
|
216 | - $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
|
217 | - |
|
218 | - $screen = get_current_screen(); |
|
188 | + return $result; |
|
189 | + } |
|
190 | + |
|
191 | + /** |
|
192 | + * Add a html font size to the footer. |
|
193 | + */ |
|
194 | + public function html_font_size(){ |
|
195 | + $this->settings = $this->get_settings(); |
|
196 | + echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
197 | + } |
|
198 | + |
|
199 | + /** |
|
200 | + * Check if the current admin screen should load scripts. |
|
201 | + * |
|
202 | + * @return bool |
|
203 | + */ |
|
204 | + public function is_aui_screen(){ |
|
205 | + $load = false; |
|
206 | + // check if we should load or not |
|
207 | + if ( is_admin() ) { |
|
208 | + // Only enable on set pages |
|
209 | + $aui_screens = array( |
|
210 | + 'page', |
|
211 | + 'post', |
|
212 | + 'settings_page_ayecode-ui-settings', |
|
213 | + 'appearance_page_gutenberg-widgets', |
|
214 | + 'widgets' |
|
215 | + ); |
|
216 | + $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
|
217 | + |
|
218 | + $screen = get_current_screen(); |
|
219 | 219 | |
220 | 220 | // echo '###'.$screen->id; |
221 | 221 | |
222 | - // check if we are on a AUI screen |
|
223 | - if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
224 | - $load = true; |
|
225 | - } |
|
222 | + // check if we are on a AUI screen |
|
223 | + if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
224 | + $load = true; |
|
225 | + } |
|
226 | 226 | |
227 | - //load for widget previews in WP 5.8 |
|
228 | - if( !empty($_REQUEST['legacy-widget-preview'])){ |
|
229 | - $load = true; |
|
230 | - } |
|
231 | - } |
|
227 | + //load for widget previews in WP 5.8 |
|
228 | + if( !empty($_REQUEST['legacy-widget-preview'])){ |
|
229 | + $load = true; |
|
230 | + } |
|
231 | + } |
|
232 | 232 | |
233 | - return apply_filters( 'aui_load_on_admin' , $load ); |
|
234 | - } |
|
233 | + return apply_filters( 'aui_load_on_admin' , $load ); |
|
234 | + } |
|
235 | 235 | |
236 | - /** |
|
237 | - * Adds the styles. |
|
238 | - */ |
|
239 | - public function enqueue_style() { |
|
236 | + /** |
|
237 | + * Adds the styles. |
|
238 | + */ |
|
239 | + public function enqueue_style() { |
|
240 | 240 | |
241 | - if( is_admin() && !$this->is_aui_screen()){ |
|
242 | - // don't add wp-admin scripts if not requested to |
|
243 | - }else{ |
|
244 | - $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
241 | + if( is_admin() && !$this->is_aui_screen()){ |
|
242 | + // don't add wp-admin scripts if not requested to |
|
243 | + }else{ |
|
244 | + $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
|
245 | 245 | |
246 | - $rtl = is_rtl() ? '-rtl' : ''; |
|
246 | + $rtl = is_rtl() ? '-rtl' : ''; |
|
247 | 247 | |
248 | - if($this->settings[$css_setting]){ |
|
249 | - $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
250 | - $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
251 | - wp_register_style( 'ayecode-ui', $url, array(), $this->latest ); |
|
252 | - wp_enqueue_style( 'ayecode-ui' ); |
|
248 | + if($this->settings[$css_setting]){ |
|
249 | + $compatibility = $this->settings[$css_setting]=='core' ? false : true; |
|
250 | + $url = $this->settings[$css_setting]=='core' ? $this->url.'assets/css/ayecode-ui'.$rtl.'.css' : $this->url.'assets/css/ayecode-ui-compatibility'.$rtl.'.css'; |
|
251 | + wp_register_style( 'ayecode-ui', $url, array(), $this->latest ); |
|
252 | + wp_enqueue_style( 'ayecode-ui' ); |
|
253 | 253 | |
254 | - // flatpickr |
|
255 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
254 | + // flatpickr |
|
255 | + wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
256 | 256 | |
257 | 257 | |
258 | - // fix some wp-admin issues |
|
259 | - if(is_admin()){ |
|
260 | - $custom_css = " |
|
258 | + // fix some wp-admin issues |
|
259 | + if(is_admin()){ |
|
260 | + $custom_css = " |
|
261 | 261 | body{ |
262 | 262 | background-color: #f1f1f1; |
263 | 263 | font-family: -apple-system,BlinkMacSystemFont,\"Segoe UI\",Roboto,Oxygen-Sans,Ubuntu,Cantarell,\"Helvetica Neue\",sans-serif; |
@@ -299,35 +299,35 @@ discard block |
||
299 | 299 | } |
300 | 300 | "; |
301 | 301 | |
302 | - // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
303 | - $custom_css .= " |
|
302 | + // @todo, remove once fixed :: fix for this bug https://github.com/WordPress/gutenberg/issues/14377 |
|
303 | + $custom_css .= " |
|
304 | 304 | .edit-post-sidebar input[type=color].components-text-control__input{ |
305 | 305 | padding: 0; |
306 | 306 | } |
307 | 307 | "; |
308 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
309 | - } |
|
308 | + wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
309 | + } |
|
310 | 310 | |
311 | - // custom changes |
|
312 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
311 | + // custom changes |
|
312 | + wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
313 | 313 | |
314 | - } |
|
315 | - } |
|
314 | + } |
|
315 | + } |
|
316 | 316 | |
317 | 317 | |
318 | - } |
|
318 | + } |
|
319 | 319 | |
320 | - /** |
|
321 | - * Get inline script used if bootstrap enqueued |
|
322 | - * |
|
323 | - * If this remains small then its best to use this than to add another JS file. |
|
324 | - */ |
|
325 | - public function inline_script() { |
|
326 | - // Flatpickr calendar locale |
|
327 | - $flatpickr_locale = self::flatpickr_locale(); |
|
328 | - |
|
329 | - ob_start(); |
|
330 | - ?> |
|
320 | + /** |
|
321 | + * Get inline script used if bootstrap enqueued |
|
322 | + * |
|
323 | + * If this remains small then its best to use this than to add another JS file. |
|
324 | + */ |
|
325 | + public function inline_script() { |
|
326 | + // Flatpickr calendar locale |
|
327 | + $flatpickr_locale = self::flatpickr_locale(); |
|
328 | + |
|
329 | + ob_start(); |
|
330 | + ?> |
|
331 | 331 | <script> |
332 | 332 | /** |
333 | 333 | * An AUI bootstrap adaptation of GreedyNav.js ( by Luke Jackson ). |
@@ -1016,29 +1016,29 @@ discard block |
||
1016 | 1016 | }); |
1017 | 1017 | </script> |
1018 | 1018 | <?php |
1019 | - $output = ob_get_clean(); |
|
1019 | + $output = ob_get_clean(); |
|
1020 | 1020 | |
1021 | 1021 | |
1022 | 1022 | |
1023 | - /* |
|
1023 | + /* |
|
1024 | 1024 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1025 | 1025 | */ |
1026 | - return str_replace( array( |
|
1027 | - '<script>', |
|
1028 | - '</script>' |
|
1029 | - ), '', self::minify_js($output) ); |
|
1030 | - } |
|
1026 | + return str_replace( array( |
|
1027 | + '<script>', |
|
1028 | + '</script>' |
|
1029 | + ), '', self::minify_js($output) ); |
|
1030 | + } |
|
1031 | 1031 | |
1032 | 1032 | |
1033 | - /** |
|
1034 | - * JS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1035 | - * |
|
1036 | - * @TODO we may need this when other conflicts arrise. |
|
1037 | - * @return mixed |
|
1038 | - */ |
|
1039 | - public static function bs3_compat_js() { |
|
1040 | - ob_start(); |
|
1041 | - ?> |
|
1033 | + /** |
|
1034 | + * JS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1035 | + * |
|
1036 | + * @TODO we may need this when other conflicts arrise. |
|
1037 | + * @return mixed |
|
1038 | + */ |
|
1039 | + public static function bs3_compat_js() { |
|
1040 | + ob_start(); |
|
1041 | + ?> |
|
1042 | 1042 | <script> |
1043 | 1043 | <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
1044 | 1044 | /* With Avada builder */ |
@@ -1046,20 +1046,20 @@ discard block |
||
1046 | 1046 | <?php } ?> |
1047 | 1047 | </script> |
1048 | 1048 | <?php |
1049 | - return str_replace( array( |
|
1050 | - '<script>', |
|
1051 | - '</script>' |
|
1052 | - ), '', ob_get_clean()); |
|
1053 | - } |
|
1049 | + return str_replace( array( |
|
1050 | + '<script>', |
|
1051 | + '</script>' |
|
1052 | + ), '', ob_get_clean()); |
|
1053 | + } |
|
1054 | 1054 | |
1055 | - /** |
|
1056 | - * Get inline script used if bootstrap file browser enqueued. |
|
1057 | - * |
|
1058 | - * If this remains small then its best to use this than to add another JS file. |
|
1059 | - */ |
|
1060 | - public function inline_script_file_browser(){ |
|
1061 | - ob_start(); |
|
1062 | - ?> |
|
1055 | + /** |
|
1056 | + * Get inline script used if bootstrap file browser enqueued. |
|
1057 | + * |
|
1058 | + * If this remains small then its best to use this than to add another JS file. |
|
1059 | + */ |
|
1060 | + public function inline_script_file_browser(){ |
|
1061 | + ob_start(); |
|
1062 | + ?> |
|
1063 | 1063 | <script> |
1064 | 1064 | // run on doc ready |
1065 | 1065 | jQuery(document).ready(function () { |
@@ -1067,192 +1067,192 @@ discard block |
||
1067 | 1067 | }); |
1068 | 1068 | </script> |
1069 | 1069 | <?php |
1070 | - $output = ob_get_clean(); |
|
1070 | + $output = ob_get_clean(); |
|
1071 | 1071 | |
1072 | - /* |
|
1072 | + /* |
|
1073 | 1073 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1074 | 1074 | */ |
1075 | - return str_replace( array( |
|
1076 | - '<script>', |
|
1077 | - '</script>' |
|
1078 | - ), '', $output ); |
|
1079 | - } |
|
1075 | + return str_replace( array( |
|
1076 | + '<script>', |
|
1077 | + '</script>' |
|
1078 | + ), '', $output ); |
|
1079 | + } |
|
1080 | 1080 | |
1081 | - /** |
|
1082 | - * Adds the Font Awesome JS. |
|
1083 | - */ |
|
1084 | - public function enqueue_scripts() { |
|
1085 | - |
|
1086 | - if( is_admin() && !$this->is_aui_screen()){ |
|
1087 | - // don't add wp-admin scripts if not requested to |
|
1088 | - }else { |
|
1089 | - |
|
1090 | - $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
1091 | - |
|
1092 | - // select2 |
|
1093 | - wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
|
1094 | - |
|
1095 | - // flatpickr |
|
1096 | - wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
1097 | - |
|
1098 | - // Bootstrap file browser |
|
1099 | - wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); |
|
1100 | - wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
1101 | - |
|
1102 | - $load_inline = false; |
|
1103 | - |
|
1104 | - if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
|
1105 | - // Bootstrap bundle |
|
1106 | - $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
|
1107 | - wp_register_script( 'bootstrap-js-bundle', $url, array( |
|
1108 | - 'select2', |
|
1109 | - 'jquery' |
|
1110 | - ), $this->latest, $this->is_bs3_compat() ); |
|
1111 | - // if in admin then add to footer for compatibility. |
|
1112 | - is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' ); |
|
1113 | - $script = $this->inline_script(); |
|
1114 | - wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
1115 | - } elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
|
1116 | - $url = $this->url . 'assets/js/popper.min.js'; |
|
1117 | - wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest ); |
|
1118 | - wp_enqueue_script( 'bootstrap-js-popper' ); |
|
1119 | - $load_inline = true; |
|
1120 | - } else { |
|
1121 | - $load_inline = true; |
|
1122 | - } |
|
1081 | + /** |
|
1082 | + * Adds the Font Awesome JS. |
|
1083 | + */ |
|
1084 | + public function enqueue_scripts() { |
|
1085 | + |
|
1086 | + if( is_admin() && !$this->is_aui_screen()){ |
|
1087 | + // don't add wp-admin scripts if not requested to |
|
1088 | + }else { |
|
1089 | + |
|
1090 | + $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
|
1091 | + |
|
1092 | + // select2 |
|
1093 | + wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
|
1094 | + |
|
1095 | + // flatpickr |
|
1096 | + wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
1097 | + |
|
1098 | + // Bootstrap file browser |
|
1099 | + wp_register_script( 'aui-custom-file-input', $url = $this->url . 'assets/js/bs-custom-file-input.min.js', array( 'jquery' ), $this->select2_version ); |
|
1100 | + wp_add_inline_script( 'aui-custom-file-input', $this->inline_script_file_browser() ); |
|
1101 | + |
|
1102 | + $load_inline = false; |
|
1103 | + |
|
1104 | + if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
|
1105 | + // Bootstrap bundle |
|
1106 | + $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
|
1107 | + wp_register_script( 'bootstrap-js-bundle', $url, array( |
|
1108 | + 'select2', |
|
1109 | + 'jquery' |
|
1110 | + ), $this->latest, $this->is_bs3_compat() ); |
|
1111 | + // if in admin then add to footer for compatibility. |
|
1112 | + is_admin() ? wp_enqueue_script( 'bootstrap-js-bundle', '', null, null, true ) : wp_enqueue_script( 'bootstrap-js-bundle' ); |
|
1113 | + $script = $this->inline_script(); |
|
1114 | + wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
1115 | + } elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
|
1116 | + $url = $this->url . 'assets/js/popper.min.js'; |
|
1117 | + wp_register_script( 'bootstrap-js-popper', $url, array( 'select2', 'jquery' ), $this->latest ); |
|
1118 | + wp_enqueue_script( 'bootstrap-js-popper' ); |
|
1119 | + $load_inline = true; |
|
1120 | + } else { |
|
1121 | + $load_inline = true; |
|
1122 | + } |
|
1123 | 1123 | |
1124 | - // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
|
1125 | - if ( $load_inline ) { |
|
1126 | - wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) ); |
|
1127 | - wp_enqueue_script( 'bootstrap-dummy' ); |
|
1128 | - $script = $this->inline_script(); |
|
1129 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
1130 | - } |
|
1131 | - } |
|
1124 | + // Load needed inline scripts by faking the loading of a script if the main script is not being loaded |
|
1125 | + if ( $load_inline ) { |
|
1126 | + wp_register_script( 'bootstrap-dummy', '', array( 'select2', 'jquery' ) ); |
|
1127 | + wp_enqueue_script( 'bootstrap-dummy' ); |
|
1128 | + $script = $this->inline_script(); |
|
1129 | + wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
1130 | + } |
|
1131 | + } |
|
1132 | 1132 | |
1133 | - } |
|
1133 | + } |
|
1134 | 1134 | |
1135 | - /** |
|
1136 | - * Enqueue flatpickr if called. |
|
1137 | - */ |
|
1138 | - public function enqueue_flatpickr(){ |
|
1139 | - wp_enqueue_style( 'flatpickr' ); |
|
1140 | - wp_enqueue_script( 'flatpickr' ); |
|
1141 | - } |
|
1135 | + /** |
|
1136 | + * Enqueue flatpickr if called. |
|
1137 | + */ |
|
1138 | + public function enqueue_flatpickr(){ |
|
1139 | + wp_enqueue_style( 'flatpickr' ); |
|
1140 | + wp_enqueue_script( 'flatpickr' ); |
|
1141 | + } |
|
1142 | 1142 | |
1143 | - /** |
|
1144 | - * Get the url path to the current folder. |
|
1145 | - * |
|
1146 | - * @return string |
|
1147 | - */ |
|
1148 | - public function get_url() { |
|
1143 | + /** |
|
1144 | + * Get the url path to the current folder. |
|
1145 | + * |
|
1146 | + * @return string |
|
1147 | + */ |
|
1148 | + public function get_url() { |
|
1149 | 1149 | |
1150 | - $url = ''; |
|
1151 | - // check if we are inside a plugin |
|
1152 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
1150 | + $url = ''; |
|
1151 | + // check if we are inside a plugin |
|
1152 | + $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
1153 | 1153 | |
1154 | - // add check in-case user has changed wp-content dir name. |
|
1155 | - $wp_content_folder_name = basename(WP_CONTENT_DIR); |
|
1156 | - $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
1157 | - $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
1154 | + // add check in-case user has changed wp-content dir name. |
|
1155 | + $wp_content_folder_name = basename(WP_CONTENT_DIR); |
|
1156 | + $dir_parts = explode("/$wp_content_folder_name/",$file_dir); |
|
1157 | + $url_parts = explode("/$wp_content_folder_name/",plugins_url()); |
|
1158 | 1158 | |
1159 | - if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
1160 | - $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
1161 | - } |
|
1159 | + if(!empty($url_parts[0]) && !empty($dir_parts[1])){ |
|
1160 | + $url = trailingslashit( $url_parts[0]."/$wp_content_folder_name/".$dir_parts[1] ); |
|
1161 | + } |
|
1162 | 1162 | |
1163 | - return $url; |
|
1164 | - } |
|
1163 | + return $url; |
|
1164 | + } |
|
1165 | 1165 | |
1166 | - /** |
|
1167 | - * Register the database settings with WordPress. |
|
1168 | - */ |
|
1169 | - public function register_settings() { |
|
1170 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
1171 | - } |
|
1166 | + /** |
|
1167 | + * Register the database settings with WordPress. |
|
1168 | + */ |
|
1169 | + public function register_settings() { |
|
1170 | + register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
1171 | + } |
|
1172 | 1172 | |
1173 | - /** |
|
1174 | - * Add the WordPress settings menu item. |
|
1175 | - * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
1176 | - */ |
|
1177 | - public function menu_item() { |
|
1178 | - $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
1179 | - call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1180 | - $this, |
|
1181 | - 'settings_page' |
|
1182 | - ) ); |
|
1183 | - } |
|
1173 | + /** |
|
1174 | + * Add the WordPress settings menu item. |
|
1175 | + * @since 1.0.10 Calling function name direct will fail theme check so we don't. |
|
1176 | + */ |
|
1177 | + public function menu_item() { |
|
1178 | + $menu_function = 'add' . '_' . 'options' . '_' . 'page'; // won't pass theme check if function name present in theme |
|
1179 | + call_user_func( $menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1180 | + $this, |
|
1181 | + 'settings_page' |
|
1182 | + ) ); |
|
1183 | + } |
|
1184 | 1184 | |
1185 | - /** |
|
1186 | - * Get a list of themes and their default JS settings. |
|
1187 | - * |
|
1188 | - * @return array |
|
1189 | - */ |
|
1190 | - public function theme_js_settings(){ |
|
1191 | - return array( |
|
1192 | - 'ayetheme' => 'popper', |
|
1193 | - 'listimia' => 'required', |
|
1194 | - 'listimia_backend' => 'core-popper', |
|
1195 | - //'avada' => 'required', // removed as we now add compatibility |
|
1196 | - ); |
|
1197 | - } |
|
1185 | + /** |
|
1186 | + * Get a list of themes and their default JS settings. |
|
1187 | + * |
|
1188 | + * @return array |
|
1189 | + */ |
|
1190 | + public function theme_js_settings(){ |
|
1191 | + return array( |
|
1192 | + 'ayetheme' => 'popper', |
|
1193 | + 'listimia' => 'required', |
|
1194 | + 'listimia_backend' => 'core-popper', |
|
1195 | + //'avada' => 'required', // removed as we now add compatibility |
|
1196 | + ); |
|
1197 | + } |
|
1198 | 1198 | |
1199 | - /** |
|
1200 | - * Get the current Font Awesome output settings. |
|
1201 | - * |
|
1202 | - * @return array The array of settings. |
|
1203 | - */ |
|
1204 | - public function get_settings() { |
|
1205 | - |
|
1206 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
1207 | - $js_default = 'core-popper'; |
|
1208 | - $js_default_backend = $js_default; |
|
1209 | - |
|
1210 | - // maybe set defaults (if no settings set) |
|
1211 | - if(empty($db_settings)){ |
|
1212 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
1213 | - $theme_js_settings = self::theme_js_settings(); |
|
1214 | - if(isset($theme_js_settings[$active_theme])){ |
|
1215 | - $js_default = $theme_js_settings[$active_theme]; |
|
1216 | - $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
1217 | - } |
|
1218 | - } |
|
1219 | - |
|
1220 | - $defaults = array( |
|
1221 | - 'css' => 'compatibility', // core, compatibility |
|
1222 | - 'js' => $js_default, // js to load, core-popper, popper |
|
1223 | - 'html_font_size' => '16', // js to load, core-popper, popper |
|
1224 | - 'css_backend' => 'compatibility', // core, compatibility |
|
1225 | - 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
1226 | - 'disable_admin' => '', // URL snippets to disable loading on admin |
|
1227 | - ); |
|
1228 | - |
|
1229 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
1230 | - |
|
1231 | - /** |
|
1232 | - * Filter the Bootstrap settings. |
|
1233 | - * |
|
1234 | - * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
1235 | - */ |
|
1236 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
1237 | - } |
|
1199 | + /** |
|
1200 | + * Get the current Font Awesome output settings. |
|
1201 | + * |
|
1202 | + * @return array The array of settings. |
|
1203 | + */ |
|
1204 | + public function get_settings() { |
|
1205 | + |
|
1206 | + $db_settings = get_option( 'ayecode-ui-settings' ); |
|
1207 | + $js_default = 'core-popper'; |
|
1208 | + $js_default_backend = $js_default; |
|
1209 | + |
|
1210 | + // maybe set defaults (if no settings set) |
|
1211 | + if(empty($db_settings)){ |
|
1212 | + $active_theme = strtolower( get_template() ); // active parent theme. |
|
1213 | + $theme_js_settings = self::theme_js_settings(); |
|
1214 | + if(isset($theme_js_settings[$active_theme])){ |
|
1215 | + $js_default = $theme_js_settings[$active_theme]; |
|
1216 | + $js_default_backend = isset($theme_js_settings[$active_theme."_backend"]) ? $theme_js_settings[$active_theme."_backend"] : $js_default; |
|
1217 | + } |
|
1218 | + } |
|
1219 | + |
|
1220 | + $defaults = array( |
|
1221 | + 'css' => 'compatibility', // core, compatibility |
|
1222 | + 'js' => $js_default, // js to load, core-popper, popper |
|
1223 | + 'html_font_size' => '16', // js to load, core-popper, popper |
|
1224 | + 'css_backend' => 'compatibility', // core, compatibility |
|
1225 | + 'js_backend' => $js_default_backend, // js to load, core-popper, popper |
|
1226 | + 'disable_admin' => '', // URL snippets to disable loading on admin |
|
1227 | + ); |
|
1228 | + |
|
1229 | + $settings = wp_parse_args( $db_settings, $defaults ); |
|
1230 | + |
|
1231 | + /** |
|
1232 | + * Filter the Bootstrap settings. |
|
1233 | + * |
|
1234 | + * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
|
1235 | + */ |
|
1236 | + return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
1237 | + } |
|
1238 | 1238 | |
1239 | 1239 | |
1240 | - /** |
|
1241 | - * The settings page html output. |
|
1242 | - */ |
|
1243 | - public function settings_page() { |
|
1244 | - if ( ! current_user_can( 'manage_options' ) ) { |
|
1245 | - wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
1246 | - } |
|
1247 | - ?> |
|
1240 | + /** |
|
1241 | + * The settings page html output. |
|
1242 | + */ |
|
1243 | + public function settings_page() { |
|
1244 | + if ( ! current_user_can( 'manage_options' ) ) { |
|
1245 | + wp_die( __( 'You do not have sufficient permissions to access this page.', 'aui' ) ); |
|
1246 | + } |
|
1247 | + ?> |
|
1248 | 1248 | <div class="wrap"> |
1249 | 1249 | <h1><?php echo $this->name; ?></h1> |
1250 | 1250 | <p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p> |
1251 | 1251 | <form method="post" action="options.php"> |
1252 | 1252 | <?php |
1253 | - settings_fields( 'ayecode-ui-settings' ); |
|
1254 | - do_settings_sections( 'ayecode-ui-settings' ); |
|
1255 | - ?> |
|
1253 | + settings_fields( 'ayecode-ui-settings' ); |
|
1254 | + do_settings_sections( 'ayecode-ui-settings' ); |
|
1255 | + ?> |
|
1256 | 1256 | |
1257 | 1257 | <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
1258 | 1258 | <table class="form-table wpbs-table-settings"> |
@@ -1332,60 +1332,60 @@ discard block |
||
1332 | 1332 | </table> |
1333 | 1333 | |
1334 | 1334 | <?php |
1335 | - submit_button(); |
|
1336 | - ?> |
|
1335 | + submit_button(); |
|
1336 | + ?> |
|
1337 | 1337 | </form> |
1338 | 1338 | |
1339 | 1339 | <div id="wpbs-version"><?php echo $this->version; ?></div> |
1340 | 1340 | </div> |
1341 | 1341 | |
1342 | 1342 | <?php |
1343 | - } |
|
1343 | + } |
|
1344 | 1344 | |
1345 | - public function customizer_settings($wp_customize){ |
|
1346 | - $wp_customize->add_section('aui_settings', array( |
|
1347 | - 'title' => __('AyeCode UI','aui'), |
|
1348 | - 'priority' => 120, |
|
1349 | - )); |
|
1350 | - |
|
1351 | - // ============================= |
|
1352 | - // = Color Picker = |
|
1353 | - // ============================= |
|
1354 | - $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1355 | - 'default' => AUI_PRIMARY_COLOR, |
|
1356 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1357 | - 'capability' => 'edit_theme_options', |
|
1358 | - 'type' => 'option', |
|
1359 | - 'transport' => 'refresh', |
|
1360 | - )); |
|
1361 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1362 | - 'label' => __('Primary Color','aui'), |
|
1363 | - 'section' => 'aui_settings', |
|
1364 | - 'settings' => 'aui_options[color_primary]', |
|
1365 | - ))); |
|
1366 | - |
|
1367 | - $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1368 | - 'default' => '#6c757d', |
|
1369 | - 'sanitize_callback' => 'sanitize_hex_color', |
|
1370 | - 'capability' => 'edit_theme_options', |
|
1371 | - 'type' => 'option', |
|
1372 | - 'transport' => 'refresh', |
|
1373 | - )); |
|
1374 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1375 | - 'label' => __('Secondary Color','aui'), |
|
1376 | - 'section' => 'aui_settings', |
|
1377 | - 'settings' => 'aui_options[color_secondary]', |
|
1378 | - ))); |
|
1379 | - } |
|
1345 | + public function customizer_settings($wp_customize){ |
|
1346 | + $wp_customize->add_section('aui_settings', array( |
|
1347 | + 'title' => __('AyeCode UI','aui'), |
|
1348 | + 'priority' => 120, |
|
1349 | + )); |
|
1350 | + |
|
1351 | + // ============================= |
|
1352 | + // = Color Picker = |
|
1353 | + // ============================= |
|
1354 | + $wp_customize->add_setting('aui_options[color_primary]', array( |
|
1355 | + 'default' => AUI_PRIMARY_COLOR, |
|
1356 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1357 | + 'capability' => 'edit_theme_options', |
|
1358 | + 'type' => 'option', |
|
1359 | + 'transport' => 'refresh', |
|
1360 | + )); |
|
1361 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1362 | + 'label' => __('Primary Color','aui'), |
|
1363 | + 'section' => 'aui_settings', |
|
1364 | + 'settings' => 'aui_options[color_primary]', |
|
1365 | + ))); |
|
1366 | + |
|
1367 | + $wp_customize->add_setting('aui_options[color_secondary]', array( |
|
1368 | + 'default' => '#6c757d', |
|
1369 | + 'sanitize_callback' => 'sanitize_hex_color', |
|
1370 | + 'capability' => 'edit_theme_options', |
|
1371 | + 'type' => 'option', |
|
1372 | + 'transport' => 'refresh', |
|
1373 | + )); |
|
1374 | + $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1375 | + 'label' => __('Secondary Color','aui'), |
|
1376 | + 'section' => 'aui_settings', |
|
1377 | + 'settings' => 'aui_options[color_secondary]', |
|
1378 | + ))); |
|
1379 | + } |
|
1380 | 1380 | |
1381 | - /** |
|
1382 | - * CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1383 | - * |
|
1384 | - * @return mixed |
|
1385 | - */ |
|
1386 | - public static function bs3_compat_css() { |
|
1387 | - ob_start(); |
|
1388 | - ?> |
|
1381 | + /** |
|
1382 | + * CSS to help with conflict issues with other plugins and themes using bootstrap v3. |
|
1383 | + * |
|
1384 | + * @return mixed |
|
1385 | + */ |
|
1386 | + public static function bs3_compat_css() { |
|
1387 | + ob_start(); |
|
1388 | + ?> |
|
1389 | 1389 | <style> |
1390 | 1390 | /* Bootstrap 3 compatibility */ |
1391 | 1391 | body.modal-open .modal-backdrop.show:not(.in) {opacity:0.5;} |
@@ -1411,579 +1411,579 @@ discard block |
||
1411 | 1411 | <?php } ?> |
1412 | 1412 | </style> |
1413 | 1413 | <?php |
1414 | - return str_replace( array( |
|
1415 | - '<style>', |
|
1416 | - '</style>' |
|
1417 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1418 | - } |
|
1414 | + return str_replace( array( |
|
1415 | + '<style>', |
|
1416 | + '</style>' |
|
1417 | + ), '', self::minify_css( ob_get_clean() ) ); |
|
1418 | + } |
|
1419 | 1419 | |
1420 | 1420 | |
1421 | - public static function custom_css($compatibility = true) { |
|
1422 | - $settings = get_option('aui_options'); |
|
1421 | + public static function custom_css($compatibility = true) { |
|
1422 | + $settings = get_option('aui_options'); |
|
1423 | 1423 | |
1424 | - ob_start(); |
|
1424 | + ob_start(); |
|
1425 | 1425 | |
1426 | - $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1427 | - $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1428 | - //AUI_PRIMARY_COLOR_ORIGINAL |
|
1429 | - ?> |
|
1426 | + $primary_color = !empty($settings['color_primary']) ? $settings['color_primary'] : AUI_PRIMARY_COLOR; |
|
1427 | + $secondary_color = !empty($settings['color_secondary']) ? $settings['color_secondary'] : AUI_SECONDARY_COLOR; |
|
1428 | + //AUI_PRIMARY_COLOR_ORIGINAL |
|
1429 | + ?> |
|
1430 | 1430 | <style> |
1431 | 1431 | <?php |
1432 | 1432 | |
1433 | - // BS v3 compat |
|
1434 | - if( self::is_bs3_compat() ){ |
|
1435 | - echo self::bs3_compat_css(); |
|
1436 | - } |
|
1433 | + // BS v3 compat |
|
1434 | + if( self::is_bs3_compat() ){ |
|
1435 | + echo self::bs3_compat_css(); |
|
1436 | + } |
|
1437 | 1437 | |
1438 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1439 | - echo self::css_primary($primary_color,$compatibility); |
|
1440 | - } |
|
1438 | + if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1439 | + echo self::css_primary($primary_color,$compatibility); |
|
1440 | + } |
|
1441 | 1441 | |
1442 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1443 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1444 | - } |
|
1442 | + if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1443 | + echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1444 | + } |
|
1445 | 1445 | |
1446 | - // Set admin bar z-index lower when modal is open. |
|
1447 | - echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
|
1446 | + // Set admin bar z-index lower when modal is open. |
|
1447 | + echo ' body.modal-open #wpadminbar{z-index:999}.embed-responsive-16by9 .fluid-width-video-wrapper{padding:0 !important;position:initial}'; |
|
1448 | 1448 | ?> |
1449 | 1449 | </style> |
1450 | 1450 | <?php |
1451 | 1451 | |
1452 | 1452 | |
1453 | - /* |
|
1453 | + /* |
|
1454 | 1454 | * We only add the <script> tags for code highlighting, so we strip them from the output. |
1455 | 1455 | */ |
1456 | - return str_replace( array( |
|
1457 | - '<style>', |
|
1458 | - '</style>' |
|
1459 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1460 | - } |
|
1456 | + return str_replace( array( |
|
1457 | + '<style>', |
|
1458 | + '</style>' |
|
1459 | + ), '', self::minify_css( ob_get_clean() ) ); |
|
1460 | + } |
|
1461 | 1461 | |
1462 | - /** |
|
1463 | - * Check if we should add booststrap 3 compatibility changes. |
|
1464 | - * |
|
1465 | - * @return bool |
|
1466 | - */ |
|
1467 | - public static function is_bs3_compat(){ |
|
1468 | - return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
1469 | - } |
|
1462 | + /** |
|
1463 | + * Check if we should add booststrap 3 compatibility changes. |
|
1464 | + * |
|
1465 | + * @return bool |
|
1466 | + */ |
|
1467 | + public static function is_bs3_compat(){ |
|
1468 | + return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
|
1469 | + } |
|
1470 | 1470 | |
1471 | - public static function css_primary($color_code,$compatibility){; |
|
1472 | - $color_code = sanitize_hex_color($color_code); |
|
1473 | - if(!$color_code){return '';} |
|
1474 | - /** |
|
1475 | - * c = color, b = background color, o = border-color, f = fill |
|
1476 | - */ |
|
1477 | - $selectors = array( |
|
1478 | - 'a' => array('c'), |
|
1479 | - '.btn-primary' => array('b','o'), |
|
1480 | - '.btn-primary.disabled' => array('b','o'), |
|
1481 | - '.btn-primary:disabled' => array('b','o'), |
|
1482 | - '.btn-outline-primary' => array('c','o'), |
|
1483 | - '.btn-outline-primary:hover' => array('b','o'), |
|
1484 | - '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1485 | - '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1486 | - '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1487 | - '.btn-link' => array('c'), |
|
1488 | - '.dropdown-item.active' => array('b'), |
|
1489 | - '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1490 | - '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1471 | + public static function css_primary($color_code,$compatibility){; |
|
1472 | + $color_code = sanitize_hex_color($color_code); |
|
1473 | + if(!$color_code){return '';} |
|
1474 | + /** |
|
1475 | + * c = color, b = background color, o = border-color, f = fill |
|
1476 | + */ |
|
1477 | + $selectors = array( |
|
1478 | + 'a' => array('c'), |
|
1479 | + '.btn-primary' => array('b','o'), |
|
1480 | + '.btn-primary.disabled' => array('b','o'), |
|
1481 | + '.btn-primary:disabled' => array('b','o'), |
|
1482 | + '.btn-outline-primary' => array('c','o'), |
|
1483 | + '.btn-outline-primary:hover' => array('b','o'), |
|
1484 | + '.btn-outline-primary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1485 | + '.btn-outline-primary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1486 | + '.show>.btn-outline-primary.dropdown-toggle' => array('b','o'), |
|
1487 | + '.btn-link' => array('c'), |
|
1488 | + '.dropdown-item.active' => array('b'), |
|
1489 | + '.custom-control-input:checked~.custom-control-label::before' => array('b','o'), |
|
1490 | + '.custom-checkbox .custom-control-input:indeterminate~.custom-control-label::before' => array('b','o'), |
|
1491 | 1491 | // '.custom-range::-webkit-slider-thumb' => array('b'), // these break the inline rules... |
1492 | 1492 | // '.custom-range::-moz-range-thumb' => array('b'), |
1493 | 1493 | // '.custom-range::-ms-thumb' => array('b'), |
1494 | - '.nav-pills .nav-link.active' => array('b'), |
|
1495 | - '.nav-pills .show>.nav-link' => array('b'), |
|
1496 | - '.page-link' => array('c'), |
|
1497 | - '.page-item.active .page-link' => array('b','o'), |
|
1498 | - '.badge-primary' => array('b'), |
|
1499 | - '.alert-primary' => array('b','o'), |
|
1500 | - '.progress-bar' => array('b'), |
|
1501 | - '.list-group-item.active' => array('b','o'), |
|
1502 | - '.bg-primary' => array('b','f'), |
|
1503 | - '.btn-link.btn-primary' => array('c'), |
|
1504 | - '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1505 | - ); |
|
1506 | - |
|
1507 | - $important_selectors = array( |
|
1508 | - '.bg-primary' => array('b','f'), |
|
1509 | - '.border-primary' => array('o'), |
|
1510 | - '.text-primary' => array('c'), |
|
1511 | - ); |
|
1512 | - |
|
1513 | - $color = array(); |
|
1514 | - $color_i = array(); |
|
1515 | - $background = array(); |
|
1516 | - $background_i = array(); |
|
1517 | - $border = array(); |
|
1518 | - $border_i = array(); |
|
1519 | - $fill = array(); |
|
1520 | - $fill_i = array(); |
|
1521 | - |
|
1522 | - $output = ''; |
|
1523 | - |
|
1524 | - // build rules into each type |
|
1525 | - foreach($selectors as $selector => $types){ |
|
1526 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1527 | - $types = array_combine($types,$types); |
|
1528 | - if(isset($types['c'])){$color[] = $selector;} |
|
1529 | - if(isset($types['b'])){$background[] = $selector;} |
|
1530 | - if(isset($types['o'])){$border[] = $selector;} |
|
1531 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1532 | - } |
|
1533 | - |
|
1534 | - // build rules into each type |
|
1535 | - foreach($important_selectors as $selector => $types){ |
|
1536 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1537 | - $types = array_combine($types,$types); |
|
1538 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1539 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1540 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1541 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1542 | - } |
|
1543 | - |
|
1544 | - // add any color rules |
|
1545 | - if(!empty($color)){ |
|
1546 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1547 | - } |
|
1548 | - if(!empty($color_i)){ |
|
1549 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1550 | - } |
|
1551 | - |
|
1552 | - // add any background color rules |
|
1553 | - if(!empty($background)){ |
|
1554 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1555 | - } |
|
1556 | - if(!empty($background_i)){ |
|
1557 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1558 | - } |
|
1559 | - |
|
1560 | - // add any border color rules |
|
1561 | - if(!empty($border)){ |
|
1562 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1563 | - } |
|
1564 | - if(!empty($border_i)){ |
|
1565 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1566 | - } |
|
1567 | - |
|
1568 | - // add any fill color rules |
|
1569 | - if(!empty($fill)){ |
|
1570 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1571 | - } |
|
1572 | - if(!empty($fill_i)){ |
|
1573 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1574 | - } |
|
1575 | - |
|
1576 | - |
|
1577 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1578 | - |
|
1579 | - // darken |
|
1580 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1581 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1582 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1583 | - |
|
1584 | - // lighten |
|
1585 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1586 | - |
|
1587 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1588 | - $op_25 = $color_code."40"; // 25% opacity |
|
1589 | - |
|
1590 | - |
|
1591 | - // button states |
|
1592 | - $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1593 | - $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1594 | - $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1595 | - $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1596 | - |
|
1597 | - |
|
1598 | - // dropdown's |
|
1599 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1600 | - |
|
1601 | - |
|
1602 | - // input states |
|
1603 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1604 | - |
|
1605 | - // page link |
|
1606 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1607 | - |
|
1608 | - return $output; |
|
1609 | - } |
|
1494 | + '.nav-pills .nav-link.active' => array('b'), |
|
1495 | + '.nav-pills .show>.nav-link' => array('b'), |
|
1496 | + '.page-link' => array('c'), |
|
1497 | + '.page-item.active .page-link' => array('b','o'), |
|
1498 | + '.badge-primary' => array('b'), |
|
1499 | + '.alert-primary' => array('b','o'), |
|
1500 | + '.progress-bar' => array('b'), |
|
1501 | + '.list-group-item.active' => array('b','o'), |
|
1502 | + '.bg-primary' => array('b','f'), |
|
1503 | + '.btn-link.btn-primary' => array('c'), |
|
1504 | + '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
|
1505 | + ); |
|
1506 | + |
|
1507 | + $important_selectors = array( |
|
1508 | + '.bg-primary' => array('b','f'), |
|
1509 | + '.border-primary' => array('o'), |
|
1510 | + '.text-primary' => array('c'), |
|
1511 | + ); |
|
1512 | + |
|
1513 | + $color = array(); |
|
1514 | + $color_i = array(); |
|
1515 | + $background = array(); |
|
1516 | + $background_i = array(); |
|
1517 | + $border = array(); |
|
1518 | + $border_i = array(); |
|
1519 | + $fill = array(); |
|
1520 | + $fill_i = array(); |
|
1521 | + |
|
1522 | + $output = ''; |
|
1523 | + |
|
1524 | + // build rules into each type |
|
1525 | + foreach($selectors as $selector => $types){ |
|
1526 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1527 | + $types = array_combine($types,$types); |
|
1528 | + if(isset($types['c'])){$color[] = $selector;} |
|
1529 | + if(isset($types['b'])){$background[] = $selector;} |
|
1530 | + if(isset($types['o'])){$border[] = $selector;} |
|
1531 | + if(isset($types['f'])){$fill[] = $selector;} |
|
1532 | + } |
|
1610 | 1533 | |
1611 | - public static function css_secondary($color_code,$compatibility){; |
|
1612 | - $color_code = sanitize_hex_color($color_code); |
|
1613 | - if(!$color_code){return '';} |
|
1614 | - /** |
|
1615 | - * c = color, b = background color, o = border-color, f = fill |
|
1616 | - */ |
|
1617 | - $selectors = array( |
|
1618 | - '.btn-secondary' => array('b','o'), |
|
1619 | - '.btn-secondary.disabled' => array('b','o'), |
|
1620 | - '.btn-secondary:disabled' => array('b','o'), |
|
1621 | - '.btn-outline-secondary' => array('c','o'), |
|
1622 | - '.btn-outline-secondary:hover' => array('b','o'), |
|
1623 | - '.btn-outline-secondary.disabled' => array('c'), |
|
1624 | - '.btn-outline-secondary:disabled' => array('c'), |
|
1625 | - '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1626 | - '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1627 | - '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1628 | - '.badge-secondary' => array('b'), |
|
1629 | - '.alert-secondary' => array('b','o'), |
|
1630 | - '.btn-link.btn-secondary' => array('c'), |
|
1631 | - ); |
|
1632 | - |
|
1633 | - $important_selectors = array( |
|
1634 | - '.bg-secondary' => array('b','f'), |
|
1635 | - '.border-secondary' => array('o'), |
|
1636 | - '.text-secondary' => array('c'), |
|
1637 | - ); |
|
1638 | - |
|
1639 | - $color = array(); |
|
1640 | - $color_i = array(); |
|
1641 | - $background = array(); |
|
1642 | - $background_i = array(); |
|
1643 | - $border = array(); |
|
1644 | - $border_i = array(); |
|
1645 | - $fill = array(); |
|
1646 | - $fill_i = array(); |
|
1647 | - |
|
1648 | - $output = ''; |
|
1649 | - |
|
1650 | - // build rules into each type |
|
1651 | - foreach($selectors as $selector => $types){ |
|
1652 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1653 | - $types = array_combine($types,$types); |
|
1654 | - if(isset($types['c'])){$color[] = $selector;} |
|
1655 | - if(isset($types['b'])){$background[] = $selector;} |
|
1656 | - if(isset($types['o'])){$border[] = $selector;} |
|
1657 | - if(isset($types['f'])){$fill[] = $selector;} |
|
1658 | - } |
|
1659 | - |
|
1660 | - // build rules into each type |
|
1661 | - foreach($important_selectors as $selector => $types){ |
|
1662 | - $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1663 | - $types = array_combine($types,$types); |
|
1664 | - if(isset($types['c'])){$color_i[] = $selector;} |
|
1665 | - if(isset($types['b'])){$background_i[] = $selector;} |
|
1666 | - if(isset($types['o'])){$border_i[] = $selector;} |
|
1667 | - if(isset($types['f'])){$fill_i[] = $selector;} |
|
1668 | - } |
|
1669 | - |
|
1670 | - // add any color rules |
|
1671 | - if(!empty($color)){ |
|
1672 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1673 | - } |
|
1674 | - if(!empty($color_i)){ |
|
1675 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1676 | - } |
|
1677 | - |
|
1678 | - // add any background color rules |
|
1679 | - if(!empty($background)){ |
|
1680 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1681 | - } |
|
1682 | - if(!empty($background_i)){ |
|
1683 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1684 | - } |
|
1685 | - |
|
1686 | - // add any border color rules |
|
1687 | - if(!empty($border)){ |
|
1688 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1689 | - } |
|
1690 | - if(!empty($border_i)){ |
|
1691 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1692 | - } |
|
1693 | - |
|
1694 | - // add any fill color rules |
|
1695 | - if(!empty($fill)){ |
|
1696 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1697 | - } |
|
1698 | - if(!empty($fill_i)){ |
|
1699 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1700 | - } |
|
1701 | - |
|
1702 | - |
|
1703 | - $prefix = $compatibility ? ".bsui " : ""; |
|
1704 | - |
|
1705 | - // darken |
|
1706 | - $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1707 | - $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1708 | - $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1709 | - |
|
1710 | - // lighten |
|
1711 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1712 | - |
|
1713 | - // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1714 | - $op_25 = $color_code."40"; // 25% opacity |
|
1715 | - |
|
1716 | - |
|
1717 | - // button states |
|
1718 | - $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1719 | - $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1720 | - $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1721 | - $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1722 | - |
|
1723 | - |
|
1724 | - return $output; |
|
1725 | - } |
|
1534 | + // build rules into each type |
|
1535 | + foreach($important_selectors as $selector => $types){ |
|
1536 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1537 | + $types = array_combine($types,$types); |
|
1538 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
1539 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
1540 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
1541 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
1542 | + } |
|
1726 | 1543 | |
1727 | - /** |
|
1728 | - * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1729 | - * |
|
1730 | - * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1731 | - * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1732 | - * |
|
1733 | - * @return string |
|
1734 | - */ |
|
1735 | - public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1736 | - $hexCode = ltrim($hexCode, '#'); |
|
1544 | + // add any color rules |
|
1545 | + if(!empty($color)){ |
|
1546 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1547 | + } |
|
1548 | + if(!empty($color_i)){ |
|
1549 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1550 | + } |
|
1737 | 1551 | |
1738 | - if (strlen($hexCode) == 3) { |
|
1739 | - $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1740 | - } |
|
1552 | + // add any background color rules |
|
1553 | + if(!empty($background)){ |
|
1554 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1555 | + } |
|
1556 | + if(!empty($background_i)){ |
|
1557 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1558 | + } |
|
1741 | 1559 | |
1742 | - $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1560 | + // add any border color rules |
|
1561 | + if(!empty($border)){ |
|
1562 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1563 | + } |
|
1564 | + if(!empty($border_i)){ |
|
1565 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1566 | + } |
|
1743 | 1567 | |
1744 | - foreach ($hexCode as & $color) { |
|
1745 | - $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1746 | - $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1568 | + // add any fill color rules |
|
1569 | + if(!empty($fill)){ |
|
1570 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1571 | + } |
|
1572 | + if(!empty($fill_i)){ |
|
1573 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1574 | + } |
|
1747 | 1575 | |
1748 | - $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1749 | - } |
|
1750 | 1576 | |
1751 | - return '#' . implode($hexCode); |
|
1752 | - } |
|
1577 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1753 | 1578 | |
1754 | - /** |
|
1755 | - * Check if we should display examples. |
|
1756 | - */ |
|
1757 | - public function maybe_show_examples(){ |
|
1758 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1759 | - echo "<head>"; |
|
1760 | - wp_head(); |
|
1761 | - echo "</head>"; |
|
1762 | - echo "<body>"; |
|
1763 | - echo $this->get_examples(); |
|
1764 | - echo "</body>"; |
|
1765 | - exit; |
|
1766 | - } |
|
1767 | - } |
|
1579 | + // darken |
|
1580 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1581 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1582 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1768 | 1583 | |
1769 | - /** |
|
1770 | - * Get developer examples. |
|
1771 | - * |
|
1772 | - * @return string |
|
1773 | - */ |
|
1774 | - public function get_examples(){ |
|
1775 | - $output = ''; |
|
1776 | - |
|
1777 | - |
|
1778 | - // open form |
|
1779 | - $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1780 | - |
|
1781 | - // input example |
|
1782 | - $output .= aui()->input(array( |
|
1783 | - 'type' => 'text', |
|
1784 | - 'id' => 'text-example', |
|
1785 | - 'name' => 'text-example', |
|
1786 | - 'placeholder' => 'text placeholder', |
|
1787 | - 'title' => 'Text input example', |
|
1788 | - 'value' => '', |
|
1789 | - 'required' => false, |
|
1790 | - 'help_text' => 'help text', |
|
1791 | - 'label' => 'Text input example label' |
|
1792 | - )); |
|
1793 | - |
|
1794 | - // input example |
|
1795 | - $output .= aui()->input(array( |
|
1796 | - 'type' => 'url', |
|
1797 | - 'id' => 'text-example2', |
|
1798 | - 'name' => 'text-example', |
|
1799 | - 'placeholder' => 'url placeholder', |
|
1800 | - 'title' => 'Text input example', |
|
1801 | - 'value' => '', |
|
1802 | - 'required' => false, |
|
1803 | - 'help_text' => 'help text', |
|
1804 | - 'label' => 'Text input example label' |
|
1805 | - )); |
|
1806 | - |
|
1807 | - // checkbox example |
|
1808 | - $output .= aui()->input(array( |
|
1809 | - 'type' => 'checkbox', |
|
1810 | - 'id' => 'checkbox-example', |
|
1811 | - 'name' => 'checkbox-example', |
|
1812 | - 'placeholder' => 'checkbox-example', |
|
1813 | - 'title' => 'Checkbox example', |
|
1814 | - 'value' => '1', |
|
1815 | - 'checked' => true, |
|
1816 | - 'required' => false, |
|
1817 | - 'help_text' => 'help text', |
|
1818 | - 'label' => 'Checkbox checked' |
|
1819 | - )); |
|
1820 | - |
|
1821 | - // checkbox example |
|
1822 | - $output .= aui()->input(array( |
|
1823 | - 'type' => 'checkbox', |
|
1824 | - 'id' => 'checkbox-example2', |
|
1825 | - 'name' => 'checkbox-example2', |
|
1826 | - 'placeholder' => 'checkbox-example', |
|
1827 | - 'title' => 'Checkbox example', |
|
1828 | - 'value' => '1', |
|
1829 | - 'checked' => false, |
|
1830 | - 'required' => false, |
|
1831 | - 'help_text' => 'help text', |
|
1832 | - 'label' => 'Checkbox un-checked' |
|
1833 | - )); |
|
1834 | - |
|
1835 | - // switch example |
|
1836 | - $output .= aui()->input(array( |
|
1837 | - 'type' => 'checkbox', |
|
1838 | - 'id' => 'switch-example', |
|
1839 | - 'name' => 'switch-example', |
|
1840 | - 'placeholder' => 'checkbox-example', |
|
1841 | - 'title' => 'Switch example', |
|
1842 | - 'value' => '1', |
|
1843 | - 'checked' => true, |
|
1844 | - 'switch' => true, |
|
1845 | - 'required' => false, |
|
1846 | - 'help_text' => 'help text', |
|
1847 | - 'label' => 'Switch on' |
|
1848 | - )); |
|
1849 | - |
|
1850 | - // switch example |
|
1851 | - $output .= aui()->input(array( |
|
1852 | - 'type' => 'checkbox', |
|
1853 | - 'id' => 'switch-example2', |
|
1854 | - 'name' => 'switch-example2', |
|
1855 | - 'placeholder' => 'checkbox-example', |
|
1856 | - 'title' => 'Switch example', |
|
1857 | - 'value' => '1', |
|
1858 | - 'checked' => false, |
|
1859 | - 'switch' => true, |
|
1860 | - 'required' => false, |
|
1861 | - 'help_text' => 'help text', |
|
1862 | - 'label' => 'Switch off' |
|
1863 | - )); |
|
1864 | - |
|
1865 | - // close form |
|
1866 | - $output .= "</form>"; |
|
1867 | - |
|
1868 | - return $output; |
|
1869 | - } |
|
1584 | + // lighten |
|
1585 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1870 | 1586 | |
1871 | - /** |
|
1872 | - * Calendar params. |
|
1873 | - * |
|
1874 | - * @since 0.1.44 |
|
1875 | - * |
|
1876 | - * @return array Calendar params. |
|
1877 | - */ |
|
1878 | - public static function calendar_params() { |
|
1879 | - $params = array( |
|
1880 | - 'month_long_1' => __( 'January', 'aui' ), |
|
1881 | - 'month_long_2' => __( 'February', 'aui' ), |
|
1882 | - 'month_long_3' => __( 'March', 'aui' ), |
|
1883 | - 'month_long_4' => __( 'April', 'aui' ), |
|
1884 | - 'month_long_5' => __( 'May', 'aui' ), |
|
1885 | - 'month_long_6' => __( 'June', 'aui' ), |
|
1886 | - 'month_long_7' => __( 'July', 'aui' ), |
|
1887 | - 'month_long_8' => __( 'August', 'aui' ), |
|
1888 | - 'month_long_9' => __( 'September', 'aui' ), |
|
1889 | - 'month_long_10' => __( 'October', 'aui' ), |
|
1890 | - 'month_long_11' => __( 'November', 'aui' ), |
|
1891 | - 'month_long_12' => __( 'December', 'aui' ), |
|
1892 | - 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
1893 | - 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
1894 | - 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
1895 | - 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
1896 | - 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
1897 | - 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
1898 | - 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
1899 | - 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
1900 | - 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
1901 | - 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
1902 | - 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
1903 | - 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
1904 | - 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
1905 | - 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
1906 | - 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
1907 | - 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
1908 | - 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
1909 | - 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
1910 | - 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
1911 | - 'day_s2_1' => __( 'Su', 'aui' ), |
|
1912 | - 'day_s2_2' => __( 'Mo', 'aui' ), |
|
1913 | - 'day_s2_3' => __( 'Tu', 'aui' ), |
|
1914 | - 'day_s2_4' => __( 'We', 'aui' ), |
|
1915 | - 'day_s2_5' => __( 'Th', 'aui' ), |
|
1916 | - 'day_s2_6' => __( 'Fr', 'aui' ), |
|
1917 | - 'day_s2_7' => __( 'Sa', 'aui' ), |
|
1918 | - 'day_s3_1' => __( 'Sun', 'aui' ), |
|
1919 | - 'day_s3_2' => __( 'Mon', 'aui' ), |
|
1920 | - 'day_s3_3' => __( 'Tue', 'aui' ), |
|
1921 | - 'day_s3_4' => __( 'Wed', 'aui' ), |
|
1922 | - 'day_s3_5' => __( 'Thu', 'aui' ), |
|
1923 | - 'day_s3_6' => __( 'Fri', 'aui' ), |
|
1924 | - 'day_s3_7' => __( 'Sat', 'aui' ), |
|
1925 | - 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
1926 | - 'day_s5_2' => __( 'Monday', 'aui' ), |
|
1927 | - 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
1928 | - 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
1929 | - 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
1930 | - 'day_s5_6' => __( 'Friday', 'aui' ), |
|
1931 | - 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
1932 | - 'am_lower' => __( 'am', 'aui' ), |
|
1933 | - 'pm_lower' => __( 'pm', 'aui' ), |
|
1934 | - 'am_upper' => __( 'AM', 'aui' ), |
|
1935 | - 'pm_upper' => __( 'PM', 'aui' ), |
|
1936 | - 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
1937 | - 'time_24hr' => false, |
|
1938 | - 'year' => __( 'Year', 'aui' ), |
|
1939 | - 'hour' => __( 'Hour', 'aui' ), |
|
1940 | - 'minute' => __( 'Minute', 'aui' ), |
|
1941 | - 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
1942 | - 'rangeSeparator' => __( ' to ', 'aui' ), |
|
1943 | - 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
1944 | - 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
1945 | - ); |
|
1946 | - |
|
1947 | - return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
1948 | - } |
|
1587 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1588 | + $op_25 = $color_code."40"; // 25% opacity |
|
1949 | 1589 | |
1950 | - /** |
|
1951 | - * Flatpickr calendar localize. |
|
1952 | - * |
|
1953 | - * @since 0.1.44 |
|
1954 | - * |
|
1955 | - * @return string Calendar locale. |
|
1956 | - */ |
|
1957 | - public static function flatpickr_locale() { |
|
1958 | - $params = self::calendar_params(); |
|
1959 | - |
|
1960 | - if ( is_string( $params ) ) { |
|
1961 | - $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
1962 | - } else { |
|
1963 | - foreach ( (array) $params as $key => $value ) { |
|
1964 | - if ( ! is_scalar( $value ) ) { |
|
1965 | - continue; |
|
1966 | - } |
|
1967 | 1590 | |
1968 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
1969 | - } |
|
1970 | - } |
|
1591 | + // button states |
|
1592 | + $output .= $prefix ." .btn-primary:hover, $prefix .btn-primary:focus, $prefix .btn-primary.focus{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1593 | + $output .= $prefix ." .btn-outline-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-primary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1594 | + $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active, $prefix .btn-primary:not(:disabled):not(.disabled).active, .show>$prefix .btn-primary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1595 | + $output .= $prefix ." .btn-primary:not(:disabled):not(.disabled):active:focus, $prefix .btn-primary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-primary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1596 | + |
|
1597 | + |
|
1598 | + // dropdown's |
|
1599 | + $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1971 | 1600 | |
1972 | - $day_s3 = array(); |
|
1973 | - $day_s5 = array(); |
|
1974 | 1601 | |
1975 | - for ( $i = 1; $i <= 7; $i ++ ) { |
|
1976 | - $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
1977 | - $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
1978 | - } |
|
1602 | + // input states |
|
1603 | + $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1979 | 1604 | |
1980 | - $month_s = array(); |
|
1981 | - $month_long = array(); |
|
1605 | + // page link |
|
1606 | + $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1607 | + |
|
1608 | + return $output; |
|
1609 | + } |
|
1610 | + |
|
1611 | + public static function css_secondary($color_code,$compatibility){; |
|
1612 | + $color_code = sanitize_hex_color($color_code); |
|
1613 | + if(!$color_code){return '';} |
|
1614 | + /** |
|
1615 | + * c = color, b = background color, o = border-color, f = fill |
|
1616 | + */ |
|
1617 | + $selectors = array( |
|
1618 | + '.btn-secondary' => array('b','o'), |
|
1619 | + '.btn-secondary.disabled' => array('b','o'), |
|
1620 | + '.btn-secondary:disabled' => array('b','o'), |
|
1621 | + '.btn-outline-secondary' => array('c','o'), |
|
1622 | + '.btn-outline-secondary:hover' => array('b','o'), |
|
1623 | + '.btn-outline-secondary.disabled' => array('c'), |
|
1624 | + '.btn-outline-secondary:disabled' => array('c'), |
|
1625 | + '.btn-outline-secondary:not(:disabled):not(.disabled):active' => array('b','o'), |
|
1626 | + '.btn-outline-secondary:not(:disabled):not(.disabled).active' => array('b','o'), |
|
1627 | + '.btn-outline-secondary.dropdown-toggle' => array('b','o'), |
|
1628 | + '.badge-secondary' => array('b'), |
|
1629 | + '.alert-secondary' => array('b','o'), |
|
1630 | + '.btn-link.btn-secondary' => array('c'), |
|
1631 | + ); |
|
1632 | + |
|
1633 | + $important_selectors = array( |
|
1634 | + '.bg-secondary' => array('b','f'), |
|
1635 | + '.border-secondary' => array('o'), |
|
1636 | + '.text-secondary' => array('c'), |
|
1637 | + ); |
|
1638 | + |
|
1639 | + $color = array(); |
|
1640 | + $color_i = array(); |
|
1641 | + $background = array(); |
|
1642 | + $background_i = array(); |
|
1643 | + $border = array(); |
|
1644 | + $border_i = array(); |
|
1645 | + $fill = array(); |
|
1646 | + $fill_i = array(); |
|
1647 | + |
|
1648 | + $output = ''; |
|
1649 | + |
|
1650 | + // build rules into each type |
|
1651 | + foreach($selectors as $selector => $types){ |
|
1652 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1653 | + $types = array_combine($types,$types); |
|
1654 | + if(isset($types['c'])){$color[] = $selector;} |
|
1655 | + if(isset($types['b'])){$background[] = $selector;} |
|
1656 | + if(isset($types['o'])){$border[] = $selector;} |
|
1657 | + if(isset($types['f'])){$fill[] = $selector;} |
|
1658 | + } |
|
1659 | + |
|
1660 | + // build rules into each type |
|
1661 | + foreach($important_selectors as $selector => $types){ |
|
1662 | + $selector = $compatibility ? ".bsui ".$selector : $selector; |
|
1663 | + $types = array_combine($types,$types); |
|
1664 | + if(isset($types['c'])){$color_i[] = $selector;} |
|
1665 | + if(isset($types['b'])){$background_i[] = $selector;} |
|
1666 | + if(isset($types['o'])){$border_i[] = $selector;} |
|
1667 | + if(isset($types['f'])){$fill_i[] = $selector;} |
|
1668 | + } |
|
1982 | 1669 | |
1983 | - for ( $i = 1; $i <= 12; $i ++ ) { |
|
1984 | - $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
1985 | - $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
1986 | - } |
|
1670 | + // add any color rules |
|
1671 | + if(!empty($color)){ |
|
1672 | + $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1673 | + } |
|
1674 | + if(!empty($color_i)){ |
|
1675 | + $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1676 | + } |
|
1677 | + |
|
1678 | + // add any background color rules |
|
1679 | + if(!empty($background)){ |
|
1680 | + $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1681 | + } |
|
1682 | + if(!empty($background_i)){ |
|
1683 | + $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1684 | + } |
|
1685 | + |
|
1686 | + // add any border color rules |
|
1687 | + if(!empty($border)){ |
|
1688 | + $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1689 | + } |
|
1690 | + if(!empty($border_i)){ |
|
1691 | + $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1692 | + } |
|
1693 | + |
|
1694 | + // add any fill color rules |
|
1695 | + if(!empty($fill)){ |
|
1696 | + $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1697 | + } |
|
1698 | + if(!empty($fill_i)){ |
|
1699 | + $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1700 | + } |
|
1701 | + |
|
1702 | + |
|
1703 | + $prefix = $compatibility ? ".bsui " : ""; |
|
1704 | + |
|
1705 | + // darken |
|
1706 | + $darker_075 = self::css_hex_lighten_darken($color_code,"-0.075"); |
|
1707 | + $darker_10 = self::css_hex_lighten_darken($color_code,"-0.10"); |
|
1708 | + $darker_125 = self::css_hex_lighten_darken($color_code,"-0.125"); |
|
1709 | + |
|
1710 | + // lighten |
|
1711 | + $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1712 | + |
|
1713 | + // opacity see https://css-tricks.com/8-digit-hex-codes/ |
|
1714 | + $op_25 = $color_code."40"; // 25% opacity |
|
1715 | + |
|
1716 | + |
|
1717 | + // button states |
|
1718 | + $output .= $prefix ." .btn-secondary:hover{background-color: ".$darker_075."; border-color: ".$darker_10.";} "; |
|
1719 | + $output .= $prefix ." .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-outline-secondary.dropdown-toggle:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1720 | + $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active, $prefix .btn-secondary:not(:disabled):not(.disabled).active, .show>$prefix .btn-secondary.dropdown-toggle{background-color: ".$darker_10."; border-color: ".$darker_125.";} "; |
|
1721 | + $output .= $prefix ." .btn-secondary:not(:disabled):not(.disabled):active:focus, $prefix .btn-secondary:not(:disabled):not(.disabled).active:focus, .show>$prefix .btn-secondary.dropdown-toggle:focus {box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1722 | + |
|
1723 | + |
|
1724 | + return $output; |
|
1725 | + } |
|
1726 | + |
|
1727 | + /** |
|
1728 | + * Increases or decreases the brightness of a color by a percentage of the current brightness. |
|
1729 | + * |
|
1730 | + * @param string $hexCode Supported formats: `#FFF`, `#FFFFFF`, `FFF`, `FFFFFF` |
|
1731 | + * @param float $adjustPercent A number between -1 and 1. E.g. 0.3 = 30% lighter; -0.4 = 40% darker. |
|
1732 | + * |
|
1733 | + * @return string |
|
1734 | + */ |
|
1735 | + public static function css_hex_lighten_darken($hexCode, $adjustPercent) { |
|
1736 | + $hexCode = ltrim($hexCode, '#'); |
|
1737 | + |
|
1738 | + if (strlen($hexCode) == 3) { |
|
1739 | + $hexCode = $hexCode[0] . $hexCode[0] . $hexCode[1] . $hexCode[1] . $hexCode[2] . $hexCode[2]; |
|
1740 | + } |
|
1741 | + |
|
1742 | + $hexCode = array_map('hexdec', str_split($hexCode, 2)); |
|
1743 | + |
|
1744 | + foreach ($hexCode as & $color) { |
|
1745 | + $adjustableLimit = $adjustPercent < 0 ? $color : 255 - $color; |
|
1746 | + $adjustAmount = ceil($adjustableLimit * $adjustPercent); |
|
1747 | + |
|
1748 | + $color = str_pad(dechex($color + $adjustAmount), 2, '0', STR_PAD_LEFT); |
|
1749 | + } |
|
1750 | + |
|
1751 | + return '#' . implode($hexCode); |
|
1752 | + } |
|
1753 | + |
|
1754 | + /** |
|
1755 | + * Check if we should display examples. |
|
1756 | + */ |
|
1757 | + public function maybe_show_examples(){ |
|
1758 | + if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1759 | + echo "<head>"; |
|
1760 | + wp_head(); |
|
1761 | + echo "</head>"; |
|
1762 | + echo "<body>"; |
|
1763 | + echo $this->get_examples(); |
|
1764 | + echo "</body>"; |
|
1765 | + exit; |
|
1766 | + } |
|
1767 | + } |
|
1768 | + |
|
1769 | + /** |
|
1770 | + * Get developer examples. |
|
1771 | + * |
|
1772 | + * @return string |
|
1773 | + */ |
|
1774 | + public function get_examples(){ |
|
1775 | + $output = ''; |
|
1776 | + |
|
1777 | + |
|
1778 | + // open form |
|
1779 | + $output .= "<form class='p-5 m-5 border rounded'>"; |
|
1780 | + |
|
1781 | + // input example |
|
1782 | + $output .= aui()->input(array( |
|
1783 | + 'type' => 'text', |
|
1784 | + 'id' => 'text-example', |
|
1785 | + 'name' => 'text-example', |
|
1786 | + 'placeholder' => 'text placeholder', |
|
1787 | + 'title' => 'Text input example', |
|
1788 | + 'value' => '', |
|
1789 | + 'required' => false, |
|
1790 | + 'help_text' => 'help text', |
|
1791 | + 'label' => 'Text input example label' |
|
1792 | + )); |
|
1793 | + |
|
1794 | + // input example |
|
1795 | + $output .= aui()->input(array( |
|
1796 | + 'type' => 'url', |
|
1797 | + 'id' => 'text-example2', |
|
1798 | + 'name' => 'text-example', |
|
1799 | + 'placeholder' => 'url placeholder', |
|
1800 | + 'title' => 'Text input example', |
|
1801 | + 'value' => '', |
|
1802 | + 'required' => false, |
|
1803 | + 'help_text' => 'help text', |
|
1804 | + 'label' => 'Text input example label' |
|
1805 | + )); |
|
1806 | + |
|
1807 | + // checkbox example |
|
1808 | + $output .= aui()->input(array( |
|
1809 | + 'type' => 'checkbox', |
|
1810 | + 'id' => 'checkbox-example', |
|
1811 | + 'name' => 'checkbox-example', |
|
1812 | + 'placeholder' => 'checkbox-example', |
|
1813 | + 'title' => 'Checkbox example', |
|
1814 | + 'value' => '1', |
|
1815 | + 'checked' => true, |
|
1816 | + 'required' => false, |
|
1817 | + 'help_text' => 'help text', |
|
1818 | + 'label' => 'Checkbox checked' |
|
1819 | + )); |
|
1820 | + |
|
1821 | + // checkbox example |
|
1822 | + $output .= aui()->input(array( |
|
1823 | + 'type' => 'checkbox', |
|
1824 | + 'id' => 'checkbox-example2', |
|
1825 | + 'name' => 'checkbox-example2', |
|
1826 | + 'placeholder' => 'checkbox-example', |
|
1827 | + 'title' => 'Checkbox example', |
|
1828 | + 'value' => '1', |
|
1829 | + 'checked' => false, |
|
1830 | + 'required' => false, |
|
1831 | + 'help_text' => 'help text', |
|
1832 | + 'label' => 'Checkbox un-checked' |
|
1833 | + )); |
|
1834 | + |
|
1835 | + // switch example |
|
1836 | + $output .= aui()->input(array( |
|
1837 | + 'type' => 'checkbox', |
|
1838 | + 'id' => 'switch-example', |
|
1839 | + 'name' => 'switch-example', |
|
1840 | + 'placeholder' => 'checkbox-example', |
|
1841 | + 'title' => 'Switch example', |
|
1842 | + 'value' => '1', |
|
1843 | + 'checked' => true, |
|
1844 | + 'switch' => true, |
|
1845 | + 'required' => false, |
|
1846 | + 'help_text' => 'help text', |
|
1847 | + 'label' => 'Switch on' |
|
1848 | + )); |
|
1849 | + |
|
1850 | + // switch example |
|
1851 | + $output .= aui()->input(array( |
|
1852 | + 'type' => 'checkbox', |
|
1853 | + 'id' => 'switch-example2', |
|
1854 | + 'name' => 'switch-example2', |
|
1855 | + 'placeholder' => 'checkbox-example', |
|
1856 | + 'title' => 'Switch example', |
|
1857 | + 'value' => '1', |
|
1858 | + 'checked' => false, |
|
1859 | + 'switch' => true, |
|
1860 | + 'required' => false, |
|
1861 | + 'help_text' => 'help text', |
|
1862 | + 'label' => 'Switch off' |
|
1863 | + )); |
|
1864 | + |
|
1865 | + // close form |
|
1866 | + $output .= "</form>"; |
|
1867 | + |
|
1868 | + return $output; |
|
1869 | + } |
|
1870 | + |
|
1871 | + /** |
|
1872 | + * Calendar params. |
|
1873 | + * |
|
1874 | + * @since 0.1.44 |
|
1875 | + * |
|
1876 | + * @return array Calendar params. |
|
1877 | + */ |
|
1878 | + public static function calendar_params() { |
|
1879 | + $params = array( |
|
1880 | + 'month_long_1' => __( 'January', 'aui' ), |
|
1881 | + 'month_long_2' => __( 'February', 'aui' ), |
|
1882 | + 'month_long_3' => __( 'March', 'aui' ), |
|
1883 | + 'month_long_4' => __( 'April', 'aui' ), |
|
1884 | + 'month_long_5' => __( 'May', 'aui' ), |
|
1885 | + 'month_long_6' => __( 'June', 'aui' ), |
|
1886 | + 'month_long_7' => __( 'July', 'aui' ), |
|
1887 | + 'month_long_8' => __( 'August', 'aui' ), |
|
1888 | + 'month_long_9' => __( 'September', 'aui' ), |
|
1889 | + 'month_long_10' => __( 'October', 'aui' ), |
|
1890 | + 'month_long_11' => __( 'November', 'aui' ), |
|
1891 | + 'month_long_12' => __( 'December', 'aui' ), |
|
1892 | + 'month_s_1' => _x( 'Jan', 'January abbreviation', 'aui' ), |
|
1893 | + 'month_s_2' => _x( 'Feb', 'February abbreviation', 'aui' ), |
|
1894 | + 'month_s_3' => _x( 'Mar', 'March abbreviation', 'aui' ), |
|
1895 | + 'month_s_4' => _x( 'Apr', 'April abbreviation', 'aui' ), |
|
1896 | + 'month_s_5' => _x( 'May', 'May abbreviation', 'aui' ), |
|
1897 | + 'month_s_6' => _x( 'Jun', 'June abbreviation', 'aui' ), |
|
1898 | + 'month_s_7' => _x( 'Jul', 'July abbreviation', 'aui' ), |
|
1899 | + 'month_s_8' => _x( 'Aug', 'August abbreviation', 'aui' ), |
|
1900 | + 'month_s_9' => _x( 'Sep', 'September abbreviation', 'aui' ), |
|
1901 | + 'month_s_10' => _x( 'Oct', 'October abbreviation', 'aui' ), |
|
1902 | + 'month_s_11' => _x( 'Nov', 'November abbreviation', 'aui' ), |
|
1903 | + 'month_s_12' => _x( 'Dec', 'December abbreviation', 'aui' ), |
|
1904 | + 'day_s1_1' => _x( 'S', 'Sunday initial', 'aui' ), |
|
1905 | + 'day_s1_2' => _x( 'M', 'Monday initial', 'aui' ), |
|
1906 | + 'day_s1_3' => _x( 'T', 'Tuesday initial', 'aui' ), |
|
1907 | + 'day_s1_4' => _x( 'W', 'Wednesday initial', 'aui' ), |
|
1908 | + 'day_s1_5' => _x( 'T', 'Friday initial', 'aui' ), |
|
1909 | + 'day_s1_6' => _x( 'F', 'Thursday initial', 'aui' ), |
|
1910 | + 'day_s1_7' => _x( 'S', 'Saturday initial', 'aui' ), |
|
1911 | + 'day_s2_1' => __( 'Su', 'aui' ), |
|
1912 | + 'day_s2_2' => __( 'Mo', 'aui' ), |
|
1913 | + 'day_s2_3' => __( 'Tu', 'aui' ), |
|
1914 | + 'day_s2_4' => __( 'We', 'aui' ), |
|
1915 | + 'day_s2_5' => __( 'Th', 'aui' ), |
|
1916 | + 'day_s2_6' => __( 'Fr', 'aui' ), |
|
1917 | + 'day_s2_7' => __( 'Sa', 'aui' ), |
|
1918 | + 'day_s3_1' => __( 'Sun', 'aui' ), |
|
1919 | + 'day_s3_2' => __( 'Mon', 'aui' ), |
|
1920 | + 'day_s3_3' => __( 'Tue', 'aui' ), |
|
1921 | + 'day_s3_4' => __( 'Wed', 'aui' ), |
|
1922 | + 'day_s3_5' => __( 'Thu', 'aui' ), |
|
1923 | + 'day_s3_6' => __( 'Fri', 'aui' ), |
|
1924 | + 'day_s3_7' => __( 'Sat', 'aui' ), |
|
1925 | + 'day_s5_1' => __( 'Sunday', 'aui' ), |
|
1926 | + 'day_s5_2' => __( 'Monday', 'aui' ), |
|
1927 | + 'day_s5_3' => __( 'Tuesday', 'aui' ), |
|
1928 | + 'day_s5_4' => __( 'Wednesday', 'aui' ), |
|
1929 | + 'day_s5_5' => __( 'Thursday', 'aui' ), |
|
1930 | + 'day_s5_6' => __( 'Friday', 'aui' ), |
|
1931 | + 'day_s5_7' => __( 'Saturday', 'aui' ), |
|
1932 | + 'am_lower' => __( 'am', 'aui' ), |
|
1933 | + 'pm_lower' => __( 'pm', 'aui' ), |
|
1934 | + 'am_upper' => __( 'AM', 'aui' ), |
|
1935 | + 'pm_upper' => __( 'PM', 'aui' ), |
|
1936 | + 'firstDayOfWeek' => (int) get_option( 'start_of_week' ), |
|
1937 | + 'time_24hr' => false, |
|
1938 | + 'year' => __( 'Year', 'aui' ), |
|
1939 | + 'hour' => __( 'Hour', 'aui' ), |
|
1940 | + 'minute' => __( 'Minute', 'aui' ), |
|
1941 | + 'weekAbbreviation' => __( 'Wk', 'aui' ), |
|
1942 | + 'rangeSeparator' => __( ' to ', 'aui' ), |
|
1943 | + 'scrollTitle' => __( 'Scroll to increment', 'aui' ), |
|
1944 | + 'toggleTitle' => __( 'Click to toggle', 'aui' ) |
|
1945 | + ); |
|
1946 | + |
|
1947 | + return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
1948 | + } |
|
1949 | + |
|
1950 | + /** |
|
1951 | + * Flatpickr calendar localize. |
|
1952 | + * |
|
1953 | + * @since 0.1.44 |
|
1954 | + * |
|
1955 | + * @return string Calendar locale. |
|
1956 | + */ |
|
1957 | + public static function flatpickr_locale() { |
|
1958 | + $params = self::calendar_params(); |
|
1959 | + |
|
1960 | + if ( is_string( $params ) ) { |
|
1961 | + $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
1962 | + } else { |
|
1963 | + foreach ( (array) $params as $key => $value ) { |
|
1964 | + if ( ! is_scalar( $value ) ) { |
|
1965 | + continue; |
|
1966 | + } |
|
1967 | + |
|
1968 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
1969 | + } |
|
1970 | + } |
|
1971 | + |
|
1972 | + $day_s3 = array(); |
|
1973 | + $day_s5 = array(); |
|
1974 | + |
|
1975 | + for ( $i = 1; $i <= 7; $i ++ ) { |
|
1976 | + $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
1977 | + $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
1978 | + } |
|
1979 | + |
|
1980 | + $month_s = array(); |
|
1981 | + $month_long = array(); |
|
1982 | + |
|
1983 | + for ( $i = 1; $i <= 12; $i ++ ) { |
|
1984 | + $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
1985 | + $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
1986 | + } |
|
1987 | 1987 | |
1988 | 1988 | ob_start(); |
1989 | 1989 | if ( 0 ) { ?><script><?php } ?> |
@@ -2025,189 +2025,189 @@ discard block |
||
2025 | 2025 | } |
2026 | 2026 | <?php if ( 0 ) { ?></script><?php } ?> |
2027 | 2027 | <?php |
2028 | - $locale = ob_get_clean(); |
|
2028 | + $locale = ob_get_clean(); |
|
2029 | 2029 | |
2030 | - return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
2031 | - } |
|
2030 | + return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
2031 | + } |
|
2032 | 2032 | |
2033 | - /** |
|
2034 | - * Select2 JS params. |
|
2035 | - * |
|
2036 | - * @since 0.1.44 |
|
2037 | - * |
|
2038 | - * @return array Select2 JS params. |
|
2039 | - */ |
|
2040 | - public static function select2_params() { |
|
2041 | - $params = array( |
|
2042 | - 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
2043 | - 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
2044 | - 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
2045 | - 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
2046 | - 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
2047 | - 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
2048 | - 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
2049 | - 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
2050 | - 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
2051 | - 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
2052 | - 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
2053 | - ); |
|
2054 | - |
|
2055 | - return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
2056 | - } |
|
2033 | + /** |
|
2034 | + * Select2 JS params. |
|
2035 | + * |
|
2036 | + * @since 0.1.44 |
|
2037 | + * |
|
2038 | + * @return array Select2 JS params. |
|
2039 | + */ |
|
2040 | + public static function select2_params() { |
|
2041 | + $params = array( |
|
2042 | + 'i18n_select_state_text' => esc_attr__( 'Select an option…', 'aui' ), |
|
2043 | + 'i18n_no_matches' => _x( 'No matches found', 'enhanced select', 'aui' ), |
|
2044 | + 'i18n_ajax_error' => _x( 'Loading failed', 'enhanced select', 'aui' ), |
|
2045 | + 'i18n_input_too_short_1' => _x( 'Please enter 1 or more characters', 'enhanced select', 'aui' ), |
|
2046 | + 'i18n_input_too_short_n' => _x( 'Please enter %item% or more characters', 'enhanced select', 'aui' ), |
|
2047 | + 'i18n_input_too_long_1' => _x( 'Please delete 1 character', 'enhanced select', 'aui' ), |
|
2048 | + 'i18n_input_too_long_n' => _x( 'Please delete %item% characters', 'enhanced select', 'aui' ), |
|
2049 | + 'i18n_selection_too_long_1' => _x( 'You can only select 1 item', 'enhanced select', 'aui' ), |
|
2050 | + 'i18n_selection_too_long_n' => _x( 'You can only select %item% items', 'enhanced select', 'aui' ), |
|
2051 | + 'i18n_load_more' => _x( 'Loading more results…', 'enhanced select', 'aui' ), |
|
2052 | + 'i18n_searching' => _x( 'Searching…', 'enhanced select', 'aui' ) |
|
2053 | + ); |
|
2054 | + |
|
2055 | + return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
2056 | + } |
|
2057 | 2057 | |
2058 | - /** |
|
2059 | - * Select2 JS localize. |
|
2060 | - * |
|
2061 | - * @since 0.1.44 |
|
2062 | - * |
|
2063 | - * @return string Select2 JS locale. |
|
2064 | - */ |
|
2065 | - public static function select2_locale() { |
|
2066 | - $params = self::select2_params(); |
|
2067 | - |
|
2068 | - foreach ( (array) $params as $key => $value ) { |
|
2069 | - if ( ! is_scalar( $value ) ) { |
|
2070 | - continue; |
|
2071 | - } |
|
2058 | + /** |
|
2059 | + * Select2 JS localize. |
|
2060 | + * |
|
2061 | + * @since 0.1.44 |
|
2062 | + * |
|
2063 | + * @return string Select2 JS locale. |
|
2064 | + */ |
|
2065 | + public static function select2_locale() { |
|
2066 | + $params = self::select2_params(); |
|
2067 | + |
|
2068 | + foreach ( (array) $params as $key => $value ) { |
|
2069 | + if ( ! is_scalar( $value ) ) { |
|
2070 | + continue; |
|
2071 | + } |
|
2072 | 2072 | |
2073 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2074 | - } |
|
2073 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2074 | + } |
|
2075 | 2075 | |
2076 | - $locale = json_encode( $params ); |
|
2076 | + $locale = json_encode( $params ); |
|
2077 | 2077 | |
2078 | - return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
2079 | - } |
|
2078 | + return apply_filters( 'ayecode_ui_select2_locale', trim( $locale ) ); |
|
2079 | + } |
|
2080 | 2080 | |
2081 | - /** |
|
2082 | - * Time ago JS localize. |
|
2083 | - * |
|
2084 | - * @since 0.1.47 |
|
2085 | - * |
|
2086 | - * @return string Time ago JS locale. |
|
2087 | - */ |
|
2088 | - public static function timeago_locale() { |
|
2089 | - $params = array( |
|
2090 | - 'prefix_ago' => '', |
|
2091 | - 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
2092 | - 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
2093 | - 'suffix_after' => '', |
|
2094 | - 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
2095 | - 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
2096 | - 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
2097 | - 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
2098 | - 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
2099 | - 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
2100 | - 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
2101 | - 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
2102 | - 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
2103 | - 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
2104 | - 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
2105 | - ); |
|
2106 | - |
|
2107 | - $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
2108 | - |
|
2109 | - foreach ( (array) $params as $key => $value ) { |
|
2110 | - if ( ! is_scalar( $value ) ) { |
|
2111 | - continue; |
|
2112 | - } |
|
2081 | + /** |
|
2082 | + * Time ago JS localize. |
|
2083 | + * |
|
2084 | + * @since 0.1.47 |
|
2085 | + * |
|
2086 | + * @return string Time ago JS locale. |
|
2087 | + */ |
|
2088 | + public static function timeago_locale() { |
|
2089 | + $params = array( |
|
2090 | + 'prefix_ago' => '', |
|
2091 | + 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
2092 | + 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
2093 | + 'suffix_after' => '', |
|
2094 | + 'seconds' => _x( 'less than a minute', 'time ago', 'aui' ), |
|
2095 | + 'minute' => _x( 'about a minute', 'time ago', 'aui' ), |
|
2096 | + 'minutes' => _x( '%d minutes', 'time ago', 'aui' ), |
|
2097 | + 'hour' => _x( 'about an hour', 'time ago', 'aui' ), |
|
2098 | + 'hours' => _x( 'about %d hours', 'time ago', 'aui' ), |
|
2099 | + 'day' => _x( 'a day', 'time ago', 'aui' ), |
|
2100 | + 'days' => _x( '%d days', 'time ago', 'aui' ), |
|
2101 | + 'month' => _x( 'about a month', 'time ago', 'aui' ), |
|
2102 | + 'months' => _x( '%d months', 'time ago', 'aui' ), |
|
2103 | + 'year' => _x( 'about a year', 'time ago', 'aui' ), |
|
2104 | + 'years' => _x( '%d years', 'time ago', 'aui' ), |
|
2105 | + ); |
|
2106 | + |
|
2107 | + $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
2108 | + |
|
2109 | + foreach ( (array) $params as $key => $value ) { |
|
2110 | + if ( ! is_scalar( $value ) ) { |
|
2111 | + continue; |
|
2112 | + } |
|
2113 | 2113 | |
2114 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2115 | - } |
|
2114 | + $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2115 | + } |
|
2116 | 2116 | |
2117 | - $locale = json_encode( $params ); |
|
2117 | + $locale = json_encode( $params ); |
|
2118 | 2118 | |
2119 | - return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
2120 | - } |
|
2119 | + return apply_filters( 'ayecode_ui_timeago_locale', trim( $locale ) ); |
|
2120 | + } |
|
2121 | 2121 | |
2122 | - /** |
|
2123 | - * JavaScript Minifier |
|
2124 | - * |
|
2125 | - * @param $input |
|
2126 | - * |
|
2127 | - * @return mixed |
|
2128 | - */ |
|
2129 | - public static function minify_js($input) { |
|
2130 | - if(trim($input) === "") return $input; |
|
2131 | - return preg_replace( |
|
2132 | - array( |
|
2133 | - // Remove comment(s) |
|
2134 | - '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
|
2135 | - // Remove white-space(s) outside the string and regex |
|
2136 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
|
2137 | - // Remove the last semicolon |
|
2138 | - '#;+\}#', |
|
2139 | - // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
|
2140 | - '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
|
2141 | - // --ibid. From `foo['bar']` to `foo.bar` |
|
2142 | - '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
|
2143 | - ), |
|
2144 | - array( |
|
2145 | - '$1', |
|
2146 | - '$1$2', |
|
2147 | - '}', |
|
2148 | - '$1$3', |
|
2149 | - '$1.$3' |
|
2150 | - ), |
|
2151 | - $input); |
|
2152 | - } |
|
2122 | + /** |
|
2123 | + * JavaScript Minifier |
|
2124 | + * |
|
2125 | + * @param $input |
|
2126 | + * |
|
2127 | + * @return mixed |
|
2128 | + */ |
|
2129 | + public static function minify_js($input) { |
|
2130 | + if(trim($input) === "") return $input; |
|
2131 | + return preg_replace( |
|
2132 | + array( |
|
2133 | + // Remove comment(s) |
|
2134 | + '#\s*("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')\s*|\s*\/\*(?!\!|@cc_on)(?>[\s\S]*?\*\/)\s*|\s*(?<![\:\=])\/\/.*(?=[\n\r]|$)|^\s*|\s*$#', |
|
2135 | + // Remove white-space(s) outside the string and regex |
|
2136 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/)|\/(?!\/)[^\n\r]*?\/(?=[\s.,;]|[gimuy]|$))|\s*([!%&*\(\)\-=+\[\]\{\}|;:,.<>?\/])\s*#s', |
|
2137 | + // Remove the last semicolon |
|
2138 | + '#;+\}#', |
|
2139 | + // Minify object attribute(s) except JSON attribute(s). From `{'foo':'bar'}` to `{foo:'bar'}` |
|
2140 | + '#([\{,])([\'])(\d+|[a-z_][a-z0-9_]*)\2(?=\:)#i', |
|
2141 | + // --ibid. From `foo['bar']` to `foo.bar` |
|
2142 | + '#([a-z0-9_\)\]])\[([\'"])([a-z_][a-z0-9_]*)\2\]#i' |
|
2143 | + ), |
|
2144 | + array( |
|
2145 | + '$1', |
|
2146 | + '$1$2', |
|
2147 | + '}', |
|
2148 | + '$1$3', |
|
2149 | + '$1.$3' |
|
2150 | + ), |
|
2151 | + $input); |
|
2152 | + } |
|
2153 | 2153 | |
2154 | - /** |
|
2155 | - * Minify CSS |
|
2156 | - * |
|
2157 | - * @param $input |
|
2158 | - * |
|
2159 | - * @return mixed |
|
2160 | - */ |
|
2161 | - public static function minify_css($input) { |
|
2162 | - if(trim($input) === "") return $input; |
|
2163 | - return preg_replace( |
|
2164 | - array( |
|
2165 | - // Remove comment(s) |
|
2166 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
|
2167 | - // Remove unused white-space(s) |
|
2168 | - '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
|
2169 | - // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
|
2170 | - '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
|
2171 | - // Replace `:0 0 0 0` with `:0` |
|
2172 | - '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
|
2173 | - // Replace `background-position:0` with `background-position:0 0` |
|
2174 | - '#(background-position):0(?=[;\}])#si', |
|
2175 | - // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
|
2176 | - '#(?<=[\s:,\-])0+\.(\d+)#s', |
|
2177 | - // Minify string value |
|
2178 | - '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
|
2179 | - '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
|
2180 | - // Minify HEX color code |
|
2181 | - '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
|
2182 | - // Replace `(border|outline):none` with `(border|outline):0` |
|
2183 | - '#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
|
2184 | - // Remove empty selector(s) |
|
2185 | - '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
|
2186 | - ), |
|
2187 | - array( |
|
2188 | - '$1', |
|
2189 | - '$1$2$3$4$5$6$7', |
|
2190 | - '$1', |
|
2191 | - ':0', |
|
2192 | - '$1:0 0', |
|
2193 | - '.$1', |
|
2194 | - '$1$3', |
|
2195 | - '$1$2$4$5', |
|
2196 | - '$1$2$3', |
|
2197 | - '$1:0', |
|
2198 | - '$1$2' |
|
2199 | - ), |
|
2200 | - $input); |
|
2201 | - } |
|
2154 | + /** |
|
2155 | + * Minify CSS |
|
2156 | + * |
|
2157 | + * @param $input |
|
2158 | + * |
|
2159 | + * @return mixed |
|
2160 | + */ |
|
2161 | + public static function minify_css($input) { |
|
2162 | + if(trim($input) === "") return $input; |
|
2163 | + return preg_replace( |
|
2164 | + array( |
|
2165 | + // Remove comment(s) |
|
2166 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')|\/\*(?!\!)(?>.*?\*\/)|^\s*|\s*$#s', |
|
2167 | + // Remove unused white-space(s) |
|
2168 | + '#("(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\'|\/\*(?>.*?\*\/))|\s*+;\s*+(})\s*+|\s*+([*$~^|]?+=|[{};,>~]|\s(?![0-9\.])|!important\b)\s*+|([[(:])\s++|\s++([])])|\s++(:)\s*+(?!(?>[^{}"\']++|"(?:[^"\\\]++|\\\.)*+"|\'(?:[^\'\\\\]++|\\\.)*+\')*+{)|^\s++|\s++\z|(\s)\s+#si', |
|
2169 | + // Replace `0(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)` with `0` |
|
2170 | + '#(?<=[\s:])(0)(cm|em|ex|in|mm|pc|pt|px|vh|vw|%)#si', |
|
2171 | + // Replace `:0 0 0 0` with `:0` |
|
2172 | + '#:(0\s+0|0\s+0\s+0\s+0)(?=[;\}]|\!important)#i', |
|
2173 | + // Replace `background-position:0` with `background-position:0 0` |
|
2174 | + '#(background-position):0(?=[;\}])#si', |
|
2175 | + // Replace `0.6` with `.6`, but only when preceded by `:`, `,`, `-` or a white-space |
|
2176 | + '#(?<=[\s:,\-])0+\.(\d+)#s', |
|
2177 | + // Minify string value |
|
2178 | + '#(\/\*(?>.*?\*\/))|(?<!content\:)([\'"])([a-z_][a-z0-9\-_]*?)\2(?=[\s\{\}\];,])#si', |
|
2179 | + '#(\/\*(?>.*?\*\/))|(\burl\()([\'"])([^\s]+?)\3(\))#si', |
|
2180 | + // Minify HEX color code |
|
2181 | + '#(?<=[\s:,\-]\#)([a-f0-6]+)\1([a-f0-6]+)\2([a-f0-6]+)\3#i', |
|
2182 | + // Replace `(border|outline):none` with `(border|outline):0` |
|
2183 | + '#(?<=[\{;])(border|outline):none(?=[;\}\!])#', |
|
2184 | + // Remove empty selector(s) |
|
2185 | + '#(\/\*(?>.*?\*\/))|(^|[\{\}])(?:[^\s\{\}]+)\{\}#s' |
|
2186 | + ), |
|
2187 | + array( |
|
2188 | + '$1', |
|
2189 | + '$1$2$3$4$5$6$7', |
|
2190 | + '$1', |
|
2191 | + ':0', |
|
2192 | + '$1:0 0', |
|
2193 | + '.$1', |
|
2194 | + '$1$3', |
|
2195 | + '$1$2$4$5', |
|
2196 | + '$1$2$3', |
|
2197 | + '$1:0', |
|
2198 | + '$1$2' |
|
2199 | + ), |
|
2200 | + $input); |
|
2201 | + } |
|
2202 | 2202 | |
2203 | - /** |
|
2204 | - * Get the conditional fields JavaScript. |
|
2205 | - * |
|
2206 | - * @return mixed |
|
2207 | - */ |
|
2208 | - public function conditional_fields_js() { |
|
2209 | - ob_start(); |
|
2210 | - ?> |
|
2203 | + /** |
|
2204 | + * Get the conditional fields JavaScript. |
|
2205 | + * |
|
2206 | + * @return mixed |
|
2207 | + */ |
|
2208 | + public function conditional_fields_js() { |
|
2209 | + ob_start(); |
|
2210 | + ?> |
|
2211 | 2211 | <script> |
2212 | 2212 | /** |
2213 | 2213 | * Conditional Fields |
@@ -2711,14 +2711,14 @@ discard block |
||
2711 | 2711 | <?php do_action( 'aui_conditional_fields_js', $this ); ?> |
2712 | 2712 | </script> |
2713 | 2713 | <?php |
2714 | - $output = ob_get_clean(); |
|
2714 | + $output = ob_get_clean(); |
|
2715 | 2715 | |
2716 | - return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
2717 | - } |
|
2718 | - } |
|
2716 | + return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
2717 | + } |
|
2718 | + } |
|
2719 | 2719 | |
2720 | - /** |
|
2721 | - * Run the class if found. |
|
2722 | - */ |
|
2723 | - AyeCode_UI_Settings::instance(); |
|
2720 | + /** |
|
2721 | + * Run the class if found. |
|
2722 | + */ |
|
2723 | + AyeCode_UI_Settings::instance(); |
|
2724 | 2724 | } |
2725 | 2725 | \ No newline at end of file |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | if ( ! defined( 'ABSPATH' ) ) { |
4 | - exit; // Exit if accessed directly |
|
4 | + exit; // Exit if accessed directly |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | /** |
@@ -11,231 +11,231 @@ discard block |
||
11 | 11 | */ |
12 | 12 | class AUI { |
13 | 13 | |
14 | - /** |
|
15 | - * Holds the class instance. |
|
16 | - * |
|
17 | - * @since 1.0.0 |
|
18 | - * @var null |
|
19 | - */ |
|
20 | - private static $instance = null; |
|
21 | - |
|
22 | - /** |
|
23 | - * Holds the current AUI version number. |
|
24 | - * |
|
25 | - * @var string $ver The current version number. |
|
26 | - */ |
|
27 | - public static $ver = '0.1.62'; |
|
28 | - |
|
29 | - public static $options = null; |
|
30 | - |
|
31 | - /** |
|
32 | - * There can be only one. |
|
33 | - * |
|
34 | - * @since 1.0.0 |
|
35 | - * @return AUI|null |
|
36 | - */ |
|
37 | - public static function instance() { |
|
38 | - if ( self::$instance == null ) { |
|
39 | - self::$instance = new AUI(); |
|
40 | - } |
|
41 | - |
|
42 | - return self::$instance; |
|
43 | - } |
|
44 | - |
|
45 | - /** |
|
46 | - * AUI constructor. |
|
47 | - * |
|
48 | - * @since 1.0.0 |
|
49 | - */ |
|
50 | - private function __construct() { |
|
51 | - if ( function_exists( "__autoload" ) ) { |
|
52 | - spl_autoload_register( "__autoload" ); |
|
53 | - } |
|
54 | - spl_autoload_register( array( $this, 'autoload' ) ); |
|
55 | - |
|
56 | - // load options |
|
57 | - self::$options = get_option('aui_options'); |
|
58 | - } |
|
59 | - |
|
60 | - /** |
|
61 | - * Autoload any components on the fly. |
|
62 | - * |
|
63 | - * @since 1.0.0 |
|
64 | - * |
|
65 | - * @param $classname |
|
66 | - */ |
|
67 | - private function autoload( $classname ) { |
|
68 | - $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
69 | - $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
70 | - if ( $file_path && is_readable( $file_path ) ) { |
|
71 | - include_once( $file_path ); |
|
72 | - } |
|
73 | - } |
|
74 | - |
|
75 | - /** |
|
76 | - * Get the AUI options. |
|
77 | - * |
|
78 | - * @param $option |
|
79 | - * |
|
80 | - * @return string|void |
|
81 | - */ |
|
82 | - public function get_option( $option ){ |
|
83 | - $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
|
84 | - |
|
85 | - if ( ! $result && $option) { |
|
86 | - if( $option == 'color_primary' ){ |
|
87 | - $result = AUI_PRIMARY_COLOR; |
|
88 | - }elseif( $option == 'color_secondary' ){ |
|
89 | - $result = AUI_SECONDARY_COLOR; |
|
90 | - } |
|
91 | - } |
|
92 | - return $result; |
|
93 | - } |
|
94 | - |
|
95 | - public function render( $items = array() ) { |
|
96 | - $output = ''; |
|
97 | - |
|
98 | - if ( ! empty( $items ) ) { |
|
99 | - foreach ( $items as $args ) { |
|
100 | - $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
101 | - if ( $render && method_exists( __CLASS__, $render ) ) { |
|
102 | - $output .= $this->$render( $args ); |
|
103 | - } |
|
104 | - } |
|
105 | - } |
|
106 | - |
|
107 | - return $output; |
|
108 | - } |
|
109 | - |
|
110 | - /** |
|
111 | - * Render and return a bootstrap alert component. |
|
112 | - * |
|
113 | - * @since 1.0.0 |
|
114 | - * |
|
115 | - * @param array $args |
|
116 | - * |
|
117 | - * @return string The rendered component. |
|
118 | - */ |
|
119 | - public function alert( $args = array() ) { |
|
120 | - return AUI_Component_Alert::get( $args ); |
|
121 | - } |
|
122 | - |
|
123 | - /** |
|
124 | - * Render and return a bootstrap input component. |
|
125 | - * |
|
126 | - * @since 1.0.0 |
|
127 | - * |
|
128 | - * @param array $args |
|
129 | - * |
|
130 | - * @return string The rendered component. |
|
131 | - */ |
|
132 | - public function input( $args = array() ) { |
|
133 | - return AUI_Component_Input::input( $args ); |
|
134 | - } |
|
135 | - |
|
136 | - /** |
|
137 | - * Render and return a bootstrap textarea component. |
|
138 | - * |
|
139 | - * @since 1.0.0 |
|
140 | - * |
|
141 | - * @param array $args |
|
142 | - * |
|
143 | - * @return string The rendered component. |
|
144 | - */ |
|
145 | - public function textarea( $args = array() ) { |
|
146 | - return AUI_Component_Input::textarea( $args ); |
|
147 | - } |
|
148 | - |
|
149 | - /** |
|
150 | - * Render and return a bootstrap button component. |
|
151 | - * |
|
152 | - * @since 1.0.0 |
|
153 | - * |
|
154 | - * @param array $args |
|
155 | - * |
|
156 | - * @return string The rendered component. |
|
157 | - */ |
|
158 | - public function button( $args = array() ) { |
|
159 | - return AUI_Component_Button::get( $args ); |
|
160 | - } |
|
161 | - |
|
162 | - /** |
|
163 | - * Render and return a bootstrap button component. |
|
164 | - * |
|
165 | - * @since 1.0.0 |
|
166 | - * |
|
167 | - * @param array $args |
|
168 | - * |
|
169 | - * @return string The rendered component. |
|
170 | - */ |
|
171 | - public function badge( $args = array() ) { |
|
172 | - $defaults = array( |
|
173 | - 'class' => 'badge badge-primary align-middle', |
|
174 | - ); |
|
175 | - |
|
176 | - // maybe set type |
|
177 | - if ( empty( $args['href'] ) ) { |
|
178 | - $defaults['type'] = 'badge'; |
|
179 | - } |
|
180 | - |
|
181 | - /** |
|
182 | - * Parse incoming $args into an array and merge it with $defaults |
|
183 | - */ |
|
184 | - $args = wp_parse_args( $args, $defaults ); |
|
185 | - |
|
186 | - return AUI_Component_Button::get( $args ); |
|
187 | - } |
|
188 | - |
|
189 | - /** |
|
190 | - * Render and return a bootstrap dropdown component. |
|
191 | - * |
|
192 | - * @since 1.0.0 |
|
193 | - * |
|
194 | - * @param array $args |
|
195 | - * |
|
196 | - * @return string The rendered component. |
|
197 | - */ |
|
198 | - public function dropdown( $args = array() ) { |
|
199 | - return AUI_Component_Dropdown::get( $args ); |
|
200 | - } |
|
201 | - |
|
202 | - /** |
|
203 | - * Render and return a bootstrap select component. |
|
204 | - * |
|
205 | - * @since 1.0.0 |
|
206 | - * |
|
207 | - * @param array $args |
|
208 | - * |
|
209 | - * @return string The rendered component. |
|
210 | - */ |
|
211 | - public function select( $args = array() ) { |
|
212 | - return AUI_Component_Input::select( $args ); |
|
213 | - } |
|
214 | - |
|
215 | - /** |
|
216 | - * Render and return a bootstrap radio component. |
|
217 | - * |
|
218 | - * @since 1.0.0 |
|
219 | - * |
|
220 | - * @param array $args |
|
221 | - * |
|
222 | - * @return string The rendered component. |
|
223 | - */ |
|
224 | - public function radio( $args = array() ) { |
|
225 | - return AUI_Component_Input::radio( $args ); |
|
226 | - } |
|
227 | - |
|
228 | - /** |
|
229 | - * Render and return a bootstrap pagination component. |
|
230 | - * |
|
231 | - * @since 1.0.0 |
|
232 | - * |
|
233 | - * @param array $args |
|
234 | - * |
|
235 | - * @return string The rendered component. |
|
236 | - */ |
|
237 | - public function pagination( $args = array() ) { |
|
238 | - return AUI_Component_Pagination::get( $args ); |
|
239 | - } |
|
14 | + /** |
|
15 | + * Holds the class instance. |
|
16 | + * |
|
17 | + * @since 1.0.0 |
|
18 | + * @var null |
|
19 | + */ |
|
20 | + private static $instance = null; |
|
21 | + |
|
22 | + /** |
|
23 | + * Holds the current AUI version number. |
|
24 | + * |
|
25 | + * @var string $ver The current version number. |
|
26 | + */ |
|
27 | + public static $ver = '0.1.62'; |
|
28 | + |
|
29 | + public static $options = null; |
|
30 | + |
|
31 | + /** |
|
32 | + * There can be only one. |
|
33 | + * |
|
34 | + * @since 1.0.0 |
|
35 | + * @return AUI|null |
|
36 | + */ |
|
37 | + public static function instance() { |
|
38 | + if ( self::$instance == null ) { |
|
39 | + self::$instance = new AUI(); |
|
40 | + } |
|
41 | + |
|
42 | + return self::$instance; |
|
43 | + } |
|
44 | + |
|
45 | + /** |
|
46 | + * AUI constructor. |
|
47 | + * |
|
48 | + * @since 1.0.0 |
|
49 | + */ |
|
50 | + private function __construct() { |
|
51 | + if ( function_exists( "__autoload" ) ) { |
|
52 | + spl_autoload_register( "__autoload" ); |
|
53 | + } |
|
54 | + spl_autoload_register( array( $this, 'autoload' ) ); |
|
55 | + |
|
56 | + // load options |
|
57 | + self::$options = get_option('aui_options'); |
|
58 | + } |
|
59 | + |
|
60 | + /** |
|
61 | + * Autoload any components on the fly. |
|
62 | + * |
|
63 | + * @since 1.0.0 |
|
64 | + * |
|
65 | + * @param $classname |
|
66 | + */ |
|
67 | + private function autoload( $classname ) { |
|
68 | + $class = str_replace( '_', '-', strtolower( $classname ) ); |
|
69 | + $file_path = trailingslashit( dirname( __FILE__ ) ) . "components/class-" . $class . '.php'; |
|
70 | + if ( $file_path && is_readable( $file_path ) ) { |
|
71 | + include_once( $file_path ); |
|
72 | + } |
|
73 | + } |
|
74 | + |
|
75 | + /** |
|
76 | + * Get the AUI options. |
|
77 | + * |
|
78 | + * @param $option |
|
79 | + * |
|
80 | + * @return string|void |
|
81 | + */ |
|
82 | + public function get_option( $option ){ |
|
83 | + $result = isset(self::$options[$option]) ? esc_attr(self::$options[$option]) : ''; |
|
84 | + |
|
85 | + if ( ! $result && $option) { |
|
86 | + if( $option == 'color_primary' ){ |
|
87 | + $result = AUI_PRIMARY_COLOR; |
|
88 | + }elseif( $option == 'color_secondary' ){ |
|
89 | + $result = AUI_SECONDARY_COLOR; |
|
90 | + } |
|
91 | + } |
|
92 | + return $result; |
|
93 | + } |
|
94 | + |
|
95 | + public function render( $items = array() ) { |
|
96 | + $output = ''; |
|
97 | + |
|
98 | + if ( ! empty( $items ) ) { |
|
99 | + foreach ( $items as $args ) { |
|
100 | + $render = isset( $args['render'] ) ? $args['render'] : ''; |
|
101 | + if ( $render && method_exists( __CLASS__, $render ) ) { |
|
102 | + $output .= $this->$render( $args ); |
|
103 | + } |
|
104 | + } |
|
105 | + } |
|
106 | + |
|
107 | + return $output; |
|
108 | + } |
|
109 | + |
|
110 | + /** |
|
111 | + * Render and return a bootstrap alert component. |
|
112 | + * |
|
113 | + * @since 1.0.0 |
|
114 | + * |
|
115 | + * @param array $args |
|
116 | + * |
|
117 | + * @return string The rendered component. |
|
118 | + */ |
|
119 | + public function alert( $args = array() ) { |
|
120 | + return AUI_Component_Alert::get( $args ); |
|
121 | + } |
|
122 | + |
|
123 | + /** |
|
124 | + * Render and return a bootstrap input component. |
|
125 | + * |
|
126 | + * @since 1.0.0 |
|
127 | + * |
|
128 | + * @param array $args |
|
129 | + * |
|
130 | + * @return string The rendered component. |
|
131 | + */ |
|
132 | + public function input( $args = array() ) { |
|
133 | + return AUI_Component_Input::input( $args ); |
|
134 | + } |
|
135 | + |
|
136 | + /** |
|
137 | + * Render and return a bootstrap textarea component. |
|
138 | + * |
|
139 | + * @since 1.0.0 |
|
140 | + * |
|
141 | + * @param array $args |
|
142 | + * |
|
143 | + * @return string The rendered component. |
|
144 | + */ |
|
145 | + public function textarea( $args = array() ) { |
|
146 | + return AUI_Component_Input::textarea( $args ); |
|
147 | + } |
|
148 | + |
|
149 | + /** |
|
150 | + * Render and return a bootstrap button component. |
|
151 | + * |
|
152 | + * @since 1.0.0 |
|
153 | + * |
|
154 | + * @param array $args |
|
155 | + * |
|
156 | + * @return string The rendered component. |
|
157 | + */ |
|
158 | + public function button( $args = array() ) { |
|
159 | + return AUI_Component_Button::get( $args ); |
|
160 | + } |
|
161 | + |
|
162 | + /** |
|
163 | + * Render and return a bootstrap button component. |
|
164 | + * |
|
165 | + * @since 1.0.0 |
|
166 | + * |
|
167 | + * @param array $args |
|
168 | + * |
|
169 | + * @return string The rendered component. |
|
170 | + */ |
|
171 | + public function badge( $args = array() ) { |
|
172 | + $defaults = array( |
|
173 | + 'class' => 'badge badge-primary align-middle', |
|
174 | + ); |
|
175 | + |
|
176 | + // maybe set type |
|
177 | + if ( empty( $args['href'] ) ) { |
|
178 | + $defaults['type'] = 'badge'; |
|
179 | + } |
|
180 | + |
|
181 | + /** |
|
182 | + * Parse incoming $args into an array and merge it with $defaults |
|
183 | + */ |
|
184 | + $args = wp_parse_args( $args, $defaults ); |
|
185 | + |
|
186 | + return AUI_Component_Button::get( $args ); |
|
187 | + } |
|
188 | + |
|
189 | + /** |
|
190 | + * Render and return a bootstrap dropdown component. |
|
191 | + * |
|
192 | + * @since 1.0.0 |
|
193 | + * |
|
194 | + * @param array $args |
|
195 | + * |
|
196 | + * @return string The rendered component. |
|
197 | + */ |
|
198 | + public function dropdown( $args = array() ) { |
|
199 | + return AUI_Component_Dropdown::get( $args ); |
|
200 | + } |
|
201 | + |
|
202 | + /** |
|
203 | + * Render and return a bootstrap select component. |
|
204 | + * |
|
205 | + * @since 1.0.0 |
|
206 | + * |
|
207 | + * @param array $args |
|
208 | + * |
|
209 | + * @return string The rendered component. |
|
210 | + */ |
|
211 | + public function select( $args = array() ) { |
|
212 | + return AUI_Component_Input::select( $args ); |
|
213 | + } |
|
214 | + |
|
215 | + /** |
|
216 | + * Render and return a bootstrap radio component. |
|
217 | + * |
|
218 | + * @since 1.0.0 |
|
219 | + * |
|
220 | + * @param array $args |
|
221 | + * |
|
222 | + * @return string The rendered component. |
|
223 | + */ |
|
224 | + public function radio( $args = array() ) { |
|
225 | + return AUI_Component_Input::radio( $args ); |
|
226 | + } |
|
227 | + |
|
228 | + /** |
|
229 | + * Render and return a bootstrap pagination component. |
|
230 | + * |
|
231 | + * @since 1.0.0 |
|
232 | + * |
|
233 | + * @param array $args |
|
234 | + * |
|
235 | + * @return string The rendered component. |
|
236 | + */ |
|
237 | + public function pagination( $args = array() ) { |
|
238 | + return AUI_Component_Pagination::get( $args ); |
|
239 | + } |
|
240 | 240 | |
241 | 241 | } |
242 | 242 | \ No newline at end of file |
@@ -7,40 +7,40 @@ |
||
7 | 7 | * Bail if we are not in WP. |
8 | 8 | */ |
9 | 9 | if ( ! defined( 'ABSPATH' ) ) { |
10 | - exit; |
|
10 | + exit; |
|
11 | 11 | } |
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Set the version only if its the current newest while loading. |
15 | 15 | */ |
16 | 16 | add_action('after_setup_theme', function () { |
17 | - global $ayecode_ui_version,$ayecode_ui_file_key; |
|
18 | - $this_version = "0.1.62"; |
|
19 | - if(version_compare($this_version , $ayecode_ui_version, '>')){ |
|
20 | - $ayecode_ui_version = $this_version ; |
|
21 | - $ayecode_ui_file_key = wp_hash( __FILE__ ); |
|
22 | - } |
|
17 | + global $ayecode_ui_version,$ayecode_ui_file_key; |
|
18 | + $this_version = "0.1.62"; |
|
19 | + if(version_compare($this_version , $ayecode_ui_version, '>')){ |
|
20 | + $ayecode_ui_version = $this_version ; |
|
21 | + $ayecode_ui_file_key = wp_hash( __FILE__ ); |
|
22 | + } |
|
23 | 23 | },0); |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Load this version of WP Bootstrap Settings only if the file hash is the current one. |
27 | 27 | */ |
28 | 28 | add_action('after_setup_theme', function () { |
29 | - global $ayecode_ui_file_key; |
|
30 | - if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){ |
|
31 | - include_once( dirname( __FILE__ ) . '/includes/class-aui.php' ); |
|
32 | - include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' ); |
|
33 | - } |
|
29 | + global $ayecode_ui_file_key; |
|
30 | + if($ayecode_ui_file_key && $ayecode_ui_file_key == wp_hash( __FILE__ )){ |
|
31 | + include_once( dirname( __FILE__ ) . '/includes/class-aui.php' ); |
|
32 | + include_once( dirname( __FILE__ ) . '/includes/ayecode-ui-settings.php' ); |
|
33 | + } |
|
34 | 34 | },1); |
35 | 35 | |
36 | 36 | /** |
37 | 37 | * Add the function that calls the class. |
38 | 38 | */ |
39 | 39 | if(!function_exists('aui')){ |
40 | - function aui(){ |
|
41 | - if(!class_exists("AUI",false)){ |
|
42 | - return false; |
|
43 | - } |
|
44 | - return AUI::instance(); |
|
45 | - } |
|
40 | + function aui(){ |
|
41 | + if(!class_exists("AUI",false)){ |
|
42 | + return false; |
|
43 | + } |
|
44 | + return AUI::instance(); |
|
45 | + } |
|
46 | 46 | } |
47 | 47 | \ No newline at end of file |