*(……&*6干sfa绅士的风度sfsdfd不打发打发死啊好办法
/home/comfrqjt/www/wp-content/plugins/dethemekit-for-elementor/includes/templates/classes/api.php
<?php

namespace DethemeKitAddons\Includes\Templates\Classes;

use DethemeKitAddons\Includes\Templates;

if( ! defined( 'ABSPATH' ) ) exit; // No access of directly access

if ( ! class_exists( 'DethemeKit_Templates_API' ) ) {
    
    /**
     * DethemeKit API.
     *
     * DethemeKit API class is responsible for getting API data.
     *
     * @since 3.6.0
     * 
     */
	class DethemeKit_Templates_API {

        /**
		 * API URL which is used to get the response from.
		 *
		 * @since  3.6.0
		 * @var (String) URL
		 */
		private $config     = array();
        
        /**
		 * API enabled
		 *
		 * @since  3.6.0
		 * @var (Boolean)
		 */
		private $enabled    = null;

		/**
        * DethemeKit_API constructor.
        *
        * Get all API data.
        *
        * @since 3.6.0
        * @access public
        */
		public function __construct() {
            
			$this->config  = Templates\dethemekit_templates()->config->get( 'api' );
            
		}

        /**
         * Is Enabled.
         *
         * Check if remote API is enabled.
         *
         * @since 3.6.0
         * @access public
         *
         * @return boolean
         */
		public function is_enabled() {

			if ( null !== $this->enabled ) {
				return $this->enabled;
			}

			if ( empty( $this->config['enabled'] ) || true !== $this->config['enabled'] ) {
				$this->enabled = false;
				return $this->enabled;
			}

			if ( empty( $this->config['base'] ) || empty( $this->config['path'] ) || empty( $this->config['endpoints'] ) ) {
				$this->enabled = false;
				return $this->enabled;
			}

			$this->enabled = true;

			return $this->enabled;
		}

		/**
         * API URL.
         *
         * Get API for template library area data.
         *
         * @since 3.6.0
         * @access public
         *
         */
		public function api_url( $flag ) {
            
			if ( ! $this->is_enabled() ) {
				return false;
			}

			if ( empty( $this->config['endpoints'][ $flag ] ) ) {
				return false;
			}
            
			return $this->config['base'] . $this->config['path'] . $this->config['endpoints'][ $flag ];
		}
        
        /**
         * Get Info from the remote server.
         *
         * Get remote system info.
         *
         * @since 3.6.0
         * @access public
         *
         */
		public function get_info( $key = '' ) {

			$api_url = $this->api_url( 'info' );

			if ( ! $api_url ) {
				return false;
			}

			$response = wp_remote_get( $api_url, $this->request_args() );

			$body = wp_remote_retrieve_body( $response );
			$body = json_decode( $body, true );

			if ( ! $body || ! isset( $body['success'] ) || true !== $body['success'] ) {
				return false;
			}

			if ( ! $key ) {
				unset( $body['success'] );
				return $body;
			}

			if ( is_string( $key ) ) {
				return isset( $body[ $key ] ) ? $body[ $key ] : false;
			}

			if ( is_array( $key ) ) {

				$result = array();

				foreach ( $key as $_key ) {
					$result[ $_key ] = isset( $body[ $_key ] ) ? $body[ $_key ] : false;
				}

				return $result;

			}

		}
        
        /**
         * Request Args
         *
         * Get request arguments for the remote request.
         *
         * @since 3.6.0
         * @access public
         * 
         * @return array
         *
         */
		public function request_args() {
			return array(
				'timeout'   => 60,
				'sslverify' => false
			);
		}

	}

}