Öncelikle, editörünü config bölümüne yüklemek için, bunu herhangi bir düzen dosyasına ekleyin:
<adminhtml_system_config_edit>
<update handle="editor"/>
<reference name="head">
<action method="setCanLoadTinyMce"><load>1</load></action>
</reference>
</adminhtml_system_config_edit>
Şimdi kendi alan oluşturucunuzu oluşturun. Modülünüzün içinde bir blok olmalı:
<?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);
}
}
Şimdi system.xml içindeki öğe için frontend_type 'editor' ve frontend_model 'i yeni bloğunuzu ayarlayın
<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>
Config kapsamını bir web sitesine veya mağaza görünümüne değiştirirken bazı sorunlar var. Textarea 'engelli' olmaz. Ancak bunu görmezden gelirseniz, problemsiz kullanabilirsiniz.