403Webshell
Server IP : 192.158.238.246  /  Your IP : 3.129.194.130
Web Server : LiteSpeed
System : Linux uniform.iwebfusion.net 4.18.0-553.27.1.lve.1.el8.x86_64 #1 SMP Wed Nov 20 15:58:00 UTC 2024 x86_64
User : jenniferflocom ( 1321)
PHP Version : 8.1.32
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/7779/cwd/plugins/give/src/Views/Form/Templates/Sequoia/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/7779/cwd/plugins/give/src/Views/Form/Templates/Sequoia/Actions.php
<?php

namespace Give\Views\Form\Templates\Sequoia;

use Give\Helpers\Form\Template as FormTemplateUtils;
use Give_Donate_Form;

/**
 * Class Actions
 *
 * @package Give\Views\Form\Templates\Sequoia
 * @since 2.7.0
 */
class Actions
{

    protected $templateOptions;

    /**
     * Initialize
     *
     * @since 2.7.0
     */
    public function init()
    {
        // Get Template options
        $this->templateOptions = FormTemplateUtils::getOptions();

        // Get decimal numbers option
        $decimalNumbersOption = isset($this->templateOptions['visual_appearance']['decimals_enabled'])
            ? $this->templateOptions['visual_appearance']['decimals_enabled']
            : 'disabled';

        // Set zero number of decimal.
        if ('disabled' === $decimalNumbersOption) {
            add_filter('give_get_currency_formatting_settings', [
                $this,
                'setupZeroNumberOfDecimalInCurrencyFormattingSetting',
            ],         1);
            add_filter('give_get_option_number_decimals', [$this, 'setupZeroNumberOfDecimal'], 1);
        }

        // Handle common hooks.
        add_action('give_donation_form', [$this, 'loadCommonHooks'], 9, 2);

        // Setup hooks.
        add_action('give_pre_form_output', [$this, 'loadHooks'], 1, 3);

        // Setup Stripe font Styles
        add_filter('give_stripe_get_element_font_styles', [$this, 'setupStripeFontStyles'], 1);

        // Setup Stripe base styles
        add_filter('give_stripe_get_element_base_styles', [$this, 'setupStripeBaseStyles'], 1);
    }

    /** Set Stripe base styles consistent with Sequoia form template
     *
     * As per design requirement, we want to format Stripe elements to use Montserrat, with the same styling options as other text inputs.
     *
     * @since 2.7.0
     *
     * @param object $styles
     *
     * @return object
     */
    public function setupStripeBaseStyles($styles)
    {
        $styles = sprintf(
            '{
				"fontFamily": "%1$s",
				"color": "#8d8e8e",
				"fontWeight": 400,
				"fontSize": "14px",
				"::placeholder": {
				  "color": "#8d8e8e"
				},
				":-webkit-autofill": {
				  "color": "#e39f48"
				}
			}',
            $this->isGoogleFontEnabled() ? 'Montserrat' : 'system-ui'
        );

