0

我有一个内容类型,我希望每天为某个角色的每个活动用户创建一个节点。
该节点应该由特定用户“创建”,因此他们可以在登录时对其进行编辑。

我尝试使用规则模块,但首先,我找不到看起来有效的“对事件做出反应”。
其次,如果我只是使用“执行 Cron 维护任务”之类的事件,那么这些操作和条件似乎无法完成我想要的操作。

4

1 回答 1

0

You could create a module implementing hook_cron. In this hook you would have to get all users, check if they have a specific role, and then create a new node for each user.

I do not know any solution which does not involve creating a custom module. Hope it helps.

于 2015-04-07T08:18:31.930 回答