40 $this->
setId(
'tst_participants_' . $a_parent_obj->getTestObj()->getRefId());
44 $this->
ui = $DIC->ui();
46 $this->
setStyle(
'table',
'fullwidth');
51 $this->
setRowTemplate(
"tpl.il_as_tst_scorings_row.html",
"Modules/Test");
94 return in_array($a_field, array(
95 'scored_pass',
'answered_questions',
'points',
'percent_result' 99 public function init(): void
119 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_scored_pass"),
'scored_pass');
120 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_pass_finished"),
'scored_pass_finished_timestamp');
122 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_answered_questions"),
'answered_questions');
123 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_reached_points"),
'reached_points');
124 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_percent_result"),
'percent_result');
126 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_passed_status"),
'passed_status');
127 $this->
addColumn($this->
lng->txt(
"tst_tbl_col_final_mark"),
'final_mark');
139 $this->
addMultiCommand(
'showDetailedResults', $this->
lng->txt(
'show_detailed_results'));
143 $this->
addMultiCommand(
'deleteSingleUserResults', $this->
lng->txt(
'delete_user_data'));
150 $this->tpl->setCurrentBlock(
'checkbox_column');
151 $this->tpl->setVariable(
"CHB_ROW_KEY", $a_set[
'active_id']);
152 $this->tpl->parseCurrentBlock();
156 $this->tpl->setCurrentBlock(
'actions_column');
158 $this->tpl->parseCurrentBlock();
161 $this->tpl->setVariable(
"ROW_KEY", $a_set[
'active_id']);
162 $this->tpl->setVariable(
"LOGIN", $a_set[
'login']);
163 $this->tpl->setVariable(
"FULLNAME", $a_set[
'name']);
173 $this->tpl->setVariable(
"FINAL_MARK", $a_set[
'final_mark']);
180 $this->
ctrl->setParameterByClass(
'iltestevaluationgui',
'active_id', $data[
'active_id']);
183 $resultsHref = $this->
ctrl->getLinkTargetByClass([ilTestResultsGUI::class, ilParticipantsTestResultsGUI::class, ilTestEvaluationGUI::class],
'outParticipantsResultsOverview');
184 $asl->addItem($this->
lng->txt(
'tst_show_results'), $resultsHref, $resultsHref);
214 if ($data[
'passed_status']) {
233 $icon = $this->
ui->factory()->symbol()->icon()->custom(
237 return $this->
ui->renderer()->render(
$icon);
247 return $this->
lng->txt(
'pass') .
' ' . ($data[
'scored_pass'] + 1);
252 if (isset($data[
'scored_pass_finished_timestamp'])) {
261 $this->
lng->txt(
'tst_answered_questions_of_total'),
262 $data[
'answered_questions'],
263 $data[
'total_questions']
270 $this->
lng->txt(
'tst_reached_points_of_max'),
271 $data[
'reached_points'],
278 return sprintf(
'%0.2f %%', $data[
'percent_result'] * 100);
buildImageIcon(string $icon_name, string $label)
bool $manageResultsCommandsEnabled
enable(string $a_module_name)
numericOrdering(string $a_field)
isAccessResultsCommandsEnabled()
setFormAction(string $a_form_action, bool $a_multipart=false)
setAccessResultsCommandsEnabled(bool $accessResultsCommandsEnabled)
setSelectAllCheckbox(string $a_select_all_checkbox, bool $a_select_all_on_top=false)
static getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false)
buildPercentResultString(array $data)
buildActionsMenu(array $data)
isMultiRowSelectionRequired()
bool $accessResultsCommandsEnabled
setFormName(string $a_name="")
isManageResultsCommandsEnabled()
setStyle(string $a_element, string $a_style)
Provides fluid interface to RBAC services.
setShowRowsSelector(bool $a_value)
Toggle rows-per-page selector.
setDefaultOrderField(string $a_defaultorderfield)
__construct($a_parent_obj, $a_parent_cmd)
setManageResultsCommandsEnabled(bool $manageResultsCommandsEnabled)
buildAnsweredQuestionsString(array $data)
setRowTemplate(string $a_template, string $a_template_dir="")
Set row template.
isActionsColumnRequired()
setDefaultOrderDirection(string $a_defaultorderdirection)
buildScoredPassString(array $data)
buildFormattedAccessDate(array $data)
buildScoredPassFinishedString(array $data)
__construct(Container $dic, ilPlugin $plugin)
addColumn(string $a_text, string $a_sort_field="", string $a_width="", bool $a_is_checkbox_action_column=false, string $a_class="", string $a_tooltip="", bool $a_tooltip_with_html=false)
addMultiCommand(string $a_cmd, string $a_text)
buildReachedPointsString(array $data)
buildPassedStatusString(array $data)