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
|
|
|
|
|
|
{
|
2018-01-24 13:37:14 +01:00
|
|
|
|
[ValueEditor(Constants.PropertyEditors.Aliases.MultiNodeTreePicker2, "Multinode Treepicker", "contentpicker", ValueTypes.Text, Group = "pickers", Icon = "icon-page-add")]
|
2017-05-12 14:49:44 +02:00
|
|
|
|
public class MultiNodeTreePicker2PropertyEditor : PropertyEditor
|
|
|
|
|
|
{
|
|
|
|
|
|
public MultiNodeTreePicker2PropertyEditor(ILogger logger)
|
|
|
|
|
|
: base(logger)
|
2018-02-05 17:48:54 +01:00
|
|
|
|
{ }
|
2017-05-12 14:49:44 +02:00
|
|
|
|
|
2018-02-05 17:48:54 +01:00
|
|
|
|
protected override ConfigurationEditor CreateConfigurationEditor() => new MultiNodePickerConfigurationEditor();
|
2017-05-12 14:49:44 +02:00
|
|
|
|
}
|
2017-07-20 11:21:28 +02:00
|
|
|
|
}
|