19 declare(strict_types=1);
50 protected \ILIAS\Data\Factory
$df;
53 protected int $id = 0;
107 $this->
ctrl = $DIC->ctrl();
108 $this->
lng = $DIC->language();
109 $this->
tabs = $DIC->tabs();
110 $this->tpl = $DIC[
"tpl"];
111 $this->
help = $DIC[
"ilHelp"];
112 $this->
toolbar = $DIC->toolbar();
113 $this->ui_fac = $DIC->ui()->factory();
114 $this->ui_ren = $DIC->ui()->renderer();
115 $this->df = new \ILIAS\Data\Factory();
116 $this->request = $DIC->http()->request();
117 $this->query = $DIC->http()->wrapper()->query();
118 $this->tree_service = $DIC->skills()->tree();
121 $this->admin_gui_request = $DIC->skills()->internal()->gui()->admin_request();
122 $this->skill_factory = $DIC->skills()->internal()->factory();
123 $this->profile_manager = $DIC->skills()->internal()->manager()->getProfileManager();
124 $this->profile_completion_manager = $DIC->skills()->internal()->manager()->getProfileCompletionManager();
125 $this->table_manager = $DIC->skills()->internal()->manager()->getTableManager();
126 $this->usage_manager = $DIC->skills()->internal()->manager()->getUsageManager();
128 $this->
ctrl->saveParameter($this, [
"sprof_id",
"local_context"]);
130 $this->requested_ref_id = $this->admin_gui_request->getRefId();
131 $this->requested_sprof_id = $this->admin_gui_request->getSkillProfileId();
132 $this->requested_profile_ids = $this->admin_gui_request->getProfileIds();
133 $this->requested_local_context = $this->admin_gui_request->getLocalContext();
134 $this->requested_cskill_id = $this->admin_gui_request->getCombinedSkillId();
135 $this->requested_level_ass_ids = $this->admin_gui_request->getAssignedLevelIds();
136 $this->requested_level_order = $this->admin_gui_request->getOrder();
137 $this->requested_user_login = $this->admin_gui_request->getUserLogin();
138 $this->requested_users = $this->admin_gui_request->getUsers();
139 $this->requested_user_ids = $this->admin_gui_request->getUserIds();
140 $this->requested_table_profile_action = $this->admin_gui_request->getTableProfileAction();
141 $this->requested_table_profile_ids = $this->admin_gui_request->getTableProfileIds();
142 $this->requested_level_id = $this->admin_gui_request->getLevelId();
144 if ($this->requested_sprof_id > 0) {
149 $this->
profile = $this->profile_manager->getProfile($this->
id);
150 if ($this->skill_tree_id == 0) {
151 $this->skill_tree_id = $this->
profile->getSkillTreeId();
154 $this->local_context =
true;
164 $cmd = $ilCtrl->getCmd(
"listProfiles");
165 $next_class = $ilCtrl->getNextClass();
166 switch ($next_class) {
167 case 'ilrepositorysearchgui':
169 $user_search->setTitle($lng->
txt(
'skmg_add_user_to_profile'));
170 $user_search->setCallback($this,
'assignUser');
171 $user_search->setRoleCallback($this,
'assignRole');
175 $ilCtrl->setReturn($this,
'showUsers');
176 $ret = $ilCtrl->forwardCommand($user_search);
180 if (in_array($cmd, array(
"listProfiles",
"create",
"edit",
"save",
"update",
181 "deleteProfiles",
"showLevels",
"assignLevel",
182 "assignLevelSelectSkill",
"updateLevelOfSelectedSkill",
183 "assignLevelToProfile",
"updateLevelOfProfile",
184 "confirmLevelAssignmentRemoval",
"removeLevelAssignments",
185 "showUsers",
"assignUser",
"assignRole",
186 "confirmUserRemoval",
"removeUsers",
"exportProfiles",
"showImportForm",
187 "importProfiles",
"saveLevelOrder",
"createLocal",
"saveLocal",
188 "listLocalProfiles",
"showLevelsWithLocalContext",
"showObjects"))) {
195 public function setTabs(
string $a_active): void
207 $ilTabs->clearTargets();
208 $ilHelp->setScreenIdComponent(
"skmg_prof");
210 $ilCtrl->clearParameterByClass(self::class,
"sprof_id");
211 $ilTabs->setBackTarget(
212 $lng->
txt(
"skmg_skill_profiles"),
213 $ilCtrl->getLinkTarget($this,
"")
215 $ilCtrl->setParameter($this,
"sprof_id", $this->requested_sprof_id);
220 $lng->
txt(
"skmg_assigned_skill_levels"),
221 $ilCtrl->getLinkTarget($this,
"showLevels")
227 $lng->
txt(
"skmg_assigned_users"),
228 $ilCtrl->getLinkTarget($this,
"showUsers")
234 $lng->
txt(
"skmg_assigned_objects"),
235 $ilCtrl->getLinkTarget($this,
"showObjects")
239 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
242 $lng->
txt(
"settings"),
243 $ilCtrl->getLinkTarget($this,
"edit")
247 $ilTabs->activateTab($a_active);
257 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
258 $ilToolbar->addButton(
259 $lng->
txt(
"skmg_add_profile"),
260 $ilCtrl->getLinkTarget($this,
"create")
263 $ilToolbar->addButton(
265 $ilCtrl->getLinkTarget($this,
"showImportForm")
269 $table = $this->table_manager->getProfileTable($this->requested_ref_id, $this->skill_tree_id)->getComponent();
271 $tpl->
setContent($this->ui_ren->render($table));
286 $tpl->
setContent($this->ui_ren->render($form));
298 $lng->
txt(
"back_to_course"),
303 $tpl->
setContent($this->ui_ren->render($form));
312 $tpl->
setContent($this->ui_ren->render($form));
327 $ti = $this->ui_fac->input()->field()->text($lng->
txt(
"title"))
328 ->withRequired(
true);
331 $desc = $this->ui_fac->input()->field()->textarea($lng->
txt(
"description"));
335 if ($a_mode ==
"createLocal") {
337 $trees = $this->tree_service->getObjSkillTrees();
338 foreach ($trees as $tree) {
339 $options[$tree->getId()] = $tree->getTitle();
341 $se = $this->ui_fac->input()->field()->select($lng->
txt(
"skmg_skill_tree"), $options)->withRequired(
true);
346 ->withAcceptedMimeTypes([MimeType::IMAGE__PNG, MimeType::IMAGE__JPEG]);
351 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
352 if ($a_mode ==
"create") {
353 $sec_des = $lng->
txt(
"skmg_add_profile");
354 $form_action = $ilCtrl->getFormAction($this,
"save");
355 } elseif ($a_mode ==
"createLocal") {
356 $sec_des = $lng->
txt(
"skmg_add_local_profile");
357 $form_action = $ilCtrl->getFormAction($this,
"saveLocal");
360 $ti = $ti->withValue($this->
profile->getTitle());
361 $desc = $desc->withValue($this->
profile->getDescription());
362 $img = $this->
profile->getImageId() ? $img->withValue([$this->
profile->getImageId()]) : $img;
364 $sec_des = $lng->
txt(
"skmg_edit_profile");
365 $form_action = $ilCtrl->getFormAction($this,
"update");
370 $section_basic = $this->ui_fac->input()->field()->section(
371 [
"title" => $ti,
"description" => $desc],
375 $section_basic = $this->ui_fac->input()->field()->section(
376 [
"title" => $ti,
"description" => $desc,
"skill_tree" => $se],
380 $section_advanced = $this->ui_fac->input()->field()->section([
"image" => $img], $lng->
txt(
"skmg_form_presentation"));
382 $form = $this->ui_fac->input()->container()->form()->standard(
384 [
"section_basic" => $section_basic,
"section_advanced" => $section_advanced]
396 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
401 if ($this->request->getMethod() ==
"POST" 402 && $this->request->getQueryParams()[
"profile"] ==
"profile_settings") {
403 $form = $form->withRequest($this->request);
404 $result = $form->getData();
405 if (is_null($result)) {
406 $tpl->
setContent($this->ui_ren->render($form));
409 $profile = $this->skill_factory->profile()->profile(
411 $result[
"section_basic"][
"title"],
412 $result[
"section_basic"][
"description"],
413 $this->skill_tree_id,
414 $result[
"section_advanced"][
"image"][0] ??
"" 416 $this->profile_manager->createProfile($profile);
418 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
419 $ilCtrl->redirect($this,
"listProfiles");
421 $ilCtrl->redirect($this,
"listProfiles");
430 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
435 if ($this->request->getMethod() ==
"POST" 436 && $this->request->getQueryParams()[
"profile"] ==
"profile_settings") {
437 $form = $form->withRequest($this->request);
438 $result = $form->getData();
439 if (is_null($result)) {
440 $tpl->
setContent($this->ui_ren->render($form));
443 $profile = $this->skill_factory->profile()->profile(
445 $result[
"section_basic"][
"title"],
446 $result[
"section_basic"][
"description"],
447 (
int) $result[
"section_basic"][
"skill_tree"],
448 $result[
"section_advanced"][
"image"][0] ??
"",
449 $this->requested_ref_id
451 $new_profile = $this->profile_manager->createProfile($profile);
452 $this->profile_manager->addRoleToProfile(
453 $new_profile->getId(),
456 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
457 $ilCtrl->redirectByClass(
"ilcontskilladmingui",
"listProfiles");
459 $ilCtrl->redirectByClass(
"ilcontskilladmingui",
"listProfiles");
468 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
473 if ($this->request->getMethod() ==
"POST" 474 && $this->request->getQueryParams()[
"profile"] ==
"profile_settings") {
475 $form = $form->withRequest($this->request);
476 $result = $form->getData();
477 if (is_null($result)) {
478 $tpl->
setContent($this->ui_ren->render($form));
481 $profile = $this->skill_factory->profile()->profile(
483 $result[
"section_basic"][
"title"],
484 $result[
"section_basic"][
"description"],
485 $this->
profile->getSkillTreeId(),
486 $result[
"section_advanced"][
"image"][0] ??
"",
489 $this->profile_manager->updateProfile($profile);
491 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"msg_obj_modified"),
true);
492 $ilCtrl->redirect($this,
"edit");
494 $ilCtrl->redirect($this,
"listProfiles");
503 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
507 if (!empty($this->requested_profile_ids)) {
508 foreach ($this->requested_profile_ids as $i) {
509 $this->profile_manager->delete($i);
510 $this->profile_completion_manager->deleteEntriesForProfile($i);
512 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"msg_obj_modified"),
true);
515 $ilCtrl->redirect($this,
"listProfiles");
531 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
532 $ilToolbar->addButton(
533 $lng->
txt(
"skmg_assign_level"),
534 $ilCtrl->getLinkTarget($this,
"assignLevel")
556 $lng->
txt(
"back_to_course"),
560 if ($this->skill_tree_access_manager->hasManageProfilesPermission()) {
562 $lng->
txt(
"skmg_assign_level"),
569 "showLevelsWithLocalContext",
589 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"skmg_select_skill_level_assign"));
591 $ilTabs->clearTargets();
593 $ilTabs->setBackTarget(
595 $ilCtrl->getLinkTarget($this,
"showLevelsWithLocalContext")
598 $ilTabs->setBackTarget(
600 $ilCtrl->getLinkTarget($this,
"showLevels")
609 "assignLevelSelectSkill",
613 if (!$exp->handleCommand()) {
629 $ilCtrl->saveParameter($this,
"cskill_id");
635 $ilTabs->clearTargets();
637 $ilTabs->setBackTarget(
639 $ilCtrl->getLinkTarget($this,
"showLevelsWithLocalContext")
642 $ilTabs->setBackTarget(
644 $ilCtrl->getLinkTarget($this,
"showLevels")
648 $id_parts = explode(
":", $this->requested_cskill_id);
649 $skill_id = (
int) $id_parts[0];
651 $level_data = $skill->getLevelData();
654 foreach ($level_data as $levels) {
655 $ilCtrl->setParameterByClass(self::class,
"level_id", $levels[
"id"]);
656 $items[] = $this->ui_fac->item()->standard($levels[
"title"])->withMainAction(
657 $this->ui_fac->link()->standard(
658 $lng->
txt(
"skmg_assign_level"),
659 $ilCtrl->getLinkTarget($this, $update ?
"updateLevelOfProfile" :
"assignLevelToProfile")
662 $ilCtrl->clearParameterByClass(self::class,
"level_id");
665 $list = $this->ui_fac->panel()->listing()->standard(
666 $skill->getTitle() .
", " . $lng->
txt(
"skmg_skill_levels"),
668 $this->ui_fac->item()->group(
"", $items)
672 $tpl->
setContent($this->ui_ren->render($list));
686 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
691 $this->profile_manager->updateSkillLevel($level);
693 $parts = explode(
":", $this->requested_cskill_id);
694 $level = $this->skill_factory->profile()->profileLevel(
699 $this->profile_manager->getMaxLevelOrderNr($this->
profile->getId()) + 10
701 $this->profile_manager->addSkillLevel($level);
705 $this->profile_completion_manager->writeCompletionEntryForAllAssignedUsersOfProfile($this->
profile->getId());
707 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
709 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
711 $ilCtrl->redirect($this,
"showLevels");
716 $parts = explode(
":", $this->requested_cskill_id);
717 $level = $this->profile_manager->getSkillLevel($this->
profile->getId(), (
int)
$parts[0], (
int)
$parts[1]);
718 $level_updated = $this->skill_factory->profile()->profileLevel(
719 $level->getProfileId(),
720 $level->getBaseSkillId(),
742 if (empty($this->requested_level_ass_ids)) {
743 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
745 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
747 $ilCtrl->redirect($this,
"showLevels");
750 $cgui->setFormAction($ilCtrl->getFormAction($this));
751 $cgui->setHeaderText($lng->
txt(
"skmg_confirm_remove_level_ass"));
753 $cgui->setCancel($lng->
txt(
"cancel"),
"showLevelsWithLocalContext");
755 $cgui->setCancel($lng->
txt(
"cancel"),
"showLevels");
757 $cgui->setConfirm($lng->
txt(
"remove"),
"removeLevelAssignments");
759 foreach ($this->requested_level_ass_ids as $i) {
760 $id_arr = explode(
":", $i);
778 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
782 if (!empty($this->requested_level_ass_ids)) {
783 foreach ($this->requested_level_ass_ids as $i) {
784 $id_arr = explode(
":", $i);
785 $level = $this->skill_factory->profile()->profileLevel(
792 $this->profile_manager->removeSkillLevel($level);
794 $this->profile_manager->fixSkillOrderNumbering($this->
profile->getId());
798 $this->profile_completion_manager->writeCompletionEntryForAllAssignedUsersOfProfile($this->
profile->getId());
801 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
803 $ilCtrl->redirect($this,
"showLevels");
812 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
817 $this->profile_manager->updateSkillOrder($this->
profile->getId(), $order);
819 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
821 $ilCtrl->redirect($this,
"showLevelsWithLocalContext");
823 $ilCtrl->redirect($this,
"showLevels");
833 if ($this->skill_tree_access_manager->hasManageProfilesPermission() && !$this->
profile->getRefId() > 0) {
838 'auto_complete_name' => $lng->
txt(
'user'),
839 'submit_name' => $lng->
txt(
'skmg_assign_user')
843 $ilToolbar->addSeparator();
845 $button = $this->ui_fac->button()->standard(
846 $this->
lng->txt(
"skmg_add_assignment"),
847 $this->
ctrl->getLinkTargetByClass(
"ilRepositorySearchGUI",
"start")
849 $ilToolbar->addComponent($button);
854 $table = $this->table_manager->getProfileUserAssignmentTable(
856 $this->skill_tree_access_manager
858 $tpl->
setContent($this->ui_ren->render($table));
866 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
873 $this->profile_manager->addUserToProfile($this->
profile->getId(),
$user_id);
875 $this->profile_completion_manager->writeCompletionEntryForSingleProfileOfUser(
$user_id, $this->
profile->getId());
876 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
881 if (!empty($users)) {
882 foreach ($users as $id) {
884 $this->profile_manager->addUserToProfile($this->
profile->getId(),
$id);
886 $this->profile_completion_manager->writeCompletionEntryForSingleProfileOfUser($id, $this->
profile->getId());
889 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
892 $ilCtrl->redirect($this,
"showUsers");
900 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
905 foreach ($role_ids as $id) {
907 $this->profile_manager->addRoleToProfile($this->
profile->getId(),
$id);
908 $this->profile_completion_manager->writeCompletionEntryForRole($id, $this->
profile->getId());
913 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
916 $ilCtrl->redirect($this,
"showUsers");
924 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
928 if (!empty($this->requested_user_ids)) {
929 foreach ($this->requested_user_ids as $i) {
933 $this->profile_manager->removeUserFromProfile($this->
profile->getId(), $i);
937 $this->profile_manager->removeRoleFromProfile($this->
profile->getId(), $i);
944 $this->tpl->setOnScreenMessage(
"success", $lng->
txt(
"msg_obj_modified"),
true);
946 $ilCtrl->redirect($this,
"showUsers");
955 $objects = $this->usage_manager->getAssignedObjectsForSkillProfile($this->
profile->getId());
957 $table = $this->table_manager->getAssignedObjectsTable(
964 $tpl->
setContent($this->ui_ren->render($table));
972 if (!$this->skill_tree_access_manager->hasManageProfilesPermission()) {
976 $profiles_to_export = [];
977 if ($this->requested_table_profile_action ===
"exportProfiles" 978 && !empty($this->requested_table_profile_ids)
979 && $this->requested_table_profile_ids[0] ===
"ALL_OBJECTS" 981 $profiles = $this->skill_tree_id
982 ? $this->profile_manager->getProfilesForSkillTree($this->skill_tree_id)
983 : $this->profile_manager->getProfilesForAllSkillTrees();
984 foreach ($profiles as $profile) {
985 $profiles_to_export[] = $profile->getId();
987 } elseif ($this->requested_table_profile_action ===
"exportProfiles") {
988 $profiles_to_export =
array_map(
"intval", $this->requested_table_profile_ids);
991 if (empty($profiles_to_export)) {
992 $this->tpl->setOnScreenMessage(
'info', $lng->
txt(
"no_checkbox"),
true);
993 $ilCtrl->redirect($this,
"");
997 $conf = $exp->getConfig(
"components/ILIAS/Skill");
999 $conf->setSelectedProfiles($profiles_to_export);
1000 $conf->setSkillTreeId($this->skill_tree_id);
1007 $ilCtrl->redirectByClass(array(
"ilobjskilltreegui",
"ilexportgui"),
"");
1027 $fi->setRequired(
true);
1028 $form->addItem($fi);
1031 $form->addCommandButton(
"importProfiles", $lng->
txt(
"import"));
1032 $form->addCommandButton(
"", $lng->
txt(
"cancel"));
1034 $form->setTitle($lng->
txt(
"import"));
1035 $form->setFormAction($ilCtrl->getFormAction($this));
1047 if ($form->checkInput()) {
1049 $conf = $imp->getConfig(
"components/ILIAS/Skill");
1050 $conf->setSkillTreeId($this->skill_tree_id);
1051 $imp->importEntity($_FILES[
"import_file"][
"tmp_name"], $_FILES[
"import_file"][
"name"],
"skmg",
"components/ILIAS/Skill");
1053 $this->tpl->setOnScreenMessage(
'success', $lng->
txt(
"msg_obj_modified"),
true);
1054 $ilCtrl->redirect($this,
"");
1056 $form->setValuesByPost();
TableGUI class for skill profile levels.
SkillTreeAccess $skill_tree_access_manager
array $requested_profile_ids
Class ilSkillProfileUploadHandlerGUI.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
Profile SkillProfile $profile
if($clientAssertionType !='urn:ietf:params:oauth:client-assertion-type:jwt-bearer'|| $grantType !='client_credentials') $parts
Interface Observer Contains several chained tasks and infos about them.
Request wrapper for guis in skill administration.
getLinkTarget(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
confirmLevelAssignmentRemoval()
static _lookupTitle(int $a_obj_id, int $a_tref_id=0)
static _lookupId($a_user_str)
setContent(string $a_html)
Sets content for standard template.
setTabs(string $a_active)
showLevelsWithLocalContext()
setTitle(string $a_title, bool $hidden=false)
Sets title in standard template.
static lookupLevelTitle(int $a_id)
array $requested_level_ass_ids
assignLevelSelectSkill(bool $update=false)
Output level table for profile assignment.
static getDefaultMemberRole(int $a_ref_id)
SkillAdminGUIRequest $admin_gui_request
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
Table TableManager $table_manager
initProfileForm(string $a_mode="edit")
static _lookupObjId(int $ref_id)
ilGlobalTemplateInterface $tpl
assignLevelToProfile(?Profile\SkillProfileLevel $level=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
SkillTreeService $tree_service
assignRole(array $role_ids)
updateLevelOfSelectedSkill()
string $requested_user_login
string $requested_cskill_id
setBackTarget(string $a_title, string $a_target, string $a_frame="")
ServerRequestInterface $request
array $requested_table_profile_ids
__construct(SkillTreeAccess $skill_tree_access_manager, int $skill_tree_id=0)
clearTargets()
clear all targets
bool $requested_local_context
Skill internal factory service.
string $requested_table_profile_action
ArrayBasedRequestWrapper $query
Explorer class that works on tree objects (Services/Tree)
setDescription(string $a_descr)
Sets description below title in standard template.
Profile SkillProfileManager $profile_manager
static fillAutoCompleteToolbar(object $parent_object, ?ilToolbarGUI $toolbar=null, array $a_options=[], bool $a_sticky=false)
array( auto_complete_name = $lng->txt('user'), auto_complete_size = 15, user_type = array(ilCoursePar...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
SkillInternalFactoryService $skill_factory
static _lookupType(int $id, bool $reference=false)
Profile SkillProfileCompletionManager $profile_completion_manager
static stripSlashesArray(array $a_arr, bool $a_strip_html=true, string $a_allow="")
array $requested_level_order
array $requested_user_ids
Usage SkillUsageManager $usage_manager
getLinkTargetByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false, bool $has_xml_style=false)
Class ArrayBasedRequestWrapper.