Prestashop模块多语言形式

Prestashop模块多语言形式,prestashop,Prestashop,我正在为prestashop 1.5开发,找不到任何关于如何开发多语言表单的示例(甚至找不到prestashop 1.4的旧文档)。我怎样才能做到这一点 互联网上没有任何文档,目前对代码进行反向工程太难了。这并不是你想要的,但你可以从那里开始 Try adding **'lang' => 'true'** in your renderForm() function in your controller like the following code array( 'ty

我正在为prestashop 1.5开发,找不到任何关于如何开发多语言表单的示例(甚至找不到prestashop 1.4的旧文档)。我怎样才能做到这一点


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

这并不是你想要的,但你可以从那里开始
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