Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
aa
/
application
/
views
/
admin
/
feetype
✏️
Editing: feetypeList.php
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); ?> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-money"></i> <?php echo $this->lang->line('fees_collection'); ?></h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <?php if ($this->rbac->hasPrivilege('fees_type', 'can_add')) { ?> <div class="col-md-4"> <!-- Horizontal Form --> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo $this->lang->line('add_fees_type'); ?></h3> </div><!-- /.box-header --> <form id="form1" action="<?php echo base_url() ?>admin/feetype" id="employeeform" name="employeeform" method="post" accept-charset="utf-8"> <div class="box-body"> <?php if ($this->session->flashdata('msg')) { ?> <?php echo $this->session->flashdata('msg') ?> <?php } ?> <?php if (isset($error_message)) { echo "<div class='alert alert-danger'>" . $error_message . "</div>"; } ?> <?php echo $this->customlib->getCSRF(); ?> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('name'); ?></label> <small class="req">*</small> <input autofocus="" id="name" name="name" type="text" class="form-control" value="<?php echo set_value('name'); ?>" /> <span class="text-danger"><?php echo form_error('name'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('fees_code'); ?></label> <small class="req">*</small> <input id="code" name="code" type="text" class="form-control" value="<?php echo set_value('code'); ?>" /> <span class="text-danger"><?php echo form_error('code'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('description'); ?></label> <textarea class="form-control" id="description" name="description" rows="3"><?php echo set_value('description'); ?></textarea> <span class="text-danger"></span> </div> </div><!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-info pull-right"><?php echo $this->lang->line('save'); ?></button> </div> </form> </div> </div><!--/.col (right) --> <!-- left column --> <?php } ?> <div class="col-md-<?php if ($this->rbac->hasPrivilege('fees_type', 'can_add')) { echo "8"; } else { echo "12"; } ?>"> <!-- general form elements --> <div class="box box-primary"> <div class="box-header ptbnull"> <h3 class="box-title titlefix"><?php echo $this->lang->line('fees_type_list'); ?></h3> <div class="box-tools pull-right"> </div><!-- /.box-tools --> </div><!-- /.box-header --> <div class="box-body"> <div class="download_label"><?php echo $this->lang->line('fees_type_list'); ?></div> <div class="mailbox-messages table-responsive"> <table class="table table-striped table-bordered table-hover example"> <thead> <tr> <th><?php echo $this->lang->line('name'); ?> </th> <th><?php echo $this->lang->line('fees_code'); ?></th> <th class="text-right"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> <?php foreach ($feetypeList as $feetype) { ?> <tr> <td class="mailbox-name"> <a href="#" data-toggle="popover" class="detail_popover"><?php echo $feetype['type'] ?></a> <div class="fee_detail_popover" style="display: none"> <?php if ($feetype['description'] == "") { ?> <p class="text text-danger"><?php echo $this->lang->line('no_description'); ?></p> <?php } else { ?> <p class="text text-info"><?php echo $feetype['description']; ?></p> <?php } ?> </div> </td> <td class="mailbox-name"> <?php echo $feetype['code']; ?> </td> <td class="mailbox-date pull-right"> <?php if ($this->rbac->hasPrivilege('fees_type', 'can_edit')) { ?> <a data-placement="left" href="<?php echo base_url(); ?>admin/feetype/edit/<?php echo $feetype['id'] ?>" class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('edit'); ?>"> <i class="fa fa-pencil"></i> </a> <?php } ?> <?php if ($this->rbac->hasPrivilege('fees_type', 'can_delete')) { ?> <a data-placement="left" href="<?php echo base_url(); ?>admin/feetype/delete/<?php echo $feetype['id'] ?>"class="btn btn-default btn-xs" data-toggle="tooltip" title="<?php echo $this->lang->line('delete'); ?>" onclick="return confirm('<?php echo $this->lang->line('delete_confirm') ?>');"> <i class="fa fa-remove"></i> </a> <?php } ?> </td> </tr> <?php } ?> </tbody> </table><!-- /.table --> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> </div> </div><!--/.col (left) --> <!-- right column --> </div> <div class="row"> <!-- left column --> <!-- right column --> <div class="col-md-12"> </div><!--/.col (right) --> </div> <!-- /.row --> </section><!-- /.content --> </div><!-- /.content-wrapper --> <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