Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: lookup_list.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 $strLabel; ?></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-10 col-xl-10"> <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 } ?> <form action="#" class="form-horizontal" name="frmChangePass" method="post" id="frmChangePass"> <input type="hidden" id="hdTdLbl" name="hdTdLbl" value="<?php echo($strLabel); ?>"> <input type="hidden" id="idField" name="idField" value="<?php echo($idCol); ?>"> <input type="hidden" id="nameField" name="nameField" value="<?php echo($textCol); ?>"> <input type="hidden" id="disableField" name="disableField" value="<?php echo($disableCol); ?>"> <input type="hidden" id="tblName" name="tblName" value="<?php echo($tbl); ?>"> <input type="hidden" id="id" name="id" value="<?php echo($id); ?>"> <div class="form-body"> <div class="form-group row"> <label class="col-lg-5 control-label text-right"><?php echo $strLabel; ?>:<span class="required_field">*</span></label> <div class="col-lg-6"> <input type="text" class="form-control" placeholder="Enter <?php echo $strLabel; ?>" maxlength="100" name="txtBx" id="txtBx" value="<?php if (isset($txtVal)) echo($txtVal); ?>"/> </div> </div> <?php if($lookupType == 'tbl_gf_tckt_category') { ?> <div class="form-group row"> <label class="col-lg-5 control-label text-right">Type:<span class="required_field">*</span></label> <div class="col-lg-6"> <select id="type" name="type" class="form-control select2me select2-hidden-accessible"> <option value="">Please Select</option> <option value="Order" <?php if($recordRow->type=='Order') echo ' selected'; ?>>Order</option> <option value="Payment" <?php if($recordRow->type=='Payment') echo ' selected'; ?>>Payment</option> <option value="Other" <?php if($recordRow->type=='Other') echo ' selected'; ?>>Other</option> </select> </div> </div> <?php } ?> <div class="form-group row"> <label class="col-lg-5 control-label text-right"><?php echo $this->lang->line('BE_GNRL_1'); ?> :</label> <div class="col-lg-6"> <div class="switch-button switch-button-lg" data-on-label="YES" data-off-label="NO"> <input type="checkbox" name="disable" id="disable" <?php if (isset($disable)) echo $disable == 1 ? 'checked' : ''; ?> class="toggle chkSelect"/><span><label for="disable"></label></span> </div> </div> </div> <div class="form-group row"> <div class="offset-5 col-lg-6"> <button type="button" <?php if ($IS_DEMO) echo 'disabled="disabled"'; ?> class="btn btn-primary ThemeColorButton" id="btnSave" name="btnSave"><?php echo $this->lang->line('BE_LBL_72'); ?></button> <div style="display:none;" id="statusLoader"><img src="<?php echo base_url('assets/images/loading.gif'); ?>" border="0" alt="Please wait..."/></div> </div> </div> </div> </form> <!-- END FORM--> </div> </div> </div> </div> </div> <!-- END PAGE CONTENT--> <div style="display:none" id="baseurl"><?php echo base_url(); ?></div> <script src="<?php echo base_url('assets/js/lookuplist.js') ?>?v=<?php echo $this->config->item('assets_version'); ?>"></script>