| Server IP : 62.60.133.156 / Your IP : 216.73.217.51 Web Server : LiteSpeed System : Linux linux24.centraldnserver.com 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64 User : mimradmin ( 1166) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, exec, popen, proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /proc/self/cwd/wp-content/plugins/wp-ultimate-csv-importer/extensionModules/ |
Upload File : |
<?php
/******************************************************************************************
* Copyright (C) Smackcoders. - All Rights Reserved under Smackcoders Proprietary License
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* You can contact Smackcoders at email address info@smackcoders.com.
*******************************************************************************************/
namespace Smackcoders\FCSV;
if ( ! defined( 'ABSPATH' ) )
exit; // Exit if accessed directly
class ElementorExtension extends ExtensionHandler{
private static $instance = null;
public static function getInstance() {
if (ElementorExtension::$instance == null) {
ElementorExtension::$instance = new ElementorExtension;
}
return ElementorExtension::$instance;
}
/**
* Provides Product Meta fields for specific post type
* @param string $data - selected import type
* @return array - mapping fields
*/
public function processExtension($data){
$import_type = $data;
$response = [];
$import_type = $this->import_type_as($import_type);
if( is_plugin_active('elementor/elementor.php') || is_plugin_active('elementor-pro/elementor-pro.php') ){
if($import_type == 'Posts' || $import_type == 'Pages' || $import_type == 'WooCommerce Product' || $import_type == 'Custom Posts'){
$pro_meta_fields = array(
'Elementor Template Type' => '_elementor_template_type',
'Elementor Version' => '_elementor_version',
'Elementor Pro Version' => '_elementor_pro_version',
'Page Template' => '_wp_page_template',
'Elementor Edit Mode' => '_elementor_edit_mode',
'Elementor Library Type' => 'elementor_library_type',
'Elementor Controls Usage' => '_elementor_controls_usage',
'Elementor Library Category' => 'elementor_library_category',
'Elementor CSS' => '_elementor_css',
'Elementor Conditions' => '_elementor_conditions',
'Elementor Page Assets' =>'_elementor_page_assets',
'Elementor Page Settings' => '_elementor_page_settings',
'Elementor Data' => '_elementor_data'
);
}
}
$pro_meta_fields_line = $this->convert_static_fields_to_array($pro_meta_fields);
$response['elementor_meta_fields'] = $pro_meta_fields_line;
return $response;
}
/**
* Product Meta extension supported import types
* @param string $import_type - selected import type
* @return boolean
*/
public function extensionSupportedImportType($import_type ){
if( is_plugin_active('elementor/elementor.php') || is_plugin_active('elementor-pro/elementor-pro.php')){
if($import_type == 'elementor_library' || $import_type == 'Pages' || $import_type == 'Posts' || $import_type == 'WooCommerce Product' || $import_type == 'Custom Posts') {
return true;
}else{
return false;
}
}
}
}