Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: downloads.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_868'); ?></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 } ?> <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 width="40%">Title</th> <th width="60%">File To Download</th> </tr> </thead> <tbody> <?php foreach ($rsDwnlds as $row) { ?> <tr> <td><?php echo stripslashes($row->Title); ?></td> <td> <?php $THEME=$this->data['rsStngs']->Theme; if ($row->FileURL != '') { ?> <a style="text-decoration:underline;" href="<?php echo base_url('uplds' . $THEME . '/') . $row->FileURL; ?>" download="">Download File</a> <? } else echo '-'; ?> </td> </tr> <?php } ?> <?php if(empty($rsDwnlds)) { ?> <tr> <td colspan="999" align="center"><?php echo $this->lang->line('CUST_LBL_10'); ?></td> </tr> <?php } ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div>