2014-06-13 13:20:14 +00:00
|
|
|
<?php
|
2015-11-06 09:22:19 +00:00
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
|
|
|
|
2014-06-13 13:20:14 +00:00
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* Order Factory Class
|
2014-06-13 13:20:14 +00:00
|
|
|
*
|
2015-11-03 13:31:20 +00:00
|
|
|
* The WooCommerce order factory creating the right order objects.
|
2014-06-13 13:20:14 +00:00
|
|
|
*
|
|
|
|
* @class WC_Order_Factory
|
2016-06-21 19:07:31 +00:00
|
|
|
* @version 2.7.0
|
2014-06-13 13:20:14 +00:00
|
|
|
* @package WooCommerce/Classes
|
|
|
|
* @category Class
|
|
|
|
* @author WooThemes
|
|
|
|
*/
|
|
|
|
class WC_Order_Factory {
|
|
|
|
|
|
|
|
/**
|
2016-01-06 15:24:47 +00:00
|
|
|
* Get order.
|
2014-06-13 13:20:14 +00:00
|
|
|
*
|
|
|
|
* @param bool $the_order (default: false)
|
2015-02-03 15:55:40 +00:00
|
|
|
* @return WC_Order|bool
|
2014-06-13 13:20:14 +00:00
|
|
|
*/
|
2016-06-21 19:07:31 +00:00
|
|
|
public static function get_order( $the_order = false ) {
|
2014-06-13 13:20:14 +00:00
|
|
|
global $post;
|
|
|
|
|
|
|
|
if ( false === $the_order ) {
|
|
|
|
$the_order = $post;
|
|
|
|
} elseif ( is_numeric( $the_order ) ) {
|
|
|
|
$the_order = get_post( $the_order );
|
2016-08-22 10:00:31 +00:00
|
|
|
} elseif ( $the_order instanceof WC_Abstract_Order ) {
|
2016-06-21 19:07:31 +00:00
|
|
|
$the_order = get_post( $the_order->get_id() );
|
2014-06-13 13:20:14 +00:00
|
|
|
}
|
|
|
|
|
2014-07-08 17:20:40 +00:00
|
|
|
if ( ! $the_order || ! is_object( $the_order ) ) {
|
2014-06-13 13:20:14 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-07 10:44:27 +00:00
|
|
|
$order_id = absint( $the_order->ID );
|
|
|
|
$post_type = $the_order->post_type;
|
|
|
|
|
2014-07-11 11:43:42 +00:00
|
|
|
if ( $order_type = wc_get_order_type( $post_type ) ) {
|
|
|
|
$classname = $order_type['class_name'];
|
2014-06-13 13:20:14 +00:00
|
|
|
} else {
|
2014-07-08 17:10:37 +00:00
|
|
|
$classname = false;
|
2014-06-13 13:20:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Filter classname so that the class can be overridden if extended.
|
2015-03-23 08:22:02 +00:00
|
|
|
$classname = apply_filters( 'woocommerce_order_class', $classname, $post_type, $order_id, $the_order );
|
2014-06-13 13:20:14 +00:00
|
|
|
|
2014-07-07 10:44:27 +00:00
|
|
|
if ( ! class_exists( $classname ) ) {
|
2015-05-19 16:51:04 +00:00
|
|
|
return false;
|
2014-07-07 10:44:27 +00:00
|
|
|
}
|
2014-06-13 13:20:14 +00:00
|
|
|
|
2014-08-15 12:56:43 +00:00
|
|
|
return new $classname( $the_order );
|
2014-06-13 13:20:14 +00:00
|
|
|
}
|
2016-06-21 19:07:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Get order item.
|
|
|
|
* @param int
|
2016-08-19 12:43:33 +00:00
|
|
|
* @return WC_Order_Item|false if not found
|
2016-06-21 19:07:31 +00:00
|
|
|
*/
|
|
|
|
public static function get_order_item( $item_id = 0 ) {
|
|
|
|
global $wpdb;
|
|
|
|
|
|
|
|
if ( is_numeric( $item_id ) ) {
|
|
|
|
$item_data = $wpdb->get_row( $wpdb->prepare( "SELECT * FROM {$wpdb->prefix}woocommerce_order_items WHERE order_item_id = %d LIMIT 1;", $item_id ) );
|
|
|
|
$item_type = $item_data->order_item_type;
|
|
|
|
} elseif ( $item_id instanceof WC_Order_Item ) {
|
|
|
|
$item_data = $item_id->get_data();
|
|
|
|
$item_type = $item_data->get_type();
|
|
|
|
} elseif( is_object( $item_id ) && ! empty( $item_id->order_item_type ) ) {
|
|
|
|
$item_data = $item_id;
|
|
|
|
$item_type = $item_id->order_item_type;
|
|
|
|
} else {
|
|
|
|
$item_data = false;
|
|
|
|
$item_type = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( $item_data && $item_type ) {
|
|
|
|
switch ( $item_type ) {
|
|
|
|
case 'line_item' :
|
|
|
|
case 'product' :
|
|
|
|
return new WC_Order_Item_Product( $item_data );
|
|
|
|
break;
|
|
|
|
case 'coupon' :
|
|
|
|
return new WC_Order_Item_Coupon( $item_data );
|
|
|
|
break;
|
|
|
|
case 'fee' :
|
|
|
|
return new WC_Order_Item_Fee( $item_data );
|
|
|
|
break;
|
|
|
|
case 'shipping' :
|
|
|
|
return new WC_Order_Item_Shipping( $item_data );
|
|
|
|
break;
|
|
|
|
case 'tax' :
|
|
|
|
return new WC_Order_Item_Tax( $item_data );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-19 12:43:33 +00:00
|
|
|
return false;
|
2016-06-21 19:07:31 +00:00
|
|
|
}
|
2014-07-07 19:19:51 +00:00
|
|
|
}
|