Spamworldpro Mini Shell
Spamworldpro


Server : Apache/2.4.52 (Ubuntu)
System : Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
User : www-data ( 33)
PHP Version : 8.1.2-1ubuntu2.21
Disable Function : NONE
Directory :  /var/www/theprintave/wp-content/plugins/dokan-lite/includes/REST/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/theprintave/wp-content/plugins/dokan-lite/includes/REST/AdminMiscController.php
<?php

namespace WeDevs\Dokan\REST;

use WP_REST_Server;
use WeDevs\Dokan\Abstracts\DokanRESTAdminController;

/**
* Admin Dashboard
*
* @since 2.8.0
*
* @package dokan
*/
class AdminMiscController extends DokanRESTAdminController {

    /**
     * Route base.
     *
     * @var string
     */
    protected $base = '';

    /**
     * Register all routes releated with stores
     *
     * @return void
     */
    public function register_routes() {
        register_rest_route(
            $this->namespace, '/help', array(
				array(
					'methods'             => WP_REST_Server::READABLE,
					'callback'            => array( $this, 'get_help' ),
					'permission_callback' => array( $this, 'check_permission' ),
				),
            )
        );

        register_rest_route(
            $this->namespace, '/option', [
                [
                    'methods'             => WP_REST_Server::READABLE,
                    'callback'            => [ $this, 'get_option' ],
                    'args'                => [
                        'section' => [
                            'type'              => 'string',
                            'description'       => __( 'Dokan setting section', 'dokan-lite' ),
                            'required'          => true,
                            'sanitize_callback' => 'sanitize_text_field',
                        ],
                        'option'  => [
                            'type'              => 'string',
                            'description'       => __( 'Dokan setting section key', 'dokan-lite' ),
                            'required'          => true,
                            'sanitize_callback' => 'sanitize_text_field',
                        ],
                    ],
                    'permission_callback' => [ $this, 'check_permission' ],
                ],
            ]
        );
    }

    /**
     * Get help documents
     *
     * @return \WP_REST_Response
     */
    public function get_help() {
        require_once DOKAN_INC_DIR . '/Admin/functions.php';

        $help = dokan_admin_get_help();

        return rest_ensure_response( $help );
    }

    /**
     * Get dokan option.
     *
     * @since 3.14.0
     *
     * @param \WP_REST_Request $request
     *
     * @return \WP_REST_Response|\WP_Error
     */
    public function get_option( $request ) {
        $section = $request->get_param( 'section' );
        $option  = $request->get_param( 'option' );
        $default = '';

        return rest_ensure_response( dokan_get_option( $option, $section, $default ) );
    }
}

Spamworldpro Mini