From: gustav_delius Date: Sat, 21 Aug 2004 16:26:51 +0000 (+0000) Subject: improved documentation for wiki types X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=713e7568def98bda4ffd78752fb8c44129bac239;p=moodle.git improved documentation for wiki types --- diff --git a/lang/en/help/wiki/wikitype.html b/lang/en/help/wiki/wikitype.html index 7c624bfd57..e0e676ab21 100644 --- a/lang/en/help/wiki/wikitype.html +++ b/lang/en/help/wiki/wikitype.html @@ -1,13 +1,9 @@ -

Allow students to contribute to the wiki

+

Wiki types

-

+There are three wiki types: Teacher, Groups, Student. In addition, +like any activity, the wiki has the Moodle group modes: "No Groups" "Separate Groups" and "Visible Groups". -There is now a matrice: +This leads to the following matrix of nine possibilities: @@ -17,23 +13,28 @@ There is now a matrice: - - - + + + - - - - + + + + - - - + + +
TeacherTeacher creates and changes the wiki. Students can read the contents.There is a wiki for every group which just the teacher can change. Every student just sees the wiki of his group.There is a Wik for every group which just the teacher can change. The students can see all wikis, choseable by a Drop-Down box which contains all groups.There is only one wiki which only the teacher can edit. Students can view the contents.There is one wiki for every group which just the teacher can edit. Students can view the wiki of their group only.There is one wiki for every group which just the teacher can edit. Students can view the wikis for all groups.
Course/GroupTeacher and user can create and change the wiki.Students can change and see the wiki of their own group.Students can change the wiki of their own group. They can see all wikis, choseable by a Drop-Down box which contains all groups.GroupsThere is only one wiki. The teacher and all students can view and edit this wiki.There is one wiki per group. Students can view and edit the wiki of their own group only.There is one wiki per group. Students can change the wiki of their own group only. They can view the wikis for all groups.
StudentEvery student sees and can change his own wiki.Every student can change his own wiki, and sees all other wikis of the students in his group, choseable by a Drop-Down box which contains all students of his group.Every student can change his own wiki, and sees all other wikis, choseable by a Drop-Down box which contains all students.Every student has their own wiki which only they and their teacher can view and edit.Every student has their own wiki, which only they and their teacher can edit. Students can view the wikis of other students in their group.Every student has their own wiki, which only they and their teacher can edit. Students can view the wikis of all other students in the course.
+Unless the group mode has been forced by the course settings, it can be set with the groups icons on the course home page after the wiki has been created. + +

diff --git a/mod/wiki/lib.php b/mod/wiki/lib.php index 0c00bca727..083818ab71 100644 --- a/mod/wiki/lib.php +++ b/mod/wiki/lib.php @@ -6,9 +6,9 @@ $wiki_CONSTANT = 7; /// for example $site = get_site(); -$WIKI_TYPES = array ('teacher' => $site->teacher, +$WIKI_TYPES = array ('teacher' => get_string('defaultcourseteacher'), 'group' => get_string('groups',"wiki"), - 'student' => $site->student ); + 'student' => get_string('defaultcoursestudent') ); define("EWIKI_ESCAPE_AT", 0); # For the algebraic filter function wiki_add_instance($wiki) {