本文介绍了如何在自定义组件视图中添加joomla编辑器,但不使用XML表单字段?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个自定义的joomla组件.我想在我的一个组件视图中添加一个joomla编辑器字段.我知道如何使用XML表单文件(models/forms/myview.xml)添加编辑器,但是我想在视图文件(myview/tmpl/default.php)中执行相同操作,而不使用xml文件字段.是否有可能 ?如果是,那怎么办?
I am developing a custom joomla component. I want to add a joomla editor field in my one of my component view. I know how to add editor using XML form file (models/forms/myview.xml), but I want to do the same in view file (myview/tmpl/default.php) without using the xml file fields.Is it possible ? If it is then how ?
请帮助
推荐答案
尝试一下,
$editor = JFactory::getEditor();
echo $editor->display('content', $this->content, '550', '400', '60', '20', false);
对于更多
在最新的Joomla版本中 J3.x [更新]
In Latest Joomla version J3.x [UPDATE]
您可以使用类似以下的内容,
you can use something like below,
jimport( 'joomla.html.editor' );
$editor = JEditor::getInstance(JFactory::getUser()->getParam("editor"));
echo $editor->display('content', $this->content, '550', '400', '60', '20', false);
这篇关于如何在自定义组件视图中添加joomla编辑器,但不使用XML表单字段?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!