module.itop-profiles-itil.php 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. // Copyright (C) 2010 Combodo SARL
  3. //
  4. // This program is free software; you can redistribute it and/or modify
  5. // it under the terms of the GNU General Public License as published by
  6. // the Free Software Foundation; version 3 of the License.
  7. //
  8. // This program is distributed in the hope that it will be useful,
  9. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. // GNU General Public License for more details.
  12. //
  13. // You should have received a copy of the GNU General Public License
  14. // along with this program; if not, write to the Free Software
  15. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  16. SetupWebPage::AddModule(
  17. __FILE__, // Path to the current file, all other file names are relative to the directory containing this file
  18. 'itop-profiles-itil/1.0.0',
  19. array(
  20. // Identification
  21. //
  22. 'label' => 'Create standard ITIL profiles',
  23. 'category' => 'create_profiles',
  24. // Setup
  25. //
  26. 'dependencies' => array(
  27. ),
  28. 'mandatory' => true,
  29. 'visible' => false,
  30. // Components
  31. //
  32. 'datamodel' => array(
  33. 'model.itop-profiles-itil.php',
  34. ),
  35. 'webservice' => array(
  36. //'webservices.itop-profiles-itil.php',
  37. ),
  38. 'data.struct' => array(
  39. //'data.struct.itop-profiles-itil.xml',
  40. ),
  41. 'data.sample' => array(
  42. //'data.sample.itop-profiles-itil.xml',
  43. ),
  44. // Documentation
  45. //
  46. 'doc.manual_setup' => '',
  47. 'doc.more_information' => '',
  48. // Default settings
  49. //
  50. 'settings' => array(
  51. //'some_setting' => 'some value',
  52. ),
  53. )
  54. );
  55. ?>