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
/
form-donation.php
/
/
<?php /** * The template used to display the default form. * * Override this template by copying it to yourtheme/charitable/donation-form/form-donation.php * * @author WP Charitable LLC * @package Charitable/Templates/Donation Form * @since 1.0.0 * @version 1.6.57 * @version 1.8.3.5 Added $form_class to allow for charitable-minimal beta. * @version 1.8.4.2 Added charitable_donation_after_form_submit_button action. */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } $form = $view_args['form']; $user = wp_get_current_user(); $use_ajax = 'make_donation' == $form->get_form_action() && (int) Charitable_Gateways::get_instance()->gateways_support_ajax(); $form_id = isset( $view_args['form_id'] ) ? $view_args['form_id'] : charitable_get_donation_form_id(); $form_class = ! empty( $view_args['form_template'] ) ? apply_filters( 'charitable_donation_form_class', 'charitable-form charitable-donation-form charitable-template-' . esc_attr( $view_args['form_template'] ), $form ) : apply_filters( 'charitable_donation_form_class', 'charitable-form charitable-donation-form charitable-template-standard', $form ); // allows for charitable-minimal. if ( ! $form ) { return; } ?> <form method="post" id="<?php echo esc_attr( $form_id ); ?>" class="<?php echo esc_attr( $form_class ); ?>" data-use-ajax="<?php echo esc_attr( $use_ajax ); ?>"> <?php /** * Do something before rendering the form fields. * * @since 1.0.0 * @since 1.6.0 Added $view_args parameter. * * @param Charitable_Form $form The form object. * @param array $view_args All args passed to template. */ do_action( 'charitable_form_before_fields', $form, $view_args ); ?> <div class="charitable-form-fields cf"> <?php $form->view()->render(); ?> </div><!-- .charitable-form-fields --> <?php /** * Do something after rendering the form fields. * * @since 1.0.0 * @since 1.6.0 Added $view_args parameter. * * @param Charitable_Form $form The form object. * @param array $view_args All args passed to template. */ do_action( 'charitable_form_after_fields', $form, $view_args ); /** * Add filter to determine if the submit button should appear for the donation form. * 99.9% it should BUT there are cases - like spam busting - where we want to remove the ability for the donate form to be submitted. * * @since 1.7.0.9 */ $show_donation_button = apply_filters( 'charitable_show_donation_form_button', true, $form, $view_args ); if ( $show_donation_button ) : ?> <div class="charitable-form-field charitable-submit-field"> <button class="<?php echo esc_attr( charitable_get_button_class( 'donate' ) ); ?>" type="submit" name="donate"><?php esc_html_e( 'Donate', 'charitable' ); ?></button> <?php do_action( 'charitable_donation_after_form_submit_button', $form, $view_args ); ?> <div class="charitable-form-processing" style="display: none;"> <img src="<?php echo esc_url( charitable()->get_path( 'assets', false ) ); ?>images/charitable-loading.gif" width="60" height="60" alt="<?php esc_attr_e( 'Loading…', 'charitable' ); ?>" /> </div> </div> <?php endif; ?> </form><!-- #<?php echo esc_html( $form_id ); ?>-->
/home/batcwwjx/www/wp-content/plugins/charitable/templates/donation-form/form-donation.php