コード例 #1
0
 /**
  * Add question-type specific form fields.
  *
  * @param MoodleQuickForm $mform the form being built.
  */
 protected function definition_inner($mform)
 {
     $strquestionlabel = $this->qtypeobj->comment_header($this->nonemptyanswer);
     $label = get_string("sharedwildcards", "qtype_calculated");
     $mform->addElement('hidden', 'synchronize', 0);
     $mform->addElement('hidden', 'initialcategory', 1);
     $mform->setType('synchronize', PARAM_BOOL);
     $mform->setType('initialcategory', PARAM_INT);
     $mform->addElement('hidden', 'reload', 1);
     $mform->setType('reload', PARAM_INT);
     $addfieldsname = 'updatequestion value';
     $addstring = get_string("updatecategory", "qtype_calculated");
     $mform->registerNoSubmitButton($addfieldsname);
     $this->add_per_answer_fields($mform, get_string('answerhdr', 'qtype_calculated', '{no}'), question_bank::fraction_options(), 1, 1);
     $this->add_unit_options($mform, $this);
     $this->add_unit_fields($mform, $this);
     $this->add_interactive_settings();
     $label = "<div class='mdl-align'></div><div class='mdl-align'>" . get_string('wildcardrole', 'qtype_calculatedsimple') . "</div>";
     $mform->addElement('html', "<div class='mdl-align'>&nbsp;</div>");
     // Explaining the role of datasets so other strings can be shortened.
     $mform->addElement('html', $label);
     $mform->addElement('submit', 'analyzequestion', get_string('findwildcards', 'qtype_calculatedsimple'));
     $mform->registerNoSubmitButton('analyzequestion');
     $mform->closeHeaderBefore('analyzequestion');
     $this->wizarddisplay = optional_param('analyzequestion', false, PARAM_BOOL);
     if ($this->maxnumber != -1) {
         $this->noofitems = $this->maxnumber;
     } else {
         $this->noofitems = 0;
     }
     if (!empty($this->datasetdefs)) {
         // So there are some datadefs.
         // We put them on the page.
         $key = 0;
         $mform->addElement('header', 'additemhdr', get_string('wildcardparam', 'qtype_calculatedsimple'));
         $idx = 1;
         if (!empty($this->datasetdefs)) {
             // Unnecessary test.
             $j = $this->noofitems * count($this->datasetdefs) + 1;
             //
             foreach ($this->datasetdefs as $defkey => $datasetdef) {
                 $mform->addElement('static', "na[{$j}]", get_string('param', 'qtype_calculated', $datasetdef->name));
                 $this->qtypeobj->custom_generator_tools_part($mform, $idx, $j);
                 $mform->addElement('hidden', "datasetdef[{$idx}]");
                 $mform->setType("datasetdef[{$idx}]", PARAM_RAW);
                 $mform->addElement('hidden', "defoptions[{$idx}]");
                 $mform->setType("defoptions[{$idx}]", PARAM_RAW);
                 $idx++;
                 $mform->addElement('static', "divider[{$j}]", '', '<hr />');
                 $j++;
             }
         }
         // This should be done before the elements are created and stored as $this->formdata.
         // Fill out all data sets and also the fields for the next item to add.
         /*Here we do already the values error analysis so that
          * we could force all wild cards values display if there is an error in values.
          * as using a , in a number */
         $this->numbererrors = array();
         if (!empty($this->datasetdefs)) {
             $j = $this->noofitems * count($this->datasetdefs);
             for ($itemnumber = $this->noofitems; $itemnumber >= 1; $itemnumber--) {
                 $data = array();
                 $numbererrors = array();
                 $comment = new stdClass();
                 $comment->stranswers = array();
                 $comment->outsidelimit = false;
                 $comment->answers = array();
                 foreach ($this->datasetdefs as $defid => $datasetdef) {
                     if (isset($datasetdef->items[$itemnumber])) {
                         $this->formdata["definition[{$j}]"] = $defid;
                         $this->formdata["itemid[{$j}]"] = $datasetdef->items[$itemnumber]->id;
                         $data[$datasetdef->name] = $datasetdef->items[$itemnumber]->value;
                         $this->formdata["number[{$j}]"] = $number = $datasetdef->items[$itemnumber]->value;
                         if (!is_numeric($number)) {
                             $a = new stdClass();
                             $a->name = '{' . $datasetdef->name . '}';
                             $a->value = $datasetdef->items[$itemnumber]->value;
                             if (stristr($number, ',')) {
                                 $this->numbererrors["number[{$j}]"] = get_string('nocommaallowed', 'qtype_calculated');
                                 $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                             } else {
                                 $this->numbererrors["number[{$j}]"] = get_string('notvalidnumber', 'qtype_calculated', $a);
                                 $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                             }
                         } else {
                             if (stristr($number, 'x')) {
                                 // Hexa will pass the test.
                                 $a = new stdClass();
                                 $a->name = '{' . $datasetdef->name . '}';
                                 $a->value = $datasetdef->items[$itemnumber]->value;
                                 $this->numbererrors['number[' . $j . ']'] = get_string('hexanotallowed', 'qtype_calculated', $a);
                                 $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                             } else {
                                 if (is_nan($number)) {
                                     $a = new stdClass();
                                     $a->name = '{' . $datasetdef->name . '}';
                                     $a->value = $datasetdef->items[$itemnumber]->value;
                                     $this->numbererrors["number[{$j}]"] = get_string('notvalidnumber', 'qtype_calculated', $a);
                                     $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                                 }
                             }
                         }
                     }
                     $j--;
                 }
                 if ($this->noofitems != 0) {
                     if (empty($numbererrors)) {
                         if (!isset($this->question->id)) {
                             $this->question->id = 0;
                         }
                         $this->question->questiontext = !empty($this->question->questiontext) ? $this->question->questiontext : '';
                         $comment = $this->qtypeobj->comment_on_datasetitems($this->qtypeobj, $this->question->id, $this->question->questiontext, $this->nonemptyanswer, $data, $itemnumber);
                         if ($comment->outsidelimit) {
                             $this->outsidelimit = $comment->outsidelimit;
                         }
                         $totalcomment = '';
                         foreach ($this->nonemptyanswer as $key => $answer) {
                             $totalcomment .= $comment->stranswers[$key] . '<br/>';
                         }
                         $this->formdata['answercomment[' . $itemnumber . ']'] = $totalcomment;
                     }
                 }
             }
             $this->formdata['selectdelete'] = '1';
             $this->formdata['selectadd'] = '1';
             $j = $this->noofitems * count($this->datasetdefs) + 1;
             $data = array();
             // Data for comment_on_datasetitems later.
             $idx = 1;
             foreach ($this->datasetdefs as $defid => $datasetdef) {
                 $this->formdata["datasetdef[{$idx}]"] = $defid;
                 $idx++;
             }
             $this->formdata = $this->qtypeobj->custom_generator_set_data($this->datasetdefs, $this->formdata);
         }
         $addoptions = array();
         $addoptions['1'] = '1';
         for ($i = 10; $i <= 100; $i += 10) {
             $addoptions["{$i}"] = "{$i}";
         }
         $showoptions = array();
         $showoptions['1'] = '1';
         $showoptions['2'] = '2';
         $showoptions['5'] = '5';
         for ($i = 10; $i <= 100; $i += 10) {
             $showoptions["{$i}"] = "{$i}";
         }
         $mform->closeHeaderBefore('additemhdr');
         $addgrp = array();
         $addgrp[] = $mform->createElement('submit', 'addbutton', get_string('generatenewitemsset', 'qtype_calculatedsimple'));
         $addgrp[] = $mform->createElement('select', "selectadd", '', $addoptions);
         $addgrp[] = $mform->createElement('static', "stat", '', get_string('newsetwildcardvalues', 'qtype_calculatedsimple'));
         $mform->addGroup($addgrp, 'addgrp', '', '   ', false);
         $mform->registerNoSubmitButton('addbutton');
         $mform->closeHeaderBefore('addgrp');
         $addgrp1 = array();
         $addgrp1[] = $mform->createElement('submit', 'showbutton', get_string('showitems', 'qtype_calculatedsimple'));
         $addgrp1[] = $mform->createElement('select', "selectshow", '', $showoptions);
         $addgrp1[] = $mform->createElement('static', "stat", '', get_string('setwildcardvalues', 'qtype_calculatedsimple'));
         $mform->addGroup($addgrp1, 'addgrp1', '', '   ', false);
         $mform->registerNoSubmitButton('showbutton');
         $mform->closeHeaderBefore('addgrp1');
         $mform->addElement('static', "divideradd", '', '');
         if ($this->noofitems == 0) {
             $mform->addElement('static', 'warningnoitems', '', '<span class="error">' . get_string('youmustaddatleastonevalue', 'qtype_calculatedsimple') . '</span>');
             $mform->closeHeaderBefore('warningnoitems');
         } else {
             $mform->addElement('header', 'additemhdr1', get_string('wildcardvalues', 'qtype_calculatedsimple'));
             $mform->closeHeaderBefore('additemhdr1');
             if (!empty($this->numbererrors) || $this->outsidelimit) {
                 $mform->addElement('static', "alert", '', '<span class="error">' . get_string('useadvance', 'qtype_calculatedsimple') . '</span>');
             }
             $mform->addElement('submit', 'updatedatasets', get_string('updatewildcardvalues', 'qtype_calculatedsimple'));
             $mform->registerNoSubmitButton('updatedatasets');
             $mform->setAdvanced("updatedatasets", true);
             // ...--------------------------------------------------------------.
             $j = $this->noofitems * count($this->datasetdefs);
             $k = optional_param('selectshow', 1, PARAM_INT);
             for ($i = $this->noofitems; $i >= 1; $i--) {
                 foreach ($this->datasetdefs as $defkey => $datasetdef) {
                     if ($k > 0 || $this->outsidelimit || !empty($this->numbererrors)) {
                         $mform->addElement('text', "number[{$j}]", get_string('wildcard', 'qtype_calculatedsimple', $datasetdef->name));
                         $mform->setAdvanced("number[{$j}]", true);
                         if (!empty($this->numbererrors['number[' . $j . ']'])) {
                             $mform->addElement('static', "numbercomment[{$j}]", '', '<span class="error">' . $this->numbererrors['number[' . $j . ']'] . '</span>');
                             $mform->setAdvanced("numbercomment[{$j}]", true);
                         }
                     } else {
                         $mform->addElement('hidden', "number[{$j}]", get_string('wildcard', 'qtype_calculatedsimple', $datasetdef->name));
                     }
                     $mform->setType("number[{$j}]", PARAM_RAW);
                     // This parameter will be validated in validation().
                     $mform->addElement('hidden', "itemid[{$j}]");
                     $mform->setType("itemid[{$j}]", PARAM_INT);
                     $mform->addElement('hidden', "definition[{$j}]");
                     $mform->setType("definition[{$j}]", PARAM_NOTAGS);
                     $j--;
                 }
                 if (!empty($strquestionlabel) && ($k > 0 || $this->outsidelimit || !empty($this->numbererrors))) {
                     $mform->addElement('static', "answercomment[{$i}]", "<b>" . get_string('setno', 'qtype_calculatedsimple', $i) . "</b>&nbsp;&nbsp;" . $strquestionlabel);
                 }
                 if ($k > 0 || $this->outsidelimit || !empty($this->numbererrors)) {
                     $mform->addElement('static', "divider1[{$j}]", '', '<hr />');
                 }
                 $k--;
             }
         }
     } else {
         $mform->addElement('static', 'warningnowildcards', '', '<span class="error">' . get_string('atleastonewildcard', 'qtype_calculatedsimple') . '</span>');
         $mform->closeHeaderBefore('warningnowildcards');
     }
     // ...----------------------------------------------------------------------.
     // Non standard name for button element needed so not using add_action_buttons.
     // Hidden elements.
     $mform->addElement('hidden', 'id');
     $mform->setType('id', PARAM_INT);
     $mform->addElement('hidden', 'courseid');
     $mform->setType('courseid', PARAM_INT);
     $mform->setDefault('courseid', 0);
     $mform->addElement('hidden', 'cmid');
     $mform->setType('cmid', PARAM_INT);
     $mform->setDefault('cmid', 0);
     if (!empty($this->question->id)) {
         if ($this->question->formoptions->cansaveasnew) {
             $mform->addElement('header', 'additemhdr', get_string('converttocalculated', 'qtype_calculatedsimple'));
             $mform->closeHeaderBefore('additemhdr');
             $mform->addElement('checkbox', 'convert', '', get_string('willconverttocalculated', 'qtype_calculatedsimple'));
             $mform->setDefault('convert', 0);
         }
     }
 }
