Files
iTop/datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
Eric Espié 019542ff10 iTop 2.5.0 beta
SVN:trunk[5731]
2018-04-24 11:58:50 +00:00

48 lines
966 B
PHP

<?php
//
// iTop module definition file
//
SetupWebPage::AddModule(
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
'itop-hub-connector/2.5.0',
array(
// Identification
//
'label' => 'iTop Hub Connector',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/2.4.0', // Actually this module requires iTop 2.4.1 minimum
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
'menus.php',
'model.itop-hub-connector.php'
),
'webservice' => array(
),
'data.struct' => array(
// add your 'structure' definition XML files here,
),
'data.sample' => array(
// add your sample data XML files here,
),
// Documentation
//
'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
'doc.more_information' => '', // hyperlink to more information, if any
)
);
?>