uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
www
/
wp-content
/
plugins
/
charitable
/
templates
/
donation-form
/
gateway-fields.php
/
/
<?php /** * The template used to display the gateway fields. * * @author WP Charitable LLC * @package Charitable/Templates/Donation Form * @since 1.0.0 * @version 1.8.3.1 Cleanup. * @version 1.8.3.7 Added support for cc_fields_format. */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! isset( $view_args['form'] ) || ! isset( $view_args['field'] ) ) { return; } $form = $view_args['form']; $field = $view_args['field']; $classes = $view_args['classes']; $gateways = $field['gateways']; $default = isset( $field['default'] ) && isset( $gateways[ $field['default'] ] ) ? $field['default'] : key( $gateways ); $cc_fields_format = ''; if ( charitable()->load_core_stripe() && class_exists( 'Charitable_Gateway_Stripe_AM' ) ) { $settings = get_option( 'charitable_settings' ); $cc_fields_format = ( ! empty( $settings['gateways_stripe']['cc_fields_format'] ) && '' !== $settings['gateways_stripe']['cc_fields_format'] ) ? $settings['gateways_stripe']['cc_fields_format'] : ''; } ?> <fieldset id="charitable-gateway-fields" class="charitable-fieldset"> <?php do_action( 'charitable_gateway_fields_front', $form, $field, $gateways ); ?> <?php if ( isset( $field['legend'] ) ) : ?> <div class="charitable-form-header"><?php echo esc_html( $field['legend'] ); ?></div> <?php endif; do_action( 'charitable_gateway_fields_after_legend', $form, $field, $gateways ); if ( count( $gateways ) > 1 ) : ?> <fieldset class="charitable-fieldset-field-wrapper"> <div class="charitable-fieldset-field-header" id="charitable-gateway-selector-header"><?php esc_html_e( 'Choose Your Payment Method', 'charitable' ); ?></div> <ul id="charitable-gateway-selector" class="charitable-radio-list charitable-form-field"> <?php foreach ( $gateways as $gateway_id => $details ) : ?> <li><input type="radio" id="gateway-<?php echo esc_attr( $gateway_id ); ?>" name="gateway" value="<?php echo esc_attr( $gateway_id ); ?>" aria-describedby="charitable-gateway-selector-header" <?php checked( $default, $gateway_id ); ?> /> <label for="gateway-<?php echo esc_attr( $gateway_id ); ?>"><?php echo esc_html( $details['label'] ); ?></label> </li> <?php endforeach ?> </ul> </fieldset> <?php endif; foreach ( $gateways as $gateway_id => $details ) : if ( ! isset( $details['fields'] ) || empty( $details['fields'] ) ) : continue; endif; $gateway_fields_classes = 'charitable-gateway-fields charitable-form-fields cf'; $gateway_fields_classes .= ( 'stripe' === $gateway_id && ! empty( $cc_fields_format ) ) ? ' charitable-cc-fields-' . esc_attr( $cc_fields_format ) : 'standard'; ?> <div id="charitable-gateway-fields-<?php echo esc_html( $gateway_id ); ?>" class="<?php echo esc_attr( $gateway_fields_classes ); ?>" data-gateway="<?php echo esc_html( $gateway_id ); ?>"> <?php $form->view()->render_fields( $details['fields'] ); ?> </div><!-- #charitable-gateway-fields-<?php echo esc_html( $gateway_id ); ?> --> <?php endforeach ?> <?php do_action( 'charitable_gateway_fields_end', $form, $field, $gateways ); ?> </fieldset><!-- .charitable-fieldset -->
/home/batcwwjx/www/wp-content/plugins/charitable/templates/donation-form/gateway-fields.php