mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			467 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
require('../../includes/csrf.php');
 | 
						|
include_once('../../includes/config.php');
 | 
						|
include_once('../../includes/defaults.php');
 | 
						|
include_once('../../includes/functions.php');
 | 
						|
include_once('../../includes/wifi_functions.php');
 | 
						|
 | 
						|
$networks = [];
 | 
						|
$network  = null;
 | 
						|
$ssid     = null;
 | 
						|
 | 
						|
knownWifiStations($networks);
 | 
						|
nearbyWifiStations($networks, !isset($_REQUEST["refresh"]));
 | 
						|
connectedWifiStations($networks);
 | 
						|
 | 
						|
echo renderTemplate('wifi_stations', compact('networks'));
 |