5 declare(strict_types=1);
7 require_once
'Modules/IndividualAssessment/classes/class.ilIndividualAssessmentMembersTableGUI.php';
8 require_once
'Modules/IndividualAssessment/classes/LearningProgress/class.ilIndividualAssessmentLPInterface.php';
11 use \ILIAS\UI\Component\ViewControl;
125 $this->ref_id = (int) $object->
getRefId();
130 if (!$this->iass_access->mayEditMembers()
131 && !$this->iass_access->mayGradeUser()
132 && !$this->iass_access->mayViewUser()
133 && !$this->iass_access->mayAmendGradeUser()
137 $cmd = $this->ctrl->getCmd();
138 $next_class = $this->ctrl->getNextClass();
139 $this->ctrl->saveParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_STATUS);
140 switch ($next_class) {
141 case "ilrepositorysearchgui":
142 require_once
'Services/Search/classes/class.ilRepositorySearchGUI.php';
144 $rep_search->setCallback($this,
"addUsersFromSearch");
145 $rep_search->addUserAccessFilterCallable(
146 function ($a_user_ids) {
150 $this->ctrl->forwardCommand($rep_search);
152 case "ilindividualassessmentmembergui":
153 $this->tabs->clearTargets();
154 $this->tabs->setBackTarget(
155 $this->lng->txt(
'back'),
156 $this->ctrl->getLinkTargetByClass(self::class,
'view')
158 $this->ctrl->forwardCommand($this->member_gui);
171 if (!
$_GET[
'failure']) {
172 ilUtil::sendSuccess($this->
txt(
'iass_add_user_success'));
181 if ($this->iass_access->mayEditMembers()) {
182 require_once
'./Services/Search/classes/class.ilRepositorySearchGUI.php';
184 $search_params = [
'crs',
'grp'];
185 $container_id = $this->
object->getParentContainerIdByType($this->ref_id, $search_params);
186 if ($container_id !== 0) {
191 'auto_complete_name' => $this->
txt(
'user'),
192 'submit_name' => $this->
txt(
'add'),
193 'add_search' =>
true,
194 'add_from_container' => $container_id
202 'auto_complete_name' => $this->
txt(
'user'),
203 'submit_name' => $this->
txt(
'add'),
216 (
int) $this->
user->getId()
224 $entries = $this->
object->loadMembersAsSingleObjects($filter, $sort);
225 $table->setData($entries);
228 $output = $table->render($view_constrols);
230 if (count($entries) == 0) {
231 $output .= $this->
txt(
"iass_no_entries");
233 $this->tpl->setContent($output);
241 if ($user_ids && is_array($user_ids) && !empty($user_ids)) {
246 $this->ctrl->redirect($this,
'view');
256 if (!$this->iass_access->mayEditMembers()) {
260 $members = $iass->loadMembers();
262 if (count($user_ids) === 0) {
265 foreach ($user_ids as $user_id) {
267 if (!$members->userAllreadyMember(
$user)) {
268 $members = $members->withAdditionalUser(
$user);
273 $members->updateStorageAndRBAC($iass->membersStorage(), $iass->accessHandler());
275 $this->ctrl->setParameter($this,
'failure',
$failure);
276 $this->ctrl->redirect($this,
'addedUsers');
284 if (!$this->iass_access->mayEditMembers()) {
287 include_once
'./Services/Utilities/classes/class.ilConfirmationGUI.php';
290 $confirm->setHeaderText($this->
txt(
'iass_remove_user_qst'));
291 $confirm->setFormAction($this->ctrl->getFormAction($this));
292 $confirm->setConfirm($this->
txt(
'remove'),
'removeUser');
293 $confirm->setCancel($this->
txt(
'cancel'),
'view');
294 $this->tpl->setContent($confirm->getHTML());
302 if (!$this->iass_access->mayEditMembers()) {
305 $usr_id =
$_POST[
'usr_id'];
308 ->withoutPresentUser(
new ilObjUser($usr_id))
309 ->updateStorageAndRBAC($iass->membersStorage(), $iass->accessHandler());
311 ilUtil::sendSuccess($this->
txt(
"iass_user_removed"),
true);
312 $this->ctrl->redirect($this,
'view');
322 $vc_factory = $this->factory->viewControl();
338 return $vc_factory->mode(
342 ->withActive($active);
347 $target = $link = $this->ctrl->getLinkTargetByClass(
"ilIndividualAssessmentMembersGUI",
"view");
348 return $vc_factory->sortation(
352 ->withLabel($this->
txt(
"iass_sort"));
380 return $this->
txt(
"iass_filter_not_started");
383 return $this->
txt(
"iass_filter_not_finalized");
386 return $this->
txt(
"iass_filter_finalized");
389 return $this->
txt(
"iass_filter_failed");
392 return $this->
txt(
"iass_filter_all");
401 $this->ctrl->setParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_STATUS, $value);
402 $link = $this->ctrl->getLinkTargetByClass(
"ilIndividualAssessmentMembersGUI",
"view");
403 $this->ctrl->setParameterByClass(
"ilIndividualAssessmentMembersGUI", self::F_STATUS, null);
414 if (isset($get[self::F_STATUS])
415 && $get[self::F_STATUS] !=
"" 417 $get[self::F_STATUS],
426 return $get[self::F_STATUS];
435 self::S_NAME_ASC => $this->
txt(
"iass_sort_name_asc"),
436 self::S_NAME_DESC => $this->
txt(
"iass_sort_name_desc"),
437 self::S_EXAMINER_ASC => $this->
txt(
"iass_sort_examiner_login_asc"),
438 self::S_EXAMINER_DESC => $this->
txt(
"iass_sort_examiner_login_desc"),
439 self::S_CHANGETIME_ASC => $this->
txt(
"iass_sort_changetime_asc"),
440 self::S_CHANGETIME_DESC => $this->
txt(
"iass_sort_changetime_desc")
450 if (isset($get[self::F_SORT])
451 && $get[self::F_SORT] !=
"" 457 self::S_EXAMINER_ASC,
458 self::S_EXAMINER_DESC,
459 self::S_CHANGETIME_ASC,
460 self::S_CHANGETIME_DESC
464 return $get[self::F_SORT];
472 $this->error_object->raiseError($this->
txt(
"msg_no_perm_read"), $this->error_object->WARNING);
477 return $this->iass_access->mayViewUser();
480 protected function txt(
string $code) : string
482 return $this->lng->txt($code);
An entity that renders components to a string output.
This class provides processing control methods.
getLinkForStatusFilter($value)
addUsers(array $user_ids)
Add users to corresponding iass-object.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
static _lookupFullname($a_user_id)
Lookup Full Name.
getActiveLabelForModeByFilter($filter)
withTargetURL($url, $paramter_name)
Get a Sortation with this target-url.
removeUser()
Remove users from corresponding iass-object.
getSortationControl(ViewControl\Factory $vc_factory)
addUsersFromSearch(array $user_ids)
Mechanic regarding the access controll and roles of an objcet goes here.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Class ilGlobalPageTemplate.
getModeControl(array $get, ViewControl\Factory $vc_factory)
const LP_ASSESSMENT_NOT_COMPLETED
This is how the factory for UI elements looks.
__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)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
getViewControls(array $get)
This describes a Sortation Control.
maybeViewLearningProgress()
This describes a Mode Control.
getRefId()
get reference id public
static fillAutoCompleteToolbar($parent_object, ilToolbarGUI $toolbar=null, $a_options=array(), $a_sticky=false)
fill toolbar with
removeUserConfirmation()
Display confirmation form for user might be removed.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
getFilterValue(array $get)
Confirmation screen class.
static updateLPStatusByIds($iass_id, array $usr_ids)