我有一个样本:
plugins
--shopping
----jcomments
--------jcomment.php
--------jcomment.xml
在插件/购物/jcomments/jcomment.php
class plgShoppingJcomments extends JPlugin
function plgShoppingJcomments(&$subject, $config){
parent::__construct($subject, $config);
}
function onBeforeDisplayProductView(&$view) {
die('test');
}
}
我调用的组件 com_shopping 的 view.html.php
JPluginHelper::importPlugin('shopping');
$dispatcher =& JDispatcher::getInstance();
$dispatcher->trigger( 'onBeforeDisplayProductView', $view);
但是我运行代码是这个插件不显示结果(die(“test”)),如何修复这个插件