mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 20:09:09 +08:00
Code styling
This commit is contained in:
parent
cfe62f4c21
commit
318f9edd6f
@ -2,4 +2,4 @@
|
||||
public static class Features {
|
||||
public const string OrchardMediaProcessingHtmlFilter = "Orchard.MediaProcessingHtmlFilter";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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")));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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); }
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user