module.authent-local.php 803 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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/2.2.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. 'data.struct' => array(
  22. //'data.struct.authent-local.xml',
  23. ),
  24. 'data.sample' => array(
  25. //'data.sample.authent-local.xml',
  26. ),
  27. // Documentation
  28. //
  29. 'doc.manual_setup' => '',
  30. 'doc.more_information' => '',
  31. // Default settings
  32. //
  33. 'settings' => array(
  34. ),
  35. )
  36. );
  37. ?>