ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilExSubmissionTeamGUI.php
Go to the documentation of this file.
1 <?php
2 
20 
30 {
31  protected \ILIAS\Exercise\InternalGUIService $gui;
32  protected \ILIAS\Exercise\InternalDomainService $domain;
33  protected ilCtrl $ctrl;
34  protected ilTabsGUI $tabs_gui;
35  protected ilLanguage $lng;
38  protected ilObjUser $user;
46  protected array $requested_team_ids = [];
47  protected GUIRequest $request;
48 
49  public function __construct(
50  ilObjExercise $a_exercise,
51  ilExSubmission $a_submission
52  ) {
54  global $DIC;
55 
56  $this->toolbar = $DIC->toolbar();
57  $this->user = $DIC->user();
58  $ilCtrl = $DIC->ctrl();
59  $ilTabs = $DIC->tabs();
60  $lng = $DIC->language();
61  $tpl = $DIC["tpl"];
62 
63  $this->exercise = $a_exercise;
64  $this->submission = $a_submission;
65  $this->assignment = $a_submission->getAssignment();
66 
67  // :TODO:
68  $this->ctrl = $ilCtrl;
69  $this->tabs_gui = $ilTabs;
70  $this->lng = $lng;
71  $this->tpl = $tpl;
72 
73  $this->request = $DIC->exercise()->internal()->gui()->request();
74  $this->requested_team_ids = $this->request->getTeamIds();
75  $this->domain = $DIC->exercise()->internal()->domain();
76  $this->gui = $DIC->exercise()->internal()->gui();
77  }
78 
82  public function executeCommand(): void
83  {
84  $ilCtrl = $this->ctrl;
85 
86  $class = $ilCtrl->getNextClass($this);
87  $cmd = $ilCtrl->getCmd("submissionScreenTeam");
88 
89  if (!$this->assignment->hasTeam() ||
90  !$this->submission->canView()) {
91  return;
92  }
93  $this->team = $this->submission->getTeam();
94 
95  if (!$this->submission->isTutor()) {
96  self::handleTabs();
97  $this->tabs_gui->activateTab("team");
98  }
99 
100  switch ($class) {
101  case 'ilrepositorysearchgui':
102  $this->ctrl->setReturn($this, 'submissionScreenTeam');
103  $rep_search = new ilRepositorySearchGUI();
104  if (!$this->submission->isTutor()) {
105  $rep_search->setPrivacyMode(ilUserAutoComplete::PRIVACY_MODE_RESPECT_USER_SETTING);
106  }
107  $rep_search->setTitle($this->lng->txt("exc_team_member_add"));
108  $rep_search->setCallback($this, 'addTeamMemberActionObject');
109  $this->ctrl->forwardCommand($rep_search);
110  break;
111 
112  default:
113  $this->{$cmd . "Object"}();
114  break;
115  }
116  }
117 
118  public static function getOverviewContent(
119  ilInfoScreenGUI $a_info,
120  ilExSubmission $a_submission
121  ): void {
122  global $DIC;
123 
124  $lng = $DIC->language();
125  $ilCtrl = $DIC->ctrl();
126  $gui = $DIC->exercise()->internal()->gui();
127 
128  if (!$a_submission->getAssignment()->hasTeam()) {
129  return;
130  }
131 
132  $state = ilExcAssMemberState::getInstanceByIds($a_submission->getAssignment()->getId(), $a_submission->getUserId());
133 
134  $team_members = $a_submission->getTeam()->getMembers();
135  if ($team_members !== []) { // we have a team
136  $team = array();
137  foreach ($team_members as $member_id) {
138  //$team[] = ilObjUser::_lookupFullname($member_id);
139  $team[] = ilUserUtil::getNamePresentation($member_id, false, false, "", false);
140  }
141  $team = implode("; ", $team);
142 
143  if (!$a_submission->getAssignment()->getTeamTutor()) {
144  #23685
145  // any team member upload?
146  if (!$a_submission->getLastSubmission()) {
147  $link = $gui->link(
148  $lng->txt("exc_delete_team"),
149  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "confirmDeleteTeam")
150  )->emphasised();
151  $team .= " " . $link->render();
152  }
153  $link = $gui->link(
154  $lng->txt("exc_manage_team"),
155  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "submissionScreenTeam")
156  )->emphasised();
157  } else {
158  $link = $gui->link(
159  $lng->txt("exc_team_log"),
160  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "submissionScreenTeamLog")
161  )->emphasised();
162  }
163  $team .= "<br><br>" . $link->render();
164 
165  $a_info->addProperty($lng->txt("exc_team_members"), $team);
166  } else {
167  //if($a_submission->getAssignment()->beforeDeadline()) // this was "for all users"
168  if (!$state->hasSubmissionEnded()) { // this is for current user/team -> no team creation, if no submission possible
169  if (!$a_submission->hasSubmitted()) {
170  $team_info = $lng->txt("exc_no_team_yet_notice");
171  } else {
172  $team_info = '<span class="warning">' . $lng->txt("exc_no_team_yet_notice") . '</span>';
173  }
174 
175  if (!$a_submission->getAssignment()->getTeamTutor()) {
176  $button = $gui->button(
177  $lng->txt("exc_create_team"),
178  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "createTeam")
179  )->primary();
180 
181  $team_info .= " " . $button->render();
182 
183  $team_info .= '<div class="ilFormInfo">' . $lng->txt("exc_no_team_yet_info") . '</div>';
184  } else {
185  $team_info .= '<div class="ilFormInfo">' . $lng->txt("exc_no_team_yet_info_tutor") . '</div>';
186  }
187  } else {
188  $team_info = '<span class="warning">' . $lng->txt("exc_create_team_times_up_warning") . '</span>';
189  }
190 
191  $a_info->addProperty($lng->txt("exc_team_members"), $team_info);
192  }
193  }
194 
195  public function buildSubmissionPropertiesAndActions(\ILIAS\Exercise\Assignment\PropertyAndActionBuilderUI $builder): void
196  {
197  $submission = $this->submission;
198  $f = $this->gui->ui()->factory();
199  $ilCtrl = $this->ctrl;
200  $lng = $this->lng;
201 
202  if (!$submission->getAssignment()->hasTeam()) {
203  return;
204  }
205 
206  $state = $this->domain->assignment()->state($submission->getAssignment()->getId(), $submission->getUserId());
207 
208  $team_members = $submission->getTeam()->getMembers();
209  if ($team_members !== []) { // we have a team
210  $team = array();
211  foreach ($team_members as $member_id) {
212  //$team[] = ilObjUser::_lookupFullname($member_id);
213  $team[] = ilUserUtil::getNamePresentation($member_id, false, false, "", false);
214  }
215  $team = implode("; ", $team);
216 
217  if (!$submission->getAssignment()->getTeamTutor()) {
218  #23685
219  // any team member upload?
220  if (!$submission->getLastSubmission() && !$state->hasSubmissionEnded()) {
221  $button = $f->button()->standard(
222  $this->lng->txt("exc_delete_team"),
223  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "confirmDeleteTeam")
224  );
225  $builder->addAction(
226  $builder::SEC_TEAM,
227  $button
228  );
229  }
230  $button = $f->button()->standard(
231  $this->lng->txt("exc_manage_team"),
232  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "submissionScreenTeam")
233  );
234  $builder->addAction(
235  $builder::SEC_TEAM,
236  $button
237  );
238  } else {
239  $button = $f->button()->standard(
240  $this->lng->txt("exc_team_log"),
241  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "submissionScreenTeamLog")
242  );
243  $builder->addAction(
244  $builder::SEC_TEAM,
245  $button
246  );
247  }
248  $builder->addProperty(
249  $builder::SEC_TEAM,
250  $lng->txt("exc_team_members"),
251  $team
252  );
253  } else {
254  //if($a_submission->getAssignment()->beforeDeadline()) // this was "for all users"
255  if (!$state->hasSubmissionEnded()) { // this is for current user/team -> no team creation, if no submission possible
256  if (!$submission->hasSubmitted()) {
257  $team_info = $this->lng->txt("exc_no_team_yet_notice");
258  } else {
259  $team_info = '<span class="warning">' . $this->lng->txt("exc_no_team_yet_notice") . '</span>';
260  }
261 
262  if (!$submission->getAssignment()->getTeamTutor()) {
263  $button = $f->button()->primary(
264  $this->lng->txt("exc_create_team"),
265  $ilCtrl->getLinkTargetByClass(array(ilAssignmentPresentationGUI::class, "ilExSubmissionGUI", "ilExSubmissionTeamGUI"), "createTeam")
266  );
267  $builder->setMainAction(
268  $builder::SEC_TEAM,
269  $button
270  );
271  $team_info .= '<div class="ilFormInfo">' . $lng->txt("exc_no_team_yet_info") . '</div>';
272  } else {
273  $team_info .= '<div class="ilFormInfo">' . $lng->txt("exc_no_team_yet_info_tutor") . '</div>';
274  }
275  } else {
276  $team_info = $lng->txt("exc_create_team_times_up_warning");
277  }
278 
279  $builder->addProperty(
280  $builder::SEC_TEAM,
281  $lng->txt("exc_team_members"),
282  $team_info
283  );
284  }
285  }
286 
287  public function returnToParentObject(): void
288  {
289  $this->ctrl->returnToParent($this);
290  }
291 
292  public static function handleTabs(): void
293  {
294  global $DIC;
295 
296  $ilTabs = $DIC->tabs();
297  $ilCtrl = $DIC->ctrl();
298  $lng = $DIC->language();
299 
300  $ilTabs->addTab(
301  "team",
302  $lng->txt("exc_team"),
303  $ilCtrl->getLinkTargetByClass("ilExSubmissionTeamGUI", "submissionScreenTeam")
304  );
305 
306  $ilTabs->addTab(
307  "log",
308  $lng->txt("exc_team_log"),
309  $ilCtrl->getLinkTargetByClass("ilExSubmissionTeamGUI", "submissionScreenTeamLog")
310  );
311  }
312 
313  protected function canEditTeam(): bool
314  {
315  return (($this->submission->canSubmit() &&
316  !$this->submission->getAssignment()->getTeamTutor()) ||
317  $this->submission->isTutor());
318  }
319 
323  public function submissionScreenTeamObject(): void
324  {
325  $ilToolbar = $this->toolbar;
326 
327  // #13414
328  $read_only = !$this->canEditTeam();
329 
330  if ($this->submission->getAssignment()->afterDeadlineStrict(false)) {
331  $this->tpl->setOnScreenMessage('info', $this->lng->txt("exercise_time_over"));
332  } elseif (!$read_only) {
333  $add_search = $this->submission->isTutor();
334  // add member
336  $this,
337  $ilToolbar,
338  array(
339  'auto_complete_name' => $this->lng->txt('user'),
340  'submit_name' => $this->lng->txt('add'),
341  'add_search' => $add_search,
342  'add_from_container' => $this->exercise->getRefId()
343  )
344  );
345  } elseif ($this->submission->getAssignment()->getTeamTutor()) {
346  $this->tpl->setOnScreenMessage('info', $this->lng->txt("exc_no_team_yet_info_tutor"));
347  }
348 
349  $tbl = new ilExAssignmentTeamTableGUI(
350  $this,
351  "submissionScreenTeam",
353  $this->exercise->getRefId(),
354  $this->team,
355  $read_only
356  );
357 
358  $this->tpl->setContent($tbl->getHTML());
359  }
360 
364  public function addTeamMemberActionObject(
365  array $a_user_ids = array()
366  ): void {
367  if (!$this->canEditTeam()) {
368  $this->ctrl->redirect($this, "submissionScreenTeam");
369  }
370 
371  if ($a_user_ids === []) {
372  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("no_checkbox"));
373  return;
374  }
375 
376  $new_users = [];
377 
378  foreach ($a_user_ids as $user_id) {
379  if ($this->team->addTeamMember($user_id, $this->exercise->getRefId())) {
380  $new_users[] = $user_id;
381 
382  // #14277
383  if (!$this->exercise->members_obj->isAssigned($user_id)) {
384  $this->exercise->members_obj->assignMember($user_id);
385  }
386  } else {
387  // #11959
388  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("exc_members_already_assigned_team"), true);
389  }
390  }
391 
392  if ($new_users !== []) {
393  // re-evaluate complete team, as new member could have already submitted
394  $this->exercise->processExerciseStatus(
395  $this->assignment,
396  $this->team->getMembers(),
397  $this->submission->hasSubmitted(),
398  $this->submission->validatePeerReviews()
399  );
400  // :TODO: notification?
401  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"), true);
402  }
403 
404  $this->ctrl->redirect($this, "submissionScreenTeam");
405  }
406 
410  public function confirmDeleteTeamObject(): void
411  {
412  $this->confirmRemoveTeamMemberObject(true);
413  }
414 
419  bool $a_full_delete = false
420  ): void {
421  $ilUser = $this->user;
422  $tpl = $this->tpl;
423 
424  if (!$this->submission->isTutor()) {
425  $ids = $a_full_delete ? $this->team->getMembers() : $this->requested_team_ids;
426 
427  if ([] === $ids && !$this->canEditTeam()) {
428  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("select_one"), true);
429  $this->ctrl->redirect($this, "submissionScreenTeam");
430  }
431  } else {
433  if ([] === $ids) {
434  $this->returnToParentObject();
435  }
436  }
437 
438  $members = $this->team->getMembers();
439  if (count($members) <= count($ids)) {
440  if (count($members) == 1 && $members[0] == $ilUser->getId()) {
441  // direct team deletion - no confirmation
442  $this->removeTeamMemberObject($a_full_delete);
443  return;
444  } else {
445  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("exc_team_at_least_one"), true);
446  $this->ctrl->redirect($this, "submissionScreenTeam");
447  }
448  }
449 
450  $cgui = new ilConfirmationGUI();
451  $cgui->setFormAction($this->ctrl->getFormAction($this));
452  $cgui->setHeaderText($this->lng->txt("exc_team_member_remove_sure"));
453  $cgui->setConfirm($this->lng->txt("remove"), "removeTeamMember");
454  $cgui->setCancel($this->lng->txt("cancel"), $this->submission->isTutor()
455  ? "returnToParent"
456  : "submissionScreenTeam");
457 
458  $subs = $this->domain->submission($this->assignment->getId())
459  ->getSubmissionsOfUser($this->submission->getUserId());
460 
461  foreach ($ids as $id) {
462  $details = array();
463  foreach ($subs as $sub) {
464  if ($sub->getUserId() === $id) {
465  $details[] = $sub->getTitle();
466  }
467  }
468  $uname = ilUserUtil::getNamePresentation($id);
469  if ($details !== []) {
470  $uname .= ": " . implode(", ", $details);
471  }
472  $cgui->addItem("id[]", $id, $uname);
473  }
474 
475  $tpl->setContent($cgui->getHTML());
476  }
477 
481  public function removeTeamMemberObject(
482  bool $a_full_delete = false
483  ): void {
484  $ilUser = $this->user;
485 
486  $cancel_cmd = $this->submission->isTutor()
487  ? "returnToParent"
488  : "submissionScreenTeam";
489 
490  $ids = [];
491  if ($a_full_delete) {
492  $ids = $this->team->getMembers();
493  } else {
495  }
496  $ids = array_filter(array_map('intval', $ids));
497 
498  if ([] === $ids && !$this->canEditTeam()) {
499  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("select_one"), true);
500  $this->ctrl->redirect($this, $cancel_cmd);
501  }
502 
503  $team_deleted = $a_full_delete;
504  if (!$team_deleted) {
505  $members = $this->team->getMembers();
506  if (count($members) <= count($ids)) {
507  if (count($members) == 1 && $members[0] == $ilUser->getId()) {
508  $team_deleted = true;
509  } else {
510  $this->tpl->setOnScreenMessage('failure', $this->lng->txt("exc_team_at_least_one"), true);
511  $this->ctrl->redirect($this, $cancel_cmd);
512  }
513  }
514  }
515 
516  foreach ($ids as $user_id) {
517  $this->team->removeTeamMember($user_id, $this->exercise->getRefId());
518  }
519 
520  // reset ex team members, as any submission is not valid without team
521  $this->exercise->processExerciseStatus(
522  $this->assignment,
523  $ids,
524  false
525  );
526 
527  if (!$team_deleted) {
528  // re-evaluate complete team, as removed member might have had submitted
529  $this->exercise->processExerciseStatus(
530  $this->assignment,
531  $this->team->getMembers(),
532  $this->submission->hasSubmitted(),
533  $this->submission->validatePeerReviews()
534  );
535  }
536 
537  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"), true);
538  if (!$team_deleted) {
539  $this->ctrl->redirect($this, $cancel_cmd);
540  } else {
541  $this->ctrl->redirect($this, "returnToParent");
542  }
543  }
544 
545  public function submissionScreenTeamLogObject(): void
546  {
547  $this->tabs_gui->activateTab("log");
548 
550  $this,
551  "submissionScreenTeamLog",
552  $this->team
553  );
554 
555  $this->tpl->setContent($tbl->getHTML());
556  }
557 
558  public function createSingleMemberTeamObject(): void
559  {
561  $this->assignment->getId(),
562  $this->submission->getUserId(),
563  true
564  );
565  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"), true);
566  $this->returnToParentObject();
567  }
568 
569  public function showTeamLogObject(): void
570  {
571  $tbl = new ilExAssignmentTeamLogTableGUI($this, "showTeamLog", $this->team);
572  $this->tpl->setContent($tbl->getHTML());
573  }
574 
578  public function getAdoptForm(): ilPropertyFormGUI
579  {
580  $ctrl = $this->ctrl;
581  $lng = $this->lng;
582  $ilUser = $this->user;
583 
584  $form = new ilPropertyFormGUI();
585  $form->setTitle($lng->txt("exc_team_assignment_adopt_user"));
586  $form->setFormAction($ctrl->getFormAction($this, "createAdoptedTeam"));
587 
588  $teams = new ilRadioGroupInputGUI($lng->txt("exc_assignment"), "ass_adpt");
589  $teams->setValue(-1);
590 
591  $teams->addOption(new ilRadioOption($lng->txt("exc_team_assignment_adopt_none_user"), -1));
592 
593  $current_map = ilExAssignmentTeam::getAssignmentTeamMap($this->assignment->getId());
594 
595  $options = ilExAssignmentTeam::getAdoptableTeamAssignments($this->assignment->getExerciseId(), $this->assignment->getId(), $ilUser->getId());
596  foreach ($options as $id => $item) {
597  $members = array();
598  $free = false;
599  foreach ($item["user_team"] as $user_id) {
600  $members[$user_id] = ilUserUtil::getNamePresentation($user_id);
601 
602  if (array_key_exists($user_id, $current_map)) {
603  $members[$user_id] .= " (" . $lng->txt("exc_team_assignment_adopt_already_assigned") . ")";
604  } else {
605  $free = true;
606  }
607  }
608  asort($members);
609  $members = implode("<br />", $members);
610  $option = new ilRadioOption($item["title"], $id);
611  $option->setInfo($members);
612  if (!$free) {
613  $option->setDisabled(true);
614  }
615  $teams->addOption($option);
616  }
617 
618  $form->addItem($teams);
619 
620  $form->addCommandButton("createAdoptedTeam", $lng->txt("save"));
621  $form->addCommandButton("returnToParent", $lng->txt("cancel"));
622 
623  return $form;
624  }
625 
626  public function createTeamObject(): void
627  {
628  $ilCtrl = $this->ctrl;
629  $ilUser = $this->user;
630  $tpl = $this->tpl;
631 
632  if ($this->submission->canSubmit()) {
633  $options = ilExAssignmentTeam::getAdoptableTeamAssignments($this->assignment->getExerciseId(), $this->assignment->getId(), $ilUser->getId());
634  if ($options !== []) {
635  $form = $this->getAdoptForm();
636  $tpl->setContent($form->getHTML());
637  return;
638  }
639 
640  ilExAssignmentTeam::getTeamId($this->assignment->getId(), $ilUser->getId(), true);
641 
642  // #18046
643  if (!$this->exercise->members_obj->isAssigned($ilUser->getId())) {
644  $this->exercise->members_obj->assignMember($ilUser->getId());
645  }
646 
647  $this->tpl->setOnScreenMessage('success', $this->lng->txt("settings_saved"), true);
648  }
649 
650  $ilCtrl->redirect($this, "returnToParent");
651  }
652 
656  public function createAdoptedTeamObject(): void
657  {
658  $ilCtrl = $this->ctrl;
659  $ilUser = $this->user;
660  $lng = $this->lng;
661 
662  $form = $this->getAdoptForm();
663  $form->checkInput();
664  if ($this->submission->canSubmit()) {
665  $src_ass_id = $form->getInput("ass_adpt");
666  if ($src_ass_id > 0) {
667  ilExAssignmentTeam::adoptTeams($src_ass_id, $this->assignment->getId(), $ilUser->getId(), $this->exercise->getRefId());
668  } else {
669  ilExAssignmentTeam::getTeamId($this->assignment->getId(), $ilUser->getId(), true);
670  }
671 
672  $this->tpl->setOnScreenMessage('success', $lng->txt("settings_saved"), true);
673  }
674 
675  $ilCtrl->redirect($this, "returnToParent");
676  }
677 
682  public function addUserFromAutoCompleteObject(): void
683  {
684  $user_login = $this->request->getUserLogin();
685  if ($user_login == "") {
686  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('msg_no_search_string'));
688  return;
689  }
690 
691  $users = explode(',', $user_login);
692 
693  $user_ids = array();
694  foreach ($users as $user) {
696 
697  if (!$user_id) {
698  $this->tpl->setOnScreenMessage('failure', $this->lng->txt('user_not_known'));
700  return;
701  }
702 
703  $user_ids[] = $user_id;
704  }
705 
706  $this->addTeamMemberActionObject($user_ids);
707  }
708 }
static getAdoptableTeamAssignments(int $a_exercise_id, ?int $a_exclude_ass_id=null, ?int $a_user_id=null)
ILIAS Exercise InternalGUIService $gui
This class represents an option in a radio group.
getFormAction(object $a_gui_obj, ?string $a_fallback_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
buildSubmissionPropertiesAndActions(\ILIAS\Exercise\Assignment\PropertyAndActionBuilderUI $builder)
Exercise assignment.
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...
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...
ILIAS Exercise InternalDomainService $domain
Interface Observer Contains several chained tasks and infos about them.
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
removeTeamMemberObject(bool $a_full_delete=false)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupId($a_user_str)
setContent(string $a_html)
Sets content for standard template.
addTeamMemberActionObject(array $a_user_ids=array())
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Class ilObjExercise.
getNextClass($a_gui_class=null)
This class represents a property in a property form.
submissionScreenTeamObject()
Displays a form which allows members to manage team uploads.
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:
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
global $DIC
Definition: shib_login.php:22
static getInstanceByIds(int $a_ass_id, int $a_user_id=0)
getLastSubmission()
TODO -> get rid of getTableUserWhere and move to repository class Get the date of the last submission...
static getTeamId(int $a_assignment_id, int $a_user_id, bool $a_create_on_demand=false)
addUserFromAutoCompleteObject()
Add user as member.
static getAssignmentTeamMap(int $a_ass_id)
ilGlobalTemplateInterface $tpl
confirmRemoveTeamMemberObject(bool $a_full_delete=false)
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt(&#39;user&#39;), auto_complete_size = 15, user_type = array(ilCoursePar...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
Exercise submission //TODO: This class has many static methods related to delivered "files"...
static adoptTeams(int $a_source_ass_id, int $a_target_ass_id, ?int $a_user_id=null, ?int $a_exc_ref_id=null)
Exercise gui request wrapper.