mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-24 19:18:44 +02:00
Brand new customer portal - alpha version: requires adjustments to work with various ticketing installation options
SVN:trunk[4044]
This commit is contained in:
38
datamodels/2.x/itop-portal/module.itop-portal.php
Normal file
38
datamodels/2.x/itop-portal/module.itop-portal.php
Normal file
@@ -0,0 +1,38 @@
|
||||
<?php
|
||||
|
||||
SetupWebPage::AddModule(
|
||||
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
||||
'itop-portal/1.0.0', array(
|
||||
// Identification
|
||||
'label' => 'iTop Portal',
|
||||
'category' => 'Portal',
|
||||
// Setup
|
||||
'dependencies' => array(
|
||||
'itop-portal-base/1.0.0'
|
||||
),
|
||||
'mandatory' => true,
|
||||
'visible' => false,
|
||||
// Components
|
||||
'datamodel' => array(
|
||||
'main.itop-portal.php'
|
||||
),
|
||||
'webservice' => array(
|
||||
//'webservices.itop-portal.php',
|
||||
),
|
||||
'dictionary' => array(
|
||||
),
|
||||
'data.struct' => array(
|
||||
//'data.struct.itop-portal.xml',
|
||||
),
|
||||
'data.sample' => array(
|
||||
//'data.sample.itop-portal.xml',
|
||||
),
|
||||
// Documentation
|
||||
'doc.manual_setup' => '',
|
||||
'doc.more_information' => '',
|
||||
// Default settings
|
||||
'settings' => array(
|
||||
),
|
||||
)
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user