错误插件不能在joomla 2.5中运行?

时间:2012-07-07 12:14:42

标签: joomla joomla2.5

我有一个样本:

plugins
--shopping
  ----jcomments
  --------jcomment.php
  --------jcomment.xml

in plugins / shopping / 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”)),如何修复这个插件

1 个答案:

答案 0 :(得分:0)

试试这个...... $ dispatcher->触发器('onBeforeDisplayProductView',array($ view)); (我只有60%确定这会起作用:D)