-
Notifications
You must be signed in to change notification settings - Fork 1
/
version.php
29 lines (27 loc) · 1.15 KB
/
version.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
// This moodle block 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.
//
// This software 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.
//
// GNU General Public License V.3
// <http://www.gnu.org/licenses/>.
/**
* Version details
*
* @package block
* @subpackage simple_map
* @copyright 2013 Georg Maißer, David Bogner, http://www.edulabs.org
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
$plugin->version = 2016121300; // YYYYMMDDHH (year, month, day, 24-hr time)
$plugin->requires = 2016051900; // YYYYMMDDHH (This is the release version for Moodle 2.0)
$plugin->release = 'Kopernikus 1.1'; // Entdecker
$plugin->component = 'block_simple_map'; // Full name of the plugin (used for diagnostics)
$plugin->maturity = MATURITY_STABLE;
?>