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.
我想以编程方式获取与特定用户相关的私人消息(由Privatemsg 模块提供)。
我怎样才能做到这一点?
私人消息是实体,因此您可以使用entity_load()它们按条件加载它们......或使用私人消息模块本身提供的包装器:
entity_load()
$messages = privatemsg_message_load_multiple(array(), array('author' => $uid));
这将获得由 标识的用户创建的所有消息$uid。
$uid