vb_book/app/Views/logviewer/view.php

41 lines
1.6 KiB
PHP

<!-- start page title -->
<div class="row d-flex align-items-center">
<div class="col-md-8">
<div class="page-title-box page-title-box-alt">
<h4 class="page-title">
<?= !empty($showPayment) ? 'Payment Logs' : 'Viewing Log' ?>: <?= esc($filename) ?>
</h4>
</div>
</div>
<div class="col-md-4 text-md-right">
<a href="<?= site_url('logs') ?>" class="btn btn-secondary">
<i class="mdi mdi-arrow-left"></i> Back to Log Files
</a>
<?php if (!empty($showPayment)): ?>
<a href="<?= site_url('logs/view/' . $filename) ?>" class="btn btn-primary">
<i class="mdi mdi-eye"></i> View Full Log
</a>
<?php else: ?>
<a href="<?= site_url('logs/view/' . $filename . '?payment=1') ?>" class="btn btn-warning">
<i class="mdi mdi-credit-card-outline"></i> View Payment Logs
</a>
<?php endif; ?>
</div>
</div>
<!-- end page title -->
<div class="row">
<div class="col-12">
<div class="card">
<div class="card-body">
<?php if (!empty($showPayment) && $content === ''): ?>
<div class="alert alert-info mb-0">
No payment log entries found in this file.
</div>
<?php else: ?>
<pre style="background:#1e1e2e; color:#d4d4d4; padding:20px; border-radius:8px; max-height:75vh; overflow:auto; white-space:pre-wrap; word-wrap:break-word; font-size:13px;"><?= esc($content) ?></pre>
<?php endif; ?>
</div>
</div>
</div>
</div>