@@ -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 | |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | * |
20 | 20 | * @return string |
21 | 21 | */ |
22 | - public static function name($text,$multiple = false){ |
|
22 | + public static function name($text, $multiple = false) { |
|
23 | 23 | $output = ''; |
24 | 24 | |
25 | - if($text){ |
|
26 | - $is_multiple = strpos($text, '[') === false && $multiple ? '[]' : ''; |
|
27 | - $output = ' name="'.esc_attr($text).$is_multiple.'" '; |
|
25 | + if ($text) { |
|
26 | + $is_multiple = strpos($text, '[') === false && $multiple ? '[]' : ''; |
|
27 | + $output = ' name="' . esc_attr($text) . $is_multiple . '" '; |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | return $output; |
@@ -37,11 +37,11 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @return string The sanitized item. |
39 | 39 | */ |
40 | - public static function id($text){ |
|
40 | + public static function id($text) { |
|
41 | 41 | $output = ''; |
42 | 42 | |
43 | - if($text){ |
|
44 | - $output = ' id="'.sanitize_html_class($text).'" '; |
|
43 | + if ($text) { |
|
44 | + $output = ' id="' . sanitize_html_class($text) . '" '; |
|
45 | 45 | } |
46 | 46 | |
47 | 47 | return $output; |
@@ -54,11 +54,11 @@ discard block |
||
54 | 54 | * |
55 | 55 | * @return string The sanitized item. |
56 | 56 | */ |
57 | - public static function title($text){ |
|
57 | + public static function title($text) { |
|
58 | 58 | $output = ''; |
59 | 59 | |
60 | - if($text){ |
|
61 | - $output = ' title="'.esc_attr($text).'" '; |
|
60 | + if ($text) { |
|
61 | + $output = ' title="' . esc_attr($text) . '" '; |
|
62 | 62 | } |
63 | 63 | |
64 | 64 | return $output; |
@@ -71,11 +71,11 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return string The sanitized item. |
73 | 73 | */ |
74 | - public static function value( $text ) { |
|
74 | + public static function value($text) { |
|
75 | 75 | $output = ''; |
76 | 76 | |
77 | - if ( $text !== null && $text !== false ) { |
|
78 | - $output = ' value="' . esc_attr( wp_unslash( $text ) ) . '" '; |
|
77 | + if ($text !== null && $text !== false) { |
|
78 | + $output = ' value="' . esc_attr(wp_unslash($text)) . '" '; |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | return $output; |
@@ -88,13 +88,13 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return string The sanitized item. |
90 | 90 | */ |
91 | - public static function class_attr($text){ |
|
91 | + public static function class_attr($text) { |
|
92 | 92 | $output = ''; |
93 | 93 | |
94 | - if($text){ |
|
94 | + if ($text) { |
|
95 | 95 | $classes = self::esc_classes($text); |
96 | - if(!empty($classes)){ |
|
97 | - $output = ' class="'.$classes.'" '; |
|
96 | + if (!empty($classes)) { |
|
97 | + $output = ' class="' . $classes . '" '; |
|
98 | 98 | } |
99 | 99 | } |
100 | 100 | |
@@ -108,15 +108,15 @@ discard block |
||
108 | 108 | * |
109 | 109 | * @return string |
110 | 110 | */ |
111 | - public static function esc_classes($text){ |
|
111 | + public static function esc_classes($text) { |
|
112 | 112 | $output = ''; |
113 | 113 | |
114 | - if($text){ |
|
115 | - $classes = explode(" ",$text); |
|
116 | - $classes = array_map("trim",$classes); |
|
117 | - $classes = array_map("sanitize_html_class",$classes); |
|
118 | - if(!empty($classes)){ |
|
119 | - $output = implode(" ",$classes); |
|
114 | + if ($text) { |
|
115 | + $classes = explode(" ", $text); |
|
116 | + $classes = array_map("trim", $classes); |
|
117 | + $classes = array_map("sanitize_html_class", $classes); |
|
118 | + if (!empty($classes)) { |
|
119 | + $output = implode(" ", $classes); |
|
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
@@ -129,14 +129,14 @@ discard block |
||
129 | 129 | * |
130 | 130 | * @return string |
131 | 131 | */ |
132 | - public static function data_attributes($args){ |
|
132 | + public static function data_attributes($args) { |
|
133 | 133 | $output = ''; |
134 | 134 | |
135 | - if(!empty($args)){ |
|
135 | + if (!empty($args)) { |
|
136 | 136 | |
137 | - foreach($args as $key => $val){ |
|
138 | - if(substr( $key, 0, 5 ) === "data-"){ |
|
139 | - $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
|
137 | + foreach ($args as $key => $val) { |
|
138 | + if (substr($key, 0, 5) === "data-") { |
|
139 | + $output .= ' ' . sanitize_html_class($key) . '="' . esc_attr($val) . '" '; |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | } |
@@ -149,14 +149,14 @@ discard block |
||
149 | 149 | * |
150 | 150 | * @return string |
151 | 151 | */ |
152 | - public static function aria_attributes($args){ |
|
152 | + public static function aria_attributes($args) { |
|
153 | 153 | $output = ''; |
154 | 154 | |
155 | - if(!empty($args)){ |
|
155 | + if (!empty($args)) { |
|
156 | 156 | |
157 | - foreach($args as $key => $val){ |
|
158 | - if(substr( $key, 0, 5 ) === "aria-"){ |
|
159 | - $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
|
157 | + foreach ($args as $key => $val) { |
|
158 | + if (substr($key, 0, 5) === "aria-") { |
|
159 | + $output .= ' ' . sanitize_html_class($key) . '="' . esc_attr($val) . '" '; |
|
160 | 160 | } |
161 | 161 | } |
162 | 162 | } |
@@ -173,19 +173,19 @@ discard block |
||
173 | 173 | * |
174 | 174 | * @return string |
175 | 175 | */ |
176 | - public static function icon($class,$space_after = false, $extra_attributes = array()){ |
|
176 | + public static function icon($class, $space_after = false, $extra_attributes = array()) { |
|
177 | 177 | $output = ''; |
178 | 178 | |
179 | - if($class){ |
|
179 | + if ($class) { |
|
180 | 180 | $classes = self::esc_classes($class); |
181 | - if(!empty($classes)){ |
|
182 | - $output = '<i class="'.$classes.'" '; |
|
181 | + if (!empty($classes)) { |
|
182 | + $output = '<i class="' . $classes . '" '; |
|
183 | 183 | // extra attributes |
184 | - if(!empty($extra_attributes)){ |
|
184 | + if (!empty($extra_attributes)) { |
|
185 | 185 | $output .= AUI_Component_Helper::extra_attributes($extra_attributes); |
186 | 186 | } |
187 | 187 | $output .= '></i>'; |
188 | - if($space_after){ |
|
188 | + if ($space_after) { |
|
189 | 189 | $output .= " "; |
190 | 190 | } |
191 | 191 | } |
@@ -199,17 +199,17 @@ discard block |
||
199 | 199 | * |
200 | 200 | * @return string |
201 | 201 | */ |
202 | - public static function extra_attributes($args){ |
|
202 | + public static function extra_attributes($args) { |
|
203 | 203 | $output = ''; |
204 | 204 | |
205 | - if(!empty($args)){ |
|
205 | + if (!empty($args)) { |
|
206 | 206 | |
207 | - if( is_array($args) ){ |
|
208 | - foreach($args as $key => $val){ |
|
209 | - $output .= ' '.sanitize_html_class($key).'="'.esc_attr($val).'" '; |
|
207 | + if (is_array($args)) { |
|
208 | + foreach ($args as $key => $val) { |
|
209 | + $output .= ' ' . sanitize_html_class($key) . '="' . esc_attr($val) . '" '; |
|
210 | 210 | } |
211 | - }else{ |
|
212 | - $output .= ' '.$args.' '; |
|
211 | + } else { |
|
212 | + $output .= ' ' . $args . ' '; |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | } |
@@ -222,11 +222,11 @@ discard block |
||
222 | 222 | * |
223 | 223 | * @return string |
224 | 224 | */ |
225 | - public static function help_text($text){ |
|
225 | + public static function help_text($text) { |
|
226 | 226 | $output = ''; |
227 | 227 | |
228 | - if($text){ |
|
229 | - $output .= '<small class="form-text text-muted">'.wp_kses_post($text).'</small>'; |
|
228 | + if ($text) { |
|
229 | + $output .= '<small class="form-text text-muted">' . wp_kses_post($text) . '</small>'; |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
@@ -240,18 +240,18 @@ discard block |
||
240 | 240 | * |
241 | 241 | * @return string|void |
242 | 242 | */ |
243 | - public static function element_require( $input ) { |
|
243 | + public static function element_require($input) { |
|
244 | 244 | |
245 | - $input = str_replace( "'", '"', $input );// we only want double quotes |
|
245 | + $input = str_replace("'", '"', $input); // we only want double quotes |
|
246 | 246 | |
247 | - $output = esc_attr( str_replace( array( "[%", "%]", "%:checked]" ), array( |
|
247 | + $output = esc_attr(str_replace(array("[%", "%]", "%:checked]"), array( |
|
248 | 248 | "jQuery(form).find('[data-argument=\"", |
249 | 249 | "\"]').find('input,select,textarea').val()", |
250 | 250 | "\"]').find('input:checked').val()", |
251 | - ), $input ) ); |
|
251 | + ), $input)); |
|
252 | 252 | |
253 | - if($output){ |
|
254 | - $output = ' data-element-require="'.$output.'" '; |
|
253 | + if ($output) { |
|
254 | + $output = ' data-element-require="' . $output . '" '; |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | return $output; |
@@ -268,13 +268,13 @@ discard block |
||
268 | 268 | * @param array $input Input. |
269 | 269 | * @return array Array of allowed HTML tags and their allowed attributes. |
270 | 270 | */ |
271 | - public static function kses_allowed_html( $context = 'post', $input = array() ) { |
|
272 | - $allowed_html = wp_kses_allowed_html( $context ); |
|
271 | + public static function kses_allowed_html($context = 'post', $input = array()) { |
|
272 | + $allowed_html = wp_kses_allowed_html($context); |
|
273 | 273 | |
274 | - if ( is_array( $allowed_html ) ) { |
|
274 | + if (is_array($allowed_html)) { |
|
275 | 275 | // <iframe> |
276 | - if ( ! isset( $allowed_html['iframe'] ) && $context == 'post' ) { |
|
277 | - $allowed_html['iframe'] = array( |
|
276 | + if (!isset($allowed_html['iframe']) && $context == 'post') { |
|
277 | + $allowed_html['iframe'] = array( |
|
278 | 278 | 'class' => true, |
279 | 279 | 'id' => true, |
280 | 280 | 'src' => true, |
@@ -302,7 +302,7 @@ discard block |
||
302 | 302 | * @param @param string|array $context The context for which to retrieve tags. |
303 | 303 | * @param array $input Input field. |
304 | 304 | */ |
305 | - return apply_filters( 'ayecode_ui_kses_allowed_html', $allowed_html, $context, $input ); |
|
305 | + return apply_filters('ayecode_ui_kses_allowed_html', $allowed_html, $context, $input); |
|
306 | 306 | } |
307 | 307 | |
308 | 308 | /** |
@@ -324,20 +324,20 @@ discard block |
||
324 | 324 | * @param array $input Input Field. |
325 | 325 | * @return string Filtered content with only allowed HTML elements. |
326 | 326 | */ |
327 | - public static function _sanitize_html_field( $value, $input = array() ) { |
|
328 | - if ( $value === '' ) { |
|
327 | + public static function _sanitize_html_field($value, $input = array()) { |
|
328 | + if ($value === '') { |
|
329 | 329 | return $value; |
330 | 330 | } |
331 | 331 | |
332 | - $allowed_html = self::kses_allowed_html( 'post', $input ); |
|
332 | + $allowed_html = self::kses_allowed_html('post', $input); |
|
333 | 333 | |
334 | - if ( ! is_array( $allowed_html ) ) { |
|
335 | - $allowed_html = wp_kses_allowed_html( 'post' ); |
|
334 | + if (!is_array($allowed_html)) { |
|
335 | + $allowed_html = wp_kses_allowed_html('post'); |
|
336 | 336 | } |
337 | 337 | |
338 | - $filtered = trim( wp_unslash( $value ) ); |
|
339 | - $filtered = wp_kses( $filtered, $allowed_html ); |
|
340 | - $filtered = balanceTags( $filtered ); // Balances tags |
|
338 | + $filtered = trim(wp_unslash($value)); |
|
339 | + $filtered = wp_kses($filtered, $allowed_html); |
|
340 | + $filtered = balanceTags($filtered); // Balances tags |
|
341 | 341 | |
342 | 342 | return $filtered; |
343 | 343 | } |
@@ -351,21 +351,21 @@ discard block |
||
351 | 351 | * @param array $input Input Field. |
352 | 352 | * @return mixed Stripped value. |
353 | 353 | */ |
354 | - public static function sanitize_html_field( $value, $input = array() ) { |
|
354 | + public static function sanitize_html_field($value, $input = array()) { |
|
355 | 355 | $original = $value; |
356 | 356 | |
357 | - if ( is_array( $value ) ) { |
|
358 | - foreach ( $value as $index => $item ) { |
|
359 | - $value[ $index ] = self::_sanitize_html_field( $value, $input ); |
|
357 | + if (is_array($value)) { |
|
358 | + foreach ($value as $index => $item) { |
|
359 | + $value[$index] = self::_sanitize_html_field($value, $input); |
|
360 | 360 | } |
361 | - } elseif ( is_object( $value ) ) { |
|
362 | - $object_vars = get_object_vars( $value ); |
|
361 | + } elseif (is_object($value)) { |
|
362 | + $object_vars = get_object_vars($value); |
|
363 | 363 | |
364 | - foreach ( $object_vars as $property_name => $property_value ) { |
|
365 | - $value->$property_name = self::_sanitize_html_field( $property_value, $input ); |
|
364 | + foreach ($object_vars as $property_name => $property_value) { |
|
365 | + $value->$property_name = self::_sanitize_html_field($property_value, $input); |
|
366 | 366 | } |
367 | 367 | } else { |
368 | - $value = self::_sanitize_html_field( $value, $input ); |
|
368 | + $value = self::_sanitize_html_field($value, $input); |
|
369 | 369 | } |
370 | 370 | |
371 | 371 | /** |
@@ -377,6 +377,6 @@ discard block |
||
377 | 377 | * @param string|array $value Original content without filter. |
378 | 378 | * @param array $input Input Field. |
379 | 379 | */ |
380 | - return apply_filters( 'ayecode_ui_sanitize_html_field', $value, $original, $input ); |
|
380 | + return apply_filters('ayecode_ui_sanitize_html_field', $value, $original, $input); |
|
381 | 381 | } |
382 | 382 | } |
383 | 383 | \ No newline at end of file |
@@ -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 | * 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 |
@@ -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 |
@@ -10,8 +10,8 @@ discard block |
||
10 | 10 | * |
11 | 11 | * @return mixed|void |
12 | 12 | */ |
13 | -function sd_pagenow_exclude(){ |
|
14 | - return apply_filters( 'sd_pagenow_exclude', array( |
|
13 | +function sd_pagenow_exclude() { |
|
14 | + return apply_filters('sd_pagenow_exclude', array( |
|
15 | 15 | 'upload.php', |
16 | 16 | 'edit-comments.php', |
17 | 17 | 'edit-tags.php', |
@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | 'edit.php', |
23 | 23 | 'themes.php', |
24 | 24 | 'users.php', |
25 | - ) ); |
|
25 | + )); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | |
@@ -33,6 +33,6 @@ discard block |
||
33 | 33 | * |
34 | 34 | * @return mixed|void |
35 | 35 | */ |
36 | -function sd_widget_exclude(){ |
|
37 | - return apply_filters( 'sd_widget_exclude', array() ); |
|
36 | +function sd_widget_exclude() { |
|
37 | + return apply_filters('sd_widget_exclude', array()); |
|
38 | 38 | } |
39 | 39 | \ No newline at end of file |
@@ -6,7 +6,7 @@ discard block |
||
6 | 6 | * @package GetPaid |
7 | 7 | */ |
8 | 8 | |
9 | -defined( 'ABSPATH' ) || exit; |
|
9 | +defined('ABSPATH') || exit; |
|
10 | 10 | |
11 | 11 | /** |
12 | 12 | * Generates a users select dropdown. |
@@ -16,13 +16,13 @@ discard block |
||
16 | 16 | * @param array $args |
17 | 17 | * @see wp_dropdown_users |
18 | 18 | */ |
19 | -function wpinv_dropdown_users( $args = '' ) { |
|
19 | +function wpinv_dropdown_users($args = '') { |
|
20 | 20 | |
21 | - if ( is_array( $args ) && ! empty( $args['show'] ) && 'display_name_with_email' == $args['show'] ) { |
|
21 | + if (is_array($args) && !empty($args['show']) && 'display_name_with_email' == $args['show']) { |
|
22 | 22 | $args['show'] = 'display_name_with_login'; |
23 | 23 | } |
24 | 24 | |
25 | - return wp_dropdown_users( $args ); |
|
25 | + return wp_dropdown_users($args); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
@@ -32,9 +32,9 @@ discard block |
||
32 | 32 | * @return string capability to check against |
33 | 33 | * @param string $capalibilty Optional. The alternative capability to check against. |
34 | 34 | */ |
35 | -function wpinv_get_capability( $capalibilty = 'manage_invoicing' ) { |
|
35 | +function wpinv_get_capability($capalibilty = 'manage_invoicing') { |
|
36 | 36 | |
37 | - if ( current_user_can( 'manage_options' ) ) { |
|
37 | + if (current_user_can('manage_options')) { |
|
38 | 38 | return 'manage_options'; |
39 | 39 | }; |
40 | 40 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | * @return bool |
49 | 49 | */ |
50 | 50 | function wpinv_current_user_can_manage_invoicing() { |
51 | - return current_user_can( wpinv_get_capability() ); |
|
51 | + return current_user_can(wpinv_get_capability()); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -57,19 +57,19 @@ discard block |
||
57 | 57 | * @since 1.0.19 |
58 | 58 | * @return int|WP_Error |
59 | 59 | */ |
60 | -function wpinv_create_user( $email, $prefix = '' ) { |
|
60 | +function wpinv_create_user($email, $prefix = '') { |
|
61 | 61 | |
62 | 62 | // Prepare user values. |
63 | - $prefix = preg_replace( '/\s+/', '', $prefix ); |
|
64 | - $prefix = empty( $prefix ) ? $email : $prefix; |
|
65 | - $args = array( |
|
66 | - 'user_login' => wpinv_generate_user_name( $prefix ), |
|
63 | + $prefix = preg_replace('/\s+/', '', $prefix); |
|
64 | + $prefix = empty($prefix) ? $email : $prefix; |
|
65 | + $args = array( |
|
66 | + 'user_login' => wpinv_generate_user_name($prefix), |
|
67 | 67 | 'user_pass' => wp_generate_password(), |
68 | 68 | 'user_email' => $email, |
69 | 69 | 'role' => 'subscriber', |
70 | 70 | ); |
71 | 71 | |
72 | - return wp_insert_user( $args ); |
|
72 | + return wp_insert_user($args); |
|
73 | 73 | |
74 | 74 | } |
75 | 75 | |
@@ -79,26 +79,26 @@ discard block |
||
79 | 79 | * @since 1.0.19 |
80 | 80 | * @return bool|WP_User |
81 | 81 | */ |
82 | -function wpinv_generate_user_name( $prefix = '' ) { |
|
82 | +function wpinv_generate_user_name($prefix = '') { |
|
83 | 83 | |
84 | 84 | // If prefix is an email, retrieve the part before the email. |
85 | - $prefix = strtok( $prefix, '@' ); |
|
86 | - $prefix = trim( $prefix, '.' ); |
|
85 | + $prefix = strtok($prefix, '@'); |
|
86 | + $prefix = trim($prefix, '.'); |
|
87 | 87 | |
88 | 88 | // Sanitize the username. |
89 | - $prefix = sanitize_user( $prefix, true ); |
|
89 | + $prefix = sanitize_user($prefix, true); |
|
90 | 90 | |
91 | - $illegal_logins = (array) apply_filters( 'illegal_user_logins', array() ); |
|
92 | - if ( empty( $prefix ) || in_array( strtolower( $prefix ), array_map( 'strtolower', $illegal_logins ), true ) ) { |
|
93 | - $prefix = 'gtp_' . zeroise( wp_rand( 0, 9999 ), 4 ); |
|
91 | + $illegal_logins = (array) apply_filters('illegal_user_logins', array()); |
|
92 | + if (empty($prefix) || in_array(strtolower($prefix), array_map('strtolower', $illegal_logins), true)) { |
|
93 | + $prefix = 'gtp_' . zeroise(wp_rand(0, 9999), 4); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | $username = $prefix; |
97 | 97 | $postfix = 2; |
98 | 98 | |
99 | - while ( username_exists( $username ) ) { |
|
99 | + while (username_exists($username)) { |
|
100 | 100 | $username = $prefix + $postfix; |
101 | - $postfix ++; |
|
101 | + $postfix++; |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | return $username; |
@@ -115,31 +115,31 @@ discard block |
||
115 | 115 | $tabs = array( |
116 | 116 | |
117 | 117 | 'gp-invoices' => array( |
118 | - 'label' => __( 'Invoices', 'invoicing' ), // Name of the tab. |
|
118 | + 'label' => __('Invoices', 'invoicing'), // Name of the tab. |
|
119 | 119 | 'content' => '[wpinv_history]', // Content of the tab. Or specify "callback" to provide a callback instead. |
120 | 120 | 'icon' => 'fas fa-file-invoice', // Shown on some profile plugins. |
121 | 121 | ), |
122 | 122 | |
123 | 123 | 'gp-subscriptions' => array( |
124 | - 'label' => __( 'Subscriptions', 'invoicing' ), |
|
124 | + 'label' => __('Subscriptions', 'invoicing'), |
|
125 | 125 | 'content' => '[wpinv_subscriptions]', |
126 | 126 | 'icon' => 'fas fa-redo', |
127 | 127 | ), |
128 | 128 | |
129 | 129 | 'gp-edit-address' => array( |
130 | - 'label' => __( 'Billing Address', 'invoicing' ), |
|
130 | + 'label' => __('Billing Address', 'invoicing'), |
|
131 | 131 | 'callback' => 'getpaid_display_address_edit_tab', |
132 | 132 | 'icon' => 'fas fa-credit-card', |
133 | 133 | ), |
134 | 134 | |
135 | 135 | ); |
136 | 136 | |
137 | - $tabs = apply_filters( 'getpaid_user_content_tabs', $tabs ); |
|
137 | + $tabs = apply_filters('getpaid_user_content_tabs', $tabs); |
|
138 | 138 | |
139 | 139 | // Make sure address editing is last on the list. |
140 | - if ( isset( $tabs['gp-edit-address'] ) ) { |
|
140 | + if (isset($tabs['gp-edit-address'])) { |
|
141 | 141 | $address = $tabs['gp-edit-address']; |
142 | - unset( $tabs['gp-edit-address'] ); |
|
142 | + unset($tabs['gp-edit-address']); |
|
143 | 143 | $tabs['gp-edit-address'] = $address; |
144 | 144 | } |
145 | 145 | |
@@ -153,19 +153,19 @@ discard block |
||
153 | 153 | * @param array $tab |
154 | 154 | * @return array |
155 | 155 | */ |
156 | -function getpaid_prepare_user_content_tab( $tab ) { |
|
156 | +function getpaid_prepare_user_content_tab($tab) { |
|
157 | 157 | |
158 | - if ( ! empty( $tab['callback'] ) ) { |
|
159 | - return call_user_func( $tab['callback'] ); |
|
158 | + if (!empty($tab['callback'])) { |
|
159 | + return call_user_func($tab['callback']); |
|
160 | 160 | } |
161 | 161 | |
162 | - if ( ! empty( $tab['content'] ) ) { |
|
163 | - return convert_smilies( capital_P_dangit( wp_filter_content_tags( do_shortcode( shortcode_unautop( wpautop( wptexturize( do_blocks( $tab['content'] ) ) ) ) ) ) ) ); |
|
162 | + if (!empty($tab['content'])) { |
|
163 | + return convert_smilies(capital_P_dangit(wp_filter_content_tags(do_shortcode(shortcode_unautop(wpautop(wptexturize(do_blocks($tab['content'])))))))); |
|
164 | 164 | } |
165 | 165 | |
166 | 166 | $notice = aui()->alert( |
167 | 167 | array( |
168 | - 'content' => __( 'This tab has no content or content callback.', 'invoicing' ), |
|
168 | + 'content' => __('This tab has no content or content callback.', 'invoicing'), |
|
169 | 169 | 'type' => 'error', |
170 | 170 | ) |
171 | 171 | ); |
@@ -181,14 +181,14 @@ discard block |
||
181 | 181 | * @param string $default |
182 | 182 | * @return array |
183 | 183 | */ |
184 | -function getpaid_get_tab_url( $tab, $default ) { |
|
184 | +function getpaid_get_tab_url($tab, $default) { |
|
185 | 185 | global $getpaid_tab_url; |
186 | 186 | |
187 | - if ( empty( $getpaid_tab_url ) ) { |
|
187 | + if (empty($getpaid_tab_url)) { |
|
188 | 188 | return $default; |
189 | 189 | } |
190 | 190 | |
191 | - return sprintf( $getpaid_tab_url, $tab ); |
|
191 | + return sprintf($getpaid_tab_url, $tab); |
|
192 | 192 | |
193 | 193 | } |
194 | 194 | |
@@ -200,11 +200,11 @@ discard block |
||
200 | 200 | */ |
201 | 201 | function getpaid_display_address_edit_tab() { |
202 | 202 | |
203 | - if ( 0 === get_current_user_id() ) { |
|
203 | + if (0 === get_current_user_id()) { |
|
204 | 204 | return '<div class="bsui">' . aui()->alert( |
205 | 205 | array( |
206 | 206 | 'type' => 'error', |
207 | - 'content' => __( 'Your must be logged in to view this section', 'invoicing' ), |
|
207 | + 'content' => __('Your must be logged in to view this section', 'invoicing'), |
|
208 | 208 | 'dismissible'=> false, |
209 | 209 | ) |
210 | 210 | ) . '</div>'; |
@@ -218,19 +218,19 @@ discard block |
||
218 | 218 | |
219 | 219 | <?php |
220 | 220 | |
221 | - foreach ( getpaid_user_address_fields() as $key => $label ) { |
|
221 | + foreach (getpaid_user_address_fields() as $key => $label) { |
|
222 | 222 | |
223 | 223 | // Display the country. |
224 | - if ( 'country' == $key ) { |
|
224 | + if ('country' == $key) { |
|
225 | 225 | |
226 | 226 | echo aui()->select( |
227 | 227 | array( |
228 | 228 | 'options' => wpinv_get_country_list(), |
229 | - 'name' => 'getpaid_address[' . esc_attr( $key ) . ']', |
|
230 | - 'id' => 'wpinv-' . sanitize_html_class( $key ), |
|
231 | - 'value' => sanitize_text_field( getpaid_get_user_address_field( get_current_user_id(), $key ) ), |
|
229 | + 'name' => 'getpaid_address[' . esc_attr($key) . ']', |
|
230 | + 'id' => 'wpinv-' . sanitize_html_class($key), |
|
231 | + 'value' => sanitize_text_field(getpaid_get_user_address_field(get_current_user_id(), $key)), |
|
232 | 232 | 'placeholder' => $label, |
233 | - 'label' => wp_kses_post( $label ), |
|
233 | + 'label' => wp_kses_post($label), |
|
234 | 234 | 'label_type' => 'vertical', |
235 | 235 | 'class' => 'getpaid-address-field', |
236 | 236 | ) |
@@ -239,30 +239,30 @@ discard block |
||
239 | 239 | } |
240 | 240 | |
241 | 241 | // Display the state. |
242 | - else if ( 'state' == $key ) { |
|
242 | + else if ('state' == $key) { |
|
243 | 243 | |
244 | - echo getpaid_get_states_select_markup ( |
|
245 | - getpaid_get_user_address_field( get_current_user_id(), 'country' ), |
|
246 | - getpaid_get_user_address_field( get_current_user_id(), 'state' ), |
|
244 | + echo getpaid_get_states_select_markup( |
|
245 | + getpaid_get_user_address_field(get_current_user_id(), 'country'), |
|
246 | + getpaid_get_user_address_field(get_current_user_id(), 'state'), |
|
247 | 247 | $label, |
248 | 248 | $label, |
249 | 249 | '', |
250 | 250 | false, |
251 | 251 | '', |
252 | - 'getpaid_address[' . esc_attr( $key ) . ']' |
|
252 | + 'getpaid_address[' . esc_attr($key) . ']' |
|
253 | 253 | ); |
254 | 254 | |
255 | 255 | } else { |
256 | 256 | |
257 | 257 | echo aui()->input( |
258 | 258 | array( |
259 | - 'name' => 'getpaid_address[' . esc_attr( $key ) . ']', |
|
260 | - 'id' => 'wpinv-' . sanitize_html_class( $key ), |
|
259 | + 'name' => 'getpaid_address[' . esc_attr($key) . ']', |
|
260 | + 'id' => 'wpinv-' . sanitize_html_class($key), |
|
261 | 261 | 'placeholder' => $label, |
262 | - 'label' => wp_kses_post( $label ), |
|
262 | + 'label' => wp_kses_post($label), |
|
263 | 263 | 'label_type' => 'vertical', |
264 | 264 | 'type' => 'text', |
265 | - 'value' => sanitize_text_field( getpaid_get_user_address_field( get_current_user_id(), $key ) ), |
|
265 | + 'value' => sanitize_text_field(getpaid_get_user_address_field(get_current_user_id(), $key)), |
|
266 | 266 | 'class' => 'getpaid-address-field', |
267 | 267 | ) |
268 | 268 | ); |
@@ -276,30 +276,30 @@ discard block |
||
276 | 276 | 'name' => 'getpaid_address[email_cc]', |
277 | 277 | 'id' => 'wpinv-email_cc', |
278 | 278 | 'placeholder' => '[email protected], [email protected]', |
279 | - 'label' => __( 'Other email addresses', 'invoicing' ), |
|
279 | + 'label' => __('Other email addresses', 'invoicing'), |
|
280 | 280 | 'label_type' => 'vertical', |
281 | 281 | 'type' => 'text', |
282 | - 'value' => sanitize_text_field( get_user_meta( get_current_user_id(), '_wpinv_email_cc', true ) ), |
|
282 | + 'value' => sanitize_text_field(get_user_meta(get_current_user_id(), '_wpinv_email_cc', true)), |
|
283 | 283 | 'class' => 'getpaid-address-field', |
284 | - 'help_text' => __( 'Optionally provide other email addresses where we should send payment notifications', 'invoicing' ), |
|
284 | + 'help_text' => __('Optionally provide other email addresses where we should send payment notifications', 'invoicing'), |
|
285 | 285 | ) |
286 | 286 | ); |
287 | 287 | |
288 | - do_action( 'getpaid_display_address_edit_tab' ); |
|
288 | + do_action('getpaid_display_address_edit_tab'); |
|
289 | 289 | |
290 | 290 | echo aui()->input( |
291 | 291 | array( |
292 | 292 | 'name' => 'getpaid_profile_edit_submit_button', |
293 | 293 | 'id' => 'getpaid_profile_edit_submit_button', |
294 | - 'value' => __( 'Save Address', 'invoicing' ), |
|
295 | - 'help_text' => __( 'New invoices will use this address as the billing address.', 'invoicing' ), |
|
294 | + 'value' => __('Save Address', 'invoicing'), |
|
295 | + 'help_text' => __('New invoices will use this address as the billing address.', 'invoicing'), |
|
296 | 296 | 'type' => 'submit', |
297 | 297 | 'class' => 'btn btn-primary btn-block submit-button', |
298 | 298 | ) |
299 | 299 | ); |
300 | 300 | |
301 | - wp_nonce_field( 'getpaid-nonce', 'getpaid-nonce' ); |
|
302 | - getpaid_hidden_field( 'getpaid-action', 'edit_billing_details' ); |
|
301 | + wp_nonce_field('getpaid-nonce', 'getpaid-nonce'); |
|
302 | + getpaid_hidden_field('getpaid-action', 'edit_billing_details'); |
|
303 | 303 | ?> |
304 | 304 | |
305 | 305 | </form> |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | |
310 | 310 | return ob_get_clean(); |
311 | 311 | } |
312 | -add_shortcode( 'getpaid_edit_address', 'getpaid_display_address_edit_tab' ); |
|
312 | +add_shortcode('getpaid_edit_address', 'getpaid_display_address_edit_tab'); |
|
313 | 313 | |
314 | 314 | /** |
315 | 315 | * Saves the billing address edit tab. |
@@ -317,31 +317,31 @@ discard block |
||
317 | 317 | * @since 2.1.4 |
318 | 318 | * @param array $data |
319 | 319 | */ |
320 | -function getpaid_save_address_edit_tab( $data ) { |
|
320 | +function getpaid_save_address_edit_tab($data) { |
|
321 | 321 | |
322 | - if ( empty( $data['getpaid_address'] ) || ! is_array( $data['getpaid_address'] ) ) { |
|
322 | + if (empty($data['getpaid_address']) || !is_array($data['getpaid_address'])) { |
|
323 | 323 | return; |
324 | 324 | } |
325 | 325 | |
326 | 326 | $data = $data['getpaid_address']; |
327 | 327 | $user_id = get_current_user_id(); |
328 | 328 | |
329 | - foreach ( array_keys( getpaid_user_address_fields() ) as $field ) { |
|
329 | + foreach (array_keys(getpaid_user_address_fields()) as $field) { |
|
330 | 330 | |
331 | - if ( isset( $data[ $field ] ) ) { |
|
332 | - $value = sanitize_text_field( $data[ $field ] ); |
|
333 | - update_user_meta( $user_id, '_wpinv_' . $field, $value ); |
|
331 | + if (isset($data[$field])) { |
|
332 | + $value = sanitize_text_field($data[$field]); |
|
333 | + update_user_meta($user_id, '_wpinv_' . $field, $value); |
|
334 | 334 | } |
335 | 335 | |
336 | 336 | } |
337 | 337 | |
338 | - if ( isset( $data['email_cc'] ) ) { |
|
339 | - update_user_meta( $user_id, '_wpinv_email_cc', sanitize_text_field( $data['email_cc'] ) ); |
|
338 | + if (isset($data['email_cc'])) { |
|
339 | + update_user_meta($user_id, '_wpinv_email_cc', sanitize_text_field($data['email_cc'])); |
|
340 | 340 | } |
341 | 341 | |
342 | - wpinv_set_error( 'address_updated', __( 'Your billing address has been updated', 'invoicing' ), 'success'); |
|
342 | + wpinv_set_error('address_updated', __('Your billing address has been updated', 'invoicing'), 'success'); |
|
343 | 343 | } |
344 | -add_action( 'getpaid_authenticated_action_edit_billing_details', 'getpaid_save_address_edit_tab' ); |
|
344 | +add_action('getpaid_authenticated_action_edit_billing_details', 'getpaid_save_address_edit_tab'); |
|
345 | 345 | |
346 | 346 | |
347 | 347 | /* |
@@ -359,27 +359,27 @@ discard block |
||
359 | 359 | * @param array $tabs |
360 | 360 | * @return array |
361 | 361 | */ |
362 | -function getpaid_filter_userswp_account_tabs( $tabs ) { |
|
362 | +function getpaid_filter_userswp_account_tabs($tabs) { |
|
363 | 363 | |
364 | 364 | // Abort if the integration is inactive. |
365 | - if ( ! getpaid_is_userswp_integration_active() ) { |
|
365 | + if (!getpaid_is_userswp_integration_active()) { |
|
366 | 366 | return $tabs; |
367 | 367 | } |
368 | 368 | |
369 | - $new_tabs = array(); |
|
369 | + $new_tabs = array(); |
|
370 | 370 | |
371 | - foreach ( getpaid_get_user_content_tabs() as $slug => $tab ) { |
|
371 | + foreach (getpaid_get_user_content_tabs() as $slug => $tab) { |
|
372 | 372 | |
373 | - $new_tabs[ $slug ] = array( |
|
374 | - 'title' => $tab[ 'label'], |
|
375 | - 'icon' => $tab[ 'icon'], |
|
373 | + $new_tabs[$slug] = array( |
|
374 | + 'title' => $tab['label'], |
|
375 | + 'icon' => $tab['icon'], |
|
376 | 376 | ); |
377 | 377 | |
378 | 378 | } |
379 | 379 | |
380 | - return array_merge( $tabs, $new_tabs ); |
|
380 | + return array_merge($tabs, $new_tabs); |
|
381 | 381 | } |
382 | -add_filter( 'uwp_account_available_tabs', 'getpaid_filter_userswp_account_tabs' ); |
|
382 | +add_filter('uwp_account_available_tabs', 'getpaid_filter_userswp_account_tabs'); |
|
383 | 383 | |
384 | 384 | /** |
385 | 385 | * Display our UsersWP account tabs. |
@@ -388,18 +388,18 @@ discard block |
||
388 | 388 | * @param array $tabs |
389 | 389 | * @return array |
390 | 390 | */ |
391 | -function getpaid_display_userswp_account_tabs( $tab ) { |
|
391 | +function getpaid_display_userswp_account_tabs($tab) { |
|
392 | 392 | global $getpaid_tab_url; |
393 | 393 | |
394 | 394 | $our_tabs = getpaid_get_user_content_tabs(); |
395 | 395 | |
396 | - if ( getpaid_is_userswp_integration_active() && isset( $our_tabs[ $tab ] ) ) { |
|
397 | - $getpaid_tab_url = add_query_arg( 'type', '%s', uwp_get_account_page_url() ); |
|
398 | - echo getpaid_prepare_user_content_tab( $our_tabs[ $tab ] ); |
|
396 | + if (getpaid_is_userswp_integration_active() && isset($our_tabs[$tab])) { |
|
397 | + $getpaid_tab_url = add_query_arg('type', '%s', uwp_get_account_page_url()); |
|
398 | + echo getpaid_prepare_user_content_tab($our_tabs[$tab]); |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | } |
402 | -add_action( 'uwp_account_form_display', 'getpaid_display_userswp_account_tabs' ); |
|
402 | +add_action('uwp_account_form_display', 'getpaid_display_userswp_account_tabs'); |
|
403 | 403 | |
404 | 404 | |
405 | 405 | /** |
@@ -410,17 +410,17 @@ discard block |
||
410 | 410 | * @param string $tab Current tab. |
411 | 411 | * @return string Title. |
412 | 412 | */ |
413 | -function getpaid_filter_userswp_account_title( $title, $tab ) { |
|
413 | +function getpaid_filter_userswp_account_title($title, $tab) { |
|
414 | 414 | |
415 | - $our_tabs = getpaid_get_user_content_tabs(); |
|
415 | + $our_tabs = getpaid_get_user_content_tabs(); |
|
416 | 416 | |
417 | - if ( getpaid_is_userswp_integration_active() && isset( $our_tabs[ $tab ] ) ) { |
|
418 | - return $our_tabs[ $tab ]['label']; |
|
417 | + if (getpaid_is_userswp_integration_active() && isset($our_tabs[$tab])) { |
|
418 | + return $our_tabs[$tab]['label']; |
|
419 | 419 | } |
420 | 420 | |
421 | 421 | return $title; |
422 | 422 | } |
423 | -add_filter( 'uwp_account_page_title', 'getpaid_filter_userswp_account_title', 10, 2 ); |
|
423 | +add_filter('uwp_account_page_title', 'getpaid_filter_userswp_account_title', 10, 2); |
|
424 | 424 | |
425 | 425 | /** |
426 | 426 | * Registers the UsersWP integration settings. |
@@ -429,26 +429,26 @@ discard block |
||
429 | 429 | * @param array $settings An array of integration settings. |
430 | 430 | * @return array |
431 | 431 | */ |
432 | -function getpaid_register_userswp_settings( $settings ) { |
|
432 | +function getpaid_register_userswp_settings($settings) { |
|
433 | 433 | |
434 | - if ( defined( 'USERSWP_PLUGIN_FILE' ) ) { |
|
434 | + if (defined('USERSWP_PLUGIN_FILE')) { |
|
435 | 435 | |
436 | 436 | $settings[] = array( |
437 | 437 | |
438 | 438 | 'id' => 'userswp', |
439 | - 'label' => __( 'UsersWP', 'invoicing' ), |
|
439 | + 'label' => __('UsersWP', 'invoicing'), |
|
440 | 440 | 'settings' => array( |
441 | 441 | |
442 | 442 | 'userswp_settings' => array( |
443 | 443 | 'id' => 'userswp_settings', |
444 | - 'name' => '<h3>' . __( 'UsersWP', 'invoicing' ) . '</h3>', |
|
444 | + 'name' => '<h3>' . __('UsersWP', 'invoicing') . '</h3>', |
|
445 | 445 | 'type' => 'header', |
446 | 446 | ), |
447 | 447 | |
448 | 448 | 'enable_userswp' => array( |
449 | 449 | 'id' => 'enable_userswp', |
450 | - 'name' => __( 'Enable Integration', 'invoicing' ), |
|
451 | - 'desc' => __( 'Display GetPaid items on UsersWP account page.', 'invoicing' ), |
|
450 | + 'name' => __('Enable Integration', 'invoicing'), |
|
451 | + 'desc' => __('Display GetPaid items on UsersWP account page.', 'invoicing'), |
|
452 | 452 | 'type' => 'checkbox', |
453 | 453 | 'std' => 1, |
454 | 454 | ) |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | |
462 | 462 | return $settings; |
463 | 463 | } |
464 | -add_filter( 'getpaid_integration_settings', 'getpaid_register_userswp_settings' ); |
|
464 | +add_filter('getpaid_integration_settings', 'getpaid_register_userswp_settings'); |
|
465 | 465 | |
466 | 466 | /** |
467 | 467 | * Ovewrites the invoices history page to UsersWP. |
@@ -469,18 +469,18 @@ discard block |
||
469 | 469 | * @since 2.3.1 |
470 | 470 | * @return bool |
471 | 471 | */ |
472 | -function getpaid_userswp_overwrite_invoice_history_page( $url, $post_type ) { |
|
472 | +function getpaid_userswp_overwrite_invoice_history_page($url, $post_type) { |
|
473 | 473 | |
474 | 474 | $our_tabs = getpaid_get_user_content_tabs(); |
475 | 475 | $tab = "gp-{$post_type}s"; |
476 | - if ( getpaid_is_userswp_integration_active() && isset( $our_tabs[ $tab ] ) ) { |
|
477 | - return add_query_arg( 'type', $tab, uwp_get_account_page_url() ); |
|
476 | + if (getpaid_is_userswp_integration_active() && isset($our_tabs[$tab])) { |
|
477 | + return add_query_arg('type', $tab, uwp_get_account_page_url()); |
|
478 | 478 | } |
479 | 479 | |
480 | 480 | return $url; |
481 | 481 | |
482 | 482 | } |
483 | -add_filter( 'wpinv_get_history_page_uri', 'getpaid_userswp_overwrite_invoice_history_page', 10, 2 ); |
|
483 | +add_filter('wpinv_get_history_page_uri', 'getpaid_userswp_overwrite_invoice_history_page', 10, 2); |
|
484 | 484 | |
485 | 485 | /** |
486 | 486 | * Checks if the integration is enabled. |
@@ -489,8 +489,8 @@ discard block |
||
489 | 489 | * @return bool |
490 | 490 | */ |
491 | 491 | function getpaid_is_userswp_integration_active() { |
492 | - $enabled = wpinv_get_option( 'enable_userswp', 1 ); |
|
493 | - return defined( 'USERSWP_PLUGIN_FILE' ) && ! empty( $enabled ); |
|
492 | + $enabled = wpinv_get_option('enable_userswp', 1); |
|
493 | + return defined('USERSWP_PLUGIN_FILE') && !empty($enabled); |
|
494 | 494 | } |
495 | 495 | |
496 | 496 | /* |
@@ -508,26 +508,26 @@ discard block |
||
508 | 508 | * @param array $settings An array of integration settings. |
509 | 509 | * @return array |
510 | 510 | */ |
511 | -function getpaid_register_buddypress_settings( $settings ) { |
|
511 | +function getpaid_register_buddypress_settings($settings) { |
|
512 | 512 | |
513 | - if ( class_exists( 'BuddyPress' ) ) { |
|
513 | + if (class_exists('BuddyPress')) { |
|
514 | 514 | |
515 | 515 | $settings[] = array( |
516 | 516 | |
517 | 517 | 'id' => 'buddypress', |
518 | - 'label' => __( 'BuddyPress', 'invoicing' ), |
|
518 | + 'label' => __('BuddyPress', 'invoicing'), |
|
519 | 519 | 'settings' => array( |
520 | 520 | |
521 | 521 | 'buddypress_settings' => array( |
522 | 522 | 'id' => 'buddypress_settings', |
523 | - 'name' => '<h3>' . __( 'BuddyPress', 'invoicing' ) . '</h3>', |
|
523 | + 'name' => '<h3>' . __('BuddyPress', 'invoicing') . '</h3>', |
|
524 | 524 | 'type' => 'header', |
525 | 525 | ), |
526 | 526 | |
527 | 527 | 'enable_buddypress' => array( |
528 | 528 | 'id' => 'enable_buddypress', |
529 | - 'name' => __( 'Enable Integration', 'invoicing' ), |
|
530 | - 'desc' => __( 'Display GetPaid items on BuddyPress account pages.', 'invoicing' ), |
|
529 | + 'name' => __('Enable Integration', 'invoicing'), |
|
530 | + 'desc' => __('Display GetPaid items on BuddyPress account pages.', 'invoicing'), |
|
531 | 531 | 'type' => 'checkbox', |
532 | 532 | 'std' => 1, |
533 | 533 | ) |
@@ -540,7 +540,7 @@ discard block |
||
540 | 540 | |
541 | 541 | return $settings; |
542 | 542 | } |
543 | -add_filter( 'getpaid_integration_settings', 'getpaid_register_buddypress_settings' ); |
|
543 | +add_filter('getpaid_integration_settings', 'getpaid_register_buddypress_settings'); |
|
544 | 544 | |
545 | 545 | /** |
546 | 546 | * Checks if the integration is enabled. |
@@ -549,8 +549,8 @@ discard block |
||
549 | 549 | * @return bool |
550 | 550 | */ |
551 | 551 | function getpaid_is_buddypress_integration_active() { |
552 | - $enabled = wpinv_get_option( 'enable_buddypress', 1 ); |
|
553 | - return class_exists( 'BuddyPress' ) && ! empty( $enabled ); |
|
552 | + $enabled = wpinv_get_option('enable_buddypress', 1); |
|
553 | + return class_exists('BuddyPress') && !empty($enabled); |
|
554 | 554 | } |
555 | 555 | |
556 | 556 | /** |
@@ -561,10 +561,10 @@ discard block |
||
561 | 561 | */ |
562 | 562 | function getpaid_setup_buddypress_integration() { |
563 | 563 | |
564 | - if ( getpaid_is_buddypress_integration_active() ) { |
|
565 | - require_once( WPINV_PLUGIN_DIR . 'includes/class-bp-getpaid-component.php' ); |
|
564 | + if (getpaid_is_buddypress_integration_active()) { |
|
565 | + require_once(WPINV_PLUGIN_DIR . 'includes/class-bp-getpaid-component.php'); |
|
566 | 566 | buddypress()->getpaid = new BP_GetPaid_Component(); |
567 | 567 | } |
568 | 568 | |
569 | 569 | } |
570 | -add_action( 'bp_setup_components', 'getpaid_setup_buddypress_integration' ); |
|
570 | +add_action('bp_setup_components', 'getpaid_setup_buddypress_integration'); |
@@ -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 itemss class |
@@ -23,37 +23,37 @@ discard block |
||
23 | 23 | * |
24 | 24 | * @param GetPaid_Payment_Form_Submission $submission |
25 | 25 | */ |
26 | - public function __construct( $submission ) { |
|
26 | + public function __construct($submission) { |
|
27 | 27 | |
28 | 28 | $data = $submission->get_data(); |
29 | 29 | $payment_form = $submission->get_payment_form(); |
30 | 30 | |
31 | 31 | // Prepare the selected items. |
32 | 32 | $selected_items = array(); |
33 | - if ( ! empty( $data['getpaid-items'] ) ) { |
|
34 | - $selected_items = wpinv_clean( $data['getpaid-items'] ); |
|
33 | + if (!empty($data['getpaid-items'])) { |
|
34 | + $selected_items = wpinv_clean($data['getpaid-items']); |
|
35 | 35 | } |
36 | 36 | |
37 | 37 | // (Maybe) set form items. |
38 | - if ( isset( $data['getpaid-form-items'] ) ) { |
|
38 | + if (isset($data['getpaid-form-items'])) { |
|
39 | 39 | |
40 | 40 | // Confirm items key. |
41 | - $form_items = wpinv_clean( $data['getpaid-form-items'] ); |
|
42 | - if ( ! isset( $data['getpaid-form-items-key'] ) || $data['getpaid-form-items-key'] !== md5( NONCE_KEY . AUTH_KEY . $form_items ) ) { |
|
43 | - throw new Exception( __( 'We could not validate the form items. Please reload the page and try again.', 'invoicing' ) ); |
|
41 | + $form_items = wpinv_clean($data['getpaid-form-items']); |
|
42 | + if (!isset($data['getpaid-form-items-key']) || $data['getpaid-form-items-key'] !== md5(NONCE_KEY . AUTH_KEY . $form_items)) { |
|
43 | + throw new Exception(__('We could not validate the form items. Please reload the page and try again.', 'invoicing')); |
|
44 | 44 | } |
45 | 45 | |
46 | - $items = array(); |
|
46 | + $items = array(); |
|
47 | 47 | $item_ids = array(); |
48 | 48 | |
49 | - foreach ( getpaid_convert_items_to_array( $form_items ) as $item_id => $qty ) { |
|
50 | - if ( ! in_array( $item_id, $item_ids ) ) { |
|
51 | - $item = new GetPaid_Form_Item( $item_id ); |
|
52 | - $item->set_quantity( $qty ); |
|
49 | + foreach (getpaid_convert_items_to_array($form_items) as $item_id => $qty) { |
|
50 | + if (!in_array($item_id, $item_ids)) { |
|
51 | + $item = new GetPaid_Form_Item($item_id); |
|
52 | + $item->set_quantity($qty); |
|
53 | 53 | |
54 | - if ( 0 == $qty ) { |
|
55 | - $item->set_allow_quantities( true ); |
|
56 | - $item->set_is_required( false ); |
|
54 | + if (0 == $qty) { |
|
55 | + $item->set_allow_quantities(true); |
|
56 | + $item->set_is_required(false); |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | $item_ids[] = $item->get_id(); |
@@ -61,10 +61,10 @@ discard block |
||
61 | 61 | } |
62 | 62 | } |
63 | 63 | |
64 | - if ( ! $payment_form->is_default() ) { |
|
64 | + if (!$payment_form->is_default()) { |
|
65 | 65 | |
66 | - foreach ( $payment_form->get_items() as $item ) { |
|
67 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
66 | + foreach ($payment_form->get_items() as $item) { |
|
67 | + if (!in_array($item->get_id(), $item_ids)) { |
|
68 | 68 | $item_ids[] = $item->get_id(); |
69 | 69 | $items[] = $item; |
70 | 70 | } |
@@ -72,13 +72,13 @@ discard block |
||
72 | 72 | |
73 | 73 | } |
74 | 74 | |
75 | - $payment_form->set_items( $items ); |
|
75 | + $payment_form->set_items($items); |
|
76 | 76 | |
77 | 77 | } |
78 | 78 | |
79 | 79 | // Process each individual item. |
80 | - foreach ( $payment_form->get_items() as $item ) { |
|
81 | - $this->process_item( $item, $selected_items, $submission ); |
|
80 | + foreach ($payment_form->get_items() as $item) { |
|
81 | + $this->process_item($item, $selected_items, $submission); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | } |
@@ -90,41 +90,41 @@ discard block |
||
90 | 90 | * @param array $selected_items |
91 | 91 | * @param GetPaid_Payment_Form_Submission $submission |
92 | 92 | */ |
93 | - public function process_item( $item, $selected_items, $submission ) { |
|
93 | + public function process_item($item, $selected_items, $submission) { |
|
94 | 94 | |
95 | 95 | // Abort if this is an optional item and it has not been selected. |
96 | - if ( ! $item->is_required() && ! isset( $selected_items[ $item->get_id() ] ) ) { |
|
96 | + if (!$item->is_required() && !isset($selected_items[$item->get_id()])) { |
|
97 | 97 | return; |
98 | 98 | } |
99 | 99 | |
100 | 100 | // (maybe) let customers change the quantities and prices. |
101 | - if ( isset( $selected_items[ $item->get_id() ] ) ) { |
|
101 | + if (isset($selected_items[$item->get_id()])) { |
|
102 | 102 | |
103 | 103 | // Maybe change the quantities. |
104 | - if ( $item->allows_quantities() ) { |
|
105 | - $item->set_quantity( (float) $selected_items[ $item->get_id() ]['quantity'] ); |
|
104 | + if ($item->allows_quantities()) { |
|
105 | + $item->set_quantity((float) $selected_items[$item->get_id()]['quantity']); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | // Maybe change the price. |
109 | - if ( $item->user_can_set_their_price() ) { |
|
110 | - $price = (float) wpinv_sanitize_amount( $selected_items[ $item->get_id() ]['price'] ); |
|
109 | + if ($item->user_can_set_their_price()) { |
|
110 | + $price = (float) wpinv_sanitize_amount($selected_items[$item->get_id()]['price']); |
|
111 | 111 | |
112 | - if ( $item->get_minimum_price() > $price ) { |
|
113 | - throw new Exception( sprintf( __( 'The minimum allowed amount is %s', 'invoicing' ), getpaid_unstandardize_amount( $item->get_minimum_price() ) ) ); |
|
112 | + if ($item->get_minimum_price() > $price) { |
|
113 | + throw new Exception(sprintf(__('The minimum allowed amount is %s', 'invoicing'), getpaid_unstandardize_amount($item->get_minimum_price()))); |
|
114 | 114 | } |
115 | 115 | |
116 | - $item->set_price( $price ); |
|
116 | + $item->set_price($price); |
|
117 | 117 | |
118 | 118 | } |
119 | 119 | |
120 | 120 | } |
121 | 121 | |
122 | - if ( 0 == $item->get_quantity() ) { |
|
122 | + if (0 == $item->get_quantity()) { |
|
123 | 123 | return; |
124 | 124 | } |
125 | 125 | |
126 | 126 | // Save the item. |
127 | - $this->items[] = apply_filters( 'getpaid_payment_form_submission_processed_item' , $item, $submission ); |
|
127 | + $this->items[] = apply_filters('getpaid_payment_form_submission_processed_item', $item, $submission); |
|
128 | 128 | |
129 | 129 | } |
130 | 130 |
@@ -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,24 +21,24 @@ 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 discount. |
27 | - $discount = new WPInv_Discount( $post ); |
|
27 | + $discount = new WPInv_Discount($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 | - do_action( 'wpinv_discount_form_top', $discount ); |
|
32 | + do_action('wpinv_discount_form_top', $discount); |
|
33 | 33 | |
34 | 34 | // Set the currency position. |
35 | 35 | $position = wpinv_currency_position(); |
36 | 36 | |
37 | - if ( $position == 'left_space' ) { |
|
37 | + if ($position == 'left_space') { |
|
38 | 38 | $position = 'left'; |
39 | 39 | } |
40 | 40 | |
41 | - if ( $position == 'right_space' ) { |
|
41 | + if ($position == 'right_space') { |
|
42 | 42 | $position = 'right'; |
43 | 43 | } |
44 | 44 | |
@@ -52,66 +52,66 @@ discard block |
||
52 | 52 | </style> |
53 | 53 | <div class='bsui' style='max-width: 600px;padding-top: 10px;'> |
54 | 54 | |
55 | - <?php do_action( 'wpinv_discount_form_first', $discount ); ?> |
|
55 | + <?php do_action('wpinv_discount_form_first', $discount); ?> |
|
56 | 56 | |
57 | - <?php do_action( 'wpinv_discount_form_before_code', $discount ); ?> |
|
57 | + <?php do_action('wpinv_discount_form_before_code', $discount); ?> |
|
58 | 58 | <div class="form-group row"> |
59 | 59 | <label for="wpinv_discount_code" class="col-sm-3 col-form-label"> |
60 | - <?php _e( 'Discount Code', 'invoicing' );?> |
|
60 | + <?php _e('Discount Code', 'invoicing'); ?> |
|
61 | 61 | </label> |
62 | 62 | <div class="col-sm-8"> |
63 | 63 | <div class="row"> |
64 | 64 | <div class="col-sm-12 form-group"> |
65 | - <input type="text" value="<?php echo esc_attr( $discount->get_code( 'edit' ) ); ?>" placeholder="SUMMER_SALE" name="wpinv_discount_code" id="wpinv_discount_code" style="width: 100%;" /> |
|
65 | + <input type="text" value="<?php echo esc_attr($discount->get_code('edit')); ?>" placeholder="SUMMER_SALE" name="wpinv_discount_code" id="wpinv_discount_code" style="width: 100%;" /> |
|
66 | 66 | </div> |
67 | 67 | <div class="col-sm-12"> |
68 | 68 | <?php |
69 | - do_action( 'wpinv_discount_form_before_single_use', $discount ); |
|
69 | + do_action('wpinv_discount_form_before_single_use', $discount); |
|
70 | 70 | |
71 | 71 | echo aui()->input( |
72 | 72 | array( |
73 | 73 | 'id' => 'wpinv_discount_single_use', |
74 | 74 | 'name' => 'wpinv_discount_single_use', |
75 | 75 | 'type' => 'checkbox', |
76 | - 'label' => __( 'Each customer can only use this discount once', 'invoicing' ), |
|
76 | + 'label' => __('Each customer can only use this discount once', 'invoicing'), |
|
77 | 77 | 'value' => '1', |
78 | 78 | 'checked' => $discount->is_single_use(), |
79 | 79 | ) |
80 | 80 | ); |
81 | 81 | |
82 | - do_action( 'wpinv_discount_form_single_use', $discount ); |
|
82 | + do_action('wpinv_discount_form_single_use', $discount); |
|
83 | 83 | ?> |
84 | 84 | </div> |
85 | 85 | <div class="col-sm-12"> |
86 | 86 | <?php |
87 | - do_action( 'wpinv_discount_form_before_recurring', $discount ); |
|
87 | + do_action('wpinv_discount_form_before_recurring', $discount); |
|
88 | 88 | |
89 | 89 | echo aui()->input( |
90 | 90 | array( |
91 | 91 | 'id' => 'wpinv_discount_recurring', |
92 | 92 | 'name' => 'wpinv_discount_recurring', |
93 | 93 | 'type' => 'checkbox', |
94 | - 'label' => __( 'Apply this discount to all recurring payments for subscriptions', 'invoicing' ), |
|
94 | + 'label' => __('Apply this discount to all recurring payments for subscriptions', 'invoicing'), |
|
95 | 95 | 'value' => '1', |
96 | 96 | 'checked' => $discount->is_recurring(), |
97 | 97 | ) |
98 | 98 | ); |
99 | 99 | |
100 | - do_action( 'wpinv_discount_form_recurring', $discount ); |
|
100 | + do_action('wpinv_discount_form_recurring', $discount); |
|
101 | 101 | ?> |
102 | 102 | </div> |
103 | 103 | </div> |
104 | 104 | </div> |
105 | 105 | <div class="col-sm-1 pt-2 pl-0"> |
106 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enter a discount code such as 10OFF.', 'invoicing' ); ?>"></span> |
|
106 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Enter a discount code such as 10OFF.', 'invoicing'); ?>"></span> |
|
107 | 107 | </div> |
108 | 108 | </div> |
109 | - <?php do_action( 'wpinv_discount_form_code', $discount ); ?> |
|
109 | + <?php do_action('wpinv_discount_form_code', $discount); ?> |
|
110 | 110 | |
111 | - <?php do_action( 'wpinv_discount_form_before_type', $discount ); ?> |
|
111 | + <?php do_action('wpinv_discount_form_before_type', $discount); ?> |
|
112 | 112 | <div class="form-group row"> |
113 | 113 | <label for="wpinv_discount_type" class="col-sm-3 col-form-label"> |
114 | - <?php _e( 'Discount Type', 'invoicing' );?> |
|
114 | + <?php _e('Discount Type', 'invoicing'); ?> |
|
115 | 115 | </label> |
116 | 116 | <div class="col-sm-8"> |
117 | 117 | <?php |
@@ -119,9 +119,9 @@ discard block |
||
119 | 119 | array( |
120 | 120 | 'id' => 'wpinv_discount_type', |
121 | 121 | 'name' => 'wpinv_discount_type', |
122 | - 'label' => __( 'Discount Type', 'invoicing' ), |
|
123 | - 'placeholder' => __( 'Select Discount Type', 'invoicing' ), |
|
124 | - 'value' => $discount->get_type( 'edit' ), |
|
122 | + 'label' => __('Discount Type', 'invoicing'), |
|
123 | + 'placeholder' => __('Select Discount Type', 'invoicing'), |
|
124 | + 'value' => $discount->get_type('edit'), |
|
125 | 125 | 'select2' => true, |
126 | 126 | 'data-allow-clear' => 'false', |
127 | 127 | 'options' => wpinv_get_discount_types() |
@@ -130,19 +130,19 @@ discard block |
||
130 | 130 | ?> |
131 | 131 | </div> |
132 | 132 | <div class="col-sm-1 pt-2 pl-0"> |
133 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Discount type.', 'invoicing' ); ?>"></span> |
|
133 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Discount type.', 'invoicing'); ?>"></span> |
|
134 | 134 | </div> |
135 | 135 | </div> |
136 | - <?php do_action( 'wpinv_discount_form_type', $discount ); ?> |
|
136 | + <?php do_action('wpinv_discount_form_type', $discount); ?> |
|
137 | 137 | |
138 | - <?php do_action( 'wpinv_discount_form_before_amount', $discount ); ?> |
|
139 | - <div class="form-group row <?php echo esc_attr( $discount->get_type( 'edit' ) ); ?>" id="wpinv_discount_amount_wrap"> |
|
138 | + <?php do_action('wpinv_discount_form_before_amount', $discount); ?> |
|
139 | + <div class="form-group row <?php echo esc_attr($discount->get_type('edit')); ?>" id="wpinv_discount_amount_wrap"> |
|
140 | 140 | <label for="wpinv_discount_amount" class="col-sm-3 col-form-label"> |
141 | - <?php _e( 'Discount Amount', 'invoicing' );?> |
|
141 | + <?php _e('Discount Amount', 'invoicing'); ?> |
|
142 | 142 | </label> |
143 | 143 | <div class="col-sm-8"> |
144 | 144 | <div class="input-group input-group-sm"> |
145 | - <?php if( 'left' == $position ) : ?> |
|
145 | + <?php if ('left' == $position) : ?> |
|
146 | 146 | <div class="input-group-prepend left wpinv-if-flat"> |
147 | 147 | <span class="input-group-text"> |
148 | 148 | <?php echo wpinv_currency_symbol(); ?> |
@@ -150,9 +150,9 @@ discard block |
||
150 | 150 | </div> |
151 | 151 | <?php endif; ?> |
152 | 152 | |
153 | - <input type="text" name="wpinv_discount_amount" id="wpinv_discount_amount" value="<?php echo esc_attr( $discount->get_amount( 'edit' ) ); ?>" placeholder="0" class="form-control"> |
|
153 | + <input type="text" name="wpinv_discount_amount" id="wpinv_discount_amount" value="<?php echo esc_attr($discount->get_amount('edit')); ?>" placeholder="0" class="form-control"> |
|
154 | 154 | |
155 | - <?php if( 'right' == $position ) : ?> |
|
155 | + <?php if ('right' == $position) : ?> |
|
156 | 156 | <div class="input-group-prepend left wpinv-if-flat"> |
157 | 157 | <span class="input-group-text"> |
158 | 158 | <?php echo wpinv_currency_symbol(); ?> |
@@ -165,15 +165,15 @@ discard block |
||
165 | 165 | </div> |
166 | 166 | </div> |
167 | 167 | <div class="col-sm-1 pt-2 pl-0"> |
168 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Enter the discount value. Ex: 10', 'invoicing' ); ?>"></span> |
|
168 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Enter the discount value. Ex: 10', 'invoicing'); ?>"></span> |
|
169 | 169 | </div> |
170 | 170 | </div> |
171 | - <?php do_action( 'wpinv_discount_form_amount', $discount ); ?> |
|
171 | + <?php do_action('wpinv_discount_form_amount', $discount); ?> |
|
172 | 172 | |
173 | - <?php do_action( 'wpinv_discount_form_before_items', $discount ); ?> |
|
173 | + <?php do_action('wpinv_discount_form_before_items', $discount); ?> |
|
174 | 174 | <div class="form-group row"> |
175 | 175 | <label for="wpinv_discount_items" class="col-sm-3 col-form-label"> |
176 | - <?php _e( 'Items', 'invoicing' );?> |
|
176 | + <?php _e('Items', 'invoicing'); ?> |
|
177 | 177 | </label> |
178 | 178 | <div class="col-sm-8"> |
179 | 179 | <?php |
@@ -181,9 +181,9 @@ discard block |
||
181 | 181 | array( |
182 | 182 | 'id' => 'wpinv_discount_items', |
183 | 183 | 'name' => 'wpinv_discount_items[]', |
184 | - 'label' => __( 'Items', 'invoicing' ), |
|
185 | - 'placeholder' => __( 'Select Items', 'invoicing' ), |
|
186 | - 'value' => $discount->get_items( 'edit' ), |
|
184 | + 'label' => __('Items', 'invoicing'), |
|
185 | + 'placeholder' => __('Select Items', 'invoicing'), |
|
186 | + 'value' => $discount->get_items('edit'), |
|
187 | 187 | 'select2' => true, |
188 | 188 | 'multiple' => true, |
189 | 189 | 'data-allow-clear' => 'false', |
@@ -193,15 +193,15 @@ discard block |
||
193 | 193 | ?> |
194 | 194 | </div> |
195 | 195 | <div class="col-sm-1 pt-2 pl-0"> |
196 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Select the items that are allowed to use this discount or leave blank to use this discount all items.', 'invoicing' ); ?>"></span> |
|
196 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Select the items that are allowed to use this discount or leave blank to use this discount all items.', 'invoicing'); ?>"></span> |
|
197 | 197 | </div> |
198 | 198 | </div> |
199 | - <?php do_action( 'wpinv_discount_form_items', $discount ); ?> |
|
199 | + <?php do_action('wpinv_discount_form_items', $discount); ?> |
|
200 | 200 | |
201 | - <?php do_action( 'wpinv_discount_form_before_excluded_items', $discount ); ?> |
|
201 | + <?php do_action('wpinv_discount_form_before_excluded_items', $discount); ?> |
|
202 | 202 | <div class="form-group row"> |
203 | 203 | <label for="wpinv_discount_excluded_items" class="col-sm-3 col-form-label"> |
204 | - <?php _e( 'Excluded Items', 'invoicing' );?> |
|
204 | + <?php _e('Excluded Items', 'invoicing'); ?> |
|
205 | 205 | </label> |
206 | 206 | <div class="col-sm-8"> |
207 | 207 | <?php |
@@ -209,9 +209,9 @@ discard block |
||
209 | 209 | array( |
210 | 210 | 'id' => 'wpinv_discount_excluded_items', |
211 | 211 | 'name' => 'wpinv_discount_excluded_items[]', |
212 | - 'label' => __( 'Excluded Items', 'invoicing' ), |
|
213 | - 'placeholder' => __( 'Select Items', 'invoicing' ), |
|
214 | - 'value' => $discount->get_excluded_items( 'edit' ), |
|
212 | + 'label' => __('Excluded Items', 'invoicing'), |
|
213 | + 'placeholder' => __('Select Items', 'invoicing'), |
|
214 | + 'value' => $discount->get_excluded_items('edit'), |
|
215 | 215 | 'select2' => true, |
216 | 216 | 'multiple' => true, |
217 | 217 | 'data-allow-clear' => 'false', |
@@ -221,15 +221,15 @@ discard block |
||
221 | 221 | ?> |
222 | 222 | </div> |
223 | 223 | <div class="col-sm-1 pt-2 pl-0"> |
224 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Select all the items that are not allowed to use this discount.', 'invoicing' ); ?>"></span> |
|
224 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Select all the items that are not allowed to use this discount.', 'invoicing'); ?>"></span> |
|
225 | 225 | </div> |
226 | 226 | </div> |
227 | - <?php do_action( 'wpinv_discount_form_excluded_items', $discount ); ?> |
|
227 | + <?php do_action('wpinv_discount_form_excluded_items', $discount); ?> |
|
228 | 228 | |
229 | - <?php do_action( 'wpinv_discount_form_before_start', $discount ); ?> |
|
229 | + <?php do_action('wpinv_discount_form_before_start', $discount); ?> |
|
230 | 230 | <div class="form-group row"> |
231 | 231 | <label for="wpinv_discount_start" class="col-sm-3 col-form-label"> |
232 | - <?php _e( 'Start Date', 'invoicing' );?> |
|
232 | + <?php _e('Start Date', 'invoicing'); ?> |
|
233 | 233 | </label> |
234 | 234 | <div class="col-sm-8"> |
235 | 235 | <?php |
@@ -238,10 +238,10 @@ discard block |
||
238 | 238 | 'type' => 'datepicker', |
239 | 239 | 'id' => 'wpinv_discount_start', |
240 | 240 | 'name' => 'wpinv_discount_start', |
241 | - 'label' => __( 'Start Date', 'invoicing' ), |
|
241 | + 'label' => __('Start Date', 'invoicing'), |
|
242 | 242 | 'placeholder' => 'YYYY-MM-DD 00:00', |
243 | 243 | 'class' => 'form-control-sm', |
244 | - 'value' => $discount->get_start_date( 'edit' ), |
|
244 | + 'value' => $discount->get_start_date('edit'), |
|
245 | 245 | 'extra_attributes' => array( |
246 | 246 | 'data-enable-time' => 'true', |
247 | 247 | 'data-time_24hr' => 'true', |
@@ -252,15 +252,15 @@ discard block |
||
252 | 252 | ?> |
253 | 253 | </div> |
254 | 254 | <div class="col-sm-1 pt-2 pl-0"> |
255 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'For no start date, leave blank. If entered, the discount can only be used after or on this date.', 'invoicing' ); ?>"></span> |
|
255 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('For no start date, leave blank. If entered, the discount can only be used after or on this date.', 'invoicing'); ?>"></span> |
|
256 | 256 | </div> |
257 | 257 | </div> |
258 | - <?php do_action( 'wpinv_discount_form_start', $discount ); ?> |
|
258 | + <?php do_action('wpinv_discount_form_start', $discount); ?> |
|
259 | 259 | |
260 | - <?php do_action( 'wpinv_discount_form_before_expiration', $discount ); ?> |
|
260 | + <?php do_action('wpinv_discount_form_before_expiration', $discount); ?> |
|
261 | 261 | <div class="form-group row"> |
262 | 262 | <label for="wpinv_discount_expiration" class="col-sm-3 col-form-label"> |
263 | - <?php _e( 'Expiration Date', 'invoicing' );?> |
|
263 | + <?php _e('Expiration Date', 'invoicing'); ?> |
|
264 | 264 | </label> |
265 | 265 | <div class="col-sm-8"> |
266 | 266 | <?php |
@@ -269,10 +269,10 @@ discard block |
||
269 | 269 | 'type' => 'datepicker', |
270 | 270 | 'id' => 'wpinv_discount_expiration', |
271 | 271 | 'name' => 'wpinv_discount_expiration', |
272 | - 'label' => __( 'Expiration Date', 'invoicing' ), |
|
272 | + 'label' => __('Expiration Date', 'invoicing'), |
|
273 | 273 | 'placeholder' => 'YYYY-MM-DD 00:00', |
274 | 274 | 'class' => 'form-control-sm', |
275 | - 'value' => $discount->get_end_date( 'edit' ), |
|
275 | + 'value' => $discount->get_end_date('edit'), |
|
276 | 276 | 'extra_attributes' => array( |
277 | 277 | 'data-enable-time' => 'true', |
278 | 278 | 'data-time_24hr' => 'true', |
@@ -285,27 +285,27 @@ discard block |
||
285 | 285 | ?> |
286 | 286 | </div> |
287 | 287 | <div class="col-sm-1 pt-2 pl-0"> |
288 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the date after which the discount will expire.', 'invoicing' ); ?>"></span> |
|
288 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the date after which the discount will expire.', 'invoicing'); ?>"></span> |
|
289 | 289 | </div> |
290 | 290 | </div> |
291 | - <?php do_action( 'wpinv_discount_form_expiration', $discount ); ?> |
|
291 | + <?php do_action('wpinv_discount_form_expiration', $discount); ?> |
|
292 | 292 | |
293 | - <?php do_action( 'wpinv_discount_form_before_min_total', $discount ); ?> |
|
293 | + <?php do_action('wpinv_discount_form_before_min_total', $discount); ?> |
|
294 | 294 | <div class="form-group row"> |
295 | 295 | <label for="wpinv_discount_min_total" class="col-sm-3 col-form-label"> |
296 | - <?php _e( 'Minimum Amount', 'invoicing' );?> |
|
296 | + <?php _e('Minimum Amount', 'invoicing'); ?> |
|
297 | 297 | </label> |
298 | 298 | <div class="col-sm-8"> |
299 | 299 | <div class="input-group input-group-sm"> |
300 | - <?php if( 'left' == $position ) : ?> |
|
300 | + <?php if ('left' == $position) : ?> |
|
301 | 301 | <div class="input-group-prepend"> |
302 | 302 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
303 | 303 | </div> |
304 | 304 | <?php endif; ?> |
305 | 305 | |
306 | - <input type="text" name="wpinv_discount_min_total" id="wpinv_discount_min_total" value="<?php echo esc_attr( $discount->get_minimum_total( 'edit' ) ); ?>" placeholder="<?php esc_attr_e( 'No minimum', 'invoicing' ); ?>" class="form-control"> |
|
306 | + <input type="text" name="wpinv_discount_min_total" id="wpinv_discount_min_total" value="<?php echo esc_attr($discount->get_minimum_total('edit')); ?>" placeholder="<?php esc_attr_e('No minimum', 'invoicing'); ?>" class="form-control"> |
|
307 | 307 | |
308 | - <?php if( 'left' != $position ) : ?> |
|
308 | + <?php if ('left' != $position) : ?> |
|
309 | 309 | <div class="input-group-append"> |
310 | 310 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
311 | 311 | </div> |
@@ -313,27 +313,27 @@ discard block |
||
313 | 313 | </div> |
314 | 314 | </div> |
315 | 315 | <div class="col-sm-1 pt-2 pl-0"> |
316 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the minimum amount (including taxes) required to use this discount.', 'invoicing' ); ?>"></span> |
|
316 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the minimum amount (including taxes) required to use this discount.', 'invoicing'); ?>"></span> |
|
317 | 317 | </div> |
318 | 318 | </div> |
319 | - <?php do_action( 'wpinv_discount_form_min_total', $discount ); ?> |
|
319 | + <?php do_action('wpinv_discount_form_min_total', $discount); ?> |
|
320 | 320 | |
321 | - <?php do_action( 'wpinv_discount_form_before_max_total', $discount ); ?> |
|
321 | + <?php do_action('wpinv_discount_form_before_max_total', $discount); ?> |
|
322 | 322 | <div class="form-group row"> |
323 | 323 | <label for="wpinv_discount_max_total" class="col-sm-3 col-form-label"> |
324 | - <?php _e( 'Maximum Amount', 'invoicing' );?> |
|
324 | + <?php _e('Maximum Amount', 'invoicing'); ?> |
|
325 | 325 | </label> |
326 | 326 | <div class="col-sm-8"> |
327 | 327 | <div class="input-group input-group-sm"> |
328 | - <?php if( 'left' == $position ) : ?> |
|
328 | + <?php if ('left' == $position) : ?> |
|
329 | 329 | <div class="input-group-prepend"> |
330 | 330 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
331 | 331 | </div> |
332 | 332 | <?php endif; ?> |
333 | 333 | |
334 | - <input type="text" name="wpinv_discount_max_total" id="wpinv_discount_max_total" value="<?php echo esc_attr( $discount->get_maximum_total( 'edit' ) ); ?>" placeholder="<?php esc_attr_e( 'No maximum', 'invoicing' ); ?>" class="form-control"> |
|
334 | + <input type="text" name="wpinv_discount_max_total" id="wpinv_discount_max_total" value="<?php echo esc_attr($discount->get_maximum_total('edit')); ?>" placeholder="<?php esc_attr_e('No maximum', 'invoicing'); ?>" class="form-control"> |
|
335 | 335 | |
336 | - <?php if( 'left' != $position ) : ?> |
|
336 | + <?php if ('left' != $position) : ?> |
|
337 | 337 | <div class="input-group-append"> |
338 | 338 | <span class="input-group-text"><?php echo wpinv_currency_symbol(); ?></span> |
339 | 339 | </div> |
@@ -341,30 +341,30 @@ discard block |
||
341 | 341 | </div> |
342 | 342 | </div> |
343 | 343 | <div class="col-sm-1 pt-2 pl-0"> |
344 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the maximum amount (including taxes) allowed when using this discount.', 'invoicing' ); ?>"></span> |
|
344 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the maximum amount (including taxes) allowed when using this discount.', 'invoicing'); ?>"></span> |
|
345 | 345 | </div> |
346 | 346 | </div> |
347 | - <?php do_action( 'wpinv_discount_form_before_max_total', $discount ); ?> |
|
347 | + <?php do_action('wpinv_discount_form_before_max_total', $discount); ?> |
|
348 | 348 | |
349 | - <?php do_action( 'wpinv_discount_form_before_max_uses', $discount ); ?> |
|
349 | + <?php do_action('wpinv_discount_form_before_max_uses', $discount); ?> |
|
350 | 350 | <div class="form-group row"> |
351 | 351 | <label for="wpinv_discount_max_uses" class="col-sm-3 col-form-label"> |
352 | - <?php _e( 'Maximum Uses', 'invoicing' );?> |
|
352 | + <?php _e('Maximum Uses', 'invoicing'); ?> |
|
353 | 353 | </label> |
354 | 354 | <div class="col-sm-8"> |
355 | - <input type="text" value="<?php echo esc_attr( $discount->get_max_uses( 'edit' ) ); ?>" placeholder="<?php esc_attr_e( 'Unlimited', 'invoicing' ); ?>" name="wpinv_discount_max_uses" id="wpinv_discount_max_uses" style="width: 100%;" /> |
|
355 | + <input type="text" value="<?php echo esc_attr($discount->get_max_uses('edit')); ?>" placeholder="<?php esc_attr_e('Unlimited', 'invoicing'); ?>" name="wpinv_discount_max_uses" id="wpinv_discount_max_uses" style="width: 100%;" /> |
|
356 | 356 | </div> |
357 | 357 | <div class="col-sm-1 pt-2 pl-0"> |
358 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Optionally set the maximum number of times that this discount code can be used.', 'invoicing' ); ?>"></span> |
|
358 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Optionally set the maximum number of times that this discount code can be used.', 'invoicing'); ?>"></span> |
|
359 | 359 | </div> |
360 | 360 | </div> |
361 | - <?php do_action( 'wpinv_discount_form_max_uses', $discount ); ?> |
|
361 | + <?php do_action('wpinv_discount_form_max_uses', $discount); ?> |
|
362 | 362 | |
363 | - <?php do_action( 'wpinv_discount_form_last', $discount ); ?> |
|
363 | + <?php do_action('wpinv_discount_form_last', $discount); ?> |
|
364 | 364 | |
365 | 365 | </div> |
366 | 366 | <?php |
367 | - do_action( 'wpinv_discount_form_bottom', $post ); |
|
367 | + do_action('wpinv_discount_form_bottom', $post); |
|
368 | 368 | } |
369 | 369 | |
370 | 370 | /** |
@@ -372,30 +372,30 @@ discard block |
||
372 | 372 | * |
373 | 373 | * @param int $post_id |
374 | 374 | */ |
375 | - public static function save( $post_id ) { |
|
375 | + public static function save($post_id) { |
|
376 | 376 | |
377 | 377 | // Prepare the discount. |
378 | - $discount = new WPInv_Discount( $post_id ); |
|
378 | + $discount = new WPInv_Discount($post_id); |
|
379 | 379 | |
380 | 380 | // Load new data. |
381 | 381 | $discount->set_props( |
382 | 382 | array( |
383 | - 'code' => isset( $_POST['wpinv_discount_code'] ) ? wpinv_clean( $_POST['wpinv_discount_code'] ) : null, |
|
384 | - 'amount' => isset( $_POST['wpinv_discount_amount'] ) ? floatval( $_POST['wpinv_discount_amount'] ) : null, |
|
385 | - 'start' => isset( $_POST['wpinv_discount_start'] ) ? wpinv_clean( $_POST['wpinv_discount_start'] ) : null, |
|
386 | - 'expiration' => isset( $_POST['wpinv_discount_expiration'] ) ? wpinv_clean( $_POST['wpinv_discount_expiration'] ) : null, |
|
387 | - 'is_single_use' => isset( $_POST['wpinv_discount_single_use'] ), |
|
388 | - 'type' => isset( $_POST['wpinv_discount_type'] ) ? wpinv_clean( $_POST['wpinv_discount_type'] ) : null, |
|
389 | - 'is_recurring' => isset( $_POST['wpinv_discount_recurring'] ), |
|
390 | - 'items' => isset( $_POST['wpinv_discount_items'] ) ? wpinv_clean( $_POST['wpinv_discount_items'] ) : array(), |
|
391 | - 'excluded_items' => isset( $_POST['wpinv_discount_excluded_items'] ) ? wpinv_clean( $_POST['wpinv_discount_excluded_items'] ) : array(), |
|
392 | - 'max_uses' => isset( $_POST['wpinv_discount_max_uses'] ) ? intval( $_POST['wpinv_discount_max_uses'] ) : null, |
|
393 | - 'min_total' => isset( $_POST['wpinv_discount_min_total'] ) ? floatval( $_POST['wpinv_discount_min_total'] ) : null, |
|
394 | - 'max_total' => isset( $_POST['wpinv_discount_max_total'] ) ? floatval( $_POST['wpinv_discount_max_total'] ) : null, |
|
383 | + 'code' => isset($_POST['wpinv_discount_code']) ? wpinv_clean($_POST['wpinv_discount_code']) : null, |
|
384 | + 'amount' => isset($_POST['wpinv_discount_amount']) ? floatval($_POST['wpinv_discount_amount']) : null, |
|
385 | + 'start' => isset($_POST['wpinv_discount_start']) ? wpinv_clean($_POST['wpinv_discount_start']) : null, |
|
386 | + 'expiration' => isset($_POST['wpinv_discount_expiration']) ? wpinv_clean($_POST['wpinv_discount_expiration']) : null, |
|
387 | + 'is_single_use' => isset($_POST['wpinv_discount_single_use']), |
|
388 | + 'type' => isset($_POST['wpinv_discount_type']) ? wpinv_clean($_POST['wpinv_discount_type']) : null, |
|
389 | + 'is_recurring' => isset($_POST['wpinv_discount_recurring']), |
|
390 | + 'items' => isset($_POST['wpinv_discount_items']) ? wpinv_clean($_POST['wpinv_discount_items']) : array(), |
|
391 | + 'excluded_items' => isset($_POST['wpinv_discount_excluded_items']) ? wpinv_clean($_POST['wpinv_discount_excluded_items']) : array(), |
|
392 | + 'max_uses' => isset($_POST['wpinv_discount_max_uses']) ? intval($_POST['wpinv_discount_max_uses']) : null, |
|
393 | + 'min_total' => isset($_POST['wpinv_discount_min_total']) ? floatval($_POST['wpinv_discount_min_total']) : null, |
|
394 | + 'max_total' => isset($_POST['wpinv_discount_max_total']) ? floatval($_POST['wpinv_discount_max_total']) : null, |
|
395 | 395 | ) |
396 | 396 | ); |
397 | 397 | |
398 | 398 | $discount->save(); |
399 | - do_action( 'getpaid_discount_metabox_save', $post_id, $discount ); |
|
399 | + do_action('getpaid_discount_metabox_save', $post_id, $discount); |
|
400 | 400 | } |
401 | 401 | } |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'ABSPATH' ) ) { |
|
2 | +if (!defined('ABSPATH')) { |
|
3 | 3 | exit; |
4 | 4 | } |
5 | 5 | |
@@ -141,8 +141,8 @@ discard block |
||
141 | 141 | $this->state = wpinv_get_default_state(); |
142 | 142 | |
143 | 143 | // Do we have an actual submission? |
144 | - if ( isset( $_POST['getpaid_payment_form_submission'] ) ) { |
|
145 | - $this->load_data( $_POST ); |
|
144 | + if (isset($_POST['getpaid_payment_form_submission'])) { |
|
145 | + $this->load_data($_POST); |
|
146 | 146 | } |
147 | 147 | |
148 | 148 | } |
@@ -152,19 +152,19 @@ discard block |
||
152 | 152 | * |
153 | 153 | * @param array $data |
154 | 154 | */ |
155 | - public function load_data( $data ) { |
|
155 | + public function load_data($data) { |
|
156 | 156 | |
157 | 157 | // Remove slashes from the submitted data... |
158 | - $data = wp_kses_post_deep( wp_unslash( $data ) ); |
|
158 | + $data = wp_kses_post_deep(wp_unslash($data)); |
|
159 | 159 | |
160 | 160 | // Allow plugins to filter the data. |
161 | - $data = apply_filters( 'getpaid_submission_data', $data, $this ); |
|
161 | + $data = apply_filters('getpaid_submission_data', $data, $this); |
|
162 | 162 | |
163 | 163 | // Cache it... |
164 | 164 | $this->data = $data; |
165 | 165 | |
166 | 166 | // Then generate a unique id from the data. |
167 | - $this->id = md5( wp_json_encode( $data ) ); |
|
167 | + $this->id = md5(wp_json_encode($data)); |
|
168 | 168 | |
169 | 169 | // Finally, process the submission. |
170 | 170 | try { |
@@ -174,30 +174,30 @@ discard block |
||
174 | 174 | $processors = apply_filters( |
175 | 175 | 'getpaid_payment_form_submission_processors', |
176 | 176 | array( |
177 | - array( $this, 'process_payment_form' ), |
|
178 | - array( $this, 'process_invoice' ), |
|
179 | - array( $this, 'process_fees' ), |
|
180 | - array( $this, 'process_items' ), |
|
181 | - array( $this, 'process_discount' ), |
|
182 | - array( $this, 'process_taxes' ), |
|
177 | + array($this, 'process_payment_form'), |
|
178 | + array($this, 'process_invoice'), |
|
179 | + array($this, 'process_fees'), |
|
180 | + array($this, 'process_items'), |
|
181 | + array($this, 'process_discount'), |
|
182 | + array($this, 'process_taxes'), |
|
183 | 183 | ), |
184 | 184 | $this |
185 | 185 | ); |
186 | 186 | |
187 | - foreach ( $processors as $processor ) { |
|
188 | - call_user_func_array( $processor, array( &$this ) ); |
|
187 | + foreach ($processors as $processor) { |
|
188 | + call_user_func_array($processor, array(&$this)); |
|
189 | 189 | } |
190 | 190 | |
191 | - } catch( GetPaid_Payment_Exception $e ) { |
|
191 | + } catch (GetPaid_Payment_Exception $e) { |
|
192 | 192 | $this->last_error = $e->getMessage(); |
193 | 193 | $this->last_error_code = $e->getErrorCode(); |
194 | - } catch ( Exception $e ) { |
|
194 | + } catch (Exception $e) { |
|
195 | 195 | $this->last_error = $e->getMessage(); |
196 | 196 | $this->last_error_code = $e->getCode(); |
197 | 197 | } |
198 | 198 | |
199 | 199 | // Fired when we are done processing a submission. |
200 | - do_action_ref_array( 'getpaid_process_submission', array( &$this ) ); |
|
200 | + do_action_ref_array('getpaid_process_submission', array(&$this)); |
|
201 | 201 | |
202 | 202 | } |
203 | 203 | |
@@ -218,18 +218,18 @@ discard block |
||
218 | 218 | public function process_payment_form() { |
219 | 219 | |
220 | 220 | // Every submission needs an active payment form. |
221 | - if ( empty( $this->data['form_id'] ) ) { |
|
222 | - throw new Exception( __( 'Missing payment form', 'invoicing' ) ); |
|
221 | + if (empty($this->data['form_id'])) { |
|
222 | + throw new Exception(__('Missing payment form', 'invoicing')); |
|
223 | 223 | } |
224 | 224 | |
225 | 225 | // Fetch the payment form. |
226 | - $this->payment_form = new GetPaid_Payment_Form( $this->data['form_id'] ); |
|
226 | + $this->payment_form = new GetPaid_Payment_Form($this->data['form_id']); |
|
227 | 227 | |
228 | - if ( ! $this->payment_form->is_active() ) { |
|
229 | - throw new Exception( __( 'Payment form not active', 'invoicing' ) ); |
|
228 | + if (!$this->payment_form->is_active()) { |
|
229 | + throw new Exception(__('Payment form not active', 'invoicing')); |
|
230 | 230 | } |
231 | 231 | |
232 | - do_action_ref_array( 'getpaid_submissions_process_payment_form', array( &$this ) ); |
|
232 | + do_action_ref_array('getpaid_submissions_process_payment_form', array(&$this)); |
|
233 | 233 | } |
234 | 234 | |
235 | 235 | /** |
@@ -259,53 +259,53 @@ discard block |
||
259 | 259 | public function process_invoice() { |
260 | 260 | |
261 | 261 | // Abort if there is no invoice. |
262 | - if ( empty( $this->data['invoice_id'] ) ) { |
|
262 | + if (empty($this->data['invoice_id'])) { |
|
263 | 263 | return; |
264 | 264 | } |
265 | 265 | |
266 | 266 | // If the submission is for an existing invoice, ensure that it exists |
267 | 267 | // and that it is not paid for. |
268 | - $invoice = wpinv_get_invoice( $this->data['invoice_id'] ); |
|
268 | + $invoice = wpinv_get_invoice($this->data['invoice_id']); |
|
269 | 269 | |
270 | - if ( empty( $invoice ) ) { |
|
271 | - throw new Exception( __( 'Invalid invoice', 'invoicing' ) ); |
|
270 | + if (empty($invoice)) { |
|
271 | + throw new Exception(__('Invalid invoice', 'invoicing')); |
|
272 | 272 | } |
273 | 273 | |
274 | - if ( $invoice->is_paid() ) { |
|
275 | - throw new Exception( __( 'This invoice is already paid for.', 'invoicing' ) ); |
|
274 | + if ($invoice->is_paid()) { |
|
275 | + throw new Exception(__('This invoice is already paid for.', 'invoicing')); |
|
276 | 276 | } |
277 | 277 | |
278 | 278 | $this->payment_form->invoice = $invoice; |
279 | - if ( ! $this->payment_form->is_default() ) { |
|
279 | + if (!$this->payment_form->is_default()) { |
|
280 | 280 | |
281 | 281 | $items = array(); |
282 | 282 | $item_ids = array(); |
283 | 283 | |
284 | - foreach ( $invoice->get_items() as $item ) { |
|
285 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
284 | + foreach ($invoice->get_items() as $item) { |
|
285 | + if (!in_array($item->get_id(), $item_ids)) { |
|
286 | 286 | $item_ids[] = $item->get_id(); |
287 | 287 | $items[] = $item; |
288 | 288 | } |
289 | 289 | } |
290 | 290 | |
291 | - foreach ( $this->payment_form->get_items() as $item ) { |
|
292 | - if ( ! in_array( $item->get_id(), $item_ids ) ) { |
|
291 | + foreach ($this->payment_form->get_items() as $item) { |
|
292 | + if (!in_array($item->get_id(), $item_ids)) { |
|
293 | 293 | $item_ids[] = $item->get_id(); |
294 | 294 | $items[] = $item; |
295 | 295 | } |
296 | 296 | } |
297 | 297 | |
298 | - $this->payment_form->set_items( $items ); |
|
298 | + $this->payment_form->set_items($items); |
|
299 | 299 | |
300 | 300 | } else { |
301 | - $this->payment_form->set_items( $invoice->get_items() ); |
|
301 | + $this->payment_form->set_items($invoice->get_items()); |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | $this->country = $invoice->get_country(); |
305 | 305 | $this->state = $invoice->get_state(); |
306 | 306 | $this->invoice = $invoice; |
307 | 307 | |
308 | - do_action_ref_array( 'getpaid_submissions_process_invoice', array( &$this ) ); |
|
308 | + do_action_ref_array('getpaid_submissions_process_invoice', array(&$this)); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | /** |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | * @return bool |
326 | 326 | */ |
327 | 327 | public function has_invoice() { |
328 | - return ! empty( $this->invoice ); |
|
328 | + return !empty($this->invoice); |
|
329 | 329 | } |
330 | 330 | |
331 | 331 | /* |
@@ -344,13 +344,13 @@ discard block |
||
344 | 344 | */ |
345 | 345 | public function process_items() { |
346 | 346 | |
347 | - $processor = new GetPaid_Payment_Form_Submission_Items( $this ); |
|
347 | + $processor = new GetPaid_Payment_Form_Submission_Items($this); |
|
348 | 348 | |
349 | - foreach ( $processor->items as $item ) { |
|
350 | - $this->add_item( $item ); |
|
349 | + foreach ($processor->items as $item) { |
|
350 | + $this->add_item($item); |
|
351 | 351 | } |
352 | 352 | |
353 | - do_action_ref_array( 'getpaid_submissions_process_items', array( &$this ) ); |
|
353 | + do_action_ref_array('getpaid_submissions_process_items', array(&$this)); |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | /** |
@@ -359,20 +359,20 @@ discard block |
||
359 | 359 | * @since 1.0.19 |
360 | 360 | * @param GetPaid_Form_Item $item |
361 | 361 | */ |
362 | - public function add_item( $item ) { |
|
362 | + public function add_item($item) { |
|
363 | 363 | |
364 | 364 | // Make sure that it is available for purchase. |
365 | - if ( ! $item->can_purchase() || isset( $this->items[ $item->get_id() ] ) ) { |
|
365 | + if (!$item->can_purchase() || isset($this->items[$item->get_id()])) { |
|
366 | 366 | return; |
367 | 367 | } |
368 | 368 | |
369 | 369 | // Each submission can only contain one recurring item. |
370 | - if ( $item->is_recurring() ) { |
|
370 | + if ($item->is_recurring()) { |
|
371 | 371 | $this->has_recurring = $item->get_id(); |
372 | 372 | } |
373 | 373 | |
374 | 374 | // Update the items and totals. |
375 | - $this->items[ $item->get_id() ] = $item; |
|
375 | + $this->items[$item->get_id()] = $item; |
|
376 | 376 | $this->totals['subtotal']['initial'] += $item->get_sub_total(); |
377 | 377 | $this->totals['subtotal']['recurring'] += $item->get_recurring_sub_total(); |
378 | 378 | |
@@ -386,17 +386,17 @@ discard block |
||
386 | 386 | * |
387 | 387 | * @since 1.0.19 |
388 | 388 | */ |
389 | - public function remove_item( $item_id ) { |
|
389 | + public function remove_item($item_id) { |
|
390 | 390 | |
391 | - if ( isset( $this->items[ $item_id ] ) ) { |
|
392 | - $this->totals['subtotal']['initial'] -= $this->items[ $item_id ]->get_sub_total(); |
|
393 | - $this->totals['subtotal']['recurring'] -= $this->items[ $item_id ]->get_recurring_sub_total(); |
|
391 | + if (isset($this->items[$item_id])) { |
|
392 | + $this->totals['subtotal']['initial'] -= $this->items[$item_id]->get_sub_total(); |
|
393 | + $this->totals['subtotal']['recurring'] -= $this->items[$item_id]->get_recurring_sub_total(); |
|
394 | 394 | |
395 | - if ( $this->items[ $item_id ]->is_recurring() ) { |
|
395 | + if ($this->items[$item_id]->is_recurring()) { |
|
396 | 396 | $this->has_recurring = 0; |
397 | 397 | } |
398 | 398 | |
399 | - unset( $this->items[ $item_id ] ); |
|
399 | + unset($this->items[$item_id]); |
|
400 | 400 | } |
401 | 401 | |
402 | 402 | } |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | */ |
409 | 409 | public function get_subtotal() { |
410 | 410 | |
411 | - if ( wpinv_prices_include_tax() ) { |
|
411 | + if (wpinv_prices_include_tax()) { |
|
412 | 412 | return $this->totals['subtotal']['initial'] - $this->totals['taxes']['initial']; |
413 | 413 | } |
414 | 414 | |
@@ -422,7 +422,7 @@ discard block |
||
422 | 422 | */ |
423 | 423 | public function get_recurring_subtotal() { |
424 | 424 | |
425 | - if ( wpinv_prices_include_tax() ) { |
|
425 | + if (wpinv_prices_include_tax()) { |
|
426 | 426 | return $this->totals['subtotal']['recurring'] - $this->totals['taxes']['recurring']; |
427 | 427 | } |
428 | 428 | |
@@ -446,7 +446,7 @@ discard block |
||
446 | 446 | * @return bool |
447 | 447 | */ |
448 | 448 | public function has_subscription_group() { |
449 | - return $this->has_recurring && getpaid_should_group_subscriptions( $this ) && 1 == count( getpaid_get_subscription_groups( $this ) ); |
|
449 | + return $this->has_recurring && getpaid_should_group_subscriptions($this) && 1 == count(getpaid_get_subscription_groups($this)); |
|
450 | 450 | } |
451 | 451 | |
452 | 452 | /** |
@@ -456,7 +456,7 @@ discard block |
||
456 | 456 | * @return bool |
457 | 457 | */ |
458 | 458 | public function has_multiple_subscription_groups() { |
459 | - return $this->has_recurring && 1 < count( getpaid_get_subscription_groups( $this ) ); |
|
459 | + return $this->has_recurring && 1 < count(getpaid_get_subscription_groups($this)); |
|
460 | 460 | } |
461 | 461 | |
462 | 462 | /* |
@@ -476,39 +476,39 @@ discard block |
||
476 | 476 | public function process_taxes() { |
477 | 477 | |
478 | 478 | // Abort if we're not using taxes. |
479 | - if ( ! $this->use_taxes() ) { |
|
479 | + if (!$this->use_taxes()) { |
|
480 | 480 | return; |
481 | 481 | } |
482 | 482 | |
483 | 483 | // If a custom country && state has been passed in, use it to calculate taxes. |
484 | - $country = $this->get_field( 'wpinv_country', 'billing' ); |
|
485 | - if ( ! empty( $country ) ) { |
|
484 | + $country = $this->get_field('wpinv_country', 'billing'); |
|
485 | + if (!empty($country)) { |
|
486 | 486 | $this->country = $country; |
487 | 487 | } |
488 | 488 | |
489 | - $state = $this->get_field( 'wpinv_state', 'billing' ); |
|
490 | - if ( ! empty( $state ) ) { |
|
489 | + $state = $this->get_field('wpinv_state', 'billing'); |
|
490 | + if (!empty($state)) { |
|
491 | 491 | $this->state = $state; |
492 | 492 | } |
493 | 493 | |
494 | 494 | // Confirm if the provided country and the ip country are similar. |
495 | - $address_confirmed = $this->get_field( 'confirm-address' ); |
|
496 | - if ( isset( $_POST['billing']['country'] ) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty( $address_confirmed ) ) { |
|
497 | - throw new Exception( __( 'The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing' ) ); |
|
495 | + $address_confirmed = $this->get_field('confirm-address'); |
|
496 | + if (isset($_POST['billing']['country']) && wpinv_should_validate_vat_number() && getpaid_get_ip_country() != $this->country && empty($address_confirmed)) { |
|
497 | + throw new Exception(__('The country of your current location must be the same as the country of your billing location or you must confirm the billing address is your home country.', 'invoicing')); |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | // Abort if the country is not taxable. |
501 | - if ( ! wpinv_is_country_taxable( $this->country ) ) { |
|
501 | + if (!wpinv_is_country_taxable($this->country)) { |
|
502 | 502 | return; |
503 | 503 | } |
504 | 504 | |
505 | - $processor = new GetPaid_Payment_Form_Submission_Taxes( $this ); |
|
505 | + $processor = new GetPaid_Payment_Form_Submission_Taxes($this); |
|
506 | 506 | |
507 | - foreach ( $processor->taxes as $tax ) { |
|
508 | - $this->add_tax( $tax ); |
|
507 | + foreach ($processor->taxes as $tax) { |
|
508 | + $this->add_tax($tax); |
|
509 | 509 | } |
510 | 510 | |
511 | - do_action_ref_array( 'getpaid_submissions_process_taxes', array( &$this ) ); |
|
511 | + do_action_ref_array('getpaid_submissions_process_taxes', array(&$this)); |
|
512 | 512 | } |
513 | 513 | |
514 | 514 | /** |
@@ -517,16 +517,16 @@ discard block |
||
517 | 517 | * @param array $tax An array of tax details. name, initial_tax, and recurring_tax are required. |
518 | 518 | * @since 1.0.19 |
519 | 519 | */ |
520 | - public function add_tax( $tax ) { |
|
520 | + public function add_tax($tax) { |
|
521 | 521 | |
522 | - if ( wpinv_round_tax_per_tax_rate() ) { |
|
523 | - $tax['initial_tax'] = wpinv_round_amount( $tax['initial_tax'] ); |
|
524 | - $tax['recurring_tax'] = wpinv_round_amount( $tax['recurring_tax'] ); |
|
522 | + if (wpinv_round_tax_per_tax_rate()) { |
|
523 | + $tax['initial_tax'] = wpinv_round_amount($tax['initial_tax']); |
|
524 | + $tax['recurring_tax'] = wpinv_round_amount($tax['recurring_tax']); |
|
525 | 525 | } |
526 | 526 | |
527 | - $this->taxes[ $tax['name'] ] = $tax; |
|
528 | - $this->totals['taxes']['initial'] += wpinv_sanitize_amount( $tax['initial_tax'] ); |
|
529 | - $this->totals['taxes']['recurring'] += wpinv_sanitize_amount( $tax['recurring_tax'] ); |
|
527 | + $this->taxes[$tax['name']] = $tax; |
|
528 | + $this->totals['taxes']['initial'] += wpinv_sanitize_amount($tax['initial_tax']); |
|
529 | + $this->totals['taxes']['recurring'] += wpinv_sanitize_amount($tax['recurring_tax']); |
|
530 | 530 | |
531 | 531 | } |
532 | 532 | |
@@ -535,12 +535,12 @@ discard block |
||
535 | 535 | * |
536 | 536 | * @since 1.0.19 |
537 | 537 | */ |
538 | - public function remove_tax( $tax_name ) { |
|
538 | + public function remove_tax($tax_name) { |
|
539 | 539 | |
540 | - if ( isset( $this->taxes[ $tax_name ] ) ) { |
|
541 | - $this->totals['taxes']['initial'] -= $this->taxes[ $tax_name ]['initial_tax']; |
|
542 | - $this->totals['taxes']['recurring'] -= $this->taxes[ $tax_name ]['recurring_tax']; |
|
543 | - unset( $this->taxes[ $tax_name ] ); |
|
540 | + if (isset($this->taxes[$tax_name])) { |
|
541 | + $this->totals['taxes']['initial'] -= $this->taxes[$tax_name]['initial_tax']; |
|
542 | + $this->totals['taxes']['recurring'] -= $this->taxes[$tax_name]['recurring_tax']; |
|
543 | + unset($this->taxes[$tax_name]); |
|
544 | 544 | } |
545 | 545 | |
546 | 546 | } |
@@ -554,11 +554,11 @@ discard block |
||
554 | 554 | |
555 | 555 | $use_taxes = wpinv_use_taxes(); |
556 | 556 | |
557 | - if ( $this->has_invoice() && ! $this->invoice->is_taxable() ) { |
|
557 | + if ($this->has_invoice() && !$this->invoice->is_taxable()) { |
|
558 | 558 | $use_taxes = false; |
559 | 559 | } |
560 | 560 | |
561 | - return apply_filters( 'getpaid_submission_use_taxes', $use_taxes, $this ); |
|
561 | + return apply_filters('getpaid_submission_use_taxes', $use_taxes, $this); |
|
562 | 562 | |
563 | 563 | } |
564 | 564 | |
@@ -607,13 +607,13 @@ discard block |
||
607 | 607 | |
608 | 608 | $initial_total = $this->get_subtotal() + $this->get_fee() + $this->get_tax(); |
609 | 609 | $recurring_total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax(); |
610 | - $processor = new GetPaid_Payment_Form_Submission_Discount( $this, $initial_total, $recurring_total ); |
|
610 | + $processor = new GetPaid_Payment_Form_Submission_Discount($this, $initial_total, $recurring_total); |
|
611 | 611 | |
612 | - foreach ( $processor->discounts as $discount ) { |
|
613 | - $this->add_discount( $discount ); |
|
612 | + foreach ($processor->discounts as $discount) { |
|
613 | + $this->add_discount($discount); |
|
614 | 614 | } |
615 | 615 | |
616 | - do_action_ref_array( 'getpaid_submissions_process_discounts', array( &$this ) ); |
|
616 | + do_action_ref_array('getpaid_submissions_process_discounts', array(&$this)); |
|
617 | 617 | } |
618 | 618 | |
619 | 619 | /** |
@@ -622,10 +622,10 @@ discard block |
||
622 | 622 | * @param array $discount An array of discount details. name, initial_discount, and recurring_discount are required. Include discount_code if the discount is from a discount code. |
623 | 623 | * @since 1.0.19 |
624 | 624 | */ |
625 | - public function add_discount( $discount ) { |
|
626 | - $this->discounts[ $discount['name'] ] = $discount; |
|
627 | - $this->totals['discount']['initial'] += wpinv_sanitize_amount( $discount['initial_discount'] ); |
|
628 | - $this->totals['discount']['recurring'] += wpinv_sanitize_amount( $discount['recurring_discount'] ); |
|
625 | + public function add_discount($discount) { |
|
626 | + $this->discounts[$discount['name']] = $discount; |
|
627 | + $this->totals['discount']['initial'] += wpinv_sanitize_amount($discount['initial_discount']); |
|
628 | + $this->totals['discount']['recurring'] += wpinv_sanitize_amount($discount['recurring_discount']); |
|
629 | 629 | } |
630 | 630 | |
631 | 631 | /** |
@@ -633,12 +633,12 @@ discard block |
||
633 | 633 | * |
634 | 634 | * @since 1.0.19 |
635 | 635 | */ |
636 | - public function remove_discount( $name ) { |
|
636 | + public function remove_discount($name) { |
|
637 | 637 | |
638 | - if ( isset( $this->discounts[ $name ] ) ) { |
|
639 | - $this->totals['discount']['initial'] -= $this->discounts[ $name ]['initial_discount']; |
|
640 | - $this->totals['discount']['recurring'] -= $this->discounts[ $name ]['recurring_discount']; |
|
641 | - unset( $this->discounts[ $name ] ); |
|
638 | + if (isset($this->discounts[$name])) { |
|
639 | + $this->totals['discount']['initial'] -= $this->discounts[$name]['initial_discount']; |
|
640 | + $this->totals['discount']['recurring'] -= $this->discounts[$name]['recurring_discount']; |
|
641 | + unset($this->discounts[$name]); |
|
642 | 642 | } |
643 | 643 | |
644 | 644 | } |
@@ -650,7 +650,7 @@ discard block |
||
650 | 650 | * @return bool |
651 | 651 | */ |
652 | 652 | public function has_discount_code() { |
653 | - return ! empty( $this->discounts['discount_code'] ); |
|
653 | + return !empty($this->discounts['discount_code']); |
|
654 | 654 | } |
655 | 655 | |
656 | 656 | /** |
@@ -707,13 +707,13 @@ discard block |
||
707 | 707 | */ |
708 | 708 | public function process_fees() { |
709 | 709 | |
710 | - $fees_processor = new GetPaid_Payment_Form_Submission_Fees( $this ); |
|
710 | + $fees_processor = new GetPaid_Payment_Form_Submission_Fees($this); |
|
711 | 711 | |
712 | - foreach ( $fees_processor->fees as $fee ) { |
|
713 | - $this->add_fee( $fee ); |
|
712 | + foreach ($fees_processor->fees as $fee) { |
|
713 | + $this->add_fee($fee); |
|
714 | 714 | } |
715 | 715 | |
716 | - do_action_ref_array( 'getpaid_submissions_process_fees', array( &$this ) ); |
|
716 | + do_action_ref_array('getpaid_submissions_process_fees', array(&$this)); |
|
717 | 717 | } |
718 | 718 | |
719 | 719 | /** |
@@ -722,11 +722,11 @@ discard block |
||
722 | 722 | * @param array $fee An array of fee details. name, initial_fee, and recurring_fee are required. |
723 | 723 | * @since 1.0.19 |
724 | 724 | */ |
725 | - public function add_fee( $fee ) { |
|
725 | + public function add_fee($fee) { |
|
726 | 726 | |
727 | - $this->fees[ $fee['name'] ] = $fee; |
|
728 | - $this->totals['fees']['initial'] += wpinv_sanitize_amount( $fee['initial_fee'] ); |
|
729 | - $this->totals['fees']['recurring'] += wpinv_sanitize_amount( $fee['recurring_fee'] ); |
|
727 | + $this->fees[$fee['name']] = $fee; |
|
728 | + $this->totals['fees']['initial'] += wpinv_sanitize_amount($fee['initial_fee']); |
|
729 | + $this->totals['fees']['recurring'] += wpinv_sanitize_amount($fee['recurring_fee']); |
|
730 | 730 | |
731 | 731 | } |
732 | 732 | |
@@ -735,12 +735,12 @@ discard block |
||
735 | 735 | * |
736 | 736 | * @since 1.0.19 |
737 | 737 | */ |
738 | - public function remove_fee( $name ) { |
|
738 | + public function remove_fee($name) { |
|
739 | 739 | |
740 | - if ( isset( $this->fees[ $name ] ) ) { |
|
741 | - $this->totals['fees']['initial'] -= $this->fees[ $name ]['initial_fee']; |
|
742 | - $this->totals['fees']['recurring'] -= $this->fees[ $name ]['recurring_fee']; |
|
743 | - unset( $this->fees[ $name ] ); |
|
740 | + if (isset($this->fees[$name])) { |
|
741 | + $this->totals['fees']['initial'] -= $this->fees[$name]['initial_fee']; |
|
742 | + $this->totals['fees']['recurring'] -= $this->fees[$name]['recurring_fee']; |
|
743 | + unset($this->fees[$name]); |
|
744 | 744 | } |
745 | 745 | |
746 | 746 | } |
@@ -779,7 +779,7 @@ discard block |
||
779 | 779 | * @since 1.0.19 |
780 | 780 | */ |
781 | 781 | public function has_fees() { |
782 | - return count( $this->fees ) !== 0; |
|
782 | + return count($this->fees) !== 0; |
|
783 | 783 | } |
784 | 784 | |
785 | 785 | /* |
@@ -797,7 +797,7 @@ discard block |
||
797 | 797 | * @since 1.0.19 |
798 | 798 | */ |
799 | 799 | public function is_initial_fetch() { |
800 | - return empty( $this->data['initial_state'] ); |
|
800 | + return empty($this->data['initial_state']); |
|
801 | 801 | } |
802 | 802 | |
803 | 803 | /** |
@@ -807,7 +807,7 @@ discard block |
||
807 | 807 | */ |
808 | 808 | public function get_total() { |
809 | 809 | $total = $this->get_subtotal() + $this->get_fee() + $this->get_tax() - $this->get_discount(); |
810 | - return max( $total, 0 ); |
|
810 | + return max($total, 0); |
|
811 | 811 | } |
812 | 812 | |
813 | 813 | /** |
@@ -817,7 +817,7 @@ discard block |
||
817 | 817 | */ |
818 | 818 | public function get_recurring_total() { |
819 | 819 | $total = $this->get_recurring_subtotal() + $this->get_recurring_fee() + $this->get_recurring_tax() - $this->get_recurring_discount(); |
820 | - return max( $total, 0 ); |
|
820 | + return max($total, 0); |
|
821 | 821 | } |
822 | 822 | |
823 | 823 | /** |
@@ -829,12 +829,12 @@ discard block |
||
829 | 829 | $initial = $this->get_total(); |
830 | 830 | $recurring = $this->get_recurring_total(); |
831 | 831 | |
832 | - if ( $this->has_recurring == 0 ) { |
|
832 | + if ($this->has_recurring == 0) { |
|
833 | 833 | $recurring = 0; |
834 | 834 | } |
835 | 835 | |
836 | 836 | $collect = $initial > 0 || $recurring > 0; |
837 | - return apply_filters( 'getpaid_submission_should_collect_payment_details', $collect, $this ); |
|
837 | + return apply_filters('getpaid_submission_should_collect_payment_details', $collect, $this); |
|
838 | 838 | } |
839 | 839 | |
840 | 840 | /** |
@@ -843,7 +843,7 @@ discard block |
||
843 | 843 | * @since 1.0.19 |
844 | 844 | */ |
845 | 845 | public function get_billing_email() { |
846 | - return apply_filters( 'getpaid_get_submission_billing_email', $this->get_field( 'billing_email' ), $this ); |
|
846 | + return apply_filters('getpaid_get_submission_billing_email', $this->get_field('billing_email'), $this); |
|
847 | 847 | } |
848 | 848 | |
849 | 849 | /** |
@@ -853,7 +853,7 @@ discard block |
||
853 | 853 | */ |
854 | 854 | public function has_billing_email() { |
855 | 855 | $billing_email = $this->get_billing_email(); |
856 | - return ! empty( $billing_email ) && is_email( $billing_email ); |
|
856 | + return !empty($billing_email) && is_email($billing_email); |
|
857 | 857 | } |
858 | 858 | |
859 | 859 | /** |
@@ -883,8 +883,8 @@ discard block |
||
883 | 883 | * @since 1.0.19 |
884 | 884 | * @return mixed|null |
885 | 885 | */ |
886 | - public function get_field( $field, $sub_array_key = null ) { |
|
887 | - return getpaid_get_array_field( $this->data, $field, $sub_array_key ); |
|
886 | + public function get_field($field, $sub_array_key = null) { |
|
887 | + return getpaid_get_array_field($this->data, $field, $sub_array_key); |
|
888 | 888 | } |
889 | 889 | |
890 | 890 | /** |
@@ -892,8 +892,8 @@ discard block |
||
892 | 892 | * |
893 | 893 | * @since 1.0.19 |
894 | 894 | */ |
895 | - public function is_required_field_set( $field ) { |
|
896 | - return empty( $field['required'] ) || ! empty( $this->data[ $field['id'] ] ); |
|
895 | + public function is_required_field_set($field) { |
|
896 | + return empty($field['required']) || !empty($this->data[$field['id']]); |
|
897 | 897 | } |
898 | 898 | |
899 | 899 | /** |
@@ -901,8 +901,8 @@ discard block |
||
901 | 901 | * |
902 | 902 | * @since 1.0.19 |
903 | 903 | */ |
904 | - public function format_amount( $amount ) { |
|
905 | - return wpinv_price( $amount, $this->get_currency() ); |
|
904 | + public function format_amount($amount) { |
|
905 | + return wpinv_price($amount, $this->get_currency()); |
|
906 | 906 | } |
907 | 907 | |
908 | 908 | } |