-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathversion.php
More file actions
45 lines (42 loc) · 1.97 KB
/
Copy pathversion.php
File metadata and controls
45 lines (42 loc) · 1.97 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
// This file is part of Moodle - https://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 <https://www.gnu.org/licenses/>.
/**
* Version metadata for the FastPix activity module.
*
* @package mod_fastpix
* @copyright 2026 FastPix
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/
defined('MOODLE_INTERNAL') || die();
$plugin->component = 'mod_fastpix';
$plugin->version = 2026061602;
$plugin->requires = 2024100100;
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.1.0';
$plugin->dependencies = [
// Pin to the local_fastpix 1.1.0 build (>= 2026061600). The new code uses
// surfaces introduced there: asset_service::add_reference / release_reference
// (asset reference counting); create_upload_session's course-context +
// title / accesspolicy / captionsmode / languagecode parameter contract
// (with the uploadurl / uploadid return shape); playback_service::player_lib_url()
// (ADR-017 — the locally-served FastPix player URL); and create_url_pull_session
// now accepting title / accesspolicy / captionsmode / languagecode so URL pulls
// honour the activity's Media settings. An older local_fastpix lacks these, so
// it must not be installed underneath.
// NOTE: set this to the actual local_fastpix build that adds the url-pull
// media-settings params (companion change) before release.
'local_fastpix' => 2026061600,
];