mirror of
https://github.com/moodle/moodle.git
synced 2025-07-23 23:31:58 +02:00
It was reported at the Open University that there have been some problems with the formats of files submitted by students. Not all students completed their outlines as a Word .doc (despite this being the format of the template provided). Some formats (e.g. .pages) couldn’t be translated by some of the reviewing students. Therefore, they were unable to provide a review and the submitting students not receiving any comments. This patch allows the teacher to define list of allowed file types that can be attached to submitted work and/or overall feedback in the workshop.
31 lines
1.2 KiB
PHP
31 lines
1.2 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/>.
|
|
|
|
/**
|
|
* Defines the version of workshop
|
|
*
|
|
* @package mod_workshop
|
|
* @copyright 2009 David Mudrak <david.mudrak@gmail.com>
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->version = 2016022200; // The current module version (YYYYMMDDXX)
|
|
$plugin->requires = 2015111000; // Requires this Moodle version.
|
|
$plugin->component = 'mod_workshop';
|
|
$plugin->cron = 60; // Give as a chance every minute.
|