2019-01-03 11:46:43 +00:00
< ? php
/**
* Order notes HTML for meta box .
*
2020-08-05 16:36:24 +00:00
* @ package WooCommerce\Admin
2019-01-03 11:46:43 +00:00
*/
defined ( 'ABSPATH' ) || exit ;
?>
< ul class = " order_notes " >
< ? php
if ( $notes ) {
foreach ( $notes as $note ) {
$css_class = array ( 'note' );
$css_class [] = $note -> customer_note ? 'customer-note' : '' ;
$css_class [] = 'system' === $note -> added_by ? 'system-note' : '' ;
$css_class = apply_filters ( 'woocommerce_order_note_class' , array_filter ( $css_class ), $note );
?>
< li rel = " <?php echo absint( $note->id ); ?> " class = " <?php echo esc_attr( implode( ' ', $css_class ) ); ?> " >
< div class = " note_content " >
< ? php echo wpautop ( wptexturize ( wp_kses_post ( $note -> content ) ) ); // @codingStandardsIgnoreLine ?>
</ div >
< p class = " meta " >
2019-10-16 12:59:36 +00:00
< abbr class = " exact-date " title = " <?php echo esc_attr( $note->date_created ->date( 'Y-m-d H:i:s' ) ); ?> " >
2019-01-03 11:46:43 +00:00
< ? php
/* translators: %1$s: note date %2$s: note time */
echo esc_html ( sprintf ( __ ( '%1$s at %2$s' , 'woocommerce' ), $note -> date_created -> date_i18n ( wc_date_format () ), $note -> date_created -> date_i18n ( wc_time_format () ) ) );
?>
</ abbr >
< ? php
if ( 'system' !== $note -> added_by ) :
/* translators: %s: note author */
echo esc_html ( sprintf ( ' ' . __ ( 'by %s' , 'woocommerce' ), $note -> added_by ) );
endif ;
?>
< a href = " # " class = " delete_note " role = " button " >< ? php esc_html_e ( 'Delete note' , 'woocommerce' ); ?> </a>
</ p >
</ li >
< ? php
}
} else {
?>
2020-08-22 07:35:13 +00:00
< li class = " no-items " >< ? php esc_html_e ( 'There are no notes yet.' , 'woocommerce' ); ?> </li>
2019-01-03 11:46:43 +00:00
< ? php
}
?>
</ ul >