mirror of
https://github.com/mediacms-io/mediacms.git
synced 2026-01-20 07:12:58 -05:00
24 lines
741 B
PHP
24 lines
741 B
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.
|
|
|
|
/**
|
|
* Tiny MediaCMS plugin version details.
|
|
*
|
|
* @package tiny_mediacms
|
|
* @copyright 2026 MediaCMS
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
|
*/
|
|
|
|
defined('MOODLE_INTERNAL') || die();
|
|
|
|
$plugin->component = 'tiny_mediacms';
|
|
$plugin->version = 2026011200; // YYYYMMDDXX format.
|
|
$plugin->requires = 2024042200; // Moodle 5.0 or later.
|
|
$plugin->maturity = MATURITY_STABLE;
|
|
$plugin->release = '1.0.0';
|