29 parent::__construct($a_title, $a_postvar);
39 $this->values = array();
40 if (is_array($a_value)) {
41 include_once
"./Modules/TestQuestionPool/classes/class.assAnswerErrorText.php";
42 if (is_array($a_value[
'key'])) {
43 foreach ($a_value[
'key'] as $idx =>
$key) {
44 array_push($this->values,
new assAnswerErrorText(
$key, $a_value[
'value'][$idx], str_replace(
",",
".", $a_value[
'points'][$idx])));
57 $this->key_size = $a_size;
77 $this->value_size = $a_size;
97 $this->key_maxlength = $a_maxlength;
117 $this->value_maxlength = $a_maxlength;
137 $this->value_name = $a_name;
157 $this->key_name = $a_name;
177 $this->values = $a_values;
206 if (is_array($foundvalues)) {
208 if (is_array($foundvalues[
'key']) && is_array($foundvalues[
'value'])) {
209 foreach ($foundvalues[
'key'] as $val) {
215 foreach ($foundvalues[
'value'] as $val) {
221 foreach ($foundvalues[
'points'] as $val) {
226 if (!is_numeric(str_replace(
",",
".", $val))) {
227 $this->
setAlert(
$lng->txt(
"form_msg_numeric_value_required"));
230 if ((
float) $val <= 0) {
231 $this->
setAlert(
$lng->txt(
"positive_numbers_required"));
261 $tpl =
new ilTemplate(
"tpl.prop_errortextwizardinput.html",
true,
true,
"Modules/TestQuestionPool");
263 foreach ($this->values as
$value) {
264 if (is_object($value)) {
265 if (strlen($value->text_wrong)) {
266 $tpl->setCurrentBlock(
"prop_key_propval");
268 $tpl->parseCurrentBlock();
270 if (strlen($value->text_correct)) {
271 $tpl->setCurrentBlock(
"prop_value_propval");
273 $tpl->parseCurrentBlock();
275 if (strlen($value->points)) {
276 $tpl->setCurrentBlock(
"prop_points_propval");
278 $tpl->parseCurrentBlock();
282 $tpl->setCurrentBlock(
"row");
283 $class = (
$i % 2 == 0) ?
"even" :
"odd";
287 if (
$i == count($this->values) - 1) {
290 $tpl->setVariable(
"ROW_CLASS", $class);
291 $tpl->setVariable(
"ROW_NUMBER",
$i);
298 $tpl->setVariable(
"VALUE_ID", $this->
getPostVar() .
"[value][$i]");
303 $tpl->parseCurrentBlock();
310 $tpl->setVariable(
"POINTS_TEXT",
$lng->txt(
'points'));
312 $a_tpl->setCurrentBlock(
"prop_generic");
313 $a_tpl->setVariable(
"PROP_GENERIC",
$tpl->get());
314 $a_tpl->parseCurrentBlock();
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
setKeySize($a_size)
Set key size.
getKeyName()
Get key name.
setValue($a_value)
Set Value.
setValueName($a_name)
Set value name.
__construct($a_title="", $a_postvar="")
Constructor.
checkInput()
Check input, strip slashes etc.
getKeySize()
Get key size.
insert($a_tpl)
Insert property html.
setKeyMaxlength($a_maxlength)
Set key maxlength.
Class for error text answers.
setValueMaxlength($a_maxlength)
Set value maxlength.
setKeyName($a_name)
Set key name.
special template class to simplify handling of ITX/PEAR
getValueName()
Get value name.
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
This class represents a text property in a property form.
getValueSize()
Get value size.
getValueMaxlength()
Get value maxlength.
This class represents a key value pair wizard property in a property form.
setValueSize($a_size)
Set value size.
getKeyMaxlength()
Get key maxlength.
setValues($a_values)
Set Values.