ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF x x ?? C ?? C ?à " ?? ?? μ } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú?? ?? μ w !1AQ aq"2?B‘?±á #3Rebr?{
File "base-adapter.php"
Full Path: /home/zcziejy/ryadselyen/elementor/app/modules/import-export/compatibility/base-adapter.php
File size: 767 bytes
MIME-type: text/x-php
Charset: utf-8
<?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;
}
}