PHP 8.2.31
Preview: global-classes.php Size: 931 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/elementor/modules/global-classes/global-classes.php

<?php

namespace Elementor\Modules\GlobalClasses;

use Elementor\Core\Utils\Collection;

class Global_Classes {
	private Collection $items;
	private Collection $order;
	private Collection $ordered_items;

	public static function make( array $items = [], array $order = [] ) {
		return new static( $items, $order );
	}

	private function __construct( array $data = [], array $order = [] ) {
		$this->items = Collection::make( $data );
		$this->order = Collection::make( $order );
		$this->ordered_items = $this->order
			->map( fn( $id ) => $data[ $id ] ?? null )
			->filter( fn( $item ) => null !== $item );
	}

	public function get_items() {
		return $this->items;
	}

	public function get_order() {
		return $this->order;
	}

	public function get_ordered_items() {
		return $this->ordered_items;
	}

	public function get() {
		return [
			'items' => $this->get_items()->all(),
			'order' => $this->get_order()->all(),
		];
	}
}

Directory Contents

Dirs: 7 × Files: 13

Name Size Perms Modified Actions
concerns DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
database DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
usage DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
utils DIR
- drwxr-xr-x 2026-06-10 02:40:26
Edit Download
4.83 KB lrw-r--r-- 2026-06-08 16:48:02
Edit Download
765 B lrw-r--r-- 2026-05-20 16:19:28
Edit Download
6.47 KB lrw-r--r-- 2026-05-26 12:54:34
Edit Download
2.46 KB lrw-r--r-- 2026-06-08 16:48:02
Edit Download
3.44 KB lrw-r--r-- 2026-06-08 16:48:02
Edit Download
1.89 KB lrw-r--r-- 2026-06-08 16:48:02
Edit Download
4.15 KB lrw-r--r-- 2026-05-20 16:19:28
Edit Download
5.60 KB lrw-r--r-- 2026-05-26 12:54:34
Edit Download
9.73 KB lrw-r--r-- 2026-05-20 16:19:28
Edit Download
14.69 KB lrw-r--r-- 2026-06-08 16:48:02
Edit Download
13.48 KB lrw-r--r-- 2026-06-08 16:48:02
Edit Download
931 B lrw-r--r-- 2026-03-30 13:49:26
Edit Download
4.10 KB lrw-r--r-- 2026-05-26 12:54:34
Edit Download

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