$this->partial('partials/header');
phalcon单模块的此功能。
我可以为这个多模块做些什么。 无法为此模块设计工作。 我想在多模块设计中使用。
$this->partial('partials/header');
请告诉我
module1/
views/
about/ <- AboutController
index/ <- IndexController
index.phtml
module2/
views/
about/ <- AboutController
index/ <- IndexController
index.phtml
module3/
views/
about/ <- AboutController
index/ <- IndexController
index.phtml
partials/ <- ()Store partials
header.phtml
footer.phtml
答案 0 :(得分:2)
回到几个目录。例如,如果要在module1中包含module3中的header.phtml(可能需要修改路径):
$this->partial('../../module3/views/partials/header');
答案 1 :(得分:1)
最好创建将在每个模块中使用的单独视图目录。添加它以查看compomnent,然后您不需要转到此目录。