🚀 Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
mnt
/
web613
/
c2
/
38
/
570372438
/
htdocs
/
STRATO-apps
/
wordpress_02
/
app
/
wp-content
/
plugins
/
elementor
/
modules
/
interactions
/
props
✏️
Editing: keyframes-prop-type.php
<?php namespace Elementor\Modules\Interactions\Props; use Elementor\Modules\AtomicWidgets\PropTypes\Base\Array_Prop_Type; use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Prop_Type; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Keyframes_Prop_Type extends Array_Prop_Type { public static function get_key(): string { return 'keyframes'; } protected function define_item_type(): Prop_Type { return Keyframe_Stop_Prop_Type::make(); } protected function validate_value( $value ): bool { $is_empty_array = empty( $value ) && is_array( $value ); if ( $is_empty_array ) { return false; } return parent::validate_value( $value ); } }
💾 Save Changes
❌ Cancel