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) {
 
  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();
 
An exception for terminatinating execution or to throw for unit testing.
Class for error text answers.
This class represents a key value pair wizard property in a property form.
checkInput()
Check input, strip slashes etc.
setValueSize($a_size)
Set value size.
getValueSize()
Get value size.
setValueMaxlength($a_maxlength)
Set value maxlength.
setValue($a_value)
Set Value.
setKeyName($a_name)
Set key name.
getKeyMaxlength()
Get key maxlength.
insert($a_tpl)
Insert property html.
setKeyMaxlength($a_maxlength)
Set key maxlength.
setKeySize($a_size)
Set key size.
__construct($a_title="", $a_postvar="")
Constructor.
getValueMaxlength()
Get value maxlength.
getValueName()
Get value name.
getKeyName()
Get key name.
setValues($a_values)
Set Values.
setValueName($a_name)
Set value name.
getKeySize()
Get key size.
special template class to simplify handling of ITX/PEAR
This class represents a text property in a property form.
static stripSlashesRecursive($a_data, $a_strip_html=true, $a_allow="")
Strip slashes from array and sub-arrays.
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms @access public