File manager - Edit - /home/proidvn/me.proid.vn/wp-content/plugins/jetformbuilder/modules/gateways/paypal/tab-handlers/paypal-handler.php
Back
<?php namespace JFB_Modules\Gateways\Paypal\Tab_Handlers; use Jet_Form_Builder\Admin\Tabs_Handlers\Base_Handler; // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } class Paypal_Handler extends Base_Handler { public function slug() { return 'paypal'; } public function on_get_request() { // phpcs:disable WordPress.Security.NonceVerification.Missing $secret = sanitize_text_field( wp_unslash( $_POST['secret'] ?? '' ) ); $client_id = sanitize_text_field( wp_unslash( $_POST['client_id'] ?? '' ) ); // phpcs:enable WordPress.Security.NonceVerification.Missing $result = $this->update_options( array( 'secret' => $secret, 'client_id' => $client_id, ) ); $this->send_response( $result ); } public function on_load() { return $this->get_options( array( 'secret' => '', 'client_id' => '', ) ); } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Generation time: 0.14 |
proxy
|
phpinfo
|
Settings