Last active
April 27, 2023 16:24
14.1, 14.2, 14.3 - https://www.progress.com/documentation/sitefinity-cms/custom-dam-provider-and-thumbnails
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using System.Collections.Specialized; | |
using System.Linq; | |
using Telerik.Sitefinity.Configuration; | |
using Telerik.Sitefinity.Modules.Libraries.BlobStorage; | |
using Telerik.Sitefinity.Modules.Libraries.Configuration; | |
namespace SitefinityWebApp.CustomDamProvider | |
{ | |
public class CustomDamProviderConfiguration : IBlobStorageConfiguration | |
{ | |
/// <inheritdoc /> | |
public IEnumerable<DataProviderSettings> GetProviderConfigElements(ConfigElement parent) | |
{ | |
return Enumerable.Empty<DataProviderSettings>(); | |
} | |
/// <inheritdoc /> | |
public IEnumerable<BlobStorageTypeConfigElement> GetProviderTypeConfigElements(ConfigElement parent) | |
{ | |
var providerTypes = new List<BlobStorageTypeConfigElement>(); | |
providerTypes.Add(new BlobStorageTypeConfigElement(parent) | |
{ | |
Name = "CustomDamBlobStorageTypeName", | |
ProviderType = typeof(CustomDamProvider), | |
Title = "CustomDamBlobStorageTypeTitle", | |
Parameters = new NameValueCollection() | |
{ | |
{ DamBlobStorageProviderBase.ScriptUrlKey, string.Empty }, | |
{ DamBlobStorageProviderBase.SupportedThumbnailFormatsKey, ".jpg, .jpeg, .png, .gif, .webp" }, | |
{ CustomDamProvider.UrlKey, string.Empty }, | |
{ CustomDamProvider.ClientIdKey, "#sf_Secret" } | |
} | |
}); | |
return providerTypes; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment