Files
iTop/datamodels/2.x/itop-problem-mgmt/module.itop-problem-mgmt.php
Pierre Goiffon e14845728c Prepare 2.7.7
2022-02-01 15:19:10 +01:00

45 lines
797 B
PHP
Executable File

<?php
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-problem-mgmt/2.7.7',
array(
// Identification
//
'label' => 'Problem Management',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/2.2.0',
'itop-tickets/2.0.0',
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'model.itop-problem-mgmt.php',
),
'data.struct' => array(
//'data.struct.itop-problem-mgmt.xml',
),
'data.sample' => array(
//'data.sample.itop-problem-mgmt.xml',
),
// Documentation
//
'doc.manual_setup' => '',
'doc.more_information' => '',
// Default settings
//
'settings' => array(
),
)
);