forked from fneumann/TestPageComponent
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplugin.php
More file actions
26 lines (21 loc) · 710 Bytes
/
plugin.php
File metadata and controls
26 lines (21 loc) · 710 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
<?php
/**
* Copyright (c) 2017 Fred Neumann <fred.neumann@gmx.de>
* GPLv3, see LICENSE
*
* @author Fred Neumann <fred.neumann@gmx.de>
*/
// alphanumerical ID of the plugin; never change this
$id = "pctpc";
// code version; must be changed for all code changes
$version = "0.0.15";
// ilias min and max version; must always reflect the versions that should
// run with the plugin
$ilias_min_version = "11.0";
$ilias_max_version = "11.999";
// optional, but useful: Add one or more responsible persons and a contact email
$responsible = "Fred Neumann, Alexander Killing";
$responsible_mail = "fred.neumann@gmx.de, killing@leifos.de";
// this plugin has an own exporter class
$supports_export = true;
?>