因此,已知的解决方案似乎不再适用于 1.9+,所以我制作了一个替代方案,它添加了所见即所得,但使用了替代编辑器。
我使用了这个编辑器:
https://alex-d.github.io/Trumbowyg/
最终结果如下:
步骤 1:在 adminhtml 皮肤区下载编辑器文件和速度:
在我的例子中,我把它们放在skin/adminhtml/default/js/wysiwyg
第 2 步:在您的模块中,您需要定义管理布局更新,并在您的 adminhtml 布局文件中,添加指令以加载库文件(和 jquery)
由于我希望它只出现 n CMS 页面编辑,我通过适当的句柄添加:
<adminhtml_cms_page_edit>
<reference name="head">
<action method="addJs">
<script>lib/jquery/jquery-1.12.0.js</script>
</action>
<action method="addJs">
<script>lib/jquery/noconflict.js</script>
</action>
<action method="addItem"><type>skin_js</type><name>js/wysiwyg/trumbowyg.min.js</name></action>
<action method="addItem"><type>skin_css</type><name>js/wysiwyg/ui/trumbowyg.min.css</name></action>
</reference>
</adminhtml_cms_page_edit>
第 3 步:创建一个新的小部件类来呈现元素:
在我的示例中,我将这是一个模块放在 BLOCKS 下
基本上,这需要小部件 xml 定义的元素,并将其转换为一个textarea
元素,然后附加所需的 javascript (jquery) 以初始化所见即所得编辑器。
您将看到传递给编辑器的选项,在 $options 中定义
<?php
class ProxiBlue_Landingpage_Block_Widgets_Wysiwyg extends Mage_Adminhtml_Block_Widget_Form_Renderer_Fieldset_Element
{
public function render(Varien_Data_Form_Element_Abstract $element)
{
$textarea = new Varien_Data_Form_Element_Textarea();
$textarea->setForm($element->getForm())
->setId($element->getHtmlId())
->setName($element->getName())
->setLabel($element->getLabel())
->setClass('widget-option input-area input-text');
if ($element->getRequired()) {
$textarea->addClass('required-entry');
}
if ($element->getValue()) {
$textarea->setValue($element->getValue());
}
$options = "btns: ['viewHTML', 'strong', 'em', 'del', 'undo', 'redo', 'formatting', 'superscript', 'subscript', 'justifyLeft', 'justifyCenter', 'justifyRight', 'justifyFull', 'unorderedList', 'orderedList', 'horizontalRule', 'fullscreen'],
semantic: true,
removeformatPasted: true,
autogrow: false";
$textarea->setData('after_element_html',
"<script>jQuery(document).ready(
function() {
jQuery(" . $element->getHtmlId() .").trumbowyg({ " . $options . " })
.on('tbwblur', function(){
var html = jQuery(this).trumbowyg('html');
html = html.replace(/\"/g, '"');
jQuery(this).trumbowyg('html', html);
});
});</script>");
$html = parent::render($textarea);
return $html;
}
}
在那里你可能还会注意到这个片段:
.on('tbwblur', function(){
var html = jQuery(this).trumbowyg('html');
html = html.replace(/\"/g, '"');
jQuery(this).trumbowyg('html', html);
});
此处的目的是将任何双引号 (") 更改为正确的 html 实体,"
这是为了防止将文本数据存储在用双引号括起来的小部件参数中。
第 4 步:定义小部件元素:
<text_blurb translate="label">
<sort_order>50</sort_order>
<label>Textual Content</label>
<visible>1</visible>
<required>1</required>
<type>landingpage/widgets_wysiwyg</type>
</text_blurb>
完毕。
希望这对某人有用。