0

我正在使用 joomla 2.5.7。我必须开发一个搜索插件来将它与 joomla 的内置搜索集成。需要从视频列表组件中搜索“标题”、“描述”。我在想类似 joomla 内置的“搜索 - 类别”、“搜索 - 内容”、“搜索 - 联系人”等。

我读过这个... http://docs.joomla.org/Creating_a_search_plugin,但我不确定有多少是最新的!

有什么建议么 ?!

谢谢!

4

1 回答 1

0

如果有人使用此http://docs.joomla.org/Creating_a_search_plugin教程...更改这些代码行...

$mainframe->registerEvent( 'onSearch', 'plgSearchnameofplugin' );
$mainframe->registerEvent( 'onSearchAreas', 'plgSearchnameofpluginAreas' );

用这些...

$mainframe = JFactory::getApplication();
$mainframe->registerEvent( 'onContentSearch', 'plgSearchnameofplugin' );
$mainframe->registerEvent( 'onContentSearchAreas', 'plgSearchnameofpluginAreas' );
于 2012-11-05T16:03:09.143 回答