mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-21 15:10:22 +00:00
15 lines
326 B
PHP
Executable file
15 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();
|
|
|