        return json_decode($styles);
    }

    /** Set Stripe Font styles consistent with Sequoia form template
     *
     * As per design requirement, we want to format Stripe elements to use Montserrat, with the same styling options as other text inputs.
     *
     * @since 2.7.0
     *
     * @param array $fontStyles
     *
     * @return array
     */
    public function setupStripeFontStyles($fontStyles)
    {
        return [
            'cssSrc' => $this->isGoogleFontEnabled() ?
                'https://fonts.googleapis.com/css2?family=Montserrat&display=swap' :
                false,
        ];
    }

    /**
     * Set zero as number of decimals in currency formatting setting.
     *
     * As per design requirement we want to format donation amount with zero decimal whether or not number of decimal admin setting set to zero.
     *
     * @since 2.7.0
     *
     * @param array $currencyFormattingSettings
     *
     * @return array
     */
    public function setupZeroNumberOfDecimalInCurrencyFormattingSetting($currencyFormattingSettings)
    {
        $currencyFormattingSettings['number_decimals'] = 0;

        return $currencyFormattingSettings;
    }

    /**
     * Return zero as number of decimals setting value or currency formatting value.
     *
     * As per design requirement we want to format donation amount with zero decimal whether or not number of decimal admin setting set to zero.
     *
     * @since 2.7.0
     * @return int
     */
    public function setupZeroNumberOfDecimal()
    {
        return 0;
    }

    /**
     * Setup common hooks
     *
     * @param int   $formId
     * @param array $args
     */
    public function loadCommonHooks($formId, $args)
    {
        remove_action('give_donation_form_register_login_fields', 'give_show_register_login_fields');
    }

    /**
     * Setup hooks
     *
     * @param int              $formId
     * @param array            $args
     * @param Give_Donate_Form $form
     */
    public function loadHooks($formId, $args, $form)
    {
        /**
         * Add hooks
         */
        add_action('give_pre_form', [$this, 'getNavigator'], 0, 3);
        add_action('give_post_form', [$this, 'getFooterSection'], 99998, 0);
        add_action('give_donation_form_top', [$this, 'getIntroductionSection'], 0, 3);
        add_action('give_donation_form_top', [$this, 'getStartWrapperHTMLForAmountSection'], 0);
        add_action('give_donation_form_top', [$this, 'getCloseWrapperHTMLForAmountSection'], 99998);
        add_action('give_payment_mode_top', 'give_show_register_login_fields');
        add_action('give_payment_mode_top', [$this, 'getStartWrapperHTMLForPaymentSection'], 0);
        add_action('give_donation_form_after_submit', [$this, 'getCloseWrapperHTMLForPaymentSection'], 999);

        /**
         * Remove actions
         */
        // Remove goal.
        remove_action('give_pre_form', 'give_show_goal_progress', 10);

        // Remove intermediate continue button which appears when display style is set to anything other than "onpage".
        remove_action('give_after_donation_levels', 'give_display_checkout_button', 10);

        // Hide title.
        add_filter('give_form_title', '__return_empty_string');

        // Append "Donate with " to gateway labels
        add_filter('give_enabled_payment_gateways', [$this, 'modifyGatewayLabels']);
    }

    /**
     * Add form navigator / header
     *
     * @since 2.7.0
     *
     * @param $formId
     * @param $args
     * @param $form
     */
    public function getNavigator($formId, $args, $form)
    {
        include 'sections/form-navigator.php';
    }

    /**
     * Add introduction form section
     *
     * @since 2.7.0
     *
     * @param $formId
     * @param $args
     * @param $form
     */
    public function getIntroductionSection($formId, $args, $form)
    {
        include 'sections/introduction.php';
    }

    /**
     * Add form footer
     *
     * @since 2.7.0
     */
    public function getFooterSection()
    {
        include 'sections/footer.php';
    }

    /**
     * Add checkout button
     *
     * @since 2.7.0
     */
    public function getCheckoutButton()
    {
        $label = isset($this->templateOptions['payment_information']['checkout_label']) ? $this->templateOptions['payment_information']['checkout_label'] : __(
            'Donate Now',
            'give'
        );

        return sprintf(
            '<div class="give-submit-button-wrap give-clearfix">
		    <input type="submit" class="give-submit give-btn" id="give-purchase-button" name="give-purchase" value="%1$s" data-before-validation-label="Donate Now">
				<span class="give-loading-animation"></span>
		  </div>',
            $label
        );
    }

    /**
     * Add wrapper and introduction text to payment information section
     *
     * @since 2.7.0
     *
     * @param int $formId
     */
    public function getStartWrapperHTMLForPaymentSection($formId)
    {
        $headline = isset($this->templateOptions['payment_information']['headline']) ? $this->templateOptions['payment_information']['headline'] : __(
            "Who's giving today?",
            'give'
        );
        $description = isset($this->templateOptions['payment_information']['description']) ? $this->templateOptions['payment_information']['description'] : __(
            'We’ll never share this information with anyone.',
            'give'
        );

        printf(
            '<div class="give-section payment"><div class="heading">%1$s</div><div class="subheading">%2$s</div>',
            $headline,
            $description
        );
    }

    /**
     * Close wrapper for payment information section
     *
     * @since 2.7.0
     */
    public function getCloseWrapperHTMLForPaymentSection()
    {
        echo '</div>';
    }

    /**
     * Start choose amount section
     *
     * @since 2.7.0
     */
    public function getStartWrapperHTMLForAmountSection()
    {
        $content = isset($this->templateOptions['payment_amount']['content']) && ! empty($this->templateOptions['payment_amount']['content']) ? $this->templateOptions['payment_amount']['content'] : sprintf(
            __(
                'How much would you like to donate? As a contributor to %s we make sure your donation goes directly to supporting our cause. Thank you for your generosity!',
                'give'
            ),
            get_bloginfo('sitename')
        );
        $label = ! empty($this->templateOptions['introduction']['donate_label']) ? $this->templateOptions['introduction']['donate_label'] : __(
            'Donate Now',
            'give'
        );
        $arrow = is_rtl() ? 'left' : 'right';
        printf(
            '<button class="give-btn advance-btn">%1$s<i class="fas fa-chevron-%2$s"></i></button></div>',
            $label,
            $arrow
        );

        if ( ! empty($content)) {
            printf(
                '<div class="give-section choose-amount"><p class="content">%1$s</p>',
                $content
            );
        } else {
            echo "<div class='give-section choose-amount'>";
        }
    }

    /**
     * Close choose amount section
     *
     * @since 2.7.0
     */
    public function getCloseWrapperHTMLForAmountSection()
    {
        $label = isset($this->templateOptions['payment_amount']['next_label']) ? $this->templateOptions['payment_amount']['next_label'] : __(
            'Continue',
            'give'
        );
        $arrow = is_rtl() ? 'left' : 'right';

        printf(
            '<button class="give-btn advance-btn">%1$s<i class="fas fa-chevron-%2$s"></i></button></div>',
            $label,
            $arrow
        );
    }

    /**
     * Append gateway labels with "Donate with "
     *
     * Modify gateways array returned give_get_enabled_payment_gateways, before printing
     *
     * @param array $gateways Array of enabled gateways
     *
     * @return array $gateways Array of modified enabled gateways
     */
    public function modifyGatewayLabels(array $gateways)
    {
        foreach ($gateways as $key => $value) {
            $gateways[$key]['checkout_label'] = sprintf(
                __('Donate with %1$s', 'give'),
                $value['checkout_label']
            );
        }

        return $gateways;
    }

    /**
     * @since 2.16.0
     * @return bool
     */
    private function isGoogleFontEnabled()
    {
        $templateOptions = FormTemplateUtils::getOptions();

        // Set defaults
        $templateOptions['visual_appearance']['google-fonts'] = ! empty($templateOptions['visual_appearance']['google-fonts']) ? $templateOptions['visual_appearance']['google-fonts'] : 'enabled';

        return give_is_setting_enabled($templateOptions['visual_appearance']['google-fonts']);
    }

}

Youez - 2016 - github.com/yon3zu
LinuXploit