Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
application
/
views
/
user
/
book
✏️
Editing: issue.php
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-book"></i> <?php echo $this->lang->line('library_book'); ?> <small></small> </h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <div class="col-md-12"> <div class="box box-primary"><div class="box-header ptbnull"> <h3 class="box-title titlefix"> <?php echo $this->lang->line('book') . " " . $this->lang->line('issued'); ?></h3> <div class="box-tools pull-right"> </div> </div> <div class="box-body"> <div class="table-responsive mailbox-messages"> <div class="download_label"><?php echo $this->lang->line('library_book'); ?></div> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('book_title'); ?></th> <th><?php echo $this->lang->line('book_no'); ?></th> <th><?php echo $this->lang->line('author'); ?></th> <th><?php echo $this->lang->line('issue_date'); ?></th> <th><?php echo $this->lang->line('due') . ' ' . $this->lang->line('return_date'); ?></th> <th ><?php echo $this->lang->line('return_date'); ?></th> </tr> </thead> <tbody> <?php if ($isCheck == 0) { ?> <?php } else { if (isset($bookList)) { ?> <?php if (empty($bookList)) { ?> <?php } else { $count = 1; foreach ($bookList as $book) { $cls = ""; if ($book['is_returned'] == 1) { $cls = "success"; } ?> <tr class="<?php echo $cls; ?>"> <td class="mailbox-name"> <?php echo $book['book_title'] ?></td> <td class="mailbox-name"> <?php echo $book['book_no'] ?></td> <td class="mailbox-name"> <?php echo $book['author'] ?></td> <td class="mailbox-name"> <?php if ($book['issue_date'] != '') { echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($book['issue_date'])); } ?> </td> <td > <?php if ($book['duereturn_date'] != '') { echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($book['duereturn_date'])); } ?> </td> <td > <?php if ($book['return_date'] != '') { echo date($this->customlib->getSchoolDateFormat(), $this->customlib->dateyyyymmddTodateformat($book['return_date'])); } ?> </td> </tr> <?php } $count++; } ?> <?php } } ?> </tbody> </table> </div> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> </div> </div> </section> </div> <script> $(document).ready(function () { $('.detail_popover').popover({ placement: 'right', trigger: 'hover', container: 'body', html: true, content: function () { return $(this).closest('td').find('.fee_detail_popover').html(); } }); }); </script>
💾 Save Changes
❌ Cancel