[ 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
/
core
/
common
/
modules
/
connect
/
apps
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 base-app.php
21,046 B
SET
[ EDIT ]
|
[ DEL ]
📄 base-user-app.php
561 B
SET
[ EDIT ]
|
[ DEL ]
📄 common-app.php
908 B
SET
[ EDIT ]
|
[ DEL ]
📄 connect.php
444 B
SET
[ EDIT ]
|
[ DEL ]
📄 library.php
4,927 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: base-user-app.php
<?php namespace Elementor\Core\Common\Modules\Connect\Apps; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } abstract class Base_User_App extends Base_App { /** * @since 2.3.0 * @access protected */ protected function update_settings() { update_user_option( get_current_user_id(), $this->get_option_name(), $this->data ); } /** * @since 2.3.0 * @access protected */ protected function init_data() { $this->data = get_user_option( $this->get_option_name() ); if ( ! $this->data ) { $this->data = []; } } }