%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 54.36.91.62 / Your IP : 216.73.217.162 Web Server : Apache System : Linux webm002.cluster127.gra.hosting.ovh.net 5.15.206-ovh-vps-grsec-zfs-classid #1 SMP Fri May 15 02:41:25 UTC 2026 x86_64 User : wellingtpa ( 97533) PHP Version : 7.4.33 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wellingtpa/wellingtonrecord/wp-content/plugins/elementor/includes/container/ |
Upload File : |
<?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;
}
}