Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathversion.php
More file actions
Latest commit
45 lines (41 loc) · 1.26 KB
/
Copy pathversion.php
File metadata and controls
45 lines (41 loc) · 1.26 KB
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
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
***********************************************************************************************
* Version file for the Admidio plugin InventoryManager
*
* @see https://github.com/MightyMCoder/InventoryManager/ The InventoryManager GitHub project
* @author MightyMCoder
* @copyright 2024 - today MightyMCoder
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0 only
***********************************************************************************************
*/
class CPluginInfoPIM
{
protectedconstPLUGIN_VERSION = '1.2.0';
protectedconstPLUGIN_VERSION_BETA = 'n/a';
protectedconstPLUGIN_STAND = '30.09.2025';
/**
* Current version of plugin InventoryManager
* @return string
*/
publicstaticfunctiongetPluginVersion(): string
{
returnself::PLUGIN_VERSION;
}
/**
* Current beta version of plugin InventoryManager
* @return string
*/
publicstaticfunctiongetPluginBetaVersion(): string
{
returnself::PLUGIN_VERSION_BETA;
}
/**
* Current stand of plugin InventoryManager
* @return string
*/
publicstaticfunctiongetPluginStand(): string
{
returnself::PLUGIN_STAND;
}
}