我试图通过自己的插件扩展模板frontend/home/index.tpl
。
这是我的根文件:
<?php
namespace TdevExtend;
use Shopware\Components\Plugin;
class TdevExtend extends Plugin
{
public static function getSubscribedEvents(){
return [
'Enlight_Controller_Dispatcher_ControllerPath_Frontend_MyPlugin' =>
'onDetailPostDispatch'
];
}
public function onDetailPostDispatch(\Enlight_Event_EventArgs $args)
{
$this->container->get('template')->addTemplateDir(
$this->getPath() . '/Resources/views/'
);
return __DIR__ . '/Controllers/Frontend/MyPlugin.php';
}
}
?>
以下是目录控制器\前端中的控制器 MyPlugin.php
public function preDispatch()
{
/** @var \Shopware\Components\Plugin $plugin */
$plugin = $this->get('kernel')->getPlugins()['TdevProductTab'];
$this->get('template')->addTemplateDir($plugin->getPath() . '/Resources/views/');
}
和Resources \ views \ frontend \ home \
文件夹中的模板 {extends file="parent:frontend/home/index.tpl"}
{block name='frontend_index_content'}
<div class="">Hello world!</div>
{$smarty.block.parent}
{/block}
我已阅读official documentation并研究了插件示例plugins examples
在后端安装/重新安装插件crear缓存并删除var/cache
中的manualy文件夹后。但没有任何帮助我。
答案 0 :(得分:1)
您可能希望在getSubscribedEvents中使用事件Enlight_Controller_Action_PostDispatchSecure_Frontend_Index
而不是Enlight_Controller_Dispatcher_ControllerPath_Frontend_MyPlugin
。
您正在使用活动Enlight_Controller_Dispatcher_ControllerPath_Frontend_MyPlugin
。寻找控制器MyPlugin
时,Shopware将创建此事件。因此,在使用此事件时,您需要编写自己的Controller。但我想你想要的是上面提到的事件。实际上你不需要写控制器。
<?php
namespace TdevExtend;
use Shopware\Components\Plugin;
class TdevExtend extends Plugin
{
public static function getSubscribedEvents(){
return [
'Enlight_Controller_Action_PostDispatchSecure_Frontend_Index' =>
'onPostDispatch'
];
}
public function onPostDispatch(\Enlight_Event_EventArgs $args)
{
$this->container->get('Template')->addTemplateDir(
$this->getPath() . '/Resources/views/'
);
}
}
?>