Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 joomla 后端制作了自定义任务(JTOOLBARHELPER:custom)。我猜任务的最后一个动作是$app->redirect( 'index.php?option=com_uzklausos' );,因此所有搜索过滤器都设置为默认值。我怎样才能以其他方式做到这一点,所以所有搜索过滤器都会像我的自定义任务之前一样保持不变。顺便说一句,默认的 joomla 任务(垃圾,发布)没有这个问题。
$app->redirect( 'index.php?option=com_uzklausos' );
尝试添加 appendButton 链接类型而不是 JToolBarHelper::custom
$bar = JToolBar::getInstance('toolbar'); $bar->appendButton('Link', 'ICON', 'TEXT', 'URL');