SILENT KILLERPanel

Current Path: > home > codekrsu > > cuddlebuds.lk > wp-content > plugins > elementor > includes > container


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//cuddlebuds.lk/wp-content/plugins/elementor/includes/container

NameTypeSizeLast ModifiedActions
config.php File 236 bytes October 28 2024 15:08:46.
container.php File 1111 bytes March 17 2025 17:28:54.

Reading File: /home/codekrsu//cuddlebuds.lk/wp-content/plugins/elementor/includes/container/container.php

<?php

namespace Elementor\Container;

use ElementorDeps\DI\ContainerBuilder;
use ElementorDeps\DI\Container as DIContainer;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}

/**
 * Elementor Container.
 *
 * Elementor container handler class is responsible for the containerization
 * of manager classes and their dependencies.
 *
 * @since 3.24.0
 */
class Container {

	protected static $instance;

	private function __construct() {}

	private function __clone() {}

	private static function initialize(): DIContainer {
		if ( isset( self::$instance ) ) {
			return self::$instance;
		}

		$builder = new ContainerBuilder();

		self::register_configuration( $builder );
		return $builder->build();
	}

	private static function register_configuration( ContainerBuilder $builder ) {
		$builder->addDefinitions( __DIR__ . '/config.php' );
	}

	public static function initialize_instance() {
		static::$instance = self::initialize();
	}

	public static function get_instance() {
		if ( is_null( static::$instance ) ) {
			self::initialize_instance();
		}

		return static::$instance;
	}
}

SILENT KILLER Tool