phpBB:用于自动发布论坛帖子和私人消息的PHP代码

时间:2010-10-17 09:09:03

标签: phpbb phpbb3

我有一个phpBB论坛,想写一个外部类,可以用来向论坛的一些用户发送私信。

此外,我想自动执行在论坛上发送帖子的过程,因为其中可以包含一些自动通知。

有些事情:

PhpbbControl::sendPM(Integer $from_user, Array $to_users, String $content);
// ^ sends a new private message, returns false on failure

PhpbbControl::newPost(Integer $forum_id, Integer $from_user, String $content);
// ^ creates a new post on a given forum, returns false on failure

提供的任何想法或已知的MOD?

由于

1 个答案:

答案 0 :(得分:1)

在我写的MOD中,我需要发送PM。 Dualfusion(另一个phpBB MODder),写了一个函数来做到这一点。你可以找到它Here(第48-147行)。

我对newPost函数没有任何了解(我刚刚离开了MODding场景),但是编写一个函数应该不会太难。您可以在PM功能上对其进行建模,并找出需要编辑的表格。