# elementor/3.25.4/core/isolation/kit-adapter.php

Elementor Website Builder – more than just a page builder, version 3.25.4. 16 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.25.4/code/core/isolation/kit-adapter.php
- Raw: https://pluginprobe.com/plugins/elementor/3.25.4/raw/core/isolation/kit-adapter.php
- Modified: 2024-10-28T11:08: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.25.4/code/core/isolation/kit-adapter.php#L10-L20`.

```php
<?php
namespace Elementor\Core\Isolation;

use Elementor\Plugin;

class Kit_Adapter implements Kit_Adapter_Interface {

	public function get_kit_settings() {
		return Plugin::$instance->kits_manager->get_kit_for_frontend()->get_settings();
	}

	public function get_main_post() {
		return Plugin::$instance->kits_manager->get_kit_for_frontend()->get_main_post();
	}
}

```
