N°8796 - Add PHP code style validation in iTop and extensions - format whole code base

This commit is contained in:
odain
2025-11-07 20:39:38 +01:00
parent 7681c157ec
commit b0a792afab
369 changed files with 22041 additions and 26866 deletions

View File

@@ -1,10 +1,9 @@
<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-bridge-virtualization-storage/3.3.0',
array(
[
// Identification
//
'label' => 'Links between virtualization and storage',
@@ -12,25 +11,25 @@ SetupWebPage::AddModule(
// Setup
//
'dependencies' => array(
'dependencies' => [
'itop-storage-mgmt/2.2.0',
'itop-virtualization-mgmt/2.2.0',
),
],
'mandatory' => false,
'visible' => false,
'auto_select' => 'SetupInfo::ModuleIsSelected("itop-storage-mgmt") && SetupInfo::ModuleIsSelected("itop-virtualization-mgmt")',
// Components
//
'datamodel' => array(
),
'data.struct' => array(
'datamodel' => [
],
'data.struct' => [
//'data.struct.itop-change-mgmt.xml',
),
'data.sample' => array(
],
'data.sample' => [
//'data.sample.itop-change-mgmt.xml',
),
],
// Documentation
//
'doc.manual_setup' => '',
@@ -38,7 +37,7 @@ SetupWebPage::AddModule(
// Default settings
//
'settings' => array(
),
)
'settings' => [
],
]
);