mirror of
https://github.com/Combodo/iTop.git
synced 2026-05-01 06:28:46 +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:
43
datamodels/2.x/itop-portal-base/module.itop-portal-base.php
Normal file
43
datamodels/2.x/itop-portal-base/module.itop-portal-base.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
SetupWebPage::AddModule(
|
||||
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
||||
'itop-portal-base/1.0.0', array(
|
||||
// Identification
|
||||
'label' => 'iTop Portal Base',
|
||||
'category' => 'Portal',
|
||||
// Setup
|
||||
'dependencies' => array(
|
||||
),
|
||||
'mandatory' => true,
|
||||
'visible' => false,
|
||||
// Components
|
||||
'datamodel' => array(
|
||||
'portal/src/entities/abstractbrick.class.inc.php',
|
||||
'portal/src/entities/portalbrick.class.inc.php',
|
||||
'portal/src/controllers/abstractcontroller.class.inc.php',
|
||||
'portal/src/controllers/brickcontroller.class.inc.php',
|
||||
'portal/src/routers/abstractrouter.class.inc.php',
|
||||
),
|
||||
'webservice' => array(
|
||||
//'webservices.itop-portal-base.php',
|
||||
),
|
||||
'dictionary' => array(
|
||||
'fr.dict.itop-portal-base.php',
|
||||
//'de.dict.itop-portal-base.php',
|
||||
),
|
||||
'data.struct' => array(
|
||||
//'data.struct.itop-portal-base.xml',
|
||||
),
|
||||
'data.sample' => array(
|
||||
//'data.sample.itop-portal-base.xml',
|
||||
),
|
||||
// Documentation
|
||||
'doc.manual_setup' => '',
|
||||
'doc.more_information' => '',
|
||||
// Default settings
|
||||
'settings' => array(
|
||||
),
|
||||
)
|
||||
);
|
||||
?>
|
||||
Reference in New Issue
Block a user