Joomla MVC允许我们为扩展/模板使用不同的视图
我可以用这个
JRequest::setVar('tmpl','component');
在我的index.php文件中重新路由来自component.php的html呈现而不是index.php
它工作正常,但我想做点别的事, 我想通过使用不同的文件夹而不是template / template_name /文件夹中的文件来覆盖渲染,例如
plugins / myplugin / myview.php,有人知道吗?
有点这个
JRequest::setVar('plugins/myplugin/','myview');