1

我正在为 prestashop 1.5 开发,但找不到任何关于如何开发多语言表单的示例(甚至没有 prestashop 1.4 的旧文档)。我怎样才能实现这样的目标在此处输入图像描述

互联网上根本没有任何文档,目前对代码进行逆向工程太难了。

4

1 回答 1

0
Try adding **'lang' => 'true'** in your renderForm() function in your controller like the following code

     array(
    'type' => 'textarea',
    'label' => $this->l('Text'),
    'name' => 'text',
    'lang' => true
    ),

In your class in $definition array add this line : 

     'text' =>  array('type' => self::TYPE_HTML, 'lang' => true,'validate' => 'isCleanHtml'),

Finally, add the field in **lang table** of your module or existing table
于 2018-05-15T11:30:32.337 回答