mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!-- logfile output tab -->
 | |
| <div class="tab-pane fade" id="logging">
 | |
|   <h4><?php echo _("Logging") ?></h4>
 | |
|   <p><?php echo _("Enable these options to log <code>dhcpcd</code> and <code>dnsmasq</code> activity.") ?></p>
 | |
| 
 | |
|   <div class="custom-control custom-switch">
 | |
|     <input class="custom-control-input" id="log-dhcp" type="checkbox" name="log-dhcp" value="1" <?php echo $conf['log-dhcp'] ? ' checked="checked"' : "" ?> aria-describedby="log-dhcp-requests">
 | |
|     <label class="custom-control-label" for="log-dhcp"><?php echo _("Log DHCP requests") ?></label>
 | |
|   </div>
 | |
|   <div class="custom-control custom-switch">
 | |
|     <input class="custom-control-input" id="log-queries" type="checkbox" name="log-queries" value="1" <?php echo $conf['log-queries'] ? ' checked="checked"' : "" ?> aria-describedby="log-dhcp-queries">
 | |
|     <label class="custom-control-label align-middle" for="log-queries"><?php echo _("Log DNS queries") ?></label>
 | |
|     <input type="button" class="btn btn-outline btn-warning btn-sm align-top ml-4" id="js-cleardnsmasq-log" value="<?php echo _("Clear log"); ?>" />
 | |
|   </div>
 | |
| 
 | |
|   <div class="row">
 | |
|     <div class="form-group col-md-8 mt-2">
 | |
|       <?php
 | |
|       if ($conf['log-dhcp'] == 1 || $conf['log-queries'] == 1) {
 | |
|           echo '<textarea class="logoutput" id="dnsmasq-log">'.htmlspecialchars($logdata, ENT_QUOTES).'</textarea>';
 | |
|       } else {
 | |
|           echo '<textarea class="logoutput my-3"></textarea>';
 | |
|       }
 | |
|       ?>
 | |
|     </div>
 | |
|   </div>
 | |
| </div><!-- /.tab-pane -->
 |