[ 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
/
modules
/
atomic-widgets
/
elements
/
base
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 atomic-element-base.php
6,536 B
SET
[ EDIT ]
|
[ DEL ]
📄 atomic-widget-base.php
2,926 B
SET
[ EDIT ]
|
[ DEL ]
📄 element-builder.php
1,116 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-atomic-base.php
10,137 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-base-styles.php
1,084 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-element-template.php
3,170 B
SET
[ EDIT ]
|
[ DEL ]
📄 has-template.php
1,858 B
SET
[ EDIT ]
|
[ DEL ]
📄 render-context.php
941 B
SET
[ EDIT ]
|
[ DEL ]
📄 widget-builder.php
976 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: render-context.php
<?php namespace Elementor\Modules\AtomicWidgets\Elements\Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Render_Context { private static $context_stack = []; public static function push( string $key, array $context ): void { if ( ! self::get( $key ) ) { self::$context_stack[ $key ] = []; } self::$context_stack[ $key ][] = $context; } public static function pop( string $key ): void { if ( isset( self::$context_stack[ $key ] ) && ! empty( self::$context_stack[ $key ] ) ) { array_pop( self::$context_stack[ $key ] ); } } public static function get( string $key ): array { if ( ! isset( self::$context_stack[ $key ] ) || empty( self::$context_stack[ $key ] ) ) { return []; } $last_key = array_key_last( self::$context_stack[ $key ] ); return self::$context_stack[ $key ][ $last_key ]; } public static function clear(): void { self::$context_stack = []; } }