summaryrefslogtreecommitdiff
path: root/modules/forum.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2001-04-29 10:03:21 +0000
committerDries Buytaert <dries@buytaert.net>2001-04-29 10:03:21 +0000
commit828f36cdf1ebbf2580eb00fdfbf55701e4f86156 (patch)
tree58ee8ca1b2c9c399ac474e419d2fc98e3cb1b160 /modules/forum.module
parent95f92686e492f48cc230bb5f4a83568bce66e0b8 (diff)
downloadbrdo-828f36cdf1ebbf2580eb00fdfbf55701e4f86156.tar.gz
brdo-828f36cdf1ebbf2580eb00fdfbf55701e4f86156.tar.bz2
- Addition: added a new, tiny forum module: I will use this forum
module to develop and test the permission system along with the regular nodes. And hopefully, this forum module will grow into a very useable piece of code for drop.org. Requires a new SQL table "forum", see 2.00-to-x.xx.sql. - Removed 1 unused hook from page.module. - Removed 1 unused function from comment.inc.
Diffstat (limited to 'modules/forum.module')
-rw-r--r--modules/forum.module97
1 files changed, 97 insertions, 0 deletions
diff --git a/modules/forum.module b/modules/forum.module
new file mode 100644
index 000000000..e5500f7a5
--- /dev/null
+++ b/modules/forum.module
@@ -0,0 +1,97 @@
+<?php
+
+$module = array("type" => "forum_type",
+ "page" => "forum_page",
+ "admin" => "forum_admin");
+
+$format = array(0 => HTML, 1 => PHP, 2 => text);
+
+function forum_type() {
+ return array("forum", "forum");
+}
+
+function forum_status() {
+ return array(dumped, posted);
+}
+
+function forum_form($edit = array()) {
+ global $format;
+
+ $output .= "<FORM ACTION=\"admin.php?mod=forum\" METHOD=\"post\">\n";
+
+ $output .= "<B>Subject:</B><BR>\n";
+ $output .= "<INPUT NAME=\"edit[title]\" SIZE=\"55\" VALUE=\"". check_textfield($edit[title]) ."\"><P>\n";
+
+ $output .= structure_form("forum", $edit);
+
+ $output .= "<B>Body:</B><BR>\n";
+ $output .= "<TEXTAREA NAME=\"edit[body]\" COLS=\"55\" ROWS=\"10\" WRAP=\"virtual\">". check_textarea($edit[body]) ."</TEXTAREA><P>\n";
+
+ $output .= "<INPUT TYPE=\"hidden\" NAME=\"edit[nid]\" VALUE=\"$edit[nid]\">\n";
+
+ $output .= "<INPUT TYPE=\"submit\" NAME=\"op\" VALUE=\"Save forum\">\n";
+ $output .= "</FORM>\n";
+
+ return $output;
+}
+
+function forum_save($edit) {
+ global $status;
+ node_save(array_merge($edit, array(type => "forum", status => $status[posted])));
+}
+
+function forum_num_comments($nid) {
+ $value = db_fetch_object(db_query("SELECT COUNT(cid) AS count FROM comments WHERE lid = '$nid' AND pid != 0"));
+ return ($value) ? $value->count : 0;
+}
+
+function forum_last_comment($nid) {
+ $value = db_fetch_object(db_query("SELECT timestamp FROM comments WHERE lid = '$nid' ORDER BY timestamp DESC LIMIT 1"));
+ return ($value) ? format_date($value->timestamp, "small") : "&nbsp;";
+}
+
+function forum_page() {
+ global $theme;
+
+ $result = db_query("SELECT nid FROM node WHERE type = 'forum' ORDER BY title");
+
+ $output .= "<TABLE BORDER=\"0\" CELLSPACING=\"4\" CELLPADDING=\"4\">\n";
+ $output .= " <TR><TH>". t("Forum") ."</TH><TH>". t("Comments") ."</TH><TH>". t("Last comment") ."</TH></TR>";
+ while ($node = db_fetch_object($result)) {
+ $node = node_get_object("nid", $node->nid);
+ $output .= " <TR><TD><A HREF=\"node.php?id=$node->nid\">". check_output($node->title) ."</A><BR><SMALL>". check_output($node->body, 1) ."</SMALL></TD><TD ALIGN=\"center\">". forum_num_comments($node->nid) ."</TD><TD ALIGN=\"center\">". forum_last_comment($node->nid) ."</TD></TR>";
+ }
+ $output .= "</TABLE>\n";
+
+ $theme->header();
+ $theme->box(t("Discussion forum"), $output);
+ $theme->footer();
+}
+
+function forum_overview() {
+ return node_overview(array(0, "WHERE n.type = 'forum' ORDER BY n.title"));
+}
+
+function forum_admin() {
+ global $id, $op, $edit, $type;
+
+ print "<SMALL><A HREF=\"admin.php?mod=forum&op=add\">add new forum</A> | <A HREF=\"admin.php?mod=forum\">overview</A></SMALL><HR>\n";
+
+ $type = ($type ? $type : 0);
+
+ switch ($op) {
+ case "add":
+ print forum_form();
+ break;
+ case "edit":
+ print forum_form(node_get_array(nid, $id));
+ break;
+ case "Save forum":
+ print status(forum_save($edit));
+ // fall through:
+ default:
+ print forum_overview();
+ }
+}
+
+?> \ No newline at end of file