woocommerce/includes/admin/meta-boxes/class-wc-meta-box-order-ite...

57 lines
1.0 KiB
PHP
Raw Normal View History

2013-08-06 10:41:20 +00:00
<?php
/**
2015-11-03 13:53:50 +00:00
* Order Data
2013-08-06 10:41:20 +00:00
*
* Functions for displaying the order items meta box.
*
* @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
}
2013-08-06 10:41:20 +00:00
/**
* WC_Meta_Box_Order_Items Class.
*/
2013-08-06 10:41:20 +00:00
class WC_Meta_Box_Order_Items {
/**
* Output the metabox.
*
* @param WP_Post $post
2013-08-06 10:41:20 +00:00
*/
public static function output( $post ) {
global $post, $thepostid, $theorder;
if ( ! is_int( $thepostid ) ) {
$thepostid = $post->ID;
}
2013-08-06 10:41:20 +00:00
if ( ! is_object( $theorder ) ) {
$theorder = wc_get_order( $thepostid );
}
2013-08-06 10:41:20 +00:00
$order = $theorder;
$data = get_post_meta( $post->ID );
2013-08-06 10:41:20 +00:00
include( 'views/html-order-items.php' );
2013-08-06 10:41:20 +00:00
}
/**
* Save meta box data.
*
* @param int $post_id
2013-08-06 10:41:20 +00:00
*/
public static function save( $post_id ) {
/**
* This $_POST variable's data has been validated and escaped
* inside `wc_save_order_items()` function.
*/
wc_save_order_items( $post_id, $_POST );
2013-08-06 10:41:20 +00:00
}
}