<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://docs.moodle.org/39/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jib</id>
	<title>MoodleDocs - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://docs.moodle.org/39/en/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Jib"/>
	<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/Special:Contributions/Jib"/>
	<updated>2026-04-23T03:38:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.5</generator>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=MNet_remote_enrolments&amp;diff=92838</id>
		<title>MNet remote enrolments</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=MNet_remote_enrolments&amp;diff=92838"/>
		<updated>2011-10-26T17:12:24Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Enrolment}}&lt;br /&gt;
MNet remote enrolments allows a remote MNet host to enrol their users into our courses.&lt;br /&gt;
&lt;br /&gt;
==Setting up enrolments==&lt;br /&gt;
&lt;br /&gt;
Say I want administrators on &#039;Site A&#039; to be able to enrol their users to courses &#039;Site B&#039; I need to take the following steps. Note you need to set up Site B first before enrolling users to it.&lt;br /&gt;
&lt;br /&gt;
===Pre-requisites===&lt;br /&gt;
&lt;br /&gt;
* At least 2 networked peers&lt;br /&gt;
* Mnet Authentication plug-in enabled&lt;br /&gt;
* Mnet Enrolment plug-in enabled&lt;br /&gt;
&lt;br /&gt;
===Enabling a course for peer enrolments (Site B)===&lt;br /&gt;
&lt;br /&gt;
* Go into the course that you want to enable on &#039;Site B&#039;. &lt;br /&gt;
* Go to &#039;&#039;Course Settings -&amp;gt; Enrolment Methods&#039;&#039; and add an Mnet enrolment instance linked to &#039;Site A&#039;&lt;br /&gt;
&lt;br /&gt;
===Enrolling Users (Site A)===&lt;br /&gt;
&lt;br /&gt;
Note this will only work for system users with moodle/site:config capability&lt;br /&gt;
&lt;br /&gt;
* Go to &#039;&#039;Networking -&amp;gt; Remote enrolment clients&#039;&#039; &lt;br /&gt;
* Choose &#039;&#039;Edit Enrolments&#039;&#039; in the action column for Site B&lt;br /&gt;
* Select &#039;&#039;Edit Enrolments&#039;&#039; in the Action column of the appropriate course (use refresh if not there)&lt;br /&gt;
* Enrol the relevant users&lt;br /&gt;
&lt;br /&gt;
===Accessing the course===&lt;br /&gt;
&lt;br /&gt;
The users that were enrolled will now have access to the remote site. the links will appear in the &#039;My Courses&#039; area and &#039;Course Overview&#039; block but not in the Navigation block under &#039;Courses&#039;.&lt;br /&gt;
&lt;br /&gt;
The get_my_remotecourses() function can be used to work with these elsewhere&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* [[MNet]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{stub}}&lt;br /&gt;
&lt;br /&gt;
[[Category:MNet]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Installing_Oracle_for_PHP&amp;diff=84351</id>
		<title>Installing Oracle for PHP</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Installing_Oracle_for_PHP&amp;diff=84351"/>
		<updated>2011-06-06T10:01:49Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* http://www.oracle.com/technetwork/articles/technote-php-instant-084410.html&lt;br /&gt;
* http://moodle.org/mod/forum/discuss.php?d=65488#p308002 (with attached html document)&lt;br /&gt;
* http://es.php.net/oci8&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Important Note:&#039;&#039;&#039; Don&#039;t forget to enable this variable in your php.ini (or .htaccess)  file:&lt;br /&gt;
&lt;br /&gt;
(else, all your data will be escaped following MySQL rules, that are incorrect for Oracle)&lt;br /&gt;
&lt;br /&gt;
    magic_quotes_sybase = On&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Broken versions of OCI8 driver ==&lt;br /&gt;
&lt;br /&gt;
PHP v5.2.4 (and perhaps v5.2.3 as well) have shipped with a bug in the OCI8 driver that leaks statement handles. The version of the OCI8 driver with the bug is v1.2.4. Possible workarounds:&lt;br /&gt;
&lt;br /&gt;
* Upgrade to PHP v5.2.5 or later&lt;br /&gt;
* Downgrade to PHP v5.2.1 (reported to work)&lt;br /&gt;
* Downgrade only the oci8 driver to the one included in PHP 5.2.1 (it worked for us -- iarenaza)&lt;br /&gt;
* If you are on linux and/or can compile PECL extensions, install an older OCI8 driver (v1.2.3 seems to work) from the PECL repository http://pecl.php.net/package/oci8&lt;br /&gt;
&lt;br /&gt;
More information at&lt;br /&gt;
* http://bugs.php.net/bug.php?id=42496 -- tracking the PHP OCI8 bug&lt;br /&gt;
* http://tracker.moodle.org/browse/MDL-11429 -- diagnostics on the Moodle side&lt;br /&gt;
&lt;br /&gt;
== Installing Moodle on Windows with Oracle Express Edition ==&lt;br /&gt;
&lt;br /&gt;
=== Introduction ===&lt;br /&gt;
This section explains how to install Moodle with Oracle Express Edition on Windows. I&#039;m using it for &#039;&#039;&#039;debugging&#039;&#039;&#039; purpose. It&#039;s definitively not a production environment. The goal is to setup easily and quickly a Moodle/Windows/Oracle environment.&lt;br /&gt;
&lt;br /&gt;
=== Install Oracle ===&lt;br /&gt;
Download Oracle Express Edition on [http://www.oracle.com/technology/products/database/xe/index.html Oracle web site].&amp;lt;br /&amp;gt;&lt;br /&gt;
You will also need the Instant client [http://www.oracle.com/technology/software/tech/oci/instantclient/htdocs/winsoft.html from here] (free account sign up needed). Copy everything from the unzipped folder into apache/bin. &amp;lt;br /&amp;gt;&lt;br /&gt;
Install both.&amp;lt;br /&amp;gt;&lt;br /&gt;
Access to the oracle console (http://127.0.0.1:8080/apex). Login: SYS Password: the_one_you_entered_during_the_installation&amp;lt;br /&amp;gt;&lt;br /&gt;
Create a new user and give it all rights (including DBA).&amp;lt;br /&amp;gt;&lt;br /&gt;
Note: Oracle Express Edition 10g is limited at one database called &#039;XE&#039;.&lt;br /&gt;
&lt;br /&gt;
=== Set up your oracle extension ===&lt;br /&gt;
This document does not explain how to setup apache/php for Oracle. You can have more information on [http://www.oracle.com/technology/tech/php/htdocs/php-oracle-tutorial.html Oracle Documentation]. On my own machine I used my WAMP installation ([http://www.en.wampserver.com/ Wampserver 2.0]) which allowed me to activate all oracle extensions in few clicks (php_oci8, php_oracle, php_pdo_oci, php_pdo_oci8).&lt;br /&gt;
&lt;br /&gt;
=== Install Moodle ===&lt;br /&gt;
On the database setup page:&amp;lt;br /&amp;gt;&lt;br /&gt;
Driver: Oracle oci8 (in the config file it should read &amp;quot;oci8po&amp;quot; for a 1.9.x install and &amp;quot;oci&amp;quot; for a 2.0.x install)&amp;lt;br /&amp;gt;&lt;br /&gt;
Host: empty the field&amp;lt;br /&amp;gt;&lt;br /&gt;
Database: //localhost:1521/XE&amp;lt;br /&amp;gt;&lt;br /&gt;
User: the user that you created&amp;lt;br /&amp;gt;&lt;br /&gt;
Password: the password you gave to the user&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Configure Apache ===&lt;br /&gt;
If you&#039;re running Moodle on Oracle with Apache on Linux, you might have issues with PHP being able to see the system environment variables.  To resolve this, you can edit /etc/sysconfig/apache2 and add the following lines to the bottom:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
LD_LIBRARY_PATH=/opt/oracle/instantclient_11_2# Set LANG Variables for UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
NLS_LANG=AMERICAN_AMERICA.AL32UTF8&amp;lt;br /&amp;gt;&lt;br /&gt;
LANG=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_ALL=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_COLLATE=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_CTYPE=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_MESSAGES=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_MONETARY=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_NUMERIC=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
LC_TIME=en_US.UTF-8&amp;lt;br /&amp;gt;&lt;br /&gt;
export LANG LC_ALL LC_COLLATE LC_CTYPE LC_MESSAGES LC_MONETARY LC_NUMERIC LC_TIM NLS_LANG LD_LIBRARY_PATH&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Also need to add those two lines to ~/.bashrc so that the PHP command-line client can see it too. &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Related links ==&lt;br /&gt;
* [http://lewiscarr.co.uk/node/4 Installing ORACLE drivers with PHP]&lt;br /&gt;
*[[Installing MSSQL for PHP]]&lt;br /&gt;
*[[PHP]]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=134729#p588963 Can i install Moodle with Oracle database]&lt;br /&gt;
*[http://moodle.org/mod/forum/discuss.php?d=65488 Who uses Oracle]&lt;br /&gt;
*[https://docs.moodle.org/en/Step-by-step_Install_Guide_for_Solaris_10_with_Oracle_10 Step by step Install Guide for Solaris 10 with Oracle 10]&lt;br /&gt;
*[http://learningischange.com/2009/05/29/install-moodle-on-an-oracle-database-in-25-minutes-or-less/ Install Moodle on an Oracle Database (in 25 minutes or less)]. The related Using Moodle forum discussion is [http://moodle.org/mod/forum/discuss.php?d=124629 here].&lt;br /&gt;
*[http://www.mguhlin.org/2009/05/moodle-on-oracle-database.html Moodle on Oracle Database] discussion on Miguel Guhlin&#039;s blog &lt;br /&gt;
&lt;br /&gt;
[[Category:Installation]]&lt;br /&gt;
[[Category:Developer]]&lt;br /&gt;
[[Category:XMLDB]]&lt;br /&gt;
[[Category:DB]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=User:James_Ballard&amp;diff=54115</id>
		<title>User:James Ballard</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=User:James_Ballard&amp;diff=54115"/>
		<updated>2009-04-10T09:19:29Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Learning Technologist&lt;br /&gt;
University of London Computer Centre&lt;br /&gt;
| Guilford Street | London WC1N 1DZ |&lt;br /&gt;
| http://moodle.ulcc.ac.uk |&lt;br /&gt;
| http://mahara.ulcc.ac.uk |&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Database_activity&amp;diff=31515</id>
		<title>Database activity</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Database_activity&amp;diff=31515"/>
		<updated>2008-01-23T10:47:51Z</updated>

		<summary type="html">&lt;p&gt;Jib: /* How to use the database module */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[ru: База_данных]]&lt;br /&gt;
{{Databases}}&lt;br /&gt;
{{Moodle 1.6}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Database module&#039;&#039;&#039; allows the teacher and/or students to build, display and search a bank of record entries about any conceivable topic. The format and structure of these entries can be almost unlimited, including images, files, URLs, numbers and text amongst other things. You may be familiar with similar technology from building Microsoft Access or Filemaker databases.&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;&#039;&#039;Note:&#039;&#039;&#039; Please don&#039;t confuse this [[Adding resources and activities | activity type]] with Moodle&#039;s underlying SQL database, which stores all of the information used in Moodle courses and is only of interest to Moodle [[Administrator documentation | Administrators]].&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== How to use the database module ==&lt;br /&gt;
* The first task is to [[Adding/editing_a_database|add the database]]. You will be asked to give it a name, provide some text explaining its intended purpose to users and set a few other options.&lt;br /&gt;
* Next you define the kind of [[Database fields|fields]] that define the information you wish to collect. For example a database of famous paintings may have a picture field called &#039;&#039;painting&#039;&#039;, for uploading an image file showing the painting, and two text fields called &#039;&#039;artist&#039;&#039; and &#039;&#039;title&#039;&#039; for the name of the artist and the painting.&lt;br /&gt;
* It is then optional to edit the [[Database templates|database templates]] to alter the way in which the database displays entries.&lt;br /&gt;
* Note that if you later edit the fields in the databases you must use the Reset template button, or manually edit the template, to ensure the new fields are added to the display&lt;br /&gt;
* the [[Teacher]] and/or [[Students]] can start entering data and (optionally) commenting on and grading other submissions. These entries can be viewed alone, viewed as a list or searched and sorted.&lt;br /&gt;
* Data can be uploaded into the database from a .csv file: &lt;br /&gt;
** Click the &#039;Add Entry&#039; tab&lt;br /&gt;
** At the bottom of the page there is a link &#039;Upload entries from a file&#039; which provides help in assigning data in a csv file to the relevant fields in your database.&lt;br /&gt;
&lt;br /&gt;
==Database and Roles==&lt;br /&gt;
&lt;br /&gt;
Since Moodle 1.7 a number of options in Database have been migrated over to the Roles system. For example, preventing students (or any other role) submitting data must be done by overriding the role for that particular instance of the Database. However, do note that by default teachers are unable to override roles and this ability must first be granted by your Administrator for the course or site as appropriate.&lt;br /&gt;
&lt;br /&gt;
== Example databases ==&lt;br /&gt;
&lt;br /&gt;
Moodle.org has three good examples of the database module in action:&lt;br /&gt;
&lt;br /&gt;
* [http://moodle.org/mod/data/view.php?id=6140 Moodle Buzz], a database of the titles, authors and web links to news articles mentioning Moodle&lt;br /&gt;
* [http://moodle.org/mod/data/view.php?d=26 Themes], a database with screenshots, download links and user comments about Moodle [[Themes|themes]]&lt;br /&gt;
* [http://moodle.org/mod/data/view.php?d=13 Modules and plugins], a database containing a variety of web links (download, documentation, discussion) and info (maintainer, module type, requirements) about the modular components of Moodle, including those created by third parties.&lt;br /&gt;
&lt;br /&gt;
== Creative uses ==&lt;br /&gt;
&lt;br /&gt;
You could use the database module to:&lt;br /&gt;
&lt;br /&gt;
* allow collaboration on building a collection of web links/books/journal references related to a particular subject&lt;br /&gt;
* display student created photos/posters/websites/poems for peer comment and review&lt;br /&gt;
* gather comments and votes on a shortlist of potential logos/mascot names/project ideas&lt;br /&gt;
* provide a [http://moodle.org/mod/forum/discuss.php?d=52699 student file storage area]&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/view.php?id=3505 Database module forum]&lt;br /&gt;
* [[Glossary module]], which performs a similar though more specialised, text-based role and is also available for previous versions of Moodle.&lt;br /&gt;
* [http://treadwell.cce.cornell.edu/moodle_doc/database_moodle/index.html a screencast introducing the Database Module and walking through creating a database]&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/discuss.php?d=72260 Database Module: Each learner Private DB?] forum discussion&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/discuss.php?d=84487 Database for Dummies please!] forum discussion&lt;br /&gt;
&lt;br /&gt;
[[Category:Database]]&lt;br /&gt;
[[category:Modules]]&lt;br /&gt;
&lt;br /&gt;
[[es:Base_de_datos_%28m%C3%B3dulo%29]]&lt;br /&gt;
[[eu:Datu-basea]]&lt;br /&gt;
[[fr:Base de données]]&lt;br /&gt;
[[cs:Modul Databáze]]&lt;br /&gt;
[[ja:データベースモジュール]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Random_glossary_entry_block&amp;diff=8930</id>
		<title>Random glossary entry block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Random_glossary_entry_block&amp;diff=8930"/>
		<updated>2006-04-24T13:17:01Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:RandGlossBlock.jpg|right]]&lt;br /&gt;
&lt;br /&gt;
The random glossary block can be used to display random entries from a glossary, which usually take the form of dictionary style definitions. However the flexibility of Moodle&#039;s HTML editor allow users to adapt this block for other purposes such as &#039;Quote of the Day&#039; or a random picture gallery that changes each time the page is refreshed. &lt;br /&gt;
&lt;br /&gt;
Before using the &#039;&#039;&#039;Random Glossary Entry&#039;&#039;&#039; block you have to configure it using the edit icon. There you will have a number of fields to complete: &lt;br /&gt;
&lt;br /&gt;
==Title==&lt;br /&gt;
&lt;br /&gt;
Here you will write the title of that block. The defult is Random Glossary Entry. &lt;br /&gt;
&lt;br /&gt;
==Take entries from this glossary==&lt;br /&gt;
&lt;br /&gt;
This allows you to choose from which glossary the entries in this block will be chosen. &lt;br /&gt;
&lt;br /&gt;
==Days before a new entry is chosen==&lt;br /&gt;
&lt;br /&gt;
This sets the number of days for how long that a given entry is &lt;br /&gt;
&lt;br /&gt;
==How a new entry is chosen==&lt;br /&gt;
&lt;br /&gt;
You have three options: &#039;&#039;Last modified entry&#039;&#039; will always display the entry that was last modified, and &#039;&#039;Random entry&#039;&#039; will choose a new one at random every time. The option &#039;&#039;Next entry&#039;&#039; will cycle through the entries in order. This last option is especially useful when a number of days is also chosen, allowing you to make a Quote of the week or a Tip of the day that everyone sees.&lt;br /&gt;
&lt;br /&gt;
==Show concept (heading) for each entry==&lt;br /&gt;
&lt;br /&gt;
Enabling that option will show headings for each entry that appears in the block.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
&lt;br /&gt;
You can display links to actions of the glossary this block is associated with. The block will only display links to actions which are enabled for that glossary. You can type texts to appear for whichever of the three options: &#039;&#039;Users can add entries to the glossary&#039;&#039;, &#039;&#039;Users can view the glossary but not add entries&#039;&#039; or &#039;&#039;Users cannot edit or view the glossary&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Upcoming_events_block&amp;diff=8929</id>
		<title>Upcoming events block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Upcoming_events_block&amp;diff=8929"/>
		<updated>2006-04-24T13:06:08Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:UpcomingBlock4.jpg|right]]&lt;br /&gt;
The &#039;&#039;&#039;Upcoming Events&#039;&#039;&#039; block displays future events in a summarised list - the number of days in advance is determined as a global variable. &lt;br /&gt;
&lt;br /&gt;
Events are generated directly from the calendar and/or activity deadlines, providing a link to full details or directly to the activity. &lt;br /&gt;
&lt;br /&gt;
There are also links to &#039;&#039;Go to calendar...&#039;&#039; and add a &#039;&#039;New Event...&#039;&#039;. &lt;br /&gt;
&lt;br /&gt;
If you click on a date, you will go to the day-view calendar for that day. If the title of the event is a link, and you click on it, you will be taken to that event.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Quiz_results_block&amp;diff=8928</id>
		<title>Quiz results block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Quiz_results_block&amp;diff=8928"/>
		<updated>2006-04-24T13:00:00Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The quiz results block displays the highest and/or lowest grades achieved on a quiz within your course. Therefore your course must have at least one quiz created in order to use this block. &lt;br /&gt;
&lt;br /&gt;
When you first add this block you will not have selected which [[Quizzes|quiz]] you wish the results of to be displayed, generating the notice: &lt;br /&gt;
&lt;br /&gt;
[[Image:QuizResultsBlock1.jpg]]&lt;br /&gt;
&lt;br /&gt;
Clicking the Configuration icon allows you to choose which quiz you want to see the results for from a drop-down menu. &lt;br /&gt;
&lt;br /&gt;
You will also set several other options such as the number of the lowest and highest grades displayed. If both the highest and lowest grades are set to zero then no results will be displayed; to display all grades you would need to set either of these to the number of participants in the course&lt;br /&gt;
&lt;br /&gt;
You can also determine whether grades will be displayed as percentages, fractions or absolute numbers. &lt;br /&gt;
&lt;br /&gt;
If the quiz supports [[Groups|groups]] you can also show group results instead of students.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Remote_RSS_feeds_block&amp;diff=8927</id>
		<title>Remote RSS feeds block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Remote_RSS_feeds_block&amp;diff=8927"/>
		<updated>2006-04-24T12:47:50Z</updated>

		<summary type="html">&lt;p&gt;Jib: /* Add/Manage RSS feeds (&amp;#039;&amp;#039;Manage all my feeds&amp;#039;&amp;#039; tab) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;RSS feeds&#039;&#039;&#039; block enables [[RSS]] feeds from external websites to be displayed within Moodle. As the information on the other site (e.g. news headlines, recently added documents) is updated the block will update to show the latest info.&lt;br /&gt;
&lt;br /&gt;
==Configure RSS Feeds (&#039;&#039;Configure this block&#039;&#039; tab)==&lt;br /&gt;
&lt;br /&gt;
After adding an RSS feed block, you will need to configure which feeds will be displayed, by clicking the edit icon for the block.&lt;br /&gt;
&lt;br /&gt;
;Display each link&#039;s description?&lt;br /&gt;
:Choose yes or no from the drop-down menu to determine whether the block will display a description of each article, or just the title of the article. Both the title and description are generated by the external feed.&lt;br /&gt;
&lt;br /&gt;
;Max number of entries to show per block&lt;br /&gt;
:Determines how many articles will be displayed. The most recent will be displayed first.&lt;br /&gt;
&lt;br /&gt;
;Choose the feeds to make available&lt;br /&gt;
:Check the box next to each feed you would displayed in this block. You can have more than one instance of the RSS feed block if you would like to break them up.&lt;br /&gt;
&lt;br /&gt;
;Title&lt;br /&gt;
:Enter a title for the block. If you leave this blank a title will be taken from the RSS feeds, which can be confusing if there are multiple feeds in one block.&lt;br /&gt;
&lt;br /&gt;
;Display a link?&lt;br /&gt;
:Each article headline should link to the full article, but you can also display a link to the original site where available.&lt;br /&gt;
&lt;br /&gt;
;Diplay channel image?&lt;br /&gt;
:Some feeds supply an image or logo from the original site which you can choose to display when available.&lt;br /&gt;
&lt;br /&gt;
==Add/Manage RSS feeds (&#039;&#039;Manage all my feeds&#039;&#039; tab)==&lt;br /&gt;
&lt;br /&gt;
The site [[administrator]] may configure the block to allow [[Teacher|teachers]] to add/manage feeds, otherwise you will have to contact an administrator to add a new feed.&lt;br /&gt;
&lt;br /&gt;
Adding a new feed requires you to copy and paste (or type) the URL address of the RSS feed in the space provided. You will find this on the original site generating the feed. You can then choose a custom title if you would prefer to use your own in place of the one generated by the feed.&lt;br /&gt;
&lt;br /&gt;
Click the &#039;&#039;Add&#039;&#039; button to submit the feed. There is a validation tool included to confirm the feed URL is accurate. &lt;br /&gt;
&lt;br /&gt;
NB: To add the new feed to your course you will have to configure an RSS feed block to include the new feed.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Remote_RSS_feeds_block&amp;diff=8926</id>
		<title>Remote RSS feeds block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Remote_RSS_feeds_block&amp;diff=8926"/>
		<updated>2006-04-24T12:46:21Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;RSS feeds&#039;&#039;&#039; block enables [[RSS]] feeds from external websites to be displayed within Moodle. As the information on the other site (e.g. news headlines, recently added documents) is updated the block will update to show the latest info.&lt;br /&gt;
&lt;br /&gt;
==Configure RSS Feeds (&#039;&#039;Configure this block&#039;&#039; tab)==&lt;br /&gt;
&lt;br /&gt;
After adding an RSS feed block, you will need to configure which feeds will be displayed, by clicking the edit icon for the block.&lt;br /&gt;
&lt;br /&gt;
;Display each link&#039;s description?&lt;br /&gt;
:Choose yes or no from the drop-down menu to determine whether the block will display a description of each article, or just the title of the article. Both the title and description are generated by the external feed.&lt;br /&gt;
&lt;br /&gt;
;Max number of entries to show per block&lt;br /&gt;
:Determines how many articles will be displayed. The most recent will be displayed first.&lt;br /&gt;
&lt;br /&gt;
;Choose the feeds to make available&lt;br /&gt;
:Check the box next to each feed you would displayed in this block. You can have more than one instance of the RSS feed block if you would like to break them up.&lt;br /&gt;
&lt;br /&gt;
;Title&lt;br /&gt;
:Enter a title for the block. If you leave this blank a title will be taken from the RSS feeds, which can be confusing if there are multiple feeds in one block.&lt;br /&gt;
&lt;br /&gt;
;Display a link?&lt;br /&gt;
:Each article headline should link to the full article, but you can also display a link to the original site where available.&lt;br /&gt;
&lt;br /&gt;
;Diplay channel image?&lt;br /&gt;
:Some feeds supply an image or logo from the original site which you can choose to display when available.&lt;br /&gt;
&lt;br /&gt;
==Add/Manage RSS feeds (&#039;&#039;Manage all my feeds&#039;&#039; tab)==&lt;br /&gt;
&lt;br /&gt;
The site [[administrator]] may configure the block to allow [[Teacher|teachers]] to add/manage feeds, otherwise you will have to contact an administrator to add a new feed.&lt;br /&gt;
&lt;br /&gt;
Adding a new feed requires you to copy and paste (or type) the URL address of the RSS feed in the space provided. You will find this on the original site generating the feed. You can then choose a custom title if you would prefer to use your own in place of the title generated by the feed.&lt;br /&gt;
&lt;br /&gt;
Click the &#039;&#039;Add&#039;&#039; button to submit the feed. There is a validation tool included to confirm the feed URL is accurate. &lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Messages_block&amp;diff=8925</id>
		<title>Messages block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Messages_block&amp;diff=8925"/>
		<updated>2006-04-24T12:08:47Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Messages block==&lt;br /&gt;
&lt;br /&gt;
[[Image:MsgBlock.jpg]]&lt;br /&gt;
&lt;br /&gt;
The message block will display a list of new messages you have received, and links to your message page.&lt;br /&gt;
&lt;br /&gt;
Clicking Messages opens a new page with three tabs: &lt;br /&gt;
&lt;br /&gt;
==Contacts==&lt;br /&gt;
By default the contact list is empty. In order to send a message or to create a shortcut to the person you are sending, go to the Search tab. &lt;br /&gt;
&lt;br /&gt;
[[Image:MsgContacts.jpg]]&lt;br /&gt;
&lt;br /&gt;
==Search==&lt;br /&gt;
&lt;br /&gt;
The search tab allows you to search for a person from among the students only in your course or all students registered on the platform. You can also search messages typing a keyword (in the Keywords field) and defining a few search criteria such as whether or not include blocked users or whether search only messages from (or to) you or do both. &lt;br /&gt;
&lt;br /&gt;
[[Image:MsgSearch.jpg]]&lt;br /&gt;
&lt;br /&gt;
==Settings==&lt;br /&gt;
Here you can decide on having a popup Message window whenever you get a new message, blocking messages from people who are not on your Contacts list, having an audio signal for a new message, using a HTML editor, or getting email messages when you are offline.&lt;br /&gt;
&lt;br /&gt;
[[Image:MsgSettings.jpg]]&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
* Using Moodle [http://moodle.org/mod/forum/discuss.php?d=34972 Viewing old messages?] forum discussion&lt;br /&gt;
* [[Messaging|Messaging (administrator)]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;br /&gt;
&lt;br /&gt;
[[es:Mensajes]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Latest_news_block&amp;diff=8924</id>
		<title>Latest news block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Latest_news_block&amp;diff=8924"/>
		<updated>2006-04-24T12:06:57Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Recent posts made in the News forum will display as a listed item in the &#039;&#039;&#039;Latest News&#039;&#039;&#039; block, along with a link to older archived news.&lt;br /&gt;
&lt;br /&gt;
[[Image:NewsBlock.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Course/site_summary_block&amp;diff=8923</id>
		<title>Course/site summary block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Course/site_summary_block&amp;diff=8923"/>
		<updated>2006-04-24T12:05:43Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Course/Site Description&#039;&#039;&#039; block provides a summary and/or description for your course as contained in the summary text of the [[course/edit|course settings]].&lt;br /&gt;
&lt;br /&gt;
[[Image:CourseDescrBlock.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Search_forums_block&amp;diff=8917</id>
		<title>Search forums block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Search_forums_block&amp;diff=8917"/>
		<updated>2006-04-24T10:41:43Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Search Forum block allows you to search the course forums for a word or phrase. Type the word or phrase you want to find in the text field space. &lt;br /&gt;
&lt;br /&gt;
[[Image:SearchBlock.jpg]]&lt;br /&gt;
&lt;br /&gt;
For basic searching of one or more words anywhere in the texts, just type them separated by spaces. All words longer than two characters are used. If you want to use advanced search options you can either move to the Advanced Search page (clicking Advanced Search in the Search Forums block) or use &lt;br /&gt;
&lt;br /&gt;
To force exact matching of a word, use the plus sign, and the minus sign if there are particular exact words you don&#039;t want included in the search. To search for a particular phrase, use double quotes around it. To search for texts by a particular user, prefix a word from their name with &amp;quot;user:&amp;quot;. If you know the user id of a particular user, you can search for them like this. To search for a word within the subject or title of a text only, prefix the word with &amp;quot;subject:&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
You can also use the advanced search options, the information about which you can find [[Mod/forum/search|here]].&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Courses_block&amp;diff=8916</id>
		<title>Courses block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Courses_block&amp;diff=8916"/>
		<updated>2006-04-24T10:38:18Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Courses&#039;&#039;&#039; block lists and allows navigation between all of the courses on which you are a paticipant (tutor and/or student), allowing one-click access to another course home page. There is a also the option to list &#039;&#039;All courses...&#039;&#039; available within the Moodle site.&lt;br /&gt;
&lt;br /&gt;
If you have not yet been assigned as a particpant on a course you will see a full list of all courses so that you can your course easily.&lt;br /&gt;
&lt;br /&gt;
[[Image:CourseBlock.jpg]]&lt;br /&gt;
&lt;br /&gt;
See also [[Create your own course]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Activities_block&amp;diff=8915</id>
		<title>Activities block</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Activities_block&amp;diff=8915"/>
		<updated>2006-04-24T10:35:32Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Activities&#039;&#039;&#039; block lists and allows navigation between the different activities available in your course (forums, quizzes, assignments, etc.). The activities list will grow as you add activities to your course. Therefore, the first time you enter your course, the only category that is listed is Forums. This is because one forum exists by default – the news forum.  &lt;br /&gt;
&lt;br /&gt;
Whenever you add a different activity or resource to your course, an icon will appear in this block representing the specific Moodle module. These icons will link to a list of all instances of that modules activity that appear throughout the course.&lt;br /&gt;
&lt;br /&gt;
[[Image:ActivityBlock.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Scales&amp;diff=8492</id>
		<title>Scales</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Scales&amp;diff=8492"/>
		<updated>2006-04-13T13:17:36Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course admin}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Scales&#039;&#039;&#039; may be used in [[Forums]], [[Glossaries]] (for rating) and [[Assignments]] (for grading). Custom scales can be created where you would like to assign non-numerical or non-numerically assigned lettered grades.&lt;br /&gt;
&lt;br /&gt;
* The interface for creating scales is accessed by clicking the &amp;quot;Scales&amp;quot; link in any course [[Administration]] block.&lt;br /&gt;
* Scales may be created for individual courses by Teachers with editing rights or Administrators.&lt;br /&gt;
* Administrators may create site-wide scales by &amp;quot;promoting&amp;quot; a scale created for a course. To achieve this, add a new scale, then use the move down arrow to move the scale from custom scales to standard scales (i.e. site-wide).&lt;br /&gt;
&lt;br /&gt;
==Creating a scale==&lt;br /&gt;
&lt;br /&gt;
If you choose to &#039;&#039;Add a new scale&#039;&#039; from the &#039;&#039;&#039;Scales&#039;&#039;&#039; administration menu, you can create a custom scale for your course.&lt;br /&gt;
&lt;br /&gt;
;Name&lt;br /&gt;
:A recognisable name for your scale that will identify it among other scales.&lt;br /&gt;
&lt;br /&gt;
;Scale&lt;br /&gt;
:Define the options for your scale using comma separated options. For example if you would like two options in your scale (complete and incomplete) type: &#039;&#039;incomplete, complete&#039;&#039;. You can use as many options here as you require. Other examples could include a four option scale &#039;&#039;refer, pass, merit, distinction&#039;&#039; or &#039;&#039;Excellent, Average, Acceptable, Hesitant (Fail)&#039;&#039; depending on your curriculum/course needs.&lt;br /&gt;
&lt;br /&gt;
;Description&lt;br /&gt;
:Explain the methodology and/or purpose of this grading scale if necessary.&lt;br /&gt;
&lt;br /&gt;
==Using a custom scale==&lt;br /&gt;
&lt;br /&gt;
When you create a new graded or rated activity, you should find the name of your scale in the drop-down &#039;&#039;&#039;Grade:&#039;&#039;&#039; option. When you mark the activity you will now be given the options defined in your scale rather than the standard numerical values.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.moodle.org/docs/using_moodle/ch12_grades.pdf Using Moodle Chapter 12: Grades and Scales]&lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Forum]]&lt;br /&gt;
[[Category:Glossary]]&lt;br /&gt;
[[Category:Assignment]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Scales&amp;diff=8491</id>
		<title>Scales</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Scales&amp;diff=8491"/>
		<updated>2006-04-13T13:14:31Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course admin}}&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Scales&#039;&#039;&#039; may be used in [[Forums]], [[Glossaries]] (for rating) and [[Assignments]] (for grading). Custom scales can be created where you would like to assign non-numerical or non-numerically assigned lettered grades.&lt;br /&gt;
&lt;br /&gt;
* The interface for creating scales is accessed by clicking the &amp;quot;Scales&amp;quot; link in any course [[Administration]] block.&lt;br /&gt;
* Scales may be created for individual courses by Teachers with editing rights or Administrators.&lt;br /&gt;
* Administrators may create site-wide scales by &amp;quot;promoting&amp;quot; a scale created for a course. To achieve this, add a new scale, then use the move down arrow to move the scale from custom scales to standard scales (i.e. site-wide).&lt;br /&gt;
&lt;br /&gt;
==Creating a scale==&lt;br /&gt;
&lt;br /&gt;
If you choose to &#039;&#039;Add a new scale&#039;&#039; from the &#039;&#039;&#039;Scales&#039;&#039;&#039; administration menu, you can create a custom scale for your course.&lt;br /&gt;
&lt;br /&gt;
;Name&lt;br /&gt;
:A recognisable name for your scale that will identify it among other scales.&lt;br /&gt;
&lt;br /&gt;
;Scale&lt;br /&gt;
:Define the options for your scale using comma separated options. For example if you would like two options in your scale (complete and incomplete) type: &#039;&#039;incomplete, complete&#039;&#039;. You can use as many options here as you require. Other examples could include a four option scale &#039;&#039;refer, pass, merit, distinction&#039;&#039; or &#039;&#039;Excellent, Average, Acceptable, Hesitant (Fail)&#039;&#039; depending on your curriculum/course needs.&lt;br /&gt;
&lt;br /&gt;
;Description&lt;br /&gt;
:Explain the methodology and/or purpose of this grading scale if necessary.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
&lt;br /&gt;
*[http://download.moodle.org/docs/using_moodle/ch12_grades.pdf Using Moodle Chapter 12: Grades and Scales]&lt;br /&gt;
&lt;br /&gt;
[[Category:Administrator]]&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Forum]]&lt;br /&gt;
[[Category:Glossary]]&lt;br /&gt;
[[Category:Assignment]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Import_course_data&amp;diff=8489</id>
		<title>Import course data</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Import_course_data&amp;diff=8489"/>
		<updated>2006-04-13T12:11:30Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course admin}}&lt;br /&gt;
&lt;br /&gt;
Course data may be imported from any other course for which the teacher has editing rights to.&lt;br /&gt;
&lt;br /&gt;
Select the course you wish to import from and click the &#039;&#039;Use this course&#039;&#039; button. You will be presented with a check box list from which you can select the type of activities or resources you wish to import. Click &#039;&#039;Continue&#039;&#039; when done to import that data. &lt;br /&gt;
&lt;br /&gt;
NB: Selecting forums, for example, will import all forums from that course. Currently you cannot import indivdual items within a module type.&lt;br /&gt;
&lt;br /&gt;
Groups can also be imported as a batch from a file.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Groups&amp;diff=8485</id>
		<title>Groups</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Groups&amp;diff=8485"/>
		<updated>2006-04-13T10:54:54Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Course admin}}&lt;br /&gt;
&lt;br /&gt;
==Group Administration==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Groups&#039;&#039;&#039; administration page, allows you to assign and maintain teachers and students in course groups. There are three columns:&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;People not in a group&#039;&#039; - Currently unassigned participants.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Groups&#039;&#039; - A list of groups available for this course.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;Members of selected group&#039;&#039; - When you select a group this column will display the members of that group&lt;br /&gt;
&lt;br /&gt;
Underneath each column are the options for that column. &lt;br /&gt;
&lt;br /&gt;
To create new groups, type the group name in the text box and click the adjacent &#039;&#039;Add new group&#039;&#039; button. You can add a description to this group using the &#039;&#039;Edit group settings&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
To add a particpant(s) to a group you need to select their name in the first column (use shift or ctrl for multiple selections), select the group you wish to add them to from the centre column, and then click the &#039;&#039;Add selected to group -&amp;gt;&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
To remove participants from a group, select the appropriate group to view members, select the participants to remove and click the &#039;&#039;Remove selected members&#039;&#039; button.&lt;br /&gt;
&lt;br /&gt;
==Group Modes==&lt;br /&gt;
&lt;br /&gt;
The group mode can be defined at two levels:&lt;br /&gt;
&lt;br /&gt;
* Course level - the group mode defined at the course level is the default mode for all activities defined within that course. This is determined in the course [[Settings]]&lt;br /&gt;
&lt;br /&gt;
* Activity level - each activity that supports groups can also define its own grouping mode. If the course is set to &amp;quot;force group mode&amp;quot; then the setting for each activity is ignored.&lt;br /&gt;
 &lt;br /&gt;
There are three group modes:&lt;br /&gt;
&lt;br /&gt;
;No groups&lt;br /&gt;
:There are no sub groups, everyone is part of one big community&lt;br /&gt;
&lt;br /&gt;
;Separate groups&lt;br /&gt;
:Each group can only see their own group, others are invisible&lt;br /&gt;
&lt;br /&gt;
;Visible groups&lt;br /&gt;
:Each group works in their own group, but can also see other groups&lt;br /&gt;
&lt;br /&gt;
==See also==&lt;br /&gt;
&lt;br /&gt;
*[http://moodle.org/mod/forum/view.php?id=1490 Using Moodle: Groups] forum&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Adding_Questionnaire_questions&amp;diff=8155</id>
		<title>Adding Questionnaire questions</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Adding_Questionnaire_questions&amp;diff=8155"/>
		<updated>2006-04-07T13:25:02Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
Questions are added by defining fields. &lt;br /&gt;
&lt;br /&gt;
==Add/edit fields==&lt;br /&gt;
&lt;br /&gt;
To add a new field click the &#039;&#039;&#039;New Field&#039;&#039;&#039; button. To edit a field click the numbered button corresponding to that field e.g. &#039;&#039;&#039;2&#039;&#039;&#039; for field 2. &lt;br /&gt;
&lt;br /&gt;
==Field types==&lt;br /&gt;
&lt;br /&gt;
For each field type you should use a unique Field Name that allows you to identify it. You can then select different field types from the drop-down menu. You can choose whether each field is required or optional from the Required? drop-down menu. After each field is complete either add a new field or save.&lt;br /&gt;
&lt;br /&gt;
;Yes/No&lt;br /&gt;
:A simple YES/NO question. The Length and Precision parameters are not used so you can leave them as zero. Type your question in the text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Text&lt;br /&gt;
:Allows limited character text entry via a single line text area. Use length to define the visible width of the text box and Precision to determine the maximum number of characters allowed. If Precision is greater than Length then the text will extend within the box. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Essay&lt;br /&gt;
:Allows essay style responses via a multi line text area, with no character limit. Length and Precision define the size of the available text area, although this will scroll. Length determines the number of columns (character width) and Precision the number of rows (lines). This can involve trial and error, although Length: 90, Precision: 7, should be a good general starting estimate. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Radio Buttons&lt;br /&gt;
:Radio buttons provide the user with a choice of options from which they can pick only one. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Check Boxes&lt;br /&gt;
:Check boxes allow the user to select multiple answers from a list of options. Length determines the minimum number of answers require and Precision the maximum number of selections allowed (these may not function fully as implemented). Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Dropdown Box&lt;br /&gt;
:Users select one option from a drop-down list. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Rate (scale 1..5)&lt;br /&gt;
:Allows users to rate statements on a scale from 1 to N, where N is determined by the Length value. If you wish to include a N/A option set Precision to 1 (any non-zero number may work). Type your question or information in the Text area and the list of available statements to be rated in the boxes underneath. You can add more statements using the &#039;&#039;Add another answer line&#039;&#039; button. &lt;br /&gt;
&lt;br /&gt;
;Date&lt;br /&gt;
:Requires users to submit a date. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Numeric&lt;br /&gt;
:Require users to submit a numeric response. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Section Text&lt;br /&gt;
:This is a text field that allows you to present information in between different fields. It does not offer user feedback.&lt;br /&gt;
&lt;br /&gt;
==Arrangement==&lt;br /&gt;
&lt;br /&gt;
The buttons underneath the field setup options, allow you preview the current status of your questionnaire and reorder the question fields. &lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Adding_Questionnaire_questions&amp;diff=8149</id>
		<title>Adding Questionnaire questions</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Adding_Questionnaire_questions&amp;diff=8149"/>
		<updated>2006-04-07T12:01:33Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
Questions are added by defining fields. &lt;br /&gt;
&lt;br /&gt;
==Add/edit fields==&lt;br /&gt;
&lt;br /&gt;
To add a new field click the &#039;&#039;&#039;New Field&#039;&#039;&#039; button. To edit a field click the numbered button corresponding to that field e.g. &#039;&#039;&#039;2&#039;&#039;&#039; for field 2. &lt;br /&gt;
&lt;br /&gt;
==Field types==&lt;br /&gt;
&lt;br /&gt;
For each field type you should use a unique Field Name that allows you to identify it (this will be used if you download responses as a CSV file). You can then select different field types from the drop-down menu. You can choose whether each field is required or optional from the Required? drop-down menu. After each field is complete either add a new field or save.&lt;br /&gt;
&lt;br /&gt;
;Yes/No&lt;br /&gt;
:A simple YES/NO question. The Length and Precision parameters are not used so you can leave them as zero. Type your question in the text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Text&lt;br /&gt;
:Allows limited character text entry via a single line text area. Use length to define the visible width of the text box and Precision to determine the maximum number of characters allowed. If Precision is greater than Length then the text will extend within the box. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Essay&lt;br /&gt;
:Allows essay style responses via a multi line text area, with no character limit. Length and Precision define the size of the available text area, although this will scroll. Length determines the number of columns (character width) and Precision the number of rows (lines). This can involve trial and error, although Length: 90, Precision: 7, should be a good general starting estimate. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Radio Buttons&lt;br /&gt;
:Radio buttons provide the user with a choice of options from which they can pick only one. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Check Boxes&lt;br /&gt;
:Check boxes allow the user to select multiple answers from a list of options. Length determines the minimum number of answers require and Precision the maximum number of selections allowed (these may not function fully as implemented). Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Dropdown Box&lt;br /&gt;
:Users select one option from a drop-down list. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Rate (scale 1..5)&lt;br /&gt;
:Allows users to rate statements on a scale from 1 to N, where N is determined by the Length value. If you wish to include a N/A option set Precision to 1 (any non-zero number may work). Type your question or information in the Text area and the list of available statements to be rated in the boxes underneath. You can add more statements using the &#039;&#039;Add another answer line&#039;&#039; button. &lt;br /&gt;
&lt;br /&gt;
;Date&lt;br /&gt;
:Requires users to submit a date. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Numeric&lt;br /&gt;
:Require users to submit a numeric response. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Section Text&lt;br /&gt;
:This is a text field that allows you to present information in between different fields. It does not offer user feedback.&lt;br /&gt;
&lt;br /&gt;
==Arrangement==&lt;br /&gt;
&lt;br /&gt;
The buttons underneath the field setup options, allow you preview the current status of your questionnaire and reorder the question fields. &lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Viewing_Questionnaire_responses&amp;diff=8148</id>
		<title>Viewing Questionnaire responses</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Viewing_Questionnaire_responses&amp;diff=8148"/>
		<updated>2006-04-07T12:00:01Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
If you click on a questionnaire on a course to which you have editing access, you recieve the option to &#039;&#039;&#039;View &#039;n&#039; responses&#039;&#039;&#039; in the top-right corner, where &#039;n&#039; refers to the number of completed surveys. Clicking this will take you to the &#039;&#039;Survey Reports&#039;&#039; page which gives you a graphical (bar chart) and numerical breakdown of responses using both total and percentage results.&lt;br /&gt;
&lt;br /&gt;
At the bottom of this page you have the option to switch your view between individual responses and all responses and/or download a CSV version of the responses. In the CSV file fields are identified by the name you entered when creating them.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8147</id>
		<title>Template:Questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8147"/>
		<updated>2006-04-07T11:52:26Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;sideblock right&amp;quot; style=&amp;quot;width: 12em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot;&amp;gt;[[Questionnaire]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Adding/editing a questionnaire]]&lt;br /&gt;
* [[Setting up a questionnaire]]&lt;br /&gt;
* [[Adding questions]]&lt;br /&gt;
* [[Viewing responses]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Adding_Questionnaire_questions&amp;diff=8146</id>
		<title>Adding Questionnaire questions</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Adding_Questionnaire_questions&amp;diff=8146"/>
		<updated>2006-04-07T11:51:52Z</updated>

		<summary type="html">&lt;p&gt;Jib: :This is a&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
Questions are added by defining fields. &lt;br /&gt;
&lt;br /&gt;
==Add/edit fields==&lt;br /&gt;
&lt;br /&gt;
To add a new field click the &#039;&#039;&#039;New Field&#039;&#039;&#039; button. To edit a field click the numbered button corresponding to that field e.g. &#039;&#039;&#039;2&#039;&#039;&#039; for field 2. &lt;br /&gt;
&lt;br /&gt;
==Field types==&lt;br /&gt;
&lt;br /&gt;
For each field type you should use a unique Field Name that allows you to identify it. You can then select different field types from the drop-down menu. You can choose whether each field is required or optional from the Required? drop-down menu. After each field is complete either add a new field or save.&lt;br /&gt;
&lt;br /&gt;
;Yes/No&lt;br /&gt;
:A simple YES/NO question. The Length and Precision parameters are not used so you can leave them as zero. Type your question in the text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Text&lt;br /&gt;
:Allows limited character text entry via a single line text area. Use length to define the visible width of the text box and Precision to determine the maximum number of characters allowed. If Precision is greater than Length then the text will extend within the box. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Essay&lt;br /&gt;
:Allows essay style responses via a multi line text area, with no character limit. Length and Precision define the size of the available text area, although this will scroll. Length determines the number of columns (character width) and Precision the number of rows (lines). This can involve trial and error, although Length: 90, Precision: 7, should be a good general starting estimate. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Radio Buttons&lt;br /&gt;
:Radio buttons provide the user with a choice of options from which they can pick only one. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Check Boxes&lt;br /&gt;
:Check boxes allow the user to select multiple answers from a list of options. Length determines the minimum number of answers require and Precision the maximum number of selections allowed (these may not function fully as implemented). Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Dropdown Box&lt;br /&gt;
:Users select one option from a drop-down list. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area and the list of available options in the boxes underneath. You can add more possibilities using the &#039;&#039;Add another answer line&#039;&#039; button and add an other text field using &#039;&#039;&#039;!other&#039;&#039;&#039; as a possible answer. &lt;br /&gt;
&lt;br /&gt;
;Rate (scale 1..5)&lt;br /&gt;
:Allows users to rate statements on a scale from 1 to N, where N is determined by the Length value. If you wish to include a N/A option set Precision to 1 (any non-zero number may work). Type your question or information in the Text area and the list of available statements to be rated in the boxes underneath. You can add more statements using the &#039;&#039;Add another answer line&#039;&#039; button. &lt;br /&gt;
&lt;br /&gt;
;Date&lt;br /&gt;
:Requires users to submit a date. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Numeric&lt;br /&gt;
:Require users to submit a numeric response. This field ignores the Length and Precision parameters so you can leave them. Type your question or information in the Text area. You do not need to supply possible answers for this field.&lt;br /&gt;
&lt;br /&gt;
;Section Text&lt;br /&gt;
:This is a text field that allows you to present information in between different fields. It does not offer user feedback.&lt;br /&gt;
&lt;br /&gt;
==Arrangement==&lt;br /&gt;
&lt;br /&gt;
The buttons underneath the field setup options, allow you preview the current status of your questionnaire and reorder the question fields. &lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8145</id>
		<title>Setting up a questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8145"/>
		<updated>2006-04-07T10:47:06Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
If you are creating a new survey or editing an existing template you will be able to define the overall settings via the Editing survey page.&lt;br /&gt;
&lt;br /&gt;
==Name==&lt;br /&gt;
&lt;br /&gt;
Give your questionnaire a filename, the defualt is to use the title from the [[Adding/editing a questionnaire|adding a questionnaire]] form. The name entered here will be how this questionnaire is identified in future, especially if it is a template or public questionnaire.&lt;br /&gt;
&lt;br /&gt;
==Owner==&lt;br /&gt;
&lt;br /&gt;
This is determined in the [[Adding/editing a questionnaire|adding a questionnaire]] options. &lt;br /&gt;
&lt;br /&gt;
==Title/Sub-title==&lt;br /&gt;
&lt;br /&gt;
Give the questionnaire a title and optional sub-title. The title will appear on every page of the survey.&lt;br /&gt;
&lt;br /&gt;
==Additional Info==&lt;br /&gt;
&lt;br /&gt;
This will appear before the questions of your survey and should include any relevant details on the purpose of the questionnaire and instructions for completion.&lt;br /&gt;
&lt;br /&gt;
==Confirmation Page==&lt;br /&gt;
&lt;br /&gt;
If you have created a custom completion page you can enter the URL to it here, or you can type in the title and text you would like displayed as a confirmation page for users who complete the survey.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
If you want copies of each submission emailed to an address fill it out here.&lt;br /&gt;
&lt;br /&gt;
==Theme==&lt;br /&gt;
&lt;br /&gt;
Select a theme for your questionnaire. These appear to be stored in &amp;quot;mod\questionnaire\phpESP\public\css&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8144</id>
		<title>Setting up a questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8144"/>
		<updated>2006-04-07T10:46:44Z</updated>

		<summary type="html">&lt;p&gt;Jib: /* Name */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
If you are creating a new survey or editing an existing template you will be able to define the overall settings via the Editing survey page.&lt;br /&gt;
&lt;br /&gt;
==Name==&lt;br /&gt;
&lt;br /&gt;
Give your questionnaire a filename, the defualt is to use the title from the. The name entered here will be how this questionnaire is identified in future, especially if it is a template or public questionnaire.&lt;br /&gt;
&lt;br /&gt;
==Owner==&lt;br /&gt;
&lt;br /&gt;
This is determined in the [[Adding/editing a questionnaire|adding a questionnaire]] options. &lt;br /&gt;
&lt;br /&gt;
==Title/Sub-title==&lt;br /&gt;
&lt;br /&gt;
Give the questionnaire a title and optional sub-title. The title will appear on every page of the survey.&lt;br /&gt;
&lt;br /&gt;
==Additional Info==&lt;br /&gt;
&lt;br /&gt;
This will appear before the questions of your survey and should include any relevant details on the purpose of the questionnaire and instructions for completion.&lt;br /&gt;
&lt;br /&gt;
==Confirmation Page==&lt;br /&gt;
&lt;br /&gt;
If you have created a custom completion page you can enter the URL to it here, or you can type in the title and text you would like displayed as a confirmation page for users who complete the survey.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
If you want copies of each submission emailed to an address fill it out here.&lt;br /&gt;
&lt;br /&gt;
==Theme==&lt;br /&gt;
&lt;br /&gt;
Select a theme for your questionnaire. These appear to be stored in &amp;quot;mod\questionnaire\phpESP\public\css&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8141</id>
		<title>Setting up a questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8141"/>
		<updated>2006-04-07T10:42:37Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
If you are creating a new survey or editing an existing template you will be able to define the overall settings via the Editing survey page.&lt;br /&gt;
&lt;br /&gt;
==Name==&lt;br /&gt;
&lt;br /&gt;
Give your questionnaire a filename (e.g. “Feedback”). The name entered here will be how this questionnaire is identified in future, especially if it is a template or public questionnaire.&lt;br /&gt;
&lt;br /&gt;
==Owner==&lt;br /&gt;
&lt;br /&gt;
This is determined in the [[Adding/editing a questionnaire|adding a questionnaire]] options. &lt;br /&gt;
&lt;br /&gt;
==Title/Sub-title==&lt;br /&gt;
&lt;br /&gt;
Give the questionnaire a title and optional sub-title. The title will appear on every page of the survey.&lt;br /&gt;
&lt;br /&gt;
==Additional Info==&lt;br /&gt;
&lt;br /&gt;
This will appear before the questions of your survey and should include any relevant details on the purpose of the questionnaire and instructions for completion.&lt;br /&gt;
&lt;br /&gt;
==Confirmation Page==&lt;br /&gt;
&lt;br /&gt;
If you have created a custom completion page you can enter the URL to it here, or you can type in the title and text you would like displayed as a confirmation page for users who complete the survey.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
If you want copies of each submission emailed to an address fill it out here.&lt;br /&gt;
&lt;br /&gt;
==Theme==&lt;br /&gt;
&lt;br /&gt;
Select a theme for your questionnaire. These appear to be stored in &amp;quot;mod\questionnaire\phpESP\public\css&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8140</id>
		<title>Setting up a questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8140"/>
		<updated>2006-04-07T10:34:04Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
If you are creating a new survey or editing an existing template you will be able to define the overall settings via the Editing survey page.&lt;br /&gt;
&lt;br /&gt;
==Name==&lt;br /&gt;
&lt;br /&gt;
Give your questionnaire a filename (e.g. “Feedback”). The name entered here will be how this questionnaire is identified in future, especially if it is a template or public questionnaire.&lt;br /&gt;
&lt;br /&gt;
==Owner==&lt;br /&gt;
&lt;br /&gt;
This is determined in the [[Adding/editing a questionnaire|adding a questionnaire]] options. &lt;br /&gt;
&lt;br /&gt;
==Title/Sub-title==&lt;br /&gt;
&lt;br /&gt;
Give the questionnaire a title and optional sub-title. The title will appear on every page of the survey.&lt;br /&gt;
&lt;br /&gt;
==Additional Info==&lt;br /&gt;
&lt;br /&gt;
This will appear before the questions of your survey and should include any relevant details on the purpose of the questionnaire and instructions for completion.&lt;br /&gt;
&lt;br /&gt;
==Confirmation Page==&lt;br /&gt;
&lt;br /&gt;
If you have created a custom completion page you can enter the URL to it here, or you can type in the title and text you would like displayed as a confirmation page for users who complete the survey.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
If you want copies of each submission emailed to an address fill it out here.&lt;br /&gt;
&lt;br /&gt;
==Theme==&lt;br /&gt;
&lt;br /&gt;
Select a theme for your questionnaire. These appear to be stored in &amp;quot;mod\questionnaire\phpESP\public\css&amp;quot;&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8139</id>
		<title>Setting up a questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Setting_up_a_questionnaire&amp;diff=8139"/>
		<updated>2006-04-07T10:33:25Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
If you are creating a new survey or editing an existing template you will be able to define the overall settings via the Editing survey page.&lt;br /&gt;
&lt;br /&gt;
==Name==&lt;br /&gt;
&lt;br /&gt;
Give your questionnaire a filename (e.g. “Feedback”). The name entered here will be how this questionnaire is identified in future, especially if it is a template or public questionnaire.&lt;br /&gt;
&lt;br /&gt;
==Owner==&lt;br /&gt;
&lt;br /&gt;
This is determined in the [[Adding/editing a questionnaire|adding a questionnaire]] options. &lt;br /&gt;
&lt;br /&gt;
==Title/Sub-title==&lt;br /&gt;
&lt;br /&gt;
Give the questionnaire a title and optional sub-title. The title will appear on every page of the survey.&lt;br /&gt;
&lt;br /&gt;
==Additional Info==&lt;br /&gt;
&lt;br /&gt;
This will appear before the questions of your survey and should include any relevant details on the purpose of the questionnaire and instructions for completion.&lt;br /&gt;
&lt;br /&gt;
==Confirmation Page==&lt;br /&gt;
&lt;br /&gt;
If you have created a custom completion page you can enter the URL to it here, or you can type in the title and text you would like displayed as a confirmation page for users who complete the survey.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
If you want copies of each submission emailed to an address fill it out here.&lt;br /&gt;
&lt;br /&gt;
==Theme==&lt;br /&gt;
&lt;br /&gt;
Select a theme for your questionnaire. These appear to be stored -&amp;gt; mod\questionnaire\phpESP\public\css&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8138</id>
		<title>Template:Questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8138"/>
		<updated>2006-04-07T10:04:07Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;sideblock right&amp;quot; style=&amp;quot;width: 12em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot;&amp;gt;[[Questionnaire]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Adding/editing a questionnaire]]&lt;br /&gt;
* [[Setting up a questionnaire]]&lt;br /&gt;
* [[Adding questions]]&lt;br /&gt;
* [[Viewing a questionnaire]]&lt;br /&gt;
* [[Viewing responses]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Adding/editing_a_questionnaire&amp;diff=8137</id>
		<title>Adding/editing a questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Adding/editing_a_questionnaire&amp;diff=8137"/>
		<updated>2006-04-07T09:49:21Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
==Name==&lt;br /&gt;
&lt;br /&gt;
Give your questionnaire a name (e.g. “Feedback”). The name entered here will be the name that learners see in the course content area. Learners will click on this name to view the feedback form.&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
&lt;br /&gt;
Provide a summary of the assignment if necessary. There will be options later to add instructions and information for completing the questionnaire. &lt;br /&gt;
&lt;br /&gt;
==Open/Close dates==&lt;br /&gt;
&lt;br /&gt;
Set the date window for when users can complete the questionnaire. You can leave the boxes unchecked if you want the questionnaire to be continually available. &lt;br /&gt;
&lt;br /&gt;
==Type==&lt;br /&gt;
&lt;br /&gt;
Decide whether users are allowed to respond once or can repeatedly respond to adjust their feedback.&lt;br /&gt;
&lt;br /&gt;
==Respondent Type==&lt;br /&gt;
&lt;br /&gt;
Determine whether the questionnaire will be submitted anonymously or with the user&#039;s name. You will still need to be logged in to a course to complete the questionnaire.&lt;br /&gt;
&lt;br /&gt;
==Respondent Eligibility==&lt;br /&gt;
&lt;br /&gt;
Decide whether everyone can answer or whether you want to restrict it to tutor only or student only responses.&lt;br /&gt;
&lt;br /&gt;
==Questionnaire type==&lt;br /&gt;
&lt;br /&gt;
;Private&lt;br /&gt;
:Only available on the course it was set up in.&lt;br /&gt;
&lt;br /&gt;
;Public&lt;br /&gt;
:Allows the questionnaire to be shared across multiple courses. Questions/content are maintained by the original creator.&lt;br /&gt;
&lt;br /&gt;
;Template&lt;br /&gt;
:Creates a template for a questionnaire that can be used when new questionnaires are created. This questionnaire is not used directly but stored for future use.&lt;br /&gt;
&lt;br /&gt;
==Save/Resume answers==&lt;br /&gt;
&lt;br /&gt;
Decide whether the questionnaire can be saved and completed over a period of time, or whether it needs to be completed in one go.&lt;br /&gt;
&lt;br /&gt;
==Survey Options==&lt;br /&gt;
&lt;br /&gt;
;Create new&lt;br /&gt;
:Define a new set of survey questions and responses&lt;br /&gt;
&lt;br /&gt;
;Copy existing&lt;br /&gt;
:Use a previously created template as the basis for your questionnaire - you can edit some questions/content.&lt;br /&gt;
&lt;br /&gt;
;Use public&lt;br /&gt;
:Use a previously created public survey - you cannot edit the questions/content.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8132</id>
		<title>Template:Questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8132"/>
		<updated>2006-04-07T09:13:05Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;sideblock right&amp;quot; style=&amp;quot;width: 12em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot;&amp;gt;[[Questionnaire]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Adding/editing a questionnaire]]&lt;br /&gt;
* [[Adding questions]]&lt;br /&gt;
* [[Viewing a questionnaire]]&lt;br /&gt;
* [[Viewing responses]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8131</id>
		<title>Template:Questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8131"/>
		<updated>2006-04-07T09:11:46Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;sideblock right&amp;quot; style=&amp;quot;width: 12em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot;&amp;gt;[[Questionnaire]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Creating a questionnaire]]&lt;br /&gt;
* [[Adding questions]]&lt;br /&gt;
* [[Viewing a questionnaire]]&lt;br /&gt;
* [[Viewing responses]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8130</id>
		<title>Template:Questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8130"/>
		<updated>2006-04-07T08:59:56Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;sideblock right&amp;quot; style=&amp;quot;width: 12em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot;&amp;gt;[[Questionnaire]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Creating a questionnaire]]&lt;br /&gt;
* [[Viewing a questionnaire]]&lt;br /&gt;
* [[Viewing responses]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8129</id>
		<title>Template:Questionnaire</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Template:Questionnaire&amp;diff=8129"/>
		<updated>2006-04-07T08:58:41Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div class=&amp;quot;sideblock right&amp;quot; style=&amp;quot;width: 12em;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;header&amp;quot;&amp;gt;[[Questionnaire module|Questionnaire]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;div class=&amp;quot;content&amp;quot;&amp;gt;&lt;br /&gt;
* [[Creating a questionnaire]]&lt;br /&gt;
* [[Viewing a questionnaire]]&lt;br /&gt;
* [[Viewing responses]]&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8128</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8128"/>
		<updated>2006-04-07T08:57:10Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8127</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8127"/>
		<updated>2006-04-07T08:56:59Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Databases}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8065</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8065"/>
		<updated>2006-04-05T14:54:43Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8052</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8052"/>
		<updated>2006-04-05T13:37:02Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Questionnaire}}&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=User:James_Ballard&amp;diff=8043</id>
		<title>User:James Ballard</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=User:James_Ballard&amp;diff=8043"/>
		<updated>2006-04-05T12:07:13Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I am the VLE Administrator at Barking College, and in case you didn&#039;t guess we use Moodle.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=User:James_Ballard&amp;diff=8042</id>
		<title>User:James Ballard</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=User:James_Ballard&amp;diff=8042"/>
		<updated>2006-04-05T12:06:59Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hello&lt;br /&gt;
&lt;br /&gt;
I am the VLE Administrator at Barking College, and in case you didn&#039;t case we use Moodle.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8039</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8039"/>
		<updated>2006-04-05T11:59:59Z</updated>

		<summary type="html">&lt;p&gt;Jib: /* Questionnaire */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8037</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8037"/>
		<updated>2006-04-05T11:59:50Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Questionnaire==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8036</id>
		<title>Questionnaire module</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=Questionnaire_module&amp;diff=8036"/>
		<updated>2006-04-05T11:59:36Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Questionnaire==&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;Questionnaire&#039;&#039;&#039; module allows users to complete online feedback style forms using a variety of user input methods.&lt;br /&gt;
&lt;br /&gt;
[[Add a questionnaire]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
	<entry>
		<id>https://docs.moodle.org/39/en/index.php?title=HTML&amp;diff=6807</id>
		<title>HTML</title>
		<link rel="alternate" type="text/html" href="https://docs.moodle.org/39/en/index.php?title=HTML&amp;diff=6807"/>
		<updated>2006-03-07T11:57:49Z</updated>

		<summary type="html">&lt;p&gt;Jib: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;HTML&#039;&#039;&#039; block is for adding additional text or images.&lt;br /&gt;
&lt;br /&gt;
It allows a flexible block that can incorporate a variety of functions and uses. Whilst providing a HTML editor for formatting text, adding images or creating links, switching to code view allows any valid HTML markup to be used. This enables embedding video, sounds, flash, and other files which can add unique elements to your course page.&lt;br /&gt;
&lt;br /&gt;
[[Category:Teacher]]&lt;br /&gt;
[[Category:Block]]&lt;/div&gt;</summary>
		<author><name>Jib</name></author>
	</entry>
</feed>