在我的自定义组件中使用 joomla com_media 图像选择
你好 我想在我自己的组件中使用 com_media 图像选择。链接是:
index.php?option=com_media&view=images&tmpl=component&
e_name=smallimage
图像转到编辑器,而我想要它的地址转到
<input class="inputbox" type="text" name="smallimage" id="smallimage" size="40"
maxlength="255" value="<?php echo $row->smallimage; ?>" title=
"<?php echo JText::_('SMALLIMAGETIP' ); ?>" />
我正在使用 joomla 1.5
有什么建议吗?
谢谢
hi
i want to use com_media image selection in my own component. the link is:
index.php?option=com_media&view=images&tmpl=component&
e_name=smallimage
the image goes to editor while i want it's address go to
<input class="inputbox" type="text" name="smallimage" id="smallimage" size="40"
maxlength="255" value="<?php echo $row->smallimage; ?>" title=
"<?php echo JText::_('SMALLIMAGETIP' ); ?>" />
i am using joomla 1.5
any suggestion?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 Joomla 1.6,最简单的方法就是让 Joomla 为您完成所有工作。如何?
首先,您需要在 xml 表单 (/model/forms/YOURFORM.xml) 中包含类似的内容...
您的模型中没有 getForm() 吗?
在您的视图(/views/xxxx/view.html.php)中,您需要加载表单
最后,您只需在模板中的任意位置打印元素即可。
再见
If you're using Joomla 1.6 the easy way is let Joomla do all the work for you. How?
First you need to include in you xml form (/model/forms/YOURFORM.xml) something like that...
Haven't you got a getForm() in your model?
In your view (/views/xxxx/view.html.php) you need to load your form
Finally you only need to print the element in the template wherever you want.
Bye
不是直截了当的,但你可以按照这里提到的方法解决 -
Joomla 论坛
Not straight forward, but you can have work around as mentioned here -
Joomla Forum