ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
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
5include_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 function numericOrdering($a_field)
57 {
58 switch($a_field)
59 {
60 case 'points':
61 return true;
62
63 case 'qid':
64 return true;
65
66 case 'percentage':
67 return true;
68
69 default:
70 return false;
71 }
72 }
73
80 public function fillRow($data)
81 {
82 $this->tpl->setVariable("ID", $data["qid"]);
83 $this->tpl->setVariable("TITLE", $data["title"]);
84 $this->tpl->setVariable("POINTS", $this->formatPoints($data));
85 $this->tpl->setVariable("PERCENTAGE", sprintf("%.2f", $data["percentage"]) . "%");
86 $this->tpl->setVariable("ANSWERS", $data["answers"]);
87 }
88
93 protected function formatPoints(array $data)
94 {
95 return sprintf("%.2f", $data['points_reached']) . " " . strtolower($this->lng->txt("of")) . " " . sprintf("%.2f", $data['points_max']);
96 }
97}
Class ilTable2GUI.
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.
setPrefix($a_prefix)
set prefix for sort and offset fields (if you have two or more tables on a page that you want to sort...
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
setFormName($a_formname)
Set Form name.
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setId($a_val)
Set id.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
disable($a_module_name)
diesables particular modules of table
setStyle($a_element, $a_style)
enable($a_module_name)
enables particular modules of table
__construct($a_parent_obj, $a_parent_cmd)
Constructor @access public.
numericOrdering($a_field)
Should this field be sorted numeric?
global $ilCtrl
Definition: ilias.php:18
global $lng
Definition: privfeed.php:40