- media_moeplayer_plugin 接管 mp4/m4v/mov/webm/ogv/m3u8/flv/ts,rank=100 - 播放器资源内打包(moeplayer/ 目录),每页一次加载,多视频多实例 - 管理设置:皮肤(默认/红色/西瓜)、默认宽高 - 中英语言包,兼容 Moodle 3.9+(3.x/4.x)
32 lines
1.1 KiB
PHP
32 lines
1.1 KiB
PHP
<?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 media_moeplayer
|
|
* @copyright MoePlayer 项目(fork 自 ckplayer, www.ckplayer.com)
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->component = 'media_moeplayer';
|
|
$plugin->version = 2026072100;
|
|
$plugin->requires = 2020061500; // Moodle 3.9 及以上(3.x/4.x 均兼容)
|
|
$plugin->maturity = MATURITY_ALPHA;
|
|
$plugin->release = '0.1.0';
|