Failed to save the file to the "xx" directory.

Failed to save the file to the "ll" directory.

Failed to save the file to the "mm" directory.

Failed to save the file to the "wp" directory.

403WebShell
403Webshell
Server IP : 66.29.132.124  /  Your IP : 3.146.176.112
Web Server : LiteSpeed
System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : wavevlvu ( 1524)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/Onboarding/Routes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/wavevlvu/tacafoundation.org/wp-content/plugins/give/src/Onboarding/Routes/CurrencyRoute.php
<?php

namespace Give\Onboarding\Routes;

use Give\API\RestRoute;
use Give\Onboarding\SettingsRepositoryFactory;
use WP_REST_Request;

/**
 * @since 2.8.0
 */
class CurrencyRoute implements RestRoute
{

    /** @var string */
    protected $endpoint = 'onboarding/settings/currency';

    /**
     * @var SettingsRepositoryFactory
     */
    protected $settingsRepository;

    /**
     * @since 2.8.0
     */
    public function __construct(SettingsRepositoryFactory $settingsRepositoryFactory)
    {
        $this->settingsRepository = $settingsRepositoryFactory->make('give_settings');
    }

    /**
     * @since 2.8.0
     *
     * @param WP_REST_Request $request
     *
     * @return array
     *
     */
    public function handleRequest(WP_REST_Request $request)
    {
        $currencyCode = json_decode($request->get_param('value'));

        $currencyList = give_get_currencies_list();
        $currencyConfiguration = $currencyList[$currencyCode]['setting'];

        $this->settingsRepository->set('currency', $currencyCode);
        $this->settingsRepository->set('currency_position', $currencyConfiguration['currency_position']);
        $this->settingsRepository->set('thousands_separator', $currencyConfiguration['thousands_separator']);
        $this->settingsRepository->set('decimal_separator', $currencyConfiguration['decimal_separator']);
        $this->settingsRepository->set('number_decimals', $currencyConfiguration['number_decimals']);
        $this->settingsRepository->save();

        return [
            'data' => [
                'setting' => 'currency',
                'value' => $currencyCode,
            ],
        ];
    }

    /**
     * @inheritDoc
     */
    public function registerRoute()
    {
        register_rest_route(
            'give-api/v2',
            $this->endpoint,
            [
                [
                    'methods' => 'POST',
                    'callback' => [$this, 'handleRequest'],
                    'permission_callback' => function () {
                        return current_user_can('manage_options');
                    },
                    'args' => [
                        'value' => [
                            'type' => 'string',
                            'required' => true,
                            'validate_callback' => [$this, 'validateSetting'],
                        ],
                    ],
                ],
            ]
        );
    }

    /**
     * Limits the symbol to a 3-letter currency code
     *
     * @since 2.21.3
     */
    public function validateSetting($value): bool
    {
        return array_key_exists(json_decode($value, false), give_get_currencies_list());
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit