403Webshell
Server IP : 192.158.238.246  /  Your IP : 18.219.247.127
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/root/proc/7779/cwd/plugins/give/src/PaymentGateways/Gateways/Offline/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/7779/root/proc/7779/cwd/plugins/give/src/PaymentGateways/Gateways/Offline/OfflineGateway.php
<?php

namespace Give\PaymentGateways\Gateways\Offline;

use Give\Donations\Models\Donation;
use Give\Framework\Exceptions\Primitives\RuntimeException;
use Give\Framework\PaymentGateways\Commands\PaymentPending;
use Give\Framework\PaymentGateways\PaymentGateway;
use Give\Framework\Support\Facades\Scripts\ScriptAsset;
use Give\Helpers\Language;
use Give\PaymentGateways\Gateways\Offline\Views\LegacyFormFieldMarkup;

/**
 * The Offline payment gateway, intended to reflect donations that are made offline and will be later confirmed.
 *
 * @since 3.0.0
 */
class OfflineGateway extends PaymentGateway
{
    /**
     * @since 3.0.0
     */
    public static function id(): string
    {
        return 'offline';
    }

    /**
     * @since 3.0.0
     */
    public function getId(): string
    {
        return self::id();
    }

    /**
     * @since 3.0.0
     */
    public function getName(): string
    {
        return __('Offline Donation', 'give');
    }

    /**
     * @since 3.0.0
     */
    public function getPaymentMethodLabel(): string
    {
        return __('Offline Donation', 'give');
    }

    /**
     * @since 3.0.0
     */
    public function formSettings(int $formId): array
    {
        return [
            'markup' => (new LegacyFormFieldMarkup())($formId, false),
        ];
    }

    /**
     * @since 3.0.0
     */
    public function enqueueScript(int $formId)
    {
        $scriptAsset = ScriptAsset::get(GIVE_PLUGIN_DIR . 'build/offlineGateway.asset.php');

        wp_enqueue_script(
            $this::id(),
            GIVE_PLUGIN_URL . 'build/offlineGateway.js',
            $scriptAsset['dependencies'],
            $scriptAsset['version'],
            true
        );

        Language::setScriptTranslations($this::id());
    }

    /**
     * @since 3.0.0
     */
    public function getLegacyFormFieldMarkup(int $formId): string
    {
        return (new LegacyFormFieldMarkup())($formId, true);
    }

    /**
     * @since 3.0.0
     */
    public function createPayment(Donation $donation, $gatewayData): PaymentPending
    {
        return new PaymentPending();
    }

    /**
     * @since 3.0.0
     */
    public function refundDonation(Donation $donation)
    {
        throw new RuntimeException(
            'Method has not been implemented yet. Please use the legacy method in the meantime.'
        );
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit