ILIAS
trunk Revision v11.0_alpha-2662-g519ff7d528f
◀ ilDoc Overview
AuthShibboleth.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS
;
22
23
use
ILIAS\Component\Component
;
24
use
ILIAS\Component\Resource\PublicAsset
;
25
use
ILIAS\Component\Resource\Endpoint
;
26
27
class
AuthShibboleth
implements
Component
28
{
29
public
function
init
(
30
array | \
ArrayAccess
&$define,
31
array | \
ArrayAccess
&$implement,
32
array | \
ArrayAccess
&$use,
33
array | \
ArrayAccess
&$contribute,
34
array | \
ArrayAccess
&$seek,
35
array | \
ArrayAccess
&$provide,
36
array | \
ArrayAccess
&$pull,
37
array | \
ArrayAccess
&$internal,
38
): void {
39
$contribute[PublicAsset::class] = fn():
Endpoint
=>
40
new
Endpoint
($this,
"shib_login.php"
);
41
42
$contribute[PublicAsset::class] = fn():
Endpoint
=>
43
new
Endpoint
($this,
"shib_logout.php"
);
44
}
45
}
Endpoint
ILIAS\AuthShibboleth
Definition:
AuthShibboleth.php:27
ILIAS
Interface Observer Contains several chained tasks and infos about them.
Definition:
AccessControl.php:21
ILIAS\UI\Component
ILIAS\AuthShibboleth\init
init(array|\ArrayAccess &$define, array|\ArrayAccess &$implement, array|\ArrayAccess &$use, array|\ArrayAccess &$contribute, array|\ArrayAccess &$seek, array|\ArrayAccess &$provide, array|\ArrayAccess &$pull, array|\ArrayAccess &$internal,)
Definition:
AuthShibboleth.php:29
ILIAS\Component\Resource\Endpoint
An endpoint is a PHP file that produces output via HTTP.
Definition:
Endpoint.php:28
ArrayAccess
Component
PublicAsset
components
ILIAS
AuthShibboleth
AuthShibboleth.php
Generated on Wed Sep 3 2025 23:02:11 for ILIAS by
1.8.13 (using
Doxyfile
)