[ 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
/
display-conditions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 assets
SET
[ DEL ]
📁 classes
SET
[ DEL ]
📁 conditions
SET
[ DEL ]
📄 display-conditions-control.php
628 B
SET
[ EDIT ]
|
[ DEL ]
📄 module.php
8,838 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: display-conditions-control.php
<?php namespace ElementorPro\Modules\DisplayConditions; use Elementor\Modules\AtomicWidgets\Base\Atomic_Control_Base; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Display_Conditions_Control extends Atomic_Control_Base { private ?bool $disabled = null; public function get_type(): string { return 'display-conditions'; } public function set_disabled( bool $disabled ): self { $this->disabled = $disabled; return $this; } public function get_props(): array { $props = []; if ( null !== $this->disabled ) { $props['disabled'] = $this->disabled; } return $props; } }