An error occurred while loading the file. Please try again.
-
Adrian Hartarto Pramudita authoredabccf79e
Forked from
IF3110 / TugasBesar2_2017
17 commits ahead of the upstream repository.
History.view.php 2.55 KiB
<?php
namespace MotaRaido\Menu\Profile;
if (!defined('MOTAFW'))
{
echo 'This file can only be called via the main index.php file, and not directly';
exit();
}
?>
<?php echo $this->header; ?>
<div class="subtitle-cont subtitle-history">
TRANSACTION HISTORY
</div>
<div class="body-container">
<div class='menu'>
<div class="menu-column"></div>
<div class="menu-column"></div>
<div id="user-his" class="menu-cell" onclick="tabActive('user');">MY PREVIOUS ORDERS</div>
<div id="driver-his" class="menu-cell" onclick="tabActive('driver');">DRIVER HISTORY</div>
</div>
</div>
<div id="history-container">
<ol class="history-list order-list">
<?php foreach($this->historyUser as $history): ?>
<li class="list-text-his">
<div class="history-pic-div">
<img class="profile-pic-his" src=<?php echo $this->image . $history[1]; ?> alt="">
</div>
<span class="hide">
<a href=<?php echo "/history/". $history[0] . "/update/" . $history[1] . "/" . rawurlencode($history[4]); ?>>HIDE</a>
</span>
<div class="his-text">
<div class="date-his"><?php echo htmlentities($history[4]); ?></div>
<div class="name-his"><b><?php echo $history[1]; ?></b></div>
<div><?php echo $history[5]; ?> - <?php echo $history[6]; ?></div>
<div>
You rated : ★<?php echo $history[2]; ?>
<div>
<div>
You commented:
<div class="comment">
<?php echo $history[3]; ?>
</div>
</div>
</div>
</li>
<?php endforeach; ?>
</ol>
<ol class="history-list driver-list">
<?php foreach($this->historyDriver as $history): ?>
<li class="list-text-his">
<div class="history-pic-div">
<img class="profile-pic-his" src=<?php echo $this->image . $history[0]; ?> alt="" />
</div>
<span class="hide">
<a href=<?php echo "/history/". $history[0] . "/update/" . $history[1] . "/" . rawurlencode($history[4]); ?>>HIDE</a>
</span>
<div class="his-text">
<div class="date-his"><?php echo $history[4]; ?></div>
<div><b><?php echo $history[0]; ?></b></div>
<div><?php echo $history[5]; ?> - <?php echo $history[6]; ?></div>
<div>
gave <span><?php echo $history[2]; ?></span> stars for this order
<div>
<div>
and left comment:
<div class="comment">
<?php echo $history[3]; ?>
</div>
</div>
</div>
</li>
<?php endforeach; ?>
</ol>
</div>
<script src=<?php echo $this->script; ?>></script>
<?php echo $this->footer; ?>