Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
You can configure content providers capabilities in web.config
http://world.episerver.com/documentation/items/developers-guide/episerver-cms/75/content/providers/Configuring-Content-Providers
Hi,
I am not sure if I was clear enough. I would like contentselctor not to display my provider in the content selector:
Hope it makes sesne now.
M
My best guess would be a new EditorDescriptor and ui hint yes.
Pretty much config needed for the basic plumbing for this property. Good start to check out
http://world.episerver.com/blogs/Anders-Hattestad/Dates/2015/2/extending-the-hyperlink-with-custom-field/
Restricting allowed types on contentselector is probably the easiest way?
Pretty new feature that one so check that it's available for your version before trying :)
Please see my answer in this thread http://world.episerver.com/forum/developer-forum/-EPiServer-75-CMS/Thread-Container/2016/1/hide-new-media-provider-in-hyperlinks-editor/. I will also post the code here if the link would end up broken in the future.
Return null for LinkableTypes in your MediaRepositoryDescriptor.
[ServiceConfiguration(typeof(IContentRepositoryDescriptor))] public class YourRepositoryDescriptor : MediaRepositoryDescriptor { private readonly IContentProviderManager ProviderManager; public YourRepositoryDescriptor(IContentProviderManager providerManager) { this.ProviderManager = providerManager; } public static new string RepositoryKey { get { return YourSettings.ProviderKey; } } public override string Key { get { return RepositoryKey; } } // Disble in link dialog public override IEnumerable<Type> LinkableTypes { get { return null; } } public override string Name { get { return YourSettings.ProviderName; } } public override string SearchArea { get { return RepositoryKey; } } public override IEnumerable<ContentReference> Roots { get { return new[] { this.ProviderManager.GetProvider(YourSettings.ProviderKey).EntryPoint }; } } public override IEnumerable<Type> ContainedTypes { get { return new[] { typeof(YourMediaFolder), typeof(YourMediaItem }; } } }
Hi,
I developed a custom content provider that is being uside in RHS panel. Is it to hide it from the content selector popup? If so, what's the best way go implement it - maybe a custom unit hint / editor descritor?
Many thanks,
Maciej