[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
elementor
/
modules
/
cloud-kit-library
/
data
/
endpoints
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 eligibility.php
611 B
SET
[ EDIT ]
|
[ DEL ]
📄 quota.php
585 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: eligibility.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 Eligibility extends Endpoint { public function get_name() { return 'eligibility'; } public function get_format() { return 'cloud-kits/eligibility'; } public function get_items( $request ) { return CloudKitLibrary::get_app()->check_eligibility(); } }