Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在我的自定义组件中,我使用以下代码来弹出媒体管理器:
JToolBarHelper::media_manager('directory', 'Upload');
“目录”显然设置了单击按钮时将出现的默认目录,它确实如此,但是当我上传图像时,它会上传到标准"images"文件夹而不是images/directory.
"images"
images/directory
我环顾了谷歌,大多数页面都说这是 Joomla 1.5 中的一个错误,我认为它已在 Joomla 2.5 中修复。还有另一种方法可以让默认目录正常工作吗?
media_manager 使用 folder= 和您传递的目录调用。但它需要您的图像文件夹下方的路径。
所以如果你的文件夹是
/images/uploaddir
你会调用它
JToolBarHelper::media_manager('uploaddir', 'Upload');