[ 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-pro
/
license
/
data
/
endpoints
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 get-license-status.php
1,016 B
SET
[ EDIT ]
|
[ DEL ]
📄 get-tier-features.php
1,115 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: get-tier-features.php
<?php namespace ElementorPro\License\Data\Endpoints; use ElementorPro\Core\Data\Endpoints\Base; use ElementorPro\Core\Data\Interfaces\Endpoint; use ElementorPro\License\API; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Get_Tier_Features extends Base implements Endpoint { public function get_name(): string { return 'get-tier-features'; } public function get_route(): string { return 'tier-features'; } protected function register() { register_rest_route( $this->controller->get_namespace(), '/' . $this->controller->get_name() . '/' . $this->get_route(), [ [ 'methods' => 'GET', 'callback' => [ $this, 'get_features' ], 'permission_callback' => [ $this, 'permission_callback' ], ], ] ); } public function get_features( $request ) { $license_data = API::get_license_data(); $features = ! empty( $license_data['features'] ) ? $license_data['features'] : []; return new \WP_REST_Response( [ 'features' => $features, ], 200 ); } public function permission_callback( $request ) { return is_user_logged_in(); } }