Passed
Push — master ( c6d0db...756836 )
by Brian
04:55 queued 28s
created
templates/payment-forms/elements/address.php 1 patch
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -7,46 +7,46 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
templates/payment-forms/elements/discount.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,12 +7,12 @@
 block discarded – undo
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 = '';
Please login to merge, or discard this patch.
templates/payment-forms/elements/paragraph.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -7,10 +7,10 @@
 block discarded – undo
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
 }
Please login to merge, or discard this patch.
includes/admin/meta-boxes/class-getpaid-meta-box-payment-form-info.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
includes/data/default-payment-form.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @version 1.0.19
9 9
  */
10 10
 
11
-defined( 'ABSPATH' ) || exit;
11
+defined('ABSPATH') || exit;
12 12
 
13 13
 return array(
14 14
 
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
         'placeholder' => '[email protected]',
18 18
         'value'       => '',
19
-        'label'       => __( 'Billing Email', 'invoicing' ),
19
+        'label'       => __('Billing Email', 'invoicing'),
20 20
         'description' => '',
21 21
         'required'    => true,
22 22
         'id'          => 'mmdwqzpox',
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
             array(
35 35
                 'placeholder'  => 'Jon',
36 36
                 'value'        => '',
37
-                'label'        => __( 'First Name', 'invoicing' ),
37
+                'label'        => __('First Name', 'invoicing'),
38 38
                 'description'  => '',
39 39
                 'required'     => false,
40 40
                 'visible'      => true,
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
             array(
45 45
                 'placeholder'  => 'Snow',
46 46
                 'value'        => '',
47
-                'label'        => __( 'Last Name', 'invoicing' ),
47
+                'label'        => __('Last Name', 'invoicing'),
48 48
                 'description'  => '',
49 49
                 'required'     => false,
50 50
                 'visible'      => true,
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
             array(
55 55
                 'placeholder'  => '',
56 56
                 'value'        => '',
57
-                'label'        => __( 'Address', 'invoicing' ),
57
+                'label'        => __('Address', 'invoicing'),
58 58
                 'description'  => '',
59 59
                 'required'     => false,
60 60
                 'visible'      => true,
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
             array(
65 65
                 'placeholder'  => '',
66 66
                 'value'        => '',
67
-                'label'        => __( 'City', 'invoicing' ),
67
+                'label'        => __('City', 'invoicing'),
68 68
                 'description'  => '',
69 69
                 'required'     => false,
70 70
                 'visible'      => true,
@@ -72,9 +72,9 @@  discard block
 block discarded – undo
72 72
             ),
73 73
 
74 74
             array(
75
-                'placeholder'  => __( 'Select your country' ),
75
+                'placeholder'  => __('Select your country'),
76 76
                 'value'        => '',
77
-                'label'        => __( 'Country', 'invoicing' ),
77
+                'label'        => __('Country', 'invoicing'),
78 78
                 'description'  => '',
79 79
                 'required'     => false,
80 80
                 'visible'      => true,
@@ -82,9 +82,9 @@  discard block
 block discarded – undo
82 82
             ),
83 83
 
84 84
             array(
85
-                'placeholder'  => __( 'Choose a state', 'invoicing' ),
85
+                'placeholder'  => __('Choose a state', 'invoicing'),
86 86
                 'value'        => '',
87
-                'label'        => __( 'State / Province', 'invoicing' ),
87
+                'label'        => __('State / Province', 'invoicing'),
88 88
                 'description'  => '',
89 89
                 'required'     => false,
90 90
                 'visible'      => true,
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
             array(
95 95
                 'placeholder'  => '',
96 96
                 'value'        => '',
97
-                'label'        => __( 'ZIP / Postcode', 'invoicing' ),
97
+                'label'        => __('ZIP / Postcode', 'invoicing'),
98 98
                 'description'  => '',
99 99
                 'required'     => false,
100 100
                 'visible'      => true,
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
             array(
105 105
                 'placeholder'  => '',
106 106
                 'value'        => '',
107
-                'label'        => __( 'Phone', 'invoicing' ),
107
+                'label'        => __('Phone', 'invoicing'),
108 108
                 'description'  => '',
109 109
                 'required'     => false,
110 110
                 'visible'      => true,
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
             array(
115 115
                 'placeholder'  => '',
116 116
                 'value'        => '',
117
-                'label'        => __( 'Company', 'invoicing' ),
117
+                'label'        => __('Company', 'invoicing'),
118 118
                 'description'  => '',
119 119
                 'required'     => false,
120 120
                 'visible'      => false,
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
             array(
125 125
                 'placeholder'  => '',
126 126
                 'value'        => '',
127
-                'label'        => __( 'VAT Number', 'invoicing' ),
127
+                'label'        => __('VAT Number', 'invoicing'),
128 128
                 'description'  => '',
129 129
                 'required'     => false,
130 130
                 'visible'      => false,
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
     ),
147 147
 
148 148
     array(
149
-        'text'    => __( 'Select Payment Method', 'invoicing' ),
149
+        'text'    => __('Select Payment Method', 'invoicing'),
150 150
         'id'          => 'gtscicd',
151 151
         'name'        => 'gtscicd',
152 152
         'type'        => 'gateway_select',
@@ -158,8 +158,8 @@  discard block
 block discarded – undo
158 158
 
159 159
         'value'       =>'',
160 160
         'class'       => 'btn-primary',
161
-        'label'       => __( 'Pay Now »', 'invoicing' ),
162
-        'description' => __( 'By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ),
161
+        'label'       => __('Pay Now »', 'invoicing'),
162
+        'description' => __('By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'),
163 163
         'id'          => 'rtqljyy',
164 164
         'name'        => 'rtqljyy',
165 165
         'type'        => 'pay_button',
Please login to merge, or discard this patch.
includes/data/sample-payment-form.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
  * @version 1.0.19
9 9
  */
10 10
 
11
-defined( 'ABSPATH' ) || exit;
11
+defined('ABSPATH') || exit;
12 12
 
13 13
 return array(
14 14
 
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
         'placeholder' => '[email protected]',
18 18
         'value'       => '',
19
-        'label'       => __( 'Billing Email', 'invoicing' ),
19
+        'label'       => __('Billing Email', 'invoicing'),
20 20
         'description' => '',
21 21
         'required'    => true,
22 22
         'id'          => 'mmdwqzpox',
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
     ),
39 39
 
40 40
     array(
41
-        'text'    => __( 'Select Payment Method', 'invoicing' ),
41
+        'text'    => __('Select Payment Method', 'invoicing'),
42 42
         'id'          => 'gtscicd',
43 43
         'name'        => 'gtscicd',
44 44
         'type'        => 'gateway_select',
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 
51 51
         'value'       =>'',
52 52
         'class'       => 'btn-primary',
53
-        'label'       => __( 'Pay Now »', 'invoicing' ),
54
-        'description' => __( 'By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing' ),
53
+        'label'       => __('Pay Now »', 'invoicing'),
54
+        'description' => __('By continuing with your payment, you are agreeing to our privacy policy and terms of service.', 'invoicing'),
55 55
         'id'          => 'rtqljyy',
56 56
         'name'        => 'rtqljyy',
57 57
         'type'        => 'pay_button',
Please login to merge, or discard this patch.
templates/payment-forms/variations/radio.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,17 +7,17 @@  discard block
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 // Prepare the selectable items.
13 13
 $selectable = array();
14
-foreach ( $form->get_items() as $item ) {
15
-    if ( ! $item->is_required ) {
16
-        $selectable[$item->get_id()] = $item->get_name() . ' &mdash; ' . wpinv_price( wpinv_format_amount( $item->get_initial_price() ) );
14
+foreach ($form->get_items() as $item) {
15
+    if (!$item->is_required) {
16
+        $selectable[$item->get_id()] = $item->get_name() . ' &mdash; ' . wpinv_price(wpinv_format_amount($item->get_initial_price()));
17 17
     }
18 18
 }
19 19
 
20
-if ( empty( $selectable ) ) {
20
+if (empty($selectable)) {
21 21
     return;
22 22
 }
23 23
 
@@ -27,9 +27,9 @@  discard block
 block discarded – undo
27 27
 echo aui()->radio(
28 28
     array(
29 29
         'name'       => 'getpaid-payment-form-selected-item',
30
-        'id'         => 'getpaid-payment-form-selected-item' . uniqid( '_' ),
30
+        'id'         => 'getpaid-payment-form-selected-item' . uniqid('_'),
31 31
         'required'   => true,
32
-        'label'      => __( 'Select Item', 'invoicing' ),
32
+        'label'      => __('Select Item', 'invoicing'),
33 33
         'label_type' => 'vertical',
34 34
         'inline'     => false,
35 35
         'options'    => $selectable,
Please login to merge, or discard this patch.
templates/payment-forms/variations/checkbox.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -7,29 +7,29 @@
 block discarded – undo
7 7
  * @version 1.0.19
8 8
  */
9 9
 
10
-defined( 'ABSPATH' ) || exit;
10
+defined('ABSPATH') || exit;
11 11
 
12 12
 // Prepare the selectable items.
13 13
 $selectable = array();
14
-foreach ( $form->get_items() as $item ) {
15
-    if ( ! $item->is_required ) {
16
-        $selectable[$item->get_id()] = $item->get_name() . ' &mdash; ' . wpinv_price( wpinv_format_amount( $item->get_initial_price() ) );
14
+foreach ($form->get_items() as $item) {
15
+    if (!$item->is_required) {
16
+        $selectable[$item->get_id()] = $item->get_name() . ' &mdash; ' . wpinv_price(wpinv_format_amount($item->get_initial_price()));
17 17
     }
18 18
 }
19 19
 
20
-if ( empty( $selectable ) ) {
20
+if (empty($selectable)) {
21 21
     return;
22 22
 }
23 23
 
24 24
 echo '<div class="getpaid-payment-form-items-checkbox form-group">';
25 25
 
26
-foreach ( $selectable as $item_id => $item_name ) {
26
+foreach ($selectable as $item_id => $item_name) {
27 27
 
28 28
     echo aui()->input(
29 29
         array(
30 30
             'type'       => 'checkbox',
31 31
             'name'       => 'getpaid-payment-form-selected-item',
32
-            'id'         => 'getpaid-payment-form-selected-item' . uniqid( '_' ) . $item_id,
32
+            'id'         => 'getpaid-payment-form-selected-item' . uniqid('_') . $item_id,
33 33
             'label'      => $item_name,
34 34
             'value'      => $item_id,
35 35
             'no_wrap'    => true,
Please login to merge, or discard this patch.
includes/admin/meta-boxes/class-getpaid-meta-box-invoice-details.php 1 patch
Spacing   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@  discard block
 block discarded – undo
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,13 +21,13 @@  discard block
 block discarded – undo
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 invoice.
27
-        $invoice = new WPInv_Invoice( $post );
27
+        $invoice = new WPInv_Invoice($post);
28 28
 
29 29
         // Nonce field.
30
-        wp_nonce_field( 'wpinv_details', 'wpinv_details_nonce' ) ;
30
+        wp_nonce_field('wpinv_details', 'wpinv_details_nonce');
31 31
 
32 32
 
33 33
         ?>
@@ -46,10 +46,10 @@  discard block
 block discarded – undo
46 46
 
47 47
                 <div class="bsui" style="margin-top: 1.5rem" id="gdmbx2-metabox-wpinv_details">
48 48
 
49
-                    <?php if ( ! $invoice->is_draft() ) : ?>
49
+                    <?php if (!$invoice->is_draft()) : ?>
50 50
                         <div class="form-group">
51
-                            <strong><?php _e( 'Viewed by Customer:', 'invoicing' );?></strong>
52
-                            <?php ( $invoice->get_is_viewed() ) ? _e( 'Yes', 'invoicing' ) : _e( 'No', 'invoicing' ); ?>
51
+                            <strong><?php _e('Viewed by Customer:', 'invoicing'); ?></strong>
52
+                            <?php ($invoice->get_is_viewed()) ? _e('Yes', 'invoicing') : _e('No', 'invoicing'); ?>
53 53
                         </div>
54 54
                     <?php endif; ?>
55 55
 
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
                                 'type'        => 'datepicker',
62 62
                                 'id'          => 'wpinv_date_created',
63 63
                                 'name'        => 'date_created',
64
-                                'label'       => __( 'Invoice Date:', 'invoicing' ) . getpaid_get_help_tip( __( 'The date this invoice was created. This allows you to backdate an invoice.', 'invoicing' ) ),
64
+                                'label'       => __('Invoice Date:', 'invoicing') . getpaid_get_help_tip(__('The date this invoice was created. This allows you to backdate an invoice.', 'invoicing')),
65 65
                                 'label_type'  => 'vertical',
66 66
                                 'placeholder' => 'YYYY-MM-DD 00:00',
67 67
                                 'class'       => 'form-control-sm',
68
-                                'value'       => $invoice->get_date_created( 'edit' ),
68
+                                'value'       => $invoice->get_date_created('edit'),
69 69
                                 'extra_attributes' => array(
70 70
                                     'data-enable-time' => 'true',
71 71
                                     'data-time_24hr'   => 'true',
@@ -76,37 +76,37 @@  discard block
 block discarded – undo
76 76
                         );
77 77
 
78 78
                         // Due date.
79
-                        if ( $invoice->is_type( 'invoice' ) && wpinv_get_option( 'overdue_active' ) && ( $invoice->needs_payment() || $invoice->is_draft() ) ) {
79
+                        if ($invoice->is_type('invoice') && wpinv_get_option('overdue_active') && ($invoice->needs_payment() || $invoice->is_draft())) {
80 80
 
81 81
                             echo aui()->input(
82 82
                                 array(
83 83
                                     'type'        => 'text',
84 84
                                     'id'          => 'wpinv_due_date',
85 85
                                     'name'        => 'wpinv_due_date',
86
-                                    'label'       => __( 'Due Date:', 'invoicing' ) . getpaid_get_help_tip( __( 'Leave blank to disable automated reminder emails for this invoice.', 'invoicing' ) ),
86
+                                    'label'       => __('Due Date:', 'invoicing') . getpaid_get_help_tip(__('Leave blank to disable automated reminder emails for this invoice.', 'invoicing')),
87 87
                                     'label_type'  => 'vertical',
88
-                                    'placeholder' => __( 'No due date', 'invoicing' ),
88
+                                    'placeholder' => __('No due date', 'invoicing'),
89 89
                                     'class'       => 'form-control-sm',
90
-                                    'value'       => $invoice->get_due_date( 'edit' ),
90
+                                    'value'       => $invoice->get_due_date('edit'),
91 91
                                 )
92 92
                             );
93 93
 
94 94
                         }
95 95
 
96
-                        do_action( 'wpinv_meta_box_details_after_due_date', $invoice->get_id() );
96
+                        do_action('wpinv_meta_box_details_after_due_date', $invoice->get_id());
97 97
                         
98 98
                         // Status.
99 99
                         echo aui()->select(
100 100
                             array(
101 101
                                 'id'               => 'wpinv_status',
102 102
                                 'name'             => 'wpinv_status',
103
-                                'label'            => __( 'Invoice Status:', 'invoicing' ),
103
+                                'label'            => __('Invoice Status:', 'invoicing'),
104 104
                                 'label_type'       => 'vertical',
105
-                                'placeholder'      => __( 'Select Status', 'invoicing' ),
106
-                                'value'            => $invoice->get_status( 'edit' ),
105
+                                'placeholder'      => __('Select Status', 'invoicing'),
106
+                                'value'            => $invoice->get_status('edit'),
107 107
                                 'select2'          => true,
108 108
                                 'data-allow-clear' => 'false',
109
-                                'options'          => wpinv_get_invoice_statuses( true )
109
+                                'options'          => wpinv_get_invoice_statuses(true)
110 110
                             )
111 111
                         );
112 112
 
@@ -116,11 +116,11 @@  discard block
 block discarded – undo
116 116
                                 'type'        => 'text',
117 117
                                 'id'          => 'wpinv_number',
118 118
                                 'name'        => 'wpinv_number',
119
-                                'label'       => __( 'Invoice Number:', 'invoicing' ) . getpaid_get_help_tip( __( 'Each invoice number must be unique.', 'invoicing' ) ),
119
+                                'label'       => __('Invoice Number:', 'invoicing') . getpaid_get_help_tip(__('Each invoice number must be unique.', 'invoicing')),
120 120
                                 'label_type'  => 'vertical',
121
-                                'placeholder' => __( 'Autogenerate', 'invoicing' ),
121
+                                'placeholder' => __('Autogenerate', 'invoicing'),
122 122
                                 'class'       => 'form-control-sm',
123
-                                'value'       => $invoice->get_number( 'edit' ),
123
+                                'value'       => $invoice->get_number('edit'),
124 124
                             )
125 125
                         );
126 126
 
@@ -130,25 +130,25 @@  discard block
 block discarded – undo
130 130
                                 'type'        => 'text',
131 131
                                 'id'          => 'wpinv_cc',
132 132
                                 'name'        => 'wpinv_cc',
133
-                                'label'       => __( 'Email CC:', 'invoicing' ) . getpaid_get_help_tip( __( 'Enter a comma separated list of other emails that should be notified about the invoice.', 'invoicing' ) ),
133
+                                'label'       => __('Email CC:', 'invoicing') . getpaid_get_help_tip(__('Enter a comma separated list of other emails that should be notified about the invoice.', 'invoicing')),
134 134
                                 'label_type'  => 'vertical',
135
-                                'placeholder' => __( '[email protected], [email protected]', 'invoicing' ),
135
+                                'placeholder' => __('[email protected], [email protected]', 'invoicing'),
136 136
                                 'class'       => 'form-control-sm',
137
-                                'value'       => $invoice->get_email_cc( 'edit' ),
137
+                                'value'       => $invoice->get_email_cc('edit'),
138 138
                             )
139 139
                         );
140 140
 
141
-                        do_action( 'wpinv_meta_box_details_inner', $invoice->get_id() );
141
+                        do_action('wpinv_meta_box_details_inner', $invoice->get_id());
142 142
 
143 143
                         // Disable taxes.
144
-                        if ( wpinv_use_taxes() && ! ( $invoice->is_paid() || $invoice->is_refunded() ) ) {
144
+                        if (wpinv_use_taxes() && !($invoice->is_paid() || $invoice->is_refunded())) {
145 145
 
146 146
                             echo aui()->input(
147 147
                                 array(
148 148
                                     'id'          => 'wpinv_taxable',
149 149
                                     'name'        => 'disable_taxes',
150 150
                                     'type'        => 'checkbox',
151
-                                    'label'       => __( 'Disable taxes', 'invoicing' ),
151
+                                    'label'       => __('Disable taxes', 'invoicing'),
152 152
                                     'value'       => '1',
153 153
                                     'checked'     => (bool) $invoice->get_disable_taxes(),
154 154
                                 )
@@ -157,17 +157,17 @@  discard block
 block discarded – undo
157 157
                         }
158 158
 
159 159
                         // Apply a discount.
160
-                        if ( $invoice->get_discount_code( 'edit' ) ) {
160
+                        if ($invoice->get_discount_code('edit')) {
161 161
 
162 162
                             echo aui()->input(
163 163
                                 array(
164 164
                                     'type'        => 'text',
165 165
                                     'id'          => 'wpinv_discount_code',
166 166
                                     'name'        => 'wpinv_discount_code',
167
-                                    'label'       => __( 'Discount Code:', 'invoicing' ),
167
+                                    'label'       => __('Discount Code:', 'invoicing'),
168 168
                                     'label_type'  => 'vertical',
169 169
                                     'class'       => 'form-control-sm',
170
-                                    'value'       => $invoice->get_discount_code( 'edit' ),
170
+                                    'value'       => $invoice->get_discount_code('edit'),
171 171
                                     'extra_attributes' => array(
172 172
                                         'onclick'  => 'this.select();',
173 173
                                         'readonly' => 'true',
Please login to merge, or discard this patch.