Code styling

This commit is contained in:
Benedek Farkas 2024-11-27 22:14:33 +01:00
parent cfe62f4c21
commit 318f9edd6f
4 changed files with 10 additions and 16 deletions

View File

@ -2,4 +2,4 @@
public static class Features {
public const string OrchardMediaProcessingHtmlFilter = "Orchard.MediaProcessingHtmlFilter";
}
}
}

View File

@ -5,7 +5,6 @@ using Orchard.Localization;
using Orchard.MediaProcessing.Models;
namespace Orchard.MediaProcessing.Handlers {
[OrchardFeature(Features.OrchardMediaProcessingHtmlFilter)]
public class MediaHtmlFilterSettingsPartHandler : ContentHandler {
public MediaHtmlFilterSettingsPartHandler() {
@ -26,6 +25,5 @@ namespace Orchard.MediaProcessing.Handlers {
base.GetItemMetadata(context);
context.Metadata.EditorGroupInfo.Add(new GroupInfo(T("Media")));
}
}
}
}

View File

@ -1,9 +1,7 @@
using Orchard.ContentManagement;
using Orchard.ContentManagement.FieldStorage.InfosetStorage;
namespace Orchard.MediaProcessing.Models {
public class MediaHtmlFilterSettingsPart : ContentPart {
public int DensityThreshold {
get { return this.Retrieve(x => x.DensityThreshold, 2); }
set { this.Store(x => x.DensityThreshold, value); }
@ -18,6 +16,5 @@ namespace Orchard.MediaProcessing.Models {
get { return this.Retrieve(x => x.PopulateAlt, true); }
set { this.Store(x => x.PopulateAlt, value); }
}
}
}
}

View File

@ -4,12 +4,12 @@
<legend>@T("Media Processing Filter")</legend>
<div>
@Html.LabelFor(m => m.DensityThreshold, T("Density Threshold"))
@Html.DropDownListFor(m => m.DensityThreshold, new List<SelectListItem>(new [] {
new SelectListItem { Value = "1", Text = "@1x" },
new SelectListItem { Value = "2", Text = "@2x" },
new SelectListItem { Value = "3", Text = "@3x" },
new SelectListItem { Value = "4", Text = "@4x" }}
))
@Html.DropDownListFor(m => m.DensityThreshold, new List<SelectListItem>(new[] {
new SelectListItem { Value = "1", Text = "@1x" },
new SelectListItem { Value = "2", Text = "@2x" },
new SelectListItem { Value = "3", Text = "@3x" },
new SelectListItem { Value = "4", Text = "@4x" }
}))
<span class="hint">@T("The image will only be reduced if at least this pixel density is maintained.")</span>
</div>
<div>
@ -22,5 +22,4 @@
@Html.LabelFor(m => m.PopulateAlt, T("Populate Empty Alt Tags").Text, new { @class = "forcheckbox" })
<span class="hint">@T("Populate an Alt tag based on the file name if the Alt tag is empty")</span>
</div>
</fieldset>
</fieldset>