我在我的 Joomla 组件上使用这个片段来调用图像框并用他的值填充我的字段:
<a class="modal" title="Select your image" href="index.php?option=com_media&view=images&tmpl=component&asset=59&author=42&fieldid=id_field&folder=" rel="{handler: 'iframe', size: {x: 800, y: 500}}">Select your image</a>
它工作正常。
但是如果我需要其他类型的文件?我试过这样:
<a class="modal" title="Select your file" href="index.php?option=com_media&view=media&tmpl=component&asset=59&author=42&fieldid=id_field&folder=" rel="{handler: 'iframe', size: {x: 800, y: 500}}">Select your file</a>
使用 view= media而不是 view= images
我看到带有媒体文件的模式框..但我无法选择它们来填充我的字段..
为什么?谢谢!