mirror of
https://github.com/grocy/grocy.git
synced 2025-10-15 09:46:03 +00:00
Reorganize project part 1
This commit is contained in:
26
services/ApplicationService.php
Normal file
26
services/ApplicationService.php
Normal file
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
class ApplicationService
|
||||
{
|
||||
/**
|
||||
* @return boolean
|
||||
*/
|
||||
public static function IsDemoInstallation()
|
||||
{
|
||||
return file_exists(__DIR__ . '/../data/demo.txt');
|
||||
}
|
||||
|
||||
private static $InstalledVersion;
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public static function GetInstalledVersion()
|
||||
{
|
||||
if (self::$InstalledVersion == null)
|
||||
{
|
||||
self::$InstalledVersion = preg_replace("/\r|\n/", '', file_get_contents(__DIR__ . '/../version.txt'));
|
||||
}
|
||||
|
||||
return self::$InstalledVersion;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user