Files
Umbraco-CMS/src/umbraco.controls/TreePicker/SimpleContentPicker.cs
Shannon c0380e491b Merge remote-tracking branch 'origin/6.2.0' into 7.0.2
Conflicts:
	src/Umbraco.Web.UI/umbraco/controls/Tree/TreeControl.ascx
	src/Umbraco.Web/Umbraco.Web.csproj
	src/Umbraco.Web/umbraco.presentation/umbraco/controls/Tree/TreeControl.ascx.cs
	src/umbraco.controls/TreePicker/SimpleContentPicker.cs
2013-12-19 11:41:03 +11:00

29 lines
641 B
C#

using System;
using System.Web;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Umbraco.Core;
namespace umbraco.uicontrols.TreePicker
{
public class SimpleContentPicker : BaseTreePicker
{
public override string TreePickerUrl
{
get
{
return Constants.Applications.Content;
}
}
public override string ModalWindowTitle
{
get
{
return ui.GetText("general", "choose") + " " + ui.GetText("sections", "content");
}
}
}
}