Moodle Plugins directory: Questionnaire | Moodle.org
Questionnaire
Activities ::: mod_questionnaire
Maintained by
Mike Churchward
Custom Survey Creation
Latest release:
16234 sites
3k downloads
246 fans
Current versions available: 20
Create your own surveys using this tool.
SUPPORT DISCUSSION: http://moodle.org/mod/forum/view.php?id=2642
DEVELOPERS NOTE - Questionnaire is tracked in Github at https://github.com/remotelearner/moodle-mod_questionnaire. Contact Mike Churchward if you want "push" access.
(originally based on phpESP)
/plugins/mod
Contributors
Mike Churchward (Lead maintainer)
Joseph Rézeau: Former co-maintainer
Please login to view contributors details and/or to contact them
If you set your user language to Indonesian Bahasa, then you'll see that most (but not all) of the Questionnaire strings are available in that language. If you need all language strings to be available in Indonesian Bahasa, then you can translate them yourself on https://lang.moodle.org/
If you could provide a sample questionnaire (in text format) then I might create a Moodle Questionnaire to find out if it suits your requirements. Please contact me at my e-mail address in my Moodle user profile.
When it's ready.
i had to update in Moodle 4.5 in a few months.
Is a compatible version planned?
Or is it possible to use version 4.4?
Thank you.
Let me know, please, if you find any other problems with the Questionnaire plugin version 4.1.1 (Build - 2024082900) (2022121601) in Moodle 4.5.x
See this Moodle forum H5P discussion where a fix is provided: https://moodle.org/mod/forum/discuss.php?d=463097
I see that the code (Github) has changed a lot in the last few weeks. When can we expect the new version to be published? Thank you for your work!
(Questonnare is one of the most important and most used Moodle plugins and should have been in core long ago)
Thanks a LOT! I tested the Questionnaire plugin (the one from GitHub that you directed me to), and it seems to work fine, except for one minor but annoying thing. Namely, when you try to move questions to change their order, the location icons look super small. I asked ChatGPT to solve the problem, and it provided a simple solution by amending the style.css file at the end of it with the following snippet:
/* Fix for tiny move location icons in Moodle 5.0 Questionnaire */
#page-mod-questionnaire-questions input[type="image"][title="Move here"],
#page-mod-questionnaire-questions input[type="image"][alt="Move here"] {
width: 32px !important;
height: 32px !important;
max-width: 32px !important;
max-height: 32px !important;
padding: 2px;
}
On my Moodle version 5.1 I am using Questionnaire mod_questionnaire 4.4.0 (Build - 2024082900) 2022121601.01 from the github at https://github.com/PoetOS/moodle-mod_questionnaire and cannot see the problem you describe.
The mlang2 filter is not applied consistently.
Let's assume a rate type questionnaire with 2 scale items and the following "Named degrees":
--------------------------------------------------------------------
0=some html 😟 /some html
{mlang EN}bla..bla{mlang}
{mlang RO}bla..bla{mlang}
1=bla..bla
--------------------------------------------------------------------
When the teacher wants to see:
1) "List of responses" (every html tags are displayed in clear; mlang2 tags are NOT processed, all are displayed)
2) "Summary" (mlang2 tags are NOT processed, all are displayed)
This bug(s) appears in the header (named degrees); only the question text is displayed correctly every time!