Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

5.2.0 (2026-06-01)
------------------
* Moodle 5.2 compatible version

5.1.5 (v5.1-r6, 2026-05-20)
---------------------------
* [FEATURE] Introduce new step opencast
Expand Down
38 changes: 38 additions & 0 deletions step/pushbackuptask/classes/privacy/provider.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<?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/>.

namespace lifecyclestep_pushbackuptask\privacy;

use core_privacy\local\metadata\null_provider;

/**
* Privacy subsystem implementation for lifecyclestep_pushbackuptask.
*
* @package lifecyclestep_pushbackuptask
* @copyright 2024 Johannes Burk (HTW Berlin)
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
class provider implements null_provider {

/**
* Get the language string identifier explaining why this plugin stores no data.
*
* @return string the reason
*/
public static function get_reason(): string {
return 'privacy:metadata';
}
}
6 changes: 3 additions & 3 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

$plugin->component = 'tool_lifecycle';
$plugin->maturity = MATURITY_STABLE;
$plugin->version = 2026012005;
$plugin->version = 2026060100;
$plugin->requires = 2024100700; // Requires Moodle 4.5+.
$plugin->supported = [405, 501];
$plugin->release = 'v5.1-r6';
$plugin->supported = [405, 502];
$plugin->release = 'v5.2-r1';
Loading