コード例 #2
0
 /**
  * Add question-type specific form fields.
  *
  * @param MoodleQuickForm $mform the form being built.
  */
 function definition_inner(&$mform)
 {
     global $QTYPES;
     $this->qtypeobj =& $QTYPES[$this->qtype()];
     $strquestionlabel = $this->qtypeobj->comment_header($this->nonemptyanswer);
     $label = get_string("sharedwildcards", "qtype_datasetdependent");
     $mform->addElement('hidden', 'initialcategory', 1);
     $mform->addElement('hidden', 'reload', 1);
     $addfieldsname = 'updatequestion value';
     $addstring = get_string("updatecategory", "qtype_calculated");
     $mform->registerNoSubmitButton($addfieldsname);
     //put a submit button to stop supplementary answers on update answers parameters
     //        $mform->insertElementBefore(    $mform->createElement('submit', $addfieldsname, $addstring),'listcategory');
     $creategrades = get_grade_options();
     $this->add_per_answer_fields($mform, get_string('answerhdr', 'qtype_calculated', '{no}'), $creategrades->gradeoptions, 1, 1);
     $repeated = array();
     $repeated[] =& $mform->createElement('header', 'unithdr', get_string('unithdr', 'qtype_numerical', '{no}'));
     $repeated[] =& $mform->createElement('text', 'unit', get_string('unit', 'quiz'));
     $mform->setType('unit', PARAM_NOTAGS);
     $repeated[] =& $mform->createElement('text', 'multiplier', get_string('multiplier', 'quiz'));
     $mform->setType('multiplier', PARAM_NUMBER);
     if (isset($this->question->options)) {
         $countunits = count($this->question->options->units);
     } else {
         $countunits = 0;
     }
     if ($this->question->formoptions->repeatelements) {
         $repeatsatstart = $countunits + 1;
     } else {
         $repeatsatstart = $countunits;
     }
     $this->repeat_elements($repeated, $repeatsatstart, array(), 'nounits', 'addunits', 2, get_string('addmoreunitblanks', 'qtype_calculated', '{no}'));
     if ($mform->elementExists('multiplier[0]')) {
         $firstunit =& $mform->getElement('multiplier[0]');
         $firstunit->freeze();
         $firstunit->setValue('1.0');
         $firstunit->setPersistantFreeze(true);
     }
     //hidden elements
     //     $mform->addElement('hidden', 'wizard', 'datasetdefinitions');
     //     $mform->setType('wizard', PARAM_ALPHA);
     //   $mform->addElement('header', '', '');
     $label = "<div class='mdl-align'></div><div class='mdl-align'>" . get_string('wildcardrole', 'qtype_calculatedsimple') . "</div>";
     $mform->addElement('html', "<div class='mdl-align'>&nbsp;</div>");
     $mform->addElement('html', $label);
     // explaining the role of datasets so other strings can be shortened
     $mform->addElement('submit', 'analyzequestion', get_string('findwildcards', 'qtype_calculatedsimple'));
     $mform->registerNoSubmitButton('analyzequestion');
     $mform->closeHeaderBefore('analyzequestion');
     if ("" != optional_param('analyzequestion', '', PARAM_RAW)) {
         $this->wizarddisplay = true;
     } else {
         $this->wizwarddisplay = false;
     }
     if ($this->maxnumber != -1) {
         $this->noofitems = $this->maxnumber;
     } else {
         $this->noofitems = 0;
     }
     if (!empty($this->datasetdefs)) {
         //So there are some datadefs
         // we put them on the page
         $key = 0;
         $mform->addElement('header', 'additemhdr', get_string('wildcardparam', 'qtype_calculatedsimple'));
         $idx = 1;
         if (!empty($this->datasetdefs)) {
             // unnecessary test
             $j = $this->noofitems * count($this->datasetdefs) + 1;
             //
             foreach ($this->datasetdefs as $defkey => $datasetdef) {
                 $mform->addElement('static', "na[{$j}]", get_string('param', 'qtype_datasetdependent', $datasetdef->name));
                 $this->qtypeobj->custom_generator_tools_part($mform, $idx, $j);
                 $mform->addElement('hidden', "datasetdef[{$idx}]");
                 $mform->setType("datasetdef[{$idx}]", PARAM_RAW);
                 $idx++;
                 $mform->addElement('static', "divider[{$j}]", '', '<hr />');
                 $j++;
             }
         }
         //this should be done before the elements are created and stored as $this->formdata ;
         //fill out all data sets and also the fields for the next item to add.
         /*Here we do already the values error analysis so that 
          * we could force all wild cards values display if there is an error in values.
          * as using a , in a number */
         $this->numbererrors = array();
         if (!empty($this->datasetdefs)) {
             $j = $this->noofitems * count($this->datasetdefs);
             for ($itemnumber = $this->noofitems; $itemnumber >= 1; $itemnumber--) {
                 $data = array();
                 $numbererrors = array();
                 $comment = new stdClass();
                 $comment->stranswers = array();
                 $comment->outsidelimit = false;
                 $comment->answers = array();
                 foreach ($this->datasetdefs as $defid => $datasetdef) {
                     if (isset($datasetdef->items[$itemnumber])) {
                         $this->formdata["definition[{$j}]"] = $defid;
                         $this->formdata["itemid[{$j}]"] = $datasetdef->items[$itemnumber]->id;
                         $data[$datasetdef->name] = $datasetdef->items[$itemnumber]->value;
                         $this->formdata["number[{$j}]"] = $number = $datasetdef->items[$itemnumber]->value;
                         if (!is_numeric($number)) {
                             $a = new stdClass();
                             $a->name = '{' . $datasetdef->name . '}';
                             $a->value = $datasetdef->items[$itemnumber]->value;
                             if (stristr($number, ',')) {
                                 $this->numbererrors["number[{$j}]"] = get_string('nocommaallowed', 'qtype_datasetdependent');
                                 $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                             } else {
                                 $this->numbererrors["number[{$j}]"] = get_string('notvalidnumber', 'qtype_datasetdependent', $a);
                                 $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                                 //$comment->outsidelimit = false ;
                             }
                         } else {
                             if (stristr($number, 'x')) {
                                 // hexa will pass the test
                                 $a = new stdClass();
                                 $a->name = '{' . $datasetdef->name . '}';
                                 $a->value = $datasetdef->items[$itemnumber]->value;
                                 $this->numbererrors['number[' . $j . ']'] = get_string('hexanotallowed', 'qtype_datasetdependent', $a);
                                 $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                             } else {
                                 if (is_nan($number)) {
                                     $a = new stdClass();
                                     $a->name = '{' . $datasetdef->name . '}';
                                     $a->value = $datasetdef->items[$itemnumber]->value;
                                     $this->numbererrors["number[{$j}]"] = get_string('notvalidnumber', 'qtype_datasetdependent', $a);
                                     $numbererrors .= $this->numbererrors['number[' . $j . ']'] . "<br />";
                                     //   $val = 1.0 ;
                                 }
                             }
                         }
                     }
                     $j--;
                 }
                 if ($this->noofitems != 0) {
                     if (empty($numbererrors)) {
                         if (!isset($question->id)) {
                             $question->id = 0;
                         }
                         $comment = $this->qtypeobj->comment_on_datasetitems($question->id, $this->nonemptyanswer, $data, $itemnumber);
                         //$this->
                         if ($comment->outsidelimit) {
                             $this->outsidelimit = $comment->outsidelimit;
                         }
                         $totalcomment = '';
                         foreach ($this->nonemptyanswer as $key => $answer) {
                             $totalcomment .= $comment->stranswers[$key] . '<br/>';
                         }
                         $this->formdata['answercomment[' . $itemnumber . ']'] = $totalcomment;
                     }
                 }
             }
             $this->formdata['selectdelete'] = '1';
             $this->formdata['selectadd'] = '1';
             $j = $this->noofitems * count($this->datasetdefs) + 1;
             $data = array();
             // data for comment_on_datasetitems later
             $idx = 1;
             foreach ($this->datasetdefs as $defid => $datasetdef) {
                 $this->formdata["datasetdef[{$idx}]"] = $defid;
                 $idx++;
             }
             $this->formdata = $this->qtypeobj->custom_generator_set_data($this->datasetdefs, $this->formdata);
         }
         $addoptions = array();
         $addoptions['1'] = '1';
         for ($i = 10; $i <= 100; $i += 10) {
             $addoptions["{$i}"] = "{$i}";
         }
         $showoptions = array();
         $showoptions['1'] = '1';
         $showoptions['2'] = '2';
         $showoptions['5'] = '5';
         for ($i = 10; $i <= 100; $i += 10) {
             $showoptions["{$i}"] = "{$i}";
         }
         $mform->closeHeaderBefore('additemhdr');
         $addgrp = array();
         $addgrp[] =& $mform->createElement('submit', 'addbutton', get_string('generatenewitemsset', 'qtype_calculatedsimple'));
         $addgrp[] =& $mform->createElement('select', "selectadd", '', $addoptions);
         $addgrp[] =& $mform->createElement('static', "stat", '', get_string('newsetwildcardvalues', 'qtype_calculatedsimple'));
         $mform->addGroup($addgrp, 'addgrp', '', '   ', false);
         $mform->registerNoSubmitButton('addbutton');
         $mform->closeHeaderBefore('addgrp');
         $addgrp1 = array();
         $addgrp1[] =& $mform->createElement('submit', 'showbutton', get_string('showitems', 'qtype_calculatedsimple'));
         $addgrp1[] =& $mform->createElement('select', "selectshow", '', $showoptions);
         $addgrp1[] =& $mform->createElement('static', "stat", '', get_string('setwildcardvalues', 'qtype_calculatedsimple'));
         $mform->addGroup($addgrp1, 'addgrp1', '', '   ', false);
         $mform->registerNoSubmitButton('showbutton');
         $mform->closeHeaderBefore('addgrp1');
         $mform->addElement('static', "divideradd", '', '');
         if ($this->noofitems == 0) {
             $mform->addElement('static', 'warningnoitems', '', '<span class="error">' . get_string('youmustaddatleastonevalue', 'qtype_calculatedsimple') . '</span>');
             $mform->closeHeaderBefore('warningnoitems');
         } else {
             $mform->addElement('header', 'additemhdr1', get_string('wildcardvalues', 'qtype_calculatedsimple'));
             $mform->closeHeaderBefore('additemhdr1');
             //   $mform->addElement('header', '', get_string('itemno', 'qtype_datasetdependent', ""));
             if (!empty($this->numbererrors) || $this->outsidelimit) {
                 $mform->addElement('static', "alert", '', '<span class="error">' . get_string('useadvance', 'qtype_calculatedsimple') . '</span>');
             }
             $mform->addElement('submit', 'updatedatasets', get_string('updatewildcardvalues', 'qtype_calculatedsimple'));
             $mform->registerNoSubmitButton('updatedatasets');
             $mform->setAdvanced("updatedatasets", true);
             //------------------------------------------------------------------------------------------------------------------------------
             $j = $this->noofitems * count($this->datasetdefs);
             $k = 1;
             if ("" != optional_param('selectshow')) {
                 $k = optional_param('selectshow');
             }
             for ($i = $this->noofitems; $i >= 1; $i--) {
                 foreach ($this->datasetdefs as $defkey => $datasetdef) {
                     if ($k > 0 || $this->outsidelimit || !empty($this->numbererrors)) {
                         $mform->addElement('text', "number[{$j}]", get_string('wildcard', 'qtype_calculatedsimple', $datasetdef->name));
                         $mform->setAdvanced("number[{$j}]", true);
                         if (!empty($this->numbererrors['number[' . $j . ']'])) {
                             $mform->addElement('static', "numbercomment[{$j}]", '', '<span class="error">' . $this->numbererrors['number[' . $j . ']'] . '</span>');
                             $mform->setAdvanced("numbercomment[{$j}]", true);
                         }
                     } else {
                         $mform->addElement('hidden', "number[{$j}]", get_string('wildcard', 'qtype_calculatedsimple', $datasetdef->name));
                     }
                     $mform->setType("number[{$j}]", PARAM_NUMBER);
                     $mform->addElement('hidden', "itemid[{$j}]");
                     $mform->setType("itemid[{$j}]", PARAM_INT);
                     $mform->addElement('hidden', "definition[{$j}]");
                     $mform->setType("definition[{$j}]", PARAM_NOTAGS);
                     $j--;
                 }
                 if (!empty($strquestionlabel) && ($k > 0 || $this->outsidelimit || !empty($this->numbererrors))) {
                     //   $repeated[] =& $mform->addElement('static', "answercomment[$i]", $strquestionlabel);
                     $mform->addElement('static', "answercomment[{$i}]", "<b>" . get_string('setno', 'qtype_calculatedsimple', $i) . "</b>&nbsp;&nbsp;" . $strquestionlabel);
                 }
                 if ($k > 0 || $this->outsidelimit || !empty($this->numbererrors)) {
                     $mform->addElement('static', "divider1[{$j}]", '', '<hr />');
                 }
                 $k--;
             }
         }
         //  if ($this->outsidelimit){
         //   $mform->addElement('static','outsidelimit','','');
         //  }
     } else {
         $mform->addElement('static', 'warningnowildcards', '', '<span class="error">' . get_string('atleastonewildcard', 'qtype_calculatedsimple') . '</span>');
         $mform->closeHeaderBefore('warningnowildcards');
     }
     //------------------------------------------------------------------------------------------------------------------------------
     //non standard name for button element needed so not using add_action_buttons
     //hidden elements
     $mform->addElement('hidden', 'id');
     $mform->setType('id', PARAM_INT);
     $mform->addElement('hidden', 'courseid');
     $mform->setType('courseid', PARAM_INT);
     $mform->setDefault('courseid', 0);
     $mform->addElement('hidden', 'cmid');
     $mform->setType('cmid', PARAM_INT);
     $mform->setDefault('cmid', 0);
     if (!empty($this->question->id)) {
         if ($this->question->formoptions->cansaveasnew) {
             $mform->addElement('header', 'additemhdr', get_string('converttocalculated', 'qtype_calculatedsimple'));
             $mform->closeHeaderBefore('additemhdr');
             $mform->addElement('checkbox', 'convert', '', get_string('willconverttocalculated', 'qtype_calculatedsimple'));
             $mform->setDefault('convert', 0);
         }
     }
     //     $mform->addElement('hidden', 'wizard', 'edit_calculatedsimple');
     //     $mform->setType('wizard', PARAM_ALPHA);
     /*
             $mform->addElement('hidden', 'returnurl');
             $mform->setType('returnurl', PARAM_LOCALURL);
             $mform->setDefault('returnurl', 0);
     */
 }