54 $this->
toolbar = $DIC->toolbar();
55 $this->
user = $DIC->user();
56 $ilCtrl = $DIC->ctrl();
57 $ilTabs = $DIC->tabs();
58 $lng = $DIC->language();
61 $this->exercise = $a_exercise;
62 $this->submission = $a_submission;
66 $this->
ctrl = $ilCtrl;
67 $this->tabs_gui = $ilTabs;
71 $this->request = $DIC->exercise()->internal()->gui()->request();
72 $this->requested_team_ids = $this->request->getTeamIds();
83 $cmd = $ilCtrl->getCmd(
"submissionScreenTeam");
85 if (!$this->assignment->hasTeam() ||
86 !$this->submission->canView()) {
89 $this->team = $this->submission->getTeam();
91 if (!$this->submission->isTutor()) {
93 $this->tabs_gui->activateTab(
"team");
97 case 'ilrepositorysearchgui':
98 $this->
ctrl->setReturn($this,
'submissionScreenTeam');
100 if (!$this->submission->isTutor()) {
103 $rep_search->setTitle($this->
lng->txt(
"exc_team_member_add"));
104 $rep_search->setCallback($this,
'addTeamMemberActionObject');
105 $this->
ctrl->forwardCommand($rep_search);
109 $this->{$cmd .
"Object"}();
120 $lng = $DIC->language();
121 $ilCtrl = $DIC->ctrl();
129 $team_members = $a_submission->
getTeam()->getMembers();
130 if ($team_members !== []) {
132 foreach ($team_members as $member_id) {
136 $team = implode(
"; ", $team);
143 $button->setCaption(
"exc_delete_team");
144 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTeamGUI"),
"confirmDeleteTeam"));
145 $team .=
" " . $button->render();
148 $button->setCaption(
"exc_manage_team");
149 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTeamGUI"),
"submissionScreenTeam"));
152 $button->setCaption(
"exc_team_log");
153 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTeamGUI"),
"submissionScreenTeamLog"));
155 $team .=
"<br><br>" . $button->render();
160 if (!$state->hasSubmissionEnded()) {
162 $team_info = $lng->
txt(
"exc_no_team_yet_notice");
164 $team_info =
'<span class="warning">' . $lng->
txt(
"exc_no_team_yet_notice") .
'</span>';
169 $button->setPrimary(
true);
170 $button->setCaption(
"exc_create_team");
171 $button->setUrl($ilCtrl->getLinkTargetByClass(array(
"ilExSubmissionGUI",
"ilExSubmissionTeamGUI"),
"createTeam"));
172 $team_info .=
" " . $button->render();
174 $team_info .=
'<div class="ilFormInfo">' . $lng->
txt(
"exc_no_team_yet_info") .
'</div>';
176 $team_info .=
'<div class="ilFormInfo">' . $lng->
txt(
"exc_no_team_yet_info_tutor") .
'</div>';
179 $team_info = $lng->
txt(
"exc_create_team_times_up_warning");
188 $this->
ctrl->returnToParent($this);
195 $ilTabs = $DIC->tabs();
196 $ilCtrl = $DIC->ctrl();
197 $lng = $DIC->language();
201 $lng->
txt(
"exc_team"),
202 $ilCtrl->getLinkTargetByClass(
"ilExSubmissionTeamGUI",
"submissionScreenTeam")
207 $lng->
txt(
"exc_team_log"),
208 $ilCtrl->getLinkTargetByClass(
"ilExSubmissionTeamGUI",
"submissionScreenTeamLog")
214 return (($this->submission->canSubmit() &&
215 !$this->submission->getAssignment()->getTeamTutor()) ||
216 $this->submission->isTutor());
229 if ($this->submission->getAssignment()->afterDeadlineStrict(
false)) {
230 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"exercise_time_over"));
231 } elseif (!$read_only) {
232 $add_search = $this->submission->isTutor();
238 'auto_complete_name' => $this->
lng->txt(
'user'),
239 'submit_name' => $this->
lng->txt(
'add'),
240 'add_search' => $add_search,
241 'add_from_container' => $this->exercise->getRefId()
244 } elseif ($this->submission->getAssignment()->getTeamTutor()) {
245 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
"exc_no_team_yet_info_tutor"));
250 "submissionScreenTeam",
252 $this->exercise->getRefId(),
257 $this->tpl->setContent($tbl->getHTML());
264 array $a_user_ids = array()
267 $this->
ctrl->redirect($this,
"submissionScreenTeam");
270 if ($a_user_ids === []) {
271 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"no_checkbox"));
277 foreach ($a_user_ids as $user_id) {
278 if ($this->team->addTeamMember($user_id, $this->exercise->getRefId())) {
279 $new_users[] = $user_id;
282 if (!$this->exercise->members_obj->isAssigned($user_id)) {
283 $this->exercise->members_obj->assignMember($user_id);
287 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exc_members_already_assigned_team"),
true);
291 if ($new_users !== []) {
293 $this->exercise->processExerciseStatus(
295 $this->team->getMembers(),
296 $this->submission->hasSubmitted(),
297 $this->submission->validatePeerReviews()
300 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
303 $this->
ctrl->redirect($this,
"submissionScreenTeam");
318 bool $a_full_delete =
false 323 if (!$this->submission->isTutor()) {
327 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
328 $this->
ctrl->redirect($this,
"submissionScreenTeam");
337 $members = $this->team->getMembers();
338 if (count($members) <= count($ids)) {
339 if (count($members) == 1 && $members[0] ==
$ilUser->getId()) {
344 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exc_team_at_least_one"),
true);
345 $this->
ctrl->redirect($this,
"submissionScreenTeam");
350 $cgui->setFormAction($this->
ctrl->getFormAction($this));
351 $cgui->setHeaderText($this->
lng->txt(
"exc_team_member_remove_sure"));
352 $cgui->setConfirm($this->
lng->txt(
"remove"),
"removeTeamMember");
353 $cgui->setCancel($this->
lng->txt(
"cancel"), $this->submission->isTutor()
355 :
"submissionScreenTeam");
357 $files = $this->submission->getFiles();
359 foreach ($ids as
$id) {
361 foreach ($files as $file) {
362 if ($file[
"owner_id"] == $id) {
368 $uname .=
": " . implode(
", ",
$details);
370 $cgui->addItem(
"id[]", $id, $uname);
380 bool $a_full_delete =
false 384 $cancel_cmd = $this->submission->isTutor()
386 :
"submissionScreenTeam";
389 if ($a_full_delete) {
390 $ids = $this->team->getMembers();
394 $ids = array_filter(array_map(
'intval', $ids));
397 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"select_one"),
true);
398 $this->
ctrl->redirect($this, $cancel_cmd);
401 $team_deleted = $a_full_delete;
402 if (!$team_deleted) {
403 $members = $this->team->getMembers();
404 if (count($members) <= count($ids)) {
405 if (count($members) == 1 && $members[0] ==
$ilUser->getId()) {
406 $team_deleted =
true;
408 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
"exc_team_at_least_one"),
true);
409 $this->
ctrl->redirect($this, $cancel_cmd);
414 foreach ($ids as $user_id) {
415 $this->team->removeTeamMember($user_id, $this->exercise->getRefId());
419 $this->exercise->processExerciseStatus(
425 if (!$team_deleted) {
427 $this->exercise->processExerciseStatus(
429 $this->team->getMembers(),
430 $this->submission->hasSubmitted(),
431 $this->submission->validatePeerReviews()
435 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
436 if (!$team_deleted) {
437 $this->
ctrl->redirect($this, $cancel_cmd);
439 $this->
ctrl->redirect($this,
"returnToParent");
445 $this->tabs_gui->activateTab(
"log");
449 "submissionScreenTeamLog",
453 $this->tpl->setContent($tbl->getHTML());
459 $this->assignment->getId(),
460 $this->submission->getUserId(),
463 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
470 $this->tpl->setContent($tbl->getHTML());
483 $form->setTitle($lng->
txt(
"exc_team_assignment_adopt_user"));
484 $form->setFormAction($ctrl->
getFormAction($this,
"createAdoptedTeam"));
489 $teams->addOption(
new ilRadioOption($lng->
txt(
"exc_team_assignment_adopt_none_user"), -1));
494 foreach ($options as
$id => $item) {
497 foreach ($item[
"user_team"] as $user_id) {
500 if (array_key_exists($user_id, $current_map)) {
501 $members[$user_id] .=
" (" . $lng->
txt(
"exc_team_assignment_adopt_already_assigned") .
")";
507 $members = implode(
"<br />", $members);
509 $option->setInfo($members);
511 $option->setDisabled(
true);
513 $teams->addOption($option);
516 $form->addItem($teams);
518 $form->addCommandButton(
"createAdoptedTeam", $lng->
txt(
"save"));
519 $form->addCommandButton(
"returnToParent", $lng->
txt(
"cancel"));
530 if ($this->submission->canSubmit()) {
532 if ($options !== []) {
541 if (!$this->exercise->members_obj->isAssigned(
$ilUser->getId())) {
542 $this->exercise->members_obj->assignMember(
$ilUser->getId());
545 $this->tpl->setOnScreenMessage(
'success', $this->
lng->txt(
"settings_saved"),
true);
548 $ilCtrl->redirect($this,
"returnToParent");
562 if ($this->submission->canSubmit()) {
563 $src_ass_id = $form->getInput(
"ass_adpt");
564 if ($src_ass_id > 0) {
570 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"settings_saved"),
true);
573 $ilCtrl->redirect($this,
"returnToParent");
582 $user_login = $this->request->getUserLogin();
583 if ($user_login ==
"") {
584 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'msg_no_search_string'));
589 $users = explode(
',', $user_login);
592 foreach ($users as $user) {
596 $this->tpl->setOnScreenMessage(
'failure', $this->
lng->txt(
'user_not_known'));
601 $user_ids[] = $user_id;
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
array $requested_team_ids
createSingleMemberTeamObject()
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...
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...
getAdoptForm()
Get Adopt form.
const PRIVACY_MODE_RESPECT_USER_SETTING
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 getAdoptableTeamAssignments(int $a_exercise_id, int $a_exclude_ass_id=null, int $a_user_id=null)
static _lookupId($a_user_str)
addTeamMemberActionObject(array $a_user_ids=array())
ilExSubmission $submission
submissionScreenTeamLogObject()
getNextClass($a_gui_class=null)
ilExAssignment $assignment
submissionScreenTeamObject()
Displays a form which allows members to manage team uploads.
setContent(string $a_html)
Sets content for standard template.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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 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...
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)
confirmDeleteTeamObject()
__construct(Container $dic, ilPlugin $plugin)
static getOverviewContent(ilInfoScreenGUI $a_info, ilExSubmission $a_submission)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
static adoptTeams(int $a_source_ass_id, int $a_target_ass_id, int $a_user_id=null, int $a_exc_ref_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getFormAction(object $a_gui_obj, string $a_fallback_cmd=null, string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
Exercise gui request wrapper.
createAdoptedTeamObject()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...