at path:
ROOT
/
wp-content
/
plugins
/
elementor
/
core
/
utils
/
static-collection.php
run:
R
W
Run
api
DIR
2026-04-14 05:34:14
R
W
Run
import-export
DIR
2026-04-14 05:34:14
R
W
Run
promotions
DIR
2026-04-14 05:34:14
R
W
Run
svg
DIR
2026-04-14 05:34:14
R
W
Run
ab-test.php
2.45 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-config-provider.php
1.49 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
assets-translation-loader.php
2.51 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
collection.php
10.13 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
exceptions.php
709 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
force-locale.php
3.55 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
hints.php
14.66 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
http.php
981 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
plugins-manager.php
2.84 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
static-collection.php
1.09 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
str.php
1001 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-element-iterator.php
766 By
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-import-export-utils.php
7.2 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
template-library-snapshot-processor.php
6.24 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
version.php
3.78 KB
2026-04-14 05:34:14
R
W
Run
Delete
Rename
error_log
up
📄
static-collection.php
Save
<?php namespace Elementor\Core\Utils; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Static_Collection { /** * The current Collection instance. * * @var Collection */ protected $collection; /** * Return only unique values. * * @var bool */ protected $unique_values = false; /** * @inheritDoc */ public function __construct( array $items = [], $unique_values = false ) { $this->collection = new Collection( $items ); $this->unique_values = $unique_values; } /** * Since this class is a wrapper, every call will be forwarded to wrapped class. * Most of the collection methods returns a new collection instance, and therefore * it will be assigned as the current collection instance after executing any method. * * @param string $name * @param array $arguments */ public function __call( $name, $arguments ) { $call = call_user_func_array( [ $this->collection, $name ], $arguments ); if ( $call instanceof Collection ) { $this->collection = $this->unique_values ? $call->unique() : $call; } return $call; } }