🔖 Prepare 3.3.0 version

This commit is contained in:
jf-cbd
2024-10-21 17:26:15 +02:00
parent b57e4fce07
commit bd5e55aad9
51 changed files with 76 additions and 50 deletions

View File

@@ -115,6 +115,12 @@ class iTopDesignFormat
'3.2' => array(
'previous' => '3.1',
'go_to_previous' => 'From32To31',
'next' => '3.3',
'go_to_next' => 'From32To33',
),
'3.3' => array(
'previous' => '3.2',
'go_to_previous' => 'From33To32',
'next' => null,
'go_to_next' => null,
),
@@ -1116,6 +1122,26 @@ class iTopDesignFormat
$this->RemoveNodeFromXPath('/itop_design/branding/login_favicon');
}
/**
* Upgrade the format from version 3.2 to 3.3
* @param \ModelFactory $oFactory
* @return void (Errors are logged)
*/
protected function From32To33($oFactory)
{
// Nothing for now...
}
/**
* Downgrade the format from version 3.3 to 3.2
* @param \ModelFactory $oFactory
* @return void (Errors are logged)
*/
protected function From33To32($oFactory)
{
// Nothing for now...
}
/**
* @param string $sPath
*