19 declare(strict_types=1);
37 protected \ilLanguage
$lng;
41 protected ArrayBasedRequestWrapper
$query;
42 protected Data\Factory
$df;
58 $this->
ctrl = $DIC->ctrl();
59 $this->
lng = $DIC->language();
60 $this->ui_fac = $DIC->ui()->factory();
61 $this->ui_ren = $DIC->ui()->renderer();
62 $this->request = $DIC->http()->request();
63 $this->query = $DIC->http()->wrapper()->query();
64 $this->df =
new Data\Factory();
65 $this->tree_access_manager = $DIC->skills()->internal()->manager()->getTreeAccessManager($ref_id);
66 $this->profile_manager = $DIC->skills()->internal()->manager()->getProfileManager();
67 $this->admin_gui_request = $DIC->skills()->internal()->gui()->admin_request();
68 $this->requested_table_profile_action = $this->admin_gui_request->getTableProfileAction();
69 $this->requested_table_profile_ids = $this->admin_gui_request->getTableProfileIds();
79 if ($this->requested_table_profile_action ===
"deleteProfiles") {
81 foreach ($this->requested_table_profile_ids as
$id) {
82 if ($id ===
"ALL_OBJECTS") {
83 $profiles = $this->skill_tree_id
84 ? $this->profile_manager->getProfilesForSkillTree($this->skill_tree_id)
85 : $this->profile_manager->getProfilesForAllSkillTrees();
86 foreach ($profiles as $profile) {
87 $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
88 (
string) $profile->getId(),
93 $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
95 $this->profile_manager->lookupTitle((
int) $id)
99 echo($this->ui_ren->renderAsync([
100 $this->ui_fac->modal()->interruptive(
102 empty($items) ? $this->
lng->txt(
"no_checkbox") : $this->
lng->txt(
"skmg_delete_profiles"),
103 $this->
ctrl->getFormActionByClass(
"ilskillprofilegui",
"deleteProfiles")
105 ->withAffectedItems($items)
106 ->withActionButtonLabel(empty($items) ? $this->
lng->txt(
"ok") : $this->
lng->txt(
"delete"))
111 $table = $this->ui_fac->table()
112 ->data($data_retrieval, $this->
lng->txt(
"skmg_skill_profiles"), $columns)
117 ->withActions($actions)
118 ->withRequest($this->request);
126 "title" => $this->ui_fac->table()->column()->link($this->
lng->txt(
"title")),
127 "context" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"context"))
128 ->withIsSortable(
false),
129 "users" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"users"))
130 ->withIsSortable(
false),
131 "roles" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"roles"))
132 ->withIsSortable(
false),
140 $query_params_namespace = [
"skl_profile_table"];
142 $url_builder_delete =
new UI\URLBuilder($this->df->uri($this->request->getUri()->__toString()));
143 list($url_builder_delete, $action_parameter_token_delete, $row_id_token_delete) =
144 $url_builder_delete->acquireParameters(
145 $query_params_namespace,
150 $uri_export = $this->df->uri(
151 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
"ilskillprofilegui",
"exportProfiles")
153 $url_builder_export =
new UI\URLBuilder($uri_export);
154 list($url_builder_export, $action_parameter_token_export, $row_id_token_export) =
155 $url_builder_export->acquireParameters(
156 $query_params_namespace,
162 if ($this->tree_access_manager->hasManageProfilesPermission()) {
163 $actions[
"delete"] = $this->ui_fac->table()->action()->multi(
164 $this->
lng->txt(
"delete"),
165 $url_builder_delete->withParameter($action_parameter_token_delete,
"deleteProfiles"),
169 $actions[
"export"] = $this->ui_fac->table()->action()->multi(
170 $this->
lng->txt(
"export"),
171 $url_builder_export->withParameter($action_parameter_token_export,
"exportProfiles"),
181 $data_retrieval =
new class (
192 protected int $skill_tree_id,
193 protected Profile\SkillProfileManager $skill_profile_manager,
199 public function getRows(
201 array $visible_column_ids,
205 ?array $additional_parameters
207 $records = $this->getRecords($range, $order);
208 foreach ($records as $idx => $record) {
209 $row_id = (string) $record[
"profile_id"];
211 yield $row_builder->buildDataRow($row_id, $record);
215 public function getTotalRowCount(
217 ?array $additional_parameters
219 return count($this->getRecords());
224 if ($this->skill_tree_id) {
225 $profiles = $this->skill_profile_manager->getProfilesForSkillTree($this->skill_tree_id);
227 $profiles = $this->skill_profile_manager->getProfilesForAllSkillTrees();
232 foreach ($profiles as $profile) {
233 $records[$i][
"profile_id"] = $profile->getId();
234 $this->
ctrl->setParameterByClass(
"ilskillprofilegui",
"sprof_id", $profile->getId());
235 $records[$i][
"title"] = $this->ui_fac->link()->standard(
236 $profile->getTitle(),
237 $this->
ctrl->getLinkTargetByClass(
"ilskillprofilegui",
"showLevels")
239 $this->
ctrl->clearParameterByClass(
"ilskillprofilegui",
"sprof_id");
240 $profile_ref_id = $this->skill_profile_manager->lookupRefId($profile->getId());
243 if ($profile_ref_id > 0) {
244 $records[$i][
"context"] = $this->
lng->txt(
"skmg_context_local") .
" (" . $profile_obj_title .
")";
246 $records[$i][
"context"] = $this->
lng->txt(
"skmg_context_global");
248 $records[$i][
"users"] = $this->skill_profile_manager->countUsers($profile->getId());
249 $records[$i][
"roles"] = $this->skill_profile_manager->countRoles($profile->getId());
254 $records = $this->orderRecords($records, $order);
258 $records = $this->limitRecords($records, $range);
265 return $data_retrieval;
__construct(int $ref_id, int $skill_tree_id)
Service SkillAdminGUIRequest $admin_gui_request
string $requested_table_profile_action
ServerRequestInterface $request
Both the subject and the direction need to be specified when expressing an order. ...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
Profile SkillProfileManager $profile_manager
static _lookupTitle(int $obj_id)
This is how the factory for UI elements looks.
static _lookupObjectId(int $ref_id)
Access SkillTreeAccess $tree_access_manager
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
array $requested_table_profile_ids
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ArrayBasedRequestWrapper $query
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...