3 declare(strict_types=1);
76 ILIAS\
HTTP\Wrapper\WrapperFactory $wrapper,
92 $this->request_wrapper = $wrapper->query();
93 $this->post_wrapper = $wrapper->post();
101 if (!$this->iass_access->mayEditMembers()
102 && !$this->iass_access->mayGradeAnyUser()
103 && !$this->iass_access->mayViewAnyUser()
104 && !$this->iass_access->mayAmendAllUsers()
108 $cmd = $this->
ctrl->getCmd();
109 $next_class = $this->
ctrl->getNextClass();
110 $this->
ctrl->saveParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_STATUS);
111 $this->tpl->setPermanentLink(
"iass", $this->ref_id);
113 switch ($next_class) {
114 case "ilrepositorysearchgui":
116 $rep_search->setCallback($this,
"addUsersFromSearch");
117 $rep_search->addUserAccessFilterCallable(
118 function ($a_user_ids) {
122 $this->
ctrl->forwardCommand($rep_search);
124 case "ilindividualassessmentmembergui":
125 $this->
tabs->clearTargets();
126 $this->
tabs->setBackTarget(
127 $this->
lng->txt(
'back'),
128 $this->
ctrl->getLinkTargetByClass(self::class,
'view')
130 $this->
ctrl->forwardCommand($this->member_gui);
144 if ($this->request_wrapper->retrieve(
'failure', $r->byTrying([$r->kindlyTo()->bool(), $r->always(
false)]))) {
145 $this->tpl->setOnScreenMessage(
"failure", $this->
txt(
'iass_add_user_failure'));
147 $this->tpl->setOnScreenMessage(
"success", $this->
txt(
'iass_add_user_success'));
152 protected function view(): void
154 if ($this->iass_access->mayEditMembers()) {
155 $search_params = [
'crs',
'grp'];
156 $container_id = $this->
object->getParentContainerIdByType($this->ref_id, $search_params);
157 if ($container_id !== 0) {
162 'auto_complete_name' => $this->
txt(
'user'),
163 'submit_name' => $this->
txt(
'add'),
164 'add_search' =>
true,
165 'add_from_container' => $container_id
173 'auto_complete_name' => $this->
txt(
'user'),
174 'submit_name' => $this->
txt(
'add'),
188 $this->date_formatter
194 $entries = $this->
object->loadMembersAsSingleObjects($filter, $sort);
195 $table->setData($entries);
198 $output = $table->render($view_controls);
200 if (count($entries) == 0) {
201 $output .= $this->
txt(
"iass_no_entries");
203 $this->tpl->setContent($output);
211 if (!empty($user_ids)) {
215 $this->tpl->setOnScreenMessage(
"info", $this->
txt(
"search_no_selection"),
true);
216 $this->
ctrl->redirect($this,
'view');
226 if (!$this->iass_access->mayEditMembers()) {
232 if (count($user_ids) === 0) {
235 foreach ($user_ids as $user_id) {
237 if (!$members->userAllreadyMember($user)) {
238 $members = $members->withAdditionalUser($user);
243 $members->updateStorageAndRBAC($iass->membersStorage(), $iass->accessHandler());
245 $this->
ctrl->setParameter($this,
'failure', $failure);
246 $this->
ctrl->redirect($this,
'addedUsers');
254 if (!$this->iass_access->mayEditMembers()) {
257 $usr_id = $this->request_wrapper->retrieve(
"usr_id", $this->
refinery->kindlyTo()->int());
260 $confirm->setHeaderText($this->
txt(
'iass_remove_user_qst'));
261 $confirm->setFormAction($this->
ctrl->getFormAction($this));
262 $confirm->setConfirm($this->
txt(
'remove'),
'removeUser');
263 $confirm->setCancel($this->
txt(
'cancel'),
'view');
264 $this->tpl->setContent($confirm->getHTML());
272 if (!$this->iass_access->mayEditMembers()) {
275 $usr_id = $this->post_wrapper->retrieve(
"usr_id", $this->
refinery->kindlyTo()->int());
278 ->withoutPresentUser(
new ilObjUser($usr_id))
279 ->updateStorageAndRBAC($iass->membersStorage(), $iass->accessHandler());
281 $this->tpl->setOnScreenMessage(
"success", $this->
txt(
"iass_user_removed"),
true);
282 $this->
ctrl->redirect($this,
'view');
292 $vc_factory = $this->factory->viewControl();
303 $vc = $vc_factory->mode(
308 if ($this->request_wrapper->has(self::F_STATUS)) {
310 $this->request_wrapper->retrieve(
312 $this->refinery->kindlyTo()->string()
322 $target = $this->
ctrl->getLinkTargetByClass(
"ilIndividualAssessmentMembersGUI",
"view");
323 return $vc_factory->sortation(
326 ->withTargetURL($target, self::F_SORT)
339 if ($this->iass_access->mayViewAnyUser()) {
340 $ret[$this->
txt(
"iass_filter_not_started")] =
342 $ret[$this->
txt(
"iass_filter_not_finalized")] =
344 $ret[$this->
txt(
"iass_filter_finalized")] =
346 $ret[$this->
txt(
"iass_filter_failed")] =
359 return $this->
txt(
"iass_filter_not_started");
361 return $this->
txt(
"iass_filter_not_finalized");
363 return $this->
txt(
"iass_filter_finalized");
365 return $this->
txt(
"iass_filter_failed");
367 return $this->
txt(
"iass_filter_all");
376 $this->
ctrl->setParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_SORT, $this->
getSortValue());
377 $this->
ctrl->setParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_STATUS, $value);
378 $link = $this->
ctrl->getLinkTargetByClass(
"ilIndividualAssessmentMembersGUI",
"view");
379 $this->
ctrl->setParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_STATUS, null);
381 $this->
ctrl->setParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_SORT, null);
389 $this->request_wrapper->has(self::F_STATUS) &&
390 $this->request_wrapper->retrieve(self::F_STATUS, $this->
refinery->kindlyTo()->string()) !=
"" &&
392 $this->request_wrapper->retrieve(self::F_STATUS, $this->refinery->kindlyTo()->string()),
401 return $this->request_wrapper->retrieve(self::F_STATUS, $this->
refinery->kindlyTo()->string());
410 self::S_NAME_ASC => $this->
txt(
"iass_sort_name_asc"),
411 self::S_NAME_DESC => $this->
txt(
"iass_sort_name_desc"),
412 self::S_EXAMINER_ASC => $this->
txt(
"iass_sort_examiner_login_asc"),
413 self::S_EXAMINER_DESC => $this->
txt(
"iass_sort_examiner_login_desc"),
414 self::S_CHANGETIME_ASC => $this->
txt(
"iass_sort_changetime_asc"),
415 self::S_CHANGETIME_DESC => $this->
txt(
"iass_sort_changetime_desc")
422 $this->request_wrapper->has(self::F_SORT) &&
423 $this->request_wrapper->retrieve(self::F_SORT, $this->
refinery->kindlyTo()->string()) !=
"" &&
425 $this->request_wrapper->retrieve(self::F_SORT, $this->refinery->kindlyTo()->string()),
429 self::S_EXAMINER_ASC,
430 self::S_EXAMINER_DESC,
431 self::S_CHANGETIME_ASC,
432 self::S_CHANGETIME_DESC
436 return $this->request_wrapper->retrieve(self::F_SORT, $this->
refinery->kindlyTo()->string());
444 $this->error_object->raiseError($this->
txt(
"msg_no_perm_read"), $this->error_object->WARNING);
447 protected function txt(
string $code): string
449 return $this->
lng->txt($code);
ilGlobalPageTemplate $tpl
An entity that renders components to a string output.
getLinkForStatusFilter($value)
addUsers(array $user_ids)
Add users to corresponding iass-object.
IndividualAssessmentAccessHandler $iass_access
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupFullname(int $a_user_id)
Class ChatMainBarProvider .
getActiveLabelForModeByFilter($filter)
ilErrorHandling $error_object
removeUser()
Remove users from corresponding iass-object.
getModeControl(ViewControl\Factory $vc_factory)
getSortationControl(ViewControl\Factory $vc_factory)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
addUsersFromSearch(array $user_ids)
static updateLPStatusByIds(int $iass_id, array $usr_ids)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilIndividualAssessmentMemberGUI $member_gui
__construct(ilObjIndividualAssessment $object, ilCtrl $ctrl, ilGlobalPageTemplate $tpl, ilLanguage $lng, ilToolbarGUI $toolbar, ilObjUser $user, ilTabsGUI $tabs, IndividualAssessmentAccessHandler $iass_access, UI\Factory $factory, UI\Renderer $renderer, ilErrorHandling $error_object, ilIndividualAssessmentMemberGUI $member_gui, ILIAS\Refinery\Factory $refinery, ILIAS\HTTP\Wrapper\WrapperFactory $wrapper, ilIndividualAssessmentDateFormatter $date_formatter)
const LP_ASSESSMENT_NOT_COMPLETED
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...
withActive(string $label)
set the currently active/engaged Button by label.
This describes a Sortation Control.
Error Handling & global info handling uses PEAR error class.
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
loadMembers()
Get the members object associated with this.
ilIndividualAssessmentDateFormatter $date_formatter
This describes a Mode Control.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeUserConfirmation()
Display confirmation form for user might be removed.
ILIAS Refinery Factory $refinery
For the purpose of streamlining the grading and learning-process status definition outside of tests...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ILIAS HTTP Wrapper ArrayBasedRequestWrapper $post_wrapper
ilObjIndividualAssessment $object