Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: paymentaggregators.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('BE_LBL_948'); ?></h4> </div> <div align="right"> <input type="button" <?php if($IS_DEMO) echo 'disabled="disabled"';?> value="Add a Payment Aggregator" onclick="window.location.href='<?= base_url($this->config->item('apanel_name') . '/sales/paymentaggregator'); ?>?frmId=<? echo $this->input->post_get('frmId');?>&fTypeId=<? echo $this->input->post_get('fTypeId');?>'" class="btn yellow" /> </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 } ?> <div class="form-group row"> <div class="table-responsive"> <table class="table table-striped table-bordered table-advance table-hover"> <thead> <tr> <th><?php echo $this->lang->line('BE_LBL_948'); ?></th> <th><?php echo $this->lang->line('BE_LBL_949'); ?></th> <th><?php echo $this->lang->line('BE_LBL_950'); ?></th> <th><?php echo $this->lang->line('BE_LBL_951'); ?></th> <th><?php echo $BE_GNRL_3; ?></th> <th></th> </tr> </thead> <tbody id="sortableLst"> <?php if($count != 0) { $i = 0; $strPMIds = '0'; foreach($rsPMs as $row) { ?> <tr id="listItem_<? echo $row->PaymentMethodId; ?>"> <td><a href="<?= base_url($this->config->item('apanel_name').'/sales/paymentaggregator'); ?>?id=<?php echo $row->PaymentMethodId;?>&frmId=<? echo $this->input->post_get('frmId');?>&fTypeId=<? echo $this->input->post_get('fTypeId')?>"><?php echo stripslashes($row->PaymentMethod);?></a></td> <td><?php echo stripslashes($row->PayMethodType);?></td> <td><?php echo $row->Fee;?></td> <td><?php echo $row->RetailFee;?></td> <td><?php echo $row->DisablePaymentMethod == '1' ? 'Yes' : 'No';?></td> <td style="text-align:center" valign="middle"> <a href="<?= base_url($this->config->item('apanel_name').'/sales/paymentaggregator'); ?>?id=<?php echo $row->PaymentMethodId;?>&frmId=<? echo $this->input->post_get('frmId');?>&fTypeId=<? echo $this->input->post_get('fTypeId')?>" ><i class="fa fa-pencil"></i> </a> </td> </tr> <? $i++; } } else echo "<tr><td colspan='6'>".$this->lang->line('BE_GNRL_9')."</td></tr>"; ?> </tbody> </table> <input type="hidden" value="<? echo $strPMIds; ?>" name="strPMIds" /> </div> </div> </div> </div> </div> </div> </div> <!-- <script type="text/javascript" src="../assets/sortable/jquery-ui-1.7.1.custom.min.js"></script> --> <script language="javascript" src="<?= base_url('assets/js/pmethods.js'); ?>?v=<?= $this->config->item('assets_version'); ?>"></script>