at path:
ROOT
/
wp-content
/
plugins
/
elementor-pro
/
core
/
php-api.php
run:
R
W
Run
admin
DIR
2025-12-13 10:18:02
R
W
Run
app
DIR
2025-12-13 10:18:02
R
W
Run
behaviors
DIR
2025-12-13 10:18:02
R
W
Run
compatibility
DIR
2025-12-13 10:18:02
R
W
Run
connect
DIR
2025-12-13 10:18:02
R
W
Run
data
DIR
2025-12-13 10:18:02
R
W
Run
database
DIR
2025-12-13 10:18:02
R
W
Run
editor
DIR
2025-12-13 10:18:02
R
W
Run
integrations
DIR
2025-12-13 10:18:02
R
W
Run
isolation
DIR
2025-12-13 10:18:02
R
W
Run
notifications
DIR
2025-12-13 10:18:02
R
W
Run
preview
DIR
2025-12-13 10:18:02
R
W
Run
upgrade
DIR
2025-12-13 10:18:02
R
W
Run
utils
DIR
2025-12-13 10:18:02
R
W
Run
modules-manager.php
2.3 KB
2024-10-19 01:21:21
R
W
Run
Delete
Rename
php-api.php
424 By
2024-10-19 01:21:21
R
W
Run
Delete
Rename
utils.php
13.3 KB
2024-10-19 01:21:21
R
W
Run
Delete
Rename
error_log
up
📄
php-api.php
Save
<?php namespace ElementorPro\Core; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } /** * This class is responsible for the interaction with PHP Core API. * The main benefit is making it easy to mock in testing. */ class PHP_Api { /** * @param $from * @param $to * * @return bool */ public function move_uploaded_file( $from, $to ) { return @ move_uploaded_file( $from, $to ); } }