Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/old/vendor/magento/module-shipping/view/frontend/templates/tracking/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/old/vendor/magento/module-shipping/view/frontend/templates/tracking/progress.phtml
<?php
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */

/** @var $block \Magento\Framework\View\Element\Template */
$parentBlock = $block->getParentBlock();
$track = $block->getData('track');
?>
<div class="table-wrapper">
    <table class="data table order tracking" id="track-history-table-<?= $block->escapeHtml($track->getTracking()) ?>">
        <caption class="table-caption"><?= $block->escapeHtml(__('Track history')) ?></caption>
        <thead>
        <tr>
            <th class="col location" scope="col"><?= $block->escapeHtml(__('Location')) ?></th>
            <th class="col date" scope="col"><?= $block->escapeHtml(__('Date')) ?></th>
            <th class="col time" scope="col"><?= $block->escapeHtml(__('Local Time')) ?></th>
            <th class="col description" scope="col"><?= $block->escapeHtml(__('Description')) ?></th>
        </tr>
        </thead>
        <tbody>
        <?php foreach ($track->getProgressdetail() as $detail) : ?>
            <?php $detailDate = (!empty($detail['deliverydate']) ?
                $parentBlock->formatDeliveryDate($detail['deliverydate'] . ' ' . $detail['deliverytime']) :
                ''); ?>
            <?php $detailTime = (!empty($detail['deliverytime']) ?
                $parentBlock->formatDeliveryTime($detail['deliverytime'], $detail['deliverydate']) :
                ''); ?>
            <tr>
                <td data-th="<?= $block->escapeHtml(__('Location')) ?>" class="col location">
                    <?= (!empty($detail['deliverylocation']) ? $block->escapeHtml($detail['deliverylocation']) : '') ?>
                </td>
                <td data-th="<?= $block->escapeHtml(__('Date')) ?>" class="col date">
                    <?= /* @noEscape */ $detailDate ?>
                </td>
                <td data-th="<?= $block->escapeHtml(__('Local Time')) ?>" class="col time">
                    <?= /* @noEscape */ $detailTime ?></td>
                <td data-th="<?= $block->escapeHtml(__('Description')) ?>" class="col description">
                    <?= (!empty($detail['activity']) ? $block->escapeHtml($detail['activity']) : '') ?>
                </td>
            </tr>
        <?php endforeach; ?>
        </tbody>
    </table>
</div>

Spamworldpro Mini