moodle-theme_space/version.php

23 lines
1.7 KiB
PHP
Raw Permalink Normal View History

2021-01-12 17:48:02 +01:00
<?php
// Every file should have GPL and copyright in the header - we skip it in tutorials but you should not skip it for real.
// This line protects the file from being accessed by a URL directly.
defined('MOODLE_INTERNAL') || die();
// This is the version of the plugin.
$plugin->version =2021120100;
// This is the version of Moodle this plugin requires.
$plugin->requires = '2016070700';
// This is the component name of the plugin - it always starts with 'theme_'
// for themes and should be the same as the name of the folder.
$plugin->component = 'theme_space';
// This is a list of plugins, this plugin depends on (and their versions).
$plugin->dependencies = [
'theme_boost' => '2016102100'
];
?>