mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 07:24:13 +01:00
48 lines
873 B
PHP
Executable File
48 lines
873 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-welcome-itil/2.7.7',
|
|
array(
|
|
// Identification
|
|
//
|
|
'label' => 'ITIL skin',
|
|
'category' => 'skin',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => array(
|
|
),
|
|
'mandatory' => true,
|
|
'visible' => false,
|
|
//'installer' => 'MyInstaller',
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => array(
|
|
'model.itop-welcome-itil.php',
|
|
),
|
|
'webservice' => array(
|
|
//'webservices.itop-welcome-itil.php',
|
|
),
|
|
'data.struct' => array(
|
|
//'data.struct.itop-welcome-itil.xml',
|
|
),
|
|
'data.sample' => array(
|
|
//'data.sample.itop-welcome-itil.xml',
|
|
),
|
|
|
|
// Documentation
|
|
//
|
|
'doc.manual_setup' => '',
|
|
'doc.more_information' => '',
|
|
|
|
// Default settings
|
|
//
|
|
'settings' => array(
|
|
//'some_setting' => 'some value',
|
|
),
|
|
)
|
|
);
|