
Products such as phpBB do this type of thing and I was wondering if the architecture of Moodle precludes it or if it could someday be a possiblilty? Just wondering .....
>Is there any potential way to have Moodle somehow flag those forums that contain >postings that have been unread by that particular user?
Having used this functionality in firstclass I also miss it in moodle. Also, am I alone in not liking the email from forum function? Maybe its working with FC for 3 years but I'd prefer to see unread forums flagged in some way and be able to turn the email function off completely (is this possible and I've missed how to do it?)
If I knew any php I'd offer to get into the code and have a go but I'm afraid I don't...
Richard
Richard, one possibility is to run a postnuke site with the phpBB for postnuke and embed Moodle with the pnMoodle mod. I have thought of this, but don't want to mess around with the added complexity of two products trying to work together, plus I think the Moodle forums are simpler and actually nicer.
I guess that would be a solution but, as you say, at what cost in bugs? .
I also do not know much about php, but I am trying to learn. I was a programmer for many years, so I know I can learn it and Moodle, but it is really difficult to teach full-time, run my Moodle site, and try and learn php/Moodle in the 10-15 minutes of "learning time" I get every now and then. I would really like to do more of my own mods plus be able to give back something to the wonderful community that has grown up around Moodle.
I know what you mean. Having seen the mess many people were making with multimedia I taught myself Flash and Actionscript last year, it was fun and I've done some cool stuff but looking back and knowing about various open source projects as well as moodle learning php would have been possibly more useful.
As a side note, I find it very interesting that "out of the box" Moodle meets about 95% of my online teaching needs. I used to use WebCT which met only about 75% of my online teaching needs. WebCT is certainly not a bad product, but I find it quite ironic that one man (Martin, of course) can better relate to the needs of teachers teaching online than a huge outfit like WebCT (plus look at the price differential - $0 versus $mega-bucks)
I'm currently having to work with the UKeU platform, part of a UK government funded project. They've been at it 5 years and haven't come up with most of the features in moodle (although to be fair to them they've had to invent an online registration system as well). Not sure what slice of funding went to development but they started out with £60 million.
I came across moodle while researching postNuke, it seemed to me that developments like WebCT, BB, FirstClass were incredibly expensive for what you got and that something like postNuke could be customised to be close to a LMS: I thought I'd have a go at building one. Of course, I discovered Martin had produced moodle and was 4 years ahead of me with a better training in computer systems and pedagogy!
I have heard the term 'guerrilla course' used to describe a course developed outside the usual rules of an institution - I guess this is what you are doing, good luck with it!
Richard
I've attached a file containing code for the 'forum_count_unread_replies' function that can be included in your 'forum/lib.php' (or local version, if you have one). This returns an array of discussions with counts of 'unread' posts (or replies). The unread count is determined from the last time the user read that discussion as stored in the Moodle log file compared with the last time that discussion was updated.
I use it in conjunction with the existing 'forum_count_discussion_replies' function to show the number of unread replies over the number of total replies on the forum view main screen.
The next post shows how I have used it. What I do is replace the 'Replies' column data with two numbers: unread / total (see next post). So the user can quickly see how many replies in each discussion they have yet to read.
Anyway, here is the code.
mike
Here is a screen shot of that code in use. I have circled the column in question.
mike
Hi any chance to get this in the "official" version, its very helpfull!
Peter