mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 09:39:57 +00:00
18 lines
329 B
PHP
18 lines
329 B
PHP
<?php
|
|
|
|
namespace Grocy\Services;
|
|
|
|
class ApplicationService extends BaseService
|
|
{
|
|
private $InstalledVersion;
|
|
public function GetInstalledVersion()
|
|
{
|
|
if ($this->InstalledVersion == null)
|
|
{
|
|
$this->InstalledVersion = json_decode(file_get_contents(__DIR__ . '/../version.json'));
|
|
}
|
|
|
|
return $this->InstalledVersion;
|
|
}
|
|
}
|