5 include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
22 $this->
setId(
'tstAvgReachedPointsTbl');
23 $this->
setPrefix(
'tstAvgReachedPointsTbl');
33 $this->
setTitle($this->lng->txt(
'average_reached_points'));
34 $this->
setStyle(
'table',
'fullwidth');
35 $this->
addColumn($this->lng->txt(
"question_id"),
'qid',
'');
36 $this->
addColumn($this->lng->txt(
"question_title"),
'title',
'');
37 $this->
addColumn($this->lng->txt(
"points"),
'points',
'');
38 $this->
addColumn($this->lng->txt(
"percentage"),
'percentage',
'');
39 $this->
addColumn($this->lng->txt(
"number_of_answers"),
'answers',
'');
41 $this->
setRowTemplate(
"tpl.il_as_tst_average_reached_points_row.html",
"Modules/Test");
43 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
79 $this->tpl->setVariable(
"ID",
$data[
"qid"]);
80 $this->tpl->setVariable(
"TITLE",
$data[
"title"]);
81 $this->tpl->setVariable(
"POINTS",
$data[
"points"]);
82 $this->tpl->setVariable(
"PERCENTAGE", sprintf(
"%.2f",
$data[
"percentage"]) .
"%");
83 $this->tpl->setVariable(
"ANSWERS",
$data[
"answers"]);