[ 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
/
modules
/
interactions
/
validators
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 breakpoints-value.php
1,652 B
SET
[ EDIT ]
|
[ DEL ]
📄 custom-effect-value.php
851 B
SET
[ EDIT ]
|
[ DEL ]
📄 string-value.php
634 B
SET
[ EDIT ]
|
[ DEL ]
📄 trigger-value.php
505 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: trigger-value.php
<?php namespace Elementor\Modules\Interactions\Validators; use Elementor\Modules\Interactions\Validators\String_Value as StringValueValidator; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Trigger_Value { private const VALID_TRIGGERS = [ 'load', 'scrollIn', 'scrollOut', 'scrollOn', 'hover', 'click', ]; public static function is_valid( $trigger_prop_value ) { return StringValueValidator::is_valid( $trigger_prop_value, static::VALID_TRIGGERS ); } }