从类别博客视图(joomla)调用插件onContentPrepare

时间:2014-10-25 22:12:09

标签: joomla field categories

我在文章中找到了关于如何实现自定义字段的页面:

http://docs.joomla.org/Adding_custom_fields_to_the_article_component

并且效果很好,但仅限于article视图。

我应该怎么做,让它在每篇文章中显示自定义字段时 在category blog视图?

我尝试添加:

$dispatcher = JDispatcher::getInstance();
JPluginHelper::importPlugin('content', 'plg_content_rating');
$results = $dispatcher->trigger('onContentPrepare',
    array('com_content.category', & $this->item, & $this->item->params, 0));

到我的category blog覆盖文件,但是没有用。

同样在components/com_content/views/category/view.html.php档案中, 有这样一条线:

$results = $dispatcher->trigger('onContentPrepare',
    array ('com_content.category', &$item, &$this->params, 0));

那不应该已经触发所有已注册的内容插件吗?

article's view.html.php文件中的类似行很适合 目的

0 个答案:

没有答案