31 protected \ILIAS\Survey\InternalGUIService
$gui;
32 protected \ILIAS\Survey\Evaluation\EvaluationGUIRequest
$request;
37 protected \ilLanguage
$lng;
50 $this->survey = new \ilObjSurvey($this->ref_id);
51 $this->request = $DIC->survey()
54 ->evaluation($this->survey)
56 $this->evaluation_manager = $DIC->survey()
61 $DIC->user()->getId(),
62 $this->request->getAppraiseeId(),
63 $this->request->getRaterId()
65 $this->ui_modifier = $DIC->survey()
68 ->modeUIModifier($this->survey->getMode());
69 $this->gui = $DIC->survey()
72 $this->tree = $DIC->repositoryTree();
89 $form = new \ilPropertyFormGUI();
91 $radg = new \ilRadioGroupInputGUI($lng->txt(
"svy_selection"),
"print_selection");
92 $radg->setValue(
"all");
93 $op1 = new \ilRadioOption($lng->txt(
"svy_all_questions"),
"all");
94 $radg->addOption($op1);
95 $op2 = new \ilRadioOption($lng->txt(
"svy_selected_questions"),
"selected");
96 $radg->addOption($op2);
98 $nl = new \ilNestedListInputGUI(
"",
"qids");
99 $op2->addSubItem($nl);
101 foreach ($this->survey->getSurveyQuestions() as $qdata) {
103 $qdata[
"question_id"],
111 $form->addItem($radg);
114 $form->addCommandButton(
"printResultsDetails", $lng->txt(
"print_view"));
116 $form->setTitle($lng->txt(
"svy_print_selection"));
117 $form->setFormAction($ilCtrl->getFormActionByClass(
118 "ilSurveyEvaluationGUI",
119 "printResultsDetails" 129 $finished_ids = $this->evaluation_manager->getFilteredFinishedIds();
131 $selection = $this->request->getPrintSelection();
132 $qids = $this->request->getQuestionIds();
135 foreach ($this->survey->getSurveyQuestions() as $qdata) {
138 if ($selection !==
"all" && !in_array($qdata[
"question_id"], $qids)) {
142 $panels = $this->ui_modifier->getDetailPanels(
143 $this->survey->getSurveyParticipants(),
147 $panel_report = $this->gui->ui()->factory()->panel()->report(
148 $this->
lng->txt(
"svy_eval_detail"),
156 $print_pages[] = $head . $this->gui->ui()->renderer()->render(
166 $head =
"<h2>" . $this->survey->getTitle() .
"</h2>\n";
168 $path_full = $this->tree->getPathFull($this->survey->getRefId());
169 foreach ($path_full as
$data) {
170 $path .=
" » ";
171 $path .= $data[
'title'];
181 $f = $this->gui->ui()->factory();
182 $r = $this->gui->ui()->renderer();
183 $l = $f->listing()->descriptive($props);
185 return $head .
$r->render($l);
static array static setUseRelativeDates(bool $a_status)
set use relative dates
ILIAS Survey InternalGUIService $gui
special template class to simplify handling of ITX/PEAR
ILIAS Survey Mode UIModifier $ui_modifier
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(\ilLanguage $lng, \ilCtrl $ctrl, int $ref_id)
static _instanciateQuestionEvaluation(int $question_id, ?array $a_finished_ids=null)
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
ILIAS Survey Evaluation EvaluationGUIRequest $request
ILIAS Survey Evaluation EvaluationManager $evaluation_manager
static formatDate(ilDateTime $date, bool $a_skip_day=false, bool $a_include_wd=false, bool $include_seconds=false, ?ilObjUser $user=null,)
getSelectionForm()
form which is featured in the modal form target is modified to open in new window (not yet possible w...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...