ILIAS
trunk Revision v11.0_alpha-1689-g66c127b4ae8
◀ ilDoc Overview
Main Page
Related Pages
Modules
+
Namespaces
Namespace List
+
Namespace Members
+
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
k
l
m
n
o
p
r
s
t
u
v
w
x
+
Variables
$
c
e
g
h
j
l
m
p
s
t
u
v
+
Enumerations
a
c
e
f
i
j
l
m
n
o
p
r
s
t
u
v
z
+
Enumerator
a
c
d
e
f
g
i
l
m
n
o
p
q
s
t
u
v
y
+
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
Ö
Enumerations
Enumerator
+
Files
File List
+
Globals
+
All
$
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
z
+
Functions
a
b
c
d
e
f
g
h
i
m
n
p
r
s
t
u
v
+
Variables
$
a
c
e
g
h
i
m
n
o
p
r
s
t
u
v
z
Enumerations
Enumerator
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Enumerations
Enumerator
Modules
Pages
class.ilCourseLMHistory.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=0);
26
class
ilCourseLMHistory
27
{
28
private
int
$course_id
= 0;
29
private
int
$user_id
= 0;
30
31
protected
ilDBInterface
$db
;
32
33
public
function
__construct
(
int
$crs_id,
int
$user_id)
34
{
35
global
$DIC
;
36
37
$this->db = $DIC->database();
38
$this->course_id = $crs_id;
39
$this->user_id =
$user_id
;
40
}
41
42
public
function
getUserId
():
int
43
{
44
return
$this->user_id
;
45
}
46
47
public
function
getCourseRefId
():
int
48
{
49
return
$this->course_id
;
50
}
51
52
public
static
function
_updateLastAccess
(
int
$a_user_id,
int
$a_lm_ref_id,
int
$a_page_id): bool
53
{
54
global
$DIC
;
55
56
$tree = $DIC[
'tree'
];
57
$ilDB
= $DIC[
'ilDB'
];
58
59
if
(!$crs_ref_id = $tree->checkForParentType($a_lm_ref_id,
'crs'
)) {
60
return
true
;
61
}
62
63
$ilDB
->replace(
64
"crs_lm_history"
,
65
[
66
"crs_ref_id"
=> [
"integer"
, $crs_ref_id],
67
"lm_ref_id"
=> [
"integer"
, $a_lm_ref_id],
68
"usr_id"
=> [
"integer"
, $a_user_id]
69
],
70
[
71
"lm_page_id"
=> [
"integer"
, $a_page_id],
72
"last_access"
=> [
"integer"
, time()]
73
]
74
);
75
76
return
true
;
77
}
78
79
public
function
getLastLM
():
int
80
{
81
$query =
"SELECT * FROM crs_lm_history "
.
82
"WHERE usr_id = "
. $this->db->quote($this->
getUserId
(),
'integer'
) .
" "
.
83
"AND crs_ref_id = "
. $this->db->quote($this->
getCourseRefId
(),
'integer'
) .
" "
.
84
"ORDER BY last_access "
;
85
86
$res
= $this->db->query($query);
87
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
88
return
(
int
) $row->lm_ref_id;
89
}
90
return
0;
91
}
92
93
public
function
getLMHistory
(): array
94
{
95
$query =
"SELECT * FROM crs_lm_history "
.
96
"WHERE usr_id = "
. $this->db->quote($this->
getUserId
(),
'integer'
) .
" "
.
97
"AND crs_ref_id = "
. $this->db->quote($this->
getCourseRefId
(),
'integer'
) .
""
;
98
99
$res
= $this->db->query($query);
100
$lm = [];
101
while
($row =
$res
->fetchRow(
ilDBConstants::FETCHMODE_OBJECT
)) {
102
$lm[$row->lm_ref_id][
'lm_ref_id'
] = (
int
) $row->lm_ref_id;
103
$lm[$row->lm_ref_id][
'lm_page_id'
] = (
int
) $row->lm_page_id;
104
$lm[$row->lm_ref_id][
'last_access'
] = (
int
) $row->last_access;
105
}
106
return
$lm;
107
}
108
109
public
static
function
_deleteUser
(
int
$a_usr_id): void
110
{
111
global
$DIC
;
112
113
$ilDB
= $DIC->database();
114
$query =
"DELETE FROM crs_lm_history WHERE usr_id = "
.
$ilDB
->quote($a_usr_id,
'integer'
) .
" "
;
115
$res
=
$ilDB
->manipulate($query);
116
}
117
}
$res
$res
Definition:
ltiservices.php:66
ilCourseLMHistory\$course_id
int $course_id
Definition:
class.ilCourseLMHistory.php:28
ilCourseLMHistory\_updateLastAccess
static _updateLastAccess(int $a_user_id, int $a_lm_ref_id, int $a_page_id)
Definition:
class.ilCourseLMHistory.php:52
ilCourseLMHistory\getCourseRefId
getCourseRefId()
Definition:
class.ilCourseLMHistory.php:47
$ilDB
$ilDB
Definition:
storeScorm2004.php:25
ilCourseLMHistory\__construct
__construct(int $crs_id, int $user_id)
Definition:
class.ilCourseLMHistory.php:33
$DIC
global $DIC
Definition:
shib_login.php:22
ilDBInterface
ilCourseLMHistory\$db
ilDBInterface $db
Definition:
class.ilCourseLMHistory.php:31
ilCourseLMHistory\$user_id
int $user_id
Definition:
class.ilCourseLMHistory.php:29
ilCourseLMHistory\getLMHistory
getLMHistory()
Definition:
class.ilCourseLMHistory.php:93
ilCourseLMHistory\_deleteUser
static _deleteUser(int $a_usr_id)
Definition:
class.ilCourseLMHistory.php:109
ilDBConstants\FETCHMODE_OBJECT
const FETCHMODE_OBJECT
Definition:
class.ilDBConstants.php:29
ilCourseLMHistory\getLastLM
getLastLM()
Definition:
class.ilCourseLMHistory.php:79
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
ilCourseLMHistory\getUserId
getUserId()
Definition:
class.ilCourseLMHistory.php:42
ilCourseLMHistory
class ilCourseLMHistory
Definition:
class.ilCourseLMHistory.php:26
components
ILIAS
Course
classes
class.ilCourseLMHistory.php
Generated on Wed Apr 2 2025 23:02:36 for ILIAS by
1.8.13 (using
Doxyfile
)