-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplugin.php
More file actions
34 lines (28 loc) · 996 Bytes
/
plugin.php
File metadata and controls
34 lines (28 loc) · 996 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?php
/**
* This file is part of ILIAS, a powerful learning management system
* published by ILIAS open source e-Learning e.V.
*
* ILIAS is licensed with the GPL-3.0,
* see https://www.gnu.org/licenses/gpl-3.0.en.html
* You should have received a copy of said license along with the
* source code, too.
*
* If this is not the case or you just want to try ILIAS, you'll find
* us at:
* https://www.ilias.de
* https://github.com/ILIAS-eLearning
*
*********************************************************************/
// alphanumerical ID of the plugin; never change this
$id = "teruhe";
// code version; must be changed for all code changes
$version = "3.0.0";
// ilias min and max version; must always reflect the versions that should
// run with the plugin
$ilias_min_version = "10.5";
$ilias_max_version = "10.999";
// optional, but useful: Add one or more responsible persons and a contact email
$responsible = "Fred Neumann";
$responsible_mail = "fred.neumann@fau.de";
?>