[ 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
/
app
/
modules
/
onboarding
/
data
/
endpoints
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 install-pro.php
1,945 B
SET
[ EDIT ]
|
[ DEL ]
📄 install-theme.php
2,535 B
SET
[ EDIT ]
|
[ DEL ]
📄 pro-install-screen.php
659 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-choices.php
1,750 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-progress.php
1,930 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: pro-install-screen.php
<?php namespace Elementor\App\Modules\Onboarding\Data\Endpoints; use Elementor\App\Modules\Onboarding\Module; use Elementor\Data\V2\Base\Endpoint as Endpoint_Base; if ( ! defined( 'ABSPATH' ) ) { exit; } class Pro_Install_Screen extends Endpoint_Base { public function get_name(): string { return 'pro-install-screen'; } public function get_format(): string { return 'onboarding'; } protected function register(): void { parent::register(); $this->register_items_route(); } public function get_items( $request ) { return [ 'data' => [ 'shouldShowProInstallScreen' => Module::should_show_pro_install_screen(), ], ]; } }