Open Forum
Maintained by
Open LMS Development
Open forum are designed to increase engagement and provide a responsive, modern alternative to standard Moodle forums.
Comments
Comments are no longer open for new posts. Existing comments remain available to read.
@Jo - I highly recommend an updated version of Moodle 2.6 for security and critical bug fixes. Regardless, AvF should work just fine with Moodle 2.6.2. The reason we require 2.6.3 is because that is the version our QA testing is performed against. I don't anticipate any problems specific to 2.6.2, and if you'd like to use that version you simply need to change the requirement in mod/hsuforum/version.php
Is there a time frame for releasing a 2.7 version?
Regarding the rest of your comment, please realize that we maintain Advanced Forums within our Joule development cycles, which is tied to the corresponding Moodle 2.X.3 release for stability reasons and is roughly 6 months behind the latest-and-greatest version of Core Moodle. When issues arise with a new version of Moodle it can take longer for the plug-in to go through our internal QA cycles. We have no plans to stop maintaining Advanced Forums unless Core decides to fully integrate the features within Moodle (see https://tracker.moodle.org/browse/MDL-39707).
In addition, we have updated the Moodle 2.5 version of Advanced Forums, which fixes a bug that can allow instructors to see the identity of an anonymous poster in certain cases.
Moodle 2.7 has been released, so I'm very surprised Moodlerooms has not maintained this plugin. That is not a good reflection on the company.
@Marc - the module hasn't been upgraded to support Moodle 2.6 yet, so it's not surprising that there are some problems. If you're not able to wait for us to upgrade the module and are feeling adventurous, you could port the changes made to mod/forum in between Moodle 2.5.3 and 2.6.1 into mod/hsuforum.
I would like to base the activity completion to the number of posts that are flagged as "substantive".
The Activity completion API (http://docs.moodle.org/dev/Activity_completion_API) is really helpful for this little customization. The only thing I really stumble over is how to call the update_state() function each time a flag is toggled.
Do you have any idea, where to put this:
// Update completion state
$completion=new completion_info($course);
if($completion->is_enabled($cm) && $forum->completionposts) {
$completion->update_state($cm,COMPLETION_COMPLETE);
}
Many thanks,
Fritz