@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | * |
8 | 8 | */ |
9 | 9 | |
10 | -if ( ! defined( 'ABSPATH' ) ) { |
|
10 | +if (!defined('ABSPATH')) { |
|
11 | 11 | exit; // Exit if accessed directly |
12 | 12 | } |
13 | 13 | |
@@ -21,27 +21,27 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param WP_Post $post |
23 | 23 | */ |
24 | - public static function output( $post ) { |
|
24 | + public static function output($post) { |
|
25 | 25 | |
26 | 26 | // Prepare the item. |
27 | - $item = new WPInv_Item( $post ); |
|
27 | + $item = new WPInv_Item($post); |
|
28 | 28 | |
29 | 29 | // Nonce field. |
30 | - wp_nonce_field( 'getpaid_meta_nonce', 'getpaid_meta_nonce' ); |
|
30 | + wp_nonce_field('getpaid_meta_nonce', 'getpaid_meta_nonce'); |
|
31 | 31 | |
32 | 32 | // Set the currency position. |
33 | 33 | $position = wpinv_currency_position(); |
34 | 34 | |
35 | - if ( $position == 'left_space' ) { |
|
35 | + if ($position == 'left_space') { |
|
36 | 36 | $position = 'left'; |
37 | 37 | } |
38 | 38 | |
39 | - if ( $position == 'right_space' ) { |
|
39 | + if ($position == 'right_space') { |
|
40 | 40 | $position = 'right'; |
41 | 41 | } |
42 | 42 | |
43 | 43 | ?> |
44 | - <input type="hidden" id="_wpi_current_type" value="<?php echo esc_attr( $item->get_type( 'edit' ) ); ?>" /> |
|
44 | + <input type="hidden" id="_wpi_current_type" value="<?php echo esc_attr($item->get_type('edit')); ?>" /> |
|
45 | 45 | <style> |
46 | 46 | #poststuff .input-group-text, |
47 | 47 | #poststuff .form-control { |
@@ -55,21 +55,21 @@ discard block |
||
55 | 55 | </style> |
56 | 56 | <div class='bsui' style='max-width: 600px;padding-top: 10px;'> |
57 | 57 | |
58 | - <?php do_action( 'wpinv_item_details_metabox_before_price', $item ); ?> |
|
58 | + <?php do_action('wpinv_item_details_metabox_before_price', $item); ?> |
|
59 | 59 | <div class="form-group row"> |
60 | - <label class="col-sm-3 col-form-label" for="wpinv_item_price"><span><?php _e( 'Item Price', 'invoicing' )?></span></label> |
|
60 | + <label class="col-sm-3 col-form-label" for="wpinv_item_price"><span><?php _e('Item Price', 'invoicing')?></span></label> |
|
61 | 61 | <div class="col-sm-8"> |
62 | 62 | <div class="row"> |
63 | 63 | <div class="col-sm-4 getpaid-price-input"> |
64 | 64 | <div class="input-group input-group-sm"> |
65 | - <?php if( 'left' == $position ) : ?> |
|
65 | + <?php if ('left' == $position) : ?> |
|
66 | 66 | <div class="input-group-prepend"> |
67 | 67 | <span class="input-group-text" id="wpinv_item_price_symbol"><?php echo wpinv_currency_symbol(); ?></span> |
68 | 68 | </div> |
69 | 69 | <?php endif; ?> |
70 | - <input type="text" name="wpinv_item_price" id="wpinv_item_price" value="<?php echo esc_attr( getpaid_unstandardize_amount( $item->get_price( 'edit' ) ) ); ?>" placeholder="<?php echo esc_attr( wpinv_sanitize_amount( 0 ) ); ?>" class="form-control"> |
|
70 | + <input type="text" name="wpinv_item_price" id="wpinv_item_price" value="<?php echo esc_attr(getpaid_unstandardize_amount($item->get_price('edit'))); ?>" placeholder="<?php echo esc_attr(wpinv_sanitize_amount(0)); ?>" class="form-control"> |
|
71 | 71 | |
72 | - <?php if( 'left' != $position ) : ?> |
|
72 | + <?php if ('left' != $position) : ?> |
|
73 | 73 | <div class="input-group-append"> |
74 | 74 | <span class="input-group-text" id="wpinv_item_price_symbol"><?php echo wpinv_currency_symbol(); ?></span> |
75 | 75 | </div> |
@@ -79,10 +79,10 @@ discard block |
||
79 | 79 | </div> |
80 | 80 | <div class="col-sm-4 wpinv_show_if_recurring"> |
81 | 81 | <?php |
82 | - _e( 'every' ); |
|
82 | + _e('every'); |
|
83 | 83 | echo " "; |
84 | 84 | ?> |
85 | - <input type="number" style="max-width: 60px;" value="<?php echo esc_attr( $item->get_recurring_interval( 'edit' ) ); ?>" placeholder="1" name="wpinv_recurring_interval" id="wpinv_recurring_interval" /> |
|
85 | + <input type="number" style="max-width: 60px;" value="<?php echo esc_attr($item->get_recurring_interval('edit')); ?>" placeholder="1" name="wpinv_recurring_interval" id="wpinv_recurring_interval" /> |
|
86 | 86 | </div> |
87 | 87 | <div class="col-sm-4 wpinv_show_if_recurring"> |
88 | 88 | <?php |
@@ -90,16 +90,16 @@ discard block |
||
90 | 90 | array( |
91 | 91 | 'id' => 'wpinv_recurring_period', |
92 | 92 | 'name' => 'wpinv_recurring_period', |
93 | - 'label' => __( 'Period', 'invoicing' ), |
|
94 | - 'placeholder' => __( 'Select Period', 'invoicing' ), |
|
95 | - 'value' => $item->get_recurring_period( 'edit' ), |
|
93 | + 'label' => __('Period', 'invoicing'), |
|
94 | + 'placeholder' => __('Select Period', 'invoicing'), |
|
95 | + 'value' => $item->get_recurring_period('edit'), |
|
96 | 96 | 'select2' => true, |
97 | 97 | 'data-allow-clear' => 'false', |
98 | 98 | 'options' => array( |
99 | - 'D' => __( 'day(s)', 'invoicing' ), |
|
100 | - 'W' => __( 'week(s)', 'invoicing' ), |
|
101 | - 'M' => __( 'month(s)', 'invoicing' ), |
|
102 | - 'Y' => __( 'year(s)', 'invoicing' ), |
|
99 | + 'D' => __('day(s)', 'invoicing'), |
|
100 | + 'W' => __('week(s)', 'invoicing'), |
|
101 | + 'M' => __('month(s)', 'invoicing'), |
|
102 | + 'Y' => __('year(s)', 'invoicing'), |
|
103 | 103 | ) |
104 | 104 | ) |
105 | 105 | ); |
@@ -111,9 +111,9 @@ discard block |
||
111 | 111 | <?php |
112 | 112 | |
113 | 113 | // Dynamic pricing. |
114 | - if( $item->supports_dynamic_pricing() ) { |
|
114 | + if ($item->supports_dynamic_pricing()) { |
|
115 | 115 | |
116 | - do_action( 'wpinv_item_details_metabox_before_dynamic_pricing_checkbox', $item ); |
|
116 | + do_action('wpinv_item_details_metabox_before_dynamic_pricing_checkbox', $item); |
|
117 | 117 | |
118 | 118 | // NYP toggle. |
119 | 119 | echo aui()->input( |
@@ -121,31 +121,31 @@ discard block |
||
121 | 121 | 'id' => 'wpinv_name_your_price', |
122 | 122 | 'name' => 'wpinv_name_your_price', |
123 | 123 | 'type' => 'checkbox', |
124 | - 'label' => apply_filters( 'wpinv_name_your_price_toggle_text', __( 'Let customers name their price', 'invoicing' ) ), |
|
124 | + 'label' => apply_filters('wpinv_name_your_price_toggle_text', __('Let customers name their price', 'invoicing')), |
|
125 | 125 | 'value' => '1', |
126 | 126 | 'checked' => $item->user_can_set_their_price(), |
127 | 127 | 'no_wrap' => true, |
128 | 128 | ) |
129 | 129 | ); |
130 | 130 | |
131 | - do_action( 'wpinv_item_details_metabox_dynamic_pricing_checkbox', $item ); |
|
131 | + do_action('wpinv_item_details_metabox_dynamic_pricing_checkbox', $item); |
|
132 | 132 | |
133 | 133 | } |
134 | 134 | |
135 | 135 | // Subscriptions. |
136 | - do_action( 'wpinv_item_details_metabox_before_subscription_checkbox', $item ); |
|
136 | + do_action('wpinv_item_details_metabox_before_subscription_checkbox', $item); |
|
137 | 137 | echo aui()->input( |
138 | 138 | array( |
139 | 139 | 'id' => 'wpinv_is_recurring', |
140 | 140 | 'name' => 'wpinv_is_recurring', |
141 | 141 | 'type' => 'checkbox', |
142 | - 'label' => apply_filters( 'wpinv_is_recurring_toggle_text', __( 'Charge customers a recurring amount for this item', 'invoicing' ) ), |
|
142 | + 'label' => apply_filters('wpinv_is_recurring_toggle_text', __('Charge customers a recurring amount for this item', 'invoicing')), |
|
143 | 143 | 'value' => '1', |
144 | 144 | 'checked' => $item->is_recurring(), |
145 | 145 | 'no_wrap' => true, |
146 | 146 | ) |
147 | 147 | ); |
148 | - do_action( 'wpinv_item_details_metabox_subscription_checkbox', $item ); |
|
148 | + do_action('wpinv_item_details_metabox_subscription_checkbox', $item); |
|
149 | 149 | |
150 | 150 | ?> |
151 | 151 | <div class="wpinv_show_if_recurring"> |
@@ -155,30 +155,30 @@ discard block |
||
155 | 155 | </div> |
156 | 156 | </div> |
157 | 157 | <div class="col-sm-1 pt-2 pl-0"> |
158 | - <span class="wpi-help-tip dashicons dashicons-editor-help wpinv_show_if_recurring" title="<?php esc_attr_e( 'Set the subscription price, billing interval and period.', 'invoicing' ); ?>"></span> |
|
158 | + <span class="wpi-help-tip dashicons dashicons-editor-help wpinv_show_if_recurring" title="<?php esc_attr_e('Set the subscription price, billing interval and period.', 'invoicing'); ?>"></span> |
|
159 | 159 | </div> |
160 | 160 | </div> |
161 | - <?php do_action( 'wpinv_item_details_metabox_after_price', $item ); ?> |
|
161 | + <?php do_action('wpinv_item_details_metabox_after_price', $item); ?> |
|
162 | 162 | |
163 | - <?php if( $item->supports_dynamic_pricing() ) : ?> |
|
164 | - <?php do_action( 'wpinv_item_details_metabox_before_minimum_price', $item ); ?> |
|
163 | + <?php if ($item->supports_dynamic_pricing()) : ?> |
|
164 | + <?php do_action('wpinv_item_details_metabox_before_minimum_price', $item); ?> |
|
165 | 165 | <div class="wpinv_show_if_dynamic wpinv_minimum_price"> |
166 | 166 | |
167 | 167 | <div class="form-group row"> |
168 | 168 | <label for="wpinv_minimum_price" class="col-sm-3 col-form-label"> |
169 | - <?php _e( 'Minimum Price', 'invoicing' );?> |
|
169 | + <?php _e('Minimum Price', 'invoicing'); ?> |
|
170 | 170 | </label> |
171 | 171 | <div class="col-sm-8"> |
172 | 172 | <div class="input-group input-group-sm"> |
173 | - <?php if( 'left' == $position ) : ?> |
|
173 | + <?php if ('left' == $position) : ?> |
|
174 | 174 | <div class="input-group-prepend"> |
175 | 175 | <span class="input-group-text" id="wpinv_item_minimum_price_symbol"><?php echo wpinv_currency_symbol(); ?></span> |
176 | 176 | </div> |
177 | 177 | <?php endif; ?> |
178 | 178 | |
179 | - <input type="text" name="wpinv_minimum_price" id="wpinv_minimum_price" value="<?php echo esc_attr( getpaid_unstandardize_amount( $item->get_minimum_price( 'edit' ) ) ); ?>" placeholder="<?php echo esc_attr( wpinv_sanitize_amount( 0 ) ); ?>" class="form-control"> |
|
179 | + <input type="text" name="wpinv_minimum_price" id="wpinv_minimum_price" value="<?php echo esc_attr(getpaid_unstandardize_amount($item->get_minimum_price('edit'))); ?>" placeholder="<?php echo esc_attr(wpinv_sanitize_amount(0)); ?>" class="form-control"> |
|
180 | 180 | |
181 | - <?php if( 'left' != $position ) : ?> |
|
181 | + <?php if ('left' != $position) : ?> |
|
182 | 182 | <div class="input-group-append"> |
183 | 183 | <span class="input-group-text" id="wpinv_item_minimum_price_symbol"><?php echo wpinv_currency_symbol(); ?></span> |
184 | 184 | </div> |
@@ -187,45 +187,45 @@ discard block |
||
187 | 187 | </div> |
188 | 188 | |
189 | 189 | <div class="col-sm-1 pt-2 pl-0"> |
190 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enter the minimum amount that users are allowed to set', 'invoicing' ); ?>"></span> |
|
190 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Enter the minimum amount that users are allowed to set', 'invoicing'); ?>"></span> |
|
191 | 191 | </div> |
192 | 192 | </div> |
193 | 193 | |
194 | 194 | </div> |
195 | - <?php do_action( 'wpinv_item_details_metabox_minimum_price', $item ); ?> |
|
195 | + <?php do_action('wpinv_item_details_metabox_minimum_price', $item); ?> |
|
196 | 196 | <?php endif; ?> |
197 | 197 | |
198 | - <?php do_action( 'wpinv_item_details_metabox_before_maximum_renewals', $item ); ?> |
|
198 | + <?php do_action('wpinv_item_details_metabox_before_maximum_renewals', $item); ?> |
|
199 | 199 | <div class="wpinv_show_if_recurring wpinv_maximum_renewals"> |
200 | 200 | |
201 | 201 | <div class="form-group row"> |
202 | 202 | <label for="wpinv_recurring_limit" class="col-sm-3 col-form-label"> |
203 | - <?php _e( 'Maximum Renewals', 'invoicing' );?> |
|
203 | + <?php _e('Maximum Renewals', 'invoicing'); ?> |
|
204 | 204 | </label> |
205 | 205 | <div class="col-sm-8"> |
206 | - <input type="number" value="<?php echo esc_attr( $item->get_recurring_limit( 'edit' ) ); ?>" placeholder="0" name="wpinv_recurring_limit" id="wpinv_recurring_limit" style="width: 100%;" /> |
|
206 | + <input type="number" value="<?php echo esc_attr($item->get_recurring_limit('edit')); ?>" placeholder="0" name="wpinv_recurring_limit" id="wpinv_recurring_limit" style="width: 100%;" /> |
|
207 | 207 | </div> |
208 | 208 | <div class="col-sm-1 pt-2 pl-0"> |
209 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Leave empty if you want the subscription to renew until it is cancelled.', 'invoicing' ); ?>"></span> |
|
209 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Leave empty if you want the subscription to renew until it is cancelled.', 'invoicing'); ?>"></span> |
|
210 | 210 | </div> |
211 | 211 | </div> |
212 | 212 | |
213 | 213 | </div> |
214 | - <?php do_action( 'wpinv_item_details_metabox_maximum_renewals', $item ); ?> |
|
214 | + <?php do_action('wpinv_item_details_metabox_maximum_renewals', $item); ?> |
|
215 | 215 | |
216 | - <?php do_action( 'wpinv_item_details_metabox_before_free_trial', $item ); ?> |
|
216 | + <?php do_action('wpinv_item_details_metabox_before_free_trial', $item); ?> |
|
217 | 217 | <div class="wpinv_show_if_recurring wpinv_free_trial"> |
218 | 218 | |
219 | 219 | <div class="form-group row"> |
220 | - <label class="col-sm-3 col-form-label" for="wpinv_trial_interval"><?php defined( 'GETPAID_PAID_TRIALS_VERSION' ) ? _e( 'Free/Paid Trial', 'invoicing' ) : _e( 'Free Trial', 'invoicing' )?></label> |
|
220 | + <label class="col-sm-3 col-form-label" for="wpinv_trial_interval"><?php defined('GETPAID_PAID_TRIALS_VERSION') ? _e('Free/Paid Trial', 'invoicing') : _e('Free Trial', 'invoicing')?></label> |
|
221 | 221 | |
222 | 222 | <div class="col-sm-8"> |
223 | 223 | <div class="row"> |
224 | 224 | <div class="col-sm-6"> |
225 | - <?php $value = $item->has_free_trial() ? $item->get_trial_interval( 'edit' ) : 0;?> |
|
225 | + <?php $value = $item->has_free_trial() ? $item->get_trial_interval('edit') : 0; ?> |
|
226 | 226 | |
227 | 227 | <div> |
228 | - <input type="number" name="wpinv_trial_interval" style="width: 100%;" placeholder="0" id="wpinv_trial_interval" value="<?php echo esc_attr( $value ); ?>" > |
|
228 | + <input type="number" name="wpinv_trial_interval" style="width: 100%;" placeholder="0" id="wpinv_trial_interval" value="<?php echo esc_attr($value); ?>" > |
|
229 | 229 | </div> |
230 | 230 | </div> |
231 | 231 | <div class="col-sm-6"> |
@@ -234,17 +234,17 @@ discard block |
||
234 | 234 | array( |
235 | 235 | 'id' => 'wpinv_trial_period', |
236 | 236 | 'name' => 'wpinv_trial_period', |
237 | - 'label' => __( 'Trial Period', 'invoicing' ), |
|
238 | - 'placeholder' => __( 'Trial Period', 'invoicing' ), |
|
239 | - 'value' => $item->get_trial_period( 'edit' ), |
|
237 | + 'label' => __('Trial Period', 'invoicing'), |
|
238 | + 'placeholder' => __('Trial Period', 'invoicing'), |
|
239 | + 'value' => $item->get_trial_period('edit'), |
|
240 | 240 | 'select2' => true, |
241 | 241 | 'data-allow-clear' => 'false', |
242 | 242 | 'no_wrap' => true, |
243 | 243 | 'options' => array( |
244 | - 'D' => __( 'day(s)', 'invoicing' ), |
|
245 | - 'W' => __( 'week(s)', 'invoicing' ), |
|
246 | - 'M' => __( 'month(s)', 'invoicing' ), |
|
247 | - 'Y' => __( 'year(s)', 'invoicing' ), |
|
244 | + 'D' => __('day(s)', 'invoicing'), |
|
245 | + 'W' => __('week(s)', 'invoicing'), |
|
246 | + 'M' => __('month(s)', 'invoicing'), |
|
247 | + 'Y' => __('year(s)', 'invoicing'), |
|
248 | 248 | ) |
249 | 249 | ) |
250 | 250 | ); |
@@ -255,15 +255,15 @@ discard block |
||
255 | 255 | </div> |
256 | 256 | |
257 | 257 | <div class="col-sm-1 pt-2 pl-0"> |
258 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'An optional period of time to wait before charging the first recurring payment.', 'invoicing' ); ?>"></span> |
|
258 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('An optional period of time to wait before charging the first recurring payment.', 'invoicing'); ?>"></span> |
|
259 | 259 | </div> |
260 | 260 | |
261 | 261 | </div> |
262 | 262 | |
263 | 263 | </div> |
264 | - <?php do_action( 'wpinv_item_details_metabox__free_trial', $item ); ?> |
|
264 | + <?php do_action('wpinv_item_details_metabox__free_trial', $item); ?> |
|
265 | 265 | |
266 | - <?php do_action( 'wpinv_item_details_metabox_item_details', $item ); ?> |
|
266 | + <?php do_action('wpinv_item_details_metabox_item_details', $item); ?> |
|
267 | 267 | </div> |
268 | 268 | <?php |
269 | 269 | |
@@ -274,31 +274,31 @@ discard block |
||
274 | 274 | * |
275 | 275 | * @param int $post_id |
276 | 276 | */ |
277 | - public static function save( $post_id ) { |
|
277 | + public static function save($post_id) { |
|
278 | 278 | |
279 | 279 | // Prepare the item. |
280 | - $item = new WPInv_Item( $post_id ); |
|
280 | + $item = new WPInv_Item($post_id); |
|
281 | 281 | |
282 | 282 | // Load new data. |
283 | 283 | $item->set_props( |
284 | 284 | array( |
285 | - 'price' => isset( $_POST['wpinv_item_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_item_price'] ) : null, |
|
286 | - 'vat_rule' => isset( $_POST['wpinv_vat_rules'] ) ? wpinv_clean( $_POST['wpinv_vat_rules'] ) : null, |
|
287 | - 'vat_class' => isset( $_POST['wpinv_vat_class'] ) ? wpinv_clean( $_POST['wpinv_vat_class'] ) : null, |
|
288 | - 'type' => isset( $_POST['wpinv_item_type'] ) ? wpinv_clean( $_POST['wpinv_item_type'] ) : null, |
|
289 | - 'is_dynamic_pricing' => isset( $_POST['wpinv_name_your_price'] ), |
|
290 | - 'minimum_price' => isset( $_POST['wpinv_minimum_price'] ) ? getpaid_standardize_amount( $_POST['wpinv_minimum_price'] ) : null, |
|
291 | - 'is_recurring' => isset( $_POST['wpinv_is_recurring'] ), |
|
292 | - 'recurring_period' => isset( $_POST['wpinv_recurring_period'] ) ? wpinv_clean( $_POST['wpinv_recurring_period'] ) : null, |
|
293 | - 'recurring_interval' => isset( $_POST['wpinv_recurring_interval'] ) ? (int) $_POST['wpinv_recurring_interval'] : 1, |
|
294 | - 'recurring_limit' => isset( $_POST['wpinv_recurring_limit'] ) ? (int) $_POST['wpinv_recurring_limit'] : null, |
|
295 | - 'is_free_trial' => isset( $_POST['wpinv_trial_interval'] ) ? ( 0 != (int) $_POST['wpinv_trial_interval'] ) : null, |
|
296 | - 'trial_period' => isset( $_POST['wpinv_trial_period'] ) ? wpinv_clean( $_POST['wpinv_trial_period'] ) : null, |
|
297 | - 'trial_interval' => isset( $_POST['wpinv_trial_interval'] ) ? (int) $_POST['wpinv_trial_interval'] : null, |
|
285 | + 'price' => isset($_POST['wpinv_item_price']) ? getpaid_standardize_amount($_POST['wpinv_item_price']) : null, |
|
286 | + 'vat_rule' => isset($_POST['wpinv_vat_rules']) ? wpinv_clean($_POST['wpinv_vat_rules']) : null, |
|
287 | + 'vat_class' => isset($_POST['wpinv_vat_class']) ? wpinv_clean($_POST['wpinv_vat_class']) : null, |
|
288 | + 'type' => isset($_POST['wpinv_item_type']) ? wpinv_clean($_POST['wpinv_item_type']) : null, |
|
289 | + 'is_dynamic_pricing' => isset($_POST['wpinv_name_your_price']), |
|
290 | + 'minimum_price' => isset($_POST['wpinv_minimum_price']) ? getpaid_standardize_amount($_POST['wpinv_minimum_price']) : null, |
|
291 | + 'is_recurring' => isset($_POST['wpinv_is_recurring']), |
|
292 | + 'recurring_period' => isset($_POST['wpinv_recurring_period']) ? wpinv_clean($_POST['wpinv_recurring_period']) : null, |
|
293 | + 'recurring_interval' => isset($_POST['wpinv_recurring_interval']) ? (int) $_POST['wpinv_recurring_interval'] : 1, |
|
294 | + 'recurring_limit' => isset($_POST['wpinv_recurring_limit']) ? (int) $_POST['wpinv_recurring_limit'] : null, |
|
295 | + 'is_free_trial' => isset($_POST['wpinv_trial_interval']) ? (0 != (int) $_POST['wpinv_trial_interval']) : null, |
|
296 | + 'trial_period' => isset($_POST['wpinv_trial_period']) ? wpinv_clean($_POST['wpinv_trial_period']) : null, |
|
297 | + 'trial_interval' => isset($_POST['wpinv_trial_interval']) ? (int) $_POST['wpinv_trial_interval'] : null, |
|
298 | 298 | ) |
299 | 299 | ); |
300 | 300 | |
301 | 301 | $item->save(); |
302 | - do_action( 'getpaid_item_metabox_save', $post_id, $item ); |
|
302 | + do_action('getpaid_item_metabox_save', $post_id, $item); |
|
303 | 303 | } |
304 | 304 | } |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Post types Admin Class |
@@ -21,74 +21,74 @@ discard block |
||
21 | 21 | GetPaid_Metaboxes::init(); |
22 | 22 | |
23 | 23 | // Filter the post updated messages. |
24 | - add_filter( 'post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages' ); |
|
24 | + add_filter('post_updated_messages', 'GetPaid_Post_Types_Admin::post_updated_messages'); |
|
25 | 25 | |
26 | 26 | // Filter post actions. |
27 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2 ); |
|
28 | - add_filter( 'post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2 ); |
|
27 | + add_filter('post_row_actions', 'GetPaid_Post_Types_Admin::post_row_actions', 10, 2); |
|
28 | + add_filter('post_row_actions', 'GetPaid_Post_Types_Admin::filter_invoice_row_actions', 90, 2); |
|
29 | 29 | |
30 | 30 | // Invoice table columns. |
31 | - add_filter( 'manage_wpi_invoice_posts_columns', array( __CLASS__, 'invoice_columns' ), 100 ); |
|
32 | - add_action( 'manage_wpi_invoice_posts_custom_column', array( __CLASS__, 'display_invoice_columns' ), 10, 2 ); |
|
33 | - add_filter( 'bulk_actions-edit-wpi_invoice', array( __CLASS__, 'invoice_bulk_actions' ) ); |
|
34 | - add_filter( 'handle_bulk_actions-edit-wpi_invoice', array( __CLASS__, 'handle_invoice_bulk_actions' ), 10, 3 ); |
|
31 | + add_filter('manage_wpi_invoice_posts_columns', array(__CLASS__, 'invoice_columns'), 100); |
|
32 | + add_action('manage_wpi_invoice_posts_custom_column', array(__CLASS__, 'display_invoice_columns'), 10, 2); |
|
33 | + add_filter('bulk_actions-edit-wpi_invoice', array(__CLASS__, 'invoice_bulk_actions')); |
|
34 | + add_filter('handle_bulk_actions-edit-wpi_invoice', array(__CLASS__, 'handle_invoice_bulk_actions'), 10, 3); |
|
35 | 35 | |
36 | 36 | // Items table columns. |
37 | - add_filter( 'manage_wpi_item_posts_columns', array( __CLASS__, 'item_columns' ), 100 ); |
|
38 | - add_filter( 'manage_edit-wpi_item_sortable_columns', array( __CLASS__, 'sortable_item_columns' ), 20 ); |
|
39 | - add_action( 'manage_wpi_item_posts_custom_column', array( __CLASS__, 'display_item_columns' ), 10, 2 ); |
|
40 | - add_action( 'restrict_manage_posts', array( __CLASS__, 'add_item_filters' ), 100 ); |
|
41 | - add_action( 'parse_query', array( __CLASS__, 'filter_item_query' ), 100 ); |
|
42 | - add_action( 'request', array( __CLASS__, 'reorder_items' ), 100 ); |
|
37 | + add_filter('manage_wpi_item_posts_columns', array(__CLASS__, 'item_columns'), 100); |
|
38 | + add_filter('manage_edit-wpi_item_sortable_columns', array(__CLASS__, 'sortable_item_columns'), 20); |
|
39 | + add_action('manage_wpi_item_posts_custom_column', array(__CLASS__, 'display_item_columns'), 10, 2); |
|
40 | + add_action('restrict_manage_posts', array(__CLASS__, 'add_item_filters'), 100); |
|
41 | + add_action('parse_query', array(__CLASS__, 'filter_item_query'), 100); |
|
42 | + add_action('request', array(__CLASS__, 'reorder_items'), 100); |
|
43 | 43 | |
44 | 44 | // Payment forms columns. |
45 | - add_filter( 'manage_wpi_payment_form_posts_columns', array( __CLASS__, 'payment_form_columns' ), 100 ); |
|
46 | - add_action( 'manage_wpi_payment_form_posts_custom_column', array( __CLASS__, 'display_payment_form_columns' ), 10, 2 ); |
|
47 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_payment_form_state' ), 10, 2 ); |
|
45 | + add_filter('manage_wpi_payment_form_posts_columns', array(__CLASS__, 'payment_form_columns'), 100); |
|
46 | + add_action('manage_wpi_payment_form_posts_custom_column', array(__CLASS__, 'display_payment_form_columns'), 10, 2); |
|
47 | + add_filter('display_post_states', array(__CLASS__, 'filter_payment_form_state'), 10, 2); |
|
48 | 48 | |
49 | 49 | // Discount table columns. |
50 | - add_filter( 'manage_wpi_discount_posts_columns', array( __CLASS__, 'discount_columns' ), 100 ); |
|
51 | - add_filter( 'bulk_actions-edit-wpi_discount', '__return_empty_array', 100 ); |
|
50 | + add_filter('manage_wpi_discount_posts_columns', array(__CLASS__, 'discount_columns'), 100); |
|
51 | + add_filter('bulk_actions-edit-wpi_discount', '__return_empty_array', 100); |
|
52 | 52 | |
53 | 53 | // Deleting posts. |
54 | - add_action( 'delete_post', array( __CLASS__, 'delete_post' ) ); |
|
55 | - add_filter( 'display_post_states', array( __CLASS__, 'filter_discount_state' ), 10, 2 ); |
|
54 | + add_action('delete_post', array(__CLASS__, 'delete_post')); |
|
55 | + add_filter('display_post_states', array(__CLASS__, 'filter_discount_state'), 10, 2); |
|
56 | 56 | |
57 | - add_filter( 'display_post_states', array( __CLASS__, 'add_display_post_states' ), 10, 2 ); |
|
57 | + add_filter('display_post_states', array(__CLASS__, 'add_display_post_states'), 10, 2); |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
61 | 61 | * Post updated messages. |
62 | 62 | */ |
63 | - public static function post_updated_messages( $messages ) { |
|
63 | + public static function post_updated_messages($messages) { |
|
64 | 64 | global $post; |
65 | 65 | |
66 | 66 | $messages['wpi_discount'] = array( |
67 | 67 | 0 => '', |
68 | - 1 => __( 'Discount updated.', 'invoicing' ), |
|
69 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
70 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
71 | - 4 => __( 'Discount updated.', 'invoicing' ), |
|
72 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Discount restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
73 | - 6 => __( 'Discount updated.', 'invoicing' ), |
|
74 | - 7 => __( 'Discount saved.', 'invoicing' ), |
|
75 | - 8 => __( 'Discount submitted.', 'invoicing' ), |
|
76 | - 9 => wp_sprintf( __( 'Discount scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
77 | - 10 => __( 'Discount draft updated.', 'invoicing' ), |
|
68 | + 1 => __('Discount updated.', 'invoicing'), |
|
69 | + 2 => __('Custom field updated.', 'invoicing'), |
|
70 | + 3 => __('Custom field deleted.', 'invoicing'), |
|
71 | + 4 => __('Discount updated.', 'invoicing'), |
|
72 | + 5 => isset($_GET['revision']) ? wp_sprintf(__('Discount restored to revision from %s', 'invoicing'), wp_post_revision_title((int) $_GET['revision'], false)) : false, |
|
73 | + 6 => __('Discount updated.', 'invoicing'), |
|
74 | + 7 => __('Discount saved.', 'invoicing'), |
|
75 | + 8 => __('Discount submitted.', 'invoicing'), |
|
76 | + 9 => wp_sprintf(__('Discount scheduled for: <strong>%1$s</strong>.', 'invoicing'), date_i18n(__('M j, Y @ G:i', 'invoicing'), strtotime($post->post_date))), |
|
77 | + 10 => __('Discount draft updated.', 'invoicing'), |
|
78 | 78 | ); |
79 | 79 | |
80 | 80 | $messages['wpi_payment_form'] = array( |
81 | 81 | 0 => '', |
82 | - 1 => __( 'Payment Form updated.', 'invoicing' ), |
|
83 | - 2 => __( 'Custom field updated.', 'invoicing' ), |
|
84 | - 3 => __( 'Custom field deleted.', 'invoicing' ), |
|
85 | - 4 => __( 'Payment Form updated.', 'invoicing' ), |
|
86 | - 5 => isset( $_GET['revision'] ) ? wp_sprintf( __( 'Payment Form restored to revision from %s', 'invoicing' ), wp_post_revision_title( (int) $_GET['revision'], false ) ) : false, |
|
87 | - 6 => __( 'Payment Form updated.', 'invoicing' ), |
|
88 | - 7 => __( 'Payment Form saved.', 'invoicing' ), |
|
89 | - 8 => __( 'Payment Form submitted.', 'invoicing' ), |
|
90 | - 9 => wp_sprintf( __( 'Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing' ), date_i18n( __( 'M j, Y @ G:i', 'invoicing' ), strtotime( $post->post_date ) ) ), |
|
91 | - 10 => __( 'Payment Form draft updated.', 'invoicing' ), |
|
82 | + 1 => __('Payment Form updated.', 'invoicing'), |
|
83 | + 2 => __('Custom field updated.', 'invoicing'), |
|
84 | + 3 => __('Custom field deleted.', 'invoicing'), |
|
85 | + 4 => __('Payment Form updated.', 'invoicing'), |
|
86 | + 5 => isset($_GET['revision']) ? wp_sprintf(__('Payment Form restored to revision from %s', 'invoicing'), wp_post_revision_title((int) $_GET['revision'], false)) : false, |
|
87 | + 6 => __('Payment Form updated.', 'invoicing'), |
|
88 | + 7 => __('Payment Form saved.', 'invoicing'), |
|
89 | + 8 => __('Payment Form submitted.', 'invoicing'), |
|
90 | + 9 => wp_sprintf(__('Payment Form scheduled for: <strong>%1$s</strong>.', 'invoicing'), date_i18n(__('M j, Y @ G:i', 'invoicing'), strtotime($post->post_date))), |
|
91 | + 10 => __('Payment Form draft updated.', 'invoicing'), |
|
92 | 92 | ); |
93 | 93 | |
94 | 94 | return $messages; |
@@ -98,19 +98,19 @@ discard block |
||
98 | 98 | /** |
99 | 99 | * Post row actions. |
100 | 100 | */ |
101 | - public static function post_row_actions( $actions, $post ) { |
|
101 | + public static function post_row_actions($actions, $post) { |
|
102 | 102 | |
103 | - $post = get_post( $post ); |
|
103 | + $post = get_post($post); |
|
104 | 104 | |
105 | 105 | // We do not want to edit the default payment form. |
106 | - if ( 'wpi_payment_form' == $post->post_type ) { |
|
106 | + if ('wpi_payment_form' == $post->post_type) { |
|
107 | 107 | |
108 | - if ( $post->ID == wpinv_get_default_payment_form() ) { |
|
109 | - unset( $actions['trash'] ); |
|
110 | - unset( $actions['inline hide-if-no-js'] ); |
|
108 | + if ($post->ID == wpinv_get_default_payment_form()) { |
|
109 | + unset($actions['trash']); |
|
110 | + unset($actions['inline hide-if-no-js']); |
|
111 | 111 | } |
112 | 112 | |
113 | - $actions['duplicate'] = sprintf( |
|
113 | + $actions['duplicate'] = sprintf( |
|
114 | 114 | '<a href="%1$s">%2$s</a>', |
115 | 115 | esc_url( |
116 | 116 | wp_nonce_url( |
@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | 'getpaid-nonce' |
125 | 125 | ) |
126 | 126 | ), |
127 | - esc_html( __( 'Duplicate', 'invoicing' ) ) |
|
127 | + esc_html(__('Duplicate', 'invoicing')) |
|
128 | 128 | ); |
129 | 129 | |
130 | 130 | } |
@@ -140,31 +140,31 @@ discard block |
||
140 | 140 | * @param WP_Post $post |
141 | 141 | * @return array $actions actions without edit option |
142 | 142 | */ |
143 | - public static function filter_invoice_row_actions( $actions, $post ) { |
|
143 | + public static function filter_invoice_row_actions($actions, $post) { |
|
144 | 144 | |
145 | - if ( getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
145 | + if (getpaid_is_invoice_post_type($post->post_type)) { |
|
146 | 146 | |
147 | 147 | $actions = array(); |
148 | - $invoice = new WPInv_Invoice( $post ); |
|
148 | + $invoice = new WPInv_Invoice($post); |
|
149 | 149 | |
150 | - $actions['edit'] = sprintf( |
|
150 | + $actions['edit'] = sprintf( |
|
151 | 151 | '<a href="%1$s">%2$s</a>', |
152 | - esc_url( get_edit_post_link( $invoice->get_id() ) ), |
|
153 | - esc_html( __( 'Edit', 'invoicing' ) ) |
|
152 | + esc_url(get_edit_post_link($invoice->get_id())), |
|
153 | + esc_html(__('Edit', 'invoicing')) |
|
154 | 154 | ); |
155 | 155 | |
156 | - if ( ! $invoice->is_draft() ) { |
|
156 | + if (!$invoice->is_draft()) { |
|
157 | 157 | |
158 | - $actions['view'] = sprintf( |
|
158 | + $actions['view'] = sprintf( |
|
159 | 159 | '<a href="%1$s">%2$s</a>', |
160 | - esc_url( $invoice->get_view_url() ), |
|
160 | + esc_url($invoice->get_view_url()), |
|
161 | 161 | sprintf( |
162 | - esc_html( __( 'View %s', 'invoicing' ) ), |
|
163 | - getpaid_get_post_type_label( $invoice->get_post_type(), false ) |
|
162 | + esc_html(__('View %s', 'invoicing')), |
|
163 | + getpaid_get_post_type_label($invoice->get_post_type(), false) |
|
164 | 164 | ) |
165 | 165 | ); |
166 | 166 | |
167 | - $actions['send'] = sprintf( |
|
167 | + $actions['send'] = sprintf( |
|
168 | 168 | '<a href="%1$s">%2$s</a>', |
169 | 169 | esc_url( |
170 | 170 | wp_nonce_url( |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | 'getpaid-nonce' |
179 | 179 | ) |
180 | 180 | ), |
181 | - esc_html( __( 'Send to Customer', 'invoicing' ) ) |
|
181 | + esc_html(__('Send to Customer', 'invoicing')) |
|
182 | 182 | ); |
183 | 183 | |
184 | 184 | } |
@@ -191,42 +191,42 @@ discard block |
||
191 | 191 | /** |
192 | 192 | * Returns an array of invoice table columns. |
193 | 193 | */ |
194 | - public static function invoice_columns( $columns ) { |
|
194 | + public static function invoice_columns($columns) { |
|
195 | 195 | |
196 | 196 | $columns = array( |
197 | 197 | 'cb' => $columns['cb'], |
198 | - 'number' => __( 'Invoice', 'invoicing' ), |
|
199 | - 'customer' => __( 'Customer', 'invoicing' ), |
|
200 | - 'invoice_date' => __( 'Created', 'invoicing' ), |
|
201 | - 'payment_date' => __( 'Completed', 'invoicing' ), |
|
202 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
203 | - 'recurring' => __( 'Recurring', 'invoicing' ), |
|
204 | - 'status' => __( 'Status', 'invoicing' ), |
|
198 | + 'number' => __('Invoice', 'invoicing'), |
|
199 | + 'customer' => __('Customer', 'invoicing'), |
|
200 | + 'invoice_date' => __('Created', 'invoicing'), |
|
201 | + 'payment_date' => __('Completed', 'invoicing'), |
|
202 | + 'amount' => __('Amount', 'invoicing'), |
|
203 | + 'recurring' => __('Recurring', 'invoicing'), |
|
204 | + 'status' => __('Status', 'invoicing'), |
|
205 | 205 | ); |
206 | 206 | |
207 | - return apply_filters( 'wpi_invoice_table_columns', $columns ); |
|
207 | + return apply_filters('wpi_invoice_table_columns', $columns); |
|
208 | 208 | } |
209 | 209 | |
210 | 210 | /** |
211 | 211 | * Displays invoice table columns. |
212 | 212 | */ |
213 | - public static function display_invoice_columns( $column_name, $post_id ) { |
|
213 | + public static function display_invoice_columns($column_name, $post_id) { |
|
214 | 214 | |
215 | - $invoice = new WPInv_Invoice( $post_id ); |
|
215 | + $invoice = new WPInv_Invoice($post_id); |
|
216 | 216 | |
217 | - switch ( $column_name ) { |
|
217 | + switch ($column_name) { |
|
218 | 218 | |
219 | 219 | case 'invoice_date' : |
220 | - $date_time = esc_attr( $invoice->get_created_date() ); |
|
221 | - $date = getpaid_format_date_value( $date_time, "—", true ); |
|
220 | + $date_time = esc_attr($invoice->get_created_date()); |
|
221 | + $date = getpaid_format_date_value($date_time, "—", true); |
|
222 | 222 | echo "<span title='$date_time'>$date</span>"; |
223 | 223 | break; |
224 | 224 | |
225 | 225 | case 'payment_date' : |
226 | 226 | |
227 | - if ( $invoice->is_paid() ) { |
|
228 | - $date_time = esc_attr( $invoice->get_completed_date() ); |
|
229 | - $date = getpaid_format_date_value( $date_time, "—", true ); |
|
227 | + if ($invoice->is_paid()) { |
|
228 | + $date_time = esc_attr($invoice->get_completed_date()); |
|
229 | + $date = getpaid_format_date_value($date_time, "—", true); |
|
230 | 230 | echo "<span title='$date_time'>$date</span>"; |
231 | 231 | } else { |
232 | 232 | echo "—"; |
@@ -237,17 +237,17 @@ discard block |
||
237 | 237 | case 'amount' : |
238 | 238 | |
239 | 239 | $amount = $invoice->get_total(); |
240 | - $formated_amount = wpinv_price( $amount, $invoice->get_currency() ); |
|
240 | + $formated_amount = wpinv_price($amount, $invoice->get_currency()); |
|
241 | 241 | |
242 | - if ( $invoice->is_refunded() ) { |
|
243 | - $refunded_amount = wpinv_price( 0, $invoice->get_currency() ); |
|
242 | + if ($invoice->is_refunded()) { |
|
243 | + $refunded_amount = wpinv_price(0, $invoice->get_currency()); |
|
244 | 244 | echo "<del>$formated_amount</del> <ins>$refunded_amount</ins>"; |
245 | 245 | } else { |
246 | 246 | |
247 | 247 | $discount = $invoice->get_total_discount(); |
248 | 248 | |
249 | - if ( ! empty( $discount ) ) { |
|
250 | - $new_amount = wpinv_price( $amount + $discount, $invoice->get_currency() ); |
|
249 | + if (!empty($discount)) { |
|
250 | + $new_amount = wpinv_price($amount + $discount, $invoice->get_currency()); |
|
251 | 251 | echo "<del>$new_amount</del> <ins>$formated_amount</ins>"; |
252 | 252 | } else { |
253 | 253 | echo $formated_amount; |
@@ -258,13 +258,13 @@ discard block |
||
258 | 258 | break; |
259 | 259 | |
260 | 260 | case 'status' : |
261 | - $status = sanitize_text_field( $invoice->get_status() ); |
|
262 | - $status_label = sanitize_text_field( $invoice->get_status_nicename() ); |
|
261 | + $status = sanitize_text_field($invoice->get_status()); |
|
262 | + $status_label = sanitize_text_field($invoice->get_status_nicename()); |
|
263 | 263 | |
264 | 264 | // If it is paid, show the gateway title. |
265 | - if ( $invoice->is_paid() ) { |
|
266 | - $gateway = sanitize_text_field( $invoice->get_gateway_title() ); |
|
267 | - $gateway = wp_sprintf( esc_attr__( 'Paid via %s', 'invoicing' ), $gateway ); |
|
265 | + if ($invoice->is_paid()) { |
|
266 | + $gateway = sanitize_text_field($invoice->get_gateway_title()); |
|
267 | + $gateway = wp_sprintf(esc_attr__('Paid via %s', 'invoicing'), $gateway); |
|
268 | 268 | |
269 | 269 | echo "<mark class='wpi-help-tip getpaid-invoice-status $status' title='$gateway'><span>$status_label</span></mark>"; |
270 | 270 | } else { |
@@ -272,22 +272,22 @@ discard block |
||
272 | 272 | } |
273 | 273 | |
274 | 274 | // If it is not paid, display the overdue and view status. |
275 | - if ( ! $invoice->is_paid() && ! $invoice->is_refunded() ) { |
|
275 | + if (!$invoice->is_paid() && !$invoice->is_refunded()) { |
|
276 | 276 | |
277 | 277 | // Invoice view status. |
278 | - if ( wpinv_is_invoice_viewed( $invoice->get_id() ) ) { |
|
279 | - echo ' <i class="fa fa-eye wpi-help-tip" title="'. esc_attr__( 'Viewed by Customer', 'invoicing' ).'"></i>'; |
|
278 | + if (wpinv_is_invoice_viewed($invoice->get_id())) { |
|
279 | + echo ' <i class="fa fa-eye wpi-help-tip" title="' . esc_attr__('Viewed by Customer', 'invoicing') . '"></i>'; |
|
280 | 280 | } else { |
281 | - echo ' <i class="fa fa-eye-slash wpi-help-tip" title="'. esc_attr__( 'Not Viewed by Customer', 'invoicing' ).'"></i>'; |
|
281 | + echo ' <i class="fa fa-eye-slash wpi-help-tip" title="' . esc_attr__('Not Viewed by Customer', 'invoicing') . '"></i>'; |
|
282 | 282 | } |
283 | 283 | |
284 | 284 | // Display the overview status. |
285 | - if ( wpinv_get_option( 'overdue_active' ) ) { |
|
285 | + if (wpinv_get_option('overdue_active')) { |
|
286 | 286 | $due_date = $invoice->get_due_date(); |
287 | - $fomatted = getpaid_format_date( $due_date ); |
|
287 | + $fomatted = getpaid_format_date($due_date); |
|
288 | 288 | |
289 | - if ( ! empty( $fomatted ) ) { |
|
290 | - $date = wp_sprintf( __( 'Due %s', 'invoicing' ), $fomatted ); |
|
289 | + if (!empty($fomatted)) { |
|
290 | + $date = wp_sprintf(__('Due %s', 'invoicing'), $fomatted); |
|
291 | 291 | echo "<p class='description' style='color: #888;' title='$due_date'>$fomatted</p>"; |
292 | 292 | } |
293 | 293 | } |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | |
299 | 299 | case 'recurring': |
300 | 300 | |
301 | - if ( $invoice->is_recurring() ) { |
|
301 | + if ($invoice->is_recurring()) { |
|
302 | 302 | echo '<i class="fa fa-check" style="color:#43850a;"></i>'; |
303 | 303 | } else { |
304 | 304 | echo '<i class="fa fa-times" style="color:#616161;"></i>'; |
@@ -307,9 +307,9 @@ discard block |
||
307 | 307 | |
308 | 308 | case 'number' : |
309 | 309 | |
310 | - $edit_link = esc_url( get_edit_post_link( $invoice->get_id() ) ); |
|
311 | - $invoice_number = sanitize_text_field( $invoice->get_number() ); |
|
312 | - $invoice_details = esc_attr__( 'View Invoice Details', 'invoicing' ); |
|
310 | + $edit_link = esc_url(get_edit_post_link($invoice->get_id())); |
|
311 | + $invoice_number = sanitize_text_field($invoice->get_number()); |
|
312 | + $invoice_details = esc_attr__('View Invoice Details', 'invoicing'); |
|
313 | 313 | |
314 | 314 | echo "<a href='$edit_link' title='$invoice_details'><strong>$invoice_number</strong></a>"; |
315 | 315 | |
@@ -319,13 +319,13 @@ discard block |
||
319 | 319 | |
320 | 320 | $customer_name = $invoice->get_user_full_name(); |
321 | 321 | |
322 | - if ( empty( $customer_name ) ) { |
|
322 | + if (empty($customer_name)) { |
|
323 | 323 | $customer_name = $invoice->get_email(); |
324 | 324 | } |
325 | 325 | |
326 | - if ( ! empty( $customer_name ) ) { |
|
327 | - $customer_details = esc_attr__( 'View Customer Details', 'invoicing' ); |
|
328 | - $view_link = esc_url( add_query_arg( 'user_id', $invoice->get_user_id(), admin_url( 'user-edit.php' ) ) ); |
|
326 | + if (!empty($customer_name)) { |
|
327 | + $customer_details = esc_attr__('View Customer Details', 'invoicing'); |
|
328 | + $view_link = esc_url(add_query_arg('user_id', $invoice->get_user_id(), admin_url('user-edit.php'))); |
|
329 | 329 | echo "<a href='$view_link' title='$customer_details'><span>$customer_name</span></a>"; |
330 | 330 | } else { |
331 | 331 | echo '<div>—</div>'; |
@@ -340,27 +340,27 @@ discard block |
||
340 | 340 | /** |
341 | 341 | * Displays invoice bulk actions. |
342 | 342 | */ |
343 | - public static function invoice_bulk_actions( $actions ) { |
|
344 | - $actions['resend-invoice'] = __( 'Send to Customer', 'invoicing' ); |
|
343 | + public static function invoice_bulk_actions($actions) { |
|
344 | + $actions['resend-invoice'] = __('Send to Customer', 'invoicing'); |
|
345 | 345 | return $actions; |
346 | 346 | } |
347 | 347 | |
348 | 348 | /** |
349 | 349 | * Processes invoice bulk actions. |
350 | 350 | */ |
351 | - public static function handle_invoice_bulk_actions( $redirect_url, $action, $post_ids ) { |
|
351 | + public static function handle_invoice_bulk_actions($redirect_url, $action, $post_ids) { |
|
352 | 352 | |
353 | - if ( $action == 'resend-invoice' ) { |
|
353 | + if ($action == 'resend-invoice') { |
|
354 | 354 | |
355 | 355 | $success = false; |
356 | - foreach ( $post_ids as $post_id ) { |
|
357 | - $success = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $post_id ), true ); |
|
356 | + foreach ($post_ids as $post_id) { |
|
357 | + $success = getpaid()->get('invoice_emails')->user_invoice(new WPInv_Invoice($post_id), true); |
|
358 | 358 | } |
359 | 359 | |
360 | - if ( $success ) { |
|
361 | - getpaid_admin()->show_success( __( 'Invoices were successfully sent', 'invoicing' ) ); |
|
360 | + if ($success) { |
|
361 | + getpaid_admin()->show_success(__('Invoices were successfully sent', 'invoicing')); |
|
362 | 362 | } else { |
363 | - getpaid_admin()->show_error( __( 'Could not send some invoices', 'invoicing' ) ); |
|
363 | + getpaid_admin()->show_error(__('Could not send some invoices', 'invoicing')); |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | } |
@@ -372,50 +372,50 @@ discard block |
||
372 | 372 | /** |
373 | 373 | * Returns an array of payment forms table columns. |
374 | 374 | */ |
375 | - public static function payment_form_columns( $columns ) { |
|
375 | + public static function payment_form_columns($columns) { |
|
376 | 376 | |
377 | 377 | $columns = array( |
378 | 378 | 'cb' => $columns['cb'], |
379 | - 'title' => __( 'Name', 'invoicing' ), |
|
380 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
381 | - 'earnings' => __( 'Revenue', 'invoicing' ), |
|
382 | - 'refunds' => __( 'Refunded', 'invoicing' ), |
|
383 | - 'items' => __( 'Items', 'invoicing' ), |
|
384 | - 'date' => __( 'Date', 'invoicing' ), |
|
379 | + 'title' => __('Name', 'invoicing'), |
|
380 | + 'shortcode' => __('Shortcode', 'invoicing'), |
|
381 | + 'earnings' => __('Revenue', 'invoicing'), |
|
382 | + 'refunds' => __('Refunded', 'invoicing'), |
|
383 | + 'items' => __('Items', 'invoicing'), |
|
384 | + 'date' => __('Date', 'invoicing'), |
|
385 | 385 | ); |
386 | 386 | |
387 | - return apply_filters( 'wpi_payment_form_table_columns', $columns ); |
|
387 | + return apply_filters('wpi_payment_form_table_columns', $columns); |
|
388 | 388 | |
389 | 389 | } |
390 | 390 | |
391 | 391 | /** |
392 | 392 | * Displays payment form table columns. |
393 | 393 | */ |
394 | - public static function display_payment_form_columns( $column_name, $post_id ) { |
|
394 | + public static function display_payment_form_columns($column_name, $post_id) { |
|
395 | 395 | |
396 | 396 | // Retrieve the payment form. |
397 | - $form = new GetPaid_Payment_Form( $post_id ); |
|
397 | + $form = new GetPaid_Payment_Form($post_id); |
|
398 | 398 | |
399 | - switch ( $column_name ) { |
|
399 | + switch ($column_name) { |
|
400 | 400 | |
401 | 401 | case 'earnings' : |
402 | - echo wpinv_price( $form->get_earned() ); |
|
402 | + echo wpinv_price($form->get_earned()); |
|
403 | 403 | break; |
404 | 404 | |
405 | 405 | case 'refunds' : |
406 | - echo wpinv_price( $form->get_refunded() ); |
|
406 | + echo wpinv_price($form->get_refunded()); |
|
407 | 407 | break; |
408 | 408 | |
409 | 409 | case 'refunds' : |
410 | - echo wpinv_price( $form->get_refunded() ); |
|
410 | + echo wpinv_price($form->get_refunded()); |
|
411 | 411 | break; |
412 | 412 | |
413 | 413 | case 'shortcode' : |
414 | 414 | |
415 | - if ( $form->is_default() ) { |
|
415 | + if ($form->is_default()) { |
|
416 | 416 | echo '—'; |
417 | 417 | } else { |
418 | - echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr( $form->get_id() ) . ']" style="width: 100%;" readonly/>'; |
|
418 | + echo '<input onClick="this.select()" type="text" value="[getpaid form=' . esc_attr($form->get_id()) . ']" style="width: 100%;" readonly/>'; |
|
419 | 419 | } |
420 | 420 | |
421 | 421 | break; |
@@ -424,29 +424,29 @@ discard block |
||
424 | 424 | |
425 | 425 | $items = $form->get_items(); |
426 | 426 | |
427 | - if ( $form->is_default() || empty( $items ) ) { |
|
427 | + if ($form->is_default() || empty($items)) { |
|
428 | 428 | echo '—'; |
429 | 429 | return; |
430 | 430 | } |
431 | 431 | |
432 | 432 | $_items = array(); |
433 | 433 | |
434 | - foreach ( $items as $item ) { |
|
434 | + foreach ($items as $item) { |
|
435 | 435 | $url = $item->get_edit_url(); |
436 | 436 | |
437 | - if ( empty( $url ) ) { |
|
438 | - $_items[] = sanitize_text_field( $item->get_name() ); |
|
437 | + if (empty($url)) { |
|
438 | + $_items[] = sanitize_text_field($item->get_name()); |
|
439 | 439 | } else { |
440 | 440 | $_items[] = sprintf( |
441 | 441 | '<a href="%s">%s</a>', |
442 | - esc_url( $url ), |
|
443 | - sanitize_text_field( $item->get_name() ) |
|
442 | + esc_url($url), |
|
443 | + sanitize_text_field($item->get_name()) |
|
444 | 444 | ); |
445 | 445 | } |
446 | 446 | |
447 | 447 | } |
448 | 448 | |
449 | - echo implode( '<br>', $_items ); |
|
449 | + echo implode('<br>', $_items); |
|
450 | 450 | |
451 | 451 | break; |
452 | 452 | |
@@ -457,10 +457,10 @@ discard block |
||
457 | 457 | /** |
458 | 458 | * Filters post states. |
459 | 459 | */ |
460 | - public static function filter_payment_form_state( $post_states, $post ) { |
|
460 | + public static function filter_payment_form_state($post_states, $post) { |
|
461 | 461 | |
462 | - if ( 'wpi_payment_form' == $post->post_type && wpinv_get_default_payment_form() == $post->ID ) { |
|
463 | - $post_states[ 'default_form' ] = __( 'Default Payment Form', 'invoicing' ); |
|
462 | + if ('wpi_payment_form' == $post->post_type && wpinv_get_default_payment_form() == $post->ID) { |
|
463 | + $post_states['default_form'] = __('Default Payment Form', 'invoicing'); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | return $post_states; |
@@ -470,35 +470,35 @@ discard block |
||
470 | 470 | /** |
471 | 471 | * Returns an array of coupon table columns. |
472 | 472 | */ |
473 | - public static function discount_columns( $columns ) { |
|
473 | + public static function discount_columns($columns) { |
|
474 | 474 | |
475 | 475 | $columns = array( |
476 | 476 | 'cb' => $columns['cb'], |
477 | - 'title' => __( 'Name', 'invoicing' ), |
|
478 | - 'code' => __( 'Code', 'invoicing' ), |
|
479 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
480 | - 'usage' => __( 'Usage / Limit', 'invoicing' ), |
|
481 | - 'start_date' => __( 'Start Date', 'invoicing' ), |
|
482 | - 'expiry_date' => __( 'Expiry Date', 'invoicing' ), |
|
477 | + 'title' => __('Name', 'invoicing'), |
|
478 | + 'code' => __('Code', 'invoicing'), |
|
479 | + 'amount' => __('Amount', 'invoicing'), |
|
480 | + 'usage' => __('Usage / Limit', 'invoicing'), |
|
481 | + 'start_date' => __('Start Date', 'invoicing'), |
|
482 | + 'expiry_date' => __('Expiry Date', 'invoicing'), |
|
483 | 483 | ); |
484 | 484 | |
485 | - return apply_filters( 'wpi_discount_table_columns', $columns ); |
|
485 | + return apply_filters('wpi_discount_table_columns', $columns); |
|
486 | 486 | } |
487 | 487 | |
488 | 488 | /** |
489 | 489 | * Filters post states. |
490 | 490 | */ |
491 | - public static function filter_discount_state( $post_states, $post ) { |
|
491 | + public static function filter_discount_state($post_states, $post) { |
|
492 | 492 | |
493 | - if ( 'wpi_discount' == $post->post_type ) { |
|
493 | + if ('wpi_discount' == $post->post_type) { |
|
494 | 494 | |
495 | - $discount = new WPInv_Discount( $post ); |
|
495 | + $discount = new WPInv_Discount($post); |
|
496 | 496 | |
497 | 497 | $status = $discount->is_expired() ? 'expired' : $discount->get_status(); |
498 | 498 | |
499 | - if ( $status != 'publish' ) { |
|
499 | + if ($status != 'publish') { |
|
500 | 500 | return array( |
501 | - 'discount_status' => wpinv_discount_status( $status ), |
|
501 | + 'discount_status' => wpinv_discount_status($status), |
|
502 | 502 | ); |
503 | 503 | } |
504 | 504 | |
@@ -513,30 +513,30 @@ discard block |
||
513 | 513 | /** |
514 | 514 | * Returns an array of items table columns. |
515 | 515 | */ |
516 | - public static function item_columns( $columns ) { |
|
516 | + public static function item_columns($columns) { |
|
517 | 517 | |
518 | 518 | $columns = array( |
519 | 519 | 'cb' => $columns['cb'], |
520 | - 'title' => __( 'Name', 'invoicing' ), |
|
521 | - 'price' => __( 'Price', 'invoicing' ), |
|
522 | - 'vat_rule' => __( 'VAT rule', 'invoicing' ), |
|
523 | - 'vat_class' => __( 'VAT class', 'invoicing' ), |
|
524 | - 'type' => __( 'Type', 'invoicing' ), |
|
525 | - 'shortcode' => __( 'Shortcode', 'invoicing' ), |
|
520 | + 'title' => __('Name', 'invoicing'), |
|
521 | + 'price' => __('Price', 'invoicing'), |
|
522 | + 'vat_rule' => __('VAT rule', 'invoicing'), |
|
523 | + 'vat_class' => __('VAT class', 'invoicing'), |
|
524 | + 'type' => __('Type', 'invoicing'), |
|
525 | + 'shortcode' => __('Shortcode', 'invoicing'), |
|
526 | 526 | ); |
527 | 527 | |
528 | - if ( ! wpinv_use_taxes() ) { |
|
529 | - unset( $columns['vat_rule'] ); |
|
530 | - unset( $columns['vat_class'] ); |
|
528 | + if (!wpinv_use_taxes()) { |
|
529 | + unset($columns['vat_rule']); |
|
530 | + unset($columns['vat_class']); |
|
531 | 531 | } |
532 | 532 | |
533 | - return apply_filters( 'wpi_item_table_columns', $columns ); |
|
533 | + return apply_filters('wpi_item_table_columns', $columns); |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | /** |
537 | 537 | * Returns an array of sortable items table columns. |
538 | 538 | */ |
539 | - public static function sortable_item_columns( $columns ) { |
|
539 | + public static function sortable_item_columns($columns) { |
|
540 | 540 | |
541 | 541 | return array_merge( |
542 | 542 | $columns, |
@@ -553,49 +553,49 @@ discard block |
||
553 | 553 | /** |
554 | 554 | * Displays items table columns. |
555 | 555 | */ |
556 | - public static function display_item_columns( $column_name, $post_id ) { |
|
556 | + public static function display_item_columns($column_name, $post_id) { |
|
557 | 557 | |
558 | - $item = new WPInv_Item( $post_id ); |
|
558 | + $item = new WPInv_Item($post_id); |
|
559 | 559 | |
560 | - switch ( $column_name ) { |
|
560 | + switch ($column_name) { |
|
561 | 561 | |
562 | 562 | case 'price' : |
563 | 563 | |
564 | - if ( ! $item->is_recurring() ) { |
|
564 | + if (!$item->is_recurring()) { |
|
565 | 565 | echo $item->get_the_price(); |
566 | 566 | break; |
567 | 567 | } |
568 | 568 | |
569 | 569 | $price = wp_sprintf( |
570 | - __( '%s / %s', 'invoicing' ), |
|
570 | + __('%s / %s', 'invoicing'), |
|
571 | 571 | $item->get_the_price(), |
572 | - getpaid_get_subscription_period_label( $item->get_recurring_period(), $item->get_recurring_interval(), '' ) |
|
572 | + getpaid_get_subscription_period_label($item->get_recurring_period(), $item->get_recurring_interval(), '') |
|
573 | 573 | ); |
574 | 574 | |
575 | - if ( $item->get_the_price() == $item->get_the_initial_price() ) { |
|
575 | + if ($item->get_the_price() == $item->get_the_initial_price()) { |
|
576 | 576 | echo $price; |
577 | 577 | break; |
578 | 578 | } |
579 | 579 | |
580 | 580 | echo $item->get_the_initial_price(); |
581 | 581 | |
582 | - echo '<span class="meta">' . wp_sprintf( __( 'then %s', 'invoicing' ), $price ) .'</span>'; |
|
582 | + echo '<span class="meta">' . wp_sprintf(__('then %s', 'invoicing'), $price) . '</span>'; |
|
583 | 583 | break; |
584 | 584 | |
585 | 585 | case 'vat_rule' : |
586 | - echo getpaid_get_tax_rule_label( $item->get_vat_rule() ); |
|
586 | + echo getpaid_get_tax_rule_label($item->get_vat_rule()); |
|
587 | 587 | break; |
588 | 588 | |
589 | 589 | case 'vat_class' : |
590 | - echo getpaid_get_tax_class_label( $item->get_vat_class() ); |
|
590 | + echo getpaid_get_tax_class_label($item->get_vat_class()); |
|
591 | 591 | break; |
592 | 592 | |
593 | 593 | case 'shortcode' : |
594 | - echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr( $item->get_id() ) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
594 | + echo '<input onClick="this.select()" type="text" value="[getpaid item=' . esc_attr($item->get_id()) . ' button=\'Buy Now\']" style="width: 100%;" readonly/>'; |
|
595 | 595 | break; |
596 | 596 | |
597 | 597 | case 'type' : |
598 | - echo wpinv_item_type( $item->get_id() ) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>'; |
|
598 | + echo wpinv_item_type($item->get_id()) . '<span class="meta">' . $item->get_custom_singular_name() . '</span>'; |
|
599 | 599 | break; |
600 | 600 | |
601 | 601 | } |
@@ -605,21 +605,21 @@ discard block |
||
605 | 605 | /** |
606 | 606 | * Lets users filter items using taxes. |
607 | 607 | */ |
608 | - public static function add_item_filters( $post_type ) { |
|
608 | + public static function add_item_filters($post_type) { |
|
609 | 609 | |
610 | 610 | // Abort if we're not dealing with items. |
611 | - if ( $post_type != 'wpi_item' ) { |
|
611 | + if ($post_type != 'wpi_item') { |
|
612 | 612 | return; |
613 | 613 | } |
614 | 614 | |
615 | 615 | // Filter by vat rules. |
616 | - if ( wpinv_use_taxes() ) { |
|
616 | + if (wpinv_use_taxes()) { |
|
617 | 617 | |
618 | 618 | // Sanitize selected vat rule. |
619 | 619 | $vat_rule = ''; |
620 | 620 | $vat_rules = getpaid_get_tax_rules(); |
621 | - if ( isset( $_GET['vat_rule'] ) ) { |
|
622 | - $vat_rule = $_GET['vat_rule']; |
|
621 | + if (isset($_GET['vat_rule'])) { |
|
622 | + $vat_rule = $_GET['vat_rule']; |
|
623 | 623 | } |
624 | 624 | |
625 | 625 | // Filter by VAT rule. |
@@ -627,13 +627,13 @@ discard block |
||
627 | 627 | array( |
628 | 628 | 'options' => array_merge( |
629 | 629 | array( |
630 | - '' => __( 'All VAT rules', 'invoicing' ) |
|
630 | + '' => __('All VAT rules', 'invoicing') |
|
631 | 631 | ), |
632 | 632 | $vat_rules |
633 | 633 | ), |
634 | 634 | 'name' => 'vat_rule', |
635 | 635 | 'id' => 'vat_rule', |
636 | - 'selected' => in_array( $vat_rule, array_keys( $vat_rules ) ) ? $vat_rule : '', |
|
636 | + 'selected' => in_array($vat_rule, array_keys($vat_rules)) ? $vat_rule : '', |
|
637 | 637 | 'show_option_all' => false, |
638 | 638 | 'show_option_none' => false, |
639 | 639 | ) |
@@ -644,21 +644,21 @@ discard block |
||
644 | 644 | // Sanitize selected vat rule. |
645 | 645 | $vat_class = ''; |
646 | 646 | $vat_classes = getpaid_get_tax_classes(); |
647 | - if ( isset( $_GET['vat_class'] ) ) { |
|
648 | - $vat_class = $_GET['vat_class']; |
|
647 | + if (isset($_GET['vat_class'])) { |
|
648 | + $vat_class = $_GET['vat_class']; |
|
649 | 649 | } |
650 | 650 | |
651 | 651 | echo wpinv_html_select( |
652 | 652 | array( |
653 | 653 | 'options' => array_merge( |
654 | 654 | array( |
655 | - '' => __( 'All VAT classes', 'invoicing' ) |
|
655 | + '' => __('All VAT classes', 'invoicing') |
|
656 | 656 | ), |
657 | 657 | $vat_classes |
658 | 658 | ), |
659 | 659 | 'name' => 'vat_class', |
660 | 660 | 'id' => 'vat_class', |
661 | - 'selected' => in_array( $vat_class, array_keys( $vat_classes ) ) ? $vat_class : '', |
|
661 | + 'selected' => in_array($vat_class, array_keys($vat_classes)) ? $vat_class : '', |
|
662 | 662 | 'show_option_all' => false, |
663 | 663 | 'show_option_none' => false, |
664 | 664 | ) |
@@ -667,22 +667,22 @@ discard block |
||
667 | 667 | } |
668 | 668 | |
669 | 669 | // Filter by item type. |
670 | - $type = ''; |
|
671 | - if ( isset( $_GET['type'] ) ) { |
|
672 | - $type = $_GET['type']; |
|
670 | + $type = ''; |
|
671 | + if (isset($_GET['type'])) { |
|
672 | + $type = $_GET['type']; |
|
673 | 673 | } |
674 | 674 | |
675 | 675 | echo wpinv_html_select( |
676 | 676 | array( |
677 | 677 | 'options' => array_merge( |
678 | 678 | array( |
679 | - '' => __( 'All item types', 'invoicing' ) |
|
679 | + '' => __('All item types', 'invoicing') |
|
680 | 680 | ), |
681 | 681 | wpinv_get_item_types() |
682 | 682 | ), |
683 | 683 | 'name' => 'type', |
684 | 684 | 'id' => 'type', |
685 | - 'selected' => in_array( $type, wpinv_item_types() ) ? $type : '', |
|
685 | + 'selected' => in_array($type, wpinv_item_types()) ? $type : '', |
|
686 | 686 | 'show_option_all' => false, |
687 | 687 | 'show_option_none' => false, |
688 | 688 | ) |
@@ -693,45 +693,45 @@ discard block |
||
693 | 693 | /** |
694 | 694 | * Filters the item query. |
695 | 695 | */ |
696 | - public static function filter_item_query( $query ) { |
|
696 | + public static function filter_item_query($query) { |
|
697 | 697 | |
698 | 698 | // modify the query only if it admin and main query. |
699 | - if ( ! ( is_admin() && $query->is_main_query() ) ){ |
|
699 | + if (!(is_admin() && $query->is_main_query())) { |
|
700 | 700 | return $query; |
701 | 701 | } |
702 | 702 | |
703 | 703 | // we want to modify the query for our items. |
704 | - if ( empty( $query->query['post_type'] ) || 'wpi_item' != $query->query['post_type'] ){ |
|
704 | + if (empty($query->query['post_type']) || 'wpi_item' != $query->query['post_type']) { |
|
705 | 705 | return $query; |
706 | 706 | } |
707 | 707 | |
708 | - if ( empty( $query->query_vars['meta_query'] ) ) { |
|
708 | + if (empty($query->query_vars['meta_query'])) { |
|
709 | 709 | $query->query_vars['meta_query'] = array(); |
710 | 710 | } |
711 | 711 | |
712 | 712 | // Filter vat rule type |
713 | - if ( ! empty( $_GET['vat_rule'] ) ) { |
|
713 | + if (!empty($_GET['vat_rule'])) { |
|
714 | 714 | $query->query_vars['meta_query'][] = array( |
715 | 715 | 'key' => '_wpinv_vat_rule', |
716 | - 'value' => sanitize_text_field( $_GET['vat_rule'] ), |
|
716 | + 'value' => sanitize_text_field($_GET['vat_rule']), |
|
717 | 717 | 'compare' => '=' |
718 | 718 | ); |
719 | 719 | } |
720 | 720 | |
721 | 721 | // Filter vat class |
722 | - if ( ! empty( $_GET['vat_class'] ) ) { |
|
722 | + if (!empty($_GET['vat_class'])) { |
|
723 | 723 | $query->query_vars['meta_query'][] = array( |
724 | 724 | 'key' => '_wpinv_vat_class', |
725 | - 'value' => sanitize_text_field( $_GET['vat_class'] ), |
|
725 | + 'value' => sanitize_text_field($_GET['vat_class']), |
|
726 | 726 | 'compare' => '=' |
727 | 727 | ); |
728 | 728 | } |
729 | 729 | |
730 | 730 | // Filter item type |
731 | - if ( ! empty( $_GET['type'] ) ) { |
|
731 | + if (!empty($_GET['type'])) { |
|
732 | 732 | $query->query_vars['meta_query'][] = array( |
733 | 733 | 'key' => '_wpinv_type', |
734 | - 'value' => sanitize_text_field( $_GET['type'] ), |
|
734 | + 'value' => sanitize_text_field($_GET['type']), |
|
735 | 735 | 'compare' => '=' |
736 | 736 | ); |
737 | 737 | } |
@@ -741,15 +741,15 @@ discard block |
||
741 | 741 | /** |
742 | 742 | * Reorders items. |
743 | 743 | */ |
744 | - public static function reorder_items( $vars ) { |
|
744 | + public static function reorder_items($vars) { |
|
745 | 745 | global $typenow; |
746 | 746 | |
747 | - if ( 'wpi_item' !== $typenow || empty( $vars['orderby'] ) ) { |
|
747 | + if ('wpi_item' !== $typenow || empty($vars['orderby'])) { |
|
748 | 748 | return $vars; |
749 | 749 | } |
750 | 750 | |
751 | 751 | // By item type. |
752 | - if ( 'type' == $vars['orderby'] ) { |
|
752 | + if ('type' == $vars['orderby']) { |
|
753 | 753 | return array_merge( |
754 | 754 | $vars, |
755 | 755 | array( |
@@ -760,7 +760,7 @@ discard block |
||
760 | 760 | } |
761 | 761 | |
762 | 762 | // By vat class. |
763 | - if ( 'vat_class' == $vars['orderby'] ) { |
|
763 | + if ('vat_class' == $vars['orderby']) { |
|
764 | 764 | return array_merge( |
765 | 765 | $vars, |
766 | 766 | array( |
@@ -771,7 +771,7 @@ discard block |
||
771 | 771 | } |
772 | 772 | |
773 | 773 | // By vat rule. |
774 | - if ( 'vat_rule' == $vars['orderby'] ) { |
|
774 | + if ('vat_rule' == $vars['orderby']) { |
|
775 | 775 | return array_merge( |
776 | 776 | $vars, |
777 | 777 | array( |
@@ -782,7 +782,7 @@ discard block |
||
782 | 782 | } |
783 | 783 | |
784 | 784 | // By price. |
785 | - if ( 'price' == $vars['orderby'] ) { |
|
785 | + if ('price' == $vars['orderby']) { |
|
786 | 786 | return array_merge( |
787 | 787 | $vars, |
788 | 788 | array( |
@@ -799,27 +799,27 @@ discard block |
||
799 | 799 | /** |
800 | 800 | * Fired when deleting a post. |
801 | 801 | */ |
802 | - public static function delete_post( $post_id ) { |
|
802 | + public static function delete_post($post_id) { |
|
803 | 803 | |
804 | - switch ( get_post_type( $post_id ) ) { |
|
804 | + switch (get_post_type($post_id)) { |
|
805 | 805 | |
806 | 806 | case 'wpi_item' : |
807 | - do_action( "getpaid_before_delete_item", new WPInv_Item( $post_id ) ); |
|
807 | + do_action("getpaid_before_delete_item", new WPInv_Item($post_id)); |
|
808 | 808 | break; |
809 | 809 | |
810 | 810 | case 'wpi_payment_form' : |
811 | - do_action( "getpaid_before_delete_payment_form", new GetPaid_Payment_Form( $post_id ) ); |
|
811 | + do_action("getpaid_before_delete_payment_form", new GetPaid_Payment_Form($post_id)); |
|
812 | 812 | break; |
813 | 813 | |
814 | 814 | case 'wpi_discount' : |
815 | - do_action( "getpaid_before_delete_discount", new WPInv_Discount( $post_id ) ); |
|
815 | + do_action("getpaid_before_delete_discount", new WPInv_Discount($post_id)); |
|
816 | 816 | break; |
817 | 817 | |
818 | 818 | case 'wpi_invoice' : |
819 | - $invoice = new WPInv_Invoice( $post_id ); |
|
820 | - do_action( "getpaid_before_delete_invoice", $invoice ); |
|
821 | - $invoice->get_data_store()->delete_items( $invoice ); |
|
822 | - $invoice->get_data_store()->delete_special_fields( $invoice ); |
|
819 | + $invoice = new WPInv_Invoice($post_id); |
|
820 | + do_action("getpaid_before_delete_invoice", $invoice); |
|
821 | + $invoice->get_data_store()->delete_items($invoice); |
|
822 | + $invoice->get_data_store()->delete_special_fields($invoice); |
|
823 | 823 | break; |
824 | 824 | } |
825 | 825 | } |
@@ -832,29 +832,29 @@ discard block |
||
832 | 832 | * |
833 | 833 | * @return mixed |
834 | 834 | */ |
835 | - public static function add_display_post_states( $post_states, $post ) { |
|
835 | + public static function add_display_post_states($post_states, $post) { |
|
836 | 836 | |
837 | - if ( wpinv_get_option( 'success_page', 0 ) == $post->ID ) { |
|
838 | - $post_states['getpaid_success_page'] = __( 'GetPaid Receipt Page', 'invoicing' ); |
|
837 | + if (wpinv_get_option('success_page', 0) == $post->ID) { |
|
838 | + $post_states['getpaid_success_page'] = __('GetPaid Receipt Page', 'invoicing'); |
|
839 | 839 | } |
840 | 840 | |
841 | - foreach ( getpaid_get_invoice_post_types() as $post_type => $label ) { |
|
841 | + foreach (getpaid_get_invoice_post_types() as $post_type => $label) { |
|
842 | 842 | |
843 | - if ( wpinv_get_option( "{$post_type}_history_page", 0 ) == $post->ID ) { |
|
843 | + if (wpinv_get_option("{$post_type}_history_page", 0) == $post->ID) { |
|
844 | 844 | $post_states["getpaid_{$post_type}_history_page"] = sprintf( |
845 | - __( 'GetPaid %s History Page', 'invoicing' ), |
|
845 | + __('GetPaid %s History Page', 'invoicing'), |
|
846 | 846 | $label |
847 | 847 | ); |
848 | 848 | } |
849 | 849 | |
850 | 850 | } |
851 | 851 | |
852 | - if ( wpinv_get_option( 'invoice_subscription_page', 0 ) == $post->ID ) { |
|
853 | - $post_states['getpaid_invoice_subscription_page'] = __( 'GetPaid Subscription Page', 'invoicing' ); |
|
852 | + if (wpinv_get_option('invoice_subscription_page', 0) == $post->ID) { |
|
853 | + $post_states['getpaid_invoice_subscription_page'] = __('GetPaid Subscription Page', 'invoicing'); |
|
854 | 854 | } |
855 | 855 | |
856 | - if ( wpinv_get_option( 'checkout_page', 0 ) == $post->ID ) { |
|
857 | - $post_states['getpaid_checkout_page'] = __( 'GetPaid Checkout Page', 'invoicing' ); |
|
856 | + if (wpinv_get_option('checkout_page', 0) == $post->ID) { |
|
857 | + $post_states['getpaid_checkout_page'] = __('GetPaid Checkout Page', 'invoicing'); |
|
858 | 858 | } |
859 | 859 | |
860 | 860 | return $post_states; |
@@ -11,58 +11,58 @@ discard block |
||
11 | 11 | * @var string $country The current user's country |
12 | 12 | */ |
13 | 13 | |
14 | -defined( 'ABSPATH' ) || exit; |
|
14 | +defined('ABSPATH') || exit; |
|
15 | 15 | |
16 | 16 | |
17 | -$field_type = sanitize_key( $field_type ); |
|
17 | +$field_type = sanitize_key($field_type); |
|
18 | 18 | |
19 | 19 | echo "<div class='row $field_type'>"; |
20 | 20 | |
21 | -foreach ( $fields as $address_field ) { |
|
21 | +foreach ($fields as $address_field) { |
|
22 | 22 | |
23 | 23 | // Skip if it is hidden. |
24 | - if ( empty( $address_field['visible'] ) ) { |
|
24 | + if (empty($address_field['visible'])) { |
|
25 | 25 | continue; |
26 | 26 | } |
27 | 27 | |
28 | - do_action( 'getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field ); |
|
28 | + do_action('getpaid_payment_form_address_field_before_' . $address_field['name'], $field_type, $address_field); |
|
29 | 29 | |
30 | 30 | // Prepare variables. |
31 | - if ( ! empty( $form->invoice ) ) { |
|
31 | + if (!empty($form->invoice)) { |
|
32 | 32 | $user_id = $form->invoice->get_user_id(); |
33 | 33 | } |
34 | 34 | |
35 | - if ( empty( $user_id ) && is_user_logged_in() ) { |
|
35 | + if (empty($user_id) && is_user_logged_in()) { |
|
36 | 36 | $user_id = get_current_user_id(); |
37 | 37 | } |
38 | 38 | |
39 | 39 | $field_name = $address_field['name']; |
40 | 40 | $field_name = "{$field_type}[$field_name]"; |
41 | - $wrap_class = getpaid_get_form_element_grid_class( $address_field ); |
|
42 | - $wrap_class = esc_attr( "$wrap_class getpaid-address-field-wrapper" ); |
|
43 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
44 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
45 | - $value = ! empty( $user_id ) ? get_user_meta( $user_id, '_' . $address_field['name'], true ) : ''; |
|
46 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
47 | - |
|
48 | - if ( ! empty( $address_field['required'] ) ) { |
|
41 | + $wrap_class = getpaid_get_form_element_grid_class($address_field); |
|
42 | + $wrap_class = esc_attr("$wrap_class getpaid-address-field-wrapper"); |
|
43 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
44 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
45 | + $value = !empty($user_id) ? get_user_meta($user_id, '_' . $address_field['name'], true) : ''; |
|
46 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
47 | + |
|
48 | + if (!empty($address_field['required'])) { |
|
49 | 49 | $label .= "<span class='text-danger'> *</span>"; |
50 | 50 | } |
51 | 51 | |
52 | 52 | // Display the country. |
53 | - if ( 'wpinv_country' == $address_field['name'] ) { |
|
53 | + if ('wpinv_country' == $address_field['name']) { |
|
54 | 54 | |
55 | 55 | echo "<div class='form-group $wrap_class getpaid-address-field-wrapper__country'"; |
56 | 56 | |
57 | 57 | echo aui()->select( |
58 | 58 | array( |
59 | 59 | 'options' => wpinv_get_country_list(), |
60 | - 'name' => esc_attr( $field_name ), |
|
61 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
62 | - 'value' => sanitize_text_field( $country ), |
|
60 | + 'name' => esc_attr($field_name), |
|
61 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
62 | + 'value' => sanitize_text_field($country), |
|
63 | 63 | 'placeholder' => $placeholder, |
64 | - 'required' => ! empty( $address_field['required'] ), |
|
65 | - 'label' => wp_kses_post( $label ), |
|
64 | + 'required' => !empty($address_field['required']), |
|
65 | + 'label' => wp_kses_post($label), |
|
66 | 66 | 'label_type' => 'vertical', |
67 | 67 | 'help_text' => $description, |
68 | 68 | 'class' => 'getpaid-address-field wpinv_country', |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | ) |
76 | 76 | ); |
77 | 77 | |
78 | - if ( wpinv_should_validate_vat_number() ) { |
|
78 | + if (wpinv_should_validate_vat_number()) { |
|
79 | 79 | |
80 | 80 | echo aui()->input( |
81 | 81 | array( |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | 'id' => "shipping-toggle$uniqid", |
85 | 85 | 'wrap_class' => "getpaid-address-field-wrapper__address-confirm mt-1 d-none", |
86 | 86 | 'required' => false, |
87 | - 'label' => __( 'I certify that I live in the country selected above', 'invoicing' ) . "<span class='text-danger'> *</span>", |
|
87 | + 'label' => __('I certify that I live in the country selected above', 'invoicing') . "<span class='text-danger'> *</span>", |
|
88 | 88 | 'value' => 1, |
89 | 89 | 'checked' => true, |
90 | 90 | 'class' => 'w-auto', |
@@ -98,27 +98,27 @@ discard block |
||
98 | 98 | } |
99 | 99 | |
100 | 100 | // Display the state. |
101 | - else if ( 'wpinv_state' == $address_field['name'] ) { |
|
101 | + else if ('wpinv_state' == $address_field['name']) { |
|
102 | 102 | |
103 | - if ( empty( $value ) ) { |
|
103 | + if (empty($value)) { |
|
104 | 104 | $value = wpinv_get_default_state(); |
105 | 105 | } |
106 | 106 | |
107 | - echo getpaid_get_states_select_markup ( |
|
107 | + echo getpaid_get_states_select_markup( |
|
108 | 108 | $country, |
109 | 109 | $value, |
110 | 110 | $placeholder, |
111 | 111 | $label, |
112 | 112 | $description, |
113 | - ! empty( $address_field['required'] ), |
|
113 | + !empty($address_field['required']), |
|
114 | 114 | $wrap_class, |
115 | 115 | $field_name |
116 | 116 | ); |
117 | 117 | |
118 | 118 | } else { |
119 | 119 | |
120 | - $key = str_replace( 'wpinv_', '', $address_field['name'] ); |
|
121 | - $key = esc_attr( str_replace( '_', '-', $key ) ); |
|
120 | + $key = str_replace('wpinv_', '', $address_field['name']); |
|
121 | + $key = esc_attr(str_replace('_', '-', $key)); |
|
122 | 122 | $autocomplete = ''; |
123 | 123 | $replacements = array( |
124 | 124 | 'zip' => 'postal-code', |
@@ -131,37 +131,37 @@ discard block |
||
131 | 131 | ); |
132 | 132 | |
133 | 133 | |
134 | - if ( isset( $replacements[ $key ] ) ) { |
|
134 | + if (isset($replacements[$key])) { |
|
135 | 135 | $autocomplete = array( |
136 | - 'autocomplete' => "$field_type {$replacements[ $key ]}", |
|
136 | + 'autocomplete' => "$field_type {$replacements[$key]}", |
|
137 | 137 | ); |
138 | 138 | } |
139 | 139 | |
140 | 140 | $append = ''; |
141 | 141 | |
142 | - if ( 'billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key ) { |
|
143 | - $valid = esc_attr__( 'Valid', 'invoicing' ); |
|
144 | - $invalid = esc_attr__( 'Invalid', 'invoicing' ); |
|
145 | - $validate = esc_attr__( 'Validate', 'invoicing' ); |
|
142 | + if ('billing' === $field_type && wpinv_should_validate_vat_number() && 'vat-number' === $key) { |
|
143 | + $valid = esc_attr__('Valid', 'invoicing'); |
|
144 | + $invalid = esc_attr__('Invalid', 'invoicing'); |
|
145 | + $validate = esc_attr__('Validate', 'invoicing'); |
|
146 | 146 | $append = "<span class='btn btn-primary getpaid-vat-number-validate' data-valid='$valid' data-invalid='$invalid' data-validate='$validate'>$validate</span>"; |
147 | 147 | } |
148 | 148 | |
149 | - if ( 'billing' === $field_type ) { |
|
150 | - $description .= '<div class="getpaid-error-' . sanitize_html_class( $field_name ) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
149 | + if ('billing' === $field_type) { |
|
150 | + $description .= '<div class="getpaid-error-' . sanitize_html_class($field_name) . ' getpaid-custom-payment-form-errors alert alert-danger d-none"></div>'; |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | echo aui()->input( |
154 | 154 | array( |
155 | - 'name' => esc_attr( $field_name ), |
|
156 | - 'id' => sanitize_html_class( $field_name ) . $uniqid, |
|
157 | - 'required' => ! empty( $address_field['required'] ), |
|
155 | + 'name' => esc_attr($field_name), |
|
156 | + 'id' => sanitize_html_class($field_name) . $uniqid, |
|
157 | + 'required' => !empty($address_field['required']), |
|
158 | 158 | 'placeholder' => $placeholder, |
159 | - 'label' => wp_kses_post( $label ), |
|
159 | + 'label' => wp_kses_post($label), |
|
160 | 160 | 'label_type' => 'vertical', |
161 | 161 | 'help_text' => $description, |
162 | 162 | 'type' => 'text', |
163 | - 'value' => sanitize_text_field( $value ), |
|
164 | - 'class' => 'getpaid-address-field ' . esc_attr( $address_field['name'] ), |
|
163 | + 'value' => sanitize_text_field($value), |
|
164 | + 'class' => 'getpaid-address-field ' . esc_attr($address_field['name']), |
|
165 | 165 | 'wrap_class' => "$wrap_class getpaid-address-field-wrapper__$key", |
166 | 166 | 'label_class' => 'getpaid-address-field-label getpaid-address-field-label__' . $key, |
167 | 167 | 'extra_attributes' => $autocomplete, |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | |
172 | 172 | } |
173 | 173 | |
174 | - do_action( 'getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field ); |
|
174 | + do_action('getpaid_payment_form_address_field_after_' . $address_field['name'], $field_type, $address_field); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | echo "</div>"; |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * Payment form submission taxes class |
@@ -29,22 +29,22 @@ discard block |
||
29 | 29 | * |
30 | 30 | * @param GetPaid_Payment_Form_Submission $submission |
31 | 31 | */ |
32 | - public function __construct( $submission ) { |
|
32 | + public function __construct($submission) { |
|
33 | 33 | |
34 | 34 | // Validate VAT number. |
35 | - $this->validate_vat( $submission ); |
|
35 | + $this->validate_vat($submission); |
|
36 | 36 | |
37 | - if ( $this->skip_taxes ) { |
|
37 | + if ($this->skip_taxes) { |
|
38 | 38 | return; |
39 | 39 | } |
40 | 40 | |
41 | - foreach ( $submission->get_items() as $item ) { |
|
42 | - $this->process_item_tax( $item, $submission ); |
|
41 | + foreach ($submission->get_items() as $item) { |
|
42 | + $this->process_item_tax($item, $submission); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | // Process any existing invoice taxes. |
46 | - if ( $submission->has_invoice() ) { |
|
47 | - $this->taxes = array_replace( $submission->get_invoice()->get_taxes(), $this->taxes ); |
|
46 | + if ($submission->has_invoice()) { |
|
47 | + $this->taxes = array_replace($submission->get_invoice()->get_taxes(), $this->taxes); |
|
48 | 48 | } |
49 | 49 | |
50 | 50 | } |
@@ -56,26 +56,26 @@ discard block |
||
56 | 56 | * @param GetPaid_Form_Item $item |
57 | 57 | * @param GetPaid_Payment_Form_Submission $submission |
58 | 58 | */ |
59 | - public function process_item_tax( $item, $submission ) { |
|
59 | + public function process_item_tax($item, $submission) { |
|
60 | 60 | |
61 | - $rates = getpaid_get_item_tax_rates( $item, $submission->country, $submission->state ); |
|
62 | - $rates = getpaid_filter_item_tax_rates( $item, $rates ); |
|
63 | - $taxes = getpaid_calculate_item_taxes( getpaid_get_taxable_amount( $item, false ), $rates ); |
|
64 | - $r_taxes = getpaid_calculate_item_taxes( getpaid_get_taxable_amount( $item, true ), $rates ); |
|
61 | + $rates = getpaid_get_item_tax_rates($item, $submission->country, $submission->state); |
|
62 | + $rates = getpaid_filter_item_tax_rates($item, $rates); |
|
63 | + $taxes = getpaid_calculate_item_taxes(getpaid_get_taxable_amount($item, false), $rates); |
|
64 | + $r_taxes = getpaid_calculate_item_taxes(getpaid_get_taxable_amount($item, true), $rates); |
|
65 | 65 | |
66 | - foreach ( $taxes as $name => $amount ) { |
|
67 | - $recurring = isset( $r_taxes[ $name ] ) ? $r_taxes[ $name ] : 0; |
|
68 | - $tax = getpaid_prepare_item_tax( $item, $name, $amount, $recurring ); |
|
66 | + foreach ($taxes as $name => $amount) { |
|
67 | + $recurring = isset($r_taxes[$name]) ? $r_taxes[$name] : 0; |
|
68 | + $tax = getpaid_prepare_item_tax($item, $name, $amount, $recurring); |
|
69 | 69 | |
70 | - $item->item_tax += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
70 | + $item->item_tax += wpinv_sanitize_amount($tax['initial_tax']); |
|
71 | 71 | |
72 | - if ( ! isset( $this->taxes[ $name ] ) ) { |
|
73 | - $this->taxes[ $name ] = $tax; |
|
72 | + if (!isset($this->taxes[$name])) { |
|
73 | + $this->taxes[$name] = $tax; |
|
74 | 74 | continue; |
75 | 75 | } |
76 | 76 | |
77 | - $this->taxes[ $name ]['initial_tax'] += $tax['initial_tax']; |
|
78 | - $this->taxes[ $name ]['recurring_tax'] += $tax['recurring_tax']; |
|
77 | + $this->taxes[$name]['initial_tax'] += $tax['initial_tax']; |
|
78 | + $this->taxes[$name]['recurring_tax'] += $tax['recurring_tax']; |
|
79 | 79 | |
80 | 80 | } |
81 | 81 | |
@@ -88,11 +88,11 @@ discard block |
||
88 | 88 | * @since 1.0.19 |
89 | 89 | * @return bool |
90 | 90 | */ |
91 | - public function has_digital_item( $submission ) { |
|
91 | + public function has_digital_item($submission) { |
|
92 | 92 | |
93 | - foreach ( $submission->get_items() as $item ) { |
|
93 | + foreach ($submission->get_items() as $item) { |
|
94 | 94 | |
95 | - if ( 'digital' == $item->get_vat_rule() ) { |
|
95 | + if ('digital' == $item->get_vat_rule()) { |
|
96 | 96 | return true; |
97 | 97 | } |
98 | 98 | |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | * @return bool |
109 | 109 | */ |
110 | 110 | public static function is_eu_store() { |
111 | - return self::is_eu_country( wpinv_get_default_country() ); |
|
111 | + return self::is_eu_country(wpinv_get_default_country()); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -118,8 +118,8 @@ discard block |
||
118 | 118 | * @since 1.0.19 |
119 | 119 | * @return bool |
120 | 120 | */ |
121 | - public static function is_eu_country( $country ) { |
|
122 | - return getpaid_is_eu_state( $country ); |
|
121 | + public static function is_eu_country($country) { |
|
122 | + return getpaid_is_eu_state($country); |
|
123 | 123 | } |
124 | 124 | |
125 | 125 | /** |
@@ -129,8 +129,8 @@ discard block |
||
129 | 129 | * @since 1.0.19 |
130 | 130 | * @return bool |
131 | 131 | */ |
132 | - public static function is_eu_transaction( $customer_country ) { |
|
133 | - return self::is_eu_country( $customer_country ) && self::is_eu_store(); |
|
132 | + public static function is_eu_transaction($customer_country) { |
|
133 | + return self::is_eu_country($customer_country) && self::is_eu_store(); |
|
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
@@ -140,12 +140,12 @@ discard block |
||
140 | 140 | * @since 1.0.19 |
141 | 141 | * @return string |
142 | 142 | */ |
143 | - public function get_vat_number( $submission ) { |
|
143 | + public function get_vat_number($submission) { |
|
144 | 144 | |
145 | 145 | // Retrieve from the posted number. |
146 | - $vat_number = $submission->get_field( 'wpinv_vat_number', 'billing' ); |
|
147 | - if ( ! is_null( $vat_number ) ) { |
|
148 | - return wpinv_clean( $vat_number ); |
|
146 | + $vat_number = $submission->get_field('wpinv_vat_number', 'billing'); |
|
147 | + if (!is_null($vat_number)) { |
|
148 | + return wpinv_clean($vat_number); |
|
149 | 149 | } |
150 | 150 | |
151 | 151 | return $submission->has_invoice() ? $submission->get_invoice()->get_vat_number() : ''; |
@@ -158,12 +158,12 @@ discard block |
||
158 | 158 | * @since 1.0.19 |
159 | 159 | * @return string |
160 | 160 | */ |
161 | - public function get_company( $submission ) { |
|
161 | + public function get_company($submission) { |
|
162 | 162 | |
163 | 163 | // Retrieve from the posted data. |
164 | - $company = $submission->get_field( 'wpinv_company', 'billing' ); |
|
165 | - if ( ! empty( $company ) ) { |
|
166 | - return wpinv_clean( $company ); |
|
164 | + $company = $submission->get_field('wpinv_company', 'billing'); |
|
165 | + if (!empty($company)) { |
|
166 | + return wpinv_clean($company); |
|
167 | 167 | } |
168 | 168 | |
169 | 169 | // Retrieve from the invoice. |
@@ -178,10 +178,10 @@ discard block |
||
178 | 178 | * @since 1.0.19 |
179 | 179 | * @return string |
180 | 180 | */ |
181 | - public function requires_vat( $ip_in_eu, $country_in_eu ) { |
|
181 | + public function requires_vat($ip_in_eu, $country_in_eu) { |
|
182 | 182 | |
183 | - $prevent_b2c = wpinv_get_option( 'vat_prevent_b2c_purchase' ); |
|
184 | - $prevent_b2c = ! empty( $prevent_b2c ); |
|
183 | + $prevent_b2c = wpinv_get_option('vat_prevent_b2c_purchase'); |
|
184 | + $prevent_b2c = !empty($prevent_b2c); |
|
185 | 185 | $is_eu = $ip_in_eu || $country_in_eu; |
186 | 186 | |
187 | 187 | return $prevent_b2c && $is_eu; |
@@ -193,43 +193,43 @@ discard block |
||
193 | 193 | * @param GetPaid_Payment_Form_Submission $submission |
194 | 194 | * @since 1.0.19 |
195 | 195 | */ |
196 | - public function validate_vat( $submission ) { |
|
196 | + public function validate_vat($submission) { |
|
197 | 197 | |
198 | - $in_eu = $this->is_eu_transaction( $submission->country ); |
|
198 | + $in_eu = $this->is_eu_transaction($submission->country); |
|
199 | 199 | |
200 | 200 | // Abort if we are not validating vat numbers. |
201 | - if ( ! $in_eu ) { |
|
201 | + if (!$in_eu) { |
|
202 | 202 | return; |
203 | 203 | } |
204 | 204 | |
205 | 205 | // Prepare variables. |
206 | - $vat_number = $this->get_vat_number( $submission ); |
|
206 | + $vat_number = $this->get_vat_number($submission); |
|
207 | 207 | $ip_country = getpaid_get_ip_country(); |
208 | - $is_eu = $this->is_eu_country( $submission->country ); |
|
209 | - $is_ip_eu = $this->is_eu_country( $ip_country ); |
|
208 | + $is_eu = $this->is_eu_country($submission->country); |
|
209 | + $is_ip_eu = $this->is_eu_country($ip_country); |
|
210 | 210 | |
211 | 211 | // Maybe abort early for initial fetches. |
212 | - if ( $submission->is_initial_fetch() && empty( $vat_number ) ) { |
|
212 | + if ($submission->is_initial_fetch() && empty($vat_number)) { |
|
213 | 213 | return; |
214 | 214 | } |
215 | 215 | |
216 | 216 | // If we're preventing business to consumer purchases, |
217 | - if ( $this->requires_vat( $is_ip_eu, $is_eu ) && empty( $vat_number ) ) { |
|
217 | + if ($this->requires_vat($is_ip_eu, $is_eu) && empty($vat_number)) { |
|
218 | 218 | |
219 | 219 | // Ensure that a vat number has been specified. |
220 | - throw new GetPaid_Payment_Exception( '.getpaid-error-billingwpinv_vat_number.getpaid-custom-payment-form-errors', __( 'Please enter your VAT number to verify your purchase is by an EU business.', 'invoicing' ) ); |
|
220 | + throw new GetPaid_Payment_Exception('.getpaid-error-billingwpinv_vat_number.getpaid-custom-payment-form-errors', __('Please enter your VAT number to verify your purchase is by an EU business.', 'invoicing')); |
|
221 | 221 | |
222 | 222 | } |
223 | 223 | |
224 | - if ( empty( $vat_number ) ) { |
|
224 | + if (empty($vat_number)) { |
|
225 | 225 | return; |
226 | 226 | } |
227 | 227 | |
228 | - if ( wpinv_should_validate_vat_number() && ! wpinv_validate_vat_number( $vat_number, $submission->country ) ) { |
|
229 | - throw new GetPaid_Payment_Exception( '.getpaid-error-billingwpinv_vat_number.getpaid-custom-payment-form-errors', __( 'Your VAT number is invalid', 'invoicing' ) ); |
|
228 | + if (wpinv_should_validate_vat_number() && !wpinv_validate_vat_number($vat_number, $submission->country)) { |
|
229 | + throw new GetPaid_Payment_Exception('.getpaid-error-billingwpinv_vat_number.getpaid-custom-payment-form-errors', __('Your VAT number is invalid', 'invoicing')); |
|
230 | 230 | } |
231 | 231 | |
232 | - if ( wpinv_default_billing_country() == $submission->country && 'vat_too' == wpinv_get_option( 'vat_same_country_rule', 'vat_too' ) ) { |
|
232 | + if (wpinv_default_billing_country() == $submission->country && 'vat_too' == wpinv_get_option('vat_same_country_rule', 'vat_too')) { |
|
233 | 233 | return; |
234 | 234 | } |
235 | 235 |
@@ -4,7 +4,7 @@ discard block |
||
4 | 4 | * |
5 | 5 | */ |
6 | 6 | |
7 | -defined( 'ABSPATH' ) || exit; |
|
7 | +defined('ABSPATH') || exit; |
|
8 | 8 | |
9 | 9 | /** |
10 | 10 | * The main admin class. |
@@ -37,13 +37,13 @@ discard block |
||
37 | 37 | /** |
38 | 38 | * Class constructor. |
39 | 39 | */ |
40 | - public function __construct(){ |
|
40 | + public function __construct() { |
|
41 | 41 | |
42 | - $this->admin_path = plugin_dir_path( __FILE__ ); |
|
43 | - $this->admin_url = plugins_url( '/', __FILE__ ); |
|
42 | + $this->admin_path = plugin_dir_path(__FILE__); |
|
43 | + $this->admin_url = plugins_url('/', __FILE__); |
|
44 | 44 | $this->reports = new GetPaid_Reports(); |
45 | 45 | |
46 | - if ( is_admin() ) { |
|
46 | + if (is_admin()) { |
|
47 | 47 | $this->init_admin_hooks(); |
48 | 48 | } |
49 | 49 | |
@@ -54,32 +54,32 @@ discard block |
||
54 | 54 | * |
55 | 55 | */ |
56 | 56 | private function init_admin_hooks() { |
57 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqeue_scripts' ) ); |
|
58 | - add_filter( 'admin_body_class', array( $this, 'admin_body_class' ) ); |
|
59 | - add_action( 'admin_init', array( $this, 'init_ayecode_connect_helper' ) ); |
|
60 | - add_action( 'admin_init', array( $this, 'activation_redirect') ); |
|
61 | - add_action( 'admin_init', array( $this, 'maybe_do_admin_action') ); |
|
62 | - add_action( 'admin_notices', array( $this, 'show_notices' ) ); |
|
63 | - add_action( 'getpaid_authenticated_admin_action_rate_plugin', array( $this, 'redirect_to_wordpress_rating_page' ) ); |
|
64 | - add_action( 'getpaid_authenticated_admin_action_duplicate_form', array( $this, 'duplicate_payment_form' ) ); |
|
65 | - add_action( 'getpaid_authenticated_admin_action_send_invoice', array( $this, 'send_customer_invoice' ) ); |
|
66 | - add_action( 'getpaid_authenticated_admin_action_send_invoice_reminder', array( $this, 'send_customer_payment_reminder' ) ); |
|
67 | - add_action( 'getpaid_authenticated_admin_action_reset_tax_rates', array( $this, 'admin_reset_tax_rates' ) ); |
|
68 | - add_action( 'getpaid_authenticated_admin_action_create_missing_pages', array( $this, 'admin_create_missing_pages' ) ); |
|
69 | - add_action( 'getpaid_authenticated_admin_action_create_missing_tables', array( $this, 'admin_create_missing_tables' ) ); |
|
70 | - add_action( 'getpaid_authenticated_admin_action_migrate_old_invoices', array( $this, 'admin_migrate_old_invoices' ) ); |
|
71 | - add_action( 'getpaid_authenticated_admin_action_download_customers', array( $this, 'admin_download_customers' ) ); |
|
72 | - add_action( 'getpaid_authenticated_admin_action_recalculate_discounts', array( $this, 'admin_recalculate_discounts' ) ); |
|
73 | - add_action( 'getpaid_authenticated_admin_action_install_plugin', array( $this, 'admin_install_plugin' ) ); |
|
74 | - add_action( 'getpaid_authenticated_admin_action_connect_gateway', array( $this, 'admin_connect_gateway' ) ); |
|
75 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
76 | - do_action( 'getpaid_init_admin_hooks', $this ); |
|
57 | + add_action('admin_enqueue_scripts', array($this, 'enqeue_scripts')); |
|
58 | + add_filter('admin_body_class', array($this, 'admin_body_class')); |
|
59 | + add_action('admin_init', array($this, 'init_ayecode_connect_helper')); |
|
60 | + add_action('admin_init', array($this, 'activation_redirect')); |
|
61 | + add_action('admin_init', array($this, 'maybe_do_admin_action')); |
|
62 | + add_action('admin_notices', array($this, 'show_notices')); |
|
63 | + add_action('getpaid_authenticated_admin_action_rate_plugin', array($this, 'redirect_to_wordpress_rating_page')); |
|
64 | + add_action('getpaid_authenticated_admin_action_duplicate_form', array($this, 'duplicate_payment_form')); |
|
65 | + add_action('getpaid_authenticated_admin_action_send_invoice', array($this, 'send_customer_invoice')); |
|
66 | + add_action('getpaid_authenticated_admin_action_send_invoice_reminder', array($this, 'send_customer_payment_reminder')); |
|
67 | + add_action('getpaid_authenticated_admin_action_reset_tax_rates', array($this, 'admin_reset_tax_rates')); |
|
68 | + add_action('getpaid_authenticated_admin_action_create_missing_pages', array($this, 'admin_create_missing_pages')); |
|
69 | + add_action('getpaid_authenticated_admin_action_create_missing_tables', array($this, 'admin_create_missing_tables')); |
|
70 | + add_action('getpaid_authenticated_admin_action_migrate_old_invoices', array($this, 'admin_migrate_old_invoices')); |
|
71 | + add_action('getpaid_authenticated_admin_action_download_customers', array($this, 'admin_download_customers')); |
|
72 | + add_action('getpaid_authenticated_admin_action_recalculate_discounts', array($this, 'admin_recalculate_discounts')); |
|
73 | + add_action('getpaid_authenticated_admin_action_install_plugin', array($this, 'admin_install_plugin')); |
|
74 | + add_action('getpaid_authenticated_admin_action_connect_gateway', array($this, 'admin_connect_gateway')); |
|
75 | + add_filter('admin_footer_text', array($this, 'admin_footer_text')); |
|
76 | + do_action('getpaid_init_admin_hooks', $this); |
|
77 | 77 | |
78 | 78 | // Setup/welcome |
79 | - if ( ! empty( $_GET['page'] ) ) { |
|
80 | - switch ( $_GET['page'] ) { |
|
79 | + if (!empty($_GET['page'])) { |
|
80 | + switch ($_GET['page']) { |
|
81 | 81 | case 'gp-setup' : |
82 | - include_once( dirname( __FILE__ ) . '/class-getpaid-admin-setup-wizard.php' ); |
|
82 | + include_once(dirname(__FILE__) . '/class-getpaid-admin-setup-wizard.php'); |
|
83 | 83 | break; |
84 | 84 | } |
85 | 85 | } |
@@ -93,37 +93,37 @@ discard block |
||
93 | 93 | public function enqeue_scripts() { |
94 | 94 | global $current_screen, $pagenow; |
95 | 95 | |
96 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
96 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
97 | 97 | $editing = $pagenow == 'post.php' || $pagenow == 'post-new.php'; |
98 | 98 | |
99 | - if ( ! empty( $current_screen->post_type ) ) { |
|
99 | + if (!empty($current_screen->post_type)) { |
|
100 | 100 | $page = $current_screen->post_type; |
101 | 101 | } |
102 | 102 | |
103 | 103 | // General styles. |
104 | - if ( false !== stripos( $page, 'wpi' ) || 'gp-setup' == $page ) { |
|
104 | + if (false !== stripos($page, 'wpi') || 'gp-setup' == $page) { |
|
105 | 105 | |
106 | 106 | // Styles. |
107 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/css/admin.css' ); |
|
108 | - wp_enqueue_style( 'wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array( 'wp-color-picker' ), $version ); |
|
109 | - wp_enqueue_style( 'select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all' ); |
|
107 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/css/admin.css'); |
|
108 | + wp_enqueue_style('wpinv_admin_style', WPINV_PLUGIN_URL . 'assets/css/admin.css', array('wp-color-picker'), $version); |
|
109 | + wp_enqueue_style('select2', WPINV_PLUGIN_URL . 'assets/css/select2/select2.min.css', array(), '4.0.13', 'all'); |
|
110 | 110 | |
111 | 111 | // Scripts. |
112 | - wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array( 'jquery' ), WPINV_VERSION ); |
|
112 | + wp_enqueue_script('select2', WPINV_PLUGIN_URL . 'assets/js/select2/select2.full.min.js', array('jquery'), WPINV_VERSION); |
|
113 | 113 | |
114 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin.js' ); |
|
115 | - wp_enqueue_script( 'wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array( 'jquery', 'wp-color-picker', 'jquery-ui-tooltip' ), $version ); |
|
116 | - wp_localize_script( 'wpinv-admin-script', 'WPInv_Admin', apply_filters( 'wpinv_admin_js_localize', $this->get_admin_i18() ) ); |
|
114 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin.js'); |
|
115 | + wp_enqueue_script('wpinv-admin-script', WPINV_PLUGIN_URL . 'assets/js/admin.js', array('jquery', 'wp-color-picker', 'jquery-ui-tooltip'), $version); |
|
116 | + wp_localize_script('wpinv-admin-script', 'WPInv_Admin', apply_filters('wpinv_admin_js_localize', $this->get_admin_i18())); |
|
117 | 117 | |
118 | 118 | } |
119 | 119 | |
120 | 120 | // Payment form scripts. |
121 | - if ( 'wpi_payment_form' == $page && $editing ) { |
|
121 | + if ('wpi_payment_form' == $page && $editing) { |
|
122 | 122 | $this->load_payment_form_scripts(); |
123 | 123 | } |
124 | 124 | |
125 | - if ( $page == 'wpinv-subscriptions' ) { |
|
126 | - wp_enqueue_script( 'postbox' ); |
|
125 | + if ($page == 'wpinv-subscriptions') { |
|
126 | + wp_enqueue_script('postbox'); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | } |
@@ -136,32 +136,32 @@ discard block |
||
136 | 136 | global $post; |
137 | 137 | |
138 | 138 | $date_range = array( |
139 | - 'period' => isset( $_GET['date_range'] ) ? sanitize_text_field( $_GET['date_range'] ) : '7_days' |
|
139 | + 'period' => isset($_GET['date_range']) ? sanitize_text_field($_GET['date_range']) : '7_days' |
|
140 | 140 | ); |
141 | 141 | |
142 | - if ( $date_range['period'] == 'custom' ) { |
|
142 | + if ($date_range['period'] == 'custom') { |
|
143 | 143 | |
144 | - if ( isset( $_GET['from'] ) ) { |
|
145 | - $date_range[ 'after' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['from'] ), current_time( 'timestamp' ) ) - DAY_IN_SECONDS ); |
|
144 | + if (isset($_GET['from'])) { |
|
145 | + $date_range['after'] = date('Y-m-d', strtotime(sanitize_text_field($_GET['from']), current_time('timestamp')) - DAY_IN_SECONDS); |
|
146 | 146 | } |
147 | 147 | |
148 | - if ( isset( $_GET['to'] ) ) { |
|
149 | - $date_range[ 'before' ] = date( 'Y-m-d', strtotime( sanitize_text_field( $_GET['to'] ), current_time( 'timestamp' ) ) + DAY_IN_SECONDS ); |
|
148 | + if (isset($_GET['to'])) { |
|
149 | + $date_range['before'] = date('Y-m-d', strtotime(sanitize_text_field($_GET['to']), current_time('timestamp')) + DAY_IN_SECONDS); |
|
150 | 150 | } |
151 | 151 | |
152 | 152 | } |
153 | 153 | |
154 | 154 | $i18n = array( |
155 | - 'ajax_url' => admin_url( 'admin-ajax.php' ), |
|
156 | - 'post_ID' => isset( $post->ID ) ? $post->ID : '', |
|
157 | - 'wpinv_nonce' => wp_create_nonce( 'wpinv-nonce' ), |
|
158 | - 'rest_nonce' => wp_create_nonce( 'wp_rest' ), |
|
159 | - 'rest_root' => esc_url_raw( rest_url() ), |
|
155 | + 'ajax_url' => admin_url('admin-ajax.php'), |
|
156 | + 'post_ID' => isset($post->ID) ? $post->ID : '', |
|
157 | + 'wpinv_nonce' => wp_create_nonce('wpinv-nonce'), |
|
158 | + 'rest_nonce' => wp_create_nonce('wp_rest'), |
|
159 | + 'rest_root' => esc_url_raw(rest_url()), |
|
160 | 160 | 'date_range' => $date_range, |
161 | - 'add_invoice_note_nonce' => wp_create_nonce( 'add-invoice-note' ), |
|
162 | - 'delete_invoice_note_nonce' => wp_create_nonce( 'delete-invoice-note' ), |
|
163 | - 'invoice_item_nonce' => wp_create_nonce( 'invoice-item' ), |
|
164 | - 'billing_details_nonce' => wp_create_nonce( 'get-billing-details' ), |
|
161 | + 'add_invoice_note_nonce' => wp_create_nonce('add-invoice-note'), |
|
162 | + 'delete_invoice_note_nonce' => wp_create_nonce('delete-invoice-note'), |
|
163 | + 'invoice_item_nonce' => wp_create_nonce('invoice-item'), |
|
164 | + 'billing_details_nonce' => wp_create_nonce('get-billing-details'), |
|
165 | 165 | 'tax' => wpinv_tax_amount(), |
166 | 166 | 'discount' => 0, |
167 | 167 | 'currency_symbol' => wpinv_currency_symbol(), |
@@ -170,38 +170,38 @@ discard block |
||
170 | 170 | 'thousand_sep' => wpinv_thousands_separator(), |
171 | 171 | 'decimal_sep' => wpinv_decimal_separator(), |
172 | 172 | 'decimals' => wpinv_decimals(), |
173 | - 'save_invoice' => __( 'Save Invoice', 'invoicing' ), |
|
174 | - 'status_publish' => wpinv_status_nicename( 'publish' ), |
|
175 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
176 | - 'delete_tax_rate' => __( 'Are you sure you wish to delete this tax rate?', 'invoicing' ), |
|
177 | - 'status_pending' => wpinv_status_nicename( 'wpi-pending' ), |
|
178 | - 'FillBillingDetails' => __( 'Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing' ), |
|
179 | - 'confirmCalcTotals' => __( 'Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing' ), |
|
180 | - 'AreYouSure' => __( 'Are you sure?', 'invoicing' ), |
|
181 | - 'errDeleteItem' => __( 'This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing' ), |
|
182 | - 'delete_subscription' => __( 'Are you sure you want to delete this subscription?', 'invoicing' ), |
|
183 | - 'action_edit' => __( 'Edit', 'invoicing' ), |
|
184 | - 'action_cancel' => __( 'Cancel', 'invoicing' ), |
|
185 | - 'item_description' => __( 'Item Description', 'invoicing' ), |
|
186 | - 'invoice_description' => __( 'Invoice Description', 'invoicing' ), |
|
187 | - 'discount_description' => __( 'Discount Description', 'invoicing' ), |
|
188 | - 'searching' => __( 'Searching', 'invoicing' ), |
|
189 | - 'loading' => __( 'Loading...', 'invoicing' ), |
|
190 | - 'search_customers' => __( 'Enter customer name or email', 'invoicing' ), |
|
191 | - 'search_items' => __( 'Enter item name', 'invoicing' ), |
|
173 | + 'save_invoice' => __('Save Invoice', 'invoicing'), |
|
174 | + 'status_publish' => wpinv_status_nicename('publish'), |
|
175 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
176 | + 'delete_tax_rate' => __('Are you sure you wish to delete this tax rate?', 'invoicing'), |
|
177 | + 'status_pending' => wpinv_status_nicename('wpi-pending'), |
|
178 | + 'FillBillingDetails' => __('Fill the user\'s billing information? This will remove any currently entered billing information', 'invoicing'), |
|
179 | + 'confirmCalcTotals' => __('Recalculate totals? This will recalculate totals based on the user billing country. If no billing country is set it will use the base country.', 'invoicing'), |
|
180 | + 'AreYouSure' => __('Are you sure?', 'invoicing'), |
|
181 | + 'errDeleteItem' => __('This item is in use! Before delete this item, you need to delete all the invoice(s) using this item.', 'invoicing'), |
|
182 | + 'delete_subscription' => __('Are you sure you want to delete this subscription?', 'invoicing'), |
|
183 | + 'action_edit' => __('Edit', 'invoicing'), |
|
184 | + 'action_cancel' => __('Cancel', 'invoicing'), |
|
185 | + 'item_description' => __('Item Description', 'invoicing'), |
|
186 | + 'invoice_description' => __('Invoice Description', 'invoicing'), |
|
187 | + 'discount_description' => __('Discount Description', 'invoicing'), |
|
188 | + 'searching' => __('Searching', 'invoicing'), |
|
189 | + 'loading' => __('Loading...', 'invoicing'), |
|
190 | + 'search_customers' => __('Enter customer name or email', 'invoicing'), |
|
191 | + 'search_items' => __('Enter item name', 'invoicing'), |
|
192 | 192 | ); |
193 | 193 | |
194 | - if ( ! empty( $post ) && getpaid_is_invoice_post_type( $post->post_type ) ) { |
|
194 | + if (!empty($post) && getpaid_is_invoice_post_type($post->post_type)) { |
|
195 | 195 | |
196 | - $invoice = new WPInv_Invoice( $post ); |
|
196 | + $invoice = new WPInv_Invoice($post); |
|
197 | 197 | $i18n['save_invoice'] = sprintf( |
198 | - __( 'Save %s', 'invoicing' ), |
|
199 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
198 | + __('Save %s', 'invoicing'), |
|
199 | + ucfirst($invoice->get_invoice_quote_type()) |
|
200 | 200 | ); |
201 | 201 | |
202 | 202 | $i18n['invoice_description'] = sprintf( |
203 | - __( '%s Description', 'invoicing' ), |
|
204 | - ucfirst( $invoice->get_invoice_quote_type() ) |
|
203 | + __('%s Description', 'invoicing'), |
|
204 | + ucfirst($invoice->get_invoice_quote_type()) |
|
205 | 205 | ); |
206 | 206 | |
207 | 207 | } |
@@ -215,24 +215,24 @@ discard block |
||
215 | 215 | * @param string $footer_text |
216 | 216 | * @return string |
217 | 217 | */ |
218 | - public function admin_footer_text( $footer_text ) { |
|
218 | + public function admin_footer_text($footer_text) { |
|
219 | 219 | global $current_screen; |
220 | 220 | |
221 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
221 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
222 | 222 | |
223 | - if ( ! empty( $current_screen->post_type ) ) { |
|
223 | + if (!empty($current_screen->post_type)) { |
|
224 | 224 | $page = $current_screen->post_type; |
225 | 225 | } |
226 | 226 | |
227 | 227 | // General styles. |
228 | - if ( apply_filters( 'getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing() ) && false !== stripos( $page, 'wpi' ) ) { |
|
228 | + if (apply_filters('getpaid_display_admin_footer_text', wpinv_current_user_can_manage_invoicing()) && false !== stripos($page, 'wpi')) { |
|
229 | 229 | |
230 | 230 | // Change the footer text |
231 | - if ( ! get_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', true ) ) { |
|
231 | + if (!get_user_meta(get_current_user_id(), 'getpaid_admin_footer_text_rated', true)) { |
|
232 | 232 | |
233 | - $rating_url = esc_url( |
|
233 | + $rating_url = esc_url( |
|
234 | 234 | wp_nonce_url( |
235 | - admin_url( 'admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin' ), |
|
235 | + admin_url('admin.php?page=wpinv-reports&getpaid-admin-action=rate_plugin'), |
|
236 | 236 | 'getpaid-nonce', |
237 | 237 | 'getpaid-nonce' |
238 | 238 | ) |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | |
241 | 241 | $footer_text = sprintf( |
242 | 242 | /* translators: %s: five stars */ |
243 | - __( 'If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing' ), |
|
243 | + __('If you like <strong>GetPaid</strong>, please leave us a %s rating. A huge thanks in advance!', 'invoicing'), |
|
244 | 244 | "<a href='$rating_url'>★★★★★</a>" |
245 | 245 | ); |
246 | 246 | |
@@ -248,7 +248,7 @@ discard block |
||
248 | 248 | |
249 | 249 | $footer_text = sprintf( |
250 | 250 | /* translators: %s: GetPaid */ |
251 | - __( 'Thank you for using %s!', 'invoicing' ), |
|
251 | + __('Thank you for using %s!', 'invoicing'), |
|
252 | 252 | "<a href='https://wpgetpaid.com/' target='_blank'><strong>GetPaid</strong></a>" |
253 | 253 | ); |
254 | 254 | |
@@ -265,8 +265,8 @@ discard block |
||
265 | 265 | * @since 2.0.0 |
266 | 266 | */ |
267 | 267 | public function redirect_to_wordpress_rating_page() { |
268 | - update_user_meta( get_current_user_id(), 'getpaid_admin_footer_text_rated', 1 ); |
|
269 | - wp_redirect( 'https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post' ); |
|
268 | + update_user_meta(get_current_user_id(), 'getpaid_admin_footer_text_rated', 1); |
|
269 | + wp_redirect('https://wordpress.org/support/plugin/invoicing/reviews?rate=5#new-post'); |
|
270 | 270 | exit; |
271 | 271 | } |
272 | 272 | |
@@ -277,30 +277,30 @@ discard block |
||
277 | 277 | protected function load_payment_form_scripts() { |
278 | 278 | global $post; |
279 | 279 | |
280 | - wp_enqueue_script( 'vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION ); |
|
281 | - wp_enqueue_script( 'sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION ); |
|
282 | - wp_enqueue_script( 'vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array( 'sortable', 'vue' ), WPINV_VERSION ); |
|
280 | + wp_enqueue_script('vue', WPINV_PLUGIN_URL . 'assets/js/vue/vue.min.js', array(), WPINV_VERSION); |
|
281 | + wp_enqueue_script('sortable', WPINV_PLUGIN_URL . 'assets/js/sortable.min.js', array(), WPINV_VERSION); |
|
282 | + wp_enqueue_script('vue_draggable', WPINV_PLUGIN_URL . 'assets/js/vue/vuedraggable.min.js', array('sortable', 'vue'), WPINV_VERSION); |
|
283 | 283 | |
284 | - $version = filemtime( WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js' ); |
|
285 | - wp_register_script( 'wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array( 'wpinv-admin-script', 'vue_draggable' ), $version ); |
|
284 | + $version = filemtime(WPINV_PLUGIN_DIR . 'assets/js/admin-payment-forms.js'); |
|
285 | + wp_register_script('wpinv-admin-payment-form-script', WPINV_PLUGIN_URL . 'assets/js/admin-payment-forms.js', array('wpinv-admin-script', 'vue_draggable'), $version); |
|
286 | 286 | |
287 | 287 | wp_localize_script( |
288 | 288 | 'wpinv-admin-payment-form-script', |
289 | 289 | 'wpinvPaymentFormAdmin', |
290 | 290 | array( |
291 | - 'elements' => wpinv_get_data( 'payment-form-elements' ), |
|
292 | - 'form_elements' => getpaid_get_payment_form_elements( $post->ID ), |
|
291 | + 'elements' => wpinv_get_data('payment-form-elements'), |
|
292 | + 'form_elements' => getpaid_get_payment_form_elements($post->ID), |
|
293 | 293 | 'currency' => wpinv_currency_symbol(), |
294 | 294 | 'position' => wpinv_currency_position(), |
295 | 295 | 'decimals' => (int) wpinv_decimals(), |
296 | 296 | 'thousands_sep' => wpinv_thousands_separator(), |
297 | 297 | 'decimals_sep' => wpinv_decimal_separator(), |
298 | - 'form_items' => gepaid_get_form_items( $post->ID ), |
|
298 | + 'form_items' => gepaid_get_form_items($post->ID), |
|
299 | 299 | 'is_default' => $post->ID == wpinv_get_default_payment_form(), |
300 | 300 | ) |
301 | 301 | ); |
302 | 302 | |
303 | - wp_enqueue_script( 'wpinv-admin-payment-form-script' ); |
|
303 | + wp_enqueue_script('wpinv-admin-payment-form-script'); |
|
304 | 304 | |
305 | 305 | } |
306 | 306 | |
@@ -311,25 +311,25 @@ discard block |
||
311 | 311 | * @return string |
312 | 312 | * |
313 | 313 | */ |
314 | - public function admin_body_class( $classes ) { |
|
314 | + public function admin_body_class($classes) { |
|
315 | 315 | global $pagenow, $post, $current_screen; |
316 | 316 | |
317 | 317 | |
318 | - $page = isset( $_GET['page'] ) ? $_GET['page'] : ''; |
|
318 | + $page = isset($_GET['page']) ? $_GET['page'] : ''; |
|
319 | 319 | |
320 | - if ( ! empty( $current_screen->post_type ) ) { |
|
320 | + if (!empty($current_screen->post_type)) { |
|
321 | 321 | $page = $current_screen->post_type; |
322 | 322 | } |
323 | 323 | |
324 | - if ( false !== stripos( $page, 'wpi' ) ) { |
|
325 | - $classes .= ' wpi-' . sanitize_key( $page ); |
|
324 | + if (false !== stripos($page, 'wpi')) { |
|
325 | + $classes .= ' wpi-' . sanitize_key($page); |
|
326 | 326 | } |
327 | 327 | |
328 | - if ( in_array( $page, wpinv_parse_list( 'wpi_invoice wpi_payment_form wpi_quote' ) ) ) { |
|
328 | + if (in_array($page, wpinv_parse_list('wpi_invoice wpi_payment_form wpi_quote'))) { |
|
329 | 329 | $classes .= ' wpinv-cpt wpinv'; |
330 | 330 | } |
331 | 331 | |
332 | - if ( getpaid_is_invoice_post_type( $page ) ) { |
|
332 | + if (getpaid_is_invoice_post_type($page)) { |
|
333 | 333 | $classes .= ' getpaid-is-invoice-cpt'; |
334 | 334 | } |
335 | 335 | |
@@ -339,7 +339,7 @@ discard block |
||
339 | 339 | /** |
340 | 340 | * Maybe show the AyeCode Connect Notice. |
341 | 341 | */ |
342 | - public function init_ayecode_connect_helper(){ |
|
342 | + public function init_ayecode_connect_helper() { |
|
343 | 343 | |
344 | 344 | // Register with the deactivation survey class. |
345 | 345 | AyeCode_Deactivation_Survey::instance(array( |
@@ -347,20 +347,20 @@ discard block |
||
347 | 347 | 'version' => WPINV_VERSION, |
348 | 348 | 'support_url' => 'https://wpgetpaid.com/support/', |
349 | 349 | 'documentation_url' => 'https://docs.wpgetpaid.com/', |
350 | - 'activated' => (int) get_option( 'gepaid_installed_on' ), |
|
350 | + 'activated' => (int) get_option('gepaid_installed_on'), |
|
351 | 351 | )); |
352 | 352 | |
353 | 353 | new AyeCode_Connect_Helper( |
354 | 354 | array( |
355 | - 'connect_title' => __("WP Invoicing - an AyeCode product!","invoicing"), |
|
356 | - 'connect_external' => __( "Please confirm you wish to connect your site?","invoicing" ), |
|
357 | - 'connect' => sprintf( __( "<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s","invoicing" ),"<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>","</a>" ), |
|
358 | - 'connect_button' => __("Connect Site","invoicing"), |
|
359 | - 'connecting_button' => __("Connecting...","invoicing"), |
|
360 | - 'error_localhost' => __( "This service will only work with a live domain, not a localhost.","invoicing" ), |
|
361 | - 'error' => __( "Something went wrong, please refresh and try again.","invoicing" ), |
|
355 | + 'connect_title' => __("WP Invoicing - an AyeCode product!", "invoicing"), |
|
356 | + 'connect_external' => __("Please confirm you wish to connect your site?", "invoicing"), |
|
357 | + 'connect' => sprintf(__("<strong>Have a license?</strong> Forget about entering license keys or downloading zip files, connect your site for instant access. %slearn more%s", "invoicing"), "<a href='https://ayecode.io/introducing-ayecode-connect/' target='_blank'>", "</a>"), |
|
358 | + 'connect_button' => __("Connect Site", "invoicing"), |
|
359 | + 'connecting_button' => __("Connecting...", "invoicing"), |
|
360 | + 'error_localhost' => __("This service will only work with a live domain, not a localhost.", "invoicing"), |
|
361 | + 'error' => __("Something went wrong, please refresh and try again.", "invoicing"), |
|
362 | 362 | ), |
363 | - array( 'wpi-addons' ) |
|
363 | + array('wpi-addons') |
|
364 | 364 | ); |
365 | 365 | |
366 | 366 | } |
@@ -372,20 +372,20 @@ discard block |
||
372 | 372 | */ |
373 | 373 | public function activation_redirect() { |
374 | 374 | |
375 | - $redirected = get_option( 'wpinv_redirected_to_settings' ); |
|
375 | + $redirected = get_option('wpinv_redirected_to_settings'); |
|
376 | 376 | |
377 | - if ( ! empty( $redirected ) || wp_doing_ajax() || ! current_user_can( 'manage_options' ) ) { |
|
377 | + if (!empty($redirected) || wp_doing_ajax() || !current_user_can('manage_options')) { |
|
378 | 378 | return; |
379 | 379 | } |
380 | 380 | |
381 | 381 | // Bail if activating from network, or bulk |
382 | - if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { |
|
382 | + if (is_network_admin() || isset($_GET['activate-multi'])) { |
|
383 | 383 | return; |
384 | 384 | } |
385 | 385 | |
386 | - update_option( 'wpinv_redirected_to_settings', 1 ); |
|
386 | + update_option('wpinv_redirected_to_settings', 1); |
|
387 | 387 | |
388 | - wp_safe_redirect( admin_url( 'index.php?page=gp-setup' ) ); |
|
388 | + wp_safe_redirect(admin_url('index.php?page=gp-setup')); |
|
389 | 389 | exit; |
390 | 390 | |
391 | 391 | } |
@@ -395,9 +395,9 @@ discard block |
||
395 | 395 | */ |
396 | 396 | public function maybe_do_admin_action() { |
397 | 397 | |
398 | - if ( wpinv_current_user_can_manage_invoicing() && isset( $_REQUEST['getpaid-admin-action'] ) && isset( $_REQUEST['getpaid-nonce'] ) && wp_verify_nonce( $_REQUEST['getpaid-nonce'], 'getpaid-nonce' ) ) { |
|
399 | - $key = sanitize_key( $_REQUEST['getpaid-admin-action'] ); |
|
400 | - do_action( "getpaid_authenticated_admin_action_$key", $_REQUEST ); |
|
398 | + if (wpinv_current_user_can_manage_invoicing() && isset($_REQUEST['getpaid-admin-action']) && isset($_REQUEST['getpaid-nonce']) && wp_verify_nonce($_REQUEST['getpaid-nonce'], 'getpaid-nonce')) { |
|
399 | + $key = sanitize_key($_REQUEST['getpaid-admin-action']); |
|
400 | + do_action("getpaid_authenticated_admin_action_$key", $_REQUEST); |
|
401 | 401 | } |
402 | 402 | |
403 | 403 | } |
@@ -407,34 +407,34 @@ discard block |
||
407 | 407 | * |
408 | 408 | * @param array $args |
409 | 409 | */ |
410 | - public function duplicate_payment_form( $args ) { |
|
410 | + public function duplicate_payment_form($args) { |
|
411 | 411 | |
412 | - if ( empty( $args['form_id'] ) ) { |
|
412 | + if (empty($args['form_id'])) { |
|
413 | 413 | return; |
414 | 414 | } |
415 | 415 | |
416 | - $form = new GetPaid_Payment_Form( $args['form_id'] ); |
|
416 | + $form = new GetPaid_Payment_Form($args['form_id']); |
|
417 | 417 | |
418 | - if ( ! $form->exists() ) { |
|
418 | + if (!$form->exists()) { |
|
419 | 419 | return; |
420 | 420 | } |
421 | 421 | |
422 | 422 | $new_form = new GetPaid_Payment_Form(); |
423 | - $new_form->set_author( $form->get_author( 'edit' ) ); |
|
424 | - $new_form->set_name( $form->get_name( 'edit' ) . __( '(copy)', 'invoicing' ) ); |
|
425 | - $new_form->set_elements( $form->get_elements( 'edit' ) ); |
|
426 | - $new_form->set_items( $form->get_items( 'edit' ) ); |
|
423 | + $new_form->set_author($form->get_author('edit')); |
|
424 | + $new_form->set_name($form->get_name('edit') . __('(copy)', 'invoicing')); |
|
425 | + $new_form->set_elements($form->get_elements('edit')); |
|
426 | + $new_form->set_items($form->get_items('edit')); |
|
427 | 427 | $new_form->save(); |
428 | 428 | |
429 | - if ( $new_form->exists() ) { |
|
430 | - $this->show_success( __( 'Form duplicated successfully', 'invoicing' ) ); |
|
431 | - $url = get_edit_post_link( $new_form->get_id(), 'edit' ); |
|
429 | + if ($new_form->exists()) { |
|
430 | + $this->show_success(__('Form duplicated successfully', 'invoicing')); |
|
431 | + $url = get_edit_post_link($new_form->get_id(), 'edit'); |
|
432 | 432 | } else { |
433 | - $this->show_error( __( 'Unable to duplicate form', 'invoicing' ) ); |
|
434 | - $url = remove_query_arg( array( 'getpaid-admin-action', 'form_id', 'getpaid-nonce' ) ); |
|
433 | + $this->show_error(__('Unable to duplicate form', 'invoicing')); |
|
434 | + $url = remove_query_arg(array('getpaid-admin-action', 'form_id', 'getpaid-nonce')); |
|
435 | 435 | } |
436 | 436 | |
437 | - wp_redirect( $url ); |
|
437 | + wp_redirect($url); |
|
438 | 438 | exit; |
439 | 439 | } |
440 | 440 | |
@@ -443,16 +443,16 @@ discard block |
||
443 | 443 | * |
444 | 444 | * @param array $args |
445 | 445 | */ |
446 | - public function send_customer_invoice( $args ) { |
|
447 | - $sent = getpaid()->get( 'invoice_emails' )->user_invoice( new WPInv_Invoice( $args['invoice_id'] ), true ); |
|
446 | + public function send_customer_invoice($args) { |
|
447 | + $sent = getpaid()->get('invoice_emails')->user_invoice(new WPInv_Invoice($args['invoice_id']), true); |
|
448 | 448 | |
449 | - if ( $sent ) { |
|
450 | - $this->show_success( __( 'Invoice was successfully sent to the customer', 'invoicing' ) ); |
|
449 | + if ($sent) { |
|
450 | + $this->show_success(__('Invoice was successfully sent to the customer', 'invoicing')); |
|
451 | 451 | } else { |
452 | - $this->show_error( __( 'Could not send the invoice to the customer', 'invoicing' ) ); |
|
452 | + $this->show_error(__('Could not send the invoice to the customer', 'invoicing')); |
|
453 | 453 | } |
454 | 454 | |
455 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
455 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
456 | 456 | exit; |
457 | 457 | } |
458 | 458 | |
@@ -461,16 +461,16 @@ discard block |
||
461 | 461 | * |
462 | 462 | * @param array $args |
463 | 463 | */ |
464 | - public function send_customer_payment_reminder( $args ) { |
|
465 | - $sent = getpaid()->get( 'invoice_emails' )->force_send_overdue_notice( new WPInv_Invoice( $args['invoice_id'] ) ); |
|
464 | + public function send_customer_payment_reminder($args) { |
|
465 | + $sent = getpaid()->get('invoice_emails')->force_send_overdue_notice(new WPInv_Invoice($args['invoice_id'])); |
|
466 | 466 | |
467 | - if ( $sent ) { |
|
468 | - $this->show_success( __( 'Payment reminder was successfully sent to the customer', 'invoicing' ) ); |
|
467 | + if ($sent) { |
|
468 | + $this->show_success(__('Payment reminder was successfully sent to the customer', 'invoicing')); |
|
469 | 469 | } else { |
470 | - $this->show_error( __( 'Could not sent payment reminder to the customer', 'invoicing' ) ); |
|
470 | + $this->show_error(__('Could not sent payment reminder to the customer', 'invoicing')); |
|
471 | 471 | } |
472 | 472 | |
473 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce', 'invoice_id' ) ) ); |
|
473 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce', 'invoice_id'))); |
|
474 | 474 | exit; |
475 | 475 | } |
476 | 476 | |
@@ -480,8 +480,8 @@ discard block |
||
480 | 480 | */ |
481 | 481 | public function admin_reset_tax_rates() { |
482 | 482 | |
483 | - update_option( 'wpinv_tax_rates', wpinv_get_data( 'tax-rates' ) ); |
|
484 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
483 | + update_option('wpinv_tax_rates', wpinv_get_data('tax-rates')); |
|
484 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
485 | 485 | exit; |
486 | 486 | |
487 | 487 | } |
@@ -493,8 +493,8 @@ discard block |
||
493 | 493 | public function admin_create_missing_pages() { |
494 | 494 | $installer = new GetPaid_Installer(); |
495 | 495 | $installer->create_pages(); |
496 | - $this->show_success( __( 'GetPaid pages updated.', 'invoicing' ) ); |
|
497 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
496 | + $this->show_success(__('GetPaid pages updated.', 'invoicing')); |
|
497 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
498 | 498 | exit; |
499 | 499 | } |
500 | 500 | |
@@ -506,35 +506,35 @@ discard block |
||
506 | 506 | global $wpdb; |
507 | 507 | $installer = new GetPaid_Installer(); |
508 | 508 | |
509 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'" ) != $wpdb->prefix . 'wpinv_subscriptions' ) { |
|
509 | + if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}wpinv_subscriptions'") != $wpdb->prefix . 'wpinv_subscriptions') { |
|
510 | 510 | $installer->create_subscriptions_table(); |
511 | 511 | |
512 | - if ( $wpdb->last_error !== '' ) { |
|
513 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
512 | + if ($wpdb->last_error !== '') { |
|
513 | + $this->show_error(__('Your GetPaid tables have been updated:', 'invoicing') . ' ' . $wpdb->last_error); |
|
514 | 514 | } |
515 | 515 | } |
516 | 516 | |
517 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'" ) != $wpdb->prefix . 'getpaid_invoices' ) { |
|
517 | + if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoices'") != $wpdb->prefix . 'getpaid_invoices') { |
|
518 | 518 | $installer->create_invoices_table(); |
519 | 519 | |
520 | - if ( $wpdb->last_error !== '' ) { |
|
521 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
520 | + if ($wpdb->last_error !== '') { |
|
521 | + $this->show_error(__('Your GetPaid tables have been updated:', 'invoicing') . ' ' . $wpdb->last_error); |
|
522 | 522 | } |
523 | 523 | } |
524 | 524 | |
525 | - if ( $wpdb->get_var( "SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'" ) != $wpdb->prefix . 'getpaid_invoice_items' ) { |
|
525 | + if ($wpdb->get_var("SHOW TABLES LIKE '{$wpdb->prefix}getpaid_invoice_items'") != $wpdb->prefix . 'getpaid_invoice_items') { |
|
526 | 526 | $installer->create_invoice_items_table(); |
527 | 527 | |
528 | - if ( $wpdb->last_error !== '' ) { |
|
529 | - $this->show_error( __( 'Your GetPaid tables have been updated:', 'invoicing' ) . ' ' . $wpdb->last_error ); |
|
528 | + if ($wpdb->last_error !== '') { |
|
529 | + $this->show_error(__('Your GetPaid tables have been updated:', 'invoicing') . ' ' . $wpdb->last_error); |
|
530 | 530 | } |
531 | 531 | } |
532 | 532 | |
533 | - if ( ! $this->has_notices() ) { |
|
534 | - $this->show_success( __( 'Your GetPaid tables have been updated.', 'invoicing' ) ); |
|
533 | + if (!$this->has_notices()) { |
|
534 | + $this->show_success(__('Your GetPaid tables have been updated.', 'invoicing')); |
|
535 | 535 | } |
536 | 536 | |
537 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
537 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
538 | 538 | exit; |
539 | 539 | } |
540 | 540 | |
@@ -549,10 +549,10 @@ discard block |
||
549 | 549 | $installer->migrate_old_invoices(); |
550 | 550 | |
551 | 551 | // Show an admin message. |
552 | - $this->show_success( __( 'Your invoices have been migrated.', 'invoicing' ) ); |
|
552 | + $this->show_success(__('Your invoices have been migrated.', 'invoicing')); |
|
553 | 553 | |
554 | 554 | // Redirect the admin. |
555 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
555 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
556 | 556 | exit; |
557 | 557 | |
558 | 558 | } |
@@ -564,18 +564,18 @@ discard block |
||
564 | 564 | public function admin_download_customers() { |
565 | 565 | global $wpdb; |
566 | 566 | |
567 | - $output = fopen( 'php://output', 'w' ) or die( __( 'Unsupported server', 'invoicing' ) ); |
|
567 | + $output = fopen('php://output', 'w') or die(__('Unsupported server', 'invoicing')); |
|
568 | 568 | |
569 | - header( "Content-Type:text/csv" ); |
|
570 | - header( "Content-Disposition:attachment;filename=customers.csv" ); |
|
569 | + header("Content-Type:text/csv"); |
|
570 | + header("Content-Disposition:attachment;filename=customers.csv"); |
|
571 | 571 | |
572 | 572 | $post_types = ''; |
573 | 573 | |
574 | - foreach ( array_keys( getpaid_get_invoice_post_types() ) as $post_type ) { |
|
575 | - $post_types .= $wpdb->prepare( "post_type=%s OR ", $post_type ); |
|
574 | + foreach (array_keys(getpaid_get_invoice_post_types()) as $post_type) { |
|
575 | + $post_types .= $wpdb->prepare("post_type=%s OR ", $post_type); |
|
576 | 576 | } |
577 | 577 | |
578 | - $post_types = rtrim( $post_types, ' OR' ); |
|
578 | + $post_types = rtrim($post_types, ' OR'); |
|
579 | 579 | |
580 | 580 | $customers = $wpdb->get_col( |
581 | 581 | $wpdb->prepare( |
@@ -584,58 +584,58 @@ discard block |
||
584 | 584 | ); |
585 | 585 | |
586 | 586 | $columns = array( |
587 | - 'name' => __( 'Name', 'invoicing' ), |
|
588 | - 'email' => __( 'Email', 'invoicing' ), |
|
589 | - 'country' => __( 'Country', 'invoicing' ), |
|
590 | - 'state' => __( 'State', 'invoicing' ), |
|
591 | - 'city' => __( 'City', 'invoicing' ), |
|
592 | - 'zip' => __( 'ZIP', 'invoicing' ), |
|
593 | - 'address' => __( 'Address', 'invoicing' ), |
|
594 | - 'phone' => __( 'Phone', 'invoicing' ), |
|
595 | - 'company' => __( 'Company', 'invoicing' ), |
|
596 | - 'company_id' => __( 'Company ID', 'invoicing' ), |
|
597 | - 'invoices' => __( 'Invoices', 'invoicing' ), |
|
598 | - 'total_raw' => __( 'Total Spend', 'invoicing' ), |
|
599 | - 'signup' => __( 'Date created', 'invoicing' ), |
|
587 | + 'name' => __('Name', 'invoicing'), |
|
588 | + 'email' => __('Email', 'invoicing'), |
|
589 | + 'country' => __('Country', 'invoicing'), |
|
590 | + 'state' => __('State', 'invoicing'), |
|
591 | + 'city' => __('City', 'invoicing'), |
|
592 | + 'zip' => __('ZIP', 'invoicing'), |
|
593 | + 'address' => __('Address', 'invoicing'), |
|
594 | + 'phone' => __('Phone', 'invoicing'), |
|
595 | + 'company' => __('Company', 'invoicing'), |
|
596 | + 'company_id' => __('Company ID', 'invoicing'), |
|
597 | + 'invoices' => __('Invoices', 'invoicing'), |
|
598 | + 'total_raw' => __('Total Spend', 'invoicing'), |
|
599 | + 'signup' => __('Date created', 'invoicing'), |
|
600 | 600 | ); |
601 | 601 | |
602 | 602 | // Output the csv column headers. |
603 | - fputcsv( $output, array_values( $columns ) ); |
|
603 | + fputcsv($output, array_values($columns)); |
|
604 | 604 | |
605 | 605 | // Loop through |
606 | 606 | $table = new WPInv_Customers_Table(); |
607 | - foreach ( $customers as $customer_id ) { |
|
607 | + foreach ($customers as $customer_id) { |
|
608 | 608 | |
609 | - $user = get_user_by( 'id', $customer_id ); |
|
609 | + $user = get_user_by('id', $customer_id); |
|
610 | 610 | $row = array(); |
611 | - if ( empty( $user ) ) { |
|
611 | + if (empty($user)) { |
|
612 | 612 | continue; |
613 | 613 | } |
614 | 614 | |
615 | - foreach ( array_keys( $columns ) as $column ) { |
|
615 | + foreach (array_keys($columns) as $column) { |
|
616 | 616 | |
617 | 617 | $method = 'column_' . $column; |
618 | 618 | |
619 | - if ( 'name' == $column ) { |
|
620 | - $value = sanitize_text_field( $user->display_name ); |
|
621 | - } else if( 'email' == $column ) { |
|
622 | - $value = sanitize_email( $user->user_email ); |
|
623 | - } else if ( is_callable( array( $table, $method ) ) ) { |
|
624 | - $value = strip_tags( $table->$method( $user ) ); |
|
619 | + if ('name' == $column) { |
|
620 | + $value = sanitize_text_field($user->display_name); |
|
621 | + } else if ('email' == $column) { |
|
622 | + $value = sanitize_email($user->user_email); |
|
623 | + } else if (is_callable(array($table, $method))) { |
|
624 | + $value = strip_tags($table->$method($user)); |
|
625 | 625 | } |
626 | 626 | |
627 | - if ( empty( $value ) ) { |
|
628 | - $value = sanitize_text_field( get_user_meta( $user->ID, '_wpinv_' . $column, true ) ); |
|
627 | + if (empty($value)) { |
|
628 | + $value = sanitize_text_field(get_user_meta($user->ID, '_wpinv_' . $column, true)); |
|
629 | 629 | } |
630 | 630 | |
631 | 631 | $row[] = $value; |
632 | 632 | |
633 | 633 | } |
634 | 634 | |
635 | - fputcsv( $output, $row ); |
|
635 | + fputcsv($output, $row); |
|
636 | 636 | } |
637 | 637 | |
638 | - fclose( $output ); |
|
638 | + fclose($output); |
|
639 | 639 | exit; |
640 | 640 | |
641 | 641 | } |
@@ -645,29 +645,29 @@ discard block |
||
645 | 645 | * |
646 | 646 | * @param array $data |
647 | 647 | */ |
648 | - public function admin_install_plugin( $data ) { |
|
648 | + public function admin_install_plugin($data) { |
|
649 | 649 | |
650 | - if ( ! empty( $data['plugins'] ) ) { |
|
650 | + if (!empty($data['plugins'])) { |
|
651 | 651 | include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
652 | 652 | wp_cache_flush(); |
653 | 653 | |
654 | - foreach ( $data['plugins'] as $slug => $file ) { |
|
655 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip' ); |
|
656 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
657 | - $installed = $upgrader->install( $plugin_zip ); |
|
654 | + foreach ($data['plugins'] as $slug => $file) { |
|
655 | + $plugin_zip = esc_url('https://downloads.wordpress.org/plugin/' . $slug . '.latest-stable.zip'); |
|
656 | + $upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin()); |
|
657 | + $installed = $upgrader->install($plugin_zip); |
|
658 | 658 | |
659 | - if ( ! is_wp_error( $installed ) && $installed ) { |
|
660 | - activate_plugin( $file, '', false, true ); |
|
659 | + if (!is_wp_error($installed) && $installed) { |
|
660 | + activate_plugin($file, '', false, true); |
|
661 | 661 | } else { |
662 | - wpinv_error_log( $upgrader->skin->get_upgrade_messages(), false ); |
|
662 | + wpinv_error_log($upgrader->skin->get_upgrade_messages(), false); |
|
663 | 663 | } |
664 | 664 | |
665 | 665 | } |
666 | 666 | |
667 | 667 | } |
668 | 668 | |
669 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( $data['redirect'] ) : admin_url( 'plugins.php' ); |
|
670 | - wp_safe_redirect( $redirect ); |
|
669 | + $redirect = isset($data['redirect']) ? esc_url_raw($data['redirect']) : admin_url('plugins.php'); |
|
670 | + wp_safe_redirect($redirect); |
|
671 | 671 | exit; |
672 | 672 | |
673 | 673 | } |
@@ -677,42 +677,42 @@ discard block |
||
677 | 677 | * |
678 | 678 | * @param array $data |
679 | 679 | */ |
680 | - public function admin_connect_gateway( $data ) { |
|
680 | + public function admin_connect_gateway($data) { |
|
681 | 681 | |
682 | - if ( ! empty( $data['plugin'] ) ) { |
|
682 | + if (!empty($data['plugin'])) { |
|
683 | 683 | |
684 | - $gateway = sanitize_key( $data['plugin'] ); |
|
685 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
684 | + $gateway = sanitize_key($data['plugin']); |
|
685 | + $connect_url = apply_filters("getpaid_get_{$gateway}_connect_url", false, $data); |
|
686 | 686 | |
687 | - if ( ! empty( $connect_url ) ) { |
|
688 | - wp_redirect( $connect_url ); |
|
687 | + if (!empty($connect_url)) { |
|
688 | + wp_redirect($connect_url); |
|
689 | 689 | exit; |
690 | 690 | } |
691 | 691 | |
692 | - if ( 'stripe' == $data['plugin'] ) { |
|
692 | + if ('stripe' == $data['plugin']) { |
|
693 | 693 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
694 | 694 | include_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php'; |
695 | 695 | wp_cache_flush(); |
696 | 696 | |
697 | - if ( ! array_key_exists( 'getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins() ) ) { |
|
698 | - $plugin_zip = esc_url( 'https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip' ); |
|
699 | - $upgrader = new Plugin_Upgrader( new Automatic_Upgrader_Skin() ); |
|
700 | - $upgrader->install( $plugin_zip ); |
|
697 | + if (!array_key_exists('getpaid-stripe-payments/getpaid-stripe-payments.php', get_plugins())) { |
|
698 | + $plugin_zip = esc_url('https://downloads.wordpress.org/plugin/getpaid-stripe-payments.latest-stable.zip'); |
|
699 | + $upgrader = new Plugin_Upgrader(new Automatic_Upgrader_Skin()); |
|
700 | + $upgrader->install($plugin_zip); |
|
701 | 701 | } |
702 | 702 | |
703 | - activate_plugin( 'getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true ); |
|
703 | + activate_plugin('getpaid-stripe-payments/getpaid-stripe-payments.php', '', false, true); |
|
704 | 704 | } |
705 | 705 | |
706 | - $connect_url = apply_filters( "getpaid_get_{$gateway}_connect_url", false, $data ); |
|
707 | - if ( ! empty( $connect_url ) ) { |
|
708 | - wp_redirect( $connect_url ); |
|
706 | + $connect_url = apply_filters("getpaid_get_{$gateway}_connect_url", false, $data); |
|
707 | + if (!empty($connect_url)) { |
|
708 | + wp_redirect($connect_url); |
|
709 | 709 | exit; |
710 | 710 | } |
711 | 711 | |
712 | 712 | } |
713 | 713 | |
714 | - $redirect = isset( $data['redirect'] ) ? esc_url_raw( urldecode( $data['redirect'] ) ) : admin_url( 'admin.php?page=wpinv-settings&tab=gateways' ); |
|
715 | - wp_safe_redirect( $redirect ); |
|
714 | + $redirect = isset($data['redirect']) ? esc_url_raw(urldecode($data['redirect'])) : admin_url('admin.php?page=wpinv-settings&tab=gateways'); |
|
715 | + wp_safe_redirect($redirect); |
|
716 | 716 | exit; |
717 | 717 | |
718 | 718 | } |
@@ -726,36 +726,36 @@ discard block |
||
726 | 726 | |
727 | 727 | // Fetch all invoices that have discount codes. |
728 | 728 | $table = $wpdb->prefix . 'getpaid_invoices'; |
729 | - $invoices = $wpdb->get_col( "SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''" ); |
|
729 | + $invoices = $wpdb->get_col("SELECT `post_id` FROM `$table` WHERE `discount` = 0 && `discount_code` <> ''"); |
|
730 | 730 | |
731 | - foreach ( $invoices as $invoice ) { |
|
731 | + foreach ($invoices as $invoice) { |
|
732 | 732 | |
733 | - $invoice = new WPInv_Invoice( $invoice ); |
|
733 | + $invoice = new WPInv_Invoice($invoice); |
|
734 | 734 | |
735 | - if ( ! $invoice->exists() ) { |
|
735 | + if (!$invoice->exists()) { |
|
736 | 736 | continue; |
737 | 737 | } |
738 | 738 | |
739 | 739 | // Abort if the discount does not exist or does not apply here. |
740 | - $discount = new WPInv_Discount( $invoice->get_discount_code() ); |
|
741 | - if ( ! $discount->exists() ) { |
|
740 | + $discount = new WPInv_Discount($invoice->get_discount_code()); |
|
741 | + if (!$discount->exists()) { |
|
742 | 742 | continue; |
743 | 743 | } |
744 | 744 | |
745 | - $invoice->add_discount( getpaid_calculate_invoice_discount( $invoice, $discount ) ); |
|
745 | + $invoice->add_discount(getpaid_calculate_invoice_discount($invoice, $discount)); |
|
746 | 746 | $invoice->recalculate_total(); |
747 | 747 | |
748 | - if ( $invoice->get_total_discount() > 0 ) { |
|
748 | + if ($invoice->get_total_discount() > 0) { |
|
749 | 749 | $invoice->save(); |
750 | 750 | } |
751 | 751 | |
752 | 752 | } |
753 | 753 | |
754 | 754 | // Show an admin message. |
755 | - $this->show_success( __( 'Discounts have been recalculated.', 'invoicing' ) ); |
|
755 | + $this->show_success(__('Discounts have been recalculated.', 'invoicing')); |
|
756 | 756 | |
757 | 757 | // Redirect the admin. |
758 | - wp_safe_redirect( remove_query_arg( array( 'getpaid-admin-action', 'getpaid-nonce' ) ) ); |
|
758 | + wp_safe_redirect(remove_query_arg(array('getpaid-admin-action', 'getpaid-nonce'))); |
|
759 | 759 | exit; |
760 | 760 | |
761 | 761 | } |
@@ -767,8 +767,8 @@ discard block |
||
767 | 767 | * @return array |
768 | 768 | */ |
769 | 769 | public function get_notices() { |
770 | - $notices = get_option( 'wpinv_admin_notices' ); |
|
771 | - return is_array( $notices ) ? $notices : array(); |
|
770 | + $notices = get_option('wpinv_admin_notices'); |
|
771 | + return is_array($notices) ? $notices : array(); |
|
772 | 772 | } |
773 | 773 | |
774 | 774 | /** |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | * @return array |
779 | 779 | */ |
780 | 780 | public function has_notices() { |
781 | - return count( $this->get_notices() ) > 0; |
|
781 | + return count($this->get_notices()) > 0; |
|
782 | 782 | } |
783 | 783 | |
784 | 784 | /** |
@@ -788,7 +788,7 @@ discard block |
||
788 | 788 | * @since 1.0.19 |
789 | 789 | */ |
790 | 790 | public function clear_notices() { |
791 | - delete_option( 'wpinv_admin_notices' ); |
|
791 | + delete_option('wpinv_admin_notices'); |
|
792 | 792 | } |
793 | 793 | |
794 | 794 | /** |
@@ -797,16 +797,16 @@ discard block |
||
797 | 797 | * @access public |
798 | 798 | * @since 1.0.19 |
799 | 799 | */ |
800 | - public function save_notice( $type, $message ) { |
|
800 | + public function save_notice($type, $message) { |
|
801 | 801 | $notices = $this->get_notices(); |
802 | 802 | |
803 | - if ( empty( $notices[ $type ] ) || ! is_array( $notices[ $type ]) ) { |
|
804 | - $notices[ $type ] = array(); |
|
803 | + if (empty($notices[$type]) || !is_array($notices[$type])) { |
|
804 | + $notices[$type] = array(); |
|
805 | 805 | } |
806 | 806 | |
807 | - $notices[ $type ][] = $message; |
|
807 | + $notices[$type][] = $message; |
|
808 | 808 | |
809 | - update_option( 'wpinv_admin_notices', $notices ); |
|
809 | + update_option('wpinv_admin_notices', $notices); |
|
810 | 810 | } |
811 | 811 | |
812 | 812 | /** |
@@ -816,8 +816,8 @@ discard block |
||
816 | 816 | * @access public |
817 | 817 | * @since 1.0.19 |
818 | 818 | */ |
819 | - public function show_success( $msg ) { |
|
820 | - $this->save_notice( 'success', $msg ); |
|
819 | + public function show_success($msg) { |
|
820 | + $this->save_notice('success', $msg); |
|
821 | 821 | } |
822 | 822 | |
823 | 823 | /** |
@@ -827,8 +827,8 @@ discard block |
||
827 | 827 | * @param string $msg The message to qeue. |
828 | 828 | * @since 1.0.19 |
829 | 829 | */ |
830 | - public function show_error( $msg ) { |
|
831 | - $this->save_notice( 'error', $msg ); |
|
830 | + public function show_error($msg) { |
|
831 | + $this->save_notice('error', $msg); |
|
832 | 832 | } |
833 | 833 | |
834 | 834 | /** |
@@ -838,8 +838,8 @@ discard block |
||
838 | 838 | * @param string $msg The message to qeue. |
839 | 839 | * @since 1.0.19 |
840 | 840 | */ |
841 | - public function show_warning( $msg ) { |
|
842 | - $this->save_notice( 'warning', $msg ); |
|
841 | + public function show_warning($msg) { |
|
842 | + $this->save_notice('warning', $msg); |
|
843 | 843 | } |
844 | 844 | |
845 | 845 | /** |
@@ -849,8 +849,8 @@ discard block |
||
849 | 849 | * @param string $msg The message to qeue. |
850 | 850 | * @since 1.0.19 |
851 | 851 | */ |
852 | - public function show_info( $msg ) { |
|
853 | - $this->save_notice( 'info', $msg ); |
|
852 | + public function show_info($msg) { |
|
853 | + $this->save_notice('info', $msg); |
|
854 | 854 | } |
855 | 855 | |
856 | 856 | /** |
@@ -864,30 +864,30 @@ discard block |
||
864 | 864 | $notices = $this->get_notices(); |
865 | 865 | $this->clear_notices(); |
866 | 866 | |
867 | - foreach ( $notices as $type => $messages ) { |
|
867 | + foreach ($notices as $type => $messages) { |
|
868 | 868 | |
869 | - if ( ! is_array( $messages ) ) { |
|
869 | + if (!is_array($messages)) { |
|
870 | 870 | continue; |
871 | 871 | } |
872 | 872 | |
873 | - $type = sanitize_key( $type ); |
|
874 | - foreach ( $messages as $message ) { |
|
875 | - $message = wp_kses_post( $message ); |
|
873 | + $type = sanitize_key($type); |
|
874 | + foreach ($messages as $message) { |
|
875 | + $message = wp_kses_post($message); |
|
876 | 876 | echo "<div class='notice notice-$type is-dismissible'><p>$message</p></div>"; |
877 | 877 | } |
878 | 878 | |
879 | 879 | } |
880 | 880 | |
881 | - foreach ( array( 'checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page' ) as $page ) { |
|
881 | + foreach (array('checkout_page', 'invoice_history_page', 'success_page', 'failure_page', 'invoice_subscription_page') as $page) { |
|
882 | 882 | |
883 | - if ( ! is_numeric( wpinv_get_option( $page, false ) ) ) { |
|
884 | - $url = wp_nonce_url( |
|
885 | - add_query_arg( 'getpaid-admin-action', 'create_missing_pages' ), |
|
883 | + if (!is_numeric(wpinv_get_option($page, false))) { |
|
884 | + $url = wp_nonce_url( |
|
885 | + add_query_arg('getpaid-admin-action', 'create_missing_pages'), |
|
886 | 886 | 'getpaid-nonce', |
887 | 887 | 'getpaid-nonce' |
888 | 888 | ); |
889 | - $message = __( 'Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing' ); |
|
890 | - $message2 = __( 'Generate Pages', 'invoicing' ); |
|
889 | + $message = __('Some GetPaid pages are missing. To use GetPaid without any issues, click the button below to generate the missing pages.', 'invoicing'); |
|
890 | + $message2 = __('Generate Pages', 'invoicing'); |
|
891 | 891 | echo "<div class='notice notice-warning is-dismissible'><p>$message<br><br><a href='$url' class='button button-primary'>$message2</a></p></div>"; |
892 | 892 | break; |
893 | 893 | } |
@@ -15,20 +15,20 @@ discard block |
||
15 | 15 | * @package GetPaid |
16 | 16 | */ |
17 | 17 | |
18 | -defined( 'ABSPATH' ) || exit; |
|
18 | +defined('ABSPATH') || exit; |
|
19 | 19 | |
20 | 20 | // Define constants. |
21 | -if ( ! defined( 'WPINV_PLUGIN_FILE' ) ) { |
|
22 | - define( 'WPINV_PLUGIN_FILE', __FILE__ ); |
|
21 | +if (!defined('WPINV_PLUGIN_FILE')) { |
|
22 | + define('WPINV_PLUGIN_FILE', __FILE__); |
|
23 | 23 | } |
24 | 24 | |
25 | -if ( ! defined( 'WPINV_VERSION' ) ) { |
|
26 | - define( 'WPINV_VERSION', '2.4.5' ); |
|
25 | +if (!defined('WPINV_VERSION')) { |
|
26 | + define('WPINV_VERSION', '2.4.5'); |
|
27 | 27 | } |
28 | 28 | |
29 | 29 | // Include the main Invoicing class. |
30 | -if ( ! class_exists( 'WPInv_Plugin', false ) ) { |
|
31 | - require_once plugin_dir_path( WPINV_PLUGIN_FILE ) . 'includes/class-wpinv.php'; |
|
30 | +if (!class_exists('WPInv_Plugin', false)) { |
|
31 | + require_once plugin_dir_path(WPINV_PLUGIN_FILE) . 'includes/class-wpinv.php'; |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -39,7 +39,7 @@ discard block |
||
39 | 39 | */ |
40 | 40 | function getpaid() { |
41 | 41 | |
42 | - if ( empty( $GLOBALS['invoicing'] ) ) { |
|
42 | + if (empty($GLOBALS['invoicing'])) { |
|
43 | 43 | $GLOBALS['invoicing'] = new WPInv_Plugin(); |
44 | 44 | } |
45 | 45 | |
@@ -52,9 +52,9 @@ discard block |
||
52 | 52 | * @since 2.0.8 |
53 | 53 | */ |
54 | 54 | function getpaid_deactivation_hook() { |
55 | - update_option( 'wpinv_flush_permalinks', 1 ); |
|
55 | + update_option('wpinv_flush_permalinks', 1); |
|
56 | 56 | } |
57 | -register_deactivation_hook( __FILE__, 'getpaid_deactivation_hook' ); |
|
57 | +register_deactivation_hook(__FILE__, 'getpaid_deactivation_hook'); |
|
58 | 58 | |
59 | 59 | /** |
60 | 60 | * @deprecated |
@@ -64,4 +64,4 @@ discard block |
||
64 | 64 | } |
65 | 65 | |
66 | 66 | // Kickstart the plugin. |
67 | -add_action( 'plugins_loaded', 'getpaid', -100 ); |
|
67 | +add_action('plugins_loaded', 'getpaid', -100); |
@@ -6,39 +6,39 @@ |
||
6 | 6 | /** |
7 | 7 | * Bail if we are not in WP. |
8 | 8 | */ |
9 | -if ( ! defined( 'ABSPATH' ) ) { |
|
9 | +if (!defined('ABSPATH')) { |
|
10 | 10 | exit; |
11 | 11 | } |
12 | 12 | |
13 | 13 | /** |
14 | 14 | * Set the version only if its the current newest while loading. |
15 | 15 | */ |
16 | -add_action('after_setup_theme', function () { |
|
17 | - global $ayecode_ui_version,$ayecode_ui_file_key; |
|
16 | +add_action('after_setup_theme', function() { |
|
17 | + global $ayecode_ui_version, $ayecode_ui_file_key; |
|
18 | 18 | $this_version = "0.1.59"; |
19 | - if(version_compare($this_version , $ayecode_ui_version, '>')){ |
|
20 | - $ayecode_ui_version = $this_version ; |
|
21 | - $ayecode_ui_file_key = wp_hash( __FILE__ ); |
|
19 | + if (version_compare($this_version, $ayecode_ui_version, '>')) { |
|
20 | + $ayecode_ui_version = $this_version; |
|
21 | + $ayecode_ui_file_key = wp_hash(__FILE__); |
|
22 | 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 | -add_action('after_setup_theme', function () { |
|
28 | +add_action('after_setup_theme', function() { |
|
29 | 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' ); |
|
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 | 33 | } |
34 | 34 | },1); |
35 | 35 | |
36 | 36 | /** |
37 | 37 | * Add the function that calls the class. |
38 | 38 | */ |
39 | -if(!function_exists('aui')){ |
|
40 | - function aui(){ |
|
41 | - if(!class_exists("AUI",false)){ |
|
39 | +if (!function_exists('aui')) { |
|
40 | + function aui() { |
|
41 | + if (!class_exists("AUI", false)) { |
|
42 | 42 | return false; |
43 | 43 | } |
44 | 44 | return AUI::instance(); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if (!defined('ABSPATH')) { |
|
4 | 4 | exit; // Exit if accessed directly |
5 | 5 | } |
6 | 6 | |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return string The rendered component. |
20 | 20 | */ |
21 | - public static function input($args = array()){ |
|
21 | + public static function input($args = array()) { |
|
22 | 22 | $defaults = array( |
23 | 23 | 'type' => 'text', |
24 | 24 | 'name' => '', |
@@ -53,13 +53,13 @@ discard block |
||
53 | 53 | /** |
54 | 54 | * Parse incoming $args into an array and merge it with $defaults |
55 | 55 | */ |
56 | - $args = wp_parse_args( $args, $defaults ); |
|
56 | + $args = wp_parse_args($args, $defaults); |
|
57 | 57 | $output = ''; |
58 | - if ( ! empty( $args['type'] ) ) { |
|
58 | + if (!empty($args['type'])) { |
|
59 | 59 | // hidden label option needs to be empty |
60 | 60 | $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type']; |
61 | 61 | |
62 | - $type = sanitize_html_class( $args['type'] ); |
|
62 | + $type = sanitize_html_class($args['type']); |
|
63 | 63 | |
64 | 64 | $help_text = ''; |
65 | 65 | $label = ''; |
@@ -67,24 +67,24 @@ discard block |
||
67 | 67 | $label_args = array( |
68 | 68 | 'title'=> $args['label'], |
69 | 69 | 'for'=> $args['id'], |
70 | - 'class' => $args['label_class']." ", |
|
70 | + 'class' => $args['label_class'] . " ", |
|
71 | 71 | 'label_type' => $args['label_type'] |
72 | 72 | ); |
73 | 73 | |
74 | 74 | // floating labels need label after |
75 | - if( $args['label_type'] == 'floating' && $type != 'checkbox' ){ |
|
75 | + if ($args['label_type'] == 'floating' && $type != 'checkbox') { |
|
76 | 76 | $label_after = true; |
77 | 77 | $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works. |
78 | 78 | } |
79 | 79 | |
80 | 80 | // Some special sauce for files |
81 | - if($type=='file' ){ |
|
81 | + if ($type == 'file') { |
|
82 | 82 | $label_after = true; // if type file we need the label after |
83 | 83 | $args['class'] .= ' custom-file-input '; |
84 | - }elseif($type=='checkbox'){ |
|
84 | + }elseif ($type == 'checkbox') { |
|
85 | 85 | $label_after = true; // if type file we need the label after |
86 | 86 | $args['class'] .= ' custom-control-input '; |
87 | - }elseif($type=='datepicker' || $type=='timepicker'){ |
|
87 | + }elseif ($type == 'datepicker' || $type == 'timepicker') { |
|
88 | 88 | $type = 'text'; |
89 | 89 | //$args['class'] .= ' aui-flatpickr bg-initial '; |
90 | 90 | $args['class'] .= ' bg-initial '; |
@@ -100,65 +100,65 @@ discard block |
||
100 | 100 | $output .= '<input type="' . $type . '" '; |
101 | 101 | |
102 | 102 | // name |
103 | - if(!empty($args['name'])){ |
|
104 | - $output .= ' name="'.esc_attr($args['name']).'" '; |
|
103 | + if (!empty($args['name'])) { |
|
104 | + $output .= ' name="' . esc_attr($args['name']) . '" '; |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | // id |
108 | - if(!empty($args['id'])){ |
|
109 | - $output .= ' id="'.sanitize_html_class($args['id']).'" '; |
|
108 | + if (!empty($args['id'])) { |
|
109 | + $output .= ' id="' . sanitize_html_class($args['id']) . '" '; |
|
110 | 110 | } |
111 | 111 | |
112 | 112 | // placeholder |
113 | - if(isset($args['placeholder']) && '' != $args['placeholder'] ){ |
|
114 | - $output .= ' placeholder="'.esc_attr($args['placeholder']).'" '; |
|
113 | + if (isset($args['placeholder']) && '' != $args['placeholder']) { |
|
114 | + $output .= ' placeholder="' . esc_attr($args['placeholder']) . '" '; |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | // title |
118 | - if(!empty($args['title'])){ |
|
119 | - $output .= ' title="'.esc_attr($args['title']).'" '; |
|
118 | + if (!empty($args['title'])) { |
|
119 | + $output .= ' title="' . esc_attr($args['title']) . '" '; |
|
120 | 120 | } |
121 | 121 | |
122 | 122 | // value |
123 | - if(!empty($args['value'])){ |
|
123 | + if (!empty($args['value'])) { |
|
124 | 124 | $output .= AUI_Component_Helper::value($args['value']); |
125 | 125 | } |
126 | 126 | |
127 | 127 | // checked, for radio and checkboxes |
128 | - if( ( $type == 'checkbox' || $type == 'radio' ) && $args['checked'] ){ |
|
128 | + if (($type == 'checkbox' || $type == 'radio') && $args['checked']) { |
|
129 | 129 | $output .= ' checked '; |
130 | 130 | } |
131 | 131 | |
132 | 132 | // validation text |
133 | - if(!empty($args['validation_text'])){ |
|
134 | - $output .= ' oninvalid="setCustomValidity(\''.esc_attr($args['validation_text']).'\')" '; |
|
133 | + if (!empty($args['validation_text'])) { |
|
134 | + $output .= ' oninvalid="setCustomValidity(\'' . esc_attr($args['validation_text']) . '\')" '; |
|
135 | 135 | $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" '; |
136 | 136 | } |
137 | 137 | |
138 | 138 | // validation_pattern |
139 | - if(!empty($args['validation_pattern'])){ |
|
140 | - $output .= ' pattern="'.$args['validation_pattern'].'" '; |
|
139 | + if (!empty($args['validation_pattern'])) { |
|
140 | + $output .= ' pattern="' . $args['validation_pattern'] . '" '; |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | // step (for numbers) |
144 | - if(!empty($args['step'])){ |
|
145 | - $output .= ' step="'.$args['step'].'" '; |
|
144 | + if (!empty($args['step'])) { |
|
145 | + $output .= ' step="' . $args['step'] . '" '; |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | // required |
149 | - if(!empty($args['required'])){ |
|
149 | + if (!empty($args['required'])) { |
|
150 | 150 | $output .= ' required '; |
151 | 151 | } |
152 | 152 | |
153 | 153 | // class |
154 | - $class = !empty($args['class']) ? AUI_Component_Helper::esc_classes( $args['class'] ) : ''; |
|
155 | - $output .= ' class="form-control '.$class.'" '; |
|
154 | + $class = !empty($args['class']) ? AUI_Component_Helper::esc_classes($args['class']) : ''; |
|
155 | + $output .= ' class="form-control ' . $class . '" '; |
|
156 | 156 | |
157 | 157 | // data-attributes |
158 | 158 | $output .= AUI_Component_Helper::data_attributes($args); |
159 | 159 | |
160 | 160 | // extra attributes |
161 | - if(!empty($args['extra_attributes'])){ |
|
161 | + if (!empty($args['extra_attributes'])) { |
|
162 | 162 | $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
163 | 163 | } |
164 | 164 | |
@@ -167,40 +167,40 @@ discard block |
||
167 | 167 | |
168 | 168 | |
169 | 169 | // label |
170 | - if(!empty($args['label'])){ |
|
171 | - if($type == 'file'){$label_args['class'] .= 'custom-file-label';} |
|
172 | - elseif($type == 'checkbox'){$label_args['class'] .= 'custom-control-label';} |
|
173 | - $label = self::label( $label_args, $type ); |
|
170 | + if (!empty($args['label'])) { |
|
171 | + if ($type == 'file') {$label_args['class'] .= 'custom-file-label'; } |
|
172 | + elseif ($type == 'checkbox') {$label_args['class'] .= 'custom-control-label'; } |
|
173 | + $label = self::label($label_args, $type); |
|
174 | 174 | } |
175 | 175 | |
176 | 176 | // help text |
177 | - if(!empty($args['help_text'])){ |
|
177 | + if (!empty($args['help_text'])) { |
|
178 | 178 | $help_text = AUI_Component_Helper::help_text($args['help_text']); |
179 | 179 | } |
180 | 180 | |
181 | 181 | |
182 | 182 | // set help text in the correct possition |
183 | - if($label_after){ |
|
183 | + if ($label_after) { |
|
184 | 184 | $output .= $label . $help_text; |
185 | 185 | } |
186 | 186 | |
187 | 187 | // some input types need a separate wrap |
188 | - if($type == 'file') { |
|
189 | - $output = self::wrap( array( |
|
188 | + if ($type == 'file') { |
|
189 | + $output = self::wrap(array( |
|
190 | 190 | 'content' => $output, |
191 | 191 | 'class' => 'form-group custom-file' |
192 | - ) ); |
|
193 | - }elseif($type == 'checkbox'){ |
|
192 | + )); |
|
193 | + }elseif ($type == 'checkbox') { |
|
194 | 194 | $wrap_class = $args['switch'] ? 'custom-switch' : 'custom-checkbox'; |
195 | - $output = self::wrap( array( |
|
195 | + $output = self::wrap(array( |
|
196 | 196 | 'content' => $output, |
197 | - 'class' => 'custom-control '.$wrap_class |
|
198 | - ) ); |
|
197 | + 'class' => 'custom-control ' . $wrap_class |
|
198 | + )); |
|
199 | 199 | |
200 | - if($args['label_type']=='horizontal'){ |
|
200 | + if ($args['label_type'] == 'horizontal') { |
|
201 | 201 | $output = '<div class="col-sm-2 col-form-label"></div><div class="col-sm-10">' . $output . '</div>'; |
202 | 202 | } |
203 | - }elseif($type == 'password' && $args['password_toggle'] && !$args['input_group_right']){ |
|
203 | + }elseif ($type == 'password' && $args['password_toggle'] && !$args['input_group_right']) { |
|
204 | 204 | |
205 | 205 | |
206 | 206 | // allow password field to toggle view |
@@ -214,48 +214,48 @@ discard block |
||
214 | 214 | } |
215 | 215 | |
216 | 216 | // input group wraps |
217 | - if($args['input_group_left'] || $args['input_group_right']){ |
|
217 | + if ($args['input_group_left'] || $args['input_group_right']) { |
|
218 | 218 | $w100 = strpos($args['class'], 'w-100') !== false ? ' w-100' : ''; |
219 | - if($args['input_group_left']){ |
|
220 | - $output = self::wrap( array( |
|
219 | + if ($args['input_group_left']) { |
|
220 | + $output = self::wrap(array( |
|
221 | 221 | 'content' => $output, |
222 | - 'class' => $args['input_group_left_inside'] ? 'input-group-inside position-relative'.$w100 : 'input-group', |
|
222 | + 'class' => $args['input_group_left_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group', |
|
223 | 223 | 'input_group_left' => $args['input_group_left'], |
224 | 224 | 'input_group_left_inside' => $args['input_group_left_inside'] |
225 | - ) ); |
|
225 | + )); |
|
226 | 226 | } |
227 | - if($args['input_group_right']){ |
|
228 | - $output = self::wrap( array( |
|
227 | + if ($args['input_group_right']) { |
|
228 | + $output = self::wrap(array( |
|
229 | 229 | 'content' => $output, |
230 | - 'class' => $args['input_group_right_inside'] ? 'input-group-inside position-relative'.$w100 : 'input-group', |
|
230 | + 'class' => $args['input_group_right_inside'] ? 'input-group-inside position-relative' . $w100 : 'input-group', |
|
231 | 231 | 'input_group_right' => $args['input_group_right'], |
232 | 232 | 'input_group_right_inside' => $args['input_group_right_inside'] |
233 | - ) ); |
|
233 | + )); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | } |
237 | 237 | |
238 | - if(!$label_after){ |
|
238 | + if (!$label_after) { |
|
239 | 239 | $output .= $help_text; |
240 | 240 | } |
241 | 241 | |
242 | 242 | |
243 | - if($args['label_type']=='horizontal' && $type != 'checkbox'){ |
|
244 | - $output = self::wrap( array( |
|
243 | + if ($args['label_type'] == 'horizontal' && $type != 'checkbox') { |
|
244 | + $output = self::wrap(array( |
|
245 | 245 | 'content' => $output, |
246 | 246 | 'class' => 'col-sm-10', |
247 | - ) ); |
|
247 | + )); |
|
248 | 248 | } |
249 | 249 | |
250 | - if(!$label_after){ |
|
250 | + if (!$label_after) { |
|
251 | 251 | $output = $label . $output; |
252 | 252 | } |
253 | 253 | |
254 | 254 | // wrap |
255 | - if ( ! $args['no_wrap'] ) { |
|
256 | - $form_group_class = $args['label_type']=='floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group'; |
|
257 | - $wrap_class = $args['label_type']=='horizontal' ? $form_group_class . ' row' : $form_group_class; |
|
258 | - $wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class; |
|
255 | + if (!$args['no_wrap']) { |
|
256 | + $form_group_class = $args['label_type'] == 'floating' && $type != 'checkbox' ? 'form-label-group' : 'form-group'; |
|
257 | + $wrap_class = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class; |
|
258 | + $wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class; |
|
259 | 259 | $output = self::wrap(array( |
260 | 260 | 'content' => $output, |
261 | 261 | 'class' => $wrap_class, |
@@ -276,7 +276,7 @@ discard block |
||
276 | 276 | * |
277 | 277 | * @return string The rendered component. |
278 | 278 | */ |
279 | - public static function textarea($args = array()){ |
|
279 | + public static function textarea($args = array()) { |
|
280 | 280 | $defaults = array( |
281 | 281 | 'name' => '', |
282 | 282 | 'class' => '', |
@@ -305,43 +305,43 @@ discard block |
||
305 | 305 | /** |
306 | 306 | * Parse incoming $args into an array and merge it with $defaults |
307 | 307 | */ |
308 | - $args = wp_parse_args( $args, $defaults ); |
|
308 | + $args = wp_parse_args($args, $defaults); |
|
309 | 309 | $output = ''; |
310 | 310 | |
311 | 311 | // hidden label option needs to be empty |
312 | 312 | $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type']; |
313 | 313 | |
314 | 314 | // floating labels don't work with wysiwyg so set it as top |
315 | - if($args['label_type'] == 'floating' && !empty($args['wysiwyg'])){ |
|
315 | + if ($args['label_type'] == 'floating' && !empty($args['wysiwyg'])) { |
|
316 | 316 | $args['label_type'] = 'top'; |
317 | 317 | } |
318 | 318 | |
319 | 319 | $label_after = $args['label_after']; |
320 | 320 | |
321 | 321 | // floating labels need label after |
322 | - if( $args['label_type'] == 'floating' && empty($args['wysiwyg']) ){ |
|
322 | + if ($args['label_type'] == 'floating' && empty($args['wysiwyg'])) { |
|
323 | 323 | $label_after = true; |
324 | 324 | $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works. |
325 | 325 | } |
326 | 326 | |
327 | 327 | // label |
328 | - if(!empty($args['label']) && is_array($args['label'])){ |
|
329 | - }elseif(!empty($args['label']) && !$label_after){ |
|
328 | + if (!empty($args['label']) && is_array($args['label'])) { |
|
329 | + }elseif (!empty($args['label']) && !$label_after) { |
|
330 | 330 | $label_args = array( |
331 | 331 | 'title'=> $args['label'], |
332 | 332 | 'for'=> $args['id'], |
333 | - 'class' => $args['label_class']." ", |
|
333 | + 'class' => $args['label_class'] . " ", |
|
334 | 334 | 'label_type' => $args['label_type'] |
335 | 335 | ); |
336 | - $output .= self::label( $label_args ); |
|
336 | + $output .= self::label($label_args); |
|
337 | 337 | } |
338 | 338 | |
339 | 339 | // maybe horizontal label |
340 | - if($args['label_type']=='horizontal'){ |
|
340 | + if ($args['label_type'] == 'horizontal') { |
|
341 | 341 | $output .= '<div class="col-sm-10">'; |
342 | 342 | } |
343 | 343 | |
344 | - if(!empty($args['wysiwyg'])){ |
|
344 | + if (!empty($args['wysiwyg'])) { |
|
345 | 345 | ob_start(); |
346 | 346 | $content = $args['value']; |
347 | 347 | $editor_id = !empty($args['id']) ? sanitize_html_class($args['id']) : 'wp_editor'; |
@@ -355,65 +355,65 @@ discard block |
||
355 | 355 | ); |
356 | 356 | |
357 | 357 | // maybe set settings if array |
358 | - if(is_array($args['wysiwyg'])){ |
|
359 | - $settings = wp_parse_args( $args['wysiwyg'], $settings ); |
|
358 | + if (is_array($args['wysiwyg'])) { |
|
359 | + $settings = wp_parse_args($args['wysiwyg'], $settings); |
|
360 | 360 | } |
361 | 361 | |
362 | - wp_editor( $content, $editor_id, $settings ); |
|
362 | + wp_editor($content, $editor_id, $settings); |
|
363 | 363 | $output .= ob_get_clean(); |
364 | - }else{ |
|
364 | + } else { |
|
365 | 365 | |
366 | 366 | // open |
367 | 367 | $output .= '<textarea '; |
368 | 368 | |
369 | 369 | // name |
370 | - if(!empty($args['name'])){ |
|
371 | - $output .= ' name="'.esc_attr($args['name']).'" '; |
|
370 | + if (!empty($args['name'])) { |
|
371 | + $output .= ' name="' . esc_attr($args['name']) . '" '; |
|
372 | 372 | } |
373 | 373 | |
374 | 374 | // id |
375 | - if(!empty($args['id'])){ |
|
376 | - $output .= ' id="'.sanitize_html_class($args['id']).'" '; |
|
375 | + if (!empty($args['id'])) { |
|
376 | + $output .= ' id="' . sanitize_html_class($args['id']) . '" '; |
|
377 | 377 | } |
378 | 378 | |
379 | 379 | // placeholder |
380 | - if(isset($args['placeholder']) && '' != $args['placeholder']){ |
|
381 | - $output .= ' placeholder="'.esc_attr($args['placeholder']).'" '; |
|
380 | + if (isset($args['placeholder']) && '' != $args['placeholder']) { |
|
381 | + $output .= ' placeholder="' . esc_attr($args['placeholder']) . '" '; |
|
382 | 382 | } |
383 | 383 | |
384 | 384 | // title |
385 | - if(!empty($args['title'])){ |
|
386 | - $output .= ' title="'.esc_attr($args['title']).'" '; |
|
385 | + if (!empty($args['title'])) { |
|
386 | + $output .= ' title="' . esc_attr($args['title']) . '" '; |
|
387 | 387 | } |
388 | 388 | |
389 | 389 | // validation text |
390 | - if(!empty($args['validation_text'])){ |
|
391 | - $output .= ' oninvalid="setCustomValidity(\''.esc_attr($args['validation_text']).'\')" '; |
|
390 | + if (!empty($args['validation_text'])) { |
|
391 | + $output .= ' oninvalid="setCustomValidity(\'' . esc_attr($args['validation_text']) . '\')" '; |
|
392 | 392 | $output .= ' onchange="try{setCustomValidity(\'\')}catch(e){}" '; |
393 | 393 | } |
394 | 394 | |
395 | 395 | // validation_pattern |
396 | - if(!empty($args['validation_pattern'])){ |
|
397 | - $output .= ' pattern="'.$args['validation_pattern'].'" '; |
|
396 | + if (!empty($args['validation_pattern'])) { |
|
397 | + $output .= ' pattern="' . $args['validation_pattern'] . '" '; |
|
398 | 398 | } |
399 | 399 | |
400 | 400 | // required |
401 | - if(!empty($args['required'])){ |
|
401 | + if (!empty($args['required'])) { |
|
402 | 402 | $output .= ' required '; |
403 | 403 | } |
404 | 404 | |
405 | 405 | // rows |
406 | - if(!empty($args['rows'])){ |
|
407 | - $output .= ' rows="'.absint($args['rows']).'" '; |
|
406 | + if (!empty($args['rows'])) { |
|
407 | + $output .= ' rows="' . absint($args['rows']) . '" '; |
|
408 | 408 | } |
409 | 409 | |
410 | 410 | |
411 | 411 | // class |
412 | 412 | $class = !empty($args['class']) ? $args['class'] : ''; |
413 | - $output .= ' class="form-control '.$class.'" '; |
|
413 | + $output .= ' class="form-control ' . $class . '" '; |
|
414 | 414 | |
415 | 415 | // extra attributes |
416 | - if(!empty($args['extra_attributes'])){ |
|
416 | + if (!empty($args['extra_attributes'])) { |
|
417 | 417 | $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
418 | 418 | } |
419 | 419 | |
@@ -421,11 +421,11 @@ discard block |
||
421 | 421 | $output .= ' >'; |
422 | 422 | |
423 | 423 | // value |
424 | - if ( ! empty( $args['value'] ) ) { |
|
425 | - if ( ! empty( $args['allow_tags'] ) ) { |
|
426 | - $output .= AUI_Component_Helper::sanitize_html_field( $args['value'], $args ); // Sanitize HTML. |
|
424 | + if (!empty($args['value'])) { |
|
425 | + if (!empty($args['allow_tags'])) { |
|
426 | + $output .= AUI_Component_Helper::sanitize_html_field($args['value'], $args); // Sanitize HTML. |
|
427 | 427 | } else { |
428 | - $output .= sanitize_textarea_field( $args['value'] ); |
|
428 | + $output .= sanitize_textarea_field($args['value']); |
|
429 | 429 | } |
430 | 430 | } |
431 | 431 | |
@@ -434,32 +434,32 @@ discard block |
||
434 | 434 | |
435 | 435 | } |
436 | 436 | |
437 | - if(!empty($args['label']) && $label_after){ |
|
437 | + if (!empty($args['label']) && $label_after) { |
|
438 | 438 | $label_args = array( |
439 | 439 | 'title'=> $args['label'], |
440 | 440 | 'for'=> $args['id'], |
441 | - 'class' => $args['label_class']." ", |
|
441 | + 'class' => $args['label_class'] . " ", |
|
442 | 442 | 'label_type' => $args['label_type'] |
443 | 443 | ); |
444 | - $output .= self::label( $label_args ); |
|
444 | + $output .= self::label($label_args); |
|
445 | 445 | } |
446 | 446 | |
447 | 447 | // help text |
448 | - if(!empty($args['help_text'])){ |
|
448 | + if (!empty($args['help_text'])) { |
|
449 | 449 | $output .= AUI_Component_Helper::help_text($args['help_text']); |
450 | 450 | } |
451 | 451 | |
452 | 452 | // maybe horizontal label |
453 | - if($args['label_type']=='horizontal'){ |
|
453 | + if ($args['label_type'] == 'horizontal') { |
|
454 | 454 | $output .= '</div>'; |
455 | 455 | } |
456 | 456 | |
457 | 457 | |
458 | 458 | // wrap |
459 | - if(!$args['no_wrap']){ |
|
460 | - $form_group_class = $args['label_type']=='floating' ? 'form-label-group' : 'form-group'; |
|
461 | - $wrap_class = $args['label_type']=='horizontal' ? $form_group_class . ' row' : $form_group_class; |
|
462 | - $wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class; |
|
459 | + if (!$args['no_wrap']) { |
|
460 | + $form_group_class = $args['label_type'] == 'floating' ? 'form-label-group' : 'form-group'; |
|
461 | + $wrap_class = $args['label_type'] == 'horizontal' ? $form_group_class . ' row' : $form_group_class; |
|
462 | + $wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class; |
|
463 | 463 | $output = self::wrap(array( |
464 | 464 | 'content' => $output, |
465 | 465 | 'class' => $wrap_class, |
@@ -473,7 +473,7 @@ discard block |
||
473 | 473 | return $output; |
474 | 474 | } |
475 | 475 | |
476 | - public static function label($args = array(), $type = ''){ |
|
476 | + public static function label($args = array(), $type = '') { |
|
477 | 477 | //<label for="exampleInputEmail1">Email address</label> |
478 | 478 | $defaults = array( |
479 | 479 | 'title' => 'div', |
@@ -485,20 +485,20 @@ discard block |
||
485 | 485 | /** |
486 | 486 | * Parse incoming $args into an array and merge it with $defaults |
487 | 487 | */ |
488 | - $args = wp_parse_args( $args, $defaults ); |
|
488 | + $args = wp_parse_args($args, $defaults); |
|
489 | 489 | $output = ''; |
490 | 490 | |
491 | - if($args['title']){ |
|
491 | + if ($args['title']) { |
|
492 | 492 | |
493 | 493 | // maybe hide labels //@todo set a global option for visibility class |
494 | - if($type == 'file' || $type == 'checkbox' || $type == 'radio' || !empty($args['label_type']) ){ |
|
494 | + if ($type == 'file' || $type == 'checkbox' || $type == 'radio' || !empty($args['label_type'])) { |
|
495 | 495 | $class = $args['class']; |
496 | - }else{ |
|
497 | - $class = 'sr-only '.$args['class']; |
|
496 | + } else { |
|
497 | + $class = 'sr-only ' . $args['class']; |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | // maybe horizontal |
501 | - if($args['label_type']=='horizontal' && $type != 'checkbox'){ |
|
501 | + if ($args['label_type'] == 'horizontal' && $type != 'checkbox') { |
|
502 | 502 | $class .= ' col-sm-2 col-form-label'; |
503 | 503 | } |
504 | 504 | |
@@ -506,20 +506,20 @@ discard block |
||
506 | 506 | $output .= '<label '; |
507 | 507 | |
508 | 508 | // for |
509 | - if(!empty($args['for'])){ |
|
510 | - $output .= ' for="'.esc_attr($args['for']).'" '; |
|
509 | + if (!empty($args['for'])) { |
|
510 | + $output .= ' for="' . esc_attr($args['for']) . '" '; |
|
511 | 511 | } |
512 | 512 | |
513 | 513 | // class |
514 | - $class = $class ? AUI_Component_Helper::esc_classes( $class ) : ''; |
|
515 | - $output .= ' class="'.$class.'" '; |
|
514 | + $class = $class ? AUI_Component_Helper::esc_classes($class) : ''; |
|
515 | + $output .= ' class="' . $class . '" '; |
|
516 | 516 | |
517 | 517 | // close |
518 | 518 | $output .= '>'; |
519 | 519 | |
520 | 520 | |
521 | 521 | // title, don't escape fully as can contain html |
522 | - if(!empty($args['title'])){ |
|
522 | + if (!empty($args['title'])) { |
|
523 | 523 | $output .= wp_kses_post($args['title']); |
524 | 524 | } |
525 | 525 | |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | * |
541 | 541 | * @return string |
542 | 542 | */ |
543 | - public static function wrap($args = array()){ |
|
543 | + public static function wrap($args = array()) { |
|
544 | 544 | $defaults = array( |
545 | 545 | 'type' => 'div', |
546 | 546 | 'class' => 'form-group', |
@@ -557,31 +557,31 @@ discard block |
||
557 | 557 | /** |
558 | 558 | * Parse incoming $args into an array and merge it with $defaults |
559 | 559 | */ |
560 | - $args = wp_parse_args( $args, $defaults ); |
|
560 | + $args = wp_parse_args($args, $defaults); |
|
561 | 561 | $output = ''; |
562 | - if($args['type']){ |
|
562 | + if ($args['type']) { |
|
563 | 563 | |
564 | 564 | // open |
565 | - $output .= '<'.sanitize_html_class($args['type']); |
|
565 | + $output .= '<' . sanitize_html_class($args['type']); |
|
566 | 566 | |
567 | 567 | // element require |
568 | - if(!empty($args['element_require'])){ |
|
568 | + if (!empty($args['element_require'])) { |
|
569 | 569 | $output .= AUI_Component_Helper::element_require($args['element_require']); |
570 | 570 | $args['class'] .= " aui-conditional-field"; |
571 | 571 | } |
572 | 572 | |
573 | 573 | // argument_id |
574 | - if( !empty($args['argument_id']) ){ |
|
575 | - $output .= ' data-argument="'.esc_attr($args['argument_id']).'"'; |
|
574 | + if (!empty($args['argument_id'])) { |
|
575 | + $output .= ' data-argument="' . esc_attr($args['argument_id']) . '"'; |
|
576 | 576 | } |
577 | 577 | |
578 | 578 | // class |
579 | - $class = !empty($args['class']) ? AUI_Component_Helper::esc_classes( $args['class'] ) : ''; |
|
580 | - $output .= ' class="'.$class.'" '; |
|
579 | + $class = !empty($args['class']) ? AUI_Component_Helper::esc_classes($args['class']) : ''; |
|
580 | + $output .= ' class="' . $class . '" '; |
|
581 | 581 | |
582 | 582 | // Attributes |
583 | - if ( ! empty( $args['wrap_attributes'] ) ) { |
|
584 | - $output .= AUI_Component_Helper::extra_attributes( $args['wrap_attributes'] ); |
|
583 | + if (!empty($args['wrap_attributes'])) { |
|
584 | + $output .= AUI_Component_Helper::extra_attributes($args['wrap_attributes']); |
|
585 | 585 | } |
586 | 586 | |
587 | 587 | // close wrap |
@@ -589,28 +589,28 @@ discard block |
||
589 | 589 | |
590 | 590 | |
591 | 591 | // Input group left |
592 | - if(!empty($args['input_group_left'])){ |
|
592 | + if (!empty($args['input_group_left'])) { |
|
593 | 593 | $position_class = !empty($args['input_group_left_inside']) ? 'position-absolute h-100' : ''; |
594 | - $input_group_left = strpos($args['input_group_left'], '<') !== false ? $args['input_group_left'] : '<span class="input-group-text">'.$args['input_group_left'].'</span>'; |
|
595 | - $output .= '<div class="input-group-prepend '.$position_class.'">'.$input_group_left.'</div>'; |
|
594 | + $input_group_left = strpos($args['input_group_left'], '<') !== false ? $args['input_group_left'] : '<span class="input-group-text">' . $args['input_group_left'] . '</span>'; |
|
595 | + $output .= '<div class="input-group-prepend ' . $position_class . '">' . $input_group_left . '</div>'; |
|
596 | 596 | } |
597 | 597 | |
598 | 598 | // content |
599 | 599 | $output .= $args['content']; |
600 | 600 | |
601 | 601 | // Input group right |
602 | - if(!empty($args['input_group_right'])){ |
|
602 | + if (!empty($args['input_group_right'])) { |
|
603 | 603 | $position_class = !empty($args['input_group_left_inside']) ? 'position-absolute h-100' : ''; |
604 | - $input_group_right = strpos($args['input_group_right'], '<') !== false ? $args['input_group_right'] : '<span class="input-group-text">'.$args['input_group_right'].'</span>'; |
|
605 | - $output .= '<div class="input-group-append '.$position_class.'">'.$input_group_right.'</div>'; |
|
604 | + $input_group_right = strpos($args['input_group_right'], '<') !== false ? $args['input_group_right'] : '<span class="input-group-text">' . $args['input_group_right'] . '</span>'; |
|
605 | + $output .= '<div class="input-group-append ' . $position_class . '">' . $input_group_right . '</div>'; |
|
606 | 606 | } |
607 | 607 | |
608 | 608 | |
609 | 609 | // close wrap |
610 | - $output .= '</'.sanitize_html_class($args['type']).'>'; |
|
610 | + $output .= '</' . sanitize_html_class($args['type']) . '>'; |
|
611 | 611 | |
612 | 612 | |
613 | - }else{ |
|
613 | + } else { |
|
614 | 614 | $output = $args['content']; |
615 | 615 | } |
616 | 616 | |
@@ -624,7 +624,7 @@ discard block |
||
624 | 624 | * |
625 | 625 | * @return string The rendered component. |
626 | 626 | */ |
627 | - public static function select($args = array()){ |
|
627 | + public static function select($args = array()) { |
|
628 | 628 | $defaults = array( |
629 | 629 | 'class' => '', |
630 | 630 | 'wrap_class' => '', |
@@ -651,11 +651,11 @@ discard block |
||
651 | 651 | /** |
652 | 652 | * Parse incoming $args into an array and merge it with $defaults |
653 | 653 | */ |
654 | - $args = wp_parse_args( $args, $defaults ); |
|
654 | + $args = wp_parse_args($args, $defaults); |
|
655 | 655 | $output = ''; |
656 | 656 | |
657 | 657 | // for now lets hide floating labels |
658 | - if( $args['label_type'] == 'floating' ){$args['label_type'] = 'hidden';} |
|
658 | + if ($args['label_type'] == 'floating') {$args['label_type'] = 'hidden'; } |
|
659 | 659 | |
660 | 660 | // hidden label option needs to be empty |
661 | 661 | $args['label_type'] = $args['label_type'] == 'hidden' ? '' : $args['label_type']; |
@@ -664,85 +664,85 @@ discard block |
||
664 | 664 | $label_after = $args['label_after']; |
665 | 665 | |
666 | 666 | // floating labels need label after |
667 | - if( $args['label_type'] == 'floating' ){ |
|
667 | + if ($args['label_type'] == 'floating') { |
|
668 | 668 | $label_after = true; |
669 | 669 | $args['placeholder'] = ' '; // set the placeholder not empty so the floating label works. |
670 | 670 | } |
671 | 671 | |
672 | 672 | // Maybe setup select2 |
673 | 673 | $is_select2 = false; |
674 | - if(!empty($args['select2'])){ |
|
674 | + if (!empty($args['select2'])) { |
|
675 | 675 | $args['class'] .= ' aui-select2'; |
676 | 676 | $is_select2 = true; |
677 | - }elseif( strpos($args['class'], 'aui-select2') !== false){ |
|
677 | + }elseif (strpos($args['class'], 'aui-select2') !== false) { |
|
678 | 678 | $is_select2 = true; |
679 | 679 | } |
680 | 680 | |
681 | 681 | // select2 tags |
682 | - if( !empty($args['select2']) && $args['select2'] === 'tags'){ // triple equals needed here for some reason |
|
682 | + if (!empty($args['select2']) && $args['select2'] === 'tags') { // triple equals needed here for some reason |
|
683 | 683 | $args['data-tags'] = 'true'; |
684 | 684 | $args['data-token-separators'] = "[',']"; |
685 | 685 | $args['multiple'] = true; |
686 | 686 | } |
687 | 687 | |
688 | 688 | // select2 placeholder |
689 | - if($is_select2 && isset($args['placeholder']) && '' != $args['placeholder'] && empty($args['data-placeholder'])){ |
|
689 | + if ($is_select2 && isset($args['placeholder']) && '' != $args['placeholder'] && empty($args['data-placeholder'])) { |
|
690 | 690 | $args['data-placeholder'] = esc_attr($args['placeholder']); |
691 | 691 | $args['data-allow-clear'] = isset($args['data-allow-clear']) ? (bool) $args['data-allow-clear'] : true; |
692 | 692 | } |
693 | 693 | |
694 | 694 | // label |
695 | - if(!empty($args['label']) && is_array($args['label'])){ |
|
696 | - }elseif(!empty($args['label']) && !$label_after){ |
|
695 | + if (!empty($args['label']) && is_array($args['label'])) { |
|
696 | + }elseif (!empty($args['label']) && !$label_after) { |
|
697 | 697 | $label_args = array( |
698 | 698 | 'title'=> $args['label'], |
699 | 699 | 'for'=> $args['id'], |
700 | - 'class' => $args['label_class']." ", |
|
700 | + 'class' => $args['label_class'] . " ", |
|
701 | 701 | 'label_type' => $args['label_type'] |
702 | 702 | ); |
703 | 703 | $output .= self::label($label_args); |
704 | 704 | } |
705 | 705 | |
706 | 706 | // maybe horizontal label |
707 | - if($args['label_type']=='horizontal'){ |
|
707 | + if ($args['label_type'] == 'horizontal') { |
|
708 | 708 | $output .= '<div class="col-sm-10">'; |
709 | 709 | } |
710 | 710 | |
711 | 711 | // Set hidden input to save empty value for multiselect. |
712 | - if ( ! empty( $args['multiple'] ) && ! empty( $args['name'] ) ) { |
|
713 | - $output .= '<input type="hidden" ' . AUI_Component_Helper::name( $args['name'] ) . ' value=""/>'; |
|
712 | + if (!empty($args['multiple']) && !empty($args['name'])) { |
|
713 | + $output .= '<input type="hidden" ' . AUI_Component_Helper::name($args['name']) . ' value=""/>'; |
|
714 | 714 | } |
715 | 715 | |
716 | 716 | // open/type |
717 | 717 | $output .= '<select '; |
718 | 718 | |
719 | 719 | // style |
720 | - if($is_select2){ |
|
720 | + if ($is_select2) { |
|
721 | 721 | $output .= " style='width:100%;' "; |
722 | 722 | } |
723 | 723 | |
724 | 724 | // element require |
725 | - if(!empty($args['element_require'])){ |
|
725 | + if (!empty($args['element_require'])) { |
|
726 | 726 | $output .= AUI_Component_Helper::element_require($args['element_require']); |
727 | 727 | $args['class'] .= " aui-conditional-field"; |
728 | 728 | } |
729 | 729 | |
730 | 730 | // class |
731 | 731 | $class = !empty($args['class']) ? $args['class'] : ''; |
732 | - $output .= AUI_Component_Helper::class_attr('custom-select '.$class); |
|
732 | + $output .= AUI_Component_Helper::class_attr('custom-select ' . $class); |
|
733 | 733 | |
734 | 734 | // name |
735 | - if(!empty($args['name'])){ |
|
736 | - $output .= AUI_Component_Helper::name($args['name'],$args['multiple']); |
|
735 | + if (!empty($args['name'])) { |
|
736 | + $output .= AUI_Component_Helper::name($args['name'], $args['multiple']); |
|
737 | 737 | } |
738 | 738 | |
739 | 739 | // id |
740 | - if(!empty($args['id'])){ |
|
740 | + if (!empty($args['id'])) { |
|
741 | 741 | $output .= AUI_Component_Helper::id($args['id']); |
742 | 742 | } |
743 | 743 | |
744 | 744 | // title |
745 | - if(!empty($args['title'])){ |
|
745 | + if (!empty($args['title'])) { |
|
746 | 746 | $output .= AUI_Component_Helper::title($args['title']); |
747 | 747 | } |
748 | 748 | |
@@ -753,17 +753,17 @@ discard block |
||
753 | 753 | $output .= AUI_Component_Helper::aria_attributes($args); |
754 | 754 | |
755 | 755 | // extra attributes |
756 | - if(!empty($args['extra_attributes'])){ |
|
756 | + if (!empty($args['extra_attributes'])) { |
|
757 | 757 | $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
758 | 758 | } |
759 | 759 | |
760 | 760 | // required |
761 | - if(!empty($args['required'])){ |
|
761 | + if (!empty($args['required'])) { |
|
762 | 762 | $output .= ' required '; |
763 | 763 | } |
764 | 764 | |
765 | 765 | // multiple |
766 | - if(!empty($args['multiple'])){ |
|
766 | + if (!empty($args['multiple'])) { |
|
767 | 767 | $output .= ' multiple '; |
768 | 768 | } |
769 | 769 | |
@@ -771,21 +771,21 @@ discard block |
||
771 | 771 | $output .= ' >'; |
772 | 772 | |
773 | 773 | // placeholder |
774 | - if(isset($args['placeholder']) && '' != $args['placeholder'] && !$is_select2){ |
|
775 | - $output .= '<option value="" disabled selected hidden>'.esc_attr($args['placeholder']).'</option>'; |
|
776 | - }elseif($is_select2 && !empty($args['placeholder'])){ |
|
774 | + if (isset($args['placeholder']) && '' != $args['placeholder'] && !$is_select2) { |
|
775 | + $output .= '<option value="" disabled selected hidden>' . esc_attr($args['placeholder']) . '</option>'; |
|
776 | + }elseif ($is_select2 && !empty($args['placeholder'])) { |
|
777 | 777 | $output .= "<option></option>"; // select2 needs an empty select to fill the placeholder |
778 | 778 | } |
779 | 779 | |
780 | 780 | // Options |
781 | - if(!empty($args['options'])){ |
|
781 | + if (!empty($args['options'])) { |
|
782 | 782 | |
783 | - if(!is_array($args['options'])){ |
|
783 | + if (!is_array($args['options'])) { |
|
784 | 784 | $output .= $args['options']; // not the preferred way but an option |
785 | - }else{ |
|
786 | - foreach($args['options'] as $val => $name){ |
|
785 | + } else { |
|
786 | + foreach ($args['options'] as $val => $name) { |
|
787 | 787 | $selected = ''; |
788 | - if(is_array($name)){ |
|
788 | + if (is_array($name)) { |
|
789 | 789 | if (isset($name['optgroup']) && ($name['optgroup'] == 'start' || $name['optgroup'] == 'end')) { |
790 | 790 | $option_label = isset($name['label']) ? $name['label'] : ''; |
791 | 791 | |
@@ -793,23 +793,23 @@ discard block |
||
793 | 793 | } else { |
794 | 794 | $option_label = isset($name['label']) ? $name['label'] : ''; |
795 | 795 | $option_value = isset($name['value']) ? $name['value'] : ''; |
796 | - if(!empty($args['multiple']) && !empty($args['value']) && is_array($args['value']) ){ |
|
796 | + if (!empty($args['multiple']) && !empty($args['value']) && is_array($args['value'])) { |
|
797 | 797 | $selected = in_array($option_value, stripslashes_deep($args['value'])) ? "selected" : ""; |
798 | - } elseif(!empty($args['value'])) { |
|
799 | - $selected = selected($option_value,stripslashes_deep($args['value']), false); |
|
798 | + } elseif (!empty($args['value'])) { |
|
799 | + $selected = selected($option_value, stripslashes_deep($args['value']), false); |
|
800 | 800 | } |
801 | 801 | |
802 | 802 | $output .= '<option value="' . esc_attr($option_value) . '" ' . $selected . '>' . $option_label . '</option>'; |
803 | 803 | } |
804 | - }else{ |
|
805 | - if(!empty($args['value'])){ |
|
806 | - if(is_array($args['value'])){ |
|
807 | - $selected = in_array($val,$args['value']) ? 'selected="selected"' : ''; |
|
808 | - } elseif(!empty($args['value'])) { |
|
809 | - $selected = selected( $args['value'], $val, false); |
|
804 | + } else { |
|
805 | + if (!empty($args['value'])) { |
|
806 | + if (is_array($args['value'])) { |
|
807 | + $selected = in_array($val, $args['value']) ? 'selected="selected"' : ''; |
|
808 | + } elseif (!empty($args['value'])) { |
|
809 | + $selected = selected($args['value'], $val, false); |
|
810 | 810 | } |
811 | 811 | } |
812 | - $output .= '<option value="'.esc_attr($val).'" '.$selected.'>'.esc_attr($name).'</option>'; |
|
812 | + $output .= '<option value="' . esc_attr($val) . '" ' . $selected . '>' . esc_attr($name) . '</option>'; |
|
813 | 813 | } |
814 | 814 | } |
815 | 815 | } |
@@ -819,31 +819,31 @@ discard block |
||
819 | 819 | // closing tag |
820 | 820 | $output .= '</select>'; |
821 | 821 | |
822 | - if(!empty($args['label']) && $label_after){ |
|
822 | + if (!empty($args['label']) && $label_after) { |
|
823 | 823 | $label_args = array( |
824 | 824 | 'title'=> $args['label'], |
825 | 825 | 'for'=> $args['id'], |
826 | - 'class' => $args['label_class']." ", |
|
826 | + 'class' => $args['label_class'] . " ", |
|
827 | 827 | 'label_type' => $args['label_type'] |
828 | 828 | ); |
829 | 829 | $output .= self::label($label_args); |
830 | 830 | } |
831 | 831 | |
832 | 832 | // help text |
833 | - if(!empty($args['help_text'])){ |
|
833 | + if (!empty($args['help_text'])) { |
|
834 | 834 | $output .= AUI_Component_Helper::help_text($args['help_text']); |
835 | 835 | } |
836 | 836 | |
837 | 837 | // maybe horizontal label |
838 | - if($args['label_type']=='horizontal'){ |
|
838 | + if ($args['label_type'] == 'horizontal') { |
|
839 | 839 | $output .= '</div>'; |
840 | 840 | } |
841 | 841 | |
842 | 842 | |
843 | 843 | // wrap |
844 | - if(!$args['no_wrap']){ |
|
845 | - $wrap_class = $args['label_type']=='horizontal' ? 'form-group row' : 'form-group'; |
|
846 | - $wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class; |
|
844 | + if (!$args['no_wrap']) { |
|
845 | + $wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group'; |
|
846 | + $wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class; |
|
847 | 847 | $output = self::wrap(array( |
848 | 848 | 'content' => $output, |
849 | 849 | 'class' => $wrap_class, |
@@ -864,7 +864,7 @@ discard block |
||
864 | 864 | * |
865 | 865 | * @return string The rendered component. |
866 | 866 | */ |
867 | - public static function radio($args = array()){ |
|
867 | + public static function radio($args = array()) { |
|
868 | 868 | $defaults = array( |
869 | 869 | 'class' => '', |
870 | 870 | 'wrap_class' => '', |
@@ -889,14 +889,14 @@ discard block |
||
889 | 889 | /** |
890 | 890 | * Parse incoming $args into an array and merge it with $defaults |
891 | 891 | */ |
892 | - $args = wp_parse_args( $args, $defaults ); |
|
892 | + $args = wp_parse_args($args, $defaults); |
|
893 | 893 | |
894 | 894 | // for now lets use horizontal for floating |
895 | - if( $args['label_type'] == 'floating' ){$args['label_type'] = 'horizontal';} |
|
895 | + if ($args['label_type'] == 'floating') {$args['label_type'] = 'horizontal'; } |
|
896 | 896 | |
897 | 897 | $label_args = array( |
898 | 898 | 'title'=> $args['label'], |
899 | - 'class' => $args['label_class']." pt-0 ", |
|
899 | + 'class' => $args['label_class'] . " pt-0 ", |
|
900 | 900 | 'label_type' => $args['label_type'] |
901 | 901 | ); |
902 | 902 | |
@@ -905,39 +905,39 @@ discard block |
||
905 | 905 | |
906 | 906 | |
907 | 907 | // label before |
908 | - if(!empty($args['label'])){ |
|
909 | - $output .= self::label( $label_args, 'radio' ); |
|
908 | + if (!empty($args['label'])) { |
|
909 | + $output .= self::label($label_args, 'radio'); |
|
910 | 910 | } |
911 | 911 | |
912 | 912 | // maybe horizontal label |
913 | - if($args['label_type']=='horizontal'){ |
|
913 | + if ($args['label_type'] == 'horizontal') { |
|
914 | 914 | $output .= '<div class="col-sm-10">'; |
915 | 915 | } |
916 | 916 | |
917 | - if(!empty($args['options'])){ |
|
917 | + if (!empty($args['options'])) { |
|
918 | 918 | $count = 0; |
919 | - foreach($args['options'] as $value => $label){ |
|
919 | + foreach ($args['options'] as $value => $label) { |
|
920 | 920 | $option_args = $args; |
921 | 921 | $option_args['value'] = $value; |
922 | 922 | $option_args['label'] = $label; |
923 | 923 | $option_args['checked'] = $value == $args['value'] ? true : false; |
924 | - $output .= self::radio_option($option_args,$count); |
|
924 | + $output .= self::radio_option($option_args, $count); |
|
925 | 925 | $count++; |
926 | 926 | } |
927 | 927 | } |
928 | 928 | |
929 | 929 | // help text |
930 | - $help_text = ! empty( $args['help_text'] ) ? AUI_Component_Helper::help_text( $args['help_text'] ) : ''; |
|
930 | + $help_text = !empty($args['help_text']) ? AUI_Component_Helper::help_text($args['help_text']) : ''; |
|
931 | 931 | $output .= $help_text; |
932 | 932 | |
933 | 933 | // maybe horizontal label |
934 | - if($args['label_type']=='horizontal'){ |
|
934 | + if ($args['label_type'] == 'horizontal') { |
|
935 | 935 | $output .= '</div>'; |
936 | 936 | } |
937 | 937 | |
938 | 938 | // wrap |
939 | - $wrap_class = $args['label_type']=='horizontal' ? 'form-group row' : 'form-group'; |
|
940 | - $wrap_class = !empty($args['wrap_class']) ? $wrap_class." ".$args['wrap_class'] : $wrap_class; |
|
939 | + $wrap_class = $args['label_type'] == 'horizontal' ? 'form-group row' : 'form-group'; |
|
940 | + $wrap_class = !empty($args['wrap_class']) ? $wrap_class . " " . $args['wrap_class'] : $wrap_class; |
|
941 | 941 | $output = self::wrap(array( |
942 | 942 | 'content' => $output, |
943 | 943 | 'class' => $wrap_class, |
@@ -957,7 +957,7 @@ discard block |
||
957 | 957 | * |
958 | 958 | * @return string The rendered component. |
959 | 959 | */ |
960 | - public static function radio_option($args = array(),$count = ''){ |
|
960 | + public static function radio_option($args = array(), $count = '') { |
|
961 | 961 | $defaults = array( |
962 | 962 | 'class' => '', |
963 | 963 | 'id' => '', |
@@ -975,7 +975,7 @@ discard block |
||
975 | 975 | /** |
976 | 976 | * Parse incoming $args into an array and merge it with $defaults |
977 | 977 | */ |
978 | - $args = wp_parse_args( $args, $defaults ); |
|
978 | + $args = wp_parse_args($args, $defaults); |
|
979 | 979 | |
980 | 980 | $output = ''; |
981 | 981 | |
@@ -986,27 +986,27 @@ discard block |
||
986 | 986 | $output .= ' class="form-check-input" '; |
987 | 987 | |
988 | 988 | // name |
989 | - if(!empty($args['name'])){ |
|
989 | + if (!empty($args['name'])) { |
|
990 | 990 | $output .= AUI_Component_Helper::name($args['name']); |
991 | 991 | } |
992 | 992 | |
993 | 993 | // id |
994 | - if(!empty($args['id'])){ |
|
995 | - $output .= AUI_Component_Helper::id($args['id'].$count); |
|
994 | + if (!empty($args['id'])) { |
|
995 | + $output .= AUI_Component_Helper::id($args['id'] . $count); |
|
996 | 996 | } |
997 | 997 | |
998 | 998 | // title |
999 | - if(!empty($args['title'])){ |
|
999 | + if (!empty($args['title'])) { |
|
1000 | 1000 | $output .= AUI_Component_Helper::title($args['title']); |
1001 | 1001 | } |
1002 | 1002 | |
1003 | 1003 | // value |
1004 | - if(isset($args['value'])){ |
|
1004 | + if (isset($args['value'])) { |
|
1005 | 1005 | $output .= AUI_Component_Helper::value($args['value']); |
1006 | 1006 | } |
1007 | 1007 | |
1008 | 1008 | // checked, for radio and checkboxes |
1009 | - if( $args['checked'] ){ |
|
1009 | + if ($args['checked']) { |
|
1010 | 1010 | $output .= ' checked '; |
1011 | 1011 | } |
1012 | 1012 | |
@@ -1017,12 +1017,12 @@ discard block |
||
1017 | 1017 | $output .= AUI_Component_Helper::aria_attributes($args); |
1018 | 1018 | |
1019 | 1019 | // extra attributes |
1020 | - if(!empty($args['extra_attributes'])){ |
|
1020 | + if (!empty($args['extra_attributes'])) { |
|
1021 | 1021 | $output .= AUI_Component_Helper::extra_attributes($args['extra_attributes']); |
1022 | 1022 | } |
1023 | 1023 | |
1024 | 1024 | // required |
1025 | - if(!empty($args['required'])){ |
|
1025 | + if (!empty($args['required'])) { |
|
1026 | 1026 | $output .= ' required '; |
1027 | 1027 | } |
1028 | 1028 | |
@@ -1030,29 +1030,29 @@ discard block |
||
1030 | 1030 | $output .= ' >'; |
1031 | 1031 | |
1032 | 1032 | // label |
1033 | - if(!empty($args['label']) && is_array($args['label'])){ |
|
1034 | - }elseif(!empty($args['label'])){ |
|
1035 | - $output .= self::label(array('title'=>$args['label'],'for'=>$args['id'].$count,'class'=>'form-check-label'),'radio'); |
|
1033 | + if (!empty($args['label']) && is_array($args['label'])) { |
|
1034 | + }elseif (!empty($args['label'])) { |
|
1035 | + $output .= self::label(array('title'=>$args['label'], 'for'=>$args['id'] . $count, 'class'=>'form-check-label'), 'radio'); |
|
1036 | 1036 | } |
1037 | 1037 | |
1038 | 1038 | // wrap |
1039 | - if ( ! $args['no_wrap'] ) { |
|
1039 | + if (!$args['no_wrap']) { |
|
1040 | 1040 | $wrap_class = $args['inline'] ? 'form-check form-check-inline' : 'form-check'; |
1041 | 1041 | |
1042 | 1042 | // Unique wrap class |
1043 | 1043 | $uniq_class = 'fwrap'; |
1044 | - if ( ! empty( $args['name'] ) ) { |
|
1044 | + if (!empty($args['name'])) { |
|
1045 | 1045 | $uniq_class .= '-' . $args['name']; |
1046 | - } else if ( ! empty( $args['id'] ) ) { |
|
1046 | + } else if (!empty($args['id'])) { |
|
1047 | 1047 | $uniq_class .= '-' . $args['id']; |
1048 | 1048 | } |
1049 | 1049 | |
1050 | - if ( isset( $args['value'] ) || $args['value'] !== "" ) { |
|
1050 | + if (isset($args['value']) || $args['value'] !== "") { |
|
1051 | 1051 | $uniq_class .= '-' . $args['value']; |
1052 | 1052 | } else { |
1053 | 1053 | $uniq_class .= '-' . $count; |
1054 | 1054 | } |
1055 | - $wrap_class .= ' ' . sanitize_html_class( $uniq_class ); |
|
1055 | + $wrap_class .= ' ' . sanitize_html_class($uniq_class); |
|
1056 | 1056 | |
1057 | 1057 | $output = self::wrap(array( |
1058 | 1058 | 'content' => $output, |
@@ -12,14 +12,14 @@ discard block |
||
12 | 12 | /** |
13 | 13 | * Bail if we are not in WP. |
14 | 14 | */ |
15 | -if ( ! defined( 'ABSPATH' ) ) { |
|
15 | +if (!defined('ABSPATH')) { |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
19 | 19 | /** |
20 | 20 | * Only add if the class does not already exist. |
21 | 21 | */ |
22 | -if ( ! class_exists( 'AyeCode_UI_Settings' ) ) { |
|
22 | +if (!class_exists('AyeCode_UI_Settings')) { |
|
23 | 23 | |
24 | 24 | /** |
25 | 25 | * A Class to be able to change settings for Font Awesome. |
@@ -98,23 +98,23 @@ discard block |
||
98 | 98 | * @return AyeCode_UI_Settings - Main instance. |
99 | 99 | */ |
100 | 100 | public static function instance() { |
101 | - if ( ! isset( self::$instance ) && ! ( self::$instance instanceof AyeCode_UI_Settings ) ) { |
|
101 | + if (!isset(self::$instance) && !(self::$instance instanceof AyeCode_UI_Settings)) { |
|
102 | 102 | |
103 | 103 | self::$instance = new AyeCode_UI_Settings; |
104 | 104 | |
105 | - add_action( 'init', array( self::$instance, 'init' ) ); // set settings |
|
105 | + add_action('init', array(self::$instance, 'init')); // set settings |
|
106 | 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' ) ); |
|
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 | 110 | |
111 | 111 | // Maybe show example page |
112 | - add_action( 'template_redirect', array( self::$instance,'maybe_show_examples' ) ); |
|
112 | + add_action('template_redirect', array(self::$instance, 'maybe_show_examples')); |
|
113 | 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' ); |
|
117 | + do_action('ayecode_ui_settings_loaded'); |
|
118 | 118 | } |
119 | 119 | |
120 | 120 | return self::$instance; |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | /** |
124 | 124 | * Setup some constants. |
125 | 125 | */ |
126 | - public function constants(){ |
|
126 | + public function constants() { |
|
127 | 127 | define('AUI_PRIMARY_COLOR_ORIGINAL', "#1e73be"); |
128 | 128 | define('AUI_SECONDARY_COLOR_ORIGINAL', '#6c757d'); |
129 | 129 | if (!defined('AUI_PRIMARY_COLOR')) define('AUI_PRIMARY_COLOR', AUI_PRIMARY_COLOR_ORIGINAL); |
@@ -143,25 +143,25 @@ discard block |
||
143 | 143 | * |
144 | 144 | * We load super early in case there is a theme version that might change the colors |
145 | 145 | */ |
146 | - if ( $this->settings['css'] ) { |
|
147 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
146 | + if ($this->settings['css']) { |
|
147 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_style'), 1); |
|
148 | 148 | } |
149 | - if ( $this->settings['css_backend'] && $this->load_admin_scripts() ) { |
|
150 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_style' ), 1 ); |
|
149 | + if ($this->settings['css_backend'] && $this->load_admin_scripts()) { |
|
150 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_style'), 1); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | // maybe load JS |
154 | - if ( $this->settings['js'] ) { |
|
154 | + if ($this->settings['js']) { |
|
155 | 155 | $priority = $this->is_bs3_compat() ? 100 : 1; |
156 | - add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_scripts' ), $priority ); |
|
156 | + add_action('wp_enqueue_scripts', array($this, 'enqueue_scripts'), $priority); |
|
157 | 157 | } |
158 | - if ( $this->settings['js_backend'] && $this->load_admin_scripts() ) { |
|
159 | - add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ), 1 ); |
|
158 | + if ($this->settings['js_backend'] && $this->load_admin_scripts()) { |
|
159 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts'), 1); |
|
160 | 160 | } |
161 | 161 | |
162 | 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 ); |
|
163 | + if ($this->settings['html_font_size']) { |
|
164 | + add_action('wp_footer', array($this, 'html_font_size'), 10); |
|
165 | 165 | } |
166 | 166 | |
167 | 167 | |
@@ -172,14 +172,14 @@ discard block |
||
172 | 172 | * |
173 | 173 | * @return bool |
174 | 174 | */ |
175 | - public function load_admin_scripts(){ |
|
175 | + public function load_admin_scripts() { |
|
176 | 176 | $result = true; |
177 | 177 | |
178 | 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 ){ |
|
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 | 183 | return false; // return early, no point checking further |
184 | 184 | } |
185 | 185 | } |
@@ -191,9 +191,9 @@ discard block |
||
191 | 191 | /** |
192 | 192 | * Add a html font size to the footer. |
193 | 193 | */ |
194 | - public function html_font_size(){ |
|
194 | + public function html_font_size() { |
|
195 | 195 | $this->settings = $this->get_settings(); |
196 | - echo "<style>html{font-size:".absint($this->settings['html_font_size'])."px;}</style>"; |
|
196 | + echo "<style>html{font-size:" . absint($this->settings['html_font_size']) . "px;}</style>"; |
|
197 | 197 | } |
198 | 198 | |
199 | 199 | /** |
@@ -201,10 +201,10 @@ discard block |
||
201 | 201 | * |
202 | 202 | * @return bool |
203 | 203 | */ |
204 | - public function is_aui_screen(){ |
|
204 | + public function is_aui_screen() { |
|
205 | 205 | $load = false; |
206 | 206 | // check if we should load or not |
207 | - if ( is_admin() ) { |
|
207 | + if (is_admin()) { |
|
208 | 208 | // Only enable on set pages |
209 | 209 | $aui_screens = array( |
210 | 210 | 'page', |
@@ -213,24 +213,24 @@ discard block |
||
213 | 213 | 'appearance_page_gutenberg-widgets', |
214 | 214 | 'widgets' |
215 | 215 | ); |
216 | - $screen_ids = apply_filters( 'aui_screen_ids', $aui_screens ); |
|
216 | + $screen_ids = apply_filters('aui_screen_ids', $aui_screens); |
|
217 | 217 | |
218 | 218 | $screen = get_current_screen(); |
219 | 219 | |
220 | 220 | // echo '###'.$screen->id; |
221 | 221 | |
222 | 222 | // check if we are on a AUI screen |
223 | - if ( $screen && in_array( $screen->id, $screen_ids ) ) { |
|
223 | + if ($screen && in_array($screen->id, $screen_ids)) { |
|
224 | 224 | $load = true; |
225 | 225 | } |
226 | 226 | |
227 | 227 | //load for widget previews in WP 5.8 |
228 | - if( !empty($_REQUEST['legacy-widget-preview'])){ |
|
228 | + if (!empty($_REQUEST['legacy-widget-preview'])) { |
|
229 | 229 | $load = true; |
230 | 230 | } |
231 | 231 | } |
232 | 232 | |
233 | - return apply_filters( 'aui_load_on_admin' , $load ); |
|
233 | + return apply_filters('aui_load_on_admin', $load); |
|
234 | 234 | } |
235 | 235 | |
236 | 236 | /** |
@@ -238,25 +238,25 @@ discard block |
||
238 | 238 | */ |
239 | 239 | public function enqueue_style() { |
240 | 240 | |
241 | - if( is_admin() && !$this->is_aui_screen()){ |
|
241 | + if (is_admin() && !$this->is_aui_screen()) { |
|
242 | 242 | // don't add wp-admin scripts if not requested to |
243 | - }else{ |
|
243 | + } else { |
|
244 | 244 | $css_setting = current_action() == 'wp_enqueue_scripts' ? 'css' : 'css_backend'; |
245 | 245 | |
246 | 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 | 254 | // flatpickr |
255 | - wp_register_style( 'flatpickr', $this->url.'assets/css/flatpickr.min.css', array(), $this->latest ); |
|
255 | + wp_register_style('flatpickr', $this->url . 'assets/css/flatpickr.min.css', array(), $this->latest); |
|
256 | 256 | |
257 | 257 | |
258 | 258 | // fix some wp-admin issues |
259 | - if(is_admin()){ |
|
259 | + if (is_admin()) { |
|
260 | 260 | $custom_css = " |
261 | 261 | body{ |
262 | 262 | background-color: #f1f1f1; |
@@ -305,11 +305,11 @@ discard block |
||
305 | 305 | padding: 0; |
306 | 306 | } |
307 | 307 | "; |
308 | - wp_add_inline_style( 'ayecode-ui', $custom_css ); |
|
308 | + wp_add_inline_style('ayecode-ui', $custom_css); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | // custom changes |
312 | - wp_add_inline_style( 'ayecode-ui', self::custom_css($compatibility) ); |
|
312 | + wp_add_inline_style('ayecode-ui', self::custom_css($compatibility)); |
|
313 | 313 | |
314 | 314 | } |
315 | 315 | } |
@@ -569,7 +569,7 @@ discard block |
||
569 | 569 | function aui_init_flatpickr(){ |
570 | 570 | if ( typeof jQuery.fn.flatpickr === "function" && !$aui_doing_init_flatpickr) { |
571 | 571 | $aui_doing_init_flatpickr = true; |
572 | - <?php if ( ! empty( $flatpickr_locale ) ) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?> |
|
572 | + <?php if (!empty($flatpickr_locale)) { ?>try{flatpickr.localize(<?php echo $flatpickr_locale; ?>);}catch(err){console.log(err.message);}<?php } ?> |
|
573 | 573 | jQuery('input[data-aui-init="flatpickr"]:not(.flatpickr-input)').flatpickr(); |
574 | 574 | } |
575 | 575 | $aui_doing_init_flatpickr = false; |
@@ -1023,10 +1023,10 @@ discard block |
||
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( |
|
1026 | + return str_replace(array( |
|
1027 | 1027 | '<script>', |
1028 | 1028 | '</script>' |
1029 | - ), '', self::minify_js($output) ); |
|
1029 | + ), '', self::minify_js($output)); |
|
1030 | 1030 | } |
1031 | 1031 | |
1032 | 1032 | |
@@ -1040,13 +1040,13 @@ discard block |
||
1040 | 1040 | ob_start(); |
1041 | 1041 | ?> |
1042 | 1042 | <script> |
1043 | - <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
|
1043 | + <?php if (defined('FUSION_BUILDER_VERSION')) { ?> |
|
1044 | 1044 | /* With Avada builder */ |
1045 | 1045 | |
1046 | 1046 | <?php } ?> |
1047 | 1047 | </script> |
1048 | 1048 | <?php |
1049 | - return str_replace( array( |
|
1049 | + return str_replace(array( |
|
1050 | 1050 | '<script>', |
1051 | 1051 | '</script>' |
1052 | 1052 | ), '', ob_get_clean()); |
@@ -1057,7 +1057,7 @@ discard block |
||
1057 | 1057 | * |
1058 | 1058 | * If this remains small then its best to use this than to add another JS file. |
1059 | 1059 | */ |
1060 | - public function inline_script_file_browser(){ |
|
1060 | + public function inline_script_file_browser() { |
|
1061 | 1061 | ob_start(); |
1062 | 1062 | ?> |
1063 | 1063 | <script> |
@@ -1072,10 +1072,10 @@ discard block |
||
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( |
|
1075 | + return str_replace(array( |
|
1076 | 1076 | '<script>', |
1077 | 1077 | '</script>' |
1078 | - ), '', $output ); |
|
1078 | + ), '', $output); |
|
1079 | 1079 | } |
1080 | 1080 | |
1081 | 1081 | /** |
@@ -1083,50 +1083,50 @@ discard block |
||
1083 | 1083 | */ |
1084 | 1084 | public function enqueue_scripts() { |
1085 | 1085 | |
1086 | - if( is_admin() && !$this->is_aui_screen()){ |
|
1086 | + if (is_admin() && !$this->is_aui_screen()) { |
|
1087 | 1087 | // don't add wp-admin scripts if not requested to |
1088 | - }else { |
|
1088 | + } else { |
|
1089 | 1089 | |
1090 | 1090 | $js_setting = current_action() == 'wp_enqueue_scripts' ? 'js' : 'js_backend'; |
1091 | 1091 | |
1092 | 1092 | // select2 |
1093 | - wp_register_script( 'select2', $this->url . 'assets/js/select2.min.js', array( 'jquery' ), $this->select2_version ); |
|
1093 | + wp_register_script('select2', $this->url . 'assets/js/select2.min.js', array('jquery'), $this->select2_version); |
|
1094 | 1094 | |
1095 | 1095 | // flatpickr |
1096 | - wp_register_script( 'flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest ); |
|
1096 | + wp_register_script('flatpickr', $this->url . 'assets/js/flatpickr.min.js', array(), $this->latest); |
|
1097 | 1097 | |
1098 | 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() ); |
|
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 | 1101 | |
1102 | 1102 | $load_inline = false; |
1103 | 1103 | |
1104 | - if ( $this->settings[ $js_setting ] == 'core-popper' ) { |
|
1104 | + if ($this->settings[$js_setting] == 'core-popper') { |
|
1105 | 1105 | // Bootstrap bundle |
1106 | 1106 | $url = $this->url . 'assets/js/bootstrap.bundle.min.js'; |
1107 | - wp_register_script( 'bootstrap-js-bundle', $url, array( |
|
1107 | + wp_register_script('bootstrap-js-bundle', $url, array( |
|
1108 | 1108 | 'select2', |
1109 | 1109 | 'jquery' |
1110 | - ), $this->latest, $this->is_bs3_compat() ); |
|
1110 | + ), $this->latest, $this->is_bs3_compat()); |
|
1111 | 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' ); |
|
1112 | + is_admin() ? wp_enqueue_script('bootstrap-js-bundle', '', null, null, true) : wp_enqueue_script('bootstrap-js-bundle'); |
|
1113 | 1113 | $script = $this->inline_script(); |
1114 | - wp_add_inline_script( 'bootstrap-js-bundle', $script ); |
|
1115 | - } elseif ( $this->settings[ $js_setting ] == 'popper' ) { |
|
1114 | + wp_add_inline_script('bootstrap-js-bundle', $script); |
|
1115 | + } elseif ($this->settings[$js_setting] == 'popper') { |
|
1116 | 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' ); |
|
1117 | + wp_register_script('bootstrap-js-popper', $url, array('select2', 'jquery'), $this->latest); |
|
1118 | + wp_enqueue_script('bootstrap-js-popper'); |
|
1119 | 1119 | $load_inline = true; |
1120 | 1120 | } else { |
1121 | 1121 | $load_inline = true; |
1122 | 1122 | } |
1123 | 1123 | |
1124 | 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' ); |
|
1125 | + if ($load_inline) { |
|
1126 | + wp_register_script('bootstrap-dummy', '', array('select2', 'jquery')); |
|
1127 | + wp_enqueue_script('bootstrap-dummy'); |
|
1128 | 1128 | $script = $this->inline_script(); |
1129 | - wp_add_inline_script( 'bootstrap-dummy', $script ); |
|
1129 | + wp_add_inline_script('bootstrap-dummy', $script); |
|
1130 | 1130 | } |
1131 | 1131 | } |
1132 | 1132 | |
@@ -1135,9 +1135,9 @@ discard block |
||
1135 | 1135 | /** |
1136 | 1136 | * Enqueue flatpickr if called. |
1137 | 1137 | */ |
1138 | - public function enqueue_flatpickr(){ |
|
1139 | - wp_enqueue_style( 'flatpickr' ); |
|
1140 | - wp_enqueue_script( 'flatpickr' ); |
|
1138 | + public function enqueue_flatpickr() { |
|
1139 | + wp_enqueue_style('flatpickr'); |
|
1140 | + wp_enqueue_script('flatpickr'); |
|
1141 | 1141 | } |
1142 | 1142 | |
1143 | 1143 | /** |
@@ -1149,15 +1149,15 @@ discard block |
||
1149 | 1149 | |
1150 | 1150 | $url = ''; |
1151 | 1151 | // check if we are inside a plugin |
1152 | - $file_dir = str_replace( "/includes","", wp_normalize_path( dirname( __FILE__ ) ) ); |
|
1152 | + $file_dir = str_replace("/includes", "", wp_normalize_path(dirname(__FILE__))); |
|
1153 | 1153 | |
1154 | 1154 | // add check in-case user has changed wp-content dir name. |
1155 | 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()); |
|
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] ); |
|
1159 | + if (!empty($url_parts[0]) && !empty($dir_parts[1])) { |
|
1160 | + $url = trailingslashit($url_parts[0] . "/$wp_content_folder_name/" . $dir_parts[1]); |
|
1161 | 1161 | } |
1162 | 1162 | |
1163 | 1163 | return $url; |
@@ -1167,7 +1167,7 @@ discard block |
||
1167 | 1167 | * Register the database settings with WordPress. |
1168 | 1168 | */ |
1169 | 1169 | public function register_settings() { |
1170 | - register_setting( 'ayecode-ui-settings', 'ayecode-ui-settings' ); |
|
1170 | + register_setting('ayecode-ui-settings', 'ayecode-ui-settings'); |
|
1171 | 1171 | } |
1172 | 1172 | |
1173 | 1173 | /** |
@@ -1176,10 +1176,10 @@ discard block |
||
1176 | 1176 | */ |
1177 | 1177 | public function menu_item() { |
1178 | 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( |
|
1179 | + call_user_func($menu_function, $this->name, $this->name, 'manage_options', 'ayecode-ui-settings', array( |
|
1180 | 1180 | $this, |
1181 | 1181 | 'settings_page' |
1182 | - ) ); |
|
1182 | + )); |
|
1183 | 1183 | } |
1184 | 1184 | |
1185 | 1185 | /** |
@@ -1187,7 +1187,7 @@ discard block |
||
1187 | 1187 | * |
1188 | 1188 | * @return array |
1189 | 1189 | */ |
1190 | - public function theme_js_settings(){ |
|
1190 | + public function theme_js_settings() { |
|
1191 | 1191 | return array( |
1192 | 1192 | 'ayetheme' => 'popper', |
1193 | 1193 | 'listimia' => 'required', |
@@ -1203,17 +1203,17 @@ discard block |
||
1203 | 1203 | */ |
1204 | 1204 | public function get_settings() { |
1205 | 1205 | |
1206 | - $db_settings = get_option( 'ayecode-ui-settings' ); |
|
1206 | + $db_settings = get_option('ayecode-ui-settings'); |
|
1207 | 1207 | $js_default = 'core-popper'; |
1208 | 1208 | $js_default_backend = $js_default; |
1209 | 1209 | |
1210 | 1210 | // maybe set defaults (if no settings set) |
1211 | - if(empty($db_settings)){ |
|
1212 | - $active_theme = strtolower( get_template() ); // active parent theme. |
|
1211 | + if (empty($db_settings)) { |
|
1212 | + $active_theme = strtolower(get_template()); // active parent theme. |
|
1213 | 1213 | $theme_js_settings = self::theme_js_settings(); |
1214 | - if(isset($theme_js_settings[$active_theme])){ |
|
1214 | + if (isset($theme_js_settings[$active_theme])) { |
|
1215 | 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; |
|
1216 | + $js_default_backend = isset($theme_js_settings[$active_theme . "_backend"]) ? $theme_js_settings[$active_theme . "_backend"] : $js_default; |
|
1217 | 1217 | } |
1218 | 1218 | } |
1219 | 1219 | |
@@ -1226,14 +1226,14 @@ discard block |
||
1226 | 1226 | 'disable_admin' => '', // URL snippets to disable loading on admin |
1227 | 1227 | ); |
1228 | 1228 | |
1229 | - $settings = wp_parse_args( $db_settings, $defaults ); |
|
1229 | + $settings = wp_parse_args($db_settings, $defaults); |
|
1230 | 1230 | |
1231 | 1231 | /** |
1232 | 1232 | * Filter the Bootstrap settings. |
1233 | 1233 | * |
1234 | 1234 | * @todo if we add this filer people might use it and then it defeates the purpose of this class :/ |
1235 | 1235 | */ |
1236 | - return $this->settings = apply_filters( 'ayecode-ui-settings', $settings, $db_settings, $defaults ); |
|
1236 | + return $this->settings = apply_filters('ayecode-ui-settings', $settings, $db_settings, $defaults); |
|
1237 | 1237 | } |
1238 | 1238 | |
1239 | 1239 | |
@@ -1241,90 +1241,90 @@ discard block |
||
1241 | 1241 | * The settings page html output. |
1242 | 1242 | */ |
1243 | 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' ) ); |
|
1244 | + if (!current_user_can('manage_options')) { |
|
1245 | + wp_die(__('You do not have sufficient permissions to access this page.', 'aui')); |
|
1246 | 1246 | } |
1247 | 1247 | ?> |
1248 | 1248 | <div class="wrap"> |
1249 | 1249 | <h1><?php echo $this->name; ?></h1> |
1250 | - <p><?php _e("Here you can adjust settings if you are having compatibility issues.",'aui');?></p> |
|
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' ); |
|
1253 | + settings_fields('ayecode-ui-settings'); |
|
1254 | + do_settings_sections('ayecode-ui-settings'); |
|
1255 | 1255 | ?> |
1256 | 1256 | |
1257 | - <h2><?php _e( 'Frontend', 'aui' ); ?></h2> |
|
1257 | + <h2><?php _e('Frontend', 'aui'); ?></h2> |
|
1258 | 1258 | <table class="form-table wpbs-table-settings"> |
1259 | 1259 | <tr valign="top"> |
1260 | 1260 | <th scope="row"><label |
1261 | - for="wpbs-css"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
|
1261 | + for="wpbs-css"><?php _e('Load CSS', 'aui'); ?></label></th> |
|
1262 | 1262 | <td> |
1263 | 1263 | <select name="ayecode-ui-settings[css]" id="wpbs-css"> |
1264 | - <option value="compatibility" <?php selected( $this->settings['css'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
|
1265 | - <option value="core" <?php selected( $this->settings['css'], 'core' ); ?>><?php _e( 'Full Mode', 'aui' ); ?></option> |
|
1266 | - <option value="" <?php selected( $this->settings['css'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
|
1264 | + <option value="compatibility" <?php selected($this->settings['css'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option> |
|
1265 | + <option value="core" <?php selected($this->settings['css'], 'core'); ?>><?php _e('Full Mode', 'aui'); ?></option> |
|
1266 | + <option value="" <?php selected($this->settings['css'], ''); ?>><?php _e('Disabled', 'aui'); ?></option> |
|
1267 | 1267 | </select> |
1268 | 1268 | </td> |
1269 | 1269 | </tr> |
1270 | 1270 | |
1271 | 1271 | <tr valign="top"> |
1272 | 1272 | <th scope="row"><label |
1273 | - for="wpbs-js"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
|
1273 | + for="wpbs-js"><?php _e('Load JS', 'aui'); ?></label></th> |
|
1274 | 1274 | <td> |
1275 | 1275 | <select name="ayecode-ui-settings[js]" id="wpbs-js"> |
1276 | - <option value="core-popper" <?php selected( $this->settings['js'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
|
1277 | - <option value="popper" <?php selected( $this->settings['js'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
|
1278 | - <option value="required" <?php selected( $this->settings['js'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
|
1279 | - <option value="" <?php selected( $this->settings['js'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
|
1276 | + <option value="core-popper" <?php selected($this->settings['js'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option> |
|
1277 | + <option value="popper" <?php selected($this->settings['js'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option> |
|
1278 | + <option value="required" <?php selected($this->settings['js'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option> |
|
1279 | + <option value="" <?php selected($this->settings['js'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option> |
|
1280 | 1280 | </select> |
1281 | 1281 | </td> |
1282 | 1282 | </tr> |
1283 | 1283 | |
1284 | 1284 | <tr valign="top"> |
1285 | 1285 | <th scope="row"><label |
1286 | - for="wpbs-font_size"><?php _e( 'HTML Font Size (px)', 'aui' ); ?></label></th> |
|
1286 | + for="wpbs-font_size"><?php _e('HTML Font Size (px)', 'aui'); ?></label></th> |
|
1287 | 1287 | <td> |
1288 | - <input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint( $this->settings['html_font_size']); ?>" placeholder="16" /> |
|
1289 | - <p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.",'aui');?></p> |
|
1288 | + <input type="number" name="ayecode-ui-settings[html_font_size]" id="wpbs-font_size" value="<?php echo absint($this->settings['html_font_size']); ?>" placeholder="16" /> |
|
1289 | + <p class="description" ><?php _e("Our font sizing is rem (responsive based) here you can set the html font size in-case your theme is setting it too low.", 'aui'); ?></p> |
|
1290 | 1290 | </td> |
1291 | 1291 | </tr> |
1292 | 1292 | |
1293 | 1293 | </table> |
1294 | 1294 | |
1295 | - <h2><?php _e( 'Backend', 'aui' ); ?> (wp-admin)</h2> |
|
1295 | + <h2><?php _e('Backend', 'aui'); ?> (wp-admin)</h2> |
|
1296 | 1296 | <table class="form-table wpbs-table-settings"> |
1297 | 1297 | <tr valign="top"> |
1298 | 1298 | <th scope="row"><label |
1299 | - for="wpbs-css-admin"><?php _e( 'Load CSS', 'aui' ); ?></label></th> |
|
1299 | + for="wpbs-css-admin"><?php _e('Load CSS', 'aui'); ?></label></th> |
|
1300 | 1300 | <td> |
1301 | 1301 | <select name="ayecode-ui-settings[css_backend]" id="wpbs-css-admin"> |
1302 | - <option value="compatibility" <?php selected( $this->settings['css_backend'], 'compatibility' ); ?>><?php _e( 'Compatibility Mode (default)', 'aui' ); ?></option> |
|
1303 | - <option value="core" <?php selected( $this->settings['css_backend'], 'core' ); ?>><?php _e( 'Full Mode (will cause style issues)', 'aui' ); ?></option> |
|
1304 | - <option value="" <?php selected( $this->settings['css_backend'], '' ); ?>><?php _e( 'Disabled', 'aui' ); ?></option> |
|
1302 | + <option value="compatibility" <?php selected($this->settings['css_backend'], 'compatibility'); ?>><?php _e('Compatibility Mode (default)', 'aui'); ?></option> |
|
1303 | + <option value="core" <?php selected($this->settings['css_backend'], 'core'); ?>><?php _e('Full Mode (will cause style issues)', 'aui'); ?></option> |
|
1304 | + <option value="" <?php selected($this->settings['css_backend'], ''); ?>><?php _e('Disabled', 'aui'); ?></option> |
|
1305 | 1305 | </select> |
1306 | 1306 | </td> |
1307 | 1307 | </tr> |
1308 | 1308 | |
1309 | 1309 | <tr valign="top"> |
1310 | 1310 | <th scope="row"><label |
1311 | - for="wpbs-js-admin"><?php _e( 'Load JS', 'aui' ); ?></label></th> |
|
1311 | + for="wpbs-js-admin"><?php _e('Load JS', 'aui'); ?></label></th> |
|
1312 | 1312 | <td> |
1313 | 1313 | <select name="ayecode-ui-settings[js_backend]" id="wpbs-js-admin"> |
1314 | - <option value="core-popper" <?php selected( $this->settings['js_backend'], 'core-popper' ); ?>><?php _e( 'Core + Popper (default)', 'aui' ); ?></option> |
|
1315 | - <option value="popper" <?php selected( $this->settings['js_backend'], 'popper' ); ?>><?php _e( 'Popper', 'aui' ); ?></option> |
|
1316 | - <option value="required" <?php selected( $this->settings['js_backend'], 'required' ); ?>><?php _e( 'Required functions only', 'aui' ); ?></option> |
|
1317 | - <option value="" <?php selected( $this->settings['js_backend'], '' ); ?>><?php _e( 'Disabled (not recommended)', 'aui' ); ?></option> |
|
1314 | + <option value="core-popper" <?php selected($this->settings['js_backend'], 'core-popper'); ?>><?php _e('Core + Popper (default)', 'aui'); ?></option> |
|
1315 | + <option value="popper" <?php selected($this->settings['js_backend'], 'popper'); ?>><?php _e('Popper', 'aui'); ?></option> |
|
1316 | + <option value="required" <?php selected($this->settings['js_backend'], 'required'); ?>><?php _e('Required functions only', 'aui'); ?></option> |
|
1317 | + <option value="" <?php selected($this->settings['js_backend'], ''); ?>><?php _e('Disabled (not recommended)', 'aui'); ?></option> |
|
1318 | 1318 | </select> |
1319 | 1319 | </td> |
1320 | 1320 | </tr> |
1321 | 1321 | |
1322 | 1322 | <tr valign="top"> |
1323 | 1323 | <th scope="row"><label |
1324 | - for="wpbs-disable-admin"><?php _e( 'Disable load on URL', 'aui' ); ?></label></th> |
|
1324 | + for="wpbs-disable-admin"><?php _e('Disable load on URL', 'aui'); ?></label></th> |
|
1325 | 1325 | <td> |
1326 | - <p><?php _e( 'If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui' ); ?></p> |
|
1327 | - <textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php action=go"><?php echo $this->settings['disable_admin'];?></textarea> |
|
1326 | + <p><?php _e('If you have backend conflict you can enter a partial URL argument that will disable the loading of AUI on those pages. Add each argument on a new line.', 'aui'); ?></p> |
|
1327 | + <textarea name="ayecode-ui-settings[disable_admin]" rows="10" cols="50" id="wpbs-disable-admin" class="large-text code" spellcheck="false" placeholder="myplugin.php action=go"><?php echo $this->settings['disable_admin']; ?></textarea> |
|
1328 | 1328 | |
1329 | 1329 | </td> |
1330 | 1330 | </tr> |
@@ -1342,9 +1342,9 @@ discard block |
||
1342 | 1342 | <?php |
1343 | 1343 | } |
1344 | 1344 | |
1345 | - public function customizer_settings($wp_customize){ |
|
1345 | + public function customizer_settings($wp_customize) { |
|
1346 | 1346 | $wp_customize->add_section('aui_settings', array( |
1347 | - 'title' => __('AyeCode UI','aui'), |
|
1347 | + 'title' => __('AyeCode UI', 'aui'), |
|
1348 | 1348 | 'priority' => 120, |
1349 | 1349 | )); |
1350 | 1350 | |
@@ -1358,8 +1358,8 @@ discard block |
||
1358 | 1358 | 'type' => 'option', |
1359 | 1359 | 'transport' => 'refresh', |
1360 | 1360 | )); |
1361 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1362 | - 'label' => __('Primary Color','aui'), |
|
1361 | + $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_primary', array( |
|
1362 | + 'label' => __('Primary Color', 'aui'), |
|
1363 | 1363 | 'section' => 'aui_settings', |
1364 | 1364 | 'settings' => 'aui_options[color_primary]', |
1365 | 1365 | ))); |
@@ -1371,8 +1371,8 @@ discard block |
||
1371 | 1371 | 'type' => 'option', |
1372 | 1372 | 'transport' => 'refresh', |
1373 | 1373 | )); |
1374 | - $wp_customize->add_control( new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1375 | - 'label' => __('Secondary Color','aui'), |
|
1374 | + $wp_customize->add_control(new WP_Customize_Color_Control($wp_customize, 'color_secondary', array( |
|
1375 | + 'label' => __('Secondary Color', 'aui'), |
|
1376 | 1376 | 'section' => 'aui_settings', |
1377 | 1377 | 'settings' => 'aui_options[color_secondary]', |
1378 | 1378 | ))); |
@@ -1398,12 +1398,12 @@ discard block |
||
1398 | 1398 | .collapse.show:not(.in){display: inherit;} |
1399 | 1399 | .fade.show{opacity: 1;} |
1400 | 1400 | |
1401 | - <?php if( defined( 'SVQ_THEME_VERSION' ) ){ ?> |
|
1401 | + <?php if (defined('SVQ_THEME_VERSION')) { ?> |
|
1402 | 1402 | /* KLEO theme specific */ |
1403 | 1403 | .kleo-main-header .navbar-collapse.collapse.show:not(.in){display: block !important;} |
1404 | 1404 | <?php } ?> |
1405 | 1405 | |
1406 | - <?php if( defined( 'FUSION_BUILDER_VERSION' ) ){ ?> |
|
1406 | + <?php if (defined('FUSION_BUILDER_VERSION')) { ?> |
|
1407 | 1407 | /* With Avada builder */ |
1408 | 1408 | body.modal-open .modal.in {opacity:1;z-index: 99999} |
1409 | 1409 | body.modal-open .modal.bsui.in .modal-content {box-shadow: none;} |
@@ -1411,10 +1411,10 @@ discard block |
||
1411 | 1411 | <?php } ?> |
1412 | 1412 | </style> |
1413 | 1413 | <?php |
1414 | - return str_replace( array( |
|
1414 | + return str_replace(array( |
|
1415 | 1415 | '<style>', |
1416 | 1416 | '</style>' |
1417 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1417 | + ), '', self::minify_css(ob_get_clean())); |
|
1418 | 1418 | } |
1419 | 1419 | |
1420 | 1420 | |
@@ -1431,16 +1431,16 @@ discard block |
||
1431 | 1431 | <?php |
1432 | 1432 | |
1433 | 1433 | // BS v3 compat |
1434 | - if( self::is_bs3_compat() ){ |
|
1434 | + if (self::is_bs3_compat()) { |
|
1435 | 1435 | echo self::bs3_compat_css(); |
1436 | 1436 | } |
1437 | 1437 | |
1438 | - if(!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL){ |
|
1439 | - echo self::css_primary($primary_color,$compatibility); |
|
1438 | + if (!is_admin() && $primary_color != AUI_PRIMARY_COLOR_ORIGINAL) { |
|
1439 | + echo self::css_primary($primary_color, $compatibility); |
|
1440 | 1440 | } |
1441 | 1441 | |
1442 | - if(!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL){ |
|
1443 | - echo self::css_secondary($settings['color_secondary'],$compatibility); |
|
1442 | + if (!is_admin() && $secondary_color != AUI_SECONDARY_COLOR_ORIGINAL) { |
|
1443 | + echo self::css_secondary($settings['color_secondary'], $compatibility); |
|
1444 | 1444 | } |
1445 | 1445 | |
1446 | 1446 | // Set admin bar z-index lower when modal is open. |
@@ -1453,10 +1453,10 @@ discard block |
||
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( |
|
1456 | + return str_replace(array( |
|
1457 | 1457 | '<style>', |
1458 | 1458 | '</style>' |
1459 | - ), '', self::minify_css( ob_get_clean() ) ); |
|
1459 | + ), '', self::minify_css(ob_get_clean())); |
|
1460 | 1460 | } |
1461 | 1461 | |
1462 | 1462 | /** |
@@ -1464,48 +1464,48 @@ discard block |
||
1464 | 1464 | * |
1465 | 1465 | * @return bool |
1466 | 1466 | */ |
1467 | - public static function is_bs3_compat(){ |
|
1467 | + public static function is_bs3_compat() { |
|
1468 | 1468 | return defined('AYECODE_UI_BS3_COMPAT') || defined('SVQ_THEME_VERSION') || defined('FUSION_BUILDER_VERSION'); |
1469 | 1469 | } |
1470 | 1470 | |
1471 | - public static function css_primary($color_code,$compatibility){; |
|
1471 | + public static function css_primary($color_code, $compatibility) {; |
|
1472 | 1472 | $color_code = sanitize_hex_color($color_code); |
1473 | - if(!$color_code){return '';} |
|
1473 | + if (!$color_code) {return ''; } |
|
1474 | 1474 | /** |
1475 | 1475 | * c = color, b = background color, o = border-color, f = fill |
1476 | 1476 | */ |
1477 | 1477 | $selectors = array( |
1478 | 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'), |
|
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 | 1487 | '.btn-link' => array('c'), |
1488 | 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'), |
|
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 | 1494 | '.nav-pills .nav-link.active' => array('b'), |
1495 | 1495 | '.nav-pills .show>.nav-link' => array('b'), |
1496 | 1496 | '.page-link' => array('c'), |
1497 | - '.page-item.active .page-link' => array('b','o'), |
|
1497 | + '.page-item.active .page-link' => array('b', 'o'), |
|
1498 | 1498 | '.badge-primary' => array('b'), |
1499 | - '.alert-primary' => array('b','o'), |
|
1499 | + '.alert-primary' => array('b', 'o'), |
|
1500 | 1500 | '.progress-bar' => array('b'), |
1501 | - '.list-group-item.active' => array('b','o'), |
|
1502 | - '.bg-primary' => array('b','f'), |
|
1501 | + '.list-group-item.active' => array('b', 'o'), |
|
1502 | + '.bg-primary' => array('b', 'f'), |
|
1503 | 1503 | '.btn-link.btn-primary' => array('c'), |
1504 | 1504 | '.select2-container .select2-results__option--highlighted.select2-results__option[aria-selected=true]' => array('b'), |
1505 | 1505 | ); |
1506 | 1506 | |
1507 | 1507 | $important_selectors = array( |
1508 | - '.bg-primary' => array('b','f'), |
|
1508 | + '.bg-primary' => array('b', 'f'), |
|
1509 | 1509 | '.border-primary' => array('o'), |
1510 | 1510 | '.text-primary' => array('c'), |
1511 | 1511 | ); |
@@ -1522,116 +1522,116 @@ discard block |
||
1522 | 1522 | $output = ''; |
1523 | 1523 | |
1524 | 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;} |
|
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 | 1532 | } |
1533 | 1533 | |
1534 | 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;} |
|
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 | 1542 | } |
1543 | 1543 | |
1544 | 1544 | // add any color rules |
1545 | - if(!empty($color)){ |
|
1546 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1545 | + if (!empty($color)) { |
|
1546 | + $output .= implode(",", $color) . "{color: $color_code;} "; |
|
1547 | 1547 | } |
1548 | - if(!empty($color_i)){ |
|
1549 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1548 | + if (!empty($color_i)) { |
|
1549 | + $output .= implode(",", $color_i) . "{color: $color_code !important;} "; |
|
1550 | 1550 | } |
1551 | 1551 | |
1552 | 1552 | // add any background color rules |
1553 | - if(!empty($background)){ |
|
1554 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1553 | + if (!empty($background)) { |
|
1554 | + $output .= implode(",", $background) . "{background-color: $color_code;} "; |
|
1555 | 1555 | } |
1556 | - if(!empty($background_i)){ |
|
1557 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1556 | + if (!empty($background_i)) { |
|
1557 | + $output .= implode(",", $background_i) . "{background-color: $color_code !important;} "; |
|
1558 | 1558 | } |
1559 | 1559 | |
1560 | 1560 | // add any border color rules |
1561 | - if(!empty($border)){ |
|
1562 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1561 | + if (!empty($border)) { |
|
1562 | + $output .= implode(",", $border) . "{border-color: $color_code;} "; |
|
1563 | 1563 | } |
1564 | - if(!empty($border_i)){ |
|
1565 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1564 | + if (!empty($border_i)) { |
|
1565 | + $output .= implode(",", $border_i) . "{border-color: $color_code !important;} "; |
|
1566 | 1566 | } |
1567 | 1567 | |
1568 | 1568 | // add any fill color rules |
1569 | - if(!empty($fill)){ |
|
1570 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1569 | + if (!empty($fill)) { |
|
1570 | + $output .= implode(",", $fill) . "{fill: $color_code;} "; |
|
1571 | 1571 | } |
1572 | - if(!empty($fill_i)){ |
|
1573 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1572 | + if (!empty($fill_i)) { |
|
1573 | + $output .= implode(",", $fill_i) . "{fill: $color_code !important;} "; |
|
1574 | 1574 | } |
1575 | 1575 | |
1576 | 1576 | |
1577 | 1577 | $prefix = $compatibility ? ".bsui " : ""; |
1578 | 1578 | |
1579 | 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"); |
|
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 | 1583 | |
1584 | 1584 | // lighten |
1585 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1585 | + $lighten_25 = self::css_hex_lighten_darken($color_code, "0.25"); |
|
1586 | 1586 | |
1587 | 1587 | // opacity see https://css-tricks.com/8-digit-hex-codes/ |
1588 | - $op_25 = $color_code."40"; // 25% opacity |
|
1588 | + $op_25 = $color_code . "40"; // 25% opacity |
|
1589 | 1589 | |
1590 | 1590 | |
1591 | 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;} "; |
|
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 | 1596 | |
1597 | 1597 | |
1598 | 1598 | // dropdown's |
1599 | - $output .= $prefix ." .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1599 | + $output .= $prefix . " .dropdown-item.active, $prefix .dropdown-item:active{background-color: $color_code;} "; |
|
1600 | 1600 | |
1601 | 1601 | |
1602 | 1602 | // input states |
1603 | - $output .= $prefix ." .form-control:focus{border-color: ".$lighten_25.";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1603 | + $output .= $prefix . " .form-control:focus{border-color: " . $lighten_25 . ";box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1604 | 1604 | |
1605 | 1605 | // page link |
1606 | - $output .= $prefix ." .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1606 | + $output .= $prefix . " .page-link:focus{box-shadow: 0 0 0 0.2rem $op_25;} "; |
|
1607 | 1607 | |
1608 | 1608 | return $output; |
1609 | 1609 | } |
1610 | 1610 | |
1611 | - public static function css_secondary($color_code,$compatibility){; |
|
1611 | + public static function css_secondary($color_code, $compatibility) {; |
|
1612 | 1612 | $color_code = sanitize_hex_color($color_code); |
1613 | - if(!$color_code){return '';} |
|
1613 | + if (!$color_code) {return ''; } |
|
1614 | 1614 | /** |
1615 | 1615 | * c = color, b = background color, o = border-color, f = fill |
1616 | 1616 | */ |
1617 | 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'), |
|
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 | 1623 | '.btn-outline-secondary.disabled' => array('c'), |
1624 | 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'), |
|
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 | 1628 | '.badge-secondary' => array('b'), |
1629 | - '.alert-secondary' => array('b','o'), |
|
1629 | + '.alert-secondary' => array('b', 'o'), |
|
1630 | 1630 | '.btn-link.btn-secondary' => array('c'), |
1631 | 1631 | ); |
1632 | 1632 | |
1633 | 1633 | $important_selectors = array( |
1634 | - '.bg-secondary' => array('b','f'), |
|
1634 | + '.bg-secondary' => array('b', 'f'), |
|
1635 | 1635 | '.border-secondary' => array('o'), |
1636 | 1636 | '.text-secondary' => array('c'), |
1637 | 1637 | ); |
@@ -1648,77 +1648,77 @@ discard block |
||
1648 | 1648 | $output = ''; |
1649 | 1649 | |
1650 | 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;} |
|
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 | 1658 | } |
1659 | 1659 | |
1660 | 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;} |
|
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 | 1668 | } |
1669 | 1669 | |
1670 | 1670 | // add any color rules |
1671 | - if(!empty($color)){ |
|
1672 | - $output .= implode(",",$color) . "{color: $color_code;} "; |
|
1671 | + if (!empty($color)) { |
|
1672 | + $output .= implode(",", $color) . "{color: $color_code;} "; |
|
1673 | 1673 | } |
1674 | - if(!empty($color_i)){ |
|
1675 | - $output .= implode(",",$color_i) . "{color: $color_code !important;} "; |
|
1674 | + if (!empty($color_i)) { |
|
1675 | + $output .= implode(",", $color_i) . "{color: $color_code !important;} "; |
|
1676 | 1676 | } |
1677 | 1677 | |
1678 | 1678 | // add any background color rules |
1679 | - if(!empty($background)){ |
|
1680 | - $output .= implode(",",$background) . "{background-color: $color_code;} "; |
|
1679 | + if (!empty($background)) { |
|
1680 | + $output .= implode(",", $background) . "{background-color: $color_code;} "; |
|
1681 | 1681 | } |
1682 | - if(!empty($background_i)){ |
|
1683 | - $output .= implode(",",$background_i) . "{background-color: $color_code !important;} "; |
|
1682 | + if (!empty($background_i)) { |
|
1683 | + $output .= implode(",", $background_i) . "{background-color: $color_code !important;} "; |
|
1684 | 1684 | } |
1685 | 1685 | |
1686 | 1686 | // add any border color rules |
1687 | - if(!empty($border)){ |
|
1688 | - $output .= implode(",",$border) . "{border-color: $color_code;} "; |
|
1687 | + if (!empty($border)) { |
|
1688 | + $output .= implode(",", $border) . "{border-color: $color_code;} "; |
|
1689 | 1689 | } |
1690 | - if(!empty($border_i)){ |
|
1691 | - $output .= implode(",",$border_i) . "{border-color: $color_code !important;} "; |
|
1690 | + if (!empty($border_i)) { |
|
1691 | + $output .= implode(",", $border_i) . "{border-color: $color_code !important;} "; |
|
1692 | 1692 | } |
1693 | 1693 | |
1694 | 1694 | // add any fill color rules |
1695 | - if(!empty($fill)){ |
|
1696 | - $output .= implode(",",$fill) . "{fill: $color_code;} "; |
|
1695 | + if (!empty($fill)) { |
|
1696 | + $output .= implode(",", $fill) . "{fill: $color_code;} "; |
|
1697 | 1697 | } |
1698 | - if(!empty($fill_i)){ |
|
1699 | - $output .= implode(",",$fill_i) . "{fill: $color_code !important;} "; |
|
1698 | + if (!empty($fill_i)) { |
|
1699 | + $output .= implode(",", $fill_i) . "{fill: $color_code !important;} "; |
|
1700 | 1700 | } |
1701 | 1701 | |
1702 | 1702 | |
1703 | 1703 | $prefix = $compatibility ? ".bsui " : ""; |
1704 | 1704 | |
1705 | 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"); |
|
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 | 1709 | |
1710 | 1710 | // lighten |
1711 | - $lighten_25 = self::css_hex_lighten_darken($color_code,"0.25"); |
|
1711 | + $lighten_25 = self::css_hex_lighten_darken($color_code, "0.25"); |
|
1712 | 1712 | |
1713 | 1713 | // opacity see https://css-tricks.com/8-digit-hex-codes/ |
1714 | - $op_25 = $color_code."40"; // 25% opacity |
|
1714 | + $op_25 = $color_code . "40"; // 25% opacity |
|
1715 | 1715 | |
1716 | 1716 | |
1717 | 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;} "; |
|
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 | 1722 | |
1723 | 1723 | |
1724 | 1724 | return $output; |
@@ -1754,8 +1754,8 @@ discard block |
||
1754 | 1754 | /** |
1755 | 1755 | * Check if we should display examples. |
1756 | 1756 | */ |
1757 | - public function maybe_show_examples(){ |
|
1758 | - if(current_user_can('manage_options') && isset($_REQUEST['preview-aui'])){ |
|
1757 | + public function maybe_show_examples() { |
|
1758 | + if (current_user_can('manage_options') && isset($_REQUEST['preview-aui'])) { |
|
1759 | 1759 | echo "<head>"; |
1760 | 1760 | wp_head(); |
1761 | 1761 | echo "</head>"; |
@@ -1771,7 +1771,7 @@ discard block |
||
1771 | 1771 | * |
1772 | 1772 | * @return string |
1773 | 1773 | */ |
1774 | - public function get_examples(){ |
|
1774 | + public function get_examples() { |
|
1775 | 1775 | $output = ''; |
1776 | 1776 | |
1777 | 1777 | |
@@ -1877,74 +1877,74 @@ discard block |
||
1877 | 1877 | */ |
1878 | 1878 | public static function calendar_params() { |
1879 | 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' ), |
|
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 | 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' ) |
|
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 | 1945 | ); |
1946 | 1946 | |
1947 | - return apply_filters( 'ayecode_ui_calendar_params', $params ); |
|
1947 | + return apply_filters('ayecode_ui_calendar_params', $params); |
|
1948 | 1948 | } |
1949 | 1949 | |
1950 | 1950 | /** |
@@ -1957,47 +1957,47 @@ discard block |
||
1957 | 1957 | public static function flatpickr_locale() { |
1958 | 1958 | $params = self::calendar_params(); |
1959 | 1959 | |
1960 | - if ( is_string( $params ) ) { |
|
1961 | - $params = html_entity_decode( $params, ENT_QUOTES, 'UTF-8' ); |
|
1960 | + if (is_string($params)) { |
|
1961 | + $params = html_entity_decode($params, ENT_QUOTES, 'UTF-8'); |
|
1962 | 1962 | } else { |
1963 | - foreach ( (array) $params as $key => $value ) { |
|
1964 | - if ( ! is_scalar( $value ) ) { |
|
1963 | + foreach ((array) $params as $key => $value) { |
|
1964 | + if (!is_scalar($value)) { |
|
1965 | 1965 | continue; |
1966 | 1966 | } |
1967 | 1967 | |
1968 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
1968 | + $params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
1969 | 1969 | } |
1970 | 1970 | } |
1971 | 1971 | |
1972 | 1972 | $day_s3 = array(); |
1973 | 1973 | $day_s5 = array(); |
1974 | 1974 | |
1975 | - for ( $i = 1; $i <= 7; $i ++ ) { |
|
1976 | - $day_s3[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
1977 | - $day_s5[] = addslashes( $params[ 'day_s3_' . $i ] ); |
|
1975 | + for ($i = 1; $i <= 7; $i++) { |
|
1976 | + $day_s3[] = addslashes($params['day_s3_' . $i]); |
|
1977 | + $day_s5[] = addslashes($params['day_s3_' . $i]); |
|
1978 | 1978 | } |
1979 | 1979 | |
1980 | 1980 | $month_s = array(); |
1981 | 1981 | $month_long = array(); |
1982 | 1982 | |
1983 | - for ( $i = 1; $i <= 12; $i ++ ) { |
|
1984 | - $month_s[] = addslashes( $params[ 'month_s_' . $i ] ); |
|
1985 | - $month_long[] = addslashes( $params[ 'month_long_' . $i ] ); |
|
1983 | + for ($i = 1; $i <= 12; $i++) { |
|
1984 | + $month_s[] = addslashes($params['month_s_' . $i]); |
|
1985 | + $month_long[] = addslashes($params['month_long_' . $i]); |
|
1986 | 1986 | } |
1987 | 1987 | |
1988 | 1988 | ob_start(); |
1989 | -if ( 0 ) { ?><script><?php } ?> |
|
1989 | +if (0) { ?><script><?php } ?> |
|
1990 | 1990 | { |
1991 | 1991 | weekdays: { |
1992 | - shorthand: ['<?php echo implode( "','", $day_s3 ); ?>'], |
|
1993 | - longhand: ['<?php echo implode( "','", $day_s5 ); ?>'], |
|
1992 | + shorthand: ['<?php echo implode("','", $day_s3); ?>'], |
|
1993 | + longhand: ['<?php echo implode("','", $day_s5); ?>'], |
|
1994 | 1994 | }, |
1995 | 1995 | months: { |
1996 | - shorthand: ['<?php echo implode( "','", $month_s ); ?>'], |
|
1997 | - longhand: ['<?php echo implode( "','", $month_long ); ?>'], |
|
1996 | + shorthand: ['<?php echo implode("','", $month_s); ?>'], |
|
1997 | + longhand: ['<?php echo implode("','", $month_long); ?>'], |
|
1998 | 1998 | }, |
1999 | 1999 | daysInMonth: [31,28,31,30,31,30,31,31,30,31,30,31], |
2000 | - firstDayOfWeek: <?php echo (int) $params[ 'firstDayOfWeek' ]; ?>, |
|
2000 | + firstDayOfWeek: <?php echo (int) $params['firstDayOfWeek']; ?>, |
|
2001 | 2001 | ordinal: function (nth) { |
2002 | 2002 | var s = nth % 100; |
2003 | 2003 | if (s > 3 && s < 21) |
@@ -2013,21 +2013,21 @@ discard block |
||
2013 | 2013 | return "th"; |
2014 | 2014 | } |
2015 | 2015 | }, |
2016 | - rangeSeparator: '<?php echo addslashes( $params[ 'rangeSeparator' ] ); ?>', |
|
2017 | - weekAbbreviation: '<?php echo addslashes( $params[ 'weekAbbreviation' ] ); ?>', |
|
2018 | - scrollTitle: '<?php echo addslashes( $params[ 'scrollTitle' ] ); ?>', |
|
2019 | - toggleTitle: '<?php echo addslashes( $params[ 'toggleTitle' ] ); ?>', |
|
2020 | - amPM: ['<?php echo addslashes( $params[ 'am_upper' ] ); ?>','<?php echo addslashes( $params[ 'pm_upper' ] ); ?>'], |
|
2021 | - yearAriaLabel: '<?php echo addslashes( $params[ 'year' ] ); ?>', |
|
2022 | - hourAriaLabel: '<?php echo addslashes( $params[ 'hour' ] ); ?>', |
|
2023 | - minuteAriaLabel: '<?php echo addslashes( $params[ 'minute' ] ); ?>', |
|
2024 | - time_24hr: <?php echo ( $params[ 'time_24hr' ] ? 'true' : 'false' ) ; ?> |
|
2016 | + rangeSeparator: '<?php echo addslashes($params['rangeSeparator']); ?>', |
|
2017 | + weekAbbreviation: '<?php echo addslashes($params['weekAbbreviation']); ?>', |
|
2018 | + scrollTitle: '<?php echo addslashes($params['scrollTitle']); ?>', |
|
2019 | + toggleTitle: '<?php echo addslashes($params['toggleTitle']); ?>', |
|
2020 | + amPM: ['<?php echo addslashes($params['am_upper']); ?>','<?php echo addslashes($params['pm_upper']); ?>'], |
|
2021 | + yearAriaLabel: '<?php echo addslashes($params['year']); ?>', |
|
2022 | + hourAriaLabel: '<?php echo addslashes($params['hour']); ?>', |
|
2023 | + minuteAriaLabel: '<?php echo addslashes($params['minute']); ?>', |
|
2024 | + time_24hr: <?php echo ($params['time_24hr'] ? 'true' : 'false'); ?> |
|
2025 | 2025 | } |
2026 | -<?php if ( 0 ) { ?></script><?php } ?> |
|
2026 | +<?php if (0) { ?></script><?php } ?> |
|
2027 | 2027 | <?php |
2028 | 2028 | $locale = ob_get_clean(); |
2029 | 2029 | |
2030 | - return apply_filters( 'ayecode_ui_flatpickr_locale', trim( $locale ) ); |
|
2030 | + return apply_filters('ayecode_ui_flatpickr_locale', trim($locale)); |
|
2031 | 2031 | } |
2032 | 2032 | |
2033 | 2033 | /** |
@@ -2039,20 +2039,20 @@ discard block |
||
2039 | 2039 | */ |
2040 | 2040 | public static function select2_params() { |
2041 | 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' ) |
|
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 | 2053 | ); |
2054 | 2054 | |
2055 | - return apply_filters( 'ayecode_ui_select2_params', $params ); |
|
2055 | + return apply_filters('ayecode_ui_select2_params', $params); |
|
2056 | 2056 | } |
2057 | 2057 | |
2058 | 2058 | /** |
@@ -2065,17 +2065,17 @@ discard block |
||
2065 | 2065 | public static function select2_locale() { |
2066 | 2066 | $params = self::select2_params(); |
2067 | 2067 | |
2068 | - foreach ( (array) $params as $key => $value ) { |
|
2069 | - if ( ! is_scalar( $value ) ) { |
|
2068 | + foreach ((array) $params as $key => $value) { |
|
2069 | + if (!is_scalar($value)) { |
|
2070 | 2070 | continue; |
2071 | 2071 | } |
2072 | 2072 | |
2073 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2073 | + $params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
2074 | 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 ) ); |
|
2078 | + return apply_filters('ayecode_ui_select2_locale', trim($locale)); |
|
2079 | 2079 | } |
2080 | 2080 | |
2081 | 2081 | /** |
@@ -2088,35 +2088,35 @@ discard block |
||
2088 | 2088 | public static function timeago_locale() { |
2089 | 2089 | $params = array( |
2090 | 2090 | 'prefix_ago' => '', |
2091 | - 'suffix_ago' => ' ' . _x( 'ago', 'time ago', 'aui' ), |
|
2092 | - 'prefix_after' => _x( 'after', 'time ago', 'aui' ) . ' ', |
|
2091 | + 'suffix_ago' => ' ' . _x('ago', 'time ago', 'aui'), |
|
2092 | + 'prefix_after' => _x('after', 'time ago', 'aui') . ' ', |
|
2093 | 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' ), |
|
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 | 2105 | ); |
2106 | 2106 | |
2107 | - $params = apply_filters( 'ayecode_ui_timeago_params', $params ); |
|
2107 | + $params = apply_filters('ayecode_ui_timeago_params', $params); |
|
2108 | 2108 | |
2109 | - foreach ( (array) $params as $key => $value ) { |
|
2110 | - if ( ! is_scalar( $value ) ) { |
|
2109 | + foreach ((array) $params as $key => $value) { |
|
2110 | + if (!is_scalar($value)) { |
|
2111 | 2111 | continue; |
2112 | 2112 | } |
2113 | 2113 | |
2114 | - $params[ $key ] = html_entity_decode( (string) $value, ENT_QUOTES, 'UTF-8' ); |
|
2114 | + $params[$key] = html_entity_decode((string) $value, ENT_QUOTES, 'UTF-8'); |
|
2115 | 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 ) ); |
|
2119 | + return apply_filters('ayecode_ui_timeago_locale', trim($locale)); |
|
2120 | 2120 | } |
2121 | 2121 | |
2122 | 2122 | /** |
@@ -2127,7 +2127,7 @@ discard block |
||
2127 | 2127 | * @return mixed |
2128 | 2128 | */ |
2129 | 2129 | public static function minify_js($input) { |
2130 | - if(trim($input) === "") return $input; |
|
2130 | + if (trim($input) === "") return $input; |
|
2131 | 2131 | return preg_replace( |
2132 | 2132 | array( |
2133 | 2133 | // Remove comment(s) |
@@ -2159,7 +2159,7 @@ discard block |
||
2159 | 2159 | * @return mixed |
2160 | 2160 | */ |
2161 | 2161 | public static function minify_css($input) { |
2162 | - if(trim($input) === "") return $input; |
|
2162 | + if (trim($input) === "") return $input; |
|
2163 | 2163 | return preg_replace( |
2164 | 2164 | array( |
2165 | 2165 | // Remove comment(s) |
@@ -2679,12 +2679,12 @@ discard block |
||
2679 | 2679 | }); |
2680 | 2680 | } |
2681 | 2681 | } |
2682 | -<?php do_action( 'aui_conditional_fields_js', $this ); ?> |
|
2682 | +<?php do_action('aui_conditional_fields_js', $this); ?> |
|
2683 | 2683 | </script> |
2684 | 2684 | <?php |
2685 | 2685 | $output = ob_get_clean(); |
2686 | 2686 | |
2687 | - return str_replace( array( '<script>', '</script>' ), '', self::minify_js( $output ) ); |
|
2687 | + return str_replace(array('<script>', '</script>'), '', self::minify_js($output)); |
|
2688 | 2688 | } |
2689 | 2689 | } |
2690 | 2690 |