• File: trigger-value.php
  • Full Path: /home/bravrvjk/itiministry.org/wp-content/plugins/elementor/modules/interactions/validators/trigger-value.php
  • Date Modified: 03/30/2026 1:49 PM
  • File size: 505 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 );
	}
}