mirror of
				https://github.com/billz/raspap-webgui.git
				synced 2025-03-01 10:31:47 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			326 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			326 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?php
 | 
						|
 | 
						|
use RaspAP\Plugins\PluginManager;
 | 
						|
 | 
						|
$pluginManager = PluginManager::getInstance();
 | 
						|
 | 
						|
// Display logo and status LEDs
 | 
						|
renderStatus($hostapd_led, $hostapd_status,
 | 
						|
    $memused_led, $memused,
 | 
						|
    $cputemp_led, $cputemp);
 | 
						|
 | 
						|
// Render sidebar via the PluginManager
 | 
						|
$sidebar = $pluginManager->getSidebar();
 | 
						|
$sidebar->render();
 | 
						|
 |