Commit | Line | Data |
---|---|---|
4eab2e7f | 1 | <?php |
53fad4b9 DM |
2 | |
3 | // This file is part of Moodle - http://moodle.org/ | |
4 | // | |
4eab2e7f DM |
5 | // Moodle is free software: you can redistribute it and/or modify |
6 | // it under the terms of the GNU General Public License as published by | |
7 | // the Free Software Foundation, either version 3 of the License, or | |
8 | // (at your option) any later version. | |
9 | // | |
10 | // Moodle is distributed in the hope that it will be useful, | |
11 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 | // GNU General Public License for more details. | |
53fad4b9 | 14 | // |
4eab2e7f DM |
15 | // You should have received a copy of the GNU General Public License |
16 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
17 | ||
4eab2e7f DM |
18 | /** |
19 | * Defines the version of workshop | |
20 | * | |
53fad4b9 | 21 | * This code fragment is called by moodle_needs_upgrading() and |
4eab2e7f DM |
22 | * /admin/index.php |
23 | * | |
24 | * @package mod-workshop | |
25 | * @copyright 2009 David Mudrak <david.mudrak@gmail.com> | |
26 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
27 | */ | |
28 | ||
6867e05d DM |
29 | defined('MOODLE_INTERNAL') || die(); |
30 | ||
c6d75bff PS |
31 | $module->version = 2010080300; |
32 | $module->requires = 2010080300; // Requires this Moodle version | |
028cd061 | 33 | //$module->cron = 60; |