ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
ilIndividualAssessmentMembersGUI Class Reference

For the purpose of streamlining the grading and learning-process status definition outside of tests, SCORM courses e.t.c. More...

+ Collaboration diagram for ilIndividualAssessmentMembersGUI:

Public Member Functions

 __construct ($a_parent_gui, $a_ref_id)
 
 executeCommand ()
 
 addUsersFromSearch ($user_ids)
 
 addUsers (array $user_ids)
 Add users to corresponding iass-object. More...
 
 removeUser ()
 Remove users from corresponding iass-object. More...
 

Protected Member Functions

 addedUsers ()
 
 view ()
 
 removeUserConfirmation ()
 

Protected Attributes

 $ctrl
 
 $parent_gui
 
 $ref_id
 
 $tpl
 
 $lng
 

Detailed Description

For the purpose of streamlining the grading and learning-process status definition outside of tests, SCORM courses e.t.c.

the IndividualAssessment is used. It caries a LPStatus, which is set Individually.

Author
Denis Klöpfer denis.nosp@m..klo.nosp@m.epfer.nosp@m.@con.nosp@m.cepts.nosp@m.-and.nosp@m.-trai.nosp@m.ning.nosp@m..de

ilIndividualAssessmentMembersGUI: ilRepositorySearchGUI ilIndividualAssessmentMembersGUI: ilIndividualAssessmentMemberGUI

Definition at line 14 of file class.ilIndividualAssessmentMembersGUI.php.

Constructor & Destructor Documentation

◆ __construct()

ilIndividualAssessmentMembersGUI::__construct (   $a_parent_gui,
  $a_ref_id 
)

Definition at line 22 of file class.ilIndividualAssessmentMembersGUI.php.

References $DIC.

23  {
24  global $DIC;
25  $this->ctrl = $DIC['ilCtrl'];
26  $this->parent_gui = $a_parent_gui;
27  $this->object = $a_parent_gui->object;
28  $this->ref_id = $a_ref_id;
29  $this->tpl = $DIC['tpl'];
30  $this->lng = $DIC['lng'];
31  $this->toolbar = $DIC['ilToolbar'];
32  $this->iass_access = $this->object->accessHandler();
33  }
global $DIC
Definition: saml.php:7

Member Function Documentation

◆ addedUsers()

ilIndividualAssessmentMembersGUI::addedUsers ( )
protected

Definition at line 67 of file class.ilIndividualAssessmentMembersGUI.php.

References $_GET, ilUtil\sendFailure(), ilUtil\sendSuccess(), and view().

68  {
69  if (!$_GET['failure']) {
70  ilUtil::sendSuccess($this->lng->txt('iass_add_user_success'));
71  } else {
72  ilUtil::sendFailure($this->lng->txt('iass_add_user_failure'));
73  }
74  $this->view();
75  }
static sendSuccess($a_info="", $a_keep=false)
Send Success Message to Screen.
$_GET["client_id"]
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
+ Here is the call graph for this function:

◆ addUsers()

ilIndividualAssessmentMembersGUI::addUsers ( array  $user_ids)

Add users to corresponding iass-object.

To be used by repository search.

Parameters
int|string[]$user_ids

Definition at line 126 of file class.ilIndividualAssessmentMembersGUI.php.

References $failure, array, and ilIndividualAssessmentLPInterface\updateLPStatusByIds().

Referenced by addUsersFromSearch().

127  {
128  if (!$this->iass_access->mayEditMembers()) {
129  $this->parent_gui->handleAccessViolation();
130  }
131  $iass = $this->object;
132  $members = $iass->loadMembers();
133  $failure = null;
134  if (count($user_ids) === 0) {
135  $failure = 1;
136  }
137  foreach ($user_ids as $user_id) {
138  $user = new ilObjUser($user_id);
139  if (!$members->userAllreadyMember($user)) {
140  $members = $members->withAdditionalUser($user);
141  } else {
142  $failure = 1;
143  }
144  }
145  $members->updateStorageAndRBAC($iass->membersStorage(), $iass->accessHandler());
147  $this->ctrl->setParameter($this, 'failure', $failure);
148  $this->ctrl->redirectByClass(array(get_class($this->parent_gui),get_class($this)), 'addedUsers');
149  }
$failure
Create styles array
The data for the language used.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ addUsersFromSearch()

ilIndividualAssessmentMembersGUI::addUsersFromSearch (   $user_ids)

Definition at line 111 of file class.ilIndividualAssessmentMembersGUI.php.

References addUsers(), array, and ilUtil\sendInfo().

112  {
113  if ($user_ids && is_array($user_ids) && !empty($user_ids)) {
114  $this->addUsers($user_ids);
115  }
116 
117  ilUtil::sendInfo($this->lng->txt("search_no_selection"), true);
118  $this->ctrl->redirectByClass(array(get_class($this->parent_gui),get_class($this)), 'view');
119  }
addUsers(array $user_ids)
Add users to corresponding iass-object.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
Create styles array
The data for the language used.
+ Here is the call graph for this function:

◆ executeCommand()

ilIndividualAssessmentMembersGUI::executeCommand ( )

Definition at line 35 of file class.ilIndividualAssessmentMembersGUI.php.

