Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: showServicesHiddenForSomeUsers.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 $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"> <?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 table-responsive DisplayInlineTab"> <thead> <tr class="bg-primary"> <th><?php echo $this->lang->line('CUST_CH_132'); ?></th> <th><?php echo $this->lang->line('CUST_LBL_59'); ?></th> <th><?php echo $this->lang->line('BE_LBL_958'); ?></th> </tr> </thead> <tbody> <?php if($servicesHiddenFromAllUsers) { $i = 0; foreach($servicesHiddenFromAllUsers as $row) { ?> <tr> <td><?php echo stripslashes($row->PackageTitle);?></td> <td><?php echo stripslashes($row->Total);?></td> <td align="center"> <a href="<?php echo base_url($this->config->item('apanel_name') . '/services/hideServicesForSomeUsers') . '?fTypeId=' . $fTypeId . '&categoryId=' . $row->CategoryId . '&frmId=' . $frmId . '&sc=' . $sc . '&serviceId=' . $row->PackageId ?>"><?php echo $this->lang->line('BE_LBL_958'); ?></a> </td> </tr> <?php $i++; } } else echo "<tr><td colspan='2'>".$this->lang->line('BE_GNRL_9')."</td></tr>"; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> <script> function setValue(i) { document.getElementById('cldFrm').value = i; } </script>