Gestionnaire de fichiers - Editer - /home/wwgoat/public_html/blog/wp-content/plugins/foxiz-core/admin/import/radium-importer.php
Arrière
<?php /** Don't load directly */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'RB_Radium_Theme_Importer' ) ) { class RB_Radium_Theme_Importer { public $directory; public $main_path; public $theme_options_file; public $categories_file; public $theme_option_name; public $selection_data; /** * Holds a copy of the object for easy reference. * @since 0.0.2 * @var object */ public $widgets; /** * Holds a copy of the object for easy reference. * @since 0.0.2 * @var object */ public $content_demo; public $content_pages; /** * Flag imported to prevent duplicates * @since 0.0.3 * @var array */ public $flag_as_imported = array(); /** * Flag imported to prevent duplicates * @since 0.0.3 * @var bool */ public $add_admin_menu = true; /** * Holds a copy of the object for easy reference. * @since 0.0.2 * @var object */ private static $instance; /** * Constructor. Hooks all interactions to initialize the class. * @since 0.0.2 */ public function __construct() { self::$instance = $this; $this->flag_as_imported = get_option( 'rb_imported_demos' ); add_filter( 'add_post_metadata', array( $this, 'check_previous_meta' ), 10, 5 ); add_action( 'rb_importer_ended', array( $this, 'after_wp_importer' ) ); $this->process_imports(); } /** * Avoids adding duplicate meta causing arrays in arrays from WP_importer * * @param null $continue * @param unknown $post_id * @param unknown $meta_key * @param unknown $meta_value * @param unknown $unique * * @since 0.0.2 * @return */ public function check_previous_meta( $continue, $post_id, $meta_key, $meta_value, $unique ) { $old_value = get_metadata( 'post', $post_id, $meta_key ); if ( count( $old_value ) == 1 ) { if ( $old_value[0] === $meta_value ) { return false; } elseif ( $old_value[0] !== $meta_value ) { update_post_meta( $post_id, $meta_key, $meta_value ); return false; } } } /** * Add Panel Page * @since 0.0.2 */ public function after_wp_importer() { update_option( 'rb_imported_demos', $this->flag_as_imported ); } /** * Process all imports * @params $content * @params $options * @params $widgets * @since 0.0.3 * @return null */ public function process_imports() { $content = false; $pages = false; $theme_opts = false; $widgets = false; if ( ! empty( $this->selection_data['import_all'] ) && 1 == $this->selection_data['import_all'] ) { $content = true; $pages = true; $theme_opts = true; $widgets = true; } else { /** import parts of data */ if ( ! empty( $this->selection_data['import_content'] ) && 1 == $this->selection_data['import_content'] ) { $content = true; } if ( ! empty( $this->selection_data['import_pages'] ) && 1 == $this->selection_data['import_pages'] ) { $pages = true; } if ( ! empty( $this->selection_data['import_opts'] ) && 1 == $this->selection_data['import_opts'] ) { $theme_opts = true; } if ( ! empty( $this->selection_data['import_widgets'] ) && 1 == $this->selection_data['import_widgets'] ) { $widgets = true; } } if ( $content && ! empty( $this->content_demo ) ) { $this->set_demo_data( $this->content_demo, true ); } else { if ( $pages && ! empty( $this->content_pages )) { $this->set_demo_data( $this->content_pages, false ); } else { echo 'Skip content'; } } if ( $content || $pages ) { do_action( 'rb_importer_content_settings', $this->directory ); } if ( $theme_opts && ! empty( $this->theme_options_file ) ) { $this->set_demo_theme_options( $this->theme_options_file ); if ( ! empty( $this->categories_file ) ) { $this->set_demo_category_settings( $this->categories_file ); } } if ( $widgets && ! empty( $this->widgets ) ) { $this->process_widget_import_file( $this->widgets ); } do_action( 'rb_importer_ended', $this->directory ); } /** * add_widget_to_sidebar Import sidebars * * @param string $sidebar_slug Sidebar slug to add widget * @param string $widget_slug Widget slug * @param string $count_mod position in sidebar * @param array $widget_settings widget settings * * @since 0.0.2 * @return null */ public function add_widget_to_sidebar( $sidebar_slug, $widget_slug, $count_mod, $widget_settings = array() ) { $sidebars_widgets = get_option( 'sidebars_widgets' ); if ( ! isset( $sidebars_widgets[ $sidebar_slug ] ) ) { $sidebars_widgets[ $sidebar_slug ] = array( '_multiwidget' => 1 ); } $newWidget = get_option( 'widget_' . $widget_slug ); if ( ! is_array( $newWidget ) ) { $newWidget = array(); } $count = count( $newWidget ) + 1 + $count_mod; $sidebars_widgets[ $sidebar_slug ][] = $widget_slug . '-' . $count; $newWidget[ $count ] = $widget_settings; update_option( 'sidebars_widgets', $sidebars_widgets ); update_option( 'widget_' . $widget_slug, $newWidget ); } public function set_demo_data( $file, $content = true ) { if ( ! defined( 'WP_LOAD_IMPORTERS' ) ) { define( 'WP_LOAD_IMPORTERS', true ); } require_once ABSPATH . 'wp-admin/includes/import.php'; $importer_error = false; if ( ! class_exists( 'WP_Importer' ) ) { $class_wp_importer = ABSPATH . 'wp-admin/includes/class-wp-importer.php'; if ( file_exists( $class_wp_importer ) ) { require_once( $class_wp_importer ); } else { $importer_error = true; } } if ( ! class_exists( 'RB_WP_Import' ) ) { $class_wp_import = dirname( __FILE__ ) . '/lib/wordpress-importer.php'; if ( file_exists( $class_wp_import ) ) { require_once( $class_wp_import ); } else { $importer_error = true; } } if ( $importer_error ) { die( "Error on import" ); } else { /** before import */ if ( $content ) { do_action( 'rb_importer_before_content', $this->directory ); } else { do_action( 'rb_importer_before_pages', $this->directory ); } set_time_limit( 0 ); $wp_import = new RB_WP_Import(); $wp_import->fetch_attachments = true; $wp_import->import( $file ); $this->flag_as_imported[ strval( $this->directory ) ]['content'] = true; } /** after import content xml */ do_action( 'rb_importer_after_content', $this->directory ); } public function set_demo_theme_options( $file ) { // Does the File exist? if ( file_exists( $file ) ) { WP_Filesystem(); global $wp_filesystem; $data = $wp_filesystem->get_contents( $file ); $data = json_decode( $data, true ); $data = maybe_unserialize( $data ); } else { $data = wp_remote_get( $file, array( 'timeout' => 120, 'sslverify' => false ) ); if ( ! is_wp_error( $data ) ) { $data = wp_remote_retrieve_body( $data ); $data = json_decode( $data, true ); $data = maybe_unserialize( $data ); } } if ( empty( $data ) ) { wp_die( esc_html__( 'Widget Import file could not be found. Please try again.', 'foxiz-core' ), '', array( 'back_link' => true ) ); } do_action( 'rb_importer_before_theme_options', $this->directory ); if ( ! empty( $data ) || is_array( $data ) ) { update_option( $this->theme_option_name, $data ); $this->flag_as_imported[ strval( $this->directory ) ]['options'] = true; } /** after import theme options */ do_action( 'rb_importer_after_tos', $this->directory, $this->main_path ); } /** * @param $file */ public function set_demo_category_settings( $file ) { // Does the File exist? if ( file_exists( $file ) ) { WP_Filesystem(); global $wp_filesystem; $data = $wp_filesystem->get_contents( $file ); $data = json_decode( $data, true ); $data = maybe_unserialize( $data ); } else { $data = wp_remote_get( $file, array( 'timeout' => 120, 'sslverify' => false ) ); if ( ! is_wp_error( $data ) ) { $data = wp_remote_retrieve_body( $data ); $data = json_decode( $data, true ); $data = maybe_unserialize( $data ); } } if ( empty( $data ) ) { wp_die( esc_html__( 'Category settings file could not be found. Please try again.', 'foxiz-core' ), '', array( 'back_link' => true ) ); } $meta_ID = 'foxiz_category_meta'; if ( ! empty( $data ) || is_array( $data ) ) { self::mapping_category_id( $meta_ID, $data ); } } /** * @param $meta_ID * @param $data */ static function mapping_category_id( $meta_ID, $data ) { if ( ! empty( $data ) && is_array( $data ) ) { foreach ( $data as $category_id => $setting ) { if ( ! empty( $setting['_term_slug'] ) ) { $current_term = get_category_by_slug( $setting['_term_slug'] ); if ( ! empty( $current_term ) ) { $data[ $current_term->term_id ] = $setting; unset( $data[ $category_id ] ); } } } } update_option( $meta_ID, $data ); } /** * Available widgets * Gather site's widgets into array with ID base, name, etc. * Used by export and import functions. * @since 0.0.2 * @global array $wp_registered_widget_updates * @return array Widget information */ function available_widgets() { global $wp_registered_widget_controls; $widget_controls = $wp_registered_widget_controls; $available_widgets = array(); foreach ( $widget_controls as $widget ) { if ( ! empty( $widget['id_base'] ) && ! isset( $available_widgets[ $widget['id_base'] ] ) ) { // no dupes $available_widgets[ $widget['id_base'] ]['id_base'] = $widget['id_base']; $available_widgets[ $widget['id_base'] ]['name'] = $widget['name']; } } return apply_filters( 'rb_importer_widget_available_widgets', $available_widgets ); } /** * Process import file * This parses a file and triggers importation of its widgets. * @since 0.0.2 * * @param string $file Path to .wie file uploaded * * @global string $widget_import_results */ function process_widget_import_file( $file ) { // File exists? if ( file_exists( $file ) ) { WP_Filesystem(); global $wp_filesystem; $data = $wp_filesystem->get_contents( $file ); $data = json_decode( $data ); } else { $data = wp_remote_get( $file, array( 'timeout' => 120, 'sslverify' => false ) ); if ( ! is_wp_error( $data ) ) { $data = wp_remote_retrieve_body( $data ); $data = json_decode( $data ); } } if ( empty( $data ) ) { wp_die( esc_html__( 'Widget Import file could not be found. Please try again.', 'foxiz-core' ), '', array( 'back_link' => true ) ); } do_action( 'rb_importer_before_widgets', $this->directory, $this->main_path ); $this->widget_import_results = $this->import_widgets( $data ); } /** * Import widget JSON data * @since 0.0.2 * @global array $wp_registered_sidebars * * @param object $data JSON widget data from .json file * * @return array Results array */ public function import_widgets( $data ) { global $wp_registered_sidebars; // Have valid data? // If no data or could not decode if ( empty( $data ) || ! is_object( $data ) ) { return; } $data = apply_filters( 'rb_importer_widget_data', $data ); // Get all available widgets site supports $available_widgets = $this->available_widgets(); // Get all existing widget instances $widget_instances = array(); foreach ( $available_widgets as $widget_data ) { $widget_instances[ $widget_data['id_base'] ] = get_option( 'widget_' . $widget_data['id_base'] ); } // Begin results $results = array(); // Loop import data's sidebars foreach ( $data as $sidebar_id => $widgets ) { // Skip inactive widgets // (should not be in export file) if ( 'wp_inactive_widgets' == $sidebar_id ) { continue; } // Check if sidebar is available on this site // Otherwise add widgets to inactive, and say so if ( isset( $wp_registered_sidebars[ $sidebar_id ] ) ) { $sidebar_available = true; $use_sidebar_id = $sidebar_id; $sidebar_message_type = 'success'; $sidebar_message = ''; } else { $sidebar_available = false; $use_sidebar_id = 'wp_inactive_widgets'; // add to inactive if sidebar does not exist in theme $sidebar_message_type = 'error'; $sidebar_message = esc_html__( 'Sidebar does not exist in theme (using Inactive)', 'foxiz-core' ); } // Result for sidebar $results[ $sidebar_id ]['name'] = ! empty( $wp_registered_sidebars[ $sidebar_id ]['name'] ) ? $wp_registered_sidebars[ $sidebar_id ]['name'] : $sidebar_id; // sidebar name if theme supports it; otherwise ID $results[ $sidebar_id ]['message_type'] = $sidebar_message_type; $results[ $sidebar_id ]['message'] = $sidebar_message; $results[ $sidebar_id ]['widgets'] = array(); // Loop widgets foreach ( $widgets as $widget_instance_id => $widget ) { $fail = false; // Get id_base (remove -# from end) and instance ID number $id_base = preg_replace( '/-[0-9]+$/', '', $widget_instance_id ); $instance_id_number = str_replace( $id_base . '-', '', $widget_instance_id ); // Does site support this widget? if ( ! $fail && ! isset( $available_widgets[ $id_base ] ) ) { $fail = true; $widget_message_type = 'error'; $widget_message = esc_html__( 'Site does not support widget', 'foxiz-core' ); // explain why widget not imported } // Filter to modify settings before import // Do before identical check because changes may make it identical to end result (such as URL replacements) $widget = apply_filters( 'rb_importer_widget_settings', $widget ); // Does widget with identical settings already exist in same sidebar? if ( ! $fail && isset( $widget_instances[ $id_base ] ) ) { // Get existing widgets in this sidebar $sidebars_widgets = get_option( 'sidebars_widgets' ); $sidebar_widgets = isset( $sidebars_widgets[ $use_sidebar_id ] ) ? $sidebars_widgets[ $use_sidebar_id ] : array(); // check Inactive if that's where will go // Loop widgets with ID base $single_widget_instances = ! empty( $widget_instances[ $id_base ] ) ? $widget_instances[ $id_base ] : array(); foreach ( $single_widget_instances as $check_id => $check_widget ) { // Is widget in same sidebar and has identical settings? if ( in_array( "$id_base-$check_id", $sidebar_widgets ) && (array) $widget == $check_widget ) { $fail = true; $widget_message_type = 'warning'; $widget_message = esc_html__( 'Widget already exists', 'foxiz-core' ); // explain why widget not imported break; } } } // No failure if ( ! $fail ) { // Add widget instance $single_widget_instances = get_option( 'widget_' . $id_base ); // all instances for that widget ID base, get fresh every time $single_widget_instances = ! empty( $single_widget_instances ) ? $single_widget_instances : array( '_multiwidget' => 1 ); // start fresh if have to $single_widget_instances[] = (array) $widget; // add it // Get the key it was given end( $single_widget_instances ); $new_instance_id_number = key( $single_widget_instances ); // If key is 0, make it 1 // When 0, an issue can occur where adding a widget causes data from other widget to load, and the widget doesn't stick (reload wipes it) if ( '0' === strval( $new_instance_id_number ) ) { $new_instance_id_number = 1; $single_widget_instances[ $new_instance_id_number ] = $single_widget_instances[0]; unset( $single_widget_instances[0] ); } // Move _multiwidget to end of array for uniformity if ( isset( $single_widget_instances['_multiwidget'] ) ) { $multiwidget = $single_widget_instances['_multiwidget']; unset( $single_widget_instances['_multiwidget'] ); $single_widget_instances['_multiwidget'] = $multiwidget; } // Update option with new widget update_option( 'widget_' . $id_base, $single_widget_instances ); // Assign widget instance to sidebar $sidebars_widgets = get_option( 'sidebars_widgets' ); // which sidebars have which widgets, get fresh every time $new_instance_id = $id_base . '-' . $new_instance_id_number; // use ID number from new widget instance $sidebars_widgets[ $use_sidebar_id ][] = $new_instance_id; // add new instance to sidebar update_option( 'sidebars_widgets', $sidebars_widgets ); // save the amended data // Success message` if ( $sidebar_available ) { $widget_message_type = 'success'; $widget_message = esc_html__( 'Imported', 'foxiz-core' ); } else { $widget_message_type = 'warning'; $widget_message = esc_html__( 'Imported to Inactive', 'foxiz-core' ); } } // Result for widget instance $results[ $sidebar_id ]['widgets'][ $widget_instance_id ]['name'] = isset( $available_widgets[ $id_base ]['name'] ) ? $available_widgets[ $id_base ]['name'] : $id_base; // widget name or ID if name not available (not supported by site) $results[ $sidebar_id ]['widgets'][ $widget_instance_id ]['title'] = ! empty( $widget->title ) ? $widget->title : esc_html__( 'No Title', 'foxiz-core' ); // show "No Title" if widget instance is untitled $results[ $sidebar_id ]['widgets'][ $widget_instance_id ]['message_type'] = $widget_message_type; $results[ $sidebar_id ]['widgets'][ $widget_instance_id ]['message'] = $widget_message; } } $this->flag_as_imported[ strval( $this->directory ) ]['widgets'] = true; do_action( 'rb_importer_after_widgets', $this->directory, $this->main_path ); // Return results return $results; } } }
| ver. 1.4 |
Github
|
.
| PHP 8.0.30 | Génération de la page: 0 |
proxy
|
phpinfo
|
Réglages