N°7771 - Add CMDB flow map

This commit is contained in:
v-dumas
2025-12-15 12:28:36 +01:00
parent df567fb9fe
commit 77b420b7d2
7 changed files with 499 additions and 0 deletions

View File

@@ -0,0 +1,53 @@
<?php
//
// iTop module definition file
//
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-flow-map/1.0.0',
array(
// Identification
//
'label' => 'Add flow map in iTop',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/3.2.0'
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'vendor/autoload.php',
'model.itop-flow-map.php', // Contains the PHP code generated by the "compilation" of datamodel.Combodo-flow-map.xml
),
'webservice' => array(
),
'data.struct' => array(
'data/en_us.data.itop-flow-map.xml',
),
'data.sample' => array(
// add your sample data XML files here,
),
// Documentation
//
'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
'doc.more_information' => '', // hyperlink to more information, if any
// Default settings
//
'settings' => array(
// Module specific settings go here, if any
),
)
);
?>