0

我正在构建一个支持网站的 CMS,该网站还包含一个 SMF 论坛 (2.0.11)。CMS 中的模块之一涉及跟踪出勤情况的“报告”。该数据被查询到 smf 之外的表,但在同一个数据库中。除了现在的功能之外,我还希望在 SMF 论坛的特定版块中发布包含格式化内容的帖子。由于所有帖子都包含在数据库中,这当然是可能的,但它似乎不仅仅是表中的一行。

把它放在最简单的代码中,下面是我在我的页面上单击提交时想要发生的事情。

$title = "2015-03-04 - Attendance";
$author = "KGrimes";
$body = "Attendance was good.";

$SQL = "INSERT INTO smf_some_table (title, author, body) VALUES ($title, $author, $body)";
$result = mysqli_query($db_handle, $SQL);

挖掘了 smf 数据库表以及 post() 和 post2() 函数后,发布帖子时似乎涉及多个表。以前有人概述过吗?

我已经研究了诸如自定义表单 Mod 之类的解决方案,但这些表单和模板并不是我想要的。我已经输入了数据并将其发布到变量中,我只需要正确的表将其插入,以便它出现在论坛上。

预先感谢您的任何帮助!

4

1 回答 1

2

来源:http ://www.simplemachines.org/community/index.php?topic=542521.0

您要在其中创建帖子的代码:

                    //Define variables
                    //msgOptions
                    $smf_subject = "Test Title";

                    //Handle & escape
                    $smf_subject = htmlspecialchars($smf_subject);
                    $smf_subject = quote_smart($smf_subject, $db_handle);

                    $smf_body = "This is a test.";

                    //Handle & escape
                    $smf_body = htmlspecialchars($smf_body);
                    $smf_body = quote_smart($smf_body, $db_handle);

                    //topicOptions
                    $smf_board = 54; //Any board id, found in URL

                    //posterOptions
                    $smf_id = 6; //any id, this is found as ID in memberlist

                    //SMF Post function
                    require_once('../../forums/SSI.php');
                    require_once('../../forums/Sources/Subs-Post.php');

                    //createPost($msgOptions, $topicOptions, $posterOptions);
                    // Create a post, either as new topic (id_topic = 0) or in an existing one.
                    // The input parameters of this function assume:
                    // - Strings have been escaped.
                    // - Integers have been cast to integer.
                    // - Mandatory parameters are set.

                    // Collect all parameters for the creation or modification of a post.
                    $msgOptions = array(
                        'subject' => $smf_subject,
                        'body' => $smf_body,
                        //'smileys_enabled' => !isset($_POST['ns']),
                    );
                    $topicOptions = array(
                        //'id' => empty($topic) ? 0 : $topic,
                        'board' => $smf_board,
                        'mark_as_read' => true,
                    );
                    $posterOptions = array(
                        'id' => $smf_id,
                    );

                    //Execute SMF post
                    createPost($msgOptions, $topicOptions, $posterOptions);

这将创建最简单的帖子,其标题和正文由您定义,以及位置和作者是谁。更多参数可以在createPost的 SMF 函数数据库中找到。包含的 SSI 和 Subs-Post.php 必须直接是原始文件,复制它们并不能解决问题。

于 2016-01-09T02:47:15.730 回答