Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
application
/
views
/
admin
/
income
✏️
Editing: incomeList.php
<?php $currency_symbol = $this->customlib->getSchoolCurrencyFormat(); $language = $this->customlib->getLanguage(); $language_name = $language["short_code"]; ?> <style type="text/css"> @media print { .no-print { visibility: hidden !important; display:none !important; } } </style> <!-- Content Wrapper. Contains page content --> <div class="content-wrapper"> <section class="content-header"> <h1> <i class="fa fa-usd"></i> <?php echo $this->lang->line('income'); ?></h1> </section> <!-- Main content --> <section class="content"> <div class="row"> <?php if ($this->rbac->hasPrivilege('income', '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_income'); ?></h3> </div><!-- /.box-header --> <form id="form1" action="<?php echo base_url() ?>admin/income" id="employeeform" name="employeeform" method="post" accept-charset="utf-8" enctype="multipart/form-data"> <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('income_head'); ?></label><small class="req"> *</small> <select autofocus="" id="inc_head_id" name="inc_head_id" class="form-control" > <option value=""><?php echo $this->lang->line('select'); ?></option> <?php foreach ($incheadlist as $inchead) { ?> <option value="<?php echo $inchead['id'] ?>"<?php if (set_value('inc_head_id') == $inchead['id']) { echo "selected = selected"; } ?>><?php echo $inchead['income_category'] ?></option> <?php //$count++; } ?> </select><span class="text-danger"><?php echo form_error('inc_head_id'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('name'); ?><small class="req"> *</small></label> <input id="name" name="name" placeholder="" 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('invoice_no'); ?></label> <input id="invoice_no" name="invoice_no" placeholder="" type="text" class="form-control" value="<?php echo set_value('invoice_no'); ?>" /> <span class="text-danger"><?php echo form_error('invoice_no'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('date'); ?><small class="req"> *</small></label> <input id="date" name="date" placeholder="" type="text" class="form-control date" value="<?php echo set_value('date'); ?>" readonly="readonly" /> <span class="text-danger"><?php echo form_error('date'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('amount'); ?><small class="req"> *</small></label> <input id="amount" name="amount" placeholder="" type="text" class="form-control" value="<?php echo set_value('amount'); ?>" /> <span class="text-danger"><?php echo form_error('amount'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('attach_document'); ?></label> <input id="documents" name="documents" placeholder="" type="file" class="filestyle form-control" data-height="40" value="<?php echo set_value('documents'); ?>" /> <span class="text-danger"><?php echo form_error('documents'); ?></span> </div> <div class="form-group"> <label for="exampleInputEmail1"><?php echo $this->lang->line('description'); ?></label> <textarea class="form-control" id="description" name="description" placeholder="" rows="3" placeholder="Enter ..."><?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('income', '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('income_list'); ?></h3> <div class="box-tools pull-right"> </div><!-- /.box-tools --> </div><!-- /.box-header --> <div class="box-body"> <div class="table-responsive mailbox-messages"> <table class="table table-striped table-bordered table-hover income-list" data-export-title="<?php echo $this->lang->line('income_list'); ?>"> <thead> <tr> <th><?php echo $this->lang->line('name'); ?> </th> <th><?php echo $this->lang->line('description'); ?> </th> <th><?php echo $this->lang->line('invoice_no'); ?> </th> <th><?php echo $this->lang->line('date'); ?> </th> <th><?php echo $this->lang->line('income_head'); ?> </th> <th><?php echo $this->lang->line('amount'); ?> </th> <th class="text-right noExport"><?php echo $this->lang->line('action'); ?></th> </tr> </thead> <tbody> </tbody> </table><!-- /.table --> </div><!-- /.mail-box-messages --> </div><!-- /.box-body --> </div> </div><!--/.col (left) --> <!-- right column --> </div> </section><!-- /.content --> </div><!-- /.content-wrapper --> <script> ( function ( $ ) { 'use strict'; $(document).ready(function () { initDatatable('income-list','admin/income/getincomelist',[],[],100); }); } ( jQuery ) ) </script>
💾 Save Changes
❌ Cancel