You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
1.6 KiB
20 lines
1.6 KiB
<?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'
|
|
];
|
|
|