N°5658 - Fix spinning wheel appearing on all application upgrade buttons - move twig_base and itop-core-update to new router

This commit is contained in:
Eric Espie
2023-04-28 16:02:43 +02:00
parent d91fafb2af
commit e960d20826
16 changed files with 191 additions and 400 deletions

View File

@@ -25,7 +25,7 @@
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-core-update/3.1.0',
array(
[
// Identification
//
'label' => 'iTop Core Update',
@@ -33,25 +33,25 @@ SetupWebPage::AddModule(
// Setup
//
'dependencies' => array(
'dependencies' => [
'itop-files-information/2.7.0',
'combodo-db-tools/2.7.0',
),
],
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'datamodel' => [
'model.itop-core-update.php',
'src/Service/RunTimeEnvironmentCoreUpdater.php',
'src/Service/CoreUpdater.php',
'src/Controller/UpdateController.php',
'src/Controller/AjaxController.php',
),
'webservice' => array(),
'data.struct' => array(),
'data.sample' => array(),
],
'webservice' => [],
'data.struct' => [],
'data.sample' => [],
// Documentation
//
@@ -60,6 +60,6 @@ SetupWebPage::AddModule(
// Default settings
//
'settings' => array(),
)
'settings' => [],
]
);