wp-go/internal/actions/themehook.go

18 lines
391 B
Go
Raw Normal View History

package actions
import (
"github.com/fthvgb1/wp-go/internal/theme"
2023-03-01 05:17:12 +00:00
"github.com/fthvgb1/wp-go/internal/theme/wp"
"github.com/gin-gonic/gin"
)
func ThemeHook(scene int) func(*gin.Context) {
return func(ctx *gin.Context) {
2023-03-09 14:36:41 +00:00
t := theme.GetCurrentTemplateName()
2023-03-01 05:17:12 +00:00
h := wp.NewHandle(ctx, scene, t)
h.Index = wp.NewIndexHandle(h)
h.Detail = wp.NewDetailHandle(h)
2023-02-24 11:34:19 +00:00
theme.Hook(t, h)
}
}