PATH:
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
/
admin
/
meta-boxes
<?php /** * Order Notes * * @package Kkart\Admin\Meta Boxes */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * KKART_Meta_Box_Order_Notes Class. */ class KKART_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 = kkart_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', 'kkart' ); ?> <?php echo kkart_help_tip( __( 'Add a note for your reference, or add a customer note (the user will be notified).', 'kkart' ) ); ?></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', 'kkart' ); ?></label> <select name="order_note_type" id="order_note_type"> <option value=""><?php esc_html_e( 'Private note', 'kkart' ); ?></option> <option value="customer"><?php esc_html_e( 'Note to customer', 'kkart' ); ?></option> </select> <button type="button" class="add_note button"><?php esc_html_e( 'Add', 'kkart' ); ?></button> </p> </div> <?php } }
[+]
views
[-] class-kkart-meta-box-order-downloads.php
[edit]
[+]
..
[-] class-kkart-meta-box-coupon-data.php
[edit]
[-] class-kkart-meta-box-order-data.php
[edit]
[-] class-kkart-meta-box-product-reviews.php
[edit]
[-] class-kkart-meta-box-order-notes.php
[edit]
[-] class-kkart-meta-box-product-short-description.php
[edit]
[-] class-kkart-meta-box-order-actions.php
[edit]
[-] class-kkart-meta-box-product-images.php
[edit]
[-] class-kkart-meta-box-order-items.php
[edit]
[-] class-kkart-meta-box-product-data.php
[edit]