????JFIF??x?x????'
Server IP : 104.21.64.1 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/tempvsty/pontiacques.org/wp-content/plugins/give/includes/admin/tools/ |
Upload File : |
<?php /** * Give Settings Page/Tab * * @package Give * @subpackage Classes/Give_Settings_API * @copyright Copyright (c) 2016, GiveWP * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.8 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if ( ! class_exists( 'Give_Settings_API' ) ) : /** * Give_Settings_API. * * @sine 1.8 */ class Give_Settings_API extends Give_Settings_Page { /** * Flag to check if enable saving option for setting page or not * * @since 1.8.17 * @var bool */ protected $enable_save = false; /** * Constructor. */ public function __construct() { $this->id = 'api'; $this->label = esc_html__( 'API', 'give' ); parent::__construct(); } /** * Get settings array. * * @since 1.8 * @return array */ public function get_settings() { // Get settings. $settings = apply_filters( 'give_settings_api', array( array( 'id' => 'give_tools_api', 'type' => 'title', 'table_html' => false, ), array( 'id' => 'api', 'name' => esc_html__( 'API', 'give' ), 'type' => 'api', ), array( 'id' => 'give_tools_api', 'type' => 'sectionend', 'table_html' => false, ), ) ); /** * Filter the settings. * * @since 1.8 * @param array $settings */ $settings = apply_filters( 'give_get_settings_' . $this->id, $settings ); // Output. return $settings; } } endif; return new Give_Settings_API();