![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mets.corals.io/wp-content/plugins/give/includes/admin/tools/ |
<?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();