5 include_once(
'./Services/Table/classes/class.ilTable2GUI.php');
31 $this->
setId(
'tst_participants_' . $a_parent_obj->object->getRefId());
32 parent::__construct($a_parent_obj, $a_parent_cmd);
44 $this->
setStyle(
'table',
'fullwidth');
47 $this->
addColumn($this->lng->txt(
"name"),
'name',
'');
48 $this->
addColumn($this->lng->txt(
"login"),
'login',
'');
53 $this->
addColumn($this->lng->txt(
"tst_started"),
'started',
'');
56 $this->
addColumn($this->lng->txt(
"tst_nr_of_tries_of_user"),
'maxpass',
'');
58 $this->
addColumn($this->lng->txt(
"unfinished_passes"),
'unfinished',
'');
59 $this->
addColumn($this->lng->txt(
"tst_finished"),
'finished',
'');
60 $this->
addColumn($this->lng->txt(
"last_access"),
'access',
'');
62 $this->actionsColumnRequired =
false;
63 if (!$this->testQuestionSetDepenciesBroken) {
64 $this->actionsColumnRequired =
true;
69 $this->
setTitle($this->lng->txt(
'tst_participating_users'));
70 $this->
setRowTemplate(
"tpl.il_as_tst_participants_row.html",
"Modules/Test");
72 if (!$this->anonymity && !$this->testQuestionSetDepenciesBroken) {
73 $this->
addMultiCommand(
'showPassOverview', $this->lng->txt(
'show_pass_overview'));
74 $this->
addMultiCommand(
'showUserAnswers', $this->lng->txt(
'show_user_answers'));
75 $this->
addMultiCommand(
'showDetailedResults', $this->lng->txt(
'show_detailed_results'));
77 $this->
addMultiCommand(
'deleteSingleUserResults', $this->lng->txt(
'delete_user_data'));
79 $this->
setFormAction($this->ctrl->getFormAction($a_parent_obj, $a_parent_cmd));
81 if (!$this->anonymity) {
91 $this->
enable(
'select_all');
105 $finished =
"<img border=\"0\" align=\"middle\" src=\"" .
ilUtil::getImagePath(
"icon_ok.svg") .
"\" alt=\"" . $this->lng->txt(
"ok") .
"\" />";
106 $started =
"<img border=\"0\" align=\"middle\" src=\"" .
ilUtil::getImagePath(
"icon_ok.svg") .
"\" alt=\"" . $this->lng->txt(
"ok") .
"\" />" ;
107 $passes = (
$data[
'maxpass']) ? ((
$data[
'maxpass'] == 1) ? sprintf($this->lng->txt(
"pass_finished"),
$data[
'maxpass']) : sprintf($this->lng->txt(
"passes_finished"),
$data[
'maxpass'])) :
'';
108 $this->tpl->setVariable(
"USER_ID",
$data[
'usr_id']);
109 $this->tpl->setVariable(
"LOGIN",
$data[
'login']);
110 $this->tpl->setVariable(
"FULLNAME",
$data[
'name']);
115 $this->tpl->setVariable(
"STARTED", (
$data[
'started']) ? $started :
'');
116 $this->tpl->setVariable(
"PASSES", $passes);
117 $unfinished_passes =
$data[
'unfinished'] == 1 ? $this->lng->txt(
'yes') : $this->lng->txt(
'no');
118 $this->tpl->setVariable(
"UNFINISHED_PASSES", $unfinished_passes);
119 $this->tpl->setVariable(
"FINISHED", (
$data[
'finished']) ? $finished :
'');
122 if (
$data[
'active_id'] > 0 && !$this->testQuestionSetDepenciesBroken) {
123 if (
$data[
'unfinished'] == 1) {
125 $this->tpl->setCurrentBlock(
'action_results_list');
126 $adv->addItem($this->lng->txt(
'tst_show_results'),
$data[
'result'],
$data[
'result']);
127 $adv->addItem($this->lng->txt(
'finish_test'),
$data[
'finish_link'],
$data[
'finish_link']);
128 $this->tpl->setVariable(
'RESULTS_LIST', $adv->getHTML());
130 $this->tpl->setCurrentBlock(
'action_results');
131 $this->tpl->setVariable(
"RESULTS",
$data[
'result']);
133 $this->tpl->parseCurrentBlock();
137 if ($this->actionsColumnRequired) {
138 $this->tpl->setCurrentBlock(
'actions_column');
139 $this->tpl->parseCurrentBlock();
151 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
155 'all' => $lng->txt(
'all_participants'),
156 'withSolutions' => $lng->txt(
'with_solutions_participants'),
157 'withoutSolutions' => $lng->txt(
'without_solutions_participants')
161 $ti->readFromSession();
162 $this->filter[
"title"] = $ti->getValue();
170 return in_array($field,
array(
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
setDefaultOrderField($a_defaultorderfield)
Set Default order field.
setStyle($a_element, $a_style)
static formatDate(ilDateTime $date, $a_skip_day=false, $a_include_wd=false)
Format a date public.
addFilterItem($a_input_item, $a_optional=false)
Add filter item.
setDefaultOrderDirection($a_defaultorderdirection)
Set Default order direction.
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
__construct($a_parent_obj, $a_parent_cmd, $testQuestionSetDepenciesBroken, $anonymity, $nrOfDatasets)
Constructor.
addMultiCommand($a_cmd, $a_text)
Add Command button.
enable($a_module_name)
enables particular modules of table
setRowTemplate($a_template, $a_template_dir="")
Set row template.
Create styles array
The data for the language used.
User interface class for advanced drop-down selection lists.
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
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.
setShowRowsSelector($a_value)
Toggle rows-per-page selector.
setSelectAllCheckbox($a_select_all_checkbox)
Set the name of the checkbox that should be toggled with a select all button.
$testQuestionSetDepenciesBroken