19 declare(strict_types=1);
37 protected \ilLanguage
$lng;
41 protected ArrayBasedRequestWrapper
$query;
42 protected Data\Factory
$df;
56 public function __construct(
int $ref_id,
int $base_skill_id,
int $tref_id,
int $requested_level_id)
60 $this->
ctrl = $DIC->ctrl();
61 $this->
lng = $DIC->language();
62 $this->ui_fac = $DIC->ui()->factory();
63 $this->ui_ren = $DIC->ui()->renderer();
64 $this->request = $DIC->http()->request();
65 $this->query = $DIC->http()->wrapper()->query();
66 $this->df =
new Data\Factory();
67 $this->tree = $DIC->repositoryTree();
68 $this->tree_access_manager = $DIC->skills()->internal()->manager()->getTreeAccessManager($ref_id);
69 $this->resource_manager = $DIC->skills()->internal()->manager()->getResourceManager();
70 $this->admin_gui_request = $DIC->skills()->internal()->gui()->admin_request();
71 $this->requested_table_action = $this->admin_gui_request->getTableLevelResourcesAction();
72 $this->requested_table_rep_ref_ids = $this->admin_gui_request->getTableRepoRefIds();
84 if ($this->requested_table_action ===
"removeResources") {
86 foreach ($this->requested_table_rep_ref_ids as
$id) {
87 if ($id ===
"ALL_OBJECTS") {
88 $resources = $this->resource_manager->getResourcesOfLevel(
91 $this->requested_level_id
96 $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
97 (
string) $resource->getRepoRefId(),
99 $this->ui_fac->image()->standard(
101 $this->
lng->txt(
"icon") .
" " . $this->
lng->txt(
"obj_" . $obj_type)
108 $items[] = $this->ui_fac->modal()->interruptiveItem()->standard(
111 $this->ui_fac->image()->standard(
113 $this->
lng->txt(
"icon") .
" " . $this->
lng->txt(
"obj_" . $obj_type)
118 echo($this->ui_ren->renderAsync([
119 $this->ui_fac->modal()->interruptive(
121 empty($items) ? $this->
lng->txt(
"no_checkbox") : $this->
lng->txt(
"skmg_confirm_level_resources_removal"),
122 $this->
ctrl->getFormActionByClass(
"ilbasicskillgui",
"removeLevelResources")
124 ->withAffectedItems($items)
125 ->withActionButtonLabel(empty($items) ? $this->
lng->txt(
"ok") : $this->
lng->txt(
"delete"))
130 $table = $this->ui_fac->table()
131 ->data($data_retrieval, $this->
lng->txt(
"skmg_suggested_resources"), $columns)
134 $this->base_skill_id .
"_" .
135 $this->tref_id .
"_" .
136 $this->requested_level_id
138 ->withActions($actions)
139 ->withRequest($this->request);
147 "type" => $this->ui_fac->table()->column()->statusIcon($this->
lng->txt(
"type"))
148 ->withIsSortable(
false),
149 "title" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"title")),
150 "path" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"path"))
151 ->withIsSortable(
false),
152 "suggested" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"skmg_suggested"))
153 ->withIsSortable(
false),
154 "lp_trigger" => $this->ui_fac->table()->column()->text($this->
lng->txt(
"skmg_lp_triggers_level"))
155 ->withIsSortable(
false),
163 $query_params_namespace = [
"skl_level_resources_table"];
165 $uri_suggested = $this->df->uri(
166 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
"ilbasicskillgui",
"saveResourcesAsSuggested")
168 $url_builder_suggested =
new UI\URLBuilder($uri_suggested);
169 list($url_builder_suggested, $action_parameter_token_suggested, $row_id_token_suggested) =
170 $url_builder_suggested->acquireParameters(
171 $query_params_namespace,
176 $uri_not_suggested = $this->df->uri(
177 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
"ilbasicskillgui",
"saveResourcesAsNotSuggested")
179 $url_builder_not_suggested =
new UI\URLBuilder($uri_not_suggested);
180 list($url_builder_not_suggested, $action_parameter_token_not_suggested, $row_id_token_not_suggested) =
181 $url_builder_not_suggested->acquireParameters(
182 $query_params_namespace,
187 $uri_trigger = $this->df->uri(
188 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
"ilbasicskillgui",
"saveResourcesAsTrigger")
190 $url_builder_trigger =
new UI\URLBuilder($uri_trigger);
191 list($url_builder_trigger, $action_parameter_token_trigger, $row_id_token_trigger) =
192 $url_builder_trigger->acquireParameters(
193 $query_params_namespace,
198 $uri_no_trigger = $this->df->uri(
199 ILIAS_HTTP_PATH .
"/" . $this->
ctrl->getLinkTargetByClass(
"ilbasicskillgui",
"saveResourcesAsNoTrigger")
201 $url_builder_no_trigger =
new UI\URLBuilder($uri_no_trigger);
202 list($url_builder_no_trigger, $action_parameter_token_no_trigger, $row_id_token_no_trigger) =
203 $url_builder_no_trigger->acquireParameters(
204 $query_params_namespace,
209 $url_builder_remove =
new UI\URLBuilder($this->df->uri($this->request->getUri()->__toString()));
210 list($url_builder_remove, $action_parameter_token_remove, $row_id_token_remove) =
211 $url_builder_remove->acquireParameters(
212 $query_params_namespace,
218 if ($this->tree_access_manager->hasManageCompetencesPermission()) {
220 "setSuggested" => $this->ui_fac->table()->action()->standard(
221 $this->
lng->txt(
"skmg_set_as_suggested"),
222 $url_builder_suggested->withParameter($action_parameter_token_suggested,
"setSuggested"),
223 $row_id_token_suggested
225 "unsetSuggested" => $this->ui_fac->table()->action()->standard(
226 $this->
lng->txt(
"skmg_set_as_no_suggested"),
227 $url_builder_not_suggested->withParameter($action_parameter_token_not_suggested,
"unsetSuggested"),
228 $row_id_token_not_suggested
230 "setTrigger" => $this->ui_fac->table()->action()->standard(
231 $this->
lng->txt(
"skmg_set_as_lp_trigger"),
232 $url_builder_trigger->withParameter($action_parameter_token_trigger,
"setTrigger"),
233 $row_id_token_trigger
235 "unsetTrigger" => $this->ui_fac->table()->action()->standard(
236 $this->
lng->txt(
"skmg_set_as_no_lp_trigger"),
237 $url_builder_no_trigger->withParameter($action_parameter_token_no_trigger,
"unsetTrigger"),
238 $row_id_token_no_trigger
240 "remove" => $this->ui_fac->table()->action()->multi(
241 $this->
lng->txt(
"remove"),
242 $url_builder_remove->withParameter($action_parameter_token_remove,
"removeResources"),
254 $data_retrieval =
new class (
271 protected Resource\SkillResourcesManager $resource_manager,
272 protected int $base_skill_id,
273 protected int $tref_id,
274 protected int $level_id
278 public function getRows(
280 array $visible_column_ids,
284 ?array $additional_parameters
286 $records = $this->getRecords($range, $order);
287 foreach ($records as $idx => $record) {
288 $row_id = (string) $record[
"rep_ref_id"];
290 yield $row_builder->buildDataRow($row_id, $record)
291 ->withDisabledAction(
"setSuggested", ($record[
"suggested"] === $this->
lng->txt(
"yes")))
292 ->withDisabledAction(
"unsetSuggested", ($record[
"suggested"] === $this->
lng->txt(
"no")))
293 ->withDisabledAction(
"setTrigger", ($record[
"lp_trigger"] === $this->
lng->txt(
"yes")))
294 ->withDisabledAction(
"setTrigger", ($record[
"lp_trigger"] === $this->
lng->txt(
"not_available")))
295 ->withDisabledAction(
"unsetTrigger", ($record[
"lp_trigger"] === $this->
lng->txt(
"no")))
296 ->withDisabledAction(
"unsetTrigger", ($record[
"lp_trigger"] === $this->
lng->txt(
"not_available")));
300 public function getTotalRowCount(
302 ?array $additional_parameters
304 return count($this->getRecords());
309 $resources = $this->resource_manager->getResourcesOfLevel(
310 $this->base_skill_id,
318 $ref_id = $resource->getRepoRefId();
322 $records[$i][
"rep_ref_id"] =
$ref_id;
324 $records[$i][
"suggested"] = $resource->getImparting()
325 ? $this->
lng->txt(
"yes")
326 : $this->
lng->txt(
"no");
329 $trigger = $this->
lng->txt(
"not_available");
330 } elseif ($resource->getTrigger()) {
331 $trigger = $this->
lng->txt(
"yes");
333 $trigger = $this->
lng->txt(
"no");
335 $records[$i][
"lp_trigger"] = $trigger;
337 $icon = $this->ui_fac->symbol()->icon()->standard(
339 $this->
lng->txt(
"icon") .
" " . $this->
lng->txt($obj_type),
342 $records[$i][
"type"] = $icon;
346 foreach (
$path as $p) {
347 if ($p[
"type"] !=
"root" && $p[
"child"] !=
$ref_id) {
348 $path_items[] = $p[
"title"];
351 $records[$i][
"path"] = implode(
" > ", $path_items);
357 $records = $this->orderRecords($records, $order);
361 $records = $this->limitRecords($records, $range);
368 return $data_retrieval;
static _getIcon(int $obj_id=0, string $size="big", string $type="", bool $offline=false)
Get icon for repository item.
static isSupportedObjectType(string $type)
Access SkillTreeAccess $tree_access_manager
Both the subject and the direction need to be specified when expressing an order. ...
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
array $requested_table_rep_ref_ids
__construct(int $ref_id, int $base_skill_id, int $tref_id, int $requested_level_id)
static _lookupTitle(int $obj_id)
This is how the factory for UI elements looks.
string $requested_table_action
Service SkillAdminGUIRequest $admin_gui_request
Resource SkillResourcesManager $resource_manager
$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...
ArrayBasedRequestWrapper $query
ServerRequestInterface $request