mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
44 lines
876 B
PHP
44 lines
876 B
PHP
<?php
|
|
|
|
|
|
SetupWebPage::AddModule(
|
|
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
|
'itop-knownerror-mgmt/1.0.0',
|
|
array(
|
|
// Identification
|
|
//
|
|
'label' => 'Known Errors Database',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => array(
|
|
'itop-config-mgmt/1.0.0',
|
|
'itop-tickets/1.0.0',
|
|
),
|
|
'mandatory' => false,
|
|
'visible' => true,
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => array(
|
|
'model.itop-knownerror-mgmt.php',
|
|
),
|
|
'dictionary' => array(
|
|
'en.dict.itop-knownerror-mgmt.php',
|
|
),
|
|
'data.struct' => array(
|
|
//'data.struct.itop-knownerror-mgmt.xml',
|
|
),
|
|
'data.sample' => array(
|
|
//'data.sample.itop-knownerror-mgmt.xml',
|
|
),
|
|
|
|
// Documentation
|
|
//
|
|
'doc.manual_setup' => '/doc/xxx/yyy.htm',
|
|
'doc.more_information' => '/doc/xxx/yyy.htm',
|
|
)
|
|
);
|
|
|
|
?>
|