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

时间:2017-09-03 14:24:05

标签: php module prestashop

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

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

表单模块配置选项卡,带有简单的文本编辑器。

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

我使用heloperform类

生成了表单

1 个答案:

答案 0 :(得分:1)

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

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