[ 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
/
modules
/
custom-code
/
import-export
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 export-runner.php
1,931 B
SET
[ EDIT ]
|
[ DEL ]
📄 import-export.php
738 B
SET
[ EDIT ]
|
[ DEL ]
📄 import-runner.php
3,965 B
SET
[ EDIT ]
|
[ DEL ]
📄 revert-runner.php
909 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: import-export.php
<?php namespace ElementorPro\Modules\CustomCode\ImportExport; use Elementor\App\Modules\ImportExport\Processes\Export; use Elementor\App\Modules\ImportExport\Processes\Import; use Elementor\App\Modules\ImportExport\Processes\Revert; class Import_Export { const FILE_NAME = 'custom-code'; public function register_hooks() { add_action( 'elementor/import-export/export-kit', function ( Export $export ) { $export->register( new Export_Runner() ); } ); add_action( 'elementor/import-export/import-kit', function ( Import $import ) { $import->register( new Import_Runner() ); } ); add_action( 'elementor/import-export/revert-kit', function ( Revert $revert ) { $revert->register( new Revert_Runner() ); } ); } }