WC_Meta_Box_Order_Notes::output()public staticWC 1.0

Output the metabox.

Method of the class: WC_Meta_Box_Order_Notes{}

No Hooks.

Return

null. Nothing (null).

Usage

$result = WC_Meta_Box_Order_Notes::output( $post );
$post(WP_Post|WC_Order) (required)
Post or order object.

WC_Meta_Box_Order_Notes::output() code WC 8.7.0

<?php
public static function output( $post ) {
	if ( $post instanceof WC_Order ) {
		$order_id = $post->get_id();
	} else {
		$order_id = $post->ID;
	}

	$args = array( 'order_id' => $order_id );

	if ( 0 !== $order_id ) {
		$notes = wc_get_order_notes( $args );
	} else {
		$notes = array();
	}

	include __DIR__ . '/views/html-order-notes.php';
	?>
	<div class="add_note">
		<p>
			<label for="add_order_note"><?php esc_html_e( 'Add note', 'woocommerce' ); ?> <?php echo wc_help_tip( __( 'Add a note for your reference, or add a customer note (the user will be notified).', 'woocommerce' ) ); ?></label>
			<textarea type="text" name="order_note" id="add_order_note" class="input-text" cols="20" rows="5"></textarea>
		</p>
		<p>
			<label for="order_note_type" class="screen-reader-text"><?php esc_html_e( 'Note type', 'woocommerce' ); ?></label>
			<select name="order_note_type" id="order_note_type">
				<option value=""><?php esc_html_e( 'Private note', 'woocommerce' ); ?></option>
				<option value="customer"><?php esc_html_e( 'Note to customer', 'woocommerce' ); ?></option>
			</select>
			<button type="button" class="add_note button"><?php esc_html_e( 'Add', 'woocommerce' ); ?></button>
		</p>
	</div>
	<?php
}