Merge branch 'MDL-30007' of git://github.com/stronk7/moodle

This commit is contained in:
Sam Hemelryk 2011-12-01 17:14:52 +13:00
commit 6416c6c25b
210 changed files with 3243 additions and 471 deletions

View file

@ -0,0 +1,30 @@
<?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 the subplugin
*
* @package workshopallocation
* @subpackage manual
* @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 = 2010090501;
$plugin->requires = 2010090501; // Requires this Moodle version
$plugin->component = 'workshopallocation_manual';

View file

@ -0,0 +1,30 @@
<?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 the subplugin
*
* @package workshopallocation
* @subpackage random
* @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 = 2010090501;
$plugin->requires = 2010090501; // Requires this Moodle version
$plugin->component = 'workshopallocation_random';

View file

@ -1,5 +1,4 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
@ -28,3 +27,4 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2010090501;
$plugin->requires = 2010090501; // Requires this Moodle version
$plugin->component = 'workshopeval_best';

View file

@ -31,3 +31,4 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2010091700;
$plugin->requires = 2010091600; // Requires this Moodle version
$plugin->component = 'workshopform_accumulative';

View file

@ -31,3 +31,4 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2010091700;
$plugin->requires = 2010091600; // Requires this Moodle version
$plugin->component = 'workshopform_comments';

View file

@ -31,3 +31,4 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2010091700;
$plugin->requires = 2010091600; // Requires this Moodle version
$plugin->component = 'workshopform_numerrors';

View file

@ -31,3 +31,4 @@ defined('MOODLE_INTERNAL') || die();
$plugin->version = 2010091700;
$plugin->requires = 2010091600; // Requires this Moodle version
$plugin->component = 'workshopform_rubric';

View file

@ -1,5 +1,4 @@
<?php
// This file is part of Moodle - http://moodle.org/
//
// Moodle is free software: you can redistribute it and/or modify
@ -18,9 +17,6 @@
/**
* Defines the version of workshop
*
* This code fragment is called by moodle_needs_upgrading() and
* /admin/index.php
*
* @package mod
* @subpackage workshop
* @copyright 2009 David Mudrak <david.mudrak@gmail.com>
@ -29,6 +25,7 @@
defined('MOODLE_INTERNAL') || die();
$module->version = 2011110400;
$module->requires = 2011020900; // Requires this Moodle version
//$module->cron = 60;
$module->version = 2011112900; // The current module version (Date: YYYYMMDDXX)
$module->requires = 2011112900; // Requires this Moodle version
$module->component = 'mod_workshop'; // Full name of the plugin (used for diagnostics)
$module->cron = 0;