Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
6cd9bff5
Commit
6cd9bff5
authored
Aug 14, 2015
by
Ad Schellevis
Committed by
Franco Fichtner
Aug 21, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(menu) add hotplug support
parent
e17ce08f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
MenuSystem.php
...opnsense/mvc/app/models/OPNsense/Base/Menu/MenuSystem.php
+9
-2
No files found.
src/opnsense/mvc/app/models/OPNsense/Base/Menu/MenuSystem.php
View file @
6cd9bff5
...
...
@@ -84,8 +84,15 @@ class MenuSystem
public
function
__construct
()
{
$this
->
root
=
new
MenuItem
(
"root"
);
$this
->
addXML
(
__DIR__
.
"/Menu.xml"
);
// crawl all vendors and modules and add menu definitions
foreach
(
glob
(
__DIR__
.
'/../../../*'
)
as
$vendor
)
{
foreach
(
glob
(
$vendor
.
'/*'
)
as
$module
)
{
$menu_cfg_xml
=
$module
.
'/Menu/Menu.xml'
;
if
(
file_exists
(
$menu_cfg_xml
))
{
$this
->
addXML
(
$menu_cfg_xml
);
}
}
}
}
/**
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment