/* Thor Server Project Copyright 2008 Joe Hegarty This file is part of The Thor Server Project. The Thor Server Project is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. The Thor Server Project is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with The Thor Server Project. If not, see . */ using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; using ThorServer; using ThorServer.Game.Users; namespace ThorHousekeeping { public partial class HousekeepingLayout : System.Web.UI.MasterPage { UserInfo mUser; protected void Page_Load(object sender, EventArgs e) { InstanceManager.CreateGameManager(); int userId = (int) Session["userid"]; mUser = InstanceManager.Game.Users.GetUser(userId); lblUserName.Text = mUser.sUsername; } protected bool HasRight(string right) { return InstanceManager.Game.Roles.HasRight(mUser.iRole, right); } } }