From 1ce2ce7cb08ed7acf4ddf23e15d84c46b4860da5 Mon Sep 17 00:00:00 2001 From: Davo Smith Date: Fri, 27 Sep 2013 14:40:10 +0800 Subject: [PATCH] MDL-42023 assign: Add Edit PDF plugin to core. This plugin is heavily based on the uploadpdf plugin from Davo Smith . This is a fantastic plugin that provides a great benefit for teachers marking assignments. A big thankyou to Davo for writing the plugin and helping us to get it integrated to core. The plugin provides a pdf editing interface in the teachers browser that lets them add comments and annotations to a students assignment submission. The comment and annotations are then added to a pdf version of the students submission which is send back to the student so they can download it, or read it online. This plugin has been primarily worked on by Damyon Wiese, Jerome Mouneyrac and Barbara Ramiro. We have also had great feedback and suggestions from others including the entire frontend team, Martin and Frederic Massart. --- mod/assign/feedback/editpdf/version.php | 30 +++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 mod/assign/feedback/editpdf/version.php diff --git a/mod/assign/feedback/editpdf/version.php b/mod/assign/feedback/editpdf/version.php new file mode 100644 index 00000000000..5b6716d7930 --- /dev/null +++ b/mod/assign/feedback/editpdf/version.php @@ -0,0 +1,30 @@ +. + +/** + * This file contains the version information for the comments feedback plugin + * + * @package assignfeedback_editpdf + * @copyright 2012 Davo Smith + * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); + +$plugin->version = 2013050103; +$plugin->requires = 2013050100; +$plugin->component = 'assignfeedback_editpdf'; +