NAME
Kernel::System::SystemVersion – key/value store for system version
DESCRIPTION
Provides key/value store for system version
PUBLIC INTERFACE
new()
Don't use the constructor directly, use the ObjectManager instead:
my $SystemVersionObject = $Kernel::OM->Get('Kernel::System::SystemVersion');
SystemVersionSet()
Set a new SystemVersion.
Result is true if adding was OK, and false if it failed, for instance because the key already existed.
my $Result = $SystemVersionObject->SystemVersionSet();
SystemVersionGet()
Get system version for key SystemVersion.
my $SystemVersion = $SystemVersionObject->SystemVersionGet();
returns value as a simple scalar, or undef if the key does not exist. keys set to NULL return an empty string.