[ 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
/
modules
/
atomic-widgets
/
styles
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 cache-validity
SET
[ DEL ]
📄 atomic-styles-manager.php
7,443 B
SET
[ EDIT ]
|
[ DEL ]
📄 atomic-widget-base-styles.php
1,240 B
SET
[ EDIT ]
|
[ DEL ]
📄 atomic-widget-styles.php
3,820 B
SET
[ EDIT ]
|
[ DEL ]
📄 css-files-manager.php
2,463 B
SET
[ EDIT ]
|
[ DEL ]
📄 size-constants.php
5,164 B
SET
[ EDIT ]
|
[ DEL ]
📄 style-definition.php
759 B
SET
[ EDIT ]
|
[ DEL ]
📄 style-file.php
946 B
SET
[ EDIT ]
|
[ DEL ]
📄 style-fonts.php
1,191 B
SET
[ EDIT ]
|
[ DEL ]
📄 style-schema.php
15,869 B
SET
[ EDIT ]
|
[ DEL ]
📄 style-states.php
2,454 B
SET
[ EDIT ]
|
[ DEL ]
📄 style-variant.php
898 B
SET
[ EDIT ]
|
[ DEL ]
📄 styles-renderer.php
5,152 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: style-definition.php
<?php namespace Elementor\Modules\AtomicWidgets\Styles; class Style_Definition { private string $type = 'class'; private string $label = ''; /** @var Style_Variant[] */ private array $variants = []; public static function make(): self { return new self(); } public function set_type( string $type ): self { $this->type = $type; return $this; } public function set_label( string $label ): self { $this->label = $label; return $this; } public function add_variant( Style_Variant $variant ): self { $this->variants[] = $variant->build(); return $this; } public function build( string $id ): array { return [ 'id' => $id, 'type' => $this->type, 'label' => $this->label, 'variants' => $this->variants, ]; } }