ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ProfileUserAssignmentTable.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Skill\Table;
22 
23 use ILIAS\Data;
28 use ILIAS\UI;
30 
35 {
36  protected \ilCtrl $ctrl;
37  protected \ilLanguage $lng;
38  protected UI\Factory $ui_fac;
39  protected UI\Renderer $ui_ren;
41  protected ArrayBasedRequestWrapper $query;
42  protected Data\Factory $df;
43  protected Service\SkillAdminGUIRequest $admin_gui_request;
44  protected Profile\SkillProfile $profile;
45  protected Access\SkillTreeAccess $tree_access_manager;
46  protected Profile\SkillProfileManager $profile_manager;
52 
53  public function __construct(Profile\SkillProfile $profile, Access\SkillTreeAccess $tree_access_manager)
54  {
55  global $DIC;
56 
57  $this->ctrl = $DIC->ctrl();
58  $this->lng = $DIC->language();
59  $this->ui_fac = $DIC->ui()->factory();
60  $this->ui_ren = $DIC->ui()->renderer();
61  $this->request = $DIC->http()->request();
62  $this->query = $DIC->http()->wrapper()->query();
63  $this->df = new Data\Factory();
64  $this->admin_gui_request = $DIC->skills()->internal()->gui()->admin_request();
65 
66  $this->profile = $profile;
67  $this->tree_access_manager = $tree_access_manager;
68  $this->profile_manager = $DIC->skills()->internal()->manager()->getProfileManager();
69  $this->requested_table_profile_user_ass_action = $this->admin_gui_request->getTableProfileUserAssignmentAction();
70  $this->requested_table_profile_user_ass_ids = $this->admin_gui_request->getTableProfileUserAssignmentIds();
71  }
72 
73  public function getComponent(): UI\Component\Table\Data
74  {
75  $columns = $this->getColumns();
76  $actions = $this->getActions();
77  $data_retrieval = $this->getDataRetrieval();
78 
79  if ($this->requested_table_profile_user_ass_action === "removeUsers") {
80  $items = [];
81  foreach ($this->requested_table_profile_user_ass_ids as $id) {
82  if ($id === "ALL_OBJECTS") {
83  $all_assignments = $this->profile_manager->getAssignments($this->profile->getId());
84  foreach ($all_assignments as $assignment) {
85  $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
86  (string) $assignment->getId(),
87  $this->getAssignmentTitle($assignment->getId())
88  );
89  }
90  } else {
91  $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
92  $id,
93  $this->getAssignmentTitle((int) $id)
94  );
95  }
96  }
97  echo($this->ui_ren->renderAsync([
98  $this->ui_fac->modal()->interruptive(
99  "",
100  empty($items) ? $this->lng->txt("no_checkbox") : $this->lng->txt("skmg_confirm_user_removal"),
101  $this->ctrl->getFormActionByClass("ilskillprofilegui", "removeUsers")
102  )
103  ->withAffectedItems($items)
104  ->withActionButtonLabel(empty($items) ? $this->lng->txt("ok") : $this->lng->txt("delete"))
105  ]));
106  exit();
107  }
108 
109  $table = $this->ui_fac->table()
110  ->data($data_retrieval, $this->lng->txt("skmg_assigned_users"), $columns)
111  ->withId(
112  self::class . "_" .
113  $this->profile->getId()
114  )
115  ->withActions($actions)
116  ->withRequest($this->request);
117 
118  return $table;
119  }
120 
121  protected function getColumns(): array
122  {
123  $columns = [
124  "type" => $this->ui_fac->table()->column()->text($this->lng->txt("type"))
125  ->withIsSortable(false),
126  "name" => $this->ui_fac->table()->column()->text($this->lng->txt("name")),
127  "object" => $this->ui_fac->table()->column()->text($this->lng->txt("object"))
128  ];
129 
130  return $columns;
131  }
132 
133  protected function getActions(): array
134  {
135  $query_params_namespace = ["skl_profile_user_assignment_table"];
136 
137  $url_builder_delete = new UI\URLBuilder($this->df->uri($this->request->getUri()->__toString()));
138  list($url_builder_delete, $action_parameter_token_delete, $row_id_token_delete) =
139  $url_builder_delete->acquireParameters(
140  $query_params_namespace,
141  "action",
142  "ass_ids"
143  );
144 
145  $actions = [];
146  if ($this->tree_access_manager->hasManageProfilesPermission() && !$this->profile->getRefId() > 0) {
147  $actions["delete"] = $this->ui_fac->table()->action()->multi(
148  $this->lng->txt("delete"),
149  $url_builder_delete->withParameter($action_parameter_token_delete, "removeUsers"),
150  $row_id_token_delete
151  )
152  ->withAsync();
153  }
154 
155  return $actions;
156  }
157 
159  {
160  $data_retrieval = new class (
163  ) implements UI\Component\Table\DataRetrieval {
164  use TableRecords;
165 
166  public function __construct(
167  protected Profile\SkillProfile $profile,
168  protected Profile\SkillProfileManager $profile_manager
169  ) {
170  }
171 
172  public function getRows(
173  UI\Component\Table\DataRowBuilder $row_builder,
174  array $visible_column_ids,
175  Data\Range $range,
176  Data\Order $order,
177  ?array $filter_data,
178  ?array $additional_parameters
179  ): \Generator {
180  $records = $this->getRecords($range, $order);
181  foreach ($records as $idx => $record) {
182  $row_id = $record["id"];
183 
184  yield $row_builder->buildDataRow((string) $row_id, $record);
185  }
186  }
187 
188  public function getTotalRowCount(
189  ?array $filter_data,
190  ?array $additional_parameters
191  ): ?int {
192  return count($this->getRecords());
193  }
194 
195  protected function getRecords(?Data\Range $range = null, ?Data\Order $order = null): array
196  {
197  $assignments = $this->profile_manager->getAssignments($this->profile->getId());
198 
199  $records = [];
200  $i = 0;
201  foreach ($assignments as $assignment) {
202  $records[$i]["id"] = $assignment->getId();
203  $records[$i]["type"] = $assignment->getType();
204  $records[$i]["name"] = $assignment->getName();
205  $records[$i]["object"] = ($assignment instanceof Profile\SkillProfileRoleAssignment)
206  ? $assignment->getObjTitle()
207  : "";
208 
209  $i++;
210  }
211 
212  if ($order) {
213  $records = $this->orderRecords($records, $order);
214  }
215 
216  if ($range) {
217  $records = $this->limitRecords($records, $range);
218  }
219 
220  return $records;
221  }
222  };
223 
224  return $data_retrieval;
225  }
226 
227  protected function getAssignmentTitle(int $obj_id): string
228  {
229  $type = \ilObject::_lookupType($obj_id);
230  switch ($type) {
231  case "usr":
232  $ass_title = \ilUserUtil::getNamePresentation($obj_id);
233  break;
234 
235  case "role":
236  $ass_title = \ilObjRole::_lookupTitle($obj_id);
237  break;
238 
239  default:
240  $ass_title = $this->lng->txt("not_available");
241  }
242 
243  return $ass_title;
244  }
245 }
Both the subject and the direction need to be specified when expressing an order. ...
Definition: Order.php:28
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(Profile\SkillProfile $profile, Access\SkillTreeAccess $tree_access_manager)
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:
static _lookupTitle(int $obj_id)
global $DIC
Definition: shib_login.php:22
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _lookupType(int $id, bool $reference=false)
A simple class to express a naive range of whole positive numbers.
Definition: Range.php:28
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...