Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/MultiNodeTreePickerPropertyEditor.cs

23 lines
697 B
C#
Raw Normal View History

2018-02-05 17:48:54 +01:00
using Umbraco.Core;
2017-05-12 14:49:44 +02:00
using Umbraco.Core.Logging;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[DataEditor(
Constants.PropertyEditors.Aliases.MultiNodeTreePicker,
"Multinode Treepicker",
"contentpicker",
ValueType = ValueTypes.Text,
Group = Constants.PropertyEditors.Groups.Pickers,
Icon = "icon-page-add")]
2018-03-19 18:39:34 +01:00
public class MultiNodeTreePickerPropertyEditor : DataEditor
2017-05-12 14:49:44 +02:00
{
2018-03-19 18:39:34 +01:00
public MultiNodeTreePickerPropertyEditor(ILogger logger)
2017-05-12 14:49:44 +02:00
: base(logger)
2018-02-05 17:48:54 +01:00
{ }
2017-05-12 14:49:44 +02:00
2018-02-15 14:49:32 +01:00
protected override IConfigurationEditor CreateConfigurationEditor() => new MultiNodePickerConfigurationEditor();
2017-05-12 14:49:44 +02:00
}
2017-07-20 11:21:28 +02:00
}