2012-12-27 11:14:44 +00:00
|
|
|
<?php
|
|
|
|
interface IAuthModule {
|
2019-11-01 10:03:06 +00:00
|
|
|
function authenticate($login, $password); // + optional third parameter: $service
|
2021-02-08 16:11:31 +00:00
|
|
|
function hook_auth_user(...$args); // compatibility wrapper due to how hooks work
|
2012-12-27 11:14:44 +00:00
|
|
|
}
|