2015-06-30 00:40:47 +03:00
|
|
|
<?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/>.
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package block_microsoft
|
|
|
|
* @author James McQuillan <james.mcquillan@remote-learner.net>
|
|
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
2016-03-24 08:11:27 +03:00
|
|
|
* @copyright (C) 2014 onwards Microsoft, Inc. (http://microsoft.com/)
|
2015-06-30 00:40:47 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
|
2020-07-15 18:18:57 +03:00
|
|
|
$plugin->version = 2020020303;
|
2020-02-03 14:14:55 +03:00
|
|
|
$plugin->requires = 2019111800;
|
2020-07-15 18:18:57 +03:00
|
|
|
$plugin->release = '3.8.0.3';
|
2015-06-30 00:40:47 +03:00
|
|
|
$plugin->component = 'block_microsoft';
|
|
|
|
$plugin->maturity = MATURITY_STABLE;
|
|
|
|
$plugin->dependencies = [
|
2020-07-15 18:18:57 +03:00
|
|
|
'local_o365' => 2020020303,
|
2016-06-23 02:49:58 +03:00
|
|
|
];
|