PATH:
home
/
letacommog
/
rdvenunclick.fr1
/
wp-content
/
plugins
/
dokan-pro
/
templates
/
orders
/
views
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } /** * @var object $refund The refund object. */ $refund_post = get_post( dokan_get_prop( $refund, 'id' ) ); $who_refunded = new WP_User( $refund_post->post_author ); ?> <tr class="refund <?php echo ( ! empty( $class ) ) ? $class : ''; ?>" data-order_refund_id="<?php echo dokan_get_prop( $refund, 'id' ); ?>"> <!-- <td class="check-column"></td> --> <td class="thumb"><div><i class="fa fa-money"></i></div></td> <td class="name"> <?php echo esc_attr__( 'Refund', 'dokan' ) . ' #' . absint( dokan_get_prop( $refund, 'id' ) ) . ' - ' . esc_attr( date_i18n( get_option( 'date_format' ) . ', ' . get_option( 'time_format' ), strtotime( $refund_post->post_date ) ) ); if ( $who_refunded->exists() ) { echo ' ' . esc_attr_x( 'by', 'Ex: Refund - $date >by< $username', 'dokan' ) . ' ' . '<abbr class="refund_by" title="' . esc_attr__( 'ID: ', 'dokan' ) . absint( $who_refunded->ID ) . '">' . esc_attr( $who_refunded->display_name ) . '</abbr>' ; } ?> <?php if ( dokan_get_prop( $refund, 'get_refund_reason', 'get_reason' ) ) : ?> <p class="description"><?php echo esc_html( dokan_get_prop( $refund, 'get_refund_reason', 'get_reason' ) ); ?></p> <?php endif; ?> <input type="hidden" class="order_refund_id" name="order_refund_id[]" value="<?php echo esc_attr( dokan_get_prop( $refund, 'id' ) ); ?>" /> </td> <?php do_action( 'woocommerce_admin_order_item_values', null, $refund, absint( dokan_get_prop( $refund, 'id' ) ) ); ?> <td class="item_cost" width="1%"> </td> <td class="quantity" width="1%"> </td> <td class="line_cost" width="1%"> <div class="view"> <?php echo wc_price( '-' . dokan_replace_func( 'get_refund_amount', 'get_amount', $refund ) ); ?> </div> </td> <?php if ( ( ! isset( $legacy_order ) || ! $legacy_order ) && wc_tax_enabled() ) : for ( $i = 0; $i < count( $order_taxes ); $i++ ) : ?> <td class="line_tax" width="1%"></td> <?php endfor; endif; ?> <td class="wc-order-edit-line-item"> <div class="wc-order-edit-line-item-actions"> <!-- <a class="delete_refund" href="#">X</a> --> </div> </td> </tr>
[+]
..
[-] html-variation-admin.php
[edit]
[-] html-order-items.php
[edit]
[-] html-order-shipping.php
[edit]
[-] html-product-attribute.php
[edit]
[-] html-order-item.php
[edit]
[-] html-order-fee.php
[edit]
[-] html-product-variation-download.php
[edit]
[-] html-order-download-permission.php
[edit]
[-] html-order-refund.php
[edit]
[-] html-product-download.php
[edit]