moodle_local_treestudyplan/version.php

37 lines
1.4 KiB
PHP
Raw Permalink Normal View History

<?php
// This file is part of the study plan plugin for Moodle
2023-08-24 23:02:41 +02:00
//
// 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 <https://www.gnu.org/licenses/>.
/**
2023-08-27 15:12:54 +02:00
* Plugin version
2023-08-24 23:02:41 +02:00
* @package local_treestudyplan
* @copyright 2023 P.M. Kuipers
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
$plugin->component = 'local_treestudyplan'; // Recommended since 2.0.2 (MDL-26035). Required since 3.0 (MDL-48494).
2024-06-28 17:28:05 +02:00
$plugin->version = 2024062800; // YYYYMMDDHH (year, month, day, iteration).
2023-08-24 23:02:41 +02:00
$plugin->requires = 2021051700; // YYYYMMDDHH (This is the release version for Moodle 3.11).
2024-06-03 23:24:16 +02:00
$plugin->release = "1.3.1b";
$plugin->maturity = MATURITY_STABLE; /*MATURITY_STABLE;*/
2023-08-26 16:51:35 +02:00
2024-01-26 12:26:01 +01:00
// Supported from Moodle 3.11 to 4.3.
$plugin->supported = [ 311, 403];
$plugin->dependencies = [
'theme_boost' => 2019052001,
];