mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-21 17:48:43 +02:00
55 lines
1.2 KiB
PHP
55 lines
1.2 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @copyright Copyright (C) 2010-2025 Combodo SARL
|
|
* @license http://opensource.org/licenses/AGPL-3.0
|
|
*/
|
|
|
|
//
|
|
// iTop module definition file
|
|
//
|
|
|
|
SetupWebPage::AddModule(
|
|
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
|
'combodo-data-feature-removal/3.3.0',
|
|
[
|
|
// Identification
|
|
//
|
|
'label' => 'iTop Data Feature Removal',
|
|
'category' => 'business',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => [
|
|
|
|
],
|
|
'mandatory' => true,
|
|
'visible' => false,
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => [
|
|
'vendor/autoload.php',
|
|
'model.combodo-data-feature-removal.php', // Contains the PHP code generated by the "compilation" of datamodel.combodo-data-feature-removal.xml
|
|
],
|
|
'webservice' => [],
|
|
'data.struct' => [
|
|
// add your 'structure' definition XML files here,
|
|
],
|
|
'data.sample' => [
|
|
// 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
|
|
|
|
// Default settings
|
|
//
|
|
'settings' => [
|
|
// Module specific settings go here, if any
|
|
],
|
|
]
|
|
);
|