disabled.module.itop-basic.php 1011 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. 'category' => 'business',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => false,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.itop-basic.php',
  20. ),
  21. 'dictionary' => array(
  22. 'en.dict.itop-basic.php',
  23. 'es_cr.dict.itop-basic.php',
  24. 'fr.dict.itop-basic.php',
  25. 'pt_br.dict.itop-basic.php',
  26. 'tr.dict.itop-basic.php',
  27. 'zh.dict.itop-basic.php',
  28. ),
  29. 'data.struct' => array(
  30. //'data.struct.itop-basic.xml',
  31. ),
  32. 'data.sample' => array(
  33. //'data.sample.itop-basic.xml',
  34. ),
  35. // Documentation
  36. //
  37. 'doc.manual_setup' => '/doc/xxx/yyy.htm',
  38. 'doc.more_information' => '/doc/xxx/yyy.htm',
  39. // Default settings
  40. //
  41. 'settings' => array(
  42. ),
  43. )
  44. );
  45. ?>