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.
我想将用户 ID 作为带有菜单链接的过滤器传递,以从属于该用户的数据库对象列表中选择项目。如何将当前用户 ID 添加到菜单链接。我认为 xml 文件参数是静态的。他们不工作。
您不需要将用户 ID 添加到菜单链接(从安全角度考虑,这可能是一个非常糟糕的主意)。您可以在 Joomla! 的任何地方检索当前用户的用户 ID。
例如(您尚未指定您的 Joomla!版本,但对于 2.5,您可以通过这种方式获得)
$user = JFactory::getUser(); $userId = $user->get('id');