PHP 8.2.31
Preview: style-variant.php Size: 898 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/elementor/modules/atomic-widgets/styles/style-variant.php

<?php

namespace Elementor\Modules\AtomicWidgets\Styles;

class Style_Variant {
	private ?string $breakpoint = null;
	private ?string $state = null;

	/** @var array<string, array> */
	private array $props = [];

	public static function make(): self {
		return new self();
	}

	public function set_breakpoint( string $breakpoint ): self {
		$this->breakpoint = $breakpoint;
		return $this;
	}

	public function set_state( string $state ): self {
		$this->state = $state;
		return $this;
	}

	public function add_prop( string $key, $value ): self {
		$this->props[ $key ] = $value;
		return $this;
	}

	public function add_props( array $props ): self {
		$this->props = array_merge( $this->props, $props );
		return $this;
	}

	public function build(): array {
		return [
			'meta' => [
				'breakpoint' => $this->breakpoint,
				'state' => $this->state,
			],
			'props' => $this->props,
		];
	}
}

Directory Contents

Dirs: 1 × Files: 12

Name Size Perms Modified Actions
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
7.27 KB lrw-r--r-- 2026-02-02 14:52:12
Edit Download
1.21 KB lrw-r--r-- 2025-12-22 17:25:58
Edit Download
3.77 KB lrw-r--r-- 2026-05-20 16:19:28
Edit Download
2.41 KB lrw-r--r-- 2025-12-22 17:25:58
Edit Download
5.80 KB lrw-r--r-- 2026-05-20 16:19:28
Edit Download
759 B lrw-r--r-- 2025-03-17 17:28:54
Edit Download
946 B lrw-r--r-- 2025-12-22 17:25:58
Edit Download
1.16 KB lrw-r--r-- 2025-12-22 17:25:58
Edit Download
16.99 KB lrw-r--r-- 2026-05-20 16:19:28
Edit Download
2.40 KB lrw-r--r-- 2026-03-30 13:49:26
Edit Download
898 B lrw-r--r-- 2025-12-22 17:25:58
Edit Download
5.03 KB lrw-r--r-- 2026-02-02 14:52:12
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).