woocommerce/admin/includes/duplicate_product.php

175 lines
5.7 KiB
PHP
Raw Normal View History

2012-01-11 19:37:33 +00:00
<?php
/**
* Functions used to duplicate a product
*
* Based on 'Duplicate Post' (http://www.lopo.it/duplicate-post-plugin/) by Enrico Battocchi
*
* @author WooThemes
2012-08-14 13:02:01 +00:00
* @category Admin
* @package WooCommerce/Admin
* @version 1.6.4
2012-01-11 19:37:33 +00:00
*/
2012-08-14 13:02:01 +00:00
/**
* Duplicate a product action.
*
* @access public
* @return void
*/
2012-01-11 19:37:33 +00:00
function woocommerce_duplicate_product() {
if (! ( isset( $_GET['post']) || isset( $_POST['post']) || ( isset($_REQUEST['action']) && 'duplicate_post_save_as_new_page' == $_REQUEST['action'] ) ) ) {
wp_die(__('No product to duplicate has been supplied!', 'woocommerce'));
}
// Get the original page
$id = (isset($_GET['post']) ? $_GET['post'] : $_POST['post']);
check_admin_referer( 'woocommerce-duplicate-product_' . $id );
$post = woocommerce_get_product_to_duplicate($id);
// Copy the page and insert it
if (isset($post) && $post!=null) {
$new_id = woocommerce_create_duplicate_from_product($post);
// If you have written a plugin which uses non-WP database tables to save
// information about a page you can hook this action to dupe that data.
do_action( 'woocommerce_duplicate_product', $new_id, $post );
// Redirect to the edit screen for the new draft page
wp_redirect( admin_url( 'post.php?action=edit&post=' . $new_id ) );
exit;
} else {
wp_die(__('Product creation failed, could not find original product:', 'woocommerce') . ' ' . $id);
}
}
2012-08-14 13:02:01 +00:00
2012-01-11 19:37:33 +00:00
/**
2012-08-14 13:02:01 +00:00
* Get a product from the database to duplicate
*
* @access public
* @param mixed $id
* @return void
2012-01-11 19:37:33 +00:00
*/
function woocommerce_get_product_to_duplicate($id) {
global $wpdb;
$post = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE ID=$id");
if (isset($post->post_type) && $post->post_type == "revision"){
$id = $post->post_parent;
$post = $wpdb->get_results("SELECT * FROM $wpdb->posts WHERE ID=$id");
}
return $post[0];
}
2012-08-14 13:02:01 +00:00
2012-01-11 19:37:33 +00:00
/**
2012-08-14 13:02:01 +00:00
* Function to create the duplicate of the product.
*
* @access public
* @param mixed $post
* @param int $parent (default: 0)
* @param string $post_status (default: '')
* @return void
2012-01-11 19:37:33 +00:00
*/
2012-05-28 08:40:39 +00:00
function woocommerce_create_duplicate_from_product( $post, $parent = 0, $post_status = '' ) {
2012-01-11 19:37:33 +00:00
global $wpdb;
$new_post_author = wp_get_current_user();
$new_post_date = current_time('mysql');
$new_post_date_gmt = get_gmt_from_date($new_post_date);
2012-08-14 13:02:01 +00:00
2012-05-28 08:40:39 +00:00
if ( $parent > 0 ) {
2012-01-11 19:37:33 +00:00
$post_parent = $parent;
2012-05-28 08:40:39 +00:00
$post_status = $post_status ? $post_status : 'publish';
2012-01-11 19:37:33 +00:00
$suffix = '';
2012-05-28 08:40:39 +00:00
} else {
2012-01-11 19:37:33 +00:00
$post_parent = $post->post_parent;
2012-05-28 08:40:39 +00:00
$post_status = $post_status ? $post_status : 'draft';
2012-06-06 20:35:40 +00:00
$suffix = ' ' . __("(Copy)", 'woocommerce');
2012-05-28 08:40:39 +00:00
}
2012-08-14 13:02:01 +00:00
2012-05-28 08:40:39 +00:00
$new_post_type = $post->post_type;
$post_content = str_replace("'", "''", $post->post_content);
$post_content_filtered = str_replace("'", "''", $post->post_content_filtered);
$post_excerpt = str_replace("'", "''", $post->post_excerpt);
$post_title = str_replace("'", "''", $post->post_title).$suffix;
$post_name = str_replace("'", "''", $post->post_name);
$comment_status = str_replace("'", "''", $post->comment_status);
$ping_status = str_replace("'", "''", $post->ping_status);
2012-01-11 19:37:33 +00:00
// Insert the new template in the post table
$wpdb->query(
"INSERT INTO $wpdb->posts
(post_author, post_date, post_date_gmt, post_content, post_content_filtered, post_title, post_excerpt, post_status, post_type, comment_status, ping_status, post_password, to_ping, pinged, post_modified, post_modified_gmt, post_parent, menu_order, post_mime_type)
VALUES
('$new_post_author->ID', '$new_post_date', '$new_post_date_gmt', '$post_content', '$post_content_filtered', '$post_title', '$post_excerpt', '$post_status', '$new_post_type', '$comment_status', '$ping_status', '$post->post_password', '$post->to_ping', '$post->pinged', '$new_post_date', '$new_post_date_gmt', '$post_parent', '$post->menu_order', '$post->post_mime_type')");
$new_post_id = $wpdb->insert_id;
// Copy the taxonomies
2012-05-28 08:40:39 +00:00
woocommerce_duplicate_post_taxonomies( $post->ID, $new_post_id, $post->post_type );
2012-01-11 19:37:33 +00:00
// Copy the meta information
2012-05-28 08:40:39 +00:00
woocommerce_duplicate_post_meta( $post->ID, $new_post_id );
2012-08-14 13:02:01 +00:00
2012-01-11 19:37:33 +00:00
// Copy the children (variations)
2012-05-28 08:40:39 +00:00
if ( $children_products =& get_children( 'post_parent='.$post->ID.'&post_type=product_variation' ) ) {
2012-01-11 19:37:33 +00:00
2012-05-28 08:40:39 +00:00
if ($children_products) foreach ($children_products as $child) {
2012-08-14 13:02:01 +00:00
2012-05-28 08:40:39 +00:00
woocommerce_create_duplicate_from_product( woocommerce_get_product_to_duplicate( $child->ID ), $new_post_id, $child->post_status );
2012-08-14 13:02:01 +00:00
2012-05-28 08:40:39 +00:00
}
2012-01-11 19:37:33 +00:00
2012-05-28 08:40:39 +00:00
}
2012-01-11 19:37:33 +00:00
return $new_post_id;
}
2012-08-14 13:02:01 +00:00
2012-01-11 19:37:33 +00:00
/**
* Copy the taxonomies of a post to another post
2012-08-14 13:02:01 +00:00
*
* @access public
* @param mixed $id
* @param mixed $new_id
* @param mixed $post_type
* @return void
2012-01-11 19:37:33 +00:00
*/
function woocommerce_duplicate_post_taxonomies($id, $new_id, $post_type) {
global $wpdb;
$taxonomies = get_object_taxonomies($post_type); //array("category", "post_tag");
foreach ($taxonomies as $taxonomy) {
$post_terms = wp_get_object_terms($id, $taxonomy);
2012-04-12 16:38:38 +00:00
$post_terms_count = sizeof( $post_terms );
for ($i=0; $i<$post_terms_count; $i++) {
2012-01-11 19:37:33 +00:00
wp_set_object_terms($new_id, $post_terms[$i]->slug, $taxonomy, true);
}
}
}
2012-08-14 13:02:01 +00:00
2012-01-11 19:37:33 +00:00
/**
* Copy the meta information of a post to another post
2012-08-14 13:02:01 +00:00
*
* @access public
* @param mixed $id
* @param mixed $new_id
* @return void
2012-01-11 19:37:33 +00:00
*/
function woocommerce_duplicate_post_meta($id, $new_id) {
global $wpdb;
$post_meta_infos = $wpdb->get_results("SELECT meta_key, meta_value FROM $wpdb->postmeta WHERE post_id=$id");
if (count($post_meta_infos)!=0) {
$sql_query = "INSERT INTO $wpdb->postmeta (post_id, meta_key, meta_value) ";
foreach ($post_meta_infos as $meta_info) {
$meta_key = $meta_info->meta_key;
$meta_value = addslashes($meta_info->meta_value);
$sql_query_sel[]= "SELECT $new_id, '$meta_key', '$meta_value'";
}
$sql_query.= implode(" UNION ALL ", $sql_query_sel);
$wpdb->query($sql_query);
}
}