module.itop-bridge-virtualization-storage.php 979 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Links between virtualization and storage',
  9. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => false,
  15. 'visible' => false,
  16. 'auto_select' => 'SetupInfo::ModuleIsSelected("itop-storage-mgmt") && SetupInfo::ModuleIsSelected("itop-virtualization-mgmt")',
  17. // Components
  18. //
  19. 'datamodel' => array(
  20. 'model.itop-bridge-virtualization-storage.php',
  21. ),
  22. 'data.struct' => array(
  23. //'data.struct.itop-change-mgmt.xml',
  24. ),
  25. 'data.sample' => array(
  26. //'data.sample.itop-change-mgmt.xml',
  27. ),
  28. // Documentation
  29. //
  30. 'doc.manual_setup' => '',
  31. 'doc.more_information' => '',
  32. // Default settings
  33. //
  34. 'settings' => array(
  35. ),
  36. )
  37. );
  38. ?>