mirror of
https://github.com/moodle/moodle.git
synced 2025-03-10 18:59:55 +01:00
This plugin is heavily based on the uploadpdf plugin from Davo Smith <git@davosmith.co.uk>. 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.
31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?php
|
|
// 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/>.
|
|
|
|
/**
|
|
* 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';
|
|
|