# elementor/3.16.0-dev2/app/modules/import-export/compatibility/base-adapter.php

Elementor Website Builder – more than just a page builder, version 3.16.0-dev2. 35 lines.

- Page: https://pluginprobe.com/plugins/elementor/3.16.0-dev2/code/app/modules/import-export/compatibility/base-adapter.php
- Raw: https://pluginprobe.com/plugins/elementor/3.16.0-dev2/raw/app/modules/import-export/compatibility/base-adapter.php
- Modified: 2023-04-23T11:22: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.16.0-dev2/code/app/modules/import-export/compatibility/base-adapter.php#L10-L20`.

```php
<?php

namespace Elementor\App\Modules\ImportExport\Compatibility;

use Elementor\App\Modules\ImportExport\Import;
use Elementor\Core\Base\Base_Object;

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

abstract class Base_Adapter {

	/**
	 * @param array $manifest_data
	 * @param array $meta
	 * @return false
	 */
	public static function is_compatibility_needed( array $manifest_data, array $meta ) {
		return false;
	}

	public function adapt_manifest( array $manifest_data ) {
		return $manifest_data;
	}

	public function adapt_site_settings( array $site_settings, array $manifest_data, $path ) {
		return $site_settings;
	}

	public function adapt_template( array $template_data, array $template_settings ) {
		return $template_data;
	}
}

```
