父主题不在控制器模板prestashop中

时间:2017-11-06 19:54:27

标签: prestashop prestashop-1.7

您好我已经创建了一个控制器,我在其中设置模板。它是一个前端控制器。我得到的问题是在控制器中没有跟随父主题,而是我只是单独获得另一个页面本身,并且看起来它就像模板没有附加到模块。目前控制器只是基本的。我是初学者。我附上了控制器代码。我的tpl文件的代码也被添加。 I have attached an image to show the problem.我还没有在其他地方做过任何更改,只是通过链接调用module.php文件中的控制器。提前谢谢。

 //controller code

class ExperimentFirstPageModuleFrontController extends ModuleFrontController
{
public $ssl = true;

public function __construct()
{
    $this->bootstrap = true;
    parent::__construct();
    $this->context = Context::getContext();
}

public function initContent()
{
    parent::initContent();
    $this->context->smarty->assign(array());
    $this->setTemplate('module:experiment/views/templates/front/list.tpl');
}

public function setMedia()
{
    parent::setMedia();
    $this->addjQuery();
}
}

//tpl file
<h>hello</h>

0 个答案:

没有答案