我正在使用joomla 2.5.7。 我必须开发一个搜索插件,将它与joomla的内置搜索集成。 需要从视频列表组件中搜索“标题”,“描述”。 我在想像joomla的内置“搜索 - 类别”,“搜索 - 内容”,“搜索 - 联系人”等< / p>
我已经阅读了这个... http://docs.joomla.org/Creating_a_search_plugin,但我不确定最新版本是多少!
有什么建议吗?!
谢谢!
答案 0 :(得分: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' );