module.itop-service-mgmt.php 1.2 KB

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