ILIAS  release_4-4 Revision
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilListOfQuestionsTableGUI.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 
16 {
17  protected $show_points;
18  protected $show_marker;
19 
20  protected $obligationsFilter;
21 
29  public function __construct($a_parent_obj, $a_parent_cmd, $show_points, $show_marker, $obligationsNotAnswered = false, $obligationsFilter = false)
30  {
31  parent::__construct($a_parent_obj, $a_parent_cmd);
32 
33  global $lng, $ilCtrl;
34 
35  $this->lng = $lng;
36  $this->ctrl = $ilCtrl;
37  $this->show_points = $show_points;
38  $this->show_marker = $show_marker;
39  $this->obligationsNotAnswered = $obligationsNotAnswered;
40  $this->obligationsFilter = $obligationsFilter;
41 
42  $this->setFormName('listofquestions');
43  $this->setStyle('table', 'fullwidth');
44 
45  $this->addColumn($this->lng->txt("tst_qst_order"),'order', '');
46  $this->addColumn($this->lng->txt("tst_question_title"),'title', '');
47  $this->addColumn($this->lng->txt("obligatory"),'obligatory', '');
48  $this->addColumn('' ,'postponed', '');
49  if ($this->show_points)
50  {
51  $this->addColumn($this->lng->txt("tst_maximum_points"),'points', '');
52  }
53  $this->addColumn($this->lng->txt("worked_through"),'worked_through', '');
54  if ($this->show_marker)
55  {
56  $this->addColumn($this->lng->txt("tst_question_marker"),'marked', '');
57  }
58 
59  if( $obligationsFilter )
60  {
61  $this->setTitle($this->lng->txt('obligations_summary'));
62  }
63  else
64  {
65  $this->setTitle($this->lng->txt('question_summary'));
66  }
67 
68  $this->setRowTemplate("tpl.il_as_tst_list_of_questions_row.html", "Modules/Test");
69 
70  $this->addCommandButton('backFromSummary', $this->lng->txt('back'));
71 
72  if( !$obligationsNotAnswered )
73  {
74  $this->addCommandButton('finishTest', $this->lng->txt('save_finish'));
75  }
76 
77  $this->setLimit(999);
78 
79  $this->setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
80 
81  $this->enable('header');
82  $this->disable('sort');
83  $this->disable('select_all');
84  }
85 
93  public function fillRow($data)
94  {
95  if ($this->show_points)
96  {
97  $this->tpl->setCurrentBlock('points');
98  $this->tpl->setVariable("POINTS", $data['points']);
99  $this->tpl->parseCurrentBlock();
100  }
101  if (strlen($data['description']))
102  {
103  $this->tpl->setCurrentBlock('description');
104  $this->tpl->setVariable("DESCRIPTION", ilUtil::prepareFormOutput($data['description']));
105  $this->tpl->parseCurrentBlock();
106  }
107  if ($this->show_marker)
108  {
109  if ($data['marked'])
110  {
111  $this->tpl->setCurrentBlock('marked_img');
112  $this->tpl->setVariable("ALT_MARKED", $this->lng->txt("tst_question_marked"));
113  $this->tpl->setVariable("HREF_MARKED", ilUtil::getImagePath("marked.png"));
114  $this->tpl->parseCurrentBlock();
115  }
116  else
117  {
118  $this->tpl->touchBlock('marker');
119  }
120  }
121 
122  // obligatory icon
123  if( $data["obligatory"] )
124  {
125  $OBLIGATORY = "<img src=\"".ilUtil::getImagePath("obligatory.gif", "Modules/Test").
126  "\" alt=\"".$this->lng->txt("question_obligatory").
127  "\" title=\"".$this->lng->txt("question_obligatory")."\" />";
128  }
129  else $OBLIGATORY = '';
130 
131 
132  $this->tpl->setVariable("QUESTION_OBLIGATORY", $OBLIGATORY);
133 
134  $this->tpl->setVariable("ORDER", $data['order']);
135  $this->tpl->setVariable("TITLE", ilUtil::prepareFormOutput($data['title']));
136  $this->tpl->setVariable("HREF", $data['href']);
137  $this->tpl->setVariable("POSTPONED", $data['postponed']);
138  if ($data["worked_through"])
139  {
140  $this->tpl->setVariable("WORKED_THROUGH", $this->lng->txt("yes"));
141  }
142  else
143  {
144  $this->tpl->setVariable("WORKED_THROUGH", '&nbsp;');
145  }
146  }
147 }
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
setFormName($a_formname)
Set Form name.
setStyle($a_element, $a_style)
global $ilCtrl
Definition: ilias.php:18
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
setLimit($a_limit=0, $a_default_limit=0)
set max.
Class ilTable2GUI.
addColumn($a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="")
Add a column to the header.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
enable($a_module_name)
enables particular modules of table
addCommandButton($a_cmd, $a_text, $a_onclick='', $a_id="")
Add Command button.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
__construct($a_parent_obj, $a_parent_cmd, $show_points, $show_marker, $obligationsNotAnswered=false, $obligationsFilter=false)
Constructor.
disable($a_module_name)
diesables particular modules of table
global $lng
Definition: privfeed.php:40
setFormAction($a_form_action)
Set Form action parameter.