Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: statements.php
<!-- Page header --> <div class="page-header border-bottom-0"> <div class="page-header-content header-elements-md-inline"> <div class="page-title d-flex"> <h4><a href="javascript:void(0)" class="BackButton-Link" onclick="goBack()"><i class="icon-arrow-left52 mr-2"></i></a> <?php echo $this->lang->line('CUST_CRP_HEADING'); ?></h4> </div> </div> </div> <!-- /page header --> <!-- Content area --> <div class="content pt-0"> <div class="card"> <div class="row"> <div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12"> <div class="card-body"> <!-- Our Working Area Start --> <?php if (isset($message) && $message != '') { ?> <div class="form-group row"> <div class="col-lg-12"> <div class="alert alert-success"><?php echo $message; ?></div> </div> </div> <?php } ?> <?php echo form_open(base_url('page/my_statements'),'id="statement_search_frm" method="post"')?> <div class="form-group row mb-2"> <div class="col-lg-6"> <input type="text" name="service_name" value="<?php echo $service_name;?>" placeholder="Service Name" id="service_name" class="form-control"> </div> <div class="col-lg-6"> <input type="text" name="imei_number" value="<?php echo $imei_no;?>" placeholder="IMEI Number" id="imei_number" class="form-control"> <input type="hidden" name="start" id="start" value="0"/> </div> <div class="col-lg-12 text-right mt-2"> <button type="submit" class="btn ThemeColorButton" name="searchBtn">Search</button> </div> </div> <?php echo form_close();?> <div class="form-group row"> <div class="col-lg-12"> <div class="table-responsive"> <table id="datatable" class="table table-striped table-bordered dt-responsive nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;"> <thead> <tr class="bg-primary"> <th><?php echo $this->lang->line('CUST_CRP_5'); ?></th> <th><?php echo $this->lang->line('CUST_CRP_1'); ?></th> <th><?php echo $this->lang->line('CUST_CH_1'); ?></th> <th><?php echo $this->lang->line('CUST_LBL_192'); ?></th> <th>Fee</th> <th><?php echo $this->lang->line('CUST_LBL_246'); ?></th> </tr> </thead> <tbody> <?php if($rsHistory) { foreach ($rsHistory as $row) { if ($row->CreditsLeft != '') $creditsLeft = $controller_instanse->decrypt($row->CreditsLeft); else $creditsLeft = '-'; $arrDt = explode(' ', $row->HistoryDtTm); ?> <tr> <td nowrap="nowrap"><?php echo convertDate($arrDt[0]); ?></td> <td><?php echo stripslashes($row->Description); ?></td> <td nowrap="nowrap"><?php echo $row->IMEINo == '' ? '-' : $row->IMEINo; ?></td> <td nowrap="nowrap"><?php echo $userDetails->CurrencySymbol . $row->Credits; ?></td> <td nowrap="nowrap"><?php echo $row->FeePercentage == '' ? '-' : $row->FeePercentage; ?></td> <td nowrap="nowrap"><?php echo $userDetails->CurrencySymbol . $creditsLeft; ?></td> </tr> <? } } else {?> <td colspan="999" align="center">No Data Found</td> <?php }?> </tbody> </table> </div> </div> </div> <?php if (count($allData) != 0) { $totalRows = count($allData); if ($totalRows > $limit) { doPages_DropDown($page_name, $back, $start, $txtlqry, $totalRows, $limit, $eu, $pLast, $thisp, $next, 'statement_search_frm'); } } ?> <!--/col-md-3--> <!--/col-md-3--> </div> <!--/row--> </div> </div> </div> </div>