# elementor/3.26.0-dev4/core/utils/isolation-manager.php

Elementor Website Builder – more than just a page builder, version 3.26.0-dev4. 24 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.26.0-dev4/code/core/utils/isolation-manager.php
- Raw: https://pluginprobe.com/plugins/elementor/3.26.0-dev4/raw/core/utils/isolation-manager.php
- Modified: 2024-12-10T14:19:32+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.26.0-dev4/code/core/utils/isolation-manager.php#L10-L20`.

```php
<?php

namespace Elementor\Core\Utils;

use Elementor\Plugin;

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

abstract class Isolation_Manager {
	/**
	 * @param string $adapter_name
	 */
	public static function get_adapter( string $adapter_name ) {
		try {
			return PLugin::$instance->elementor_container()
				->get( $adapter_name );
		} catch ( Exception $e ) {
			return null;
		}
	}
}

```
