En primer lugar, agregue esto en cualquier archivo de diseño, para cargar el editor en la sección de configuración:
<adminhtml_system_config_edit>
<update handle="editor"/>
<reference name="head">
<action method="setCanLoadTinyMce"><load>1</load></action>
</reference>
</adminhtml_system_config_edit>
Ahora crea tu propio renderizador de campo. Tiene que ser un bloque dentro de su módulo:
<?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);
}
}
Ahora para el elemento dentro de system.xml, configure el frontend_type 'editor' y el frontend_model su nuevo bloque
<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>
Hay algunos problemas al cambiar el ámbito de configuración a un sitio web o una vista de tienda. El área de texto no se 'deshabilita'. Pero si puede ignorar esto, puede usarlo sin ningún problema.