403Webshell
Server IP : 194.61.116.167  /  Your IP : 216.73.217.84
Web Server : Apache/2
System : Linux nimbus2000.evosiber.com 5.14.0-503.11.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 12 09:26:13 EST 2024 x86_64
User : evoplastik ( 1130)
PHP Version : 8.1.34
Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/evoplastik/public_html/wp-content/themes/mesmerize/woocommerce/order/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/evoplastik/public_html/wp-content/themes/mesmerize/woocommerce/order/order-details.php
<?php
/**
 * Order details
 *
 * This template can be overridden by copying it to yourtheme/woocommerce/order/order-details.php.
 *
 * HOWEVER, on occasion WooCommerce will need to update template files and you
 * (the theme developer) will need to copy the new files to your theme to
 * maintain compatibility. We try to do this as little as possible, but it does
 * happen. When this occurs the version of the template file will be bumped and
 * the readme will list any important changes.
 *
 * @see     https://docs.woocommerce.com/document/template-structure/
 * @package WooCommerce\Templates
 * @version 4.6.0
 */

defined( 'ABSPATH' ) || exit;

if ( ! $mesmerize_order = wc_get_order($order_id)) {
    return;
}

$order_items           = $mesmerize_order->get_items(apply_filters('woocommerce_purchase_order_item_types', 'line_item'));
$show_purchase_note    = $mesmerize_order->has_status(apply_filters('woocommerce_purchase_note_order_statuses', array('completed', 'processing')));
$show_customer_details = is_user_logged_in() && $mesmerize_order->get_user_id() === get_current_user_id();
$downloads             = $mesmerize_order->get_downloadable_items();
$show_downloads        = $mesmerize_order->has_downloadable_item() && $mesmerize_order->is_download_permitted();

if ($show_downloads) {
    ?>
    <div class="woocommerce-order-details-card">
        <?php wc_get_template('order/order-downloads.php', array('downloads' => $downloads, 'show_title' => true)); ?>
    </div>
    <?php
}

?>
    <section class="woocommerce-order-details">
        <div class="woocommerce-order-details-card">
            
            <?php do_action('woocommerce_order_details_before_order_table', $mesmerize_order); ?>

            <h2 class="woocommerce-order-details__title"><?php esc_html_e('Order details', 'mesmerize'); ?></h2>

            <table class="woocommerce-table woocommerce-table--order-details shop_table order_details">

                <thead>
                <tr>
                    <th class="woocommerce-table__product-name product-name"><?php esc_html_e('Product', 'mesmerize'); ?></th>
                    <th class="woocommerce-table__product-table product-total"><?php esc_html_e('Total', 'mesmerize'); ?></th>
                </tr>
                </thead>

                <tbody>
                <?php
                do_action('woocommerce_order_details_before_order_table_items', $mesmerize_order);
                
                foreach ($order_items as $item_id => $item) {
                    $product = $item->get_product();
                    
                    wc_get_template('order/order-details-item.php', array(
                        'order'              => $mesmerize_order,
                        'item_id'            => $item_id,
                        'item'               => $item,
                        'show_purchase_note' => $show_purchase_note,
                        'purchase_note'      => $product ? $product->get_purchase_note() : '',
                        'product'            => $product,
                    ));
                }
                
                do_action('woocommerce_order_details_after_order_table_items', $mesmerize_order);
                ?>
                </tbody>

                <tfoot>
                <?php
                foreach ($mesmerize_order->get_order_item_totals() as $key => $total) {
                    ?>
                    <tr>
                        <th scope="row"><?php echo esc_html( $total['label'] ); ?></th>
                        <td><?php echo ('payment_method' === $key) ? esc_html($total['value']) : $total['value']; ?></td>
                    </tr>
                    <?php
                }
                ?>
                <?php if ($mesmerize_order->get_customer_note()) : ?>
                    <tr>
                        <th><?php esc_html_e('Note:', 'mesmerize'); ?></th>
                        <td><?php echo wp_kses_post( nl2br(  wptexturize($mesmerize_order->get_customer_note() ) ) ); ?></td>
                    </tr>
                <?php endif; ?>
                </tfoot>
            </table>
            
            <?php do_action('woocommerce_order_details_after_order_table', $mesmerize_order); ?>
        </div>
    </section>

<?php
/**
 * Action hook fired after the order details.
 *
 * @since 4.4.0
 * @param WC_Order $mesmerize_order Order data.
 */
do_action( 'woocommerce_after_order_details', $mesmerize_order );

if ($show_customer_details) {
    wc_get_template('order/order-details-customer.php', array('order' => $mesmerize_order));
}

Youez - 2016 - github.com/yon3zu
LinuXploit