module.itop-backup.php 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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-backup/2.2.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'Backup utilities',
  9. 'category' => 'Application management',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => true,
  15. 'visible' => false,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'main.itop-backup.php',
  20. //'model.itop-backup.php',
  21. ),
  22. 'webservice' => array(
  23. //'webservices.itop-backup.php',
  24. ),
  25. 'dictionary' => array(
  26. 'en.dict.itop-backup.php',
  27. 'fr.dict.itop-backup.php',
  28. //'de.dict.itop-backup.php',
  29. ),
  30. 'data.struct' => array(
  31. //'data.struct.itop-backup.xml',
  32. ),
  33. 'data.sample' => array(
  34. //'data.sample.itop-backup.xml',
  35. ),
  36. // Documentation
  37. //
  38. 'doc.manual_setup' => '',
  39. 'doc.more_information' => '',
  40. // Default settings
  41. //
  42. 'settings' => array(
  43. 'mysql_bindir' => '',
  44. 'week_days' => 'monday, tuesday, wednesday, thursday, friday',
  45. 'time' => '23:30',
  46. //'file_name_format' => '__DB__-%Y-%m-%d_%H_%M',
  47. 'retention_count' => 5,
  48. 'enabled' => true,
  49. 'debug' => false
  50. ),
  51. )
  52. );
  53. ?>