git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
18 lines
610 B
PHP
18 lines
610 B
PHP
<?php
|
|
|
|
require_once("../../config/dmsDefaults.php");
|
|
require_once(KT_LIB_DIR . '/authentication/authenticationsource.inc.php');
|
|
require_once(KT_LIB_DIR . '/authentication/authenticationproviderregistry.inc.php');
|
|
|
|
|
|
$oSource = KTAuthenticationSource::get(2);
|
|
$sProvider = $oSource->getAuthenticationProvider();
|
|
$oRegistry = KTAuthenticationProviderRegistry::getSingleton();
|
|
$oProvider =& $oRegistry->getAuthenticationProvider($sProvider);
|
|
$oAuthenticator = $oProvider->getAuthenticator($oSource);
|
|
$oUser = User::getByUserName('nbm');
|
|
$foo = $oAuthenticator->checkPassword($oUser, 'asdfa');
|
|
var_dump($foo);
|
|
|
|
?>
|