2013-08-06 10:41:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Order Data
|
|
|
|
*
|
|
|
|
* Functions for displaying the order items meta box.
|
|
|
|
*
|
2014-08-31 07:18:21 +00:00
|
|
|
* @author WooThemes
|
|
|
|
* @category Admin
|
|
|
|
* @package WooCommerce/Admin/Meta Boxes
|
2013-08-06 10:41:20 +00:00
|
|
|
* @version 2.1.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
|
|
|
|
|
|
|
class WC_Meta_Box_Order_Items {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Output the metabox
|
|
|
|
*/
|
|
|
|
public static function output( $post ) {
|
2014-06-08 20:33:11 +00:00
|
|
|
global $thepostid, $theorder;
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-07-14 18:23:56 +00:00
|
|
|
if ( ! is_object( $theorder ) ) {
|
2014-08-15 12:29:21 +00:00
|
|
|
$theorder = wc_get_order( $thepostid );
|
2014-07-14 18:23:56 +00:00
|
|
|
}
|
2013-08-06 10:41:20 +00:00
|
|
|
|
|
|
|
$order = $theorder;
|
2014-07-14 18:23:56 +00:00
|
|
|
$data = get_post_meta( $post->ID );
|
2013-08-06 10:41:20 +00:00
|
|
|
|
2014-07-17 20:17:54 +00:00
|
|
|
include( 'views/html-order-items.php' );
|
2013-08-06 10:41:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Save meta box data
|
|
|
|
*/
|
|
|
|
public static function save( $post_id, $post ) {
|
2014-07-17 20:17:54 +00:00
|
|
|
wc_save_order_items( $post_id, $_POST );
|
2013-08-06 10:41:20 +00:00
|
|
|
}
|
2014-06-04 14:09:01 +00:00
|
|
|
}
|