Structured feedback
Versions
Current version
v5.0.0 (Build: 20251030) (2025103000)
v5.0.0 (Build: 20251030)
Plugin type: Assignment feedbacks
Frankenstyle component name: assignfeedback_structured
Version build number: 2025103000
Version release name: v5.0.0 (Build: 20251030)
Maturity: Stable
Supported Moodle versions: 5.0, 5.1, 5.2
Repository URL (Git): https://github.com/lucisgit/moodle-assignfeedback_structured
Repository branch: MOODLE_500_STABLE
Repository tag: v5.0.0
Issue/bug tracker URL: https://github.com/lucisgit/moodle-assignfeedback_structured/issues
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see http://www.gnu.org/licenses/.
package assignfeedback_structured
copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
author Tony Butler <a.butler4@lancaster.ac.uk>
Structured feedback assignment subplugin for Moodle
The structured feedback assignment subplugin enables teachers to define
any number of criteria on which to provide individual feedback comments
for a student's assignment submission.
The configured 'criteria set' can then be saved for easy reuse in other
assignments. Given the appropriate permissions the teacher can also
choose to share their saved criteria sets with other teachers within
the same Moodle site.
Changelog
2025-10-30 v5.0.0
- Modernize JavaScript and use newer core modal module
- Update templates and JavaScript for Bootstrap 5
- Add option to enable/disable plugin instance (#1)
- Address new issues identified by Moodle code checker
2024-10-10 v4.5.0
- Fix minor UI display issues and form layout for Moodle 4.5
- Address new issues identified by Moodle code checker
2023-06-30 v4.1.1
- Add site defaults for first criterion name and description
2022-12-14 v4.1.0
- Add new lang string to replace one removed from core
- Address new issues identified by Moodle code checker
2022-04-22 v4.0.0
- Increase specificity of criteria set toggle selector
- Rebuild JavaScript and address JSDoc issues identified
2021-09-27 v3.9.1
- Add Moodle plugin CI github action tests
- Address issues identified by code prechecker
2021-09-24 v3.9.0
- Add support for files in feedback comments
- Fix bug preventing criteria sets being saved
- Fix lost comment updates on grading validation failure
- Include criterion name in field description
- Update additional criteria fields template
2019-06-11 v3.5.1
- Bootstrap updates + accessibility adjustments
- Add support for pushing feedback to gradebook
2018-09-28 v3.5.0
- Enable criteria details to be styled easily
- Hide user summary if no criteria are defined
- Add privacy provider for GDPR support
2017-06-21 v3.3.1
- Use placeholder for quickgrading description
- Don't empty config if it's already empty
- Replace public (reserved in JS) with shared
- Address remaining code prechecker issues
2017-06-14 v3.3.0
- Initial stable release
Installation
Installing from the Git repository (recommended if you installed Moodle
from Git):
Follow the instructions at
https://docs.moodle.org/501/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 5.1.x code:
$ cd /path/to/your/moodle/
$ cd public/mod/assign/feedback/
$ git clone https://github.com/tonyjbutler/moodle-assignfeedback_structured.git structured
$ cd structured/
$ git checkout -b MOODLE_501_STABLE origin/MOODLE_501_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo public/mod/assign/feedback/structured/ >> .git/info/exclude
Installing from a zip archive downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured:
- Download and unzip the appropriate release for your version of
Moodle. - Copy the extracted "structured" folder into your
"public/mod/assign/feedback/" subdirectory.
Whichever method you use to get the plugin code in place, the final
step is to visit your Site Administration > Notifications page in a
browser to invoke the installation script and make the necessary
database changes.
Updating Moodle
If you installed Moodle and the Structured feedback plugin from Git you
can run the following commands to update both (see
https://docs.moodle.org/501/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
$ cd /path/to/your/moodle/
$ git pull
$ cd public/mod/assign/feedback/structured/
$ git pull
If you installed from a zip archive you will need to repeat the
installation procedure using the appropriate zip file downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured
for your new Moodle version.
v4.5.0 (Build: 20241010) (2024101000)
v4.5.0 (Build: 20241010)
Plugin type: Assignment feedbacks
Frankenstyle component name: assignfeedback_structured
Version build number: 2024101000
Version release name: v4.5.0 (Build: 20241010)
Maturity: Stable
Supported Moodle versions: 4.3, 4.4, 4.5
Repository URL (Git): https://github.com/lucisgit/moodle-assignfeedback_structured
Repository branch: MOODLE_405_STABLE
Repository tag: v4.5.0
Issue/bug tracker URL: https://github.com/lucisgit/moodle-assignfeedback_structured/issues
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see http://www.gnu.org/licenses/.
package assignfeedback_structured
copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
author Tony Butler <a.butler4@lancaster.ac.uk>
Structured feedback assignment subplugin for Moodle
The structured feedback assignment subplugin enables teachers to define
any number of criteria on which to provide individual feedback comments
for a student's assignment submission.
The configured 'criteria set' can then be saved for easy reuse in other
assignments. Given the appropriate permissions the teacher can also
choose to share their saved criteria sets with other teachers within
the same Moodle site.
Changelog
2024-10-10 v4.5.0
- Fix minor UI display issues and form layout for Moodle 4.5
- Address new issues identified by Moodle code checker
2023-06-30 v4.1.1
- Add site defaults for first criterion name and description
2022-12-14 v4.1.0
- Add new lang string to replace one removed from core
- Address new issues identified by Moodle code checker
2022-04-22 v4.0.0
- Increase specificity of criteria set toggle selector
- Rebuild JavaScript and address JSDoc issues identified
2021-09-27 v3.9.1
- Add Moodle plugin CI github action tests
- Address issues identified by code prechecker
2021-09-24 v3.9.0
- Add support for files in feedback comments
- Fix bug preventing criteria sets being saved
- Fix lost comment updates on grading validation failure
- Include criterion name in field description
- Update additional criteria fields template
2019-06-11 v3.5.1
- Bootstrap updates + accessibility adjustments
- Add support for pushing feedback to gradebook
2018-09-28 v3.5.0
- Enable criteria details to be styled easily
- Hide user summary if no criteria are defined
- Add privacy provider for GDPR support
2017-06-21 v3.3.1
- Use placeholder for quickgrading description
- Don't empty config if it's already empty
- Replace public (reserved in JS) with shared
- Address remaining code prechecker issues
2017-06-14 v3.3.0
- Initial stable release
Installation
Installing from the Git repository (recommended if you installed Moodle
from Git):
Follow the instructions at
https://docs.moodle.org/405/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 4.5.x code:
$ cd /path/to/your/moodle/
$ cd mod/assign/feedback/
$ git clone https://github.com/tonyjbutler/moodle-assignfeedback_structured.git structured
$ cd structured/
$ git checkout -b MOODLE_405_STABLE origin/MOODLE_405_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo /mod/assign/feedback/structured/ >> .git/info/exclude
Installing from a zip archive downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured:
- Download and unzip the appropriate release for your version of
Moodle. - Copy the extracted "structured" folder into your
"/mod/assign/feedback/" subdirectory.
Whichever method you use to get the plugin code in place, the final
step is to visit your Site Administration > Notifications page in a
browser to invoke the installation script and make the necessary
database changes.
Updating Moodle
If you installed Moodle and the Structured feedback plugin from Git you
can run the following commands to update both (see
https://docs.moodle.org/405/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
$ cd /path/to/your/moodle/
$ git pull
$ cd mod/assign/feedback/structured/
$ git pull
If you installed from a zip archive you will need to repeat the
installation procedure using the appropriate zip file downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured
for your new Moodle version.
4.1.1 (Build: 20230630) (2023063000)
4.1.1 (Build: 20230630)
Plugin type: Assignment feedbacks
Frankenstyle component name: assignfeedback_structured
Version build number: 2023063000
Version release name: 4.1.1 (Build: 20230630)
Maturity: Stable
Supported Moodle versions: 3.11, 4.0, 4.1, 4.2, 4.3
Repository URL (Git): https://github.com/lucisgit/moodle-assignfeedback_structured
Repository branch: MOODLE_401_STABLE
Repository tag: v4.1.1
Issue/bug tracker URL: https://github.com/lucisgit/moodle-assignfeedback_structured/issues
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see .
package assignfeedback_structured
copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
author Tony Butler
Structured feedback assignment subplugin for Moodle
The structured feedback assignment subplugin enables teachers to define
any number of criteria on which to provide individual feedback comments
for a student's assignment submission.
The configured 'criteria set' can then be saved for easy reuse in other
assignments. Given the appropriate permissions the teacher can also
choose to share their saved criteria sets with other teachers within
the same Moodle site.
Changelog
2023-06-30 v4.1.1
- Add site defaults for first criterion name and description
2022-12-14 v4.1.0
- Add new lang string to replace one removed from core
- Address new issues identified by Moodle code checker
2022-04-22 v4.0.0
- Increase specificity of criteria set toggle selector
- Rebuild JavaScript and address JSDoc issues identified
2021-09-27 v3.9.1
- Add Moodle plugin CI github action tests
- Address issues identified by code prechecker
2021-09-24 v3.9.0
- Add support for files in feedback comments
- Fix bug preventing criteria sets being saved
- Fix lost comment updates on grading validation failure
- Include criterion name in field description
- Update additional criteria fields template
2019-06-11 v3.5.1
- Bootstrap updates + accessibility adjustments
- Add support for pushing feedback to gradebook
2018-09-28 v3.5.0
- Enable criteria details to be styled easily
- Hide user summary if no criteria are defined
- Add privacy provider for GDPR support
2017-06-21 v3.3.1
- Use placeholder for quickgrading description
- Don't empty config if it's already empty
- Replace public (reserved in JS) with shared
- Address remaining code prechecker issues
2017-06-14 v3.3.0
- Initial stable release
Installation
Installing from the Git repository (recommended if you installed Moodle
from Git):
Follow the instructions at
https://docs.moodle.org/401/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 4.1.x code:
$ cd /path/to/your/moodle/
$ cd mod/assign/feedback/
$ git clone https://github.com/tonyjbutler/moodle-assignfeedback_structured.git structured
$ cd structured/
$ git checkout -b MOODLE_401_STABLE origin/MOODLE_401_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo /mod/assign/feedback/structured/ >> .git/info/exclude
Installing from a zip archive downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured:
- Download and unzip the appropriate release for your version of
Moodle. - Copy the extracted "structured" folder into your
"/mod/assign/feedback/" subdirectory.
Whichever method you use to get the plugin code in place, the final
step is to visit your Site Administration > Notifications page in a
browser to invoke the installation script and make the necessary
database changes.
Updating Moodle
If you installed Moodle and the Structured feedback plugin from Git you
can run the following commands to update both (see
https://docs.moodle.org/401/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
$ cd /path/to/your/moodle/
$ git pull
$ cd mod/assign/feedback/structured/
$ git pull
If you installed from a zip archive you will need to repeat the
installation procedure using the appropriate zip file downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured
for your new Moodle version.
3.9.1 (Build: 20210927) (2021092700)
3.9.1 (Build: 20210927)
Plugin type: Assignment feedbacks
Frankenstyle component name: assignfeedback_structured
Version build number: 2021092700
Version release name: 3.9.1 (Build: 20210927)
Maturity: Stable
Supported Moodle versions: 3.10, 3.11, 3.9
Repository URL (Git): https://github.com/lucisgit/moodle-assignfeedback_structured
Repository branch: MOODLE_39_STABLE
Repository tag: v3.9.1
Issue/bug tracker URL: https://github.com/lucisgit/moodle-assignfeedback_structured/issues
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see http://www.gnu.org/licenses/.
package assignfeedback_structured
copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
author Tony Butler a.butler4@lancaster.ac.uk
Structured feedback assignment subplugin for Moodle
The structured feedback assignment subplugin enables teachers to define
any number of criteria on which to provide individual feedback comments
for a student's assignment submission.
The configured 'criteria set' can then be saved for easy reuse in other
assignments. Given the appropriate permissions the teacher can also
choose to share their saved criteria sets with other teachers within
the same Moodle site.
Changelog
2021-09-27 v3.9.1
- Add Moodle plugin CI github action tests
- Address issues identified by code prechecker
2021-09-24 v3.9.0
- Add support for files in feedback comments
- Fix bug preventing criteria sets being saved
- Fix lost comment updates on grading validation failure
- Include criterion name in field description
- Update additional criteria fields template
2019-06-11 v3.5.1
- Bootstrap updates + accessibility adjustments
- Add support for pushing feedback to gradebook
2018-09-28 v3.5.0
- Enable criteria details to be styled easily
- Hide user summary if no criteria are defined
- Add privacy provider for GDPR support
2017-06-21 v3.3.1
- Use placeholder for quickgrading description
- Don't empty config if it's already empty
- Replace public (reserved in JS) with shared
- Address remaining code prechecker issues
2017-06-14 v3.3.0
- Initial stable release
Installation
Installing from the Git repository (recommended if you installed Moodle
from Git):
Follow the instructions at
http://docs.moodle.org/39/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 3.9.x code:
$ cd /path/to/your/moodle/
$ cd mod/assign/feedback/
$ git clone https://github.com/tonyjbutler/moodle-assignfeedback_structured.git structured
$ cd structured/
$ git checkout -b MOODLE_39_STABLE origin/MOODLE_39_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo /mod/assign/feedback/structured/ >> .git/info/exclude
Installing from a zip archive downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured:
- Download and unzip the appropriate release for your version of
Moodle. - Copy the extracted "structured" folder into your
"/mod/assign/feedback/" subdirectory.
Whichever method you use to get the plugin code in place, the final
step is to visit your Site Administration > Notifications page in a
browser to invoke the installation script and make the necessary
database changes.
Updating Moodle
If you installed Moodle and the Structured feedback plugin from Git you
can run the following commands to update both (see
http://docs.moodle.org/39/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
$ cd /path/to/your/moodle/
$ git pull
$ cd mod/assign/feedback/structured/
$ git pull
If you installed from a zip archive you will need to repeat the
installation procedure using the appropriate zip file downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured
for your new Moodle version.
3.5.1 (Build: 20190611) (2019061100)
3.5.1 (Build: 20190611)
Plugin type: Assignment feedbacks
Frankenstyle component name: assignfeedback_structured
Version build number: 2019061100
Version release name: 3.5.1 (Build: 20190611)
Maturity: Stable
Supported Moodle versions: 3.5, 3.6, 3.7, 3.8, 3.9
Repository URL (Git): https://github.com/lucisgit/moodle-assignfeedback_structured
Repository branch: MOODLE_35_STABLE
Repository tag: v3.5.1
Issue/bug tracker URL: https://github.com/lucisgit/moodle-assignfeedback_structured/issues
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see .
package assignfeedback_structured
copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
author Tony Butler
Structured feedback assignment subplugin for Moodle
The structured feedback assignment subplugin enables teachers to define
any number of criteria on which to provide individual feedback comments
for a student's assignment submission.
The configured 'criteria set' can then be saved for easy reuse in other
assignments. Given the appropriate permissions the teacher can also
choose to share their saved criteria sets with other teachers within
the same Moodle site.
Changelog
2019-06-11 v3.5.1
- Bootstrap updates + accessibility adjustments
- Add support for pushing feedback to gradebook
2018-09-28 v3.5.0
- Enable criteria details to be styled easily
- Hide user summary if no criteria are defined
- Add privacy provider for GDPR support
2017-06-21 v3.3.1
- Use placeholder for quickgrading description
- Don't empty config if it's already empty
- Replace public (reserved in JS) with shared
- Address remaining code prechecker issues
2017-06-14 v3.3.0
- Initial stable release
Installation
Installing from the Git repository (recommended if you installed Moodle
from Git):
Follow the instructions at
http://docs.moodle.org/35/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 3.5.x code:
$ cd /path/to/your/moodle/
$ cd mod/assign/feedback/
$ git clone https://github.com/lucisgit/moodle-assignfeedback_structured.git structured
$ cd structured/
$ git checkout -b MOODLE_35_STABLE origin/MOODLE_35_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo /mod/assign/feedback/structured/ >> .git/info/exclude
Installing from a zip archive downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured:
- Download and unzip the appropriate release for your version of
Moodle. - Copy the extracted "structured" folder into your
"/mod/assign/feedback/" subdirectory.
Whichever method you use to get the plugin code in place, the final
step is to visit your Site Administration > Notifications page in a
browser to invoke the installation script and make the necessary
database changes.
Updating Moodle
If you installed Moodle and the Structured feedback plugin from Git you
can run the following commands to update both (see
http://docs.moodle.org/35/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
$ cd /path/to/your/moodle/
$ git pull
$ cd mod/assign/feedback/structured/
$ git pull
If you installed from a zip archive you will need to repeat the
installation procedure using the appropriate zip file downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured
for your new Moodle version.
v3.3.1 (Build: 20170621) (2017062100)
v3.3.1 (Build: 20170621)
Plugin type: Assignment feedbacks
Frankenstyle component name: assignfeedback_structured
Version build number: 2017062100
Version release name: v3.3.1 (Build: 20170621)
Maturity: Stable
Supported Moodle versions: 3.3, 3.4, 3.5
Repository URL (Git): https://github.com/lucisgit/moodle-assignfeedback_structured
Repository branch: MOODLE_33_STABLE
Repository tag: v3.3.1
Issue/bug tracker URL: https://github.com/lucisgit/moodle-assignfeedback_structured/issues
This file is part of Moodle - http://moodle.org/
Moodle is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Moodle is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Moodle. If not, see http://www.gnu.org/licenses/.
package assignfeedback_structured
copyright 2017 Lancaster University (http://www.lancaster.ac.uk/)
license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
author Tony Butler a.butler4@lancaster.ac.uk
Structured feedback assignment subplugin for Moodle
The structured feedback assignment subplugin enables teachers to define
any number of criteria on which to provide individual feedback comments
for a student's assignment submission.
The configured 'criteria set' can then be saved for easy reuse in other
assignments. Given the appropriate permissions the teacher can also
choose to share their saved criteria sets with other teachers within
the same Moodle site.
Changelog
2017-06-14 v3.3.0
- Initial stable release
2017-06-21 v3.3.1
- Use placeholder for quickgrading description
- Don't empty config if it's already empty
- Replace public (reserved in JS) with shared
- Address remaining code prechecker issues
Installation
Installing from the Git repository (recommended if you installed Moodle
from Git):
Follow the instructions at
http://docs.moodle.org/33/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository,
e.g. for the Moodle 3.3.x code:
$ cd /path/to/your/moodle/
$ cd mod/assign/feedback/
$ git clone https://github.com/lucisgit/moodle-assignfeedback_structured.git structured
$ cd structured/
$ git checkout -b MOODLE_33_STABLE origin/MOODLE_33_STABLE
$ git branch -d master
$ cd /path/to/your/moodle/
$ echo /mod/assign/feedback/structured/ >> .git/info/exclude
Installing from a zip archive downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured:
- Download and unzip the appropriate release for your version of
Moodle. - Copy the extracted "structured" folder into your
"/mod/assign/feedback/" subdirectory.
Whichever method you use to get the plugin code in place, the final
step is to visit your Site Administration > Notifications page in a
browser to invoke the installation script and make the necessary
database changes.
Updating Moodle
If you installed Moodle and the Structured feedback plugin from Git you
can run the following commands to update both (see
http://docs.moodle.org/33/en/Git_for_Administrators#Installing_a_contributed_extension_from_its_Git_repository):
$ cd /path/to/your/moodle/
$ git pull
$ cd mod/assign/feedback/structured/
$ git pull
If you installed from a zip archive you will need to repeat the
installation procedure using the appropriate zip file downloaded from
https://moodle.org/plugins/pluginversions.php?plugin=assignfeedback_structured
for your new Moodle version.