ILIAS
trunk Revision v11.0_alpha-1702-gfd3ecb7f852
◀ 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.ReadingTimeDBRepo.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Blog\ReadingTime
;
22
26
class
ReadingTimeDBRepo
27
{
28
protected \ilDBInterface
$db
;
29
30
public
function
__construct
()
31
{
32
global
$DIC
;
33
$this->db = $DIC->database();
34
}
35
36
public
function
isActivated
(
int
$lm_id): bool
37
{
38
$db =
$this->db
;
39
$set = $db->
queryF
(
40
"SELECT act_est_reading_time FROM il_blog "
.
41
" WHERE id = %s "
,
42
[
"integer"
],
43
[$lm_id]
44
);
45
if
($rec = $db->fetchAssoc($set)) {
46
return
(
bool
) $rec[
"act_est_reading_time"
];
47
}
48
return
false
;
49
}
50
51
public
function
activate
(
int
$lm_id,
bool
$activated): void
52
{
53
$db =
$this->db
;
54
$db->
update
(
55
"il_blog"
,
56
[
57
"act_est_reading_time"
=> [
"integer"
, $activated]
58
],
59
[
// where
60
"id"
=> [
"integer"
, $lm_id]
61
]
62
);
63
}
64
}
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo
Definition:
class.ReadingTimeDBRepo.php:26
ilDBInterface\update
update(string $table_name, array $values, array $where)
$where MUST contain existing columns only.
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\$db
ilDBInterface $db
Definition:
class.ReadingTimeDBRepo.php:28
$DIC
global $DIC
Definition:
shib_login.php:22
ilDBInterface\queryF
queryF(string $query, array $types, array $values)
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\activate
activate(int $lm_id, bool $activated)
Definition:
class.ReadingTimeDBRepo.php:51
ILIAS\Blog\ReadingTime
Definition:
class.BlogSettingsGUI.php:21
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\__construct
__construct()
Definition:
class.ReadingTimeDBRepo.php:30
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\isActivated
isActivated(int $lm_id)
Definition:
class.ReadingTimeDBRepo.php:36
components
ILIAS
Blog
ReadingTime
class.ReadingTimeDBRepo.php
Generated on Thu Apr 3 2025 23:02:25 for ILIAS by
1.8.13 (using
Doxyfile
)