28 protected \ILIAS\Survey\InternalGUIService
$gui;
52 bool $a_has_write_access
56 $this->survey_service = $DIC->survey()->internal();
58 $this->
tabs = $DIC->tabs();
59 $this->
toolbar = $DIC->toolbar();
60 $this->
access = $DIC->access();
61 $this->rbacsystem = $DIC->rbac()->system();
62 $this->
user = $DIC->user();
63 $this->log = $DIC[
"ilLog"];
64 $ilCtrl = $DIC->ctrl();
65 $lng = $DIC->language();
68 $this->parent_gui = $a_parent_gui;
71 $this->
object = $survey;
72 $this->ref_id = $this->
object->getRefId();
73 $this->has_write = $a_has_write_access;
75 $this->
ctrl = $ilCtrl;
78 $this->invitation_manager = $this
83 $this->code_manager = $this
86 ->code($this->
object, $this->
user->getId());
87 $this->data_manager = $this
90 $this->feature_config = $this
92 ->domain()->modeFeatureConfig($this->
object->getMode());
93 $this->edit_manager = $this->survey_service
96 $this->edit_request = $this->survey_service
100 $this->gui = $this->survey_service->gui();
110 if (!$this->has_write) {
121 $cmd = $ilCtrl->getCmd(
"maintenance");
122 $next_class = $this->
ctrl->getNextClass($this);
124 switch ($next_class) {
125 case 'ilrepositorysearchgui':
128 if (!$this->edit_request->getAppr360() && !$this->edit_request->getRate360()) {
129 $ilTabs->clearTargets();
130 $ilTabs->setBackTarget(
131 $this->
lng->txt(
"btn_back"),
132 $this->
ctrl->getLinkTarget($this,
"maintenance")
135 $rep_search->setCallback(
141 $rep_search->setTitle($lng->
txt(
"svy_invite_participants"));
143 $this->
ctrl->setReturn($this,
'maintenance');
144 $this->
ctrl->forwardCommand($rep_search);
145 $ilTabs->setTabActive(
'maintenance');
146 } elseif ($this->edit_request->getRate360()) {
147 $ilTabs->clearTargets();
148 $ilTabs->setBackTarget(
149 $this->
lng->txt(
"btn_back"),
150 $this->
ctrl->getLinkTarget($this,
"listAppraisees")
153 $this->
ctrl->setParameter($this,
"rate360", 1);
154 $this->
ctrl->saveParameter($this,
"appr_id");
156 $rep_search->setCallback(
164 $this->
ctrl->setReturn($this,
'editRaters');
165 $this->
ctrl->forwardCommand($rep_search);
167 $ilTabs->activateTab(
"survey_360_appraisees");
168 $this->
ctrl->setParameter($this,
"appr360", 1);
170 $rep_search->setCallback(
178 $this->
ctrl->setReturn($this,
'listAppraisees');
179 $this->
ctrl->forwardCommand($rep_search);
183 case 'ilsurveyratergui':
184 $ilTabs->activateTab(
"survey_360_edit_raters");
186 $this->
ctrl->forwardCommand($rater_gui);
197 ?array $a_finished_ids =
null 199 $all_participants = $this->
object->getSurveyParticipants($a_finished_ids,
false,
true);
200 $participant_ids = [];
201 foreach ($all_participants as $participant) {
202 if (isset($participant[
'usr_id'])) {
203 $participant_ids[] = $participant[
'usr_id'];
207 $filtered_participant_ids = $this->
access->filterUserIdsByRbacOrPositionOfCurrentUser(
210 $this->
object->getRefId(),
215 foreach ($all_participants as $username => $user_data) {
216 if (!($user_data[
'usr_id'] ??
false)) {
217 $participants[$username] = $user_data;
219 if (in_array(($user_data[
'usr_id'] ?? -1), $filtered_participant_ids)) {
220 $participants[$username] = $user_data;
224 return $participants;
235 if ($this->
object->get360Mode()) {
243 if ($this->
object->getSkillService() && $skmg_set->isActivated()) {
244 $ilToolbar->addButton(
245 $this->
lng->txt(
"survey_calc_skills"),
246 $this->
ctrl->getLinkTargetByClass(
"ilsurveyskilldeterminationgui"),
255 $ilToolbar->addButton(
256 $this->
lng->txt(
'svy_remove_all_participants'),
257 $this->
ctrl->getLinkTarget($this,
'deleteAllUserData')
260 $ilToolbar->addSeparator();
262 if ($this->
object->isAccessibleWithoutCode()) {
263 $ilToolbar->addButton(
264 $this->
lng->txt(
"svy_invite_participants"),
265 $this->
ctrl->getLinkTargetByClass(
'ilRepositorySearchGUI',
'')
273 foreach ($total as $user_data) {
275 if ($user_data[
"finished"]) {
276 $finished = $user_data[
"finished_tstamp"];
278 if (isset($user_data[
"active_id"])) {
279 $wt = $this->
object->getWorkingtimeForParticipant($user_data[
"active_id"]);
280 $last_access = $this->
object->getLastAccess($user_data[
"active_id"]);
281 $active_id = $user_data[
"active_id"];
289 'name' => $user_data[
"sortname"],
290 'usr_id' => $user_data[
"usr_id"] ??
null,
291 'login' => $user_data[
"login"],
292 'last_access' => $last_access,
293 'workingtime' => $wt,
294 'finished' => $finished,
295 'invited' => $user_data[
"invited"] ??
false 298 $table_gui->setData(
$data);
299 $this->tpl->setVariable(
'ADM_CONTENT', $table_gui->getHTML());
304 $surveySetting =
new ilSetting(
"survey");
306 if ($surveySetting->get(
"anonymous_participants",
false) && $this->
object->hasAnonymizedResults() &&
307 $this->
object->hasAnonymousUserList()) {
308 $end = $this->
object->getEndDate();
309 if ($end && $end < date(
"YmdHis")) {
310 $min = (
int) $surveySetting->get(
"anonymous_participants_min",
'0');
311 $total = $this->
object->getSurveyParticipants();
312 if (!$min || count($total) >= $min) {
330 $this->
lng->txt(
"svy_part_overview"),
331 $this->
ctrl->getLinkTarget($this,
'maintenance')
337 $this->
lng->txt(
"svy_anonymous_participants_svy"),
338 $this->
ctrl->getLinkTarget($this,
'listParticipants')
342 if (!$this->
object->isAccessibleWithoutCode()) {
345 $this->
lng->txt(
"svy_codes"),
346 $this->
ctrl->getLinkTarget($this,
'codes')
351 $data = $this->
object->getExternalCodeRecipients();
355 $this->
lng->txt(
"mail_survey_codes"),
356 $this->
ctrl->getLinkTarget($this,
"mailCodes")
360 $ilTabs->activateSubTab($active);
370 $cgui->setHeaderText($this->
lng->txt(
"confirm_delete_all_user_data"));
371 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"deleteAllUserData"));
372 $cgui->setCancel($this->
lng->txt(
"cancel"),
"cancelDeleteAllUserData");
373 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"confirmDeleteAllUserData");
374 $this->tpl->setContent($cgui->getHTML());
382 if ($this->
access->checkAccess(
'write',
'', $this->object->getRefId())) {
383 $this->
object->deleteAllUserData();
386 foreach ($participants as $something => $participant_data) {
387 $this->
object->removeSelectedSurveyResults([$participant_data[
'active_id']]);
392 if ($this->
object->get360Mode()) {
393 $this->
object->openAllAppraisees();
396 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"svy_all_user_data_deleted"),
true);
397 $this->
ctrl->redirect($this,
"maintenance");
405 $this->
ctrl->redirect($this,
"maintenance");
413 $user_ids = $this->edit_request->getUserIds();
414 if (count($user_ids) > 0) {
415 $this->
object->removeSelectedSurveyResults(array_filter($user_ids,
static function ($i):
bool {
416 return is_numeric($i);
419 $invitations = array_filter($user_ids,
static function ($i):
bool {
420 return strpos($i,
"inv") === 0;
422 foreach ($invitations as $i) {
423 $this->invitation_manager->remove($this->
object->getSurveyId(), (
int) substr($i, 3));
426 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"svy_selected_user_data_deleted"),
true);
428 $this->
ctrl->redirect($this,
"maintenance");
436 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'msg_cancel'),
true);
437 $this->
ctrl->redirect($this,
"maintenance");
447 $user_ids = $this->edit_request->getUserIds();
448 if (count($user_ids) === 0) {
449 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'no_checkbox'),
true);
450 $this->
ctrl->redirect($this,
"maintenance");
453 $this->tpl->setOnScreenMessage(
'question', $this->
lng->txt(
"confirm_delete_single_user_data"));
455 $total = $this->
object->getSurveyParticipants(
null,
false,
true);
457 foreach ($total as $user_data) {
458 if (in_array(($user_data[
'active_id'] ??
null), $user_ids)
459 || (($user_data[
'invited'] ??
false) && in_array(
"inv" . $user_data[
'usr_id'], $user_ids))) {
460 $last_access = $this->
object->getLastAccess($user_data[
"active_id"] ?? 0);
462 'id' => $user_data[
"active_id"] ?? null,
463 'name' => $user_data[
"sortname"],
464 'login' => $user_data[
"login"] ?? null,
465 'last_access' => $last_access,
466 'finished' => $user_data[
"finished_tstamp"] ?? 0,
467 'usr_id' => $user_data[
"usr_id"] ?? null,
468 'invited' => $user_data[
"invited"] ?? null
472 $table_gui->setData(
$data);
473 $this->tpl->setVariable(
'ADM_CONTENT', $table_gui->getHTML());
481 if (strcmp($this->edit_request->getLang(),
"-1") !== 0) {
483 $ilUser->
writePref(
"survey_code_language", $this->edit_request->getLang());
485 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'language_changed'),
true);
486 $this->
ctrl->redirect($this,
'codes');
500 if ($this->
object->isAccessibleWithoutCode()) {
501 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"survey_codes_no_anonymization"));
505 $default_lang = $ilUser->getPref(
"survey_code_language");
508 $ilToolbar->setFormAction($this->
ctrl->getFormAction($this));
513 $ilToolbar->addInputItem($si,
true);
516 $this->
lng->txt(
"create"),
518 )->submit()->toToolbar();
520 $ilToolbar->addSeparator();
523 $this->
lng->txt(
"import_from_file"),
524 "importExternalMailRecipientsFromFileForm" 525 )->submit()->toToolbar();
528 $this->
lng->txt(
"import_from_text"),
529 "importExternalMailRecipientsFromTextForm" 530 )->submit()->toToolbar();
532 $ilToolbar->addSeparator();
535 $this->
lng->txt(
"svy_import_codes"),
537 )->submit()->toToolbar();
539 $ilToolbar->addSeparator();
541 $languages = $this->
lng->getInstalledLanguages();
543 $this->
lng->loadLanguageModule(
"meta");
544 foreach ($languages as
$lang) {
545 $options[
$lang] = $this->
lng->txt(
"meta_l_" . $lang);
549 $si->setValue($default_lang);
550 $ilToolbar->addInputItem($si,
true);
553 $this->
lng->txt(
"set"),
555 )->submit()->toToolbar();
559 $survey_codes = $this->
object->getSurveyCodesTableData(
null, $default_lang);
560 $table_gui->setData($survey_codes);
561 $this->tpl->setContent($table_gui->getHTML());
566 $ids = $this->edit_request->getCodeIds();
567 if (count($ids) === 0) {
568 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'no_checkbox'),
true);
569 $this->
ctrl->redirect($this,
'codes');
576 $table_gui->setData($this->
object->getSurveyCodesTableData($ids));
577 $this->tpl->setContent($table_gui->getHTML());
582 $codes = $this->edit_request->getCodes();
583 $mails = $this->edit_request->getCodesPar(
"mail");
584 $lnames = $this->edit_request->getCodesPar(
"lname");
585 $fnames = $this->edit_request->getCodesPar(
"fname");
586 $sents = $this->edit_request->getCodesPar(
"sent");
587 if (count($codes) === 0) {
588 $this->
ctrl->redirect($this,
'codes');
593 foreach ($codes as
$id) {
594 if (!$this->
object->updateCode(
601 $errors[] = array($mails[$id], $lnames[$id], $fnames[$id]);
604 if (empty($errors)) {
605 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'settings_saved'),
true);
607 foreach ($errors as $error) {
608 $error_message .= sprintf($this->
lng->txt(
"error_save_code"), $error[0], $error[1], $error[2]);
610 $this->tpl->setOnScreenMessage(
'failure', $error_message,
true);
613 $this->
ctrl->redirect($this,
'codes');
618 $codes = $this->edit_request->getCodes();
620 $data = $this->
object->getSurveyCodesTableData($codes);
621 $data = array_filter(
$data,
static function ($item):
bool {
622 return !$item[
"used"];
624 if (count(
$data) > 0) {
626 $cgui->setHeaderText($this->
lng->txt(
"survey_code_delete_sure"));
628 $cgui->setFormAction($this->
ctrl->getFormAction($this));
629 $cgui->setCancel($this->
lng->txt(
"cancel"),
"codes");
630 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"deleteCodes");
632 foreach (
$data as $item) {
633 $title = array($item[
"code"]);
634 $title[] = $item[
"email"] ??
"";
635 $title[] = $item[
"last_name"] ??
"";
636 $title[] = $item[
"first_name"] ??
"";
637 $title = implode(
", ", $title);
639 $cgui->addItem(
"chb_code[]", $item[
"code"], $title);
642 $this->tpl->setContent($cgui->getHTML());
644 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'svy_please_select_unused_codes'),
true);
645 $this->
ctrl->redirect($this,
'codes');
654 $codes = $this->edit_request->getCodes();
655 if (count($codes) > 0) {
656 foreach ($codes as $survey_code) {
657 $this->
object->deleteSurveyCode($survey_code);
659 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'codes_deleted'),
true);
661 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'no_checkbox'),
true);
663 $this->
ctrl->redirect($this,
'codes');
671 $codes = $this->edit_request->getCodes();
672 if (count($codes) > 0) {
673 $export = $this->
object->getSurveyCodesForExport(
null, $codes);
676 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"),
true);
677 $this->
ctrl->redirect($this,
'codes');
686 $export = $this->
object->getSurveyCodesForExport();
698 $this->tpl->setContent($form_import_file->getHTML());
704 $form_import_file->setFormAction($this->
ctrl->getFormAction($this));
705 $form_import_file->setTableWidth(
"100%");
706 $form_import_file->setId(
"codes_import_file");
709 $headerfile->setTitle($this->
lng->txt(
"svy_import_codes"));
710 $form_import_file->addItem($headerfile);
714 $this->
lng->txt(
'svy_import_codes_info'),
715 $this->
lng->txt(
"export_all_survey_codes")
717 $export_file->setSuffixes(array(
"csv"));
718 $export_file->setRequired(
true);
719 $form_import_file->addItem($export_file);
721 $form_import_file->addCommandButton(
"importAccessCodesAction", $this->
lng->txt(
"import"));
722 $form_import_file->addCommandButton(
"codes", $this->
lng->txt(
"cancel"));
724 return $form_import_file;
734 if ($form->checkInput()) {
736 foreach ($this->
object->getSurveyCodesTableData() as $item) {
737 $existing[$item[
"code"]] = $item[
"id"];
741 $reader->open($_FILES[
'codes'][
'tmp_name']);
742 foreach ($reader->getCsvAsArray() as $row) {
744 $code = $row[0] ??
"";
748 $email = $row[1] ??
"";
749 if (!is_int(strpos($email,
"@")) && $email !==
"") {
752 $last_name = $row[2] ??
"";
753 $first_name = $row[3] ??
"";
757 if (!array_key_exists($code, $existing)) {
773 ,
"lastname" => $last_name
774 ,
"firstname" => $first_name
776 $this->
object->importSurveyCode($code, $created, $user_data);
780 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'codes_created'),
true);
781 $this->
ctrl->redirect($this,
'codes');
783 $form->setValuesByPost();
786 $this->tpl->setContent($form->getHTML());
795 if ($this->edit_request->getNrOfCodes() > 0) {
796 $ids = $this->code_manager->addCodes($this->edit_request->getNrOfCodes());
797 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'codes_created'),
true);
798 $this->
ctrl->setParameter($this,
"new_ids", implode(
";", $ids));
799 $this->
ctrl->redirect($this,
'editCodes');
801 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"enter_valid_number_of_codes"),
true);
802 $this->
ctrl->redirect($this,
'codes');
812 $form_gui->setValuesByPost();
814 if ($form_gui->getSavedMessages()->getValue() > 0) {
816 $settings = $this->
object->getUserSettings($ilUser->getId(),
'savemessage');
817 $form_gui->getMailMessage()->setValue($settings[$form_gui->getSavedMessages()->getValue()][
'value']);
818 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_message_inserted'));
820 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_message_inserted'));
824 $ilLog->
write(
'Error: ' . $e->getMessage());
826 $this->tpl->setVariable(
"ADM_CONTENT", $form_gui->getHTML());
835 $form_gui->setValuesByPost();
837 if ($form_gui->getSavedMessages()->getValue() > 0) {
838 $this->
object->deleteUserSettings($form_gui->getSavedMessages()->getValue());
840 $form_gui->setValuesByPost();
841 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'msg_message_deleted'));
843 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_message_deleted'));
847 $ilLog->
write(
'Error: ' . $e->getMessage());
849 $this->tpl->setVariable(
"ADM_CONTENT", $form_gui->getHTML());
857 $mailData[
'm_subject'] =
858 $this->edit_request->getCodeMailPart(
"subject")
859 ?: sprintf($this->
lng->txt(
'default_codes_mail_subject'), $this->
object->getTitle());
860 $mailData[
'm_message'] =
861 $this->edit_request->getCodeMailPart(
"message")
862 ?: $this->
lng->txt(
'default_codes_mail_message');
863 $mailData[
'm_notsent'] =
864 $this->edit_request->getCodeMailPart(
"notsent")
868 $form_gui->setValuesByArray($mailData);
869 $this->tpl->setVariable(
"ADM_CONTENT", $form_gui->getHTML());
880 if ($form_gui->checkInput()) {
881 $url_exists = strpos($this->edit_request->getCodeMailPart(
"message"),
'[url]') !==
false;
883 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'please_enter_mail_url'));
884 $form_gui->setValuesByPost();
886 if ($this->edit_request->getSaveMessage() === 1) {
888 $title = ($this->edit_request->getSaveMessageTitle())
889 ?:
ilStr::subStr($this->edit_request->getCodeMailPart(
"message"), 0, 40) .
'...';
890 $this->
object->saveUserSettings($ilUser->getId(),
'savemessage', $title, $this->edit_request->getCodeMailPart(
"message"));
893 $lang = $ilUser->getPref(
"survey_code_language");
895 $lang = $this->
lng->getDefaultLanguage();
897 $this->
object->sendCodes(
898 $this->edit_request->getCodeMailPart(
"notsent"),
899 $this->edit_request->getCodeMailPart(
"subject"),
900 nl2br($this->edit_request->getCodeMailPart(
"message")),
903 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'mail_sent'),
true);
904 $this->
ctrl->redirect($this,
'mailCodes');
907 $form_gui->setValuesByPost();
909 $this->tpl->setVariable(
"ADM_CONTENT", $form_gui->getHTML());
914 if (trim($this->edit_request->getExternalText())) {
915 $data = preg_split(
"/[\n\r]/", $this->edit_request->getExternalText());
916 $fields = explode(
";", array_shift(
$data));
917 if (!in_array(
'email', $fields,
true)) {
918 $this->edit_manager->setExternalText($this->edit_request->getExternalText());
919 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_external_rcp_no_email_column'),
true);
920 $this->
ctrl->redirect($this,
'importExternalMailRecipientsFromTextForm');
922 $existingdata = $this->
object->getExternalCodeRecipients();
923 $existingcolumns = array();
924 if (count($existingdata)) {
925 $first = array_shift($existingdata);
926 foreach ($first as $key => $value) {
927 $existingcolumns[] = $key;
930 $founddata = array();
931 foreach (
$data as $datarow) {
932 $row = explode(
";", $datarow);
933 if (count($row) === count($fields)) {
935 foreach ($fields as $idx => $fieldname) {
936 if (count($existingcolumns)) {
937 if (array_key_exists($idx, $existingcolumns)) {
938 $dataset[$fieldname] = $row[$idx];
941 $dataset[$fieldname] = $row[$idx];
944 if ($dataset[
'email'] !==
'') {
947 $dataset[
'lastname'] ??
"",
948 $dataset[
'firstname'] ??
"" 953 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'external_recipients_imported'),
true);
954 $this->
ctrl->redirect($this,
'codes');
957 $this->
ctrl->redirect($this,
'importExternalMailRecipientsFromTextForm');
968 $code = $this->data_manager->code(
"")
970 ->withLastName($lastname)
971 ->withFirstName($firstname);
972 $code_id = $this->code_manager->add($code);
980 string $a_from_charset =
"",
981 string $a_to_charset =
"UTF-8" 983 if (extension_loaded(
"mbstring")) {
984 if (!$a_from_charset) {
985 mb_detect_order(
"UTF-8, ISO-8859-1, Windows-1252, ASCII");
986 $a_from_charset = mb_detect_encoding($a_string);
988 if (strtoupper($a_from_charset) !== $a_to_charset) {
989 return mb_convert_encoding($a_string, $a_to_charset, $a_from_charset);
998 $bom = pack(
'H*',
'EFBBBF');
999 return preg_replace(
'/^' . $bom .
'/',
'', $a_text);
1007 if (!$form->checkInput()) {
1009 $this->tpl->setContent($form->getHTML());
1013 if (trim($_FILES[
'externalmails'][
'tmp_name'])) {
1015 $reader->open($_FILES[
'externalmails'][
'tmp_name']);
1016 $data = $reader->getCsvAsArray();
1017 $fields = array_shift(
$data);
1018 foreach ($fields as $idx => $field) {
1021 if (!in_array(
'email', $fields,
true)) {
1023 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'err_external_rcp_no_email'),
true);
1024 $this->
ctrl->redirect($this,
'codes');
1026 $existingdata = $this->
object->getExternalCodeRecipients();
1027 $existingcolumns = array();
1028 if (count($existingdata)) {
1029 $first = array_shift($existingdata);
1030 foreach ($first as $key => $value) {
1031 $existingcolumns[] = $key;
1035 $founddata = array();
1036 foreach (
$data as $row) {
1037 if (count($row) === count($fields)) {
1039 foreach ($fields as $idx => $fieldname) {
1043 if (count($existingcolumns)) {
1044 if (array_key_exists($idx, $existingcolumns)) {
1045 $dataset[$fieldname] = $row[$idx];
1048 $dataset[$fieldname] = $row[$idx];
1051 if ($dataset[
'email'] !==
'') {
1052 $founddata[] = $dataset;
1055 $dataset[
'lastname'] ??
"",
1056 $dataset[
'firstname'] ??
"" 1063 if (count($founddata)) {
1064 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
'external_recipients_imported'),
true);
1068 $this->
ctrl->redirect($this,
'codes');
1076 $this->tpl->setContent($form->getHTML());
1084 $form_import_file->setFormAction($this->
ctrl->getFormAction($this));
1085 $form_import_file->setTableWidth(
"100%");
1086 $form_import_file->setId(
"codes_import_file");
1089 $headerfile->setTitle($this->
lng->txt(
"import_from_file"));
1090 $form_import_file->addItem($headerfile);
1092 $externalmails =
new ilFileInputGUI($this->
lng->txt(
"externalmails"),
"externalmails");
1093 $externalmails->
setInfo($this->
lng->txt(
'externalmails_info'));
1094 $externalmails->setRequired(
true);
1095 $form_import_file->addItem($externalmails);
1096 if ($ilAccess->checkAccess(
"write",
"", $this->edit_request->getRefId())) {
1097 $form_import_file->addCommandButton(
"importExternalRecipientsFromFile", $this->
lng->txt(
"import"));
1099 if ($ilAccess->checkAccess(
"write",
"", $this->edit_request->getRefId())) {
1100 $form_import_file->addCommandButton(
"codes", $this->
lng->txt(
"cancel"));
1102 return $form_import_file;
1113 $form_import_text->setFormAction($this->
ctrl->getFormAction($this));
1114 $form_import_text->setTableWidth(
"100%");
1115 $form_import_text->setId(
"codes_import_text");
1118 $headertext->setTitle($this->
lng->txt(
"import_from_text"));
1119 $form_import_text->addItem($headertext);
1122 $external_text = $this->edit_manager->getExternalText();
1123 if ($external_text !==
"") {
1127 $inp->setValue(
"email;firstname;lastname\n" . $this->
lng->txt(
'mail_import_example2') .
"\n" . $this->
lng->txt(
'mail_import_example3') .
"\n");
1129 $inp->setRequired(
true);
1132 $inp->setInfo($this->
lng->txt(
'externaltext_info'));
1133 $form_import_text->addItem($inp);
1134 $this->edit_manager->setExternalText(
"");
1136 if ($ilAccess->checkAccess(
"write",
"", $this->edit_request->getRefId())) {
1137 $form_import_text->addCommandButton(
"importExternalRecipientsFromText", $this->
lng->txt(
"import"));
1139 if ($ilAccess->checkAccess(
"write",
"", $this->edit_request->getRefId())) {
1140 $form_import_text->addCommandButton(
"codes", $this->
lng->txt(
"cancel"));
1143 $this->tpl->setContent($form_import_text->getHTML());
1158 $this->
ctrl->setParameter($this,
"appr360", 1);
1164 'auto_complete_name' => $this->
lng->txt(
'user'),
1165 'submit_name' => $this->
lng->txt(
'add'),
1166 'add_search' =>
true,
1173 if ($this->
object->getSkillService() && $skmg_set->isActivated()) {
1174 $ilToolbar->addSeparator();
1175 $ilToolbar->addButton(
1176 $lng->
txt(
"survey_calc_skills"),
1177 $ilCtrl->getLinkTargetByClass(
"ilsurveyskilldeterminationgui"),
1182 $ilToolbar->addSeparator();
1183 $ilToolbar->addButton(
1184 $this->
lng->txt(
'svy_delete_all_user_data'),
1185 $this->
ctrl->getLinkTarget($this,
'deleteAllUserData')
1188 $this->
ctrl->setParameter($this,
"appr360",
"");
1191 $tbl->setData($this->
object->getAppraiseesData());
1192 $this->tpl->setContent($tbl->getHTML());
1198 if (count($a_user_ids)) {
1200 foreach (array_unique($a_user_ids) as
$user_id) {
1201 $this->
object->addAppraisee($user_id);
1204 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
1206 $this->
ctrl->redirect($this,
"listAppraisees");
1213 $appr_ids = $this->edit_request->getAppraiseeIds();
1214 if (count($appr_ids) === 0) {
1215 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
1216 $this->
ctrl->redirect($this,
"listAppraisees");
1219 $ilTabs->clearTargets();
1220 $ilTabs->setBackTarget(
1221 $this->
lng->txt(
"btn_back"),
1222 $this->
ctrl->getLinkTarget($this,
"listAppraisees")
1226 $cgui->setHeaderText($this->
lng->txt(
"survey_360_sure_delete_appraises"));
1228 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"deleteAppraisees"));
1229 $cgui->setCancel($this->
lng->txt(
"cancel"),
"listAppraisees");
1230 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"deleteAppraisees");
1232 $data = $this->
object->getAppraiseesData();
1235 foreach ($appr_ids as
$id) {
1236 if (isset(
$data[$id]) && !
$data[$id][
"closed"]) {
1243 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
1244 $this->
ctrl->redirect($this,
"listAppraisees");
1247 $this->tpl->setContent($cgui->getHTML());
1252 $appr_ids = $this->edit_request->getAppraiseeIds();
1253 if (count($appr_ids) > 0) {
1254 $data = $this->
object->getAppraiseesData();
1256 foreach ($appr_ids as
$id) {
1258 if (isset(
$data[$id]) && !
$data[$id][
"closed"]) {
1259 $this->
object->deleteAppraisee($id);
1263 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
1266 $this->
ctrl->redirect($this,
"listAppraisees");
1274 if ($ilAccess->checkAccess(
"write",
"", $this->ref_id)) {
1275 $appr_id = $this->edit_request->getAppraiseeId();
1277 $this->
ctrl->redirect($this,
"listAppraisees");
1280 } elseif ($this->feature_config->usesAppraisees() &&
1281 $this->
object->get360SelfRaters() &&
1282 $this->
object->isAppraisee($ilUser->getId()) &&
1283 !$this->
object->isAppraiseeClosed($ilUser->getId())) {
1284 return $ilUser->getId();
1286 $this->
ctrl->redirect($this->parent_gui,
"infoScreen");
1293 $all_data = $this->
object->getRatersData($appr_id);
1295 $recs = json_decode(base64_decode($this->edit_request->getRecipients()));
1296 foreach ($all_data as $rec_id => $rater) {
1298 if (($rater[
"login"] !=
"" && in_array($rater[
"login"], $recs,
true)) ||
1299 ($rater[
"email"] !=
"" && in_array($rater[
"email"], $recs,
true))) {
1303 $this->
object->set360RaterSent(
1305 strpos($rec_id,
"a") === 0 ? 0 : (
int) substr($rec_id, 1),
1306 strpos($rec_id,
"u") === 0 ? 0 : (
int) substr($rec_id, 1)
1310 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1311 $this->
ctrl->redirect($this,
"editRaters");
1316 if ($this->edit_request->getReturnedFromMail() === 1) {
1323 $ilTabs->activateTab(
"survey_360_edit_raters");
1326 $has_write = $ilAccess->checkAccess(
"write",
"", $this->ref_id);
1328 $ilTabs->clearTargets();
1329 $ilTabs->setBackTarget(
1330 $this->
lng->txt(
"btn_back"),
1331 $this->
ctrl->getLinkTarget($this,
"listAppraisees")
1335 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1336 $this->
ctrl->setParameter($this,
"rate360", 1);
1338 $ilToolbar->addButton(
1339 $this->
lng->txt(
"svy_add_rater"),
1340 $this->
ctrl->getLinkTargetByClass(
"ilSurveyRaterGUI",
"add")
1348 $this->tpl->setContent($tbl->getHTML());
1358 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1360 $has_write = $ilAccess->checkAccess(
"write",
"", $this->ref_id);
1362 $ilTabs->clearTargets();
1363 $ilTabs->setBackTarget(
1364 $this->
lng->txt(
"btn_back"),
1365 $this->
ctrl->getLinkTarget($this,
"editRaters")
1373 $this->tpl->setContent($a_form->getHTML());
1380 $form->setFormAction($this->
ctrl->getFormAction($this,
"addExternalRater"));
1381 $form->setTitle($this->
lng->txt(
"survey_360_add_external_rater") .
1386 $form->addItem($email);
1389 $lname->setSize(30);
1390 $form->addItem($lname);
1393 $fname->setSize(30);
1394 $form->addItem($fname);
1396 $form->addCommandButton(
"addExternalRater", $this->
lng->txt(
"save"));
1397 $form->addCommandButton(
"editRaters", $this->
lng->txt(
"cancel"));
1404 $appr_id = $this->edit_request->getAppraiseeId();
1406 $this->
ctrl->redirect($this,
"listAppraisees");
1409 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1412 if ($form->checkInput()) {
1414 $form->getInput(
"email"),
1415 $form->getInput(
"lname"),
1416 $form->getInput(
"fname")
1419 $this->
object->addRater($appr_id, 0, $code_id);
1421 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
1422 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1423 $this->
ctrl->redirect($this,
"editRaters");
1426 $form->setValuesByPost();
1438 if (count($a_user_ids)) {
1440 foreach (array_unique($a_user_ids) as
$user_id) {
1441 if ($ilAccess->checkAccess(
"write",
"", $this->ref_id) ||
1442 $this->
object->get360SelfEvaluation() ||
1443 $user_id != $ilUser->getId()) {
1444 if ($appr_id != $user_id) {
1445 $this->
object->addRater($appr_id, $user_id);
1446 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
1448 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"svy_appraisses_cannot_be_raters"),
true);
1454 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1455 $this->
ctrl->redirect($this,
"editRaters");
1462 $rater_ids = $this->edit_request->getRaterIds();
1464 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1465 if (count($rater_ids) === 0) {
1466 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
1467 $this->
ctrl->redirect($this,
"editRaters");
1470 $ilTabs->clearTargets();
1471 $ilTabs->setBackTarget(
1472 $this->
lng->txt(
"btn_back"),
1473 $this->
ctrl->getLinkTarget($this,
"editRaters")
1477 $cgui->setHeaderText(sprintf(
1478 $this->
lng->txt(
"survey_360_sure_delete_raters"),
1482 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"deleteRaters"));
1483 $cgui->setCancel($this->
lng->txt(
"cancel"),
"editRaters");
1484 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"deleteRaters");
1486 $data = $this->
object->getRatersData($appr_id);
1488 foreach ($rater_ids as
$id) {
1489 if (isset(
$data[$id])) {
1490 $cgui->addItem(
"rtr_id[]", $id,
$data[$id][
"lastname"] .
", " .
1491 $data[$id][
"firstname"] .
" (" .
$data[$id][
"email"] .
")");
1495 $this->tpl->setContent($cgui->getHTML());
1501 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1503 $rater_ids = $this->edit_request->getRaterIds();
1504 if (count($rater_ids) > 0) {
1505 $data = $this->
object->getRatersData($appr_id);
1507 foreach ($rater_ids as
$id) {
1508 if (isset(
$data[$id])) {
1509 if (strpos($id,
"u") === 0) {
1510 $this->
object->deleteRater($appr_id, substr($id, 1));
1512 $this->
object->deleteRater($appr_id, 0, substr($id, 1));
1517 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
1520 $this->
ctrl->redirect($this,
"editRaters");
1527 if ($this->
object->get360SelfAppraisee() &&
1528 !$this->
object->isAppraisee($ilUser->getId())) {
1529 $this->
object->addAppraisee($ilUser->getId());
1532 $this->
ctrl->redirect($this->parent_gui,
"run");
1540 $form->setFormAction($this->
ctrl->getFormAction($this,
"mailRatersAction"));
1541 $form->setTitle($this->
lng->txt(
'compose'));
1543 $all_data = $this->
object->getRatersData($appr_id);
1544 $rec_data = array();
1545 foreach ($rec_ids as $rec_id) {
1546 if (isset($all_data[$rec_id])) {
1547 $rec_data[] = $all_data[$rec_id][
"lastname"] .
", " .
1548 $all_data[$rec_id][
"firstname"] .
1549 " (" . $all_data[$rec_id][
"email"] .
")";
1554 $rec->setHtml(implode(
"<br />", $rec_data));
1555 $form->addItem($rec);
1558 $subject->setSize(50);
1559 $subject->setRequired(
true);
1560 $form->addItem($subject);
1562 $existingdata = $this->
object->getExternalCodeRecipients();
1563 $existingcolumns = array();
1564 if (count($existingdata)) {
1565 $first = array_shift($existingdata);
1566 foreach ($first as $key => $value) {
1567 if (strcmp($key,
'code') !== 0 && strcmp($key,
'email') !== 0 && strcmp($key,
'sent') !== 0) {
1568 $existingcolumns[] =
'[' . $key .
']';
1573 $mailmessage_u =
new ilTextAreaInputGUI($this->
lng->txt(
'survey_360_rater_message_content_registered'),
'message_u');
1575 $mailmessage_u->setCols(80);
1576 $mailmessage_u->setRows(10);
1577 $form->addItem($mailmessage_u);
1579 $mailmessage_a =
new ilTextAreaInputGUI($this->
lng->txt(
'survey_360_rater_message_content_anonymous'),
'message_a');
1581 $mailmessage_a->setCols(80);
1582 $mailmessage_a->setRows(10);
1583 $mailmessage_a->setInfo(sprintf($this->
lng->txt(
'message_content_info'), implode(
', ', $existingcolumns)));
1584 $form->addItem($mailmessage_a);
1587 $recf->setValue(implode(
";", $rec_ids));
1588 $form->addItem($recf);
1590 $form->addCommandButton(
"mailRatersAction", $this->
lng->txt(
"send"));
1591 $form->addCommandButton(
"editRaters", $this->
lng->txt(
"cancel"));
1593 $subject->setValue(sprintf($this->
lng->txt(
'survey_360_rater_subject_default'), $this->
object->getTitle()));
1594 $mailmessage_u->setValue($this->
lng->txt(
'survey_360_rater_message_content_registered_default'));
1595 $mailmessage_a->setValue($this->
lng->txt(
'survey_360_rater_message_content_anonymous_default'));
1603 $all_data = $this->
object->getRatersData($appr_id);
1604 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1606 $raters = $this->edit_request->getRaterIds();
1609 $external_rater =
false;
1611 foreach ($raters as
$id) {
1612 if (isset($all_data[$id])) {
1613 if ($all_data[$id][
"login"] !=
"") {
1614 $rec[] = $all_data[
$id][
"login"];
1615 } elseif ($all_data[$id][
"email"] !=
"") {
1616 $rec[] = $all_data[
$id][
"email"];
1617 $external_rater =
true;
1618 $rater_id = $all_data[
$id][
"user_id"];
1622 if ($external_rater && count($rec) > 1) {
1623 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"svy_only_max_one_external_rater"),
true);
1624 $this->
ctrl->redirect($this,
"editRaters");
1629 $contextParameters = [
1630 'ref_id' => $this->
object->getRefId(),
1632 'appr_id' => $appr_id,
1633 'rater_id' => $rater_id,
1641 'recipients' => base64_encode(json_encode($rec, JSON_THROW_ON_ERROR)),
1645 'sig' => rawurlencode(base64_encode(
"\n\n" . $this->
lng->txt(
"svy_link_to_svy") .
": {{SURVEY_LINK}}"))
1655 $rater_ids = $this->edit_request->getRaterIds();
1658 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1660 if (count($rater_ids) === 0) {
1661 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
1662 $this->
ctrl->redirect($this,
"editRaters");
1668 $ilTabs->clearTargets();
1669 $ilTabs->setBackTarget(
1670 $this->
lng->txt(
"btn_back"),
1671 $this->
ctrl->getLinkTarget($this,
"editRaters")
1674 $this->tpl->setContent($a_form->getHTML());
1681 $this->
ctrl->setParameter($this,
"appr_id", $appr_id);
1683 $rec_ids = $this->edit_request->getRaterIds();
1684 if (count($rec_ids) === 0) {
1685 $this->
ctrl->redirect($this,
"editRaters");
1689 if ($form->checkInput()) {
1690 $txt_u = $form->getInput(
"message_u");
1691 $txt_a = $form->getInput(
"message_a");
1692 $subj = $form->getInput(
"subject");
1695 $sender_id = (trim($ilUser->getEmail()))
1699 $all_data = $this->
object->getRatersData($appr_id);
1700 foreach ($rec_ids as $rec_id) {
1701 if (isset($all_data[$rec_id])) {
1702 $user = $all_data[$rec_id];
1705 if (strpos($rec_id,
"a") === 0) {
1707 $url = $user[
"href"];
1708 $rcp = $user[
"email"];
1713 $user[
"code"] = $this->
lng->txt(
"survey_code_mail_on_demand");
1715 $rcp = $user[
"login"];
1718 $mytxt = str_replace(
1719 [
"[lastname]",
"[firstname]",
"[url]",
"[code]"],
1720 [$user[
"lastname"], $user[
"firstname"],
$url, $user[
"code"]],
1724 $mail =
new ilMail($sender_id);
1734 $this->
object->set360RaterSent(
1736 (strpos($rec_id,
"a") === 0) ? 0 : (
int) substr($rec_id, 1),
1737 (strpos($rec_id,
"u") === 0) ? 0 : (
int) substr($rec_id, 1)
1742 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"mail_sent"),
true);
1743 $this->
ctrl->redirect($this,
"editRaters");
1746 $form->setValuesByPost();
1757 $ilTabs->setBackTarget(
1758 $this->
lng->txt(
"menuback"),
1759 $this->
ctrl->getLinkTarget($this->parent_gui,
"run")
1762 if (!$this->
object->isAppraisee($ilUser->getId())) {
1763 $this->
ctrl->redirect($this->parent_gui,
"run");
1767 $cgui->setHeaderText($this->
lng->txt(
"survey_360_sure_appraisee_close"));
1769 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"appraiseeClose"));
1770 $cgui->setCancel($this->
lng->txt(
"cancel"),
"confirmAppraiseeCloseCancel");
1771 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"appraiseeClose");
1778 $this->
ctrl->redirect($this->parent_gui,
"run");
1785 if (!$this->
object->isAppraisee($ilUser->getId())) {
1786 $this->
ctrl->redirect($this->parent_gui,
"run");
1789 $this->
object->closeAppraisee($ilUser->getId());
1790 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"survey_360_appraisee_close_action_success"),
true);
1791 $this->
ctrl->redirect($this->parent_gui,
"run");
1800 $appr_ids = $this->edit_request->getAppraiseeIds();
1802 if (count($appr_ids) === 0) {
1803 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
1804 $this->
ctrl->redirect($this,
"listAppraisees");
1808 $cgui->setHeaderText($this->
lng->txt(
"survey_360_sure_appraisee_close_admin"));
1810 $cgui->setFormAction($this->
ctrl->getFormAction($this,
"adminAppraiseesClose"));
1811 $cgui->setCancel($this->
lng->txt(
"cancel"),
"listAppraisees");
1812 $cgui->setConfirm($this->
lng->txt(
"confirm"),
"adminAppraiseesClose");
1814 foreach ($appr_ids as $appr_id) {
1825 $appr_ids = $this->edit_request->getAppraiseeIds();
1827 if (count($appr_ids) === 0) {
1828 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
1829 $this->
ctrl->redirect($this,
"listAppraisees");
1832 $appr_data = $this->
object->getAppraiseesData();
1833 foreach ($appr_ids as $appr_id) {
1834 if (isset($appr_data[$appr_id]) && !$appr_data[$appr_id][
"closed"]) {
1835 $this->
object->closeAppraisee($appr_id);
1839 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"survey_360_appraisee_close_action_success_admin"),
true);
1840 $this->
ctrl->redirect($this,
"listAppraisees");
1848 $this->
ctrl->redirect($this,
"maintenance");
1855 $this->
lng->txt(
"print"),
1857 )->onClick(
"window.print(); return false;")->toToolbar();
1860 $this->tpl->setContent($tbl->getHTML());
1873 $this->invitation_manager->add($this->
object->getSurveyId(),
$user_id);
1875 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"svy_users_invited"),
true);
1876 $ctrl->
redirect($this,
"maintenance");
importAccessCodesObject()
Import codes from export codes file (upload form)
Class ilSurveyParticipantsGUI.
codesObject()
Display the survey access codes tab.
removeUTF8Bom(string $a_text)
writePref(string $a_keyword, string $a_value)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
exportAllCodesObject()
Exports all survey codes.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
write(string $message, $level=ilLogLevel::INFO, array $context=[])
write log message
Skill management settings.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilObjSurveyGUI $parent_gui
getAccessCodeImportForm()
maintenanceObject()
Participants maintenance.
setContent(string $a_html)
Sets content for standard template.
addCodeForExternal(string $email, string $lastname, string $firstname)
Add code for an external rater.
setCodeLanguageObject()
Change survey language for direct access URL's.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
insertSavedMessageObject()
confirmAppraiseeCloseObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static subStr(string $a_str, int $a_start, ?int $a_length=null)
Participants InvitationsManager $invitation_manager
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
mailRatersObjectOld(?ilPropertyFormGUI $a_form=null)
cancelDeleteSelectedUserDataObject()
Cancels the deletion of all user data.
addRater(array $a_user_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
confirmDeleteAppraiseesObject()
sort()
description: > Example for rendering a Sort Glyph.
static getASCIIFilename(string $a_filename)
setValue(string $a_value)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
ilObjSurveyGUI: ilSurveyEvaluationGUI, ilSurveyExecutionGUI ilObjSurveyGUI: ilObjectMetaDataGUI, ilPermissionGUI ilObjSurveyGUI: ilInfoScreenGUI, ilObjectCopyGUI ilObjSurveyGUI: ilSurveySkillDeterminationGUI ilObjSurveyGUI: ilCommonActionDispatcherGUI, ilSurveySkillGUI ilObjSurveyGUI: ilSurveyEditorGUI, ilSurveyConstraintsGUI ilObjSurveyGUI: ilSurveyParticipantsGUI, ilLearningProgressGUI ilObjSurveyGUI: ilExportGUI, ilLTIProviderObjectSettingGUI ilObjSurveyGUI: ILIAS
confirmDeleteRatersObject()
cancelDeleteAllUserDataObject()
Cancels delete of all user data in maintenance.
addSubTab(string $a_id, string $a_text, string $a_link, string $a_frame="")
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:
deleteCodesConfirmObject()
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
importExternalRecipientsFromFileObject()
static _getStaticLink(?int $a_ref_id, string $a_type='', bool $a_fallback_goto=true, string $append="")
ILIAS Survey InternalGUIService $gui
deleteCodesObject()
Delete a list of survey codes.
ILIAS Survey Editing EditManager $edit_manager
ILIAS Survey InternalService $survey_service
clearTargets()
clear all targets
initMailRatersForm(int $appr_id, array $rec_ids)
getImportExternalMailRecipientsFromFileForm()
ILIAS Survey InternalDataService $data_manager
createSurveyCodesObject()
Create access codes for the survey.
confirmDeleteSelectedUserDataObject()
Deletes all user data for the test object.
deleteSavedMessageObject()
confirmAdminAppraiseesCloseObject()
importExternalMailRecipientsFromFileFormObject()
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt('user'), auto_complete_size = 15, user_type = array(ilCoursePar...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
__construct(Container $dic, ilPlugin $plugin)
importAccessCodesActionObject()
Import codes from export codes file.
This class represents a text area property in a property form.
ilGlobalTemplateInterface $tpl
addExternalRaterFormObject(?ilPropertyFormGUI $a_form=null)
importExternalRecipientsFromTextObject()
adminAppraiseesCloseObject()
confirmDeleteAllUserDataObject()
Deletes all user data of the survey after confirmation.
_convertCharset(string $a_string, string $a_from_charset="", string $a_to_charset="UTF-8")
filterSurveyParticipantsByAccess(?array $a_finished_ids=null)
inviteUsers(array $user_ids)
ILIAS Survey Mode FeatureConfig $feature_config
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
initExternalRaterForm(int $appr_id)
exportCodesObject()
Exports a list of survey codes.
deleteSingleUserResultsObject()
Asks for a confirmation to delete selected user data.
deleteAllUserDataObject()
Creates a confirmation form for delete all user data.
importExternalMailRecipientsFromTextFormObject()
ILIAS Survey Code CodeManager $code_manager
addAppraisee(array $a_user_ids)
ILIAS Survey Editing EditingGUIRequest $edit_request
setParticipantSubTabs(string $active)
confirmAppraiseeCloseCancelObject()