我想在Magento系统配置中添加所见即所得的编辑器。
并从该选项中获取值来执行此操作。
干杯。
我从这篇文章中找到了答案。感谢马吕斯给出这个答案。
首先,在任何布局文件中添加它,以在配置部分中加载编辑器:
<adminhtml_system_config_edit>
<update handle="editor"/>
<reference name="head">
<action method="setCanLoadTinyMce"><load>1</load></action>
</reference>
</adminhtml_system_config_edit>
现在创建自己的字段渲染器。它必须是模块中的一个块:
<?php
class Namespace_Module_Block_Adminhtml_System_Config_Editor extends Mage_Adminhtml_Block_System_Config_Form_Field implements Varien_Data_Form_Element_Renderer_Interface{
protected function _getElementHtml(Varien_Data_Form_Element_Abstract $element){
$element->setWysiwyg(true);
$element->setConfig(Mage::getSingleton('cms/wysiwyg_config')->getConfig());
return parent::_getElementHtml($element);
}
}
现在对于系统内的元素.xml设置frontend_type"编辑器"和新块frontend_model
<fieldname translate="label">
<label>Field label </label>
<frontend_type>editor</frontend_type>
<frontend_model>module/adminhtml_system_config_editor</frontend_model>
<sort_order>150</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store>
</fieldname>
将配置范围更改为网站或商店视图时存在一些问题。文本区域不会变为"禁用"。但是,如果您可以忽略这一点,则可以毫无问题地使用它。
你需要做的是添加一个所见即所得的编辑器及其适当的adminhtml控制器。在此之后,您可以为您指定的每个配置字段加载编辑器。
尝试阅读本文。这是如何添加编辑器的分步指南。