- 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>
101 lines
3.7 KiB
PHP
Executable File
101 lines
3.7 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 JetEngineCPTExtension extends ExtensionHandler{
|
|
private static $instance = null;
|
|
|
|
public static function getInstance() {
|
|
if (JetEngineCPTExtension::$instance == null) {
|
|
JetEngineCPTExtension::$instance = new JetEngineCPTExtension;
|
|
}
|
|
return JetEngineCPTExtension::$instance;
|
|
}
|
|
|
|
/**
|
|
* Provides default mapping fields for Jet Engine Pro plugin
|
|
* @param string $data - selected import type
|
|
* @return array - mapping fields
|
|
*/
|
|
|
|
public function processExtension($data){
|
|
$import_type = $data;
|
|
$response = [];
|
|
$jet_engine_cpt_fields = $this->JetEngineCPTFields($import_type);
|
|
if(!empty($jet_engine_cpt_fields))
|
|
$response['jetenginecpt_fields'] = $jet_engine_cpt_fields;
|
|
return $response;
|
|
}
|
|
|
|
/**
|
|
* Retrieves Jet Engine custom post mapping fields
|
|
* @param string $import_type - selected import type
|
|
* @return array - mapping fields
|
|
*/
|
|
public function JetEngineCPTFields($import_type) {
|
|
global $wpdb;
|
|
|
|
//$get_meta_fields = $wpdb->get_results($wpdb->prepare("SELECT id, meta_fields FROM {$wpdb->prefix}jet_post_types WHERE slug = %s AND status = %s", $import_type, 'publish'));
|
|
$import_type = $this->import_post_types($import_type);
|
|
if($import_type == 'WooCommerce Product'){
|
|
$import_type = 'product';
|
|
}
|
|
|
|
$get_meta_fields = $wpdb->get_results("SELECT id, meta_fields FROM {$wpdb->prefix}jet_post_types WHERE slug = '$import_type' AND status IN ('publish','built-in')");
|
|
|
|
if(isset($get_meta_fields[0])){
|
|
$unserialized_meta = maybe_unserialize($get_meta_fields[0]->meta_fields);
|
|
}
|
|
else{
|
|
$unserialized_meta = '';
|
|
}
|
|
if(is_array($unserialized_meta)){
|
|
foreach($unserialized_meta as $jet_key => $jet_value){
|
|
$jet_field_label = $jet_value['title'];
|
|
$jet_field_name = $jet_value['name'];
|
|
$jet_field_type = $jet_value['type'];
|
|
if($jet_field_type != 'repeater' && $jet_field_type != 'media' && $jet_field_type != 'gallery' && $jet_field_type != 'posts' && $jet_field_type != 'html' ){
|
|
$customFields["JECPT"][ $jet_key ]['label'] = $jet_field_label;
|
|
$customFields["JECPT"][ $jet_key ]['name'] = $jet_field_name;
|
|
}
|
|
}
|
|
}
|
|
if(isset($customFields)){
|
|
$jet_value = $this->convert_fields_to_array($customFields);
|
|
}
|
|
else{
|
|
$jet_value = '';
|
|
}
|
|
return $jet_value;
|
|
}
|
|
|
|
/**
|
|
* Jet Engine extension supported import types
|
|
* @param string $import_type - selected import type
|
|
* @return boolean
|
|
*/
|
|
public function extensionSupportedImportType($import_type){
|
|
if(is_plugin_active('jet-engine/jet-engine.php')){
|
|
if($import_type == 'nav_menu_item'){
|
|
return false;
|
|
}
|
|
$import_type = $this->import_name_as($import_type);
|
|
if($import_type =='Posts' || $import_type =='Pages' || $import_type =='CustomPosts' || $import_type =='event' || $import_type =='location' || $import_type == 'event-recurring' || $import_type =='Users' || $import_type =='WooCommerce' || $import_type =='WooCommerceCategories' || $import_type =='WooCommerceattribute' || $import_type =='WooCommercetags' || $import_type =='WPeCommerce' || $import_type =='Taxonomies' || $import_type =='Tags' || $import_type =='Categories' || $import_type == 'CustomerReviews' || $import_type ='Comments') {
|
|
return true;
|
|
}
|
|
else{
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|