mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
17 lines
478 B
PHP
17 lines
478 B
PHP
<?php
|
|
|
|
define('APPROOT', dirname(__FILE__).'/');
|
|
define('APPCONF', APPROOT.'conf/');
|
|
|
|
/**
|
|
* iTop Datamodel XML format version
|
|
*
|
|
* It was also used in iTop 3.0.0 to get iTop core version (instead of {@see ITOP_VERSION} which gives the application version).
|
|
* To address this need you should now use {@see ITOP_CORE_VERSION}
|
|
*
|
|
* @see ITOP_CORE_VERSION to get full iTop core version
|
|
*/
|
|
define('ITOP_DESIGN_LATEST_VERSION', '3.0');
|
|
|
|
require_once APPROOT.'bootstrap.inc.php';
|