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.ilProfileUserPrompt.php
Go to the documentation of this file.
1
<?php
2
23
class
ilProfileUserPrompt
24
{
25
protected
?
string
$last_prompt
= null;
// timestamp
26
protected
?
string
$first_login
= null;
// timestamp
27
protected
int
$user_id
;
28
29
public
function
__construct
(
30
int
$user_id,
31
?
string
$last_prompt,
32
?
string
$first_login
33
) {
34
$this->user_id =
$user_id
;
35
$this->last_prompt =
$last_prompt
;
36
$this->first_login =
$first_login
;
37
}
38
39
public
function
getUserId
():
int
40
{
41
return
$this->user_id
;
42
}
43
44
public
function
getLastPrompt
(): ?string
45
{
46
return
$this->last_prompt
;
47
}
48
49
public
function
getFirstLogin
(): ?string
50
{
51
return
$this->first_login
;
52
}
53
}
ilProfileUserPrompt\__construct
__construct(int $user_id, ?string $last_prompt, ?string $first_login)
Definition:
class.ilProfileUserPrompt.php:29
ilProfileUserPrompt\getLastPrompt
getLastPrompt()
Definition:
class.ilProfileUserPrompt.php:44
ilProfileUserPrompt\getUserId
getUserId()
Definition:
class.ilProfileUserPrompt.php:39
ilProfileUserPrompt\$user_id
int $user_id
Definition:
class.ilProfileUserPrompt.php:27
ilProfileUserPrompt
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.ilProfileUserPrompt.php:23
ilProfileUserPrompt\getFirstLogin
getFirstLogin()
Definition:
class.ilProfileUserPrompt.php:49
ilProfileUserPrompt\$last_prompt
string $last_prompt
Definition:
class.ilProfileUserPrompt.php:25
ilProfileUserPrompt\$first_login
string $first_login
Definition:
class.ilProfileUserPrompt.php:26
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
Services
User
ProfilePrompt
classes
class.ilProfileUserPrompt.php
Generated on Tue Apr 1 2025 22:02:39 for ILIAS by
1.8.13 (using
Doxyfile
)