| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- /**
- * Order Notes
- *
- * @package WooCommerce\Admin\Meta Boxes
- */
- if ( ! defined( 'ABSPATH' ) ) {
- exit;
- }
- /**
- * WC_Meta_Box_Order_Notes Class.
- */
- class WC_Meta_Box_Order_Notes {
- /**
- * Output the metabox.
- *
- * @param WP_Post $post Post object.
- */
- public static function output( $post ) {
- global $post;
- $args = array(
- 'order_id' => $post->ID,
- );
- $notes = wc_get_order_notes( $args );
- 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
- }
- }
|