问题:如何在插件中启用我的组件&#39> router.php 中的路由?
我正在使用自定义插件,该插件会从默认用户配置文件重定向路由:
index.php?option=com_users&view=profile (SEF: /component/users/profile)
到我自己的组件,我有其他设置
index.php?option=com_mycomponent&view=profile (SEF: /alias/profile)
我的前端插件:
class plgSystemMyPlugin extends JPlugin
{
// constructor
function plgSystemMyPlugin( &$subject, $params ) {
parent::__construct( $subject, $params );
}
// run after the framework has loaded and the application initialize method has been called
function onAfterInitialise() {
// when component users and view profile are called
if( isset($_GET['option'], $_GET['view'])
&& $_GET['option'] == 'com_users'
&& $_GET['view'] == 'profile' )
{
$route = JRoute::_('index.php?option=com_mycomponent&view=profile' );
JFactory::getApplication()->redirect($route, null, null, true);
}
}
}
在我的组件中,所有链接都正确路由,即:
插件中的index.php?option = com_mycomponent& view = profile =>的 /别名 /简档
JRoute将其翻译如下:
index.php?option = com_mycomponent& view = profile =>的 /组件/ myComponent的 /简档
无法使用:
答案 0 :(得分:1)
在插件xml文件中,您应该添加新参数,以便您选择所需的Itemid(menuitem) 所以看起来应该是这样的
<param name="menuitem" name="my_itemid" title="Target Itemid" description=""/>
然后,您需要从管理员区域中的插件参数中选择所需的具有所需别名的menuitem 然后在插件本身就这样使用:
$route = JRoute::_('index.php?Itemid='.$this->params->get('my_itemid') );
这也是有效的
$route = JRoute::_('index.php?option=com_mycomponent&view=profile&Itemid='.$this->params->get('my_itemid') );