Added configuration to the multinode picker

This commit is contained in:
perploug
2013-10-10 21:15:04 +02:00
parent e67f85695c
commit 3d8138f3ef
12 changed files with 166 additions and 46 deletions

View File

@@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Umbraco.Core;
using Umbraco.Core.PropertyEditors;
namespace Umbraco.Web.PropertyEditors
{
[PropertyEditor(Constants.PropertyEditors.MultiNodeTreePickerAlias, "Multinode Treepicker", "contentpicker")]
public class MultiNodeTreePickerPropertyEditor : PropertyEditor
{
protected override PreValueEditor CreatePreValueEditor()
{
return new MultiNodePickerPreValueEditor();
}
}
}