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

31 lines
699 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using umbraco.cms.businesslogic.installer;
namespace umbraco.presentation.install.steps.Definitions
{
public class TheEnd : InstallerStep
{
public override string Alias
{
get { return "theend"; }
}
public override string Name
{
get { return "Youre Done"; }
}
public override string UserControl
{
get { return IO.SystemDirectories.Install + "/steps/theend.ascx"; }
}
public override bool Completed()
{
return false;
}
}
}