Files
fusionpbx/core/software/resources/classes/software.php
FusionPBX 34b8679917 Update the version 5.4.0
This version change seperates it from the current release version.
2024-10-29 15:19:49 -06:00

31 lines
396 B
PHP

<?php
/**
* software class
*
* @method string version
*/
if (!class_exists('software')) {
class software {
/**
* version
*/
public static function version() {
return '5.4.0';
}
/**
* numeric_version
*/
public static function numeric_version() {
$v = explode('.', software::version());
$n = ($v[0] * 10000 + $v[1] * 100 + $v[2]);
return $n;
}
}
}
?>