ILIAS
release_6 Revision v6.24-5-g0c8bfefb3b8
◀ 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
p
s
t
w
+
Functions
_
a
b
c
f
g
h
i
s
t
w
+
Variables
$
c
d
e
f
g
h
j
l
m
p
s
t
+
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
q
r
s
t
u
v
w
x
z
+
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
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
Examples
•
All
Data Structures
Namespaces
Files
Functions
Variables
Modules
Pages
save_question_post_data.php
Go to the documentation of this file.
1
<?php
2
/* Copyright (c) 1998-2013 ILIAS open source, Extended GPL, see docs/LICENSE */
3
4
chdir(
"../.."
);
5
require_once
"./include/inc.header.php"
;
6
include_once
"./webservice/soap/include/inc.soap_functions.php"
;
7
$results
= array();
8
foreach
(
$_POST
as $key => $value) {
9
if
(preg_match(
"/value_(\d+)_1/"
, $key, $matches)) {
10
array_push(
$results
,
$_POST
[
"value_"
. $matches[1] .
"_1"
]);
11
array_push(
$results
,
$_POST
[
"value_"
. $matches[1] .
"_2"
]);
12
array_push(
$results
,
$_POST
[
"points_"
. $matches[1]]);
13
}
14
}
15
$res
=
ilSoapFunctions::saveQuestion
(
$_POST
[
"session_id"
] .
"::"
.
$_POST
[
"client"
], $_POST[
"active_id"
], $_POST[
"question_id"
], $_POST[
"pass"
],
$results
);
16
if
(
$res
===
true
) {
17
global
$DIC
;
18
$lng
= $DIC[
'lng'
];
19
$lng
->loadLanguageModule(
"assessment"
);
20
echo
$lng
->txt(
"result_successful_saved"
);
21
}
else
{
22
global
$DIC
;
23
$lng
= $DIC[
'lng'
];
24
$lng
->loadLanguageModule(
"assessment"
);
25
echo
$lng
->txt(
"result_unsuccessful_saved"
);
26
}
$res
foreach($_POST as $key=> $value) $res
Definition:
save_question_post_data.php:15
$lng
$lng
Definition:
save_question_post_data.php:23
$results
$results
Definition:
save_question_post_data.php:7
ilSoapFunctions\saveQuestion
static saveQuestion($sid, $active_id, $question_id, $pass, $solution)
Definition:
inc.soap_functions.php:512
$DIC
$DIC
Definition:
xapitoken.php:46
$_POST
$_POST["username"]
Definition:
cfg.phpunit.template.php:11
Modules
TestQuestionPool
save_question_post_data.php
Generated on Wed Apr 2 2025 20:01:05 for ILIAS by
1.8.13 (using
Doxyfile
)