This commit is contained in:
parent
b5c3c18e28
commit
4ece2b0cd2
5 changed files with 20 additions and 5 deletions
|
|
@ -24,6 +24,7 @@ package wa.server.page;
|
|||
|
||||
import wa.server.WAContext;
|
||||
import wa.server.page.struct.WANavigation;
|
||||
import wa.server.plugin.WAConfiguration;
|
||||
import wa.server.plugin.WAService;
|
||||
import wa.server.plugin.WAServiceStatus;
|
||||
import zutil.io.file.FileUtil;
|
||||
|
|
@ -56,8 +57,11 @@ public class ServicePage implements WAPage {
|
|||
|
||||
WANavigation nav = new WANavigation(NAVIGATION_NAME, this);
|
||||
for(WAService plugin : services) {
|
||||
nav.addSubNav(new WANavigation(plugin.getName(), plugin));
|
||||
statuses.add(new ServiceStatusPage(plugin.getStatus()));
|
||||
nav.addSubNav(new WANavigation(plugin.getName(), plugin));
|
||||
for(WAConfiguration conf : plugin.getConfigurations()){
|
||||
|
||||
}
|
||||
}
|
||||
WANavigation.addRootNav(nav);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue