Submit
Path:
~
/
/
proc
/
thread-self
/
root
/
home
/
getwphos
/
pos.getwphost.com
/
metrothemes
/
themes
/
default
/
views
/
gift_cards
/
File Content:
view.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header no-print"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true"><i class="fa fa-times"></i></button> <button type="button" class="close mr10" onclick="window.print();"><i class="fa fa-print"></i></button> <h4 class="modal-title" id="myModalLabel"><?= lang('view_gift_card'); ?></h4> </div> <div class="modal-body"> <div class="no-print"> <?php if ($gift_card->expiry && $gift_card->expiry < date('Y-m-d')) { ?> <div class="alert alert-danger"> <?= lang('card_expired') ?> </div> <?php } else if ($gift_card->balance > 0) { ?> <div class="alert alert-info"> <?= lang('balance').': '.$Settings->currency_prefix.' '.$gift_card->balance; ?> </div> <?php } else { ?> <div class="alert alert-danger"> <?= lang('card_is_used'); ?> </div> <?php } ?> </div> <div class="card"> <div class="front"> <img src="<?=$assets;?>images/card.png" alt="" class="card_img"> <div class="card-content white-text"> <svg xmlns="http://www.w3.org/2000/svg" width="353px" height="206px" xmlns:xlink="http://www.w3.org/1999/xlink"> <text x="5" y="20" style="font-size:16;fill:#FFF;"> <?= lang('gift_card'); ?> </text> <text x="185" y="20" style="font-size:16;fill:#FFF;"> <?= $gift_card->card_no; ?> </text> <text x="5" y="75" style="font-size:36;fill:#FFF;"> <?= $Settings->currency_prefix.' '.$this->tec->formatMoney($gift_card->value); ?> </text> <text x="5" y="105" style="font-size:16;fill:#FFF;"> <?= $customer ? ($customer->company != '-' ? $customer->company : $customer->name) : ''; ?> </text> <text x="5" y="125" style="font-size:16;fill:#FFF;"> <?= $gift_card->expiry ? lang('expiry').': '.$this->tec->hrsd($gift_card->expiry) : ''; ?> </text> <image xlink:href="<?= $this->tec->barcode($gift_card->card_no, 'code128', 30, false, true); ?>" x="-10" y="145" height="30" width="353" /> </svg> </div> <div class="clearfix"></div> </div> <div class="clearfix"></div> <div class="back"> <img src="<?=$assets;?>images/card2.png" alt="" class="card_img"> <div class="card-content"> <div class="middle"> <?= '<img src="' . base_url('uploads/' . $Settings->logo) . '" alt="' . $Settings->site_name . '" />'; ?> </div> </div> <div class="clearfix"></div> </div> </div> <div class="clearfix"></div> <?php if ($gift_card->balance > 0 && (! $gift_card->expiry || $gift_card->expiry > date('Y-m-d'))) { ?> <button type="button" class="btn btn-primary btn-block no-print" onClick="window.print();"><?= lang('print'); ?></button> <?php } ?> <?php if (isset($topups) && !empty($topups)) { echo '<div class="no-print">'; echo '<h2>'.lang('last_topups').'</h2>'; echo '<table class="table table-striped table-condensed">'; echo '<thead>'; echo '<tr><th>'.lang('date').'</th><th>'.lang('amount').'</th><th>'.lang('created_by').'</th></tr>'; echo '</thead>'; foreach ($topups as $topup) { echo '<tr>'; echo '<td>'.$this->tec->hrld($topup->date).'</td>'; echo '<td>'.$this->tec->formatMoney($topup->amount).'</td>'; echo '<td>'.$topup->first_name.' '.$topup->last_name.' ('.$topup->email.')</td>'; echo '</tr>'; } echo '</table>'; echo '</div>'; } ?> </div> </div> </div>
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
add.php
3065 bytes
0644
edit.php
3128 bytes
0644
index.html
117 bytes
0644
index.php
3681 bytes
0644
view.php
4783 bytes
0644
N4ST4R_ID | Naxtarrr