PluginProbe
Elementor Website Builder – more than just a page builder / 3.29.2
Elementor Website Builder – more than just a page builder v3.29.2
4.3.0-beta2 4.3.0-beta1 4.2.4 4.2.3 4.2.2 4.2.1 4.2.0 4.1.5 4.2.0-beta2 4.2.0-dev2 4.2.0-beta1 4.1.4 4.1.3 4.1.2 4.1.1 4.1.0 4.1.0-beta3 4.1.0-dev3 4.0.9 4.1.0-beta2 4.1.0-dev2 4.0.8 4.1.0-beta1 4.1.0-dev1 4.0.7 All 451 releases
elementor / app / modules / import-export / compatibility / base-adapter.php

base-adapter.php in Elementor Website Builder – more than just a page builder 3.29.2, at app/modules/import-export/compatibility/base-adapter.php

35 lines 768 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace Elementor\App\Modules\ImportExport\Compatibility;
4
5 use Elementor\App\Modules\ImportExport\Import;
6 use Elementor\Core\Base\Base_Object;
7
8 if ( ! defined( 'ABSPATH' ) ) {
9 exit; // Exit if accessed directly.
10 }
11
12 abstract class Base_Adapter {
13
14 /**
15 * @param array $manifest_data
16 * @param array $meta
17 * @return false
18 */
19 public static function is_compatibility_needed( array $manifest_data, array $meta ) {
20 return false;
21 }
22
23 public function adapt_manifest( array $manifest_data ) {
24 return $manifest_data;
25 }
26
27 public function adapt_site_settings( array $site_settings, array $manifest_data, $path ) {
28 return $site_settings;
29 }
30
31 public function adapt_template( array $template_data, array $template_settings ) {
32 return $template_data;
33 }
34 }
35