-
Notifications
You must be signed in to change notification settings - Fork 0
Adding Navbar Links
Timothy Gibbons edited this page Apr 21, 2018
·
1 revision
In the recent version you can add custom navbar content. To do this you need to insert the following into the mysql database, as accessing this though the adminCP is currently under development.
{
"links":[
{
"name": "Page",
"type": "link",
"content": "/page"
}
]
}
Note: This have to one drop down box You cannot add a drop-down box with in a drop-down box.
{
"links":[
{
"name": "Dropdown",
"type": "multi-link",
"content": [
{
"name": "Page",
"type": "link",
"content": "/page"
}
]
}
]
}
{
"links":[
{
"name": "Page",
"type": "link",
"content": "/page",
"haveLogIn": true
}
]
}
Blacklist group 1,2,3
{
"links":[
{
"name": "Page",
"type": "link",
"content": "/page",
"excludeGroups": [
1,2,3
]
}
]
}