🚀 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
/
atomic-widgets
/
prop-types
/
concerns
✏️
Editing: has-generate.php
<?php namespace Elementor\Modules\AtomicWidgets\PropTypes\Concerns; use Elementor\Modules\AtomicWidgets\PropTypes\Contracts\Transformable_Prop_Type; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } trait Has_Generate { public static function generate( $value, $disable = false ): array { $value = [ '$$type' => static::get_key(), 'value' => $value, ]; if ( $disable ) { $value['disabled'] = true; } return $value; } abstract public static function get_key(): string; }
💾 Save Changes
❌ Cancel