wp-go/app/actions/themehook.go

18 lines
370 B
Go
Raw Normal View History

package actions
import (
2023-05-04 12:36:17 +00:00
"github.com/fthvgb1/wp-go/app/theme"
"github.com/fthvgb1/wp-go/app/theme/wp"
"github.com/gin-gonic/gin"
)
2023-04-24 13:51:43 +00:00
func ThemeHook(scene string) func(*gin.Context) {
2023-03-17 10:26:08 +00:00
return func(c *gin.Context) {
2023-03-09 14:36:41 +00:00
t := theme.GetCurrentTemplateName()
2024-01-14 14:07:16 +00:00
h := wp.NewHandle(c, scene, t)
2023-04-24 13:51:43 +00:00
templ, _ := theme.GetTemplate(t)
h.SetTemplate(templ)
2023-02-24 11:34:19 +00:00
theme.Hook(t, h)
}
}