@@ -7,11 +7,11 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$tag = isset( $element['level'] ) ? trim( $element['level'] ) : 'h3'; |
|
13 | -$text = isset( $element['text'] ) ? trim( $element['text'] ) : ''; |
|
12 | +$tag = isset($element['level']) ? trim($element['level']) : 'h3'; |
|
13 | +$text = isset($element['text']) ? trim($element['text']) : ''; |
|
14 | 14 | |
15 | -if ( ! empty( $text ) ) { |
|
15 | +if (!empty($text)) { |
|
16 | 16 | echo "<$tag>$text</$tag>"; |
17 | 17 | } |
@@ -7,17 +7,17 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | echo aui()->input( |
13 | 13 | array( |
14 | - 'name' => esc_attr( $id ), |
|
15 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
16 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
17 | - 'required' => ! empty( $required ), |
|
18 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ), |
|
14 | + 'name' => esc_attr($id), |
|
15 | + 'id' => esc_attr($id) . uniqid('_'), |
|
16 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
17 | + 'required' => !empty($required), |
|
18 | + 'label' => empty($label) ? '' : wp_kses_post($label), |
|
19 | 19 | 'label_type' => 'vertical', |
20 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
20 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
21 | 21 | 'type' => 'time', |
22 | 22 | ) |
23 | 23 | ); |
@@ -7,16 +7,16 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | echo aui()->input( |
13 | 13 | array( |
14 | - 'name' => esc_attr( $id ), |
|
15 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
16 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
17 | - 'required' => ! empty( $required ), |
|
18 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ), |
|
14 | + 'name' => esc_attr($id), |
|
15 | + 'id' => esc_attr($id) . uniqid('_'), |
|
16 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
17 | + 'required' => !empty($required), |
|
18 | + 'label' => empty($label) ? '' : wp_kses_post($label), |
|
19 | 19 | 'label_type' => 'vertical', |
20 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
20 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
21 | 21 | ) |
22 | 22 | ); |
@@ -7,16 +7,16 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | echo aui()->textarea( |
13 | 13 | array( |
14 | - 'name' => esc_attr( $id ), |
|
15 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
16 | - 'placeholder'=> empty( $placeholder ) ? '' : esc_attr( $placeholder ), |
|
17 | - 'required' => ! empty( $required ), |
|
18 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ), |
|
14 | + 'name' => esc_attr($id), |
|
15 | + 'id' => esc_attr($id) . uniqid('_'), |
|
16 | + 'placeholder'=> empty($placeholder) ? '' : esc_attr($placeholder), |
|
17 | + 'required' => !empty($required), |
|
18 | + 'label' => empty($label) ? '' : wp_kses_post($label), |
|
19 | 19 | 'label_type' => 'vertical', |
20 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
20 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
21 | 21 | ) |
22 | 22 | ); |
@@ -7,16 +7,16 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | 12 | echo aui()->input( |
13 | 13 | array( |
14 | 14 | 'type' => 'checkbox', |
15 | - 'name' => esc_attr( $id ), |
|
16 | - 'id' => esc_attr( $id ) . uniqid( '_' ), |
|
17 | - 'required' => ! empty( $required ), |
|
18 | - 'label' => empty( $label ) ? '' : wp_kses_post( $label ), |
|
19 | - 'value' => esc_attr__( 'Yes', 'invoicing' ), |
|
20 | - 'help_text' => empty( $description ) ? '' : wp_kses_post( $description ), |
|
15 | + 'name' => esc_attr($id), |
|
16 | + 'id' => esc_attr($id) . uniqid('_'), |
|
17 | + 'required' => !empty($required), |
|
18 | + 'label' => empty($label) ? '' : wp_kses_post($label), |
|
19 | + 'value' => esc_attr__('Yes', 'invoicing'), |
|
20 | + 'help_text' => empty($description) ? '' : wp_kses_post($description), |
|
21 | 21 | ) |
22 | 22 | ); |
@@ -7,46 +7,46 @@ discard block |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -if ( empty( $fields ) ) { |
|
12 | +if (empty($fields)) { |
|
13 | 13 | return; |
14 | 14 | } |
15 | 15 | |
16 | 16 | // Prepare the user's country. |
17 | -$country = is_user_logged_in() ? get_user_meta( get_current_user_id(), '_wpinv_country', true ) : ''; |
|
18 | -$country = empty( $country ) ? wpinv_get_default_country() : $country; |
|
17 | +$country = is_user_logged_in() ? get_user_meta(get_current_user_id(), '_wpinv_country', true) : ''; |
|
18 | +$country = empty($country) ? wpinv_get_default_country() : $country; |
|
19 | 19 | |
20 | 20 | // A prefix for all ids (so that a form can be included in the same page multiple times). |
21 | -$uniqid = uniqid( '_' ); |
|
21 | +$uniqid = uniqid('_'); |
|
22 | 22 | |
23 | -foreach ( $fields as $address_field ) { |
|
23 | +foreach ($fields as $address_field) { |
|
24 | 24 | |
25 | 25 | // Skip if it is hidden. |
26 | - if ( empty( $address_field['visible'] ) ) { |
|
26 | + if (empty($address_field['visible'])) { |
|
27 | 27 | continue; |
28 | 28 | } |
29 | 29 | |
30 | - $placeholder = empty( $address_field['placeholder'] ) ? '' : esc_attr( $address_field['placeholder'] ); |
|
31 | - $description = empty( $address_field['description'] ) ? '' : wp_kses_post( $address_field['description'] ); |
|
32 | - $value = is_user_logged_in() ? get_user_meta( get_current_user_id(), '_' . $address_field['name'], true ) : ''; |
|
33 | - $label = empty( $address_field['label'] ) ? '' : wp_kses_post( $address_field['label'] ); |
|
30 | + $placeholder = empty($address_field['placeholder']) ? '' : esc_attr($address_field['placeholder']); |
|
31 | + $description = empty($address_field['description']) ? '' : wp_kses_post($address_field['description']); |
|
32 | + $value = is_user_logged_in() ? get_user_meta(get_current_user_id(), '_' . $address_field['name'], true) : ''; |
|
33 | + $label = empty($address_field['label']) ? '' : wp_kses_post($address_field['label']); |
|
34 | 34 | |
35 | - if ( ! empty( $address_field['required'] ) ) { |
|
35 | + if (!empty($address_field['required'])) { |
|
36 | 36 | $label .= "<span class='text-danger'> *</span>"; |
37 | 37 | } |
38 | 38 | |
39 | 39 | // Display the country. |
40 | - if ( 'wpinv_country' == $address_field['name'] ) { |
|
40 | + if ('wpinv_country' == $address_field['name']) { |
|
41 | 41 | |
42 | - echo aui()->select( array( |
|
42 | + echo aui()->select(array( |
|
43 | 43 | 'options' => wpinv_get_country_list(), |
44 | 44 | 'name' => 'wpinv_country', |
45 | 45 | 'id' => 'wpinv_country' . $uniqid, |
46 | - 'value' => sanitize_text_field( $country ), |
|
46 | + 'value' => sanitize_text_field($country), |
|
47 | 47 | 'placeholder' => $placeholder, |
48 | - 'required' => ! empty( $address_field['required'] ), |
|
49 | - 'label' => wp_kses_post( $label ), |
|
48 | + 'required' => !empty($address_field['required']), |
|
49 | + 'label' => wp_kses_post($label), |
|
50 | 50 | 'label_type' => 'vertical', |
51 | 51 | 'help_text' => $description, |
52 | 52 | 'class' => 'wpinv_country', |
@@ -56,24 +56,24 @@ discard block |
||
56 | 56 | } |
57 | 57 | |
58 | 58 | // Display the state. |
59 | - if ( 'wpinv_state' == $address_field['name'] ) { |
|
59 | + if ('wpinv_state' == $address_field['name']) { |
|
60 | 60 | |
61 | - $states = wpinv_get_country_states( $country ); |
|
61 | + $states = wpinv_get_country_states($country); |
|
62 | 62 | |
63 | - if ( empty( $value ) ) { |
|
63 | + if (empty($value)) { |
|
64 | 64 | $value = wpinv_get_default_state(); |
65 | 65 | } |
66 | 66 | |
67 | - if ( ! empty( $states ) ) { |
|
67 | + if (!empty($states)) { |
|
68 | 68 | |
69 | - echo aui()->select( array( |
|
69 | + echo aui()->select(array( |
|
70 | 70 | 'options' => $states, |
71 | 71 | 'name' => 'wpinv_state', |
72 | 72 | 'id' => 'wpinv_state' . $uniqid, |
73 | - 'value' => sanitize_text_field( $value ), |
|
73 | + 'value' => sanitize_text_field($value), |
|
74 | 74 | 'placeholder' => $placeholder, |
75 | - 'required' => ! empty( $address_field['required'] ), |
|
76 | - 'label' => wp_kses_post( $label ), |
|
75 | + 'required' => !empty($address_field['required']), |
|
76 | + 'label' => wp_kses_post($label), |
|
77 | 77 | 'label_type' => 'vertical', |
78 | 78 | 'help_text' => $description, |
79 | 79 | 'class' => 'wpinv_state', |
@@ -88,8 +88,8 @@ discard block |
||
88 | 88 | 'name' => 'wpinv_state', |
89 | 89 | 'id' => 'wpinv_state' . $uniqid, |
90 | 90 | 'placeholder'=> $placeholder, |
91 | - 'required' => ! empty( $address_field['required'] ), |
|
92 | - 'label' => wp_kses_post( $label ), |
|
91 | + 'required' => !empty($address_field['required']), |
|
92 | + 'label' => wp_kses_post($label), |
|
93 | 93 | 'label_type' => 'vertical', |
94 | 94 | 'help_text' => $description, |
95 | 95 | 'value' => $value, |
@@ -101,16 +101,16 @@ discard block |
||
101 | 101 | |
102 | 102 | echo aui()->input( |
103 | 103 | array( |
104 | - 'name' => esc_attr( $address_field['name'] ), |
|
105 | - 'id' => esc_attr( $address_field['name'] ) . $uniqid, |
|
106 | - 'required' => ! empty( $address_field['required'] ), |
|
104 | + 'name' => esc_attr($address_field['name']), |
|
105 | + 'id' => esc_attr($address_field['name']) . $uniqid, |
|
106 | + 'required' => !empty($address_field['required']), |
|
107 | 107 | 'placeholder'=> $placeholder, |
108 | - 'label' => wp_kses_post( $label ), |
|
108 | + 'label' => wp_kses_post($label), |
|
109 | 109 | 'label_type' => 'vertical', |
110 | 110 | 'help_text' => $description, |
111 | 111 | 'type' => 'text', |
112 | 112 | 'value' => $value, |
113 | - 'class' => esc_attr( $address_field['name'] ), |
|
113 | + 'class' => esc_attr($address_field['name']), |
|
114 | 114 | ) |
115 | 115 | ); |
116 | 116 |
@@ -7,12 +7,12 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$placeholder = esc_attr( $input_label ); |
|
13 | -$label = sanitize_text_field( $button_label ); |
|
12 | +$placeholder = esc_attr($input_label); |
|
13 | +$label = sanitize_text_field($button_label); |
|
14 | 14 | |
15 | -if ( ! empty( $description ) ) { |
|
15 | +if (!empty($description)) { |
|
16 | 16 | $description = "<small class='form-text text-muted'>$description</small>"; |
17 | 17 | } else { |
18 | 18 | $description = ''; |
@@ -7,10 +7,10 @@ |
||
7 | 7 | * @version 1.0.19 |
8 | 8 | */ |
9 | 9 | |
10 | -defined( 'ABSPATH' ) || exit; |
|
10 | +defined('ABSPATH') || exit; |
|
11 | 11 | |
12 | -$text = isset( $element['text'] ) ? trim( $element['text'] ) : ''; |
|
12 | +$text = isset($element['text']) ? trim($element['text']) : ''; |
|
13 | 13 | |
14 | -if ( ! empty( $text ) ) { |
|
14 | +if (!empty($text)) { |
|
15 | 15 | echo "<p>$text</p>"; |
16 | 16 | } |
@@ -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,39 +21,39 @@ 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 form. |
27 | - $form = new GetPaid_Payment_Form( $post ); |
|
27 | + $form = new GetPaid_Payment_Form($post); |
|
28 | 28 | |
29 | 29 | ?> |
30 | 30 | |
31 | 31 | <div class='bsui' style='padding-top: 10px;'> |
32 | - <?php do_action( 'wpinv_payment_form_before_info_metabox', $form ); ?> |
|
32 | + <?php do_action('wpinv_payment_form_before_info_metabox', $form); ?> |
|
33 | 33 | |
34 | 34 | <div class="wpinv_payment_form_shortcode form-group row"> |
35 | 35 | <label for="wpinv_payment_form_shortcode" class="col-sm-12 col-form-label"> |
36 | - <?php _e( 'Payment Form Shortcode', 'invoicing' );?> |
|
37 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a payment form', 'invoicing' ); ?>"></span> |
|
36 | + <?php _e('Payment Form Shortcode', 'invoicing'); ?> |
|
37 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a payment form', 'invoicing'); ?>"></span> |
|
38 | 38 | </label> |
39 | 39 | |
40 | 40 | <div class="col-sm-12"> |
41 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?>]" style="width: 100%;" /> |
|
41 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?>]" style="width: 100%;" /> |
|
42 | 42 | </div> |
43 | 43 | </div> |
44 | 44 | |
45 | 45 | <div class="wpinv_payment_form_buy_shortcode form-group row"> |
46 | 46 | <label for="wpinv_payment_form_buy_shortcode" class="col-sm-12 col-form-label"> |
47 | - <?php _e( 'Payment Button Shortcode', 'invoicing' );?> |
|
48 | - <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e( 'Displays a buy now button', 'invoicing' ); ?>"></span> |
|
47 | + <?php _e('Payment Button Shortcode', 'invoicing'); ?> |
|
48 | + <span class="wpi-help-tip dashicons dashicons-editor-help" title="<?php esc_attr_e('Displays a buy now button', 'invoicing'); ?>"></span> |
|
49 | 49 | </label> |
50 | 50 | |
51 | 51 | <div class="col-sm-12"> |
52 | - <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr( $form->get_id() ); ?> button='Buy Now']" style="width: 100%;" /> |
|
52 | + <input onClick="this.select()" type="text" id="wpinv_payment_form_buy_shortcode" value="[getpaid form=<?php echo esc_attr($form->get_id()); ?> button='Buy Now']" style="width: 100%;" /> |
|
53 | 53 | </div> |
54 | 54 | </div> |
55 | 55 | |
56 | - <?php do_action( 'wpinv_payment_form_info_metabox', $form ); ?> |
|
56 | + <?php do_action('wpinv_payment_form_info_metabox', $form); ?> |
|
57 | 57 | </div> |
58 | 58 | <?php |
59 | 59 |