mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-13 15:34:12 +01:00
69 lines
1.8 KiB
PHP
69 lines
1.8 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024 Combodo SAS
|
|
//
|
|
// This program is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation; version 3 of the License.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
SetupWebPage::AddModule(
|
|
__FILE__, // Path to the current file, all other file names are relative to the directory containing this file
|
|
'itop-virtualization-mgmt/3.3.0',
|
|
[
|
|
// Identification
|
|
//
|
|
'label' => 'Virtualization Management',
|
|
'category' => 'business',
|
|
|
|
// Setup
|
|
//
|
|
'dependencies' => [
|
|
'itop-config-mgmt/2.4.0',
|
|
],
|
|
'mandatory' => false,
|
|
'visible' => true,
|
|
|
|
// Components
|
|
//
|
|
'datamodel' => [
|
|
],
|
|
'webservice' => [
|
|
|
|
],
|
|
'data.struct' => [
|
|
// add your 'structure' definition XML files here,
|
|
],
|
|
'data.sample' => [
|
|
// add your sample data XML files here,
|
|
'data.sample.farm.xml',
|
|
'data.sample.hypervisor.xml',
|
|
'data.sample.vm.xml',
|
|
'data.sample.dbserver.xml',
|
|
'data.sample.dbschema.xml',
|
|
'data.sample.webserver.xml',
|
|
'data.sample.webapp.xml',
|
|
'data.sample.applicationsolutionci.xml',
|
|
],
|
|
|
|
// 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
|
|
],
|
|
]
|
|
);
|