HEX
Server: LiteSpeed
System: Linux l24.yourwebhosting.net 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64
User: turkishi (1582)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/turkishi/www/wp-content/plugins/elementor/modules/cloud-kit-library/data/endpoints/quota.php
<?php
namespace Elementor\Modules\CloudKitLibrary\Data\Endpoints;

use Elementor\Modules\CloudKitLibrary\Data\Controller;
use Elementor\Modules\CloudKitLibrary\Module as CloudKitLibrary;
use Elementor\Data\V2\Base\Endpoint;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * @property Controller $controller
 */
class Quota extends Endpoint {
	public function get_name() {
		return 'quota';
	}

	public function get_format() {
		return 'cloud-kits/quota';
	}

	public function get_items( $request ) {
		return CloudKitLibrary::get_app()->get_quota();
	}
}