I am working on products that have the downloadable files associated with them implemented using the mediadb module. My question is: how are the products in the catalog tied to entries in the Media DB module? i.e the following code:
<!--@LoopStart(MediaDBLoop)-->
<div class="media-group">
<h2><!--@GroupName--></h2>
<!--@LoopStart(Files)-->
<div><!--@Translate(ProductDownload,"Download",global)-->: <a href="<!--@DownloadUrl-->"><!--@MediaFileName--></a> <!--@If(FileSize>0)--><small>(<!--@FileSize-->)</small><!--@EndIf--></div>
<!--@LoopEnd(Files)-->
</div>
<!--@LoopEnd(MediaDBLoop)-->
Gives me lovely HTML. But how is the product finding the files corresponding to it?
Also : Where can I find documentation on this module?