19 declare(strict_types=1);
44 $this->service = $internal_service;
85 if ($config->usesAppraisees()) {
120 $request = $this->service
122 ->evaluation($survey)
125 $gui = $this->service->gui();
129 if ($config->usesAppraisees()) {
137 $captions = new \ilSelectInputGUI(
$lng->txt(
"svy_eval_captions"),
"cp");
138 $captions->setOptions(array(
139 "ap" =>
$lng->txt(
"svy_eval_captions_abs_perc"),
140 "a" =>
$lng->txt(
"svy_eval_captions_abs"),
141 "p" =>
$lng->txt(
"svy_eval_captions_perc")
143 $captions->setValue($request->getCP());
146 $view = new \ilSelectInputGUI(
$lng->txt(
"svy_eval_view"),
"vw");
147 $view->setOptions(array(
148 "tc" =>
$lng->txt(
"svy_eval_view_tables_charts"),
149 "t" =>
$lng->txt(
"svy_eval_view_tables"),
150 "c" =>
$lng->txt(
"svy_eval_view_charts")
152 $view->setValue($request->getVW());
156 $this->gui->lng()->txt(
"ok"),
158 )->submit()->toToolbar(
false, $toolbar);
181 $pv = $this->service->gui()->print()->resultsDetails($survey->
getRefId());
182 $this->service->gui()->ctrl()->setParameterByClass(
183 "ilSurveyEvaluationGUI",
185 $this->service->gui()->evaluation($survey)->request()->getVW()
187 $this->service->gui()->ctrl()->setParameterByClass(
188 "ilSurveyEvaluationGUI",
190 $this->service->gui()->evaluation($survey)->request()->getCP()
192 $modal_elements = $pv->getModalElements(
193 $this->service->gui()->ctrl()->getLinkTargetByClass(
194 "ilSurveyEvaluationGUI",
195 "printResultsDetailsSelection" 199 $pv = $this->service->gui()->print()->resultsOverview($survey->
getRefId());
200 $modal_elements = $pv->getModalElements(
201 $this->service->gui()->ctrl()->getLinkTargetByClass(
202 "ilSurveyEvaluationGUI",
203 "printResultsOverviewSelection" 223 $lng = $this->gui->lng();
224 $ctrl = $this->gui->ctrl();
225 $toolbar = $this->gui->toolbar();
226 $ui_fac = $this->gui->ui()->factory();
227 $ui_ren = $this->gui->ui()->renderer();
228 $ui_request = $this->gui->http()->request();
230 $ctrl->setParameterByClass(
"ilsurveyevaluationgui",
"export_cmd", $export_cmd);
232 $button = $ui_fac->button()->standard(
235 )->withOnClick($modal->getShowSignal());
237 $toolbar->addComponent($button);
238 if (
"POST" === $ui_request->getMethod()
239 && isset($ui_request->getQueryParams()[
"fallbackCmd"])
240 && $ui_request->getQueryParams()[
"fallbackCmd"] ===
"validateAndSubmitExportForm") {
241 $modal = $modal->withRequest($ui_request);
242 $eval_tpl->
setVariable(
"MODAL", $ui_ren->render($modal->withOnLoad($modal->getShowSignal())));
244 $eval_tpl->
setVariable(
"MODAL", $ui_ren->render($modal));
250 $lng = $this->gui->lng();
251 $ctrl = $this->gui->ctrl();
252 $ui_fac = $this->gui->ui()->factory();
254 $post_url = $ctrl->getFormActionByClass(
"ilsurveyevaluationgui",
"validateAndSubmitExportForm");
256 $inputs[
"export_format"] = $ui_fac->input()->field()->select(
257 $lng->txt(
"filetype"),
264 ->withRequired(
true);
266 $inputs[
"export_label"] = $ui_fac->input()->field()->select(
269 "label_only" =>
$lng->txt(
"export_label_only"),
270 "title_only" =>
$lng->txt(
"export_title_only"),
271 "title_label" =>
$lng->txt(
"export_title_label")
275 ->withRequired(
true);
277 $modal = $ui_fac->modal()->roundtrip(
278 $lng->txt(
"svy_export_format"),
283 ->withSubmitLabel(
$lng->txt(
"export"));
293 $lng = $this->service->gui()->lng();
294 $ctrl = $this->service->gui()->ctrl();
295 $req = $this->service->gui()->evaluation($survey)->request();
297 $evaluation_manager = $this->service->domain()->evaluation(
300 $req->getAppraiseeId(),
304 if ($evaluation_manager->isMultiParticipantsView()) {
305 $appr_id = $evaluation_manager->getCurrentAppraisee();
308 $options[
""] =
$lng->txt(
"please_select");
311 foreach ($evaluation_manager->getSelectableAppraisees() as $appraisee_usr_id) {
321 $appr = new \ilSelectInputGUI(
$lng->txt(
"survey_360_appraisee"),
"appr_id");
322 $appr->setOptions($options);
323 $appr->setValue($appr_id);
327 $lng->txt(
"survey_360_select_appraisee"),
329 )->submit()->toToolbar(
false, $toolbar);
345 $ui_factory = $this->service->gui()->ui()->factory();
347 $a_tpl = new \ilTemplate(
"tpl.svy_results_details_panel.html",
true,
true,
"components/ILIAS/Survey/Evaluation");
349 $question_res = $a_results;
351 if (is_array($question_res)) {
352 $question_res = $question_res[0][1];
357 if (!is_object($question_res)) {
361 $question = $question_res->getQuestion();
364 $qst_title = $question->getTitle();
365 $svy_text = nl2br($question->getQuestiontext());
368 $anchor_id =
"svyrdq" . $question->getId();
369 $title =
"<span id='$anchor_id'>$qst_title</span>";
370 $panel_qst_card = $ui_factory->panel()->sub($title, $ui_factory->legacy()->content($svy_text))
371 ->withFurtherInformation($this->
getPanelCard($question_res));
373 $panels[] = $panel_qst_card;
393 $panels[] = $ui_factory->panel()->sub(
"", $ui_factory->legacy()->content($a_tpl->get()));
404 $a_tpl = new \ilTemplate(
"tpl.svy_results_details_table.html",
true,
true,
"components/ILIAS/Survey/Evaluation");
407 if ($request->getShowTable()) {
410 $request->getShowAbsolute(),
411 $request->getShowPercentage()
414 foreach ($grid[
"cols"] as $col) {
415 $a_tpl->setCurrentBlock(
"grid_col_header_bl");
416 $a_tpl->setVariable(
"COL_HEADER", $col);
417 $a_tpl->parseCurrentBlock();
419 foreach ($grid[
"rows"] as $cols) {
420 foreach ($cols as $idx => $col) {
422 $a_tpl->touchBlock(
"grid_col_nowrap_bl");
425 $a_tpl->setCurrentBlock(
"grid_col_bl");
426 $a_tpl->setVariable(
"COL_CAPTION", trim((
string) ($col ??
"")));
427 $a_tpl->parseCurrentBlock();
430 $a_tpl->touchBlock(
"grid_row_bl");
434 return $a_tpl->get();
443 $a_tpl = new \ilTemplate(
"tpl.svy_results_details_chart.html",
true,
true,
"components/ILIAS/Survey/Evaluation");
445 if ($request->getShowChart()) {
446 $chart = $a_eval->
getChart($a_results);
448 if (is_array($chart)) {
450 if (is_array($chart[1])) {
451 foreach ($chart[1] as $legend_item) {
452 $r = hexdec(substr($legend_item[1], 1, 2));
453 $g = hexdec(substr($legend_item[1], 3, 2));
454 $b = hexdec(substr($legend_item[1], 5, 2));
456 $a_tpl->setCurrentBlock(
"legend_bl");
457 $a_tpl->setVariable(
"LEGEND_CAPTION", $legend_item[0]);
458 $a_tpl->setVariable(
"LEGEND_COLOR", $legend_item[1]);
459 $a_tpl->setVariable(
"LEGEND_COLOR_SVG",
$r .
"," . $g .
"," .
$b);
460 $a_tpl->parseCurrentBlock();
467 $a_tpl->setVariable(
"CHART", $chart);
471 return $a_tpl->get();
481 $lng = $this->service->gui()->lng();
483 $a_tpl = new \ilTemplate(
"tpl.svy_results_details_text.html",
true,
true,
"components/ILIAS/Survey/Evaluation");
488 if (array_key_exists(
"", $texts)) {
489 $a_tpl->setVariable(
"TEXT_HEADING",
$lng->txt(
"given_answers"));
490 foreach ($texts[
""] as $item) {
491 $a_tpl->setCurrentBlock(
"text_direct_item_bl");
492 $a_tpl->setVariable(
"TEXT_DIRECT", nl2br(htmlentities($item)));
493 $a_tpl->parseCurrentBlock();
496 $acc = new \ilAccordionGUI();
497 $acc->setId(
"svyevaltxt" . $question->getId());
499 $a_tpl->setVariable(
"TEXT_HEADING",
$lng->txt(
"freetext_answers"));
501 foreach ($texts as $var => $items) {
502 $list = array(
"<ul class=\"small\">");
503 foreach ($items as $item) {
504 $list[] =
"<li>" . nl2br(htmlentities($item)) .
"</li>";
507 $acc->addItem((
string) $var, implode(
"\n", $list));
510 $a_tpl->setVariable(
"TEXT_ACC", $acc->getHTML());
513 return $a_tpl->get();
521 $ui_factory = $this->service->gui()->ui()->factory();
522 $lng = $this->service->gui()->lng();
529 $card_table_tpl = new \ilTemplate(
530 "tpl.svy_results_details_card.html",
533 "components/ILIAS/Survey/Evaluation" 545 $kv[
"arithmetic_mean"] = $question_res->
getMean();
549 foreach ($kv as $key => $value) {
550 $card_table_tpl->setCurrentBlock(
"question_statistics_card");
551 $card_table_tpl->setVariable(
"QUESTION_STATISTIC_KEY",
$lng->txt($key));
552 $card_table_tpl->setVariable(
"QUESTION_STATISTIC_VALUE", $value);
553 $card_table_tpl->parseCurrentBlock();
558 return $ui_factory->card()
559 ->standard($svy_type_title)
561 array($ui_factory->legacy()->content($card_table_tpl->get()))
This describes commonalities between the different modals.
setResultsCompetenceToolbar(\ilObjSurvey $survey, \ilToolbarGUI $toolbar, int $user_id)
Survey internal ui service.
setValuesFromForm(\ilObjSurvey $survey, \ilPropertyFormGUI $form)
Interface Observer Contains several chained tasks and infos about them.
getPanelTable(array $participants, \ILIAS\Survey\Evaluation\EvaluationGUIRequest $request, \SurveyQuestionEvaluation $a_eval)
addExportAndPrintButton(\ilObjSurvey $survey, \ilToolbarGUI $toolbar, bool $details, \ilTemplate $eval_tpl)
static _getQuestionTypeName(string $type_tag)
Return the translation for a given question type.
setResultsOverviewToolbar(\ilObjSurvey $survey, \ilToolbarGUI $toolbar, int $user_id, \ilTemplate $eval_tpl)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getSurveySettingsReminderTargets(\ilObjSurvey $survey, InternalGUIService $ui_service)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
catch(\Exception $e) $req
getDetailPanels(array $participants, \ILIAS\Survey\Evaluation\EvaluationGUIRequest $request, \SurveyQuestionEvaluation $a_eval)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setVariable($variable, $value='')
Sets a variable value.
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
addApprSelectionToToolbar(\ilObjSurvey $survey, \ilToolbarGUI $toolbar, int $user_id)
getPanelCard(\ilSurveyEvaluationResults $question_res)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getPanelChart(\ILIAS\Survey\Evaluation\EvaluationGUIRequest $request, \SurveyQuestionEvaluation $a_eval)
setInternalService(InternalService $internal_service)
setResultsDetailToolbar(\ilObjSurvey $survey, \ilToolbarGUI $toolbar, int $user_id, \ilTemplate $eval_tpl)
getSurveySettingsGeneral(\ilObjSurvey $survey)
buildExportButtonAndModal(\ilTemplate $eval_tpl, string $export_cmd)
__construct(InternalGUIService $gui)
getSurveySettingsResults(\ilObjSurvey $survey, InternalGUIService $ui_service)
getGrid( $a_results, bool $a_abs=true, bool $a_perc=true)
Get grid data.
getPanelText(\ILIAS\Survey\Evaluation\EvaluationGUIRequest $request, \SurveyQuestionEvaluation $a_eval, \ilSurveyEvaluationResults $question_res)
getTextAnswers($a_results)
Get text answers.