1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- // Copyright (C) 2010-2017 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/2.4.0',
- array(
- // Identification
- //
- 'label' => 'Virtualization Management',
- 'category' => 'business',
- // Setup
- //
- 'dependencies' => array(
- 'itop-config-mgmt/2.4.0'
- ),
- 'mandatory' => false,
- 'visible' => true,
- // Components
- //
- 'datamodel' => array(
- 'model.itop-virtualization-mgmt.php'
- ),
- '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
- ),
- )
- );
- ?>
|