-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathversion.php
41 lines (37 loc) · 1.23 KB
/
version.php
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
<?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 {
protected const PLUGIN_VERSION = '1.1.4';
protected const PLUGIN_VERSION_BETA = 'n/a';
protected const PLUGIN_STAND = '24.01.2025';
/**
* Current version of plugin InventoryManager
* @return string
*/
public static function getPluginVersion() {
return self::PLUGIN_VERSION;
}
/**
* Current beta version of plugin InventoryManager
* @return string
*/
public static function getPluginBetaVersion() {
return self::PLUGIN_VERSION_BETA;
}
/**
* Current stand of plugin InventoryManager
* @return string
*/
public static function getPluginStand() {
return self::PLUGIN_STAND;
}
}