From f690562f81951b9cf3c5910ae527623c821396e9 Mon Sep 17 00:00:00 2001
From: moodler
Date: Fri, 25 Oct 2002 06:50:40 +0000
Subject: [PATCH] Tweaks to mail formats so that unnecessary information
(replies, etc) is not printed.
---
mod/forum/lib.php | 26 +++++++++++++++++---------
1 file changed, 17 insertions(+), 9 deletions(-)
diff --git a/mod/forum/lib.php b/mod/forum/lib.php
index 4ddfe1cbb4e..8a9cd5b4f38 100644
--- a/mod/forum/lib.php
+++ b/mod/forum/lib.php
@@ -186,6 +186,7 @@ function forum_cron () {
$mailcount=0;
foreach ($users as $userto) {
$USER->lang = $userto->lang; // Affects the language of get_string
+ $canreply = forum_user_can_post($forum, $userto);
$by->name = "$userfrom->firstname $userfrom->lastname";
@@ -213,9 +214,11 @@ function forum_cron () {
$post->forum = $forum->id;
$posttext .= forum_print_attachments($post, "text");
}
- $posttext .= "---------------------------------------------------------------------\n";
- $posttext .= get_string("postmailinfo", "forum", $course->shortname)."\n";
- $posttext .= "$CFG->wwwroot/mod/forum/post.php?reply=$post->id\n";
+ if ($canreply) {
+ $posttext .= "---------------------------------------------------------------------\n";
+ $posttext .= get_string("postmailinfo", "forum", $course->shortname)."\n";
+ $posttext .= "$CFG->wwwroot/mod/forum/post.php?reply=$post->id\n";
+ }
if ($canunsubscribe) {
$posttext .= "\n---------------------------------------------------------------------\n";
$posttext .= get_string("unsubscribe", "forum");
@@ -232,7 +235,7 @@ function forum_cron () {
} else {
$posthtml .= " -> wwwroot/mod/forum/discuss.php?d=$discussion->id\">$discussion->name
";
}
- $posthtml .= forum_make_mail_post($post, $userfrom, $userto, $course, false, true, false, false);
+ $posthtml .= forum_make_mail_post($post, $userfrom, $userto, $course, false, $canreply, false, false);
if ($canunsubscribe) {
$posthtml .= "\n
wwwroot/mod/forum/subscribe.php?id=$forum->id\">".get_string("unsubscribe", "forum")."
";
@@ -1153,13 +1156,18 @@ function forum_user_can_post_discussion($forum) {
}
}
-function forum_user_can_post($forum) {
-// $forum is an object
- global $USER;
+function forum_user_can_post($forum, $user=NULL) {
+// $forum, $user are objects
+
+ if ($user) {
+ $isteacher = isteacher($forum->course, $user->id);
+ } else {
+ $isteacher = isteacher($forum->course);
+ }
if ($forum->type == "teacher") {
- return isteacher($forum->course);
- } else if (isteacher($forum->course)) {
+ return $isteacher;
+ } else if ($isteacher) {
return true;
} else {
return $forum->open;