module.itop-virtualization-mgmt.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. // Copyright (C) 2010-2017 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. SetupWebPage::AddModule(
  17. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  18. 'itop-virtualization-mgmt/2.4.0',
  19. array(
  20. // Identification
  21. //
  22. 'label' => 'Virtualization Management',
  23. 'category' => 'business',
  24. // Setup
  25. //
  26. 'dependencies' => array(
  27. 'itop-config-mgmt/2.4.0'
  28. ),
  29. 'mandatory' => false,
  30. 'visible' => true,
  31. // Components
  32. //
  33. 'datamodel' => array(
  34. 'model.itop-virtualization-mgmt.php'
  35. ),
  36. 'webservice' => array(
  37. ),
  38. 'data.struct' => array(
  39. // add your 'structure' definition XML files here,
  40. ),
  41. 'data.sample' => array(
  42. // add your sample data XML files here,
  43. 'data.sample.farm.xml',
  44. 'data.sample.hypervisor.xml',
  45. 'data.sample.vm.xml',
  46. 'data.sample.dbserver.xml',
  47. 'data.sample.dbschema.xml',
  48. 'data.sample.webserver.xml',
  49. 'data.sample.webapp.xml',
  50. 'data.sample.applicationsolutionci.xml',
  51. ),
  52. // Documentation
  53. //
  54. 'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
  55. 'doc.more_information' => '', // hyperlink to more information, if any
  56. // Default settings
  57. //
  58. 'settings' => array(
  59. // Module specific settings go here, if any
  60. ),
  61. )
  62. );
  63. ?>