38 lines
1.2 KiB
C#
38 lines
1.2 KiB
C#
using Umbraco.Core;
|
|
using Umbraco.Core.Logging;
|
|
using Umbraco.Core.PropertyEditors;
|
|
using Umbraco.Core.Services;
|
|
|
|
namespace Umbraco.Web.PropertyEditors
|
|
{
|
|
/// <summary>
|
|
/// A property editor to allow the individual selection of pre-defined items.
|
|
/// </summary>
|
|
[DataEditor(
|
|
Constants.PropertyEditors.Aliases.RadioButtonList,
|
|
"Radio button list",
|
|
"radiobuttons",
|
|
ValueType = ValueTypes.String,
|
|
Group = Constants.PropertyEditors.Groups.Lists,
|
|
Icon = "icon-target")]
|
|
public class RadioButtonsPropertyEditor : DataEditor
|
|
{
|
|
private readonly ILocalizedTextService _textService;
|
|
|
|
/// <summary>
|
|
/// The constructor will setup the property editor based on the attribute if one is found
|
|
/// </summary>
|
|
public RadioButtonsPropertyEditor(ILogger logger, ILocalizedTextService textService)
|
|
: base(logger)
|
|
{
|
|
_textService = textService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Return a custom pre-value editor
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected override IConfigurationEditor CreateConfigurationEditor() => new ValueListConfigurationEditor(_textService);
|
|
}
|
|
}
|