[ 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
/
props-resolver
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 transformers
SET
[ DEL ]
📄 import-export-props-resolver.php
1,159 B
SET
[ EDIT ]
|
[ DEL ]
📄 multi-props.php
535 B
SET
[ EDIT ]
|
[ DEL ]
📄 props-resolver-context.php
983 B
SET
[ EDIT ]
|
[ DEL ]
📄 props-resolver.php
2,816 B
SET
[ EDIT ]
|
[ DEL ]
📄 render-props-resolver.php
2,701 B
SET
[ EDIT ]
|
[ DEL ]
📄 transformer-base.php
252 B
SET
[ EDIT ]
|
[ DEL ]
📄 transformers-registry.php
676 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: multi-props.php
<?php namespace Elementor\Modules\AtomicWidgets\PropsResolver; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Multi_Props { public static function is( $value ) { return ( ! empty( $value['$$multi-props'] ) && true === $value['$$multi-props'] && array_key_exists( 'value', $value ) ); } public static function generate( $value ) { return [ '$$multi-props' => true, 'value' => $value, ]; } public static function get_value( $value ) { return $value['value'] ?? null; } }