mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-02 20:00:26 +08:00
28 lines
662 B
Go
28 lines
662 B
Go
package db
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
|
|
"github.com/iwind/TeaGo/actions"
|
|
"net/http"
|
|
)
|
|
|
|
type Helper struct {
|
|
helpers.LangHelper
|
|
}
|
|
|
|
func (this *Helper) BeforeAction(action *actions.ActionObject) {
|
|
if action.Request.Method != http.MethodGet {
|
|
return
|
|
}
|
|
|
|
action.Data["teaMenu"] = "db"
|
|
|
|
selectedTabbar, _ := action.Data["mainTab"]
|
|
|
|
var tabbar = actionutils.NewTabbar()
|
|
tabbar.Add(this.Lang(action, codes.AdminDBNodeTabNodes), "", "/db", "", selectedTabbar == "db")
|
|
actionutils.SetTabbar(action, tabbar)
|
|
}
|