-<P ALIGN=CENTER><B>Allow students to contribute to the wiki</B></P>
+<P ALIGN=CENTER><B>Wiki types</B></P>
<P>
-<UL>
- <li>A teacher can always edit every wiki in his course</li>
- <li>There are three wiki -types: Teacher, Course/Group, Student</li>
- <li>The Activity has the Moodle-Group states: "No Groups" "Separate Groups" and "Visible Groups"</li>
- <li>The same initial Content is filled in for all groups</li>
-</UL>
+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:
<table border="1" width="100%"><tbody>
<tr>
<th valign="top" width="25%"></th>
</tr>
<tr>
<th valign="top" width="25%">Teacher</th>
- <td valign="top" width="25%">Teacher creates and changes the wiki. Students can read the contents.</td>
- <td valign="top" width="25%">There is a wiki for every group which just the teacher can change. Every student just sees the wiki of his group.</td>
- <td valign="top" width="25%">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.</td>
+ <td valign="top" width="25%">There is only one wiki which only the teacher can edit. Students can view the contents.</td>
+ <td valign="top" width="25%">There is one wiki for every group which just the teacher can edit. Students can view the wiki of their group only.</td>
+ <td valign="top" width="25%">There is one wiki for every group which just the teacher can edit. Students can view the wikis for all groups.</td>
</tr>
<tr>
- <th valign="top" width="25%">Course/Group</th>
- <td valign="top" width="25%">Teacher and user can create and change the wiki.</td>
- <td valign="top" width="25%">Students can change and see the wiki of their own group.</td>
- <td valign="top" width="25%">Students can change the wiki of their own group. They can see all wikis, choseable by a Drop-Down box which contains all groups.</td>
+ <th valign="top" width="25%">Groups</th>
+ <td valign="top" width="25%">There is only one wiki. The teacher and all students can view and edit this wiki.</td>
+ <td valign="top" width="25%">There is one wiki per group. Students can view and edit the wiki of their own group only.</td>
+ <td valign="top" width="25%">There is one wiki per group. Students can change the wiki of their own group only. They can view the wikis for all groups.</td>
</tr>
<tr>
<th valign="top" width="25%">Student</th>
- <td valign="top" width="25%">Every student sees and can change his own wiki.</td>
- <td valign="top" width="25%">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.</td>
- <td valign="top" width="25%">Every student can change his own wiki, and sees all other wikis, choseable by a Drop-Down box which contains all students.</td>
+ <td valign="top" width="25%">Every student has their own wiki which only they and their teacher can view and edit.</td>
+ <td valign="top" width="25%">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.</td>
+ <td valign="top" width="25%">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.</td>
</tr></tbody>
</table>
+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.
+
+<UL>
+ <li>A teacher can always edit every wiki in the course</li>
+</UL>
</P>
$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) {