module.itop-bridge-virtualization-storage.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. SetupWebPage::AddModule(
  3. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  4. 'itop-bridge-virtualization-storage/2.3.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Links between virtualization and storage',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. 'itop-storage-mgmt/2.2.0',
  14. 'itop-virtualization-mgmt/2.2.0',
  15. ),
  16. 'mandatory' => false,
  17. 'visible' => false,
  18. 'auto_select' => 'SetupInfo::ModuleIsSelected("itop-storage-mgmt") && SetupInfo::ModuleIsSelected("itop-virtualization-mgmt")',
  19. // Components
  20. //
  21. 'datamodel' => array(
  22. 'model.itop-bridge-virtualization-storage.php',
  23. ),
  24. 'data.struct' => array(
  25. //'data.struct.itop-change-mgmt.xml',
  26. ),
  27. 'data.sample' => array(
  28. //'data.sample.itop-change-mgmt.xml',
  29. ),
  30. // Documentation
  31. //
  32. 'doc.manual_setup' => '',
  33. 'doc.more_information' => '',
  34. // Default settings
  35. //
  36. 'settings' => array(
  37. ),
  38. )
  39. );
  40. ?>