module.authent-local.php 1000 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. 'authent-local/1.0.0',
  5. array(
  6. // Identification
  7. //
  8. 'label' => 'User authentication based on the local DB',
  9. 'category' => 'authentication',
  10. // Setup
  11. //
  12. 'dependencies' => array(
  13. ),
  14. 'mandatory' => true,
  15. 'visible' => true,
  16. // Components
  17. //
  18. 'datamodel' => array(
  19. 'model.authent-local.php',
  20. ),
  21. 'dictionary' => array(
  22. 'en.dict.authent-local.php',
  23. 'fr.dict.authent-local.php',
  24. 'de.dict.authent-local.php',
  25. 'ru.dict.authent-local.php',
  26. 'tr.dict.authent-local.php',
  27. ),
  28. 'data.struct' => array(
  29. //'data.struct.authent-local.xml',
  30. ),
  31. 'data.sample' => array(
  32. //'data.sample.authent-local.xml',
  33. ),
  34. // Documentation
  35. //
  36. 'doc.manual_setup' => '',
  37. 'doc.more_information' => '',
  38. // Default settings
  39. //
  40. 'settings' => array(
  41. ),
  42. )
  43. );
  44. ?>