WC_Meta_Box_Order_Items

WC_Meta_Box_Order_Items Class.


Description Description


Source Source

File: includes/admin/meta-boxes/class-wc-meta-box-order-items.php

class WC_Meta_Box_Order_Items {

	/**
	 * Output the metabox.
	 *
	 * @param WP_Post $post
	 */
	public static function output( $post ) {
		global $post, $thepostid, $theorder;

		if ( ! is_int( $thepostid ) ) {
			$thepostid = $post->ID;
		}

		if ( ! is_object( $theorder ) ) {
			$theorder = wc_get_order( $thepostid );
		}

		$order = $theorder;
		$data  = get_post_meta( $post->ID );

		include 'views/html-order-items.php';
	}

	/**
	 * Save meta box data.
	 *
	 * @param int $post_id
	 */
	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 );
	}
}

Top ↑

Methods Methods

  • output — Output the metabox.
  • save — Save meta box data.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.