mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
🔖 Prepare 3.2.0 version
This commit is contained in:
@@ -29,7 +29,7 @@ define('ITOP_APPLICATION_SHORT', 'iTop');
|
||||
*
|
||||
* @see ITOP_CORE_VERSION to get iTop core version
|
||||
*/
|
||||
define('ITOP_VERSION', '3.1.0-dev');
|
||||
define('ITOP_VERSION', '3.2.0-dev');
|
||||
|
||||
define('ITOP_VERSION_NAME', 'Fullmoon');
|
||||
define('ITOP_REVISION', 'svn');
|
||||
|
||||
@@ -109,6 +109,12 @@ class iTopDesignFormat
|
||||
'3.1' => array(
|
||||
'previous' => '3.0',
|
||||
'go_to_previous' => 'From31To30',
|
||||
'next' => '3.2',
|
||||
'go_to_next' => 'Fomr31To32',
|
||||
),
|
||||
'3.2' => array(
|
||||
'previous' => '3.1',
|
||||
'go_to_previous' => 'From32To31',
|
||||
'next' => null,
|
||||
'go_to_next' => null,
|
||||
),
|
||||
@@ -1075,6 +1081,26 @@ class iTopDesignFormat
|
||||
$this->RemoveNodeFromXPath("/itop_design/classes//class/fields/field/values/value/rank");
|
||||
}
|
||||
|
||||
/**
|
||||
* Upgrade the format from version 3.1 to 3.2
|
||||
* @param \ModelFactory $oFactory
|
||||
* @return void (Errors are logged)
|
||||
*/
|
||||
protected function From31To32($oFactory)
|
||||
{
|
||||
// Nothing for now...
|
||||
}
|
||||
|
||||
/**
|
||||
* Downgrade the format from version 3.2 to 3.1
|
||||
* @param \ModelFactory $oFactory
|
||||
* @return void (Errors are logged)
|
||||
*/
|
||||
protected function From32To31($oFactory)
|
||||
{
|
||||
// Nothing for now...
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $sPath
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user