module.itop-sla-computation.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. // Copyright (C) 2010-2012 Combodo SARL
  3. //
  4. // This file is part of iTop.
  5. //
  6. // iTop is free software; you can redistribute it and/or modify
  7. // it under the terms of the GNU Affero General Public License as published by
  8. // the Free Software Foundation, either version 3 of the License, or
  9. // (at your option) any later version.
  10. //
  11. // iTop is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. // GNU Affero General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU Affero General Public License
  17. // along with iTop. If not, see <http://www.gnu.org/licenses/>
  18. SetupWebPage::AddModule(
  19. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  20. 'itop-sla-computation/1.0.0',
  21. array(
  22. // Identification
  23. //
  24. 'label' => 'SLA Computation',
  25. 'category' => 'sla',
  26. // Setup
  27. //
  28. 'dependencies' => array(
  29. ),
  30. 'mandatory' => true,
  31. 'visible' => false,
  32. // Components
  33. //
  34. 'datamodel' => array(
  35. 'main.itop-sla-computation.php'
  36. ),
  37. 'webservice' => array(
  38. ),
  39. 'data.struct' => array(
  40. // add your 'structure' definition XML files here,
  41. ),
  42. 'data.sample' => array(
  43. // add your sample data XML files here,
  44. ),
  45. // Documentation
  46. //
  47. 'doc.manual_setup' => '', // hyperlink to manual setup documentation, if any
  48. 'doc.more_information' => '', // hyperlink to more information, if any
  49. // Default settings
  50. //
  51. 'settings' => array(
  52. // Module specific settings go here, if any
  53. ),
  54. )
  55. );
  56. ?>