5 include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
31 parent::__construct($a_parent_obj, $a_parent_cmd);
39 $this->obligationsNotAnswered = $obligationsNotAnswered;
43 $this->
setStyle(
'table',
'fullwidth');
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',
'');
49 if ($this->show_points)
51 $this->
addColumn($this->lng->txt(
"tst_maximum_points"),
'points',
'');
53 $this->
addColumn($this->lng->txt(
"worked_through"),
'worked_through',
'');
54 if ($this->show_marker)
56 $this->
addColumn($this->lng->txt(
"tst_question_marker"),
'marked',
'');
61 $this->
setTitle($this->lng->txt(
'obligations_summary'));
65 $this->
setTitle($this->lng->txt(
'question_summary'));
68 $this->
setRowTemplate(
"tpl.il_as_tst_list_of_questions_row.html",
"Modules/Test");
72 if( !$obligationsNotAnswered )
79 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
95 if ($this->show_points)
97 $this->tpl->setCurrentBlock(
'points');
98 $this->tpl->setVariable(
"POINTS",
$data[
'points']);
99 $this->tpl->parseCurrentBlock();
101 if (strlen(
$data[
'description']))
103 $this->tpl->setCurrentBlock(
'description');
105 $this->tpl->parseCurrentBlock();
107 if ($this->show_marker)
111 $this->tpl->setCurrentBlock(
'marked_img');
112 $this->tpl->setVariable(
"ALT_MARKED", $this->lng->txt(
"tst_question_marked"));
114 $this->tpl->parseCurrentBlock();
118 $this->tpl->touchBlock(
'marker');
123 if(
$data[
"obligatory"] )
125 $OBLIGATORY =
"<img src=\"".ilUtil::getImagePath(
"obligatory.gif",
"Modules/Test").
126 "\" alt=\"".$this->lng->txt(
"question_obligatory").
127 "\" title=\"".$this->lng->txt(
"question_obligatory").
"\" />";
129 else $OBLIGATORY =
'';
132 $this->tpl->setVariable(
"QUESTION_OBLIGATORY", $OBLIGATORY);
134 $this->tpl->setVariable(
"ORDER",
$data[
'order']);
136 $this->tpl->setVariable(
"HREF",
$data[
'href']);
137 $this->tpl->setVariable(
"POSTPONED",
$data[
'postponed']);
138 if (
$data[
"worked_through"])
140 $this->tpl->setVariable(
"WORKED_THROUGH", $this->lng->txt(
"yes"));
144 $this->tpl->setVariable(
"WORKED_THROUGH",
' ');
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)
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.
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
setFormAction($a_form_action)
Set Form action parameter.