D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
ltfsolutionsco
/
www
/
wp-content
/
plugins
/
ditty-news-ticker
/
includes
/
admin
/
Filename :
export.php
back
Copy
<?php /** * Register the export page * * @since 3.1.6 */ function ditty_settings_pages() { add_submenu_page( 'edit.php?post_type=ditty', // The ID of the top-level menu page to which this submenu item belongs __( 'Import/Export', 'ditty-news-ticker' ), // The value used to populate the browser's title bar when the menu page is active __( 'Import/Export', 'ditty-news-ticker' ), // The label of this submenu item displayed in the menu 'manage_ditty_settings', // What roles are able to access this submenu item 'ditty_export', // The ID used to represent this submenu item 'ditty_export_display' // The callback function used to render the options for this submenu item ); } add_action( 'admin_menu', 'ditty_settings_pages', 5 ); /** * Render the import/export page * * @since 3.0.17 */ function ditty_heading() { ?> <header class="ditty-header"> <div class="ditty-header__wrapper"> <?php echo ditty_svg_logo(); ?> </div> </header> <?php } function ditty_export_display() { ?> <div id="ditty-page" class="wrap"> <div id="ditty-page__header"> <h2><?php esc_html_e( 'Ditty Import/Export', 'ditty-news-ticker' ); ?></h2> </div> <div id="ditty-page__content"> <div id="ditty-settings"> <?php $current_tab = isset( $_GET['tab'] ) ? sanitize_key( $_GET['tab'] ) : 'export_ditty'; $settings = apply_filters( 'ditty_settings_tabs', array( 'export_ditty' => array( 'icon_svg' => ditty_svg_d(), 'label' => __( 'Export Ditty', 'ditty-news-ticker' ), 'fields' => 'ditty_settings_export_ditty', ), 'export_layouts' => array( 'icon' => 'fas fa-pencil-ruler', 'label' => __( 'Export Layouts', 'ditty-news-ticker' ), 'fields' => 'ditty_settings_export_layouts', ), 'export_displays' => array( 'icon' => 'fas fa-tablet-alt', 'label' => __( 'Export Displays', 'ditty-news-ticker' ), 'fields' => 'ditty_settings_export_displays', ), 'import' => array( 'icon' => 'fas fa-file-download', 'label' => __( 'Import Posts', 'ditty-news-ticker' ), 'fields' => 'ditty_settings_import', ), ) ); ?> <div class="ditty-settings__tabs"> <?php if ( is_array( $settings ) && count( $settings ) > 0 ) { foreach ( $settings as $slug => $setting ) { $active = ( $slug == $current_tab ) ? ' active' : ''; echo '<a href="' . esc_url( add_query_arg( 'tab', $slug ) ) . '" class="ditty-settings__tab ditty-settings__tab--' . esc_attr( $slug ) . $active . '" data-panel="' . esc_attr( $slug ) . '">'; if ( isset( $setting['icon'] ) ) { echo '<i class="' . esc_attr( $setting['icon'] ) . '"></i>'; } elseif( isset( $setting['icon_svg'] ) ) { echo $setting['icon_svg']; } echo '<span>' . esc_html( $setting['label'] ) . '</span>'; echo '</a>'; } } ?> </div> <form class="ditty-settings__form" method="post" enctype="multipart/form-data"> <div class="ditty-notification-bar"> <div class="ditty-notification ditty-notification--updated"><?php echo esc_html( ditty_admin_strings( 'settings_updated' ) ); ?></div> <div class="ditty-notification ditty-notification--warning"><?php echo esc_html( ditty_admin_strings( 'settings_changed' ) ); ?></div> <div class="ditty-notification ditty-notification--error"><?php echo esc_html( ditty_admin_strings( 'settings_error' ) ); ?></div> </div> <div class="ditty-settings__panels"> <?php if ( isset( $settings[$current_tab] ) ) { ?> <div class="ditty-settings__panel ditty-settings__panel--<?php echo esc_attr( $slug ); ?>" style="display:block;"> <?php if ( isset( $settings[$current_tab]['fields'] ) && function_exists( $settings[$current_tab]['fields'] ) ) { call_user_func( $settings[$current_tab]['fields'] ); } ?> </div> <?php } ?> </div> <input type="hidden" name="ditty_export_nonce" value="<?php echo wp_create_nonce( basename( __FILE__ ) ); ?>" /> <div class="ditty-updating-overlay"></div> </form> </div> </div> </div><!-- /.wrap --> <?php } /** * Setup the import and export fields * * @since 3.0.17 */ function ditty_settings_import() { $fields = array( 'ditty_import_heading' => array( 'type' => 'heading', 'id' => 'ditty_import_heading', 'name' => esc_html__( 'Ditty Import', 'ditty-news-ticker' ), 'desc' => esc_html__( "Select a Ditty export file you would like to import. Please make sure your file has the .json extension, and that it was generated by the Ditty Export tool. When you click the import button below, Ditty will import the posts.", 'ditty-news-ticker' ), ), ); if ( isset( $_POST['ditty_import_button'] ) ) { $fields['ditty_import_options'] = array( 'type' => 'html', 'id' => 'ditty_import_options', 'std' => ditty_import_options(), ); $fields['ditty_new_import_button'] = array( 'type' => 'html', 'id' => 'ditty_new_import_button', 'std' => '<a class="ditty-button" href="' . esc_url( admin_url( 'edit.php?post_type=ditty&page=ditty_export&tab=import' ) ) . '">' . esc_html__( 'New Import', 'ditty-news-ticker' ) . '</a>', ); } else { $fields['ditty_import_posts'] = array( 'type' => 'text', 'id' => 'ditty_import_posts', 'input_class' => 'ditty-export-posts', 'atts' => array( 'type' => 'file', ), ); $fields['ditty_import_button'] = array( 'type' => 'button', 'id' => 'ditty_import_button', 'label' => esc_html__( 'Import Posts', 'ditty-news-ticker' ) . ' <i class="fas fa-sync-alt fa-spin"></i>', 'icon_after' => 'fas fa-sync-alt fa-spin', 'input_class' => 'ditty-import-button', 'atts' => array( 'type' => 'submit', ), ); } ditty_fields( $fields ); } /** * Export Ditty posts * * @since 3.0.17 */ function ditty_settings_export_ditty() { $fields = array( 'ditty_export_heading' => array( 'type' => 'heading', 'id' => 'ditty_export_heading', 'name' => esc_html__( 'Export Ditty', 'ditty-news-ticker' ), 'desc' => esc_html__( "Select the Ditty you would like to export. When you click the download button below, Ditty will create a JSON file for you to save to your computer. Once you've saved the download file, you can use the Import tool to import the Ditty posts. You can optionally include the connected Layouts and Displays for each Ditty.", 'ditty-news-ticker' ), ), 'ditty_export_ditty_ids' => array( 'type' => 'checkboxes', 'id' => 'ditty_export_ditty_ids', 'options' => ditty_export_ditty_options(), 'input_class' => 'ditty-export-posts', ), 'ditty_export_connections' => array( 'name' => esc_html__( 'Connected Posts', 'ditty-news-ticker' ), 'desc' => esc_html__( "Do you want to export connected Layouts and Displays for your Ditty?", 'ditty-news-ticker' ), 'type' => 'checkboxes', 'id' => 'ditty_export_connections', 'inline' => true, 'options' => array( 'layouts' => esc_html__( 'Export connected Layouts', 'ditty-news-ticker' ), 'displays' => esc_html__( 'Export connected Displays', 'ditty-news-ticker' ), ), 'std' => array( 'layouts' => 'layouts', 'displays' => 'displays', ), 'class' => 'ditty-field-heading--top', ), 'ditty_export_button' => array( 'type' => 'button', 'id' => 'ditty_export_button', 'label' => esc_html__( 'Export Selected Posts', 'ditty-news-ticker' ) . ' <i class="fas fa-sync-alt fa-spin"></i>', 'icon_after' => 'fas fa-sync-alt fa-spin', 'input_class' => 'ditty-export-button', 'atts' => array( 'disabled' => 'disabled', 'type' => 'submit', ), ), ); ditty_fields( $fields ); } /** * Export Ditty posts * * @since 3.0.17 */ function ditty_settings_export_layouts() { $fields = array( 'ditty_export_heading' => array( 'type' => 'heading', 'id' => 'ditty_export_heading', 'name' => esc_html__( 'Export Layouts', 'ditty-news-ticker' ), 'desc' => esc_html__( "Select the Layouts you would like to export. When you click the download button below, Ditty will create a JSON file for you to save to your computer. Once you've saved the download file, you can use the Import tool to import the Layout posts.", 'ditty-news-ticker' ), ), 'ditty_export_layout_ids' => array( 'type' => 'checkboxes', 'id' => 'ditty_export_layout_ids', 'options' => ditty_export_layout_options(), 'input_class' => 'ditty-export-posts', ), 'ditty_export_button' => array( 'type' => 'button', 'id' => 'ditty_export_button', 'label' => esc_html__( 'Export Selected Posts', 'ditty-news-ticker' ) . ' <i class="fas fa-sync-alt fa-spin"></i>', 'icon_after' => 'fas fa-sync-alt fa-spin', 'input_class' => 'ditty-export-button', 'atts' => array( 'disabled' => 'disabled', 'type' => 'submit', ), ), ); ditty_fields( $fields ); } /** * Export Ditty posts * * @since 3.0.17 */ function ditty_settings_export_displays() { $fields = array( 'ditty_export_heading' => array( 'type' => 'heading', 'id' => 'ditty_export_heading', 'name' => esc_html__( 'Export Displays', 'ditty-news-ticker' ), 'desc' => esc_html__( "Select the Displays you would like to export. When you click the download button below, Ditty will create a JSON file for you to save to your computer. Once you've saved the download file, you can use the Import tool to import the Display posts.", 'ditty-news-ticker' ), ), 'ditty_export_display_ids' => array( 'type' => 'checkboxes', 'id' => 'ditty_export_display_ids', 'options' => ditty_export_display_options(), 'input_class' => 'ditty-export-posts', ), 'ditty_export_button' => array( 'type' => 'button', 'id' => 'ditty_export_button', 'label' => esc_html__( 'Export Selected Posts', 'ditty-news-ticker' ) . ' <i class="fas fa-sync-alt fa-spin"></i>', 'icon_after' => 'fas fa-sync-alt fa-spin', 'input_class' => 'ditty-export-button', 'atts' => array( 'disabled' => 'disabled', 'type' => 'submit', ), ), ); ditty_fields( $fields ); } /** * Create the Ditty export fields * * @since 3.0.17 */ function ditty_export_ditty_options() { $args = array( 'posts_per_page' => -1, 'orderby' => 'post_date', 'post_type' => 'ditty', ); $posts = get_posts( $args ); $options = array( 'select_all' => esc_html__( 'Select all Ditty', 'ditty-news-ticker' ), ); if ( is_array( $posts ) && count( $posts ) > 0 ) { foreach ( $posts as $i => $post ) { $options[$post->ID] = $post->post_title; } } return $options; } /** * Create the Layout export fields * * @since 3.0.17 */ function ditty_export_layout_options() { $layouts = ditty_layout_posts(); $options = array( 'select_all' => esc_html__( 'Select all Layouts', 'ditty-news-ticker' ), ); if ( is_array( $layouts ) && count( $layouts ) > 0 ) { foreach ( $layouts as $i => $layout ) { $version = get_post_meta( $layout->ID, '_ditty_layout_version', true ); $version_string = ''; if ( $version ) { $version_string = " <small class='ditty-layout-version'>(v{$version})</small>"; } $options[$layout->ID] = $layout->post_title . $version_string; } } return $options; } /** * Create the Display export fields * * @since 3.0.17 */ function ditty_export_display_options() { $displays = ditty_display_posts(); $options = array( 'select_all' => esc_html__( 'Select all Displays', 'ditty-news-ticker' ), ); if ( is_array( $displays ) && count( $displays ) > 0 ) { foreach ( $displays as $i => $display ) { $version = get_post_meta( $display->ID, '_ditty_display_version', true ); $version_string = ''; if ( $version ) { $version_string = " <small class='ditty-display-version'>(v{$version})</small>"; } $options[$display->ID] = $display->post_title . $version_string; } } return $options; } /** * Create the export file * * @since 3.0.17 */ function ditty_create_export_file() { if ( ! isset( $_POST['ditty_export_button'] ) ) { return false; } // verify nonce if ( ! isset( $_POST['ditty_export_nonce'] ) || ! wp_verify_nonce( $_POST['ditty_export_nonce'], basename( __FILE__ ) ) ) { return false; } $export = array(); $ditty_ids = isset( $_POST['ditty_export_ditty_ids'] ) ? $_POST['ditty_export_ditty_ids'] : array(); $layout_ids = isset( $_POST['ditty_export_layout_ids'] ) ? $_POST['ditty_export_layout_ids'] : array(); $display_ids = isset( $_POST['ditty_export_display_ids'] ) ? $_POST['ditty_export_display_ids'] : array(); $connections = isset( $_POST['ditty_export_connections'] ) ? $_POST['ditty_export_connections'] : array(); if ( ! empty( $ditty_ids ) ) { if ( $ditty_data = ditty_export_ditty_posts( $ditty_ids ) ) { if ( isset( $ditty_data['ditty'] ) ) { $export['ditty'] = $ditty_data['ditty']; } if ( isset( $connections['layouts'] ) && isset( $ditty_data['layout_ids'] ) ) { $layout_ids = array_merge( $layout_ids, $ditty_data['layout_ids'] ); $layout_ids = array_unique( $layout_ids ); } if ( isset( $connections['displays'] ) && isset( $ditty_data['display_ids'] ) ) { $display_ids = array_merge( $display_ids, $ditty_data['display_ids'] ); $display_ids = array_unique( $display_ids ); } } } if ( ! empty( $layout_ids ) ) { if ( $layout_data = ditty_export_ditty_layouts( $layout_ids ) ) { $export['layouts'] = $layout_data; } } if ( ! empty( $display_ids ) ) { if ( $display_data = ditty_export_ditty_displays( $display_ids ) ) { $export['displays'] = $display_data; } } if ( empty( $export ) ) { return false; } $export_json = json_encode( $export ); $filename = 'ditty-export-' . date( 'Y-m-d' ) . '.json'; $filename = sanitize_file_name( $filename ); header( 'Content-Description: File Transfer' ); header( "Content-Disposition: attachment; filename=$filename" ); header( 'Content-Type: application/json; charset=' . get_option( 'blog_charset' ), true ); echo $export_json; die(); } add_action( 'admin_init', 'ditty_create_export_file' ); /** * Export posts * * @since 3.0.17 */ function ditty_export_ditty_posts( $post_ids ) { $export = array(); $dittys = array(); $displays = array(); $layouts = array(); if ( is_array( $post_ids ) && count( $post_ids ) > 0 ) { foreach ( $post_ids as $i => $post_id ) { if ( 'select_all' == $post_id ) { continue; } $uniq_id = ditty_maybe_add_uniq_id( $post_id ); $display = get_post_meta( $post_id, '_ditty_display', true ); $display_uniq_id = is_array( $display ) ? $display : ditty_maybe_add_uniq_id( $display ); // Store the display for possible export if ( ! is_array( $display ) ) { $displays[$display] = $display; } $items = array(); $all_meta = Ditty()->db_items->get_items( $post_id ); if ( is_array( $all_meta ) && count( $all_meta ) > 0 ) { foreach ( $all_meta as $i => $meta ) { if ( is_object( $meta ) ) { $meta = ( array ) $meta; } // Clean and store all item custom $custom_meta = ditty_item_get_all_meta( $meta['item_id'] ); if ( is_array( $custom_meta ) && count( $custom_meta ) > 0 ) { $cleaned_meta = array(); foreach ( $custom_meta as $data ) { if ( is_object( $data ) ) { $data = ( array ) $data; } $data['meta_value'] = maybe_unserialize( $data['meta_value'] ); unset( $data['meta_id'] ); unset( $data['item_id'] ); $cleaned_meta[] = $data; } $meta['custom_meta'] = $cleaned_meta; } $item_value = maybe_unserialize( $meta['item_value'] ); $meta['item_value'] = $item_value; $layout_value = maybe_unserialize( $meta['layout_value'] ); $updated_layout_value = array(); if ( is_array( $layout_value ) && count( $layout_value ) > 0 ) { foreach ( $layout_value as $variation => $layout_id ) { if ( ! is_array( $layout_id ) ) { $layouts[$layout_id] = $layout_id; } $updated_layout_value[$variation] = is_array( $layout_id ) ? $layout_id : ditty_maybe_add_uniq_id( $layout_id ); } } $meta['layout_value'] = $updated_layout_value; //unset( $meta['item_id'] ); unset( $meta['date_created'] ); unset( $meta['date_modified'] ); unset( $meta['ditty_id'] ); $items[] = $meta; } } $dittys[$uniq_id] = array( 'label' => get_the_title( $post_id ), 'init' => get_post_meta( $post_id, '_ditty_init', true ), 'settings' => get_post_meta( $post_id, '_ditty_settings', true ), 'display' => $display_uniq_id, 'items' => $items, 'uniq_id' => $uniq_id, ); } } if ( ! empty( $dittys ) ) { $export['ditty'] = $dittys; } if ( ! empty( $layouts ) ) { $export['layout_ids'] = array_values( $layouts ); } if ( ! empty( $displays ) ) { $export['display_ids'] = array_values( $displays ); } if ( ! empty( $export ) ) { return $export; } } /** * Export Layouts * * @since 3.0.17 */ function ditty_export_ditty_layouts( $post_ids ) { $export = array(); $layouts = array(); if ( is_array( $post_ids ) && count( $post_ids ) > 0 ) { foreach ( $post_ids as $i => $post_id ) { if ( 'select_all' == $post_id ) { continue; } $uniq_id = ditty_maybe_add_uniq_id( $post_id ); $layouts[$uniq_id] = array( 'label' => get_the_title( $post_id ), 'description' => get_post_meta( $post_id, '_ditty_layout_description', true ), 'html' => stripslashes( get_post_meta( $post_id, '_ditty_layout_html', true ) ), 'css' => get_post_meta( $post_id, '_ditty_layout_css', true ), 'version' => get_post_meta( $post_id, '_ditty_layout_version', true ), 'uniq_id' => $uniq_id, ); } } if ( ! empty( $layouts ) ) { return $layouts; } } /** * Export Displays * * @since 3.0.17 */ function ditty_export_ditty_displays( $post_ids ) { $export = array(); $displays = array(); if ( is_array( $post_ids ) && count( $post_ids ) > 0 ) { foreach ( $post_ids as $i => $post_id ) { if ( 'select_all' == $post_id ) { continue; } $uniq_id = ditty_maybe_add_uniq_id( $post_id ); $displays[$uniq_id] = array( 'label' => get_the_title( $post_id ), 'description' => get_post_meta( $post_id, '_ditty_display_description', true ), 'display_type' => get_post_meta( $post_id, '_ditty_display_type', true ), 'settings' => get_post_meta( $post_id, '_ditty_display_settings', true ), 'version' => get_post_meta( $post_id, '_ditty_display_version', true ), 'uniq_id' => $uniq_id, ); } } if ( ! empty( $displays ) ) { return $displays; } } /** * Sort parent Ids * * @since 3.1.15 */ function ditty_compare_parent_id( $item1, $item2 ) { if ( $item1['parent_id'] == $item2['parent_id'] ) { return 0; } return ($item1['parent_id'] < $item2['parent_id']) ? -1 : 1; } /** * Create the export file * * @since 3.0.17 */ function ditty_import_posts() { if ( ! isset( $_POST['ditty_import_button'] ) ) { return false; } // verify nonce if ( ! isset( $_POST['ditty_export_nonce'] ) || ! wp_verify_nonce( $_POST['ditty_export_nonce'], basename( __FILE__ ) ) ) { return false; } if ( ! isset( $_FILES['ditty_import_posts'] ) || ! $_FILES['ditty_import_posts']['tmp_name'] ) { return false; } $transient_name = 'ditty_import'; $transient_data = array(); $json_data = file_get_contents( $_FILES['ditty_import_posts']['tmp_name'] ); $data = json_decode( $json_data, 1 ); $layouts = array(); $displays = array(); // Import Layouts if ( isset( $data['layouts'] ) && is_array( $data['layouts'] ) && count( $data['layouts'] ) > 0 ) { // Add to the transient data $transient_data['layouts'] = array(); foreach ( $data['layouts'] as $uniq_id => $layout_data ) { $postarr = array( 'post_type' => 'ditty_layout', 'post_status' => 'publish', 'post_title' => esc_html( $layout_data['label'] ), ); $imported_layout_id = wp_insert_post( $postarr ); $imported_data = array( 'id' => $imported_layout_id, ); if ( isset( $layout_data['description'] ) ) { update_post_meta( $imported_layout_id, '_ditty_layout_description', wp_kses_post( $layout_data['description'] ) ); } if ( isset( $layout_data['html'] ) ) { $html = str_replace( '\\', '\\\\', $layout_data['html'] ); update_post_meta( $imported_layout_id, '_ditty_layout_html', wp_kses_post( $html ) ); } if ( isset( $layout_data['css'] ) ) { update_post_meta( $imported_layout_id, '_ditty_layout_css', wp_kses_post( $layout_data['css'] ) ); } if ( isset( $layout_data['version'] ) ) { update_post_meta( $imported_layout_id, '_ditty_layout_version', wp_kses_post( $layout_data['version'] ) ); } update_post_meta( $imported_layout_id, '_ditty_uniq_id', $uniq_id ); $layouts[$uniq_id] = $imported_layout_id; $transient_data['layouts'][$imported_layout_id] = $imported_data; } } // Import Displays if ( isset( $data['displays'] ) && is_array( $data['displays'] ) && count( $data['displays'] ) > 0 ) { // Add to the transient data $transient_data['displays'] = array(); foreach ( $data['displays'] as $uniq_id => $display_data ) { $postarr = array( 'post_type' => 'ditty_display', 'post_status' => 'publish', 'post_title' => esc_html( $display_data['label'] ), ); $imported_display_id = wp_insert_post( $postarr ); $imported_data = array( 'id' => $imported_display_id, ); if ( isset( $display_data['description'] ) ) { update_post_meta( $imported_display_id, '_ditty_display_description', wp_kses_post( $display_data['description'] ) ); } if ( isset( $display_data['display_type'] ) ) { update_post_meta( $imported_display_id, '_ditty_display_type', esc_html( $display_data['display_type'] ) ); } if ( $display_object = ditty_display_type_object( $display_data['display_type'] ) ) { $fields = $display_object->fields(); $sanitized_settings = ditty_sanitize_fields( $fields, $display_data['settings'], "ditty_display_type_{$display_data['display_type']}" ); update_post_meta( $imported_display_id, '_ditty_display_settings', $sanitized_settings ); } if ( isset( $display_data['version'] ) ) { update_post_meta( $imported_display_id, '_ditty_display_version', wp_kses_post( $display_data['version'] ) ); } update_post_meta( $imported_display_id, '_ditty_uniq_id', $uniq_id ); $displays[$uniq_id] = $imported_display_id; $transient_data['displays'][$imported_display_id] = $imported_data; } } // Import Ditty if ( isset( $data['ditty'] ) && is_array( $data['ditty'] ) && count( $data['ditty'] ) > 0 ) { // Add to the transient data $transient_data['ditty'] = array(); foreach ( $data['ditty'] as $uniq_id => $ditty_data ) { $postarr = array( 'post_type' => 'ditty', 'post_status' => 'publish', 'post_title' => esc_html( $ditty_data['label'] ), ); $imported_ditty_id = wp_insert_post( $postarr ); $imported_data = array( 'id' => $imported_ditty_id, ); $settings = isset( $ditty_data['settings'] ) ? $ditty_data['settings'] : array(); $sanitized_settings = Ditty()->singles->sanitize_settings( $settings ); update_post_meta( $imported_ditty_id, '_ditty_settings', $sanitized_settings ); //update_post_meta( $imported_ditty_id, '_ditty_init', 'yes' ); if ( isset( $ditty_data['display'] ) ) { if ( is_array( $ditty_data['display'] ) ) { update_post_meta( $imported_ditty_id, '_ditty_display', $ditty_data['display'] ); } else { if ( isset( $displays[$ditty_data['display']] ) ) { $imported_data['display'] = $displays[$ditty_data['display']]; update_post_meta( $imported_ditty_id, '_ditty_display', intval( $displays[$ditty_data['display']] ) ); } } } update_post_meta( $imported_ditty_id, '_ditty_uniq_id', $uniq_id ); // Add items if ( is_array( $ditty_data['items'] ) && count( $ditty_data['items'] ) > 0 ) { $parent_item_ids = array(); $items = $ditty_data['items']; usort( $items, 'ditty_compare_parent_id' ); foreach ( $items as $i => $item ) { // Temporarily store the old id and remove $temp_id = $item['item_id']; unset( $item['item_id'] ); // Gather the custom meta $custom_meta = false; if ( isset( $item['custom_meta'] ) ) { $custom_meta = $item['custom_meta']; unset( $item['custom_meta'] ); } // Add the ditty id $item['ditty_id'] = $imported_ditty_id; // Add the item author $item['item_author'] = get_current_user_id(); // Update the parent id if ( intval( $item['parent_id'] ) > 0 && isset( $parent_item_ids[$item['parent_id']] ) ) { $item['parent_id'] = $parent_item_ids[$item['parent_id']]; } // Set the layouts $updated_layout_value = array(); if ( is_array( $item['layout_value'] ) && count( $item['layout_value'] ) > 0 ) { foreach ( $item['layout_value'] as $variation => $layout_id ) { if ( is_array( $layout_id ) ) { $updated_layout_value[$variation] = $layout_id; } else { if ( isset( $layouts[$layout_id] ) ) { $updated_layout_value[$variation] = $layouts[$layout_id]; } } } } $item['layout_value'] = $updated_layout_value; // Sanitize and save item data $serialized_item = $sanitized_item = Ditty()->singles->sanitize_item_data( $item ); if ( isset( $sanitized_item['item_value'] ) ) { $serialized_item['item_value'] = maybe_serialize( $sanitized_item['item_value'] ); } if ( isset( $sanitized_item['layout_value'] ) ) { $serialized_item['layout_value'] = maybe_serialize( $sanitized_item['layout_value'] ); } if ( isset( $sanitized_item['attribute_value'] ) ) { $serialized_item['attribute_value'] = maybe_serialize( $sanitized_item['attribute_value'] ); } if ( $new_item_id = Ditty()->db_items->insert( apply_filters( 'ditty_item_db_data', $serialized_item, $imported_ditty_id ), 'item' ) ) { // Store the new parent ids if ( 0 == intval( $sanitized_item['parent_id'] ) ) { $parent_item_ids[$temp_id] = $new_item_id; } // Add the custom meta if ( is_array( $custom_meta ) && count( $custom_meta ) > 0 ) { foreach ( $custom_meta as $i => $meta ) { ditty_item_add_meta( $new_item_id, esc_attr( $meta['meta_key'] ), $meta['meta_value'] ); } } } } } $transient_data['ditty'][$imported_ditty_id] = $imported_data; } } if ( ! empty( $transient_data ) ) { set_transient( $transient_name, $transient_data ); } } add_action( 'admin_init', 'ditty_import_posts' ); /** * Import options for the user * * @since 3.0.17 */ function ditty_import_options() { $transient_name = 'ditty_import'; $transient_data = get_transient( $transient_name ); if ( ! $transient_data ) { return false; } $html = ''; if ( isset( $transient_data['ditty'] ) && is_array( $transient_data['ditty'] ) && count( $transient_data['ditty'] ) > 0 ) { $html .= '<div class="ditty-import__group">'; $html .= '<h3>' . esc_html__( 'Imported Ditty', 'ditty-news-ticker' ) . '</h3>'; $html .= '<ul class="ditty-import__list">'; foreach ( $transient_data['ditty'] as $i => $ditty ) { $html .= '<li class="ditty-import__item">'; $html .= '<p class="ditty-import__post-title"><span>' . get_the_title( $ditty['id'] ) . '</span> <a href="' . esc_url( get_edit_post_link( $ditty['id'] ) ) . '">' . esc_html__( 'Edit', 'ditty-news-ticker' ) . '</a></p> '; $html .= '</li>'; } $html .= '</ul>'; $html .= '</div>'; } if ( isset( $transient_data['layouts'] ) && is_array( $transient_data['layouts'] ) && count( $transient_data['layouts'] ) > 0 ) { $html .= '<div class="ditty-import__group">'; $html .= '<h3>' . esc_html__( 'Imported Layouts', 'ditty-news-ticker' ) . '</h3>'; $html .= '<ul class="ditty-import__list">'; foreach ( $transient_data['layouts'] as $i => $layout ) { $html .= '<li class="ditty-import__item">'; $html .= '<p class="ditty-import__post-title"><span>' . get_the_title( $layout['id'] ) . '</span> <a href="' . esc_url( get_edit_post_link( $layout['id'] ) ) . '">' . esc_html__( 'Edit', 'ditty-news-ticker' ) . '</a></p> '; $html .= '</li>'; } $html .= '</ul>'; $html .= '</div>'; } if ( isset( $transient_data['displays'] ) && is_array( $transient_data['displays'] ) && count( $transient_data['displays'] ) > 0 ) { $html .= '<div class="ditty-import__group">'; $html .= '<h3>' . esc_html__( 'Imported Displays', 'ditty-news-ticker' ) . '</h3>'; $html .= '<ul class="ditty-import__list">'; foreach ( $transient_data['displays'] as $i => $display ) { $html .= '<li class="ditty-import__item">'; $html .= '<p class="ditty-import__post-title"><span>' . get_the_title( $display['id'] ) . '</span> <a href="' . esc_url( get_edit_post_link( $display['id'] ) ) . '">' . esc_html__( 'Edit', 'ditty-news-ticker' ) . '</a></p> '; $html .= '</li>'; } $html .= '</ul>'; $html .= '</div>'; } return $html; }
Name
Size
Last Modified
Owner
Permissions
Actions
Ditty_Plugin_Updater.php
18.64
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
columns.php
9.041
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
export.php
28.848
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
marketing.php
1.407
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
notices.php
6.891
KB
February 03 2024 2:09:17
ltfsolutionsco
0644
2017 © D7net | D704T team