Server IP : 66.29.132.122 / Your IP : 18.117.230.165 Web Server : LiteSpeed System : Linux business142.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : admazpex ( 531) PHP Version : 7.2.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/gateways/ |
Upload File : |
<?php /** * Class KKART_Payment_Gateway_eCheck file. * * @package Kkart\Gateways */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Class for eCheck Payment Gateway * * @since 2.6.0 * @package Kkart\Classes */ class KKART_Payment_Gateway_ECheck extends KKART_Payment_Gateway { /** * Builds our payment fields area - including tokenization fields for logged * in users, and the actual payment fields. * * @since 2.6.0 */ public function payment_fields() { if ( $this->supports( 'tokenization' ) && is_checkout() ) { $this->tokenization_script(); $this->saved_payment_methods(); $this->form(); $this->save_payment_method_checkbox(); } else { $this->form(); } } /** * Outputs fields for entering eCheck information. * * @since 2.6.0 */ public function form() { $fields = array(); $default_fields = array( 'routing-number' => '<p class="form-row form-row-first"> <label for="' . esc_attr( $this->id ) . '-routing-number">' . esc_html__( 'Routing number', 'kkart' ) . ' <span class="required">*</span></label> <input id="' . esc_attr( $this->id ) . '-routing-number" class="input-text kkart-echeck-form-routing-number" type="text" maxlength="9" autocomplete="off" placeholder="•••••••••" name="' . esc_attr( $this->id ) . '-routing-number" /> </p>', 'account-number' => '<p class="form-row form-row-wide"> <label for="' . esc_attr( $this->id ) . '-account-number">' . esc_html__( 'Account number', 'kkart' ) . ' <span class="required">*</span></label> <input id="' . esc_attr( $this->id ) . '-account-number" class="input-text kkart-echeck-form-account-number" type="text" autocomplete="off" name="' . esc_attr( $this->id ) . '-account-number" maxlength="17" /> </p>', ); $fields = wp_parse_args( $fields, apply_filters( 'kkart_echeck_form_fields', $default_fields, $this->id ) ); ?> <fieldset id="<?php echo esc_attr( $this->id ); ?>-cc-form" class='kkart-echeck-form kkart-payment-form'> <?php do_action( 'kkart_echeck_form_start', $this->id ); ?> <?php foreach ( $fields as $field ) { echo $field; // phpcs:ignore WordPress.XSS.EscapeOutput.OutputNotEscaped } ?> <?php do_action( 'kkart_echeck_form_end', $this->id ); ?> <div class="clear"></div> </fieldset> <?php } }