Commit 2e89e6d2959a62a2e690bace5120b9df5b0bf437
1 parent
22c5a373
Authentication providers can mark themselves as providers of users
and/or of groups. git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@4820 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
2 additions
and
0 deletions
lib/authentication/authenticationprovider.inc.php
| ... | ... | @@ -6,6 +6,8 @@ class KTAuthenticationProvider extends KTStandardDispatcher { |
| 6 | 6 | var $sName; |
| 7 | 7 | var $sNamespace; |
| 8 | 8 | var $bHasSource = false; |
| 9 | + var $bUserSource = true; | |
| 10 | + var $bGroupSource = false; | |
| 9 | 11 | |
| 10 | 12 | function KTAuthenticationProvider() { |
| 11 | 13 | return parent::KTStandardDispatcher(); | ... | ... |