module.itop-service-mgmt.php 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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-service-mgmt/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Service Management (services, SLAs, contracts)',
  9. // Setup
  10. //
  11. 'dependencies' => array(
  12. 'itop-config-mgmt/1.0.0',
  13. ),
  14. 'mandatory' => false,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.itop-service-mgmt.php',
  20. ),
  21. 'dictionary' => array(
  22. 'en.dict.itop-service-mgmt.php',
  23. 'fr.dict.itop-service-mgmt.php',
  24. ),
  25. 'data.struct' => array(
  26. //'data.struct.itop-service-mgmt.xml',
  27. ),
  28. 'data.sample' => array(
  29. 'data.sample.Service.xml',
  30. 'data.sample.ServiceSubcategory.xml',
  31. 'data.sample.SLA.xml',
  32. 'data.sample.SLT.xml',
  33. 'data.sample.lnkSLTToSLA.xml',
  34. 'data.sample.Contract.xml',
  35. 'data.sample.lnkContractToSLA.xml',
  36. ),
  37. // Documentation
  38. //
  39. 'doc.manual_setup' => '', // No manual installation instructions
  40. 'doc.more_information' => '/doc/itop-documentation.htm#ServiceMgmt',
  41. )
  42. );
  43. ?>