Drupal 将内容配置文件用户视为参数
我有一个普通的 Drupal 用户。我已使用 content_profile 模块创建配置文件内容类型。此内容类型包含对另一个内容类型公司的节点引用。然后,公司节点引用一种称为“任务”的节点类型。
我想创建一个视图,列出给定用户 ID 的所有任务。 所以我想我会创建一个带有用户 id 参数的视图。然后,我将添加与个人资料和公司的关系并输出任务标题。
使用的用户 ID 似乎适用于创建的使用 ID,而不是它所引用的内容配置文件的用户 ID。在我们的系统中,“管理员”用户创建配置文件,因此会导致一些问题。
有什么想法吗?我觉得我可能需要编写一个自定义模块来完成我想要的事情。
I have a normal Drupal User. I have used the content_profile module to create a profile content type. This content type contains a node reference to another content type company. The company node then references a type of node called Task.
I want to create a view that list all the tasks for a given user id.
So I imagine I would create a view with an argument of user id. Then I would add the relationship to the profile and the company and output the Task title.
The user id used seems to work on the created used ID and not the user id of the content profile that it is referencing. In our system the "admin" user creates the profiles so it causing some problems.
Any ideas? I feel I may need to write a custom module to do what I want.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我过去回答过一个类似的问题,关于如何使用部分 url 作为参数来创建视图,以通过用户配置文件过滤视图。查看此网址。您正在寻找的答案可能是我最初的答案的一个变体。
另外,您如何创建这些配置文件?在我的一个网站上,当我创建个人资料页面时,其作者 ID 会自动更改为其关联的用户。
i have answered a similar question in the past about how to create a view using part of the url as an argument to filter the view by the user profile. check out this url. the answer you are looking for may be a variation of my original response.
also, how are you creating those profiles? on one of my sites, when i created the profile page, its author ID is automatically changed to the user it is associated with.