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.ReadingTimeDBRepo.php
Go to the documentation of this file.
1
<?php
2
3
/* Copyright (c) 1998-2022 ILIAS open source, GPLv3, see LICENSE */
4
5
namespace
ILIAS\Blog\ReadingTime
;
6
10
class
ReadingTimeDBRepo
11
{
15
protected
$db
;
16
17
public
function
__construct
()
18
{
20
global
$DIC
;
21
$this->db = $DIC->database();
22
}
23
24
public
function
isActivated
(
int
$lm_id): bool
25
{
26
$db
=
$this->db
;
27
$set =
$db
->queryF(
28
"SELECT act_est_reading_time FROM il_blog "
.
29
" WHERE id = %s "
,
30
[
"integer"
],
31
[$lm_id]
32
);
33
if
($rec =
$db
->fetchAssoc($set)) {
34
return
(
bool
) $rec[
"act_est_reading_time"
];
35
}
36
return
false
;
37
}
38
39
public
function
activate
(
int
$lm_id,
bool
$activated): void
40
{
41
$db
=
$this->db
;
42
$db
->update(
43
"il_blog"
,
44
[
45
"act_est_reading_time"
=> [
"integer"
, $activated]
46
],
47
[
// where
48
"id"
=> [
"integer"
, $lm_id]
49
]
50
);
51
}
52
}
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo
Definition:
class.ReadingTimeDBRepo.php:10
$DIC
global $DIC
Definition:
feed.php:28
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\$db
$db
Definition:
class.ReadingTimeDBRepo.php:15
ILIAS\__construct
__construct()
Constructor setup ILIAS global object public.
Definition:
class.ilias.php:62
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\activate
activate(int $lm_id, bool $activated)
Definition:
class.ReadingTimeDBRepo.php:39
ILIAS\Blog\ReadingTime
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
Definition:
class.BlogSettingsGUI.php:19
ILIAS\Blog\ReadingTime\ReadingTimeDBRepo\isActivated
isActivated(int $lm_id)
Definition:
class.ReadingTimeDBRepo.php:24
Modules
Blog
ReadingTime
class.ReadingTimeDBRepo.php
Generated on Fri Apr 4 2025 22:01:36 for ILIAS by
1.8.13 (using
Doxyfile
)