Esempio n. 1
0
File: base.go Progetto: zbzzbd/beego
func (c *BaseController) setCommonViewData() {
	c.Data["is_login"] = c.isLogin
	c.Data["IsDev"] = utils.IsDev()
	c.Data["title"] = c.SetTitle("")
}
Esempio n. 2
0
File: init.go Progetto: zbzzbd/beego
func showSql() {
	if utils.IsDev() {
		orm.Debug = true
	}
}