Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: departments.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_733'); ?></h4> </div> <div class="form-group" align="right"> <input type="button" class="btn" <?php if ($IS_DEMO) echo 'disabled="disabled"'; ?> value="+ <?php echo $this->lang->line('BE_GNRL_14') . ' a ' . $this->lang->line('BE_LBL_726'); ?>" onclick="window.location.href='<?php echo base_url($this->config->item('apanel_name').'/tickets/'); ?>department?frmId=<?php echo $this->input->post_get('frmId'); ?>&fTypeId=<?php echo $this->input->post_get('fTypeId') ?>'" class="btn"/> </div> </div> </div> <!-- /page header --> <!-- Content area --> <div class="content pt-0"> <div class="card"> <div class="form-group 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 } ?> <!-- Copy till this to paste to other pages --> <div class="form-group row"> <div class="col-lg-12"> <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_726'); ?></th> <th><?php echo $this->lang->line('BE_LBL_345'); ?></th> <th><?php echo $this->lang->line('BE_GNRL_3'); ?></th> <th></th> </tr> </thead> <tbody> <?php if ($count != 0) { foreach ($rsDepts as $row) { ?> <tr> <td class="highlight"> <div class="success"></div> <a href="<?php echo base_url($this->config->item('apanel_name').'/tickets/'); ?>department?id=<?php echo $row->DeptId; ?>&frmId=<?php echo $this->input->post_get('frmId'); ?>&fTypeId=<?php echo $this->input->post_get('fTypeId') ?>"><?php echo stripslashes($row->DeptName); ?></a> </td> <td><?php echo $row->DeptEmail; ?></td> <td><?php echo $row->DisableDept == '1' ? 'Yes' : 'No'; ?></td> <td style="text-align:center" valign="middle"> <a href="<?php echo base_url($this->config->item('apanel_name').'/tickets/'); ?>department?id=<?php echo $row->DeptId; ?>&frmId=<?php echo $this->input->post_get('frmId'); ?>&fTypeId=<?php echo $this->input->post_get('fTypeId') ?>"><i class="fa icon-pencil" data-toggle="tooltip" data-placement="top" title="Edit"></i> </a> </td> </tr> <?php } } else echo "<tr><td colspan='99' align='center'>" . $this->lang->line('BE_GNRL_9') . "</td></tr>"; ?> </tbody> </table> </div> </div> </div> </div> </div> </div> </div> </div>