Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: ipretailorders.php
<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> In Process Retail <?php echo $type == 0 ? 'IMEI' : 'Server'; ?> Orders </h4> </div> </div> </div> <div class="content pt-0"> <div class="card"> <div class="row"> <?php if($message != '') echo '<div class="alert alert-success">'.$message.'</div>'; ?> <div class="col-12 col-sm-12 col-md-12 col-lg-12 col-xl-12"> <div class="card-body"> <div class="table-responsive"> <table class="table table-striped table-bordered table-advance table-hover"> <thead> <tr> <th><?php echo $this->lang->line('BE_PCK_HD_4'); ?></th> <th><?php echo $this->lang->line('BE_PCK_15'); ?></th> <th><?php echo $this->lang->line('BE_MR_4'); ?></th> <th style="text-align:center">Action</th> </tr> </thead> <tbody> <? if($count != 0) { foreach($rsNewOrders as $row ) { $pageName = base_url() . $this->config->item('apanel_name') . '/retail/retailorders'; if($type == '1') $pageName = base_url() . $this->config->item('apanel_name') . '/retail/serverrtlorders'; ?> <tr> <td class="highlight"><? echo stripslashes($row->PackageTitle);?></td> <td><? echo $row->APITitle == '' ? '-' : stripslashes($row->APITitle); ?></td> <td><? echo $row->TotalOrders;?></td> <td style="text-align:center" valign="middle"> <a title="Take Action" href="<? echo $pageName;?>?packId=<? echo $row->PackageId;?>&codeStatusId=4&pT=1&searchType=3&txtFromDt=<? echo $dt; ?>"><i class="fa fa-search-plus" style="font-size:16px;"></i></a> </td> </tr> <? }?> <? }else{ ?> <tr><td colspan="4"><strong><?php echo $this->lang->line('BE_GNRL_9'); ?></strong></td></tr> <? } ?> </tbody> </table> </div> </div> </div> </div> </div> </div>