Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The DAM for Sitecore module extends SItecores default LInkProvider. The reason why we do that is because our media links are not recognized by Sitecore. We have to extend the LinkProvider and overrided the method ParseDynamicLink.

kjsdlfsdfThis is the configuration which can be found in the file App_Config\Include\damforsitecore\DFS.Services.config.

Code Block
languagexml
<linkManager>
      <providers>
        <add patch:instead="*[@type='Sitecore.Links.LinkProvider, Sitecore.Kernel']"  name="sitecore" type="DFS.Services.DfsLinkProvider, DFS.Services" addAspxExtension="false" alwaysIncludeServerUrl="false" encodeNames="true" languageEmbedding="asNeeded" languageLocation="filePath" lowercaseUrls="false" shortenUrls="true" useDisplayName="false"/>
	</providers>
</linkManager>


If for some reason you also overrides the LinkProvider in your Sitecore solution, then we have a problem. Only one can override the LinkProvider. To fix this you have to extend from our implementation. Include the DFS.Services.dll and extend with the class DFSLinkProvider like this:

Code Block
languagec#
public class YourImplProvider: DfsLinkProvider 
</providers>
    </linkManager>{
	...
}


If our implementation is not loaded you will get warnings when ever you insert any of our media files into a RTE field. It would say something like "Broken links" when saving and the link database is not update with our media items.