ILIAS
release_8 Revision v8.19
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
All
$
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
r
s
t
u
v
w
x
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
a
b
c
d
e
f
g
h
j
l
m
p
s
t
u
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
$
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Ö
+
Files
File List
+
Globals
+
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
g
h
i
m
n
p
r
s
t
u
v
x
+
Variables
$
a
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
class.ilECSAuth.php
Go to the documentation of this file.
1
<?php
2
18
declare(strict_types=1);
19
23
class
ilECSAuth
implements
JsonSerializable
24
{
25
protected
ilLogger
$log
;
26
protected
array
$mids
= array();
27
28
private
string
$realm
=
''
;
29
private
string
$url
=
''
;
30
private
?
int
$pid
= null;
31
32
public
function
__construct
()
33
{
34
global
$DIC
;
35
36
$this->log = $DIC->logger()->wsrv();
37
}
38
39
public
function
setPid
(
int
$a_pid): void
40
{
41
$this->pid = $a_pid;
42
}
43
44
public
function
getPid
():
int
45
{
46
return
$this->pid
;
47
}
48
49
public
function
setUrl
(
string
$a_url): void
50
{
51
$this->url = $a_url;
52
}
53
54
public
function
getUrl
(): string
55
{
56
return
$this->url
;
57
}
58
59
public
function
setRealm
(
string
$a_realm): void
60
{
61
$this->realm = $a_realm;
62
}
63
64
public
function
getRealm
(): string
65
{
66
return
$this->realm
;
67
}
68
69
public
function
jsonSerialize
()
70
{
71
return
[
72
"realm"
=>
$this->realm
73
];
74
}
75
}
ilLogger
ilECSAuth\setUrl
setUrl(string $a_url)
Definition:
class.ilECSAuth.php:49
ilECSAuth
Definition:
class.ilECSAuth.php:23
$DIC
global $DIC
Definition:
feed.php:28
ilECSAuth\setRealm
setRealm(string $a_realm)
Definition:
class.ilECSAuth.php:59
ilECSAuth\$url
string $url
Definition:
class.ilECSAuth.php:29
ilECSAuth\$pid
int $pid
Definition:
class.ilECSAuth.php:30
JsonSerializable
ilECSAuth\getPid
getPid()
Definition:
class.ilECSAuth.php:44
ilECSAuth\$mids
array $mids
Definition:
class.ilECSAuth.php:26
ilECSAuth\$log
ilLogger $log
Definition:
class.ilECSAuth.php:25
ilECSAuth\jsonSerialize
jsonSerialize()
Definition:
class.ilECSAuth.php:69
ilECSAuth\setPid
setPid(int $a_pid)
Definition:
class.ilECSAuth.php:39
ilECSAuth\getRealm
getRealm()
Definition:
class.ilECSAuth.php:64
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilECSAuth\getUrl
getUrl()
Definition:
class.ilECSAuth.php:54
ilECSAuth\$realm
string $realm
Definition:
class.ilECSAuth.php:28
ilECSAuth\__construct
__construct()
Definition:
class.ilECSAuth.php:32
Services
WebServices
ECS
classes
class.ilECSAuth.php
Generated on Fri Apr 4 2025 22:03:06 for ILIAS by
1.8.13 (using
Doxyfile
)