Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
demountable
/
wp-content
/
plugins
/
elementor
/
modules
/
components
:
components.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Elementor\Modules\Components; use Elementor\Core\Utils\Collection; if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } class Components { private Collection $components; public static function make( array $components = [] ) { return new static( $components ); } private function __construct( array $components = [] ) { $this->components = Collection::make( $components ); } public function get_components() { return $this->components; } }