19 declare(strict_types=1);
37 protected \ilLanguage
$lng;
41 protected ArrayBasedRequestWrapper
$query;
42 protected Data\Factory
$df;
53 public function __construct(Profile\SkillProfile $profile, Access\SkillTreeAccess $tree_access_manager)
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();
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();
79 if ($this->requested_table_profile_user_ass_action ===
"removeUsers") {
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(),
91 $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
97 echo($this->ui_ren->renderAsync([
98 $this->ui_fac->modal()->interruptive(
100 empty($items) ? $this->
lng->txt(
"no_checkbox") : $this->
lng->txt(
"skmg_confirm_user_removal"),
101 $this->
ctrl->getFormActionByClass(
"ilskillprofilegui",
"removeUsers")
103 ->withAffectedItems($items)
104 ->withActionButtonLabel(empty($items) ? $this->
lng->txt(
"ok") : $this->
lng->txt(
"delete"))
109 $table = $this->ui_fac->table()
110 ->data($data_retrieval, $this->
lng->txt(
"skmg_assigned_users"), $columns)
115 ->withActions($actions)
116 ->withRequest($this->request);
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"))
135 $query_params_namespace = [
"skl_profile_user_assignment_table"];
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,
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"),
160 $data_retrieval =
new class (
167 protected Profile\SkillProfile $profile,
168 protected Profile\SkillProfileManager $profile_manager
172 public function getRows(
174 array $visible_column_ids,
178 ?array $additional_parameters
180 $records = $this->getRecords($range, $order);
181 foreach ($records as $idx => $record) {
182 $row_id = $record[
"id"];
184 yield $row_builder->buildDataRow((
string) $row_id, $record);
188 public function getTotalRowCount(
190 ?array $additional_parameters
192 return count($this->getRecords());
197 $assignments = $this->profile_manager->getAssignments($this->
profile->getId());
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()
213 $records = $this->orderRecords($records, $order);
217 $records = $this->limitRecords($records, $range);
224 return $data_retrieval;
240 $ass_title = $this->
lng->txt(
"not_available");
ArrayBasedRequestWrapper $query
string $requested_table_profile_user_ass_action
Profile SkillProfile $profile
Access SkillTreeAccess $tree_access_manager
getAssignmentTitle(int $obj_id)
Both the subject and the direction need to be specified when expressing an order. ...
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)
Service SkillAdminGUIRequest $admin_gui_request
ServerRequestInterface $request
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
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.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
array $requested_table_profile_user_ass_ids
Profile SkillProfileManager $profile_manager