Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: client_services.php
<!-- Page header --> <div class="page-header border-bottom-0"> <div class="container"> <div class="page-header-content"> <div class="page-title"> <h4><a href="javascript:void(0)" class="BackButton-Link" onclick="goBack()"><i class="icon-arrow-left52 mr-2"></i></a> <?php echo $heading; ?></h4> </div> </div> </div> </div> <!-- /page header --> <!-- Content area --> <?php $type = $this->input->get('sc'); ?> <div class="content client-panel-main-box bg-white"> <div class="container"> <div class="row mt-2 ml-2 mr-2"> <div class="col-lg-12"> <ul class="nav nav-tabs nav-tabs-bottom border-bottom-0 nav-justified mb-0 tabs-cstm-border"> <li class="nav-item"><a href="<?php echo base_url('page/product_and_services?sc=0');?>" class="nav-link <?php echo ($type==0?'active':'');?>" >IMEI Services</a></li> <li class="nav-item"><a href="<?php echo base_url('page/product_and_services?sc=1');?>" class="nav-link <?php echo ($type==1?'active':'');?>" >File Services</a></li> <li class="nav-item"><a href="<?php echo base_url('page/product_and_services?sc=2');?>" class="nav-link <?php echo ($type==2?'active':'');?>" >Server Services</a></li> </ul> </div> </div> <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 } ?> <div class="form-group row"> <div class="col-lg-12"> <div class="table-responsive"> <table id="datatable" class="table dt-responsive nowrap" style="border-collapse: collapse; border-spacing: 0; width: 100%;"> <thead> <tr class="bg-primary"> <th><?php echo $this->lang->line('CUST_CH_67'); ?></th> <th><?php echo $this->lang->line('CUST_CODE_2'); ?></th> <th><?php echo $this->lang->line('CUST_CH_68'); ?></th> <th style="width: 15%"><?php echo $this->lang->line('CUST_LBL_300'); ?></th> <th></th> </tr> </thead> <tbody> <?php foreach ($products as $row) { $myPrice = 0; if (isset($PACK_PRICES_USER[$row->PackageId])) $myPrice = $PACK_PRICES_USER[$row->PackageId]; else if (isset($PACK_PRICES_PLAN[$row->PackageId])) $myPrice = $PACK_PRICES_PLAN[$row->PackageId]; else { if (isset($PACK_PRICES_BASE[$row->PackageId])) $myPrice = $PACK_PRICES_BASE[$row->PackageId]; } if ($row->$disableCol == 0) { $class = 'success'; $lbl = 'Active'; } else { $class = 'danger'; $lbl = 'Inactive'; } ?> <tr> <td><?php echo stripslashes($row->Category); ?></td> <td><?php echo stripslashes($row->PackageTitle); ?></td> <td><?php echo stripslashes($row->DeliveryTime); ?></td> <td><?php echo $userDetails->CurrencySymbol . roundMe($myPrice); ?></td> <td align="center"><span class="badge badge-<?php echo $class; ?>"><?php echo $lbl; ?></span> </td> </tr> <?php } ?> <?php if(empty($products)) { ?> <tr> <td colspan="999" align="center"><?php echo $this->lang->line('CUST_LBL_10'); ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> <!--/col-md-3--> <!--/col-md-3--> </div> <!--/row--> </div> </div> </div> </div>