Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/philippimhof/moodle-quiz_essaydownload
Quiz report plugin for the Moodle LMS, allowing to bulk download student responses and attachments to essay questions
https://github.com/philippimhof/moodle-quiz_essaydownload
Last synced: 23 days ago
JSON representation
Quiz report plugin for the Moodle LMS, allowing to bulk download student responses and attachments to essay questions
- Host: GitHub
- URL: https://github.com/philippimhof/moodle-quiz_essaydownload
- Owner: PhilippImhof
- Created: 2024-04-25T07:05:26.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-09-07T15:57:00.000Z (5 months ago)
- Last Synced: 2024-09-07T18:47:34.125Z (4 months ago)
- Language: PHP
- Size: 101 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
Awesome Lists containing this project
README
![GitHub Release](https://img.shields.io/github/v/release/PhilippImhof/moodle-quiz_essaydownload)
[![Automated code checks](https://github.com/PhilippImhof/moodle-quiz_essaydownload/actions/workflows/checks.yml/badge.svg)](https://github.com/PhilippImhof/moodle-quiz_essaydownload/actions/workflows/checks.yml) [![Automated testing](https://github.com/PhilippImhof/moodle-quiz_essaydownload/actions/workflows/testing.yml/badge.svg)](https://github.com/PhilippImhof/moodle-quiz_essaydownload/actions/workflows/testing.yml)moodle-quiz_essaydownload
-------------------------This is a quiz report plugin that allows bulk downloading of text answers and attachment files submitted in response to essay questions in a quiz.
It has been inspired by the [quiz_downloadsubmissions](https://github.com/IITBombayWeb/moodle-quiz_downloadsubmissions) plugin which offers similar functionality.
#### Installation
Install the plugin to the folder `$MOODLE_ROOT/mod/quiz/report/essaydownload`.
For more information, please see the [Moodle docs](https://docs.moodle.org/en/Installing_plugins).
#### Usage
1. Go to a quiz.
2. Click on "Results" in order to access the results tab.
3. From the dropdown menu, choose "Download essay responses".
4. Set the available options according to your needs.
5. Click "Download".The plugin will then generate a ZIP archive containing the requested data and initiate
the download in your browser.Note: No confirmation will be shown. Once you get your ZIP file, the work is done.
#### Grouping by attempt or question?
You can group the data in two different ways. If you group by attempt, your ZIP file will
have the following structure:* StudentX/Question1
* StudentX/Question2
* StudentY/Question1
* StudentY/Question2If you group by question, the structure will be as follows:
* Question1/StudentX
* Question1/StudentY
* Question2/StudentX
* Question2/StudentY