36  {
37  if (!$this->iass_access->mayEditMembers()
38  && !$this->iass_access->mayGradeUser()
39  && !$this->iass_access->mayViewUser()
40  && !$this->iass_access->mayAmendGradeUser()
41  ) {
42  $this->parent_gui->handleAccessViolation();
43  }
44  $cmd = $this->ctrl->getCmd();
45  $next_class = $this->ctrl->getNextClass();
46  switch ($next_class) {
47  case "ilrepositorysearchgui":
48  require_once 'Services/Search/classes/class.ilRepositorySearchGUI.php';
49  $rep_search = new ilRepositorySearchGUI();
50  $rep_search->setCallback($this, "addUsersFromSearch");
51  $this->ctrl->forwardCommand($rep_search);
52  break;
53  case "ilindividualassessmentmembergui":
54  require_once 'Modules/IndividualAssessment/classes/class.ilIndividualAssessmentMemberGUI.php';
55  $member = new ilIndividualAssessmentMemberGUI($this, $this->parent_gui, $this->ref_id);
56  $this->ctrl->forwardCommand($member);
57  break;
58  default:
59  if (!$cmd) {
60  $cmd = 'view';
61  }
62  $this->$cmd();
63  break;
64  }
65  }
For the purpose of streamlining the grading and learning-process status definition outside of tests...

◆ removeUser()

ilIndividualAssessmentMembersGUI::removeUser ( )

Remove users from corresponding iass-object.

To be used by repository search.

Parameters
int|string[]$user_ids

Definition at line 171 of file class.ilIndividualAssessmentMembersGUI.php.

References $_POST, array, and ilIndividualAssessmentLPInterface\updateLPStatusByIds().

172  {
173  if (!$this->iass_access->mayEditMembers()) {
174  $this->parent_gui->handleAccessViolation();
175  }
176  $usr_id = $_POST['usr_id'];
177  $iass = $this->object;
178  $iass->loadMembers()
179  ->withoutPresentUser(new ilObjUser($usr_id))
180  ->updateStorageAndRBAC($iass->membersStorage(), $iass->accessHandler());
182  $this->ctrl->redirectByClass(array(get_class($this->parent_gui),get_class($this)), 'view');
183  }
Create styles array
The data for the language used.
$_POST["username"]
+ Here is the call graph for this function:

◆ removeUserConfirmation()

ilIndividualAssessmentMembersGUI::removeUserConfirmation ( )
protected

Definition at line 151 of file class.ilIndividualAssessmentMembersGUI.php.

References $_GET, and ilObjUser\_lookupFullname().

152  {
153  if (!$this->iass_access->mayEditMembers()) {
154  $this->parent_gui->handleAccessViolation();
155  }
156  include_once './Services/Utilities/classes/class.ilConfirmationGUI.php';
157  $confirm = new ilConfirmationGUI();
158  $confirm->addItem('usr_id', $_GET['usr_id'], ilObjUser::_lookupFullname($_GET['usr_id']));
159  $confirm->setHeaderText($this->lng->txt('iass_remove_user_qst'));
160  $confirm->setFormAction($this->ctrl->getFormAction($this));
161  $confirm->setConfirm($this->lng->txt('remove'), 'removeUser');
162  $confirm->setCancel($this->lng->txt('cancel'), 'view');
163  $this->tpl->setContent($confirm->getHTML());
164  }
$_GET["client_id"]
static _lookupFullname($a_user_id)
Lookup Full Name.
Confirmation screen class.
+ Here is the call graph for this function:

◆ view()

ilIndividualAssessmentMembersGUI::view ( )
protected

Definition at line 77 of file class.ilIndividualAssessmentMembersGUI.php.

References $table, array, and ilRepositorySearchGUI\fillAutoCompleteToolbar().

Referenced by addedUsers().

78  {
79  if ($this->iass_access->mayEditMembers()) {
80  require_once './Services/Search/classes/class.ilRepositorySearchGUI.php';
81 
82  $search_params = ['crs', 'grp'];
83  $container_id = $this->object->getParentContainerIdByType($this->ref_id, $search_params);
84  if ($container_id !== 0) {
86  $this,
87  $this->toolbar,
88  array(
89  'auto_complete_name' => $this->lng->txt('user'),
90  'submit_name' => $this->lng->txt('add'),
91  'add_search' => true,
92  'add_from_container' => $container_id
93  )
94  );
95  } else {
97  $this,
98  $this->toolbar,
99  array(
100  'auto_complete_name' => $this->lng->txt('user'),
101  'submit_name' => $this->lng->txt('add'),
102  'add_search' => true
103  )
104  );
105  }
106  }
108  $this->tpl->setContent($table->getHTML());
109  }
Create styles array
The data for the language used.
static fillAutoCompleteToolbar($parent_object, ilToolbarGUI $toolbar=null, $a_options=array(), $a_sticky=false)
fill toolbar with
if(empty($password)) $table
Definition: pwgen.php:24
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $ctrl

ilIndividualAssessmentMembersGUI::$ctrl
protected

Definition at line 16 of file class.ilIndividualAssessmentMembersGUI.php.

◆ $lng

ilIndividualAssessmentMembersGUI::$lng
protected

Definition at line 20 of file class.ilIndividualAssessmentMembersGUI.php.

◆ $parent_gui

ilIndividualAssessmentMembersGUI::$parent_gui
protected

Definition at line 17 of file class.ilIndividualAssessmentMembersGUI.php.

◆ $ref_id

ilIndividualAssessmentMembersGUI::$ref_id
protected

Definition at line 18 of file class.ilIndividualAssessmentMembersGUI.php.

◆ $tpl

ilIndividualAssessmentMembersGUI::$tpl
protected

Definition at line 19 of file class.ilIndividualAssessmentMembersGUI.php.


The documentation for this class was generated from the following file: