💡 Document versions constants (#255)

Clarify ITOP_VERSION and ITOP_DESIGN_LATEST_VERSION uses
This commit is contained in:
Pierre Goiffon
2022-01-06 14:49:34 +01:00
committed by GitHub
parent f9359431fe
commit b073e4385c
2 changed files with 25 additions and 8 deletions

View File

@@ -22,7 +22,17 @@
define('ITOP_APPLICATION', 'iTop');
define('ITOP_APPLICATION_SHORT', 'iTop');
define('ITOP_VERSION', '2.7.0-dev'); // @see utils::GetItopVersionShort() and utils::GetItopVersionWikiSyntax()
/**
* Constant containing the application version
* Warning: this might be different from iTop core version!
*
* @see ITOP_DESIGN_LATEST_VERSION for iTop core version
*
* @used-by utils::GetItopPatchVersion
*/
define('ITOP_VERSION', '2.7.0-dev');
define('ITOP_REVISION', 'svn');
define('ITOP_BUILD_DATE', '$WCNOW$');
define('ITOP_VERSION_FULL', ITOP_VERSION.'-'.ITOP_REVISION);