# elementor/3.32.1/modules/components/components.php

Elementor Website Builder – more than just a page builder, version 3.32.1. 26 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.32.1/code/modules/components/components.php
- Raw: https://pluginprobe.com/plugins/elementor/3.32.1/raw/modules/components/components.php
- Modified: 2025-09-15T10:10:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/elementor/3.32.1/code/modules/components/components.php#L10-L20`.

```php
<?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;
	}
}

```
