1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php /** * Update WC to 2.1.0 * * @author WooThemes * @category Admin * @package WooCommerce/Admin/Updates * @version 2.1.0 */
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly }
global $wpdb, $woocommerce;
// Pages no longer used wp_trash_post( get_option('woocommerce_pay_page_id') ); wp_trash_post( get_option('woocommerce_thanks_page_id') ); wp_trash_post( get_option('woocommerce_view_order_page_id') ); wp_trash_post( get_option('woocommerce_change_password_page_id') ); wp_trash_post( get_option('woocommerce_edit_address_page_id') ); wp_trash_post( get_option('woocommerce_lost_password_page_id') );
// Upgrade file paths to support multiple file paths + names etc $existing_file_paths = $wpdb->get_results( "SELECT * FROM {$wpdb->postmeta} WHERE meta_key = '_file_paths' AND meta_value != '';" );
if ( $existing_file_paths ) {
foreach( $existing_file_paths as $existing_file_path ) {
$needs_update = false; $new_value = array(); $value = maybe_unserialize( trim( $existing_file_path->meta_value ) );
if ( $value ) { foreach ( $value as $key => $file ) { if ( ! is_array( $file ) ) { $needs_update = true; $new_value[ $key ] = array( 'file' => $file, 'name' => wc_get_filename_from_url( $file ) ); } else { $new_value[ $key ] = $file; } } if ( $needs_update ) { $new_value = serialize( $new_value );
$wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->postmeta} SET meta_key = %s, meta_value = %s WHERE meta_id = %d", '_downloadable_files', $new_value, $existing_file_path->meta_id ) ); } } } }
|