# elementor/3.26.4/core/utils/isolation-manager.php

Elementor Website Builder – more than just a page builder, version 3.26.4. 24 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.26.4/code/core/utils/isolation-manager.php
- Raw: https://pluginprobe.com/plugins/elementor/3.26.4/raw/core/utils/isolation-manager.php
- Modified: 2024-12-19T10:59:46+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.4/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;
		}
	}
}

```
