first commit

This commit is contained in:
Roman Pyrih
2026-04-21 15:48:41 +02:00
commit 7483681901
10216 changed files with 3236626 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<?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;
}
}