module.itop-basic.php 765 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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-basic/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'iTop Basic Model',
  9. // Setup
  10. //
  11. 'dependencies' => array(
  12. ),
  13. 'mandatory' => false,
  14. 'visible' => true,
  15. // Components
  16. //
  17. 'datamodel' => array(
  18. 'model.itop-basic.php',
  19. ),
  20. 'dictionary' => array(
  21. 'en.dict.itop-basic.php',
  22. ),
  23. 'data.struct' => array(
  24. //'data.struct.itop-basic.xml',
  25. ),
  26. 'data.sample' => array(
  27. //'data.sample.itop-basic.xml',
  28. ),
  29. // Documentation
  30. //
  31. 'doc.manual_setup' => '/doc/xxx/yyy.htm',
  32. 'doc.more_information' => '/doc/xxx/yyy.htm',
  33. )
  34. );
  35. ?>