blob: e9c255a9341423b3efeeb6e6e1dc41b5ff6e9348 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
const __VERSION_FILE = __DIR__ . '/../VERSION';
/**
* Gets a version identifier for the currently checked out version of the software
* @return string
*/
function get_version(): string {
if (is_readable(__VERSION_FILE)) {
return trim(file_get_contents(__VERSION_FILE));
}
return 'unknown';
}
|