Prestashop覆盖管理模板

时间:2014-10-13 10:11:28

标签: php prestashop-1.5

我有代码(对于prestashop 1.5):

class AdminTestController extends AdminController
{
    public $identifier = 'id_test';
    function __construct() {
        parent::__construct();
        $this->table = 'test';
        $this->className = 'test';

        /*$this->fields_list = array(
        'id_test' => array('title' => $this->l('ID'), 'align' => 'center', 'width' => 25),
        'content' => array('title' => $this->l('Test'), 'width' => 'auto')
        );*/

        $this->fields_options = array(
                    'general' => array(
                    'title' =>  $this->l(''),
                    'icon' =>   'tab-preferences',
                    'fields' => array(
                            'TEST' =>  array(
                            'type' => 'textarea',
                            'label' => $this->l('TEST'),
                            'title' => $this->l('TEST'),
                            'name' => 'test',
                            'autoload_rte' => true,
                            'lang' => true,
                            'rows' => 15,
                            'cols' => 70,
                            //'hint' => $this->l('Invalid    characters:').' <>;=#{}'
                            )
                    ),
                    'submit' => array(
                                'title' => $this->l('Save'),
                                'class' => 'button'
                            )       
                    )
                );
    }
}

我想将tinyMCE附加到我的textarea.I需要覆盖一个模板,但我找不到一个。

我试过了:

模板/控制器/测试/列表/ list.tpl 模板/控制器/测试/ form.form.tpl

如何覆盖控制器的模板?

1 个答案:

答案 0 :(得分:0)

仅供参考。我重写了option / option.tpl;现在它有效。