Files
iTop/datamodels/2.x/itop-hub-connector/module.itop-hub-connector.php
Benjamin DALSASS 7c8670b57c Merge remote-tracking branch 'origin/support/3.2' into develop
# Conflicts:
#	core/attributedef.class.inc.php
#	setup/extensionsmap.class.inc.php
#	tests/php-unit-tests/composer.lock
2026-03-17 08:05:10 +01:00

50 lines
997 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/3.3.0',
[
// Identification
//
'label' => 'iTop Hub Connector',
'category' => 'business',
// Setup
//
'dependencies' => [
'itop-config-mgmt/2.4.0', // Actually this module requires iTop 2.4.1 minimum
],
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => [
'menus.php',
'hubnewsroomprovider.class.inc.php',
],
'webservice' => [
],
'data.struct' => [
// add your 'structure' definition XML files here,
],
'data.sample' => [
// add your sample data XML files here,
],
'delegated_authentication_endpoints' => [
'ajax.php',
],
// Documentation
//
'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
'doc.more_information' => '', // hyperlink to more information, if any
]
);