mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 10:38:45 +02:00
- The queries are developped at runtime (cache) - More complex algorithm to take into account the legacy type of specification (GetRelationQueries) - New dictionary naming convention (preserving backward compatibility): "VerbUp" to be replaced by "DownStream - Temporary hacks to preserve the relation 'depends on', until we have a new GUI - Special handling for the relation LogicalVolume impacts VirtualDevice which had to be implemented in the bridge module - Improved the backward compatibility by leaving legacy methods GetRelationQueries returning an empty definition, allowing for an eventual XML redefinition SVN:trunk[3542]
49 lines
1.1 KiB
PHP
49 lines
1.1 KiB
PHP
<?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/2.1.0',
|
|
array(
|
|
// Identification
|
|
//
|
|
'label' => 'Links between virtualization and storage',
|
|
'category' => 'business',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => array(
|
|
'itop-storage-mgmt/2.1.0',
|
|
'itop-virtualization-mgmt/2.1.0',
|
|
),
|
|
'mandatory' => false,
|
|
'visible' => true, // To prevent auto-install but shall not be listed in the install wizard
|
|
'auto_select' => 'SetupInfo::ModuleIsSelected("itop-storage-mgmt") && SetupInfo::ModuleIsSelected("itop-virtualization-mgmt")',
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => array(
|
|
'model.itop-bridge-virtualization-storage.php',
|
|
),
|
|
'data.struct' => array(
|
|
//'data.struct.itop-change-mgmt.xml',
|
|
),
|
|
'data.sample' => array(
|
|
//'data.sample.itop-change-mgmt.xml',
|
|
),
|
|
|
|
// Documentation
|
|
//
|
|
'doc.manual_setup' => '',
|
|
'doc.more_information' => '',
|
|
|
|
// Default settings
|
|
//
|
|
'settings' => array(
|
|
),
|
|
)
|
|
);
|
|
|
|
|
|
?>
|