Files
roi-theme/wp-content/plugins/wp-ultimate-csv-importer/extensionModules/ElementorExtension.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

80 lines
2.9 KiB
PHP
Executable 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);
$import_type = $this->import_name_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 == 'CustomPosts'){
$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 ){
$import_type = $this->import_name_as($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 == 'CustomPosts') {
return true;
}else{
return false;
}
}
}
}