AI OnAI Off
Hey guys, I've just stumbled upon PropertyLinkCollectionEditingControl that uses this method:
protected string GetFileManagerUrl()
{
IContentSource contentSource = this.Page as IContentSource;
if (contentSource == null || !LegacyResourceableExtensions.IsLegacyResourceable(contentSource.CurrentContent))
return string.Empty;
long legcayContentFolderId = LegacyResourceableExtensions.GetLegcayContentFolderID(contentSource.CurrentContent);
return PropertyLinkCollectionEditControl.GetFileManagerBrowserUrl(contentSource.CurrentContent.ContentLink ?? ContentReference.EmptyReference, contentSource.CurrentContent.ParentLink, legcayContentFolderId);
}
Not sure if this helps you, but you can check it out with dotPeek or Reflector, might be that you will find something useful for yourselves.
Hello,
Does anyone know what should be used in Version 7 to replace EPiServer.Editor.HtmlEditor.GetFileManagerBrowserUrl from Version 6?
I've not found anything obvious yet.
Mark