Files
iTop/modules/itop-knownerror-mgmt-1.0.0/module.itop-knownerror-mgmt.php
2010-06-30 15:40:18 +00:00

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',
)
);
?>