-
Notifications
You must be signed in to change notification settings - Fork 1
/
version.php
20 lines (15 loc) · 1.59 KB
/
version.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?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 = '2018090402';
// This is the version of Moodle this plugin requires.
$plugin->requires = '2017110800';
// 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_ilb';
// This is a list of plugins, this plugin depends on (and their versions).
$plugin->dependencies = [
'theme_boost' => '2017111300'
];