使用媒体管理器作为组件中的文件选择器
我正在 Joomla 1.6 中开发一个组件,它是一个文档管理器,我拥有所有功能,但现在我想将媒体管理器作为文件选择器包含在内。
在 Joomla 1.6 中,媒体管理器准备像图像选择器一样使用(正如我们在文章管理器中看到的那样,您可以在其中为内容选择图像),但我想知道是否可以对所有文件类型重现相同的操作无需修改媒体组件。
我知道如何在我的组件中使用媒体管理器作为图像选择器。事实上我回答过这个问题。
在我的自定义中使用 joomla com_media 图像选择 ?
有人可以帮助我吗 :)
再见
I'm developing a component in Joomla 1.6, is a Document Manager and I have all the funcionality, but now I want to include the Media Manager as File Picker.
In Joomla 1.6 Media Manager is prepared to be use like a Image Picker (as we can see in the Article Manager where you can select a Image for the content), but I want to know if it's possible to reproduce the same action with all filetypes without modifying the Media Component.
I know how to use the media manager as Image Picker in my component. In fact I answered to this question.
use joomla com_media image selection in my custom component
Can someone help me? :)
Byes
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,在研究了该组件之后,我发现这不是一个简单的问题。
我们如何使用其他文件类型?
第 116 行的
/administrator/components/com_media/models/list.php
存在一个用作过滤器的开关
如果我们想添加新功能(带有按钮)...
我们可以在哪里添加按钮?
/administrator/components/com_media/views/images/tmpl/default.php
我们可以在哪里添加 javascript 功能?
/media/media/js/popup-imagemanager.js
这样做我们遇到了一些问题
1)我们需要在每个 joomla 中进行硬编码。
2) 我不确定,但 Joomla 更新后更改可能会被删除。
另一个机会是制作媒体组件的分支,并准备好安装这些更改。
再见,
感谢风滚草徽章鼓励我写下回复。
Ok, after the study of the component i got the fact that is not an easy question.
How can we use another filetypes?
/administrator/components/com_media/models/list.php
on line 116 exists a switch which works as a filter
If we want to add a new functionality (with a button)...
Where can we add the button?
/administrator/components/com_media/views/images/tmpl/default.php
Where can we add the javascript functionality?
/media/media/js/popup-imagemanager.js
Doing that we have some problems
1) we need to hardcode in every joomla.
2) I'm not sure, but the changes might be delete after a Joomla Updated.
Another chance is make a fork of the media component with theses changes ready to install.
Byes
Thanks to the tumbleweed badget to encourage me to write the response.