ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.ilTestAverageReachedPointsTableGUI.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 
5 include_once('./Services/Table/classes/class.ilTable2GUI.php');
6 
13 {
20  public function __construct($a_parent_obj, $a_parent_cmd)
21  {
22  $this->setId('tstAvgReachedPointsTbl');
23  $this->setPrefix('tstAvgReachedPointsTbl');
24 
25  parent::__construct($a_parent_obj, $a_parent_cmd);
26 
27  global $lng, $ilCtrl;
28 
29  $this->lng = $lng;
30  $this->ctrl = $ilCtrl;
31 
32  $this->setFormName('average_reached_points');
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', '');
40 
41  $this->setRowTemplate("tpl.il_as_tst_average_reached_points_row.html", "Modules/Test");
42 
43  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
44 
45  $this->setDefaultOrderField("title");
46  $this->setDefaultOrderDirection("asc");
47  $this->enable('sort');
48  $this->enable('header');
49  $this->disable('select_all');
50  }
51 
56  public function numericOrdering($a_field)
57  {
58  switch ($a_field) {
59  case 'points':
60  return true;
61 
62  case 'qid':
63  return true;
64 
65  case 'percentage':
66  return true;
67 
68  default:
69  return false;
70  }
71  }
72 
79  public function fillRow($data)
80  {
81  $this->tpl->setVariable("ID", $data["qid"]);
82  $this->tpl->setVariable("TITLE", $data["title"]);
83  $this->tpl->setVariable("POINTS", $this->formatPoints($data));
84  $this->tpl->setVariable("PERCENTAGE", sprintf("%.2f", $data["percentage"]) . "%");
85  $this->tpl->setVariable("ANSWERS", $data["answers"]);
86  }
87 
92  protected function formatPoints(array $data)
93  {
94  return sprintf("%.2f", $data['points_reached']) . " " . strtolower($this->lng->txt("of")) . " " . sprintf("%.2f", $data['points_max']);
95  }
96 }
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setStyle($a_element, $a_style)
setId($a_val)
Set id.
global $ilCtrl
Definition: ilias.php:18
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
Class ilTable2GUI.
enable($a_module_name)
enables particular modules of table
setPrefix($a_prefix)
setRowTemplate($a_template, $a_template_dir="")
Set row template.
Create styles array
The data for the language used.
__construct($a_parent_obj, $a_parent_cmd)
Constructor public.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
disable($a_module_name)
diesables particular modules of table
setFormName($a_formname="")
Set Form name.
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
numericOrdering($a_field)
Should this field be sorted numeric?