This entry was posted on Tuesday, April 1st, 2008 at 6:02 pm and is filed under Moodle, Plugins, eLearning.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
Thanks for improving the multimovie filter, but there are some errors in the regular expression that need fixing in order for it to work. The angle brackets need to be escaped with a backslash.
Assuming that the processing of this comment doesn’t muck things up, here is how the regular expression should look. (The sets of [[ and ]] need to look like \[\[ and \]\].)
[MDL-15242] Voicethread added to multimovie filter…
Julian Ridden added the capability to display voicethread.com contributions via the multivideo filter, but the version that he posted didn’t work since the angle brackets in the regular expression hadn’t been properly escaped. The version attached w…
April 2nd, 2008 at 5:49 am
Very useful, I think! Thanks for posting!
April 8th, 2008 at 9:51 pm
[...] A new VoiceThread filter for Moodle | The MoodleMan Blog (tags: Moodle) [...]
June 13th, 2008 at 1:28 am
Thanks for improving the multimovie filter, but there are some errors in the regular expression that need fixing in order for it to work. The angle brackets need to be escaped with a backslash.
Assuming that the processing of this comment doesn’t muck things up, here is how the regular expression should look. (The sets of [[ and ]] need to look like \[\[ and \]\].)
preg_match_all(’/\[\[mm:(youtube|google|teachertube|voicethread):(.*?)(\|(.*?))?\]\]/s’.$u, $text, $list_of_movies);
June 15th, 2008 at 1:37 am
[MDL-15242] Voicethread added to multimovie filter…
Julian Ridden added the capability to display voicethread.com contributions via the multivideo filter, but the version that he posted didn’t work since the angle brackets in the regular expression hadn’t been properly escaped. The version attached w…