31 lines
699 B
C#
31 lines
699 B
C#
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 "You’re Done"; }
|
||
}
|
||
|
||
public override string UserControl
|
||
{
|
||
get { return IO.SystemDirectories.Install + "/steps/theend.ascx"; }
|
||
}
|
||
|
||
public override bool Completed()
|
||
{
|
||
return false;
|
||
}
|
||
}
|
||
} |