如何在我的 helperform prestashop 中自定义文本编辑器

how to custom text editor in my helperform prestashop

如何在使用 helperform 生成表单时在我自己的 prestashop 模块中添加 tinymce 编辑器?

我有一个简单的 prestashop 模块,它在 displayhome 挂钩中显示一个简单的数据

使用简单的文本编辑器形成模块配置选项卡。

现在我想让这个textarea成为一个tinymce编辑器(但现在是简单的textarea)

我使用 heloperform class 生成了表格

定义 属性 'autoload_rte' => 'rte':

array(
    'type' => 'textarea',
    'label' => $this->l('Field label'),
    'name' => 'field_name',
    'cols' => 8,
    'rows' => 4,
    'autoload_rte' => 'rte'
),