@@ -7,44 +7,44 @@ discard block |
||
| 7 | 7 | * @version 1.0.19 |
| 8 | 8 | */ |
| 9 | 9 | |
| 10 | -defined( 'ABSPATH' ) || exit; |
|
| 10 | +defined('ABSPATH') || exit; |
|
| 11 | 11 | |
| 12 | 12 | // Make sure that the form is active. |
| 13 | -if ( ! $form->is_active() ) { |
|
| 13 | +if (!$form->is_active()) { |
|
| 14 | 14 | echo aui()->alert( |
| 15 | 15 | array( |
| 16 | 16 | 'type' => 'warning', |
| 17 | - 'content' => __( 'This payment form is no longer active', 'invoicing' ), |
|
| 17 | + 'content' => __('This payment form is no longer active', 'invoicing'), |
|
| 18 | 18 | ) |
| 19 | 19 | ); |
| 20 | 20 | return; |
| 21 | 21 | } |
| 22 | 22 | |
| 23 | 23 | // Fires before displaying a payment form. |
| 24 | -do_action( 'getpaid_before_payment_form', $form ); |
|
| 24 | +do_action('getpaid_before_payment_form', $form); |
|
| 25 | 25 | ?> |
| 26 | 26 | |
| 27 | -<form class='getpaid-payment-form getpaid-payment-form-<?php echo absint( $form->get_id() ); ?> bsui position-relative' method='POST' data-key='<?php echo uniqid('gpf'); ?>'> |
|
| 27 | +<form class='getpaid-payment-form getpaid-payment-form-<?php echo absint($form->get_id()); ?> bsui position-relative' method='POST' data-key='<?php echo uniqid('gpf'); ?>'> |
|
| 28 | 28 | |
| 29 | 29 | |
| 30 | 30 | <?php |
| 31 | 31 | |
| 32 | 32 | // Fires when printing the top of a payment form. |
| 33 | - do_action( 'getpaid_payment_form_top', $form ); |
|
| 33 | + do_action('getpaid_payment_form_top', $form); |
|
| 34 | 34 | |
| 35 | 35 | // And the optional invoice id. |
| 36 | - if ( ! empty( $form->invoice ) ) { |
|
| 37 | - echo getpaid_hidden_field( 'invoice_id', $form->invoice->get_id() ); |
|
| 36 | + if (!empty($form->invoice)) { |
|
| 37 | + echo getpaid_hidden_field('invoice_id', $form->invoice->get_id()); |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | // We also want to include the form id. |
| 41 | - echo getpaid_hidden_field( 'form_id', $form->get_id() ); |
|
| 41 | + echo getpaid_hidden_field('form_id', $form->get_id()); |
|
| 42 | 42 | |
| 43 | 43 | // And an indication that this is a payment form submission. |
| 44 | - echo getpaid_hidden_field( 'getpaid_payment_form_submission', '1' ); |
|
| 44 | + echo getpaid_hidden_field('getpaid_payment_form_submission', '1'); |
|
| 45 | 45 | |
| 46 | 46 | // Fires before displaying payment form elements. |
| 47 | - do_action( 'getpaid_payment_form_before_elements', $form ); |
|
| 47 | + do_action('getpaid_payment_form_before_elements', $form); |
|
| 48 | 48 | |
| 49 | 49 | // Display the elements. |
| 50 | 50 | ?> |
@@ -52,13 +52,13 @@ discard block |
||
| 52 | 52 | <div class="row"> |
| 53 | 53 | <?php |
| 54 | 54 | |
| 55 | - foreach ( $form->get_elements() as $element ) { |
|
| 55 | + foreach ($form->get_elements() as $element) { |
|
| 56 | 56 | |
| 57 | - if ( isset( $element['type'] ) ) { |
|
| 58 | - $grid_class = esc_attr( getpaid_get_form_element_grid_class( $element ) ); |
|
| 57 | + if (isset($element['type'])) { |
|
| 58 | + $grid_class = esc_attr(getpaid_get_form_element_grid_class($element)); |
|
| 59 | 59 | echo "<div class='$grid_class'>"; |
| 60 | - do_action( 'getpaid_payment_form_element', $element, $form ); |
|
| 61 | - do_action( "getpaid_payment_form_element_{$element['type']}_template", $element, $form ); |
|
| 60 | + do_action('getpaid_payment_form_element', $element, $form); |
|
| 61 | + do_action("getpaid_payment_form_element_{$element['type']}_template", $element, $form); |
|
| 62 | 62 | echo "</div>"; |
| 63 | 63 | } |
| 64 | 64 | |
@@ -70,16 +70,16 @@ discard block |
||
| 70 | 70 | |
| 71 | 71 | <?php |
| 72 | 72 | // Fires after displaying payment form elements. |
| 73 | - do_action( 'getpaid_payment_form_after_elements', $form ); |
|
| 73 | + do_action('getpaid_payment_form_after_elements', $form); |
|
| 74 | 74 | |
| 75 | 75 | echo "<div class='getpaid-payment-form-errors alert alert-danger d-none'></div>"; |
| 76 | 76 | |
| 77 | - if ( wpinv_current_user_can_manage_invoicing() ) { |
|
| 77 | + if (wpinv_current_user_can_manage_invoicing()) { |
|
| 78 | 78 | |
| 79 | 79 | edit_post_link( |
| 80 | - __( 'Edit this form.', 'invoicing' ), |
|
| 80 | + __('Edit this form.', 'invoicing'), |
|
| 81 | 81 | '<small class="form-text text-muted">', |
| 82 | - ' ' . __( 'This is only visible to website administators.', 'invoicing' ) . '</small>', |
|
| 82 | + ' ' . __('This is only visible to website administators.', 'invoicing') . '</small>', |
|
| 83 | 83 | $form->get_id(), |
| 84 | 84 | 'text-danger' |
| 85 | 85 | ); |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | |
| 92 | 92 | <div class="loading_div overlay overlay-black position-absolute row m-0 rounded overflow-hidden" style="height: 100%;width: 100%;top: 0px;z-index: 2;display:none;"> |
| 93 | 93 | <div class="spinner-border mx-auto align-self-center text-white" role="status"> |
| 94 | - <span class="sr-only"><?php _e( 'Loading...', 'invoicing' );?></span> |
|
| 94 | + <span class="sr-only"><?php _e('Loading...', 'invoicing'); ?></span> |
|
| 95 | 95 | </div> |
| 96 | 96 | </div> |
| 97 | 97 | |
@@ -100,4 +100,4 @@ discard block |
||
| 100 | 100 | <?php |
| 101 | 101 | |
| 102 | 102 | // Fires after displaying a payment form. |
| 103 | -do_action( 'getpaid_after_payment_form', $form ); |
|
| 103 | +do_action('getpaid_after_payment_form', $form); |
|