Files
iTop/datamodels/2.x/itop-virtualization-mgmt/module.itop-virtualization-mgmt.php
denis.flaven@combodo.com 052e2a1a42 🔖 Prepare 3.1.2 version
2024-10-03 12:14:32 +02:00

68 lines
1.9 KiB
PHP

<?php
// Copyright (C) 2010-2023 Combodo SARL
//
// 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.1.2',
array(
// Identification
//
'label' => 'Virtualization Management',
'category' => 'business',
// Setup
//
'dependencies' => array(
'itop-config-mgmt/2.4.0'
),
'mandatory' => false,
'visible' => true,
// Components
//
'datamodel' => array(
),
'webservice' => array(
),
'data.struct' => array(
// add your 'structure' definition XML files here,
),
'data.sample' => array(
// 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' => array(
// Module specific settings go here, if any
),
)
);