Note: This documentation is for Moodle 2.7. For up-to-date documentation see Questions FAQ.

Questions FAQ: Difference between revisions

From MoodleDocs
m (added 2.8 version)
(Added ==Is there a way to set the default for essay questions on our site to allow uploading of one attachment?==)
 
Line 9: Line 9:
==Is there a question creation module for Moodle 2.x==
==Is there a question creation module for Moodle 2.x==
Yes. See [https://moodle.org/mod/forum/discuss.php?d=88579 this forum thread]. It is currently available for Moodle 2.7 and 2.8 from the author's [https://github.com/jmvedrine/qcreate Github].
Yes. See [https://moodle.org/mod/forum/discuss.php?d=88579 this forum thread]. It is currently available for Moodle 2.7 and 2.8 from the author's [https://github.com/jmvedrine/qcreate Github].
==Is there a way to set the default for essay questions on our site to allow uploading of one attachment?==
The only way to change this at the moment is by editing the code.
In question/type/essay/edit_essay_form.php, find where it sets the default for 'attachments'  to 0, and change that to 1.
Note that, after changing the data in the DB, you will need to go to admin -> plugins -> caching and purge the Question definitions cache. Or just purge all caches.


==See also==
==See also==

Latest revision as of 13:24, 28 November 2014


How can questions be shared between courses?

See How to let teachers share questions between courses

If I change a question in the question bank, will it be changed in all the quizzes it appears?

Yes. See Tim Hunt's forum post https://moodle.org/mod/forum/discuss.php?d=234011&parent=1016542#p1016558

Is there a question creation module for Moodle 2.x

Yes. See this forum thread. It is currently available for Moodle 2.7 and 2.8 from the author's Github.

Is there a way to set the default for essay questions on our site to allow uploading of one attachment?

The only way to change this at the moment is by editing the code.

In question/type/essay/edit_essay_form.php, find where it sets the default for 'attachments' to 0, and change that to 1.

Note that, after changing the data in the DB, you will need to go to admin -> plugins -> caching and purge the Question definitions cache. Or just purge all caches.

See also