Drupal 5:标记模块 - 在块中显示用户标记的项目

发布于 2024-07-21 14:14:03 字数 585 浏览 4 评论 0原文

我的目标是获取一个块中当前用户标记的项目的列表,我可以在我的node.tpl.php中使用它所需的功能是产品的“比较列表”。

任何有D5<中flag module经验的人都可以吗? /strong> 为我指明正确的方向? 我本质上希望能够说:

<?php print $all_current_user_flags ?>

是否有一个预定义的函数,或者我必须手动将其从数据库中取出? 我还没有在文档中找到太多关于此的信息,我是否有点困惑是最好的行动方案。

提前致谢。

编辑:对于仍在阅读本文的任何人,我已转到会话收藏夹 模块,因为它允许匿名用户构建收藏夹列表。

I am aiming to get a list of the current user's flagged items in a block which I can use in my node.tpl.php The functionality required is a "comparison list" of products.

Can anyone with experience of the flag module in D5 point me in the right direction? I essentially want to be able to say:

<?php print $all_current_user_flags ?>

Is there a predefined function for this or will I have to get it out of the database manually? I haven't managed to find much in the documentation about this, and am I bit stuck as to what is the best course of action.

Thanks in advance.

Edit: to anyone still reading this, I've moved over to the session favourites module as it lets anonymous users build a list of favourites.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葬花如无物 2024-07-28 14:14:03

有效:

<h3>Comparison List</h3>
<?php print views_build_view('page',views_get_view('flag_bookmarks'),$args,true,10,$page); ?>

This works:

<h3>Comparison List</h3>
<?php print views_build_view('page',views_get_view('flag_bookmarks'),$args,true,10,$page); ?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文