November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Here's the code for my image model class.
using CMS.Business.Helpers; using CMS.Business.Rendering; using EPiServer.Core; using EPiServer.DataAnnotations; using EPiServer.Framework.DataAnnotations; using EPiServer.Shell.ObjectEditing; using System.ComponentModel.DataAnnotations; namespace CMS.Models.Media { [ContentType(GUID = "0A89E464-98DF-449F-AEA8-2BF774AB8730")] [MediaDescriptor(ExtensionString = "jpg,jpeg,jpe,ico,gif,bmp,png")] public class ImageFile : ImageData { /// <summary> /// Gets or sets the copyright. /// </summary> /// <value> /// The copyright. /// </value> public virtual string Copyright { get; set; } /// <summary> /// Gets or sets the alt text of the image. /// </summary> /// [Display(Name = "Alt Text")] [CultureSpecific] public virtual string AltText { get; set; } /// <summary> /// Gets or sets the description of the image. (Used especially in Products) /// </summary> [CultureSpecific] public virtual string Description { get; set; } /// <summary> /// Gets or sets the image type /// </summary> [Display(Name = "Image Type")] [BackingType(typeof(PropertyNumber))] [EditorDescriptor(EditorDescriptorType = typeof(EnumEditorDescriptor<ImageTypes>))] public virtual ImageTypes ImageType { get; set; } } }
Here's an image showing that the list of languages is missing.
Here's an image showing in the languages widget that translations aren't supported.
Probably because imagedata doesn't implement ILocalizable? I may be wrong though after 5 beers or so...
Hi, Paul,
Take a look at this blogpost: https://gregwiechec.com/2015/07/localizable-media-assets/ by Grzegorz.
BR,
Marija
Yup, that's the way around it :)
Nice implementation of ILocalizable there...
Hey Guys,
I've gotten wrapped up in some other things and am just getting back to investigating this issue. I've looked at the link Marija shared, and this is great. I did however experiance two issues with this code however.
The first issue is an issue with using the interface ILocalizable.
The second issue is with the LoadMasterContent() method.
Do you guys have any idea what could be causing these issues? This is a literal copy and paste from the link you sent and I get these errors. Any ideas?
I was able to fix the ILocalizable issue by changing the MasterLanguage property from public IEnumerable ExistingLanguages { get; set; }, to public IEnumerable<CultureInfo> ExistingLanguages { get; set; }.
I'm still having isues with that LoadMasterContent() method though.
I'll take a look later today if noone beats me to it :)
Sounds interesting!
Have you implement LoadMasterContent in following way
public static class LocalizableMediaDataExtensions
private ImageFile LoadMasterContent(ImageFile imageFile)
Thanks K Kahn. With your help I was able to get the class to build, however I'm now getting an error when calling, or attempting to edit any image.
This is my code.
using CMS.Business.Helpers; using CMS.Business.Rendering; using EPiServer; using EPiServer.Core; using EPiServer.DataAnnotations; using EPiServer.Framework.Blobs; using EPiServer.Framework.DataAnnotations; using EPiServer.ServiceLocation; using EPiServer.Shell.ObjectEditing; using System.Collections; using System.ComponentModel.DataAnnotations; using System.Globalization; using System; using System.Collections.Generic; namespace CMS.Models.Media { [ContentType(GUID = "0A89E464-56D4-449F-AEA8-2BF774AB8730")] [MediaDescriptor(ExtensionString = "jpg,jpeg,jpe,ico,gif,bmp,png")] public class ImageFile : ImageData, ILocalizable { public IEnumerable<CultureInfo> ExistingLanguages { get; set; } public CultureInfo MasterLanguage { get; set; } public virtual string Copyright { get; set; } [CultureSpecific(true)] public virtual string Title { get; set; } [CultureSpecific(true)] public virtual string AlternateText { get; set; } public override Blob BinaryData { get { if (ContentReference.IsNullOrEmpty(this.ContentLink)) { return base.BinaryData; } if (this.Language.Name == this.MasterLanguage.Name) { return base.BinaryData; } return this.LoadMasterContent<ImageFile>().Thumbnail; } set { base.BinaryData = value; } } [ImageDescriptor(Height = 48, Width = 48)] public override Blob Thumbnail { get { if (ContentReference.IsNullOrEmpty(this.ContentLink)) { return null; } if (this.Language.Name == this.MasterLanguage.Name) { return base.Thumbnail; } return this.LoadMasterContent<ImageFile>().Thumbnail; } set { base.Thumbnail = value; } } } public static class LocalizableMediaDataExtensions { public static T LoadMasterContent<T>(this ImageFile imageFile) where T : IContent { var contentRepository = ServiceLocator.Current.GetInstance<IContentRepository>(); var content = contentRepository.Get<T>(imageFile.ContentLink.ToReferenceWithoutVersion(), new LanguageSelector(imageFile.MasterLanguage.Name)); return content; } } }
When editing any image now, I get this error.
If I open up chrome developer tools, I see it's erroring when pulling in this url... http://localhost:54326/EPiServer/shell/Stores/context/?uri=epi.cms.contentdata%3A%2F%2F%2F11566&dojo.preventCache=1468424787006
Looks like this...
try this (with assumption you just requires multlingual, Alt an desc)
public static T LoadMasterContent<T>(this ImageFile imageFile) where T : IContent { var contentRepository = ServiceLocator.Current.GetInstance<IContentRepository>(); var content = contentRepository.Get<T>(imageFile.ContentLink); return content; }
Tried it now. Works great if you create a class from scratch and start to upload file. If you modify an existing ImageFile class however you run into issues like the above. So workaround is to create a new content type from scratch with a new guid and use that one.
I tested this and it worked well:
[ContentType(GUID = "0A89E464-56D4-449F-AEA8-2BF774AB8745")] [MediaDescriptor(ExtensionString = "jpg,jpeg,jpe,ico,gif,bmp,png,pdf")] public class LocalizedImageFile : ImageData, ILocalizable { public IEnumerable<CultureInfo> ExistingLanguages { get; set; } public CultureInfo MasterLanguage { get; set; } public virtual string Copyright { get; set; } [CultureSpecific(true)] public virtual string Title { get; set; } [CultureSpecific(true)] public virtual string AlternateText { get; set; } public override Blob BinaryData { get { if (ContentReference.IsNullOrEmpty(this.ContentLink)) { return base.BinaryData; } if (this.Language.Name == this.MasterLanguage.Name) { return base.BinaryData; } return this.LoadMasterContent<LocalizedImageFile>().BinaryData; } set { base.BinaryData = value; } } [ImageDescriptor(Height = 48, Width = 48)] public override Blob Thumbnail { get { if (ContentReference.IsNullOrEmpty(this.ContentLink)) { return null; } if (this.Language.Name == this.MasterLanguage.Name) { return base.Thumbnail; } return this.LoadMasterContent<LocalizedImageFile>().Thumbnail; } set { base.Thumbnail = value; } } } public static class LocalizableMediaDataExtensions { public static T LoadMasterContent<T>(this LocalizedImageFile imageFile) where T : IContent { var contentRepository = ServiceLocator.Current.GetInstance<IContentRepository>(); var content = contentRepository.Get<T>(imageFile.ContentLink.ToReferenceWithoutVersion(), new LanguageSelector(imageFile.MasterLanguage.Name)); return content; } }
You also have a small typo in your code above for the BinaryData where you return the thumbnail btw...need to change that.
I removed a few extensions from the original ImageFile class I had and added them instead to my LocalizedImageFile, added a new language to Alloy site and tried it out. Np...
There is probably some issue with routing to the blob file if you use the existing class and make that ILocalizable after the file has been uploaded. Probably possible to fix if you really have to but creating a new contenttype for localized media should work out most of the time I guess.
Hi Everyone,
I'm running into an issue. Our website requires translations for everything, so adding culter specific properties is a must. Anyway, I'm looking at adding a culterspecific/translatable property for an image description and alt text. I've created an ImageFile class for this and everything works well however, it appears there an issue with image classes and any CultureSpecific properties aren't translatable.
Do you guys know of any way around this? Please see the images / code below.
-Paul