예제 #1
0
파일: base.go 프로젝트: zbzzbd/beego
func (c *BaseController) setCommonViewData() {
	c.Data["is_login"] = c.isLogin
	c.Data["IsDev"] = utils.IsDev()
	c.Data["title"] = c.SetTitle("")
}
예제 #2
0
파일: init.go 프로젝트: zbzzbd/beego
func showSql() {
	if utils.IsDev() {
		orm.Debug = true
	}
}