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
SequenceDBRepository.php
Go to the documentation of this file.
1
<?php
2
19
declare(strict_types=1);
20
21
namespace
ILIAS\Survey\Sequence
;
22
23
use
ILIAS\Survey\InternalDataService
;
24
25
class
SequenceDBRepository
26
{
27
protected
InternalDataService
$data
;
28
protected \ilDBInterface
$db
;
29
30
public
function
__construct
(
31
InternalDataService
$data,
32
\
ilDBInterface
$db
33
) {
34
$this->db =
$db
;
35
$this->data =
$data
;
36
}
37
38
protected
function
count
(
int
$survey_id):
int
39
{
40
$set = $this->db->queryF(
41
"SELECT count(*) cnt FROM svy_svy_qst "
.
42
" WHERE survey_fi = %s "
,
43
[
"integer"
],
44
[$survey_id]
45
);
46
if
($rec = $this->db->fetchAssoc($set)) {
47
return
(
int
) $rec[
"cnt"
];
48
}
49
return
0;
50
}
51
52
public
function
insert
(
int
$survey_id,
int
$svy_question_id):
int
53
{
54
$order_nr = $this->
count
($survey_id);
55
$next_id = $this->db->nextId(
'svy_svy_qst'
);
56
$this->db->manipulateF(
57
"INSERT INTO svy_svy_qst (survey_question_id, survey_fi,"
.
58
"question_fi, sequence, tstamp) VALUES (%s, %s, %s, %s, %s)"
,
59
array(
'integer'
,
'integer'
,
'integer'
,
'integer'
,
'integer'
),
60
array($next_id, $survey_id, $svy_question_id, $order_nr, time())
61
);
62
return
$next_id;
63
}
64
}
ILIAS\Survey\Sequence\SequenceDBRepository\__construct
__construct(InternalDataService $data, \ilDBInterface $db)
Definition:
SequenceDBRepository.php:30
ILIAS\Survey\Sequence\SequenceDBRepository\$db
ilDBInterface $db
Definition:
SequenceDBRepository.php:28
ILIAS\Survey\Sequence\SequenceDBRepository\$data
InternalDataService $data
Definition:
SequenceDBRepository.php:27
ILIAS\Survey\Sequence\SequenceDBRepository\insert
insert(int $survey_id, int $svy_question_id)
Definition:
SequenceDBRepository.php:52
ILIAS\Survey\Sequence
Definition:
SequenceDBRepository.php:21
ilDBInterface
ILIAS\Survey\Sequence\SequenceDBRepository
Definition:
SequenceDBRepository.php:25
ILIAS\Survey\Sequence\SequenceDBRepository\count
count(int $survey_id)
Definition:
SequenceDBRepository.php:38
ILIAS\Survey\InternalDataService
Survey internal data service.
Definition:
class.InternalDataService.php:27
ILIAS\Repository\int
int(string $key)
Definition:
trait.BaseGUIRequest.php:61
InternalDataService
components
ILIAS
Survey
Sequence
SequenceDBRepository.php
Generated on Thu Apr 3 2025 23:03:49 for ILIAS by
1.8.13 (using
Doxyfile
)