Files
Umbraco-CMS/umbraco/presentation/install/steps/Definitions/WebPi.cs
2010-12-06 08:49:38 +00:00

39 lines
999 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using umbraco.cms.businesslogic.installer;
using umbraco.BusinessLogic;
namespace umbraco.presentation.install.steps.Definitions
{
public class WebPi : InstallerStep
{
public override string Alias
{
get { return "webpi"; }
}
public override string Name
{
get { return "Hi " + new User(0).Name + " you are running umbraco"; }
}
public override bool HideFromNavigation {
get {
return true;
}
}
public override string UserControl
{
get { return IO.SystemDirectories.Install + "/steps/skinning.ascx"; }
}
public override bool Completed()
{
//this is always completed, we just want to be able to hook into directly after finishing web pi
return true;
}
}
}