woocommerce/includes/admin/meta-boxes/views/html-order-item-meta.php

67 lines
2.0 KiB
PHP
Raw Normal View History

2016-01-08 11:42:32 +00:00
<div class="view">
2016-08-08 14:22:00 +00:00
<?php if ( $meta_data = $item->get_formatted_meta_data() ) : ?>
<table cellspacing="0" class="display_meta">
<?php foreach ( $meta_data as $meta_id => $meta ) :
2016-07-11 14:56:35 +00:00
// Skip hidden core fields
2016-08-08 14:22:00 +00:00
if ( in_array( $meta->key, apply_filters( 'woocommerce_hidden_order_itemmeta', array(
2016-07-11 14:56:35 +00:00
'_qty',
'_tax_class',
'_product_id',
'_variation_id',
'_line_subtotal',
'_line_subtotal_tax',
'_line_total',
'_line_tax',
'method_id',
'cost'
) ) ) ) {
continue;
}
2016-08-08 14:22:00 +00:00
?>
<tr>
2016-08-08 15:20:15 +00:00
<th><?php echo wp_kses_post( $meta->display_key ); ?>:</th>
<td><?php echo wp_kses_post( $meta->display_value ); ?></td>
2016-08-08 14:22:00 +00:00
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
2016-01-08 11:42:32 +00:00
</div>
<div class="edit" style="display: none;">
2016-07-11 14:56:35 +00:00
<table class="meta" cellspacing="0">
<tbody class="meta_items">
2016-08-08 14:22:00 +00:00
<?php if ( $meta_data = $item->get_formatted_meta_data() ) : ?>
<?php foreach ( $meta_data as $meta_id => $meta ) :
2016-07-11 14:56:35 +00:00
// Skip hidden core fields
2016-08-08 14:22:00 +00:00
if ( in_array( $meta->key, apply_filters( 'woocommerce_hidden_order_itemmeta', array(
2016-07-11 14:56:35 +00:00
'_qty',
'_tax_class',
'_product_id',
'_variation_id',
'_line_subtotal',
'_line_subtotal_tax',
'_line_total',
'_line_tax',
'method_id',
'cost'
) ) ) ) {
continue;
}
2016-08-08 14:22:00 +00:00
?>
<tr data-meta_id="<?php echo esc_attr( $meta_id ); ?>">
2016-07-11 14:56:35 +00:00
<td>
2016-08-08 14:22:00 +00:00
<input type="text" name="meta_key[<?php echo esc_attr( $meta_id ); ?>]" value="<?php echo esc_attr( $meta->key ); ?>" />
<textarea name="meta_value[<?php echo esc_attr( $meta_id ); ?>]"><?php echo esc_textarea( rawurldecode( $meta->value ) ); ?></textarea>
2016-07-11 14:56:35 +00:00
</td>
<td width="1%"><button class="remove_order_item_meta button">&times;</button></td>
2016-08-08 14:22:00 +00:00
</tr>
<?php endforeach; ?>
<?php endif; ?>
2016-07-11 14:56:35 +00:00
</tbody>
<tfoot>
<tr>
<td colspan="4"><button class="add_order_item_meta button"><?php _e( 'Add&nbsp;meta', 'woocommerce' ); ?></button></td>
</tr>
</tfoot>
</table>
2016-01-08 11:42:32 +00:00
